@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,400;0,700;1,400&family=Mulish:wght@400;500;600;700&display=swap');

:root {
  --bp-honey: #F4A900;
  --bp-brown: #6B4226;
  --bp-cream: #FFF8E7;
  --bp-font-head: 'Merriweather', Georgia, serif;
  --bp-font-body: 'Mulish', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.bp-body {
  font-family: var(--bp-font-body);
  background: var(--bp-cream);
  color: var(--bp-brown);
  line-height: 1.65;
}

/* Hexagon honeycomb nav */
.bp-header {
  background: var(--bp-brown);
  padding: 1.25rem 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
.bp-brand {
  text-align: center;
  margin-bottom: 1.25rem;
}
.bp-brand a {
  font-family: var(--bp-font-head);
  font-size: 1.75rem;
  color: var(--bp-honey);
  text-decoration: none;
  font-weight: 700;
}
.bp-brand span { color: var(--bp-cream); font-weight: 400; font-size: 0.85rem; display: block; margin-top: 0.2rem; }
.bp-honeycomb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  max-width: 640px;
  margin: 0 auto;
}
.bp-hex {
  width: 88px;
  height: 76px;
  background: var(--bp-honey);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--bp-brown);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  padding: 0.5rem;
  transition: transform 0.2s, background 0.2s;
}
.bp-hex:hover, .bp-hex.bp-on {
  background: var(--bp-cream);
  transform: scale(1.06);
}
.bp-burger { display: none; background: none; border: none; color: var(--bp-honey); font-size: 1.5rem; cursor: pointer; }

