/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --honey:    #F5A623;
  --honey-dk: #D4891A;
  --honey-lt: #FFF3D0;
  --amber:    #FFE082;
  --dark:     #1A0E00;
  --dark2:    #2C1810;
  --brown:    #5C3D1E;
  --cream:    #FFFBF2;
  --white:    #FFFFFF;
  --text:     #3A2410;
  --text-lt:  #7A5C3A;
  --radius:   16px;
  --shadow:   0 8px 40px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

h1,h2,h3 { font-family: 'Playfair Display', serif; }

/* ===== NAV ===== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  transition: background .3s, box-shadow .3s;
}
#nav.scrolled {
  background: rgba(255,251,242,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--honey-dk);
  letter-spacing: -0.5px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--honey-dk); }
.nav-cta {
  background: var(--honey) !important;
  color: var(--dark) !important;
  padding: .5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--honey-dk) !important; transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .3s;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-link {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--text);
  text-decoration: none;
  transition: color .2s;
}
.mobile-link:hover { color: var(--honey-dk); }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--dark2) 0%, #3D1F05 60%, #7A4010 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: crosshair;
}

.bee {
  cursor: none;
  user-select: none;
  will-change: transform, left, top;
  transition: none;
}

.hex-bg {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92' viewBox='0 0 80 92'%3E%3Cpath d='M40 4 L74 22 L74 58 L40 76 L6 58 L6 22 Z' fill='none' stroke='rgba(245,166,35,0.08)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 80px 92px;
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 700px;
}
.hero-sub {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  color: var(--cream);
  line-height: .9;
  margin-bottom: 1.5rem;
  letter-spacing: -3px;
}
.hero-title span {
  color: var(--honey);
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,251,242,.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.btn-primary {
  display: inline-block;
  background: var(--honey);
  color: var(--dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: .9rem 2.5rem;
  border-radius: 50px;
  letter-spacing: .03em;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(245,166,35,.4);
}
.btn-primary:hover {
  background: var(--honey-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,166,35,.5);
}

/* Floating bees */
.bees-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.bee {
  position: absolute;
  font-size: 1.8rem;
  animation: floatBee 8s ease-in-out infinite;
  opacity: .7;
}
.bee-1 { top: 20%; left: 10%; animation-delay: 0s; animation-duration: 9s; }
.bee-2 { top: 60%; right: 12%; animation-delay: -3s; animation-duration: 11s; }
.bee-3 { top: 35%; right: 25%; animation-delay: -6s; animation-duration: 8s; }
@keyframes floatBee {
  0%,100% { transform: translate(0,0) rotate(-10deg); }
  25%      { transform: translate(20px,-30px) rotate(5deg); }
  50%      { transform: translate(-10px,-50px) rotate(-5deg); }
  75%      { transform: translate(-25px,-20px) rotate(10deg); }
}

/* Queen bee */
.bee-queen {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  top: 72%; left: 18%;
  opacity: 1 !important;
  font-size: 1rem;
}
.queen-crown {
  font-size: 1.1rem;
  display: block;
  margin-bottom: -2px;
  filter: drop-shadow(0 0 4px rgba(255,215,0,.8));
}
.queen-body {
  font-size: 2.4rem;
  display: block;
}
.queen-alert { display: none; }

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,251,242,.4);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(245,166,35,.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: .4; transform: scaleY(.5); }
}

/* ===== SECTIONS ===== */
.section { padding: 8rem 1.5rem; }
.section-dark {
  background: var(--dark2);
  color: var(--cream);
}
.section-dark h2 { color: var(--cream); }
.section-dark .body-text { color: rgba(255,251,242,.75); }
.section-amber {
  background: linear-gradient(135deg, #FFF3D0 0%, #FFE5A0 100%);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--honey-dk);
  margin-bottom: .75rem;
}
.section-label.light { color: var(--honey); }
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.body-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-lt);
  max-width: 540px;
}
.body-text.center { margin: 0 auto; text-align: center; }