/* Hero */
.bp-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}
.bp-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bp-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(107,66,38,0.55) 0%, rgba(107,66,38,0.82) 100%);
}
.bp-hero-inner {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 720px;
  color: var(--bp-cream);
}
.bp-hero-inner h1 {
  font-family: var(--bp-font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
}
.bp-hero-inner p { font-size: 1.1rem; opacity: 0.95; margin-bottom: 1.5rem; }
.bp-btn {
  display: inline-block;
  background: var(--bp-honey);
  color: var(--bp-brown);
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  transition: background 0.2s;
}
.bp-btn:hover { background: #ffc233; }
.bp-btn-outline {
  background: transparent;
  border: 2px solid var(--bp-cream);
  color: var(--bp-cream);
  margin-left: 0.75rem;
}
.bp-btn-outline:hover { background: rgba(255,248,231,0.15); }

/* Sections */
.bp-section { padding: 4rem 1.5rem; }
.bp-inner { max-width: 1100px; margin: 0 auto; }
.bp-h2 {
  font-family: var(--bp-font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--bp-brown);
}
.bp-sub { text-align: center; color: #8a6a4a; margin-bottom: 2.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }

.bp-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: var(--bp-honey);
  padding: 2rem;
  border-radius: 16px;
  margin-top: -3rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(107,66,38,0.15);
}
.bp-fact { text-align: center; }
.bp-fact strong { display: block; font-family: var(--bp-font-head); font-size: 1.75rem; color: var(--bp-brown); }
.bp-fact span { font-size: 0.85rem; }

.bp-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.bp-product {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(107,66,38,0.08);
  transition: transform 0.2s;
}
.bp-product:hover { transform: translateY(-4px); }
.bp-product img { width: 100%; height: 200px; object-fit: cover; }
.bp-product-body { padding: 1.25rem; }
.bp-product-body h3 { font-family: var(--bp-font-head); margin-bottom: 0.4rem; }
.bp-tag {
  display: inline-block;
  background: var(--bp-cream);
  color: var(--bp-brown);
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

/* Harvest map widget */
.bp-harvest {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid var(--bp-honey);
}
.bp-seasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.bp-season {
  padding: 1rem;
  border: 2px solid #e8dcc8;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  background: var(--bp-cream);
}
.bp-season:hover, .bp-season.bp-active {
  border-color: var(--bp-honey);
  background: var(--bp-honey);
  color: var(--bp-brown);
}
.bp-season i { font-size: 1.5rem; display: block; margin-bottom: 0.35rem; }
.bp-season strong { display: block; font-size: 0.95rem; }
.bp-harvest-detail {
  min-height: 180px;
  padding: 1.25rem;
  background: var(--bp-cream);
  border-radius: 10px;
}
.bp-harvest-detail h3 { font-family: var(--bp-font-head); margin-bottom: 0.75rem; }

.bp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.bp-split img { width: 100%; border-radius: 14px; object-fit: cover; }

.bp-testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.bp-quote {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--bp-honey);
}
.bp-quote p { font-style: italic; margin-bottom: 0.75rem; }
.bp-quote cite { font-size: 0.85rem; color: #8a6a4a; font-style: normal; }

/* Page hero (inner pages) */
.bp-page-hero {
  background: var(--bp-brown);
  color: var(--bp-cream);
  padding: 3rem 1.5rem;
  text-align: center;
}
.bp-page-hero h1 { font-family: var(--bp-font-head); font-size: 2rem; }

.bp-services-list { display: flex; flex-direction: column; gap: 1.5rem; }
.bp-service-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  background: #fff;
  padding: 1.25rem;
  border-radius: 12px;
  align-items: center;
}
.bp-service-row img { width: 100%; height: 140px; object-fit: cover; border-radius: 8px; }

.bp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.bp-form { display: flex; flex-direction: column; gap: 0.85rem; }
.bp-form input, .bp-form select, .bp-form textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #e8dcc8;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
}
.bp-form input:focus, .bp-form select:focus, .bp-form textarea:focus {
  outline: none;
  border-color: var(--bp-honey);
}
.bp-form-msg { color: #2d7a3a; font-weight: 600; display: none; }
.bp-form-msg.bp-show { display: block; }

.bp-kvkk { max-width: 720px; margin: 0 auto; }
.bp-kvkk h2 { font-family: var(--bp-font-head); margin: 1.5rem 0 0.5rem; font-size: 1.2rem; }
.bp-kvkk p { margin-bottom: 0.75rem; }

/* Footer — compact bar style */
.bp-footer {
  background: var(--bp-brown);
  color: var(--bp-cream);
  padding: 2.5rem 1.5rem 1.5rem;
}
.bp-footer-row {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(244,169,0,0.3);
}
.bp-footer-col h4 { font-family: var(--bp-font-head); color: var(--bp-honey); margin-bottom: 0.75rem; }
.bp-footer-col a { color: var(--bp-cream); text-decoration: none; display: block; margin-bottom: 0.35rem; opacity: 0.85; }
.bp-footer-col a:hover { opacity: 1; color: var(--bp-honey); }
.bp-fine { text-align: center; padding-top: 1rem; font-size: 0.85rem; opacity: 0.7; max-width: 1100px; margin: 0 auto; }

/* Cookie — top banner */
.bp-cookie-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bp-brown);
  color: var(--bp-cream);
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.bp-cookie-top.bp-show { transform: translateY(0); }
.bp-cookie-top a { color: var(--bp-honey); }
.bp-cookie-top .bp-btn { padding: 0.5rem 1.25rem; font-size: 0.9rem; }

@media (max-width: 900px) {
  .bp-facts { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
  .bp-products, .bp-harvest, .bp-split, .bp-testimonials, .bp-contact-grid, .bp-service-row { grid-template-columns: 1fr; }
  .bp-service-row img { height: 180px; }
}
@media (max-width: 640px) {
  .bp-honeycomb { display: none; }
  .bp-honeycomb.bp-open { display: flex; }
  .bp-burger { display: block; position: absolute; top: 1rem; right: 1rem; }
  .bp-header { position: relative; }
  .bp-btn-outline { margin-left: 0; margin-top: 0.75rem; display: inline-block; }
}