/* ===== SPLIT ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

/* ===== HONEYCOMB ART ===== */
.honeycomb-art {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  transform: rotate(-5deg);
}
.hc-row {
  display: flex;
  gap: 6px;
}
.hc-row.offset { margin-left: 34px; }
.hc {
  width: 60px;
  height: 68px;
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  background: rgba(245,166,35,.12);
  border: 1px solid rgba(245,166,35,.2);
  transition: background .3s;
}
.hc.hc-fill { background: rgba(245,166,35,.35); }
.hc:hover { background: rgba(245,166,35,.6) !important; }

/* ===== STATS ===== */
.stat-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--honey-dk);
  line-height: 1;
}
.stat-label {
  font-size: .8rem;
  color: var(--text-lt);
  max-width: 120px;
  line-height: 1.4;
}

/* ===== IMKER CARD ===== */
.imker-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(245,166,35,.2);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
}
.imker-icon { font-size: 4rem; margin-bottom: 1.5rem; }
blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 2rem;
}
.tag {
  background: rgba(245,166,35,.15);
  border: 1px solid rgba(245,166,35,.3);
  color: var(--honey);
  font-size: .8rem;
  font-weight: 500;
  padding: .35rem .9rem;
  border-radius: 50px;
  letter-spacing: .05em;
}

/* ===== PRODUCTS ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--honey), var(--honey-dk));
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.15);
}
.product-emoji { font-size: 3rem; margin-bottom: .75rem; }
.product-season {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--honey-dk);
  margin-bottom: .5rem;
}
.product-card h3 {
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: .75rem;
}
.product-card p {
  color: var(--text-lt);
  font-size: .95rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.product-notes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 2rem;
}
.product-notes li {
  font-size: .85rem;
  color: var(--text-lt);
  padding-left: 1.2rem;
  position: relative;
}
.product-notes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--honey);
}
.btn-card {
  display: inline-block;
  background: var(--honey-lt);
  color: var(--honey-dk);
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  padding: .7rem 1.5rem;
  border-radius: 50px;
  transition: background .2s, color .2s;
}
.btn-card:hover { background: var(--honey); color: var(--dark); }

/* ===== ORDER FORM ===== */
.order-form {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: 0 12px 48px rgba(180,100,0,.12);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.form-group:last-of-type { margin-bottom: 0; }
label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .02em;
}
input, select, textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid #E8D5B0;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--honey);
  box-shadow: 0 0 0 3px rgba(245,166,35,.15);
}
textarea { resize: vertical; }
.btn-submit {
  width: 100%;
  margin-top: 1.75rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--honey), var(--honey-dk));
  color: var(--dark);
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .03em;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(245,166,35,.35);
}
.btn-submit:hover {
  opacity: .92;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,166,35,.45);
}
.form-success {
  display: none;
  text-align: center;
  margin-top: 1.5rem;
  padding: 1rem;
  background: #E8F5E9;
  border-radius: 10px;
  color: #2E7D32;
  font-weight: 500;
}
.form-success.visible { display: block; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255,251,242,.6);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--honey);
  display: block;
  margin-bottom: .5rem;
}
.footer-brand p { font-size: .85rem; line-height: 1.6; }
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.footer-nav a, .footer-legal a {
  color: rgba(255,251,242,.5);
  text-decoration: none;
  font-size: .85rem;
  transition: color .2s;
}
.footer-nav a:hover, .footer-legal a:hover { color: var(--honey); }
.footer-copy {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: .8rem;
  text-align: center;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}
/* stagger children */
.product-card:nth-child(2) { transition-delay: .15s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .split.reverse { direction: ltr; }
  .split-visual { order: -1; }
  .section { padding: 5rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .order-form { padding: 2rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .stat-row { gap: 1.5rem; }
  .honeycomb-art { transform: none; }
  .hc { width: 48px; height: 54px; }
  .hc-row.offset { margin-left: 27px; }
  #nav { padding: 1rem 1.25rem; }
}
