/* ===========================================================
   Fire Honey Bee Farm — styles
   Warm, editorial, mission-driven
   =========================================================== */

:root {
  --cream:        #FBF6E9;
  --cream-warm:   #F4E8CD;
  --cream-deep:   #EFDFBD;
  --honey:        #D98A0B;
  --honey-deep:   #B36E05;
  --honey-soft:   #E9A93A;
  --espresso:     #241B0E;
  --espresso-2:   #34281604;
  --ink:          #241B0E;
  --ink-70:       rgba(36, 27, 14, 0.72);
  --ink-50:       rgba(36, 27, 14, 0.55);
  --line:         rgba(36, 27, 14, 0.12);
  --line-strong:  rgba(36, 27, 14, 0.2);
  --card:         #FFFDF6;
  --shadow-sm:    0 1px 2px rgba(36,27,14,.06), 0 2px 8px rgba(36,27,14,.05);
  --shadow-md:    0 8px 24px rgba(36,27,14,.10), 0 2px 6px rgba(36,27,14,.06);
  --shadow-lg:    0 24px 60px rgba(36,27,14,.16), 0 6px 16px rgba(36,27,14,.08);
  --shadow-glow:  0 0 80px rgba(217,138,11,.35);
  --radius:       18px;
  --radius-lg:    26px;
  --radius-pill:  999px;
  --maxw:         1180px;
  --gutter:       clamp(20px, 5vw, 64px);
  --serif:        "Fraunces", Georgia, "Times New Roman", serif;
  --sans:         "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ---- Grain overlay ---- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* ---- Honeycomb pattern accent ---- */
.honeycomb-bg {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cg fill='none' stroke='%23B36E05' stroke-width='1.2' stroke-opacity='1'%3E%3Cpath d='M28 0 L56 16 L56 50 L28 66 L0 50 L0 16 Z'/%3E%3Cpath d='M28 66 L56 82 L56 116 M28 66 L0 82 L0 116 M28 0 L28 -10'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 56px 100px;
}

/* ===========================================================
   Layout helpers
   =========================================================== */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { position: relative; }

.section-pad { padding-block: clamp(72px, 11vw, 140px); }

.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--honey-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--honey);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.04; letter-spacing: -0.01em; }

.h-section {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  margin-top: 18px;
  text-wrap: balance;
}
.h-section em { font-style: italic; color: var(--honey-deep); }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--ink-70);
  max-width: 58ch;
  margin-top: 22px;
  text-wrap: pretty;
}

/* ===========================================================
   Buttons
   =========================================================== */
.btn {
  --bg: var(--ink);
  --fg: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  background: var(--bg);
  color: var(--fg);
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s, background .2s, color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--honey { --bg: var(--honey); --fg: #fff; }
.btn--honey:hover { --bg: var(--honey-deep); }

.btn--ghost {
  --bg: transparent;
  --fg: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: rgba(36,27,14,.04); }

.btn--lg { padding: 19px 34px; font-size: 18px; }

.btn svg { width: 18px; height: 18px; }

/* ===========================================================
   Navigation
   =========================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background .3s, box-shadow .3s, border-color .3s, padding .3s, transform .35s cubic-bezier(.22,1,.36,1);
  border-bottom: 1px solid transparent;
}
.nav-hidden { transform: translateY(-100%); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
}
.nav.scrolled {
  background: rgba(251,246,233,.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(36,27,14,.05);
}
.nav.scrolled .nav-inner { padding-block: 12px; }

.brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
.brand .bee { font-size: 22px; }
.brand-logo {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}
.brand-logo--lg { width: 84px; height: 84px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links ul, .nav-links li { list-style: none; }
.nav-links a {
  color: var(--ink-70);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(36,27,14,.05); }

.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-cta { padding: 12px 22px; font-size: 15px; }

.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}
.nav-menu-btn span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(251,246,233,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 100px 24px 40px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--ink);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  transition: background .2s;
}
.nav-mobile a:hover { background: rgba(36,27,14,.05); }
.nav-mobile .btn { margin-top: 8px; }

/* ===========================================================
   Hero
   =========================================================== */
.hero {
  position: relative;
  padding-top: clamp(130px, 18vh, 200px);
  padding-bottom: clamp(60px, 9vw, 110px);
  overflow: hidden;
  border-bottom: 1.5px solid var(--cream);
}
.hero-glow {
  position: absolute;
  z-index: 0;
  width: 720px; height: 720px;
  right: -180px; top: -140px;
  background: radial-gradient(circle at center, rgba(217,138,11,.26), rgba(217,138,11,0) 62%);
  filter: blur(8px);
  pointer-events: none;
}
.hero-glow--br {
  top: auto; right: auto;
  left: -160px; bottom: -260px;
  width: 620px; height: 620px;
  background: radial-gradient(circle at center, rgba(217,138,11,.13), rgba(217,138,11,0) 64%);
}
.hero-sticker {
  position: absolute;
  z-index: 4;
  right: -28px;
  bottom: -28px;
  width: clamp(150px, 18vw, 220px);
  height: auto;
  border-radius: 50%;
  filter: drop-shadow(0 8px 20px rgba(36,27,14,.4));
  transform: rotate(-8deg);
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.hero-media:hover .hero-sticker { transform: rotate(-4deg) scale(1.04); }
.hero-combs {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  right: -40px;
  top: 8%;
  width: 46%;
  height: 84%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cg fill='none' stroke='%23B36E05' stroke-width='1' stroke-opacity='0.18'%3E%3Cpath d='M28 0 L56 16 L56 50 L28 66 L0 50 L0 16 Z'/%3E%3Cpath d='M28 66 L56 82 L56 116 M28 66 L0 82 L0 116'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 50px 90px;
  -webkit-mask-image: radial-gradient(120% 90% at 78% 40%, #000 18%, transparent 70%);
  mask-image: radial-gradient(120% 90% at 78% 40%, #000 18%, transparent 70%);
}
.hero-combs--bl {
  right: auto;
  left: -40px;
  top: auto;
  bottom: -30px;
  width: 30%;
  height: 50%;
  -webkit-mask-image: radial-gradient(110% 100% at 18% 80%, #000 14%, transparent 66%);
  mask-image: radial-gradient(110% 100% at 18% 80%, #000 14%, transparent 66%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.hero-title {
  font-size: clamp(2.9rem, 7vw, 5.4rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-top: 22px;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.12em; margin-bottom: -0.12em; }
.hero-title .line > span { display: block; }
.hero-title em { font-style: italic; color: var(--honey-deep); }
.hero-title em {
  background: linear-gradient(95deg, #F0A92B 0%, #E98A1B 38%, #D98A0B 70%, #B36E05 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--honey-deep); /* fallback */
}
.hero .lede { margin-top: 26px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
  align-items: center;
}
.hero-btns { display: contents; }
.hero-actions-logo { display: none; }
.hero-phone {
  margin-top: 22px;
  font-size: 15px;
  color: var(--ink-50);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-phone a { color: var(--honey-deep); font-weight: 600; text-decoration: none; }
.hero-phone a:hover { text-decoration: underline; }

/* Hero image */
.hero-figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.hero-figure > img:not(.hero-sticker) { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Motion bees dispersed at top-right of hero ---- */
.hero-bees { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.hero-bee {
  position: absolute;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(36,27,14,.18));
  opacity: 0;
  animation: bee-in .8s cubic-bezier(.22,1,.36,1) forwards;
}
.hero-anim .hero-bee--1 { animation-delay: .8s; }
.hero-anim .hero-bee--2 { animation-delay: 1.0s; }
.hero-anim .hero-bee--3 { animation-delay: 1.2s; }

.hero-bee--1 { width: 88px; top: 15%; right: 15%; transform: rotate(10deg); }
.hero-bee--2 { width: 86px; top: 80%; left: 11%; transform: rotate(-14deg); }
.hero-bee--3 { width: 50px; top: 24%; right: 9%; transform: rotate(20deg); }

.hero-bee--1 { animation-name: bee-in, bee-float-1; }
.hero-bee--2 { animation-name: bee-in, bee-float-2; }
.hero-bee--3 { animation-name: bee-in, bee-float-3; }
.hero-bee {
  animation-duration: .8s, 6s;
  animation-timing-function: cubic-bezier(.22,1,.36,1), ease-in-out;
  animation-iteration-count: 1, infinite;
  animation-fill-mode: forwards, none;
}
.hero-anim .hero-bee--1 { animation-delay: .8s, .8s; }
.hero-anim .hero-bee--2 { animation-delay: 1.0s, 1.0s; }
.hero-anim .hero-bee--3 { animation-delay: 1.2s, 1.2s; }

@keyframes bee-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes bee-float-1 {
  0%,100% { transform: rotate(10deg) translate(0,0); }
  50%     { transform: rotate(7deg) translate(-10px,12px); }
}
@keyframes bee-float-2 {
  0%,100% { transform: rotate(-14deg) translate(0,0); }
  50%     { transform: rotate(-10deg) translate(8px,-12px); }
}
@keyframes bee-float-3 {
  0%,100% { transform: rotate(20deg) translate(0,0); }
  50%     { transform: rotate(16deg) translate(-8px,-10px); }
}
/* Mobile bee overlay (positioned relative to the image) — hidden on desktop */
.hero-media { position: relative; }
.hero-bees-m { display: none; }
.hero-bees-m .hero-bee { position: absolute; }

@media (prefers-reduced-motion: reduce) {
  .hero-bee { opacity: 1; animation: none; }
}

/* ===========================================================
   Image placeholders
   =========================================================== */
.ph {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--cream-deep);
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(36,27,14,.05) 0 12px,
    rgba(36,27,14,0) 12px 24px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-50);
}
.ph span {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  background: rgba(251,246,233,.85);
  border: 1px solid var(--line);
  padding: 7px 13px;
  border-radius: 8px;
  text-align: center;
}

/* ===========================================================
   Why It Matters
   =========================================================== */
.tinted { background: var(--cream-warm); position: relative; }
.tinted::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cg fill='none' stroke='%23B36E05' stroke-width='1' stroke-opacity='0.16'%3E%3Cpath d='M28 0 L56 16 L56 50 L28 66 L0 50 L0 16 Z'/%3E%3Cpath d='M28 66 L56 82 L56 116 M28 66 L0 82 L0 116'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 48px 86px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 22%, #000 78%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 22%, #000 78%, transparent);
}
.tinted > .wrap { position: relative; z-index: 1; }

/* ---- Side honeycomb on lighter sections ---- */
.combs-sides { position: relative; overflow: hidden; border-bottom: 1.5px solid var(--cream); }

/* ---- Section glows (match hero) on light sections ---- */
.sec-glow {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  filter: blur(8px);
}
.sec-glow--tr {
  width: 640px; height: 640px;
  right: -170px; top: -180px;
  background: radial-gradient(circle at center, rgba(217,138,11,.13), rgba(217,138,11,0) 62%);
}
.sec-glow--bl {
  width: 560px; height: 560px;
  left: -160px; bottom: -240px;
  background: radial-gradient(circle at center, rgba(217,138,11,.12), rgba(217,138,11,0) 64%);
}
.combs-sides::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cg fill='none' stroke='%23B36E05' stroke-width='1' stroke-opacity='0.16'%3E%3Cpath d='M28 0 L56 16 L56 50 L28 66 L0 50 L0 16 Z'/%3E%3Cpath d='M28 66 L56 82 L56 116 M28 66 L0 82 L0 116'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 48px 86px;
  -webkit-mask-image: linear-gradient(90deg, #000 0, transparent 26%, transparent 74%, #000 100%);
  mask-image: linear-gradient(90deg, #000 0, transparent 26%, transparent 74%, #000 100%);
  opacity: 0.7;
}
.combs-sides > .wrap { position: relative; z-index: 1; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.why-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--honey);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 40px);
  box-shadow: var(--shadow-sm);
}
.why-card h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-style: italic;
  color: var(--honey-deep);
  margin-bottom: 14px;
}
.why-card p { color: var(--ink-70); font-size: 1.02rem; }

/* Bees around the "Just let them be bees" card (desktop) */
.why-bees { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.why-bee {
  position: absolute;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(36,27,14,.18));
  animation: 6.5s ease-in-out infinite;
  opacity: 0;
  transition: opacity .55s ease;
}
.why-card.in .why-bee { opacity: 1; }
.why-card.in .why-bee--1 { transition-delay: .6s; }
.why-card.in .why-bee--2 { transition-delay: .6s; }
.why-card.in .why-bee--3 { transition-delay: .6s; }
.why-bee--1 { width: 66px; top: -28px;  left: -44px; animation-name: bee-float-2; }
.why-bee--2 { width: 74px; bottom: -34px; right: -32px; left: auto; animation-name: bee-float-1; }
.why-bee--3 { width: 42px; bottom: -62px; right: 64px;  left: auto; animation-name: bee-float-3; animation-delay: .4s; }

/* ===========================================================
   Generic card grid
   =========================================================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 54px;
}

/* Swarm-box carousel dots (mobile only) */
.swarm-dots { display: none; }
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line-strong);
  transition: background .25s, transform .25s;
}
.dot.is-active { background: var(--honey); transform: scale(1.25); }

.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s, border-color .3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-strong);
}

.card--featured { border-color: var(--honey); border-width: 1.5px; }

.tag {
  position: absolute;
  top: -12px;
  right: 22px;
  background: var(--honey);
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

.card-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--cream-warm);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--honey-deep);
}
.card-icon svg { width: 24px; height: 24px; }

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.card .card-desc {
  color: var(--ink-70);
  font-size: 0.98rem;
  margin-bottom: 22px;
  flex: 1;
}
.price {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price .unit { font-family: var(--sans); font-size: 0.92rem; color: var(--ink-50); font-weight: 500; }
.price--call { font-size: 1.5rem; color: var(--honey-deep); font-style: italic; }
.card-foot { margin-top: 22px; }
.card-foot .btn { width: 100%; justify-content: center; }

/* ===========================================================
   Nucs & Hives
   =========================================================== */
.nuc-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  margin-top: 50px;
}
.nuc-card .nuc-meta { display: flex; flex-direction: column; gap: 6px; }
.nuc-card h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.nuc-card .nuc-deposit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--honey-deep);
  background: rgba(217,138,11,.1);
  padding: 6px 13px;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-top: 6px;
}
.nuc-price { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

/* Dark feature cards */
.dark-card {
  position: relative;
  background: var(--espresso);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 3.5vw, 46px);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s;
}
.dark-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg), var(--shadow-glow); }
.dark-card .glow {
  position: absolute;
  width: 360px; height: 360px;
  right: -120px; bottom: -160px;
  background: radial-gradient(circle, rgba(233,169,58,.45), transparent 65%);
  pointer-events: none;
}
.dark-card .dc-inner { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; }
.dark-card h3 { font-size: clamp(1.5rem, 2.4vw, 1.95rem); margin-bottom: 10px; }
.dark-card .card-desc { color: rgba(251,246,233,.74); flex: 1; margin-bottom: 24px; }
.dark-card .price { color: var(--honey-soft); }
.dark-card .price .unit { color: rgba(251,246,233,.6); }
.dark-card .kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--honey-soft);
  margin-bottom: 16px;
}

/* ===========================================================
   Honey strip
   =========================================================== */
.honey-strip {
  position: relative;
  background: var(--honey);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 56px) clamp(28px, 5vw, 60px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.honey-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--honey-deep), var(--honey) 55%, var(--honey-soft));
  z-index: 0;
}
.honey-strip > * { position: relative; z-index: 1; }
.honey-strip h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  max-width: 18ch;
}
.honey-strip p { color: rgba(255,255,255,.86); margin-top: 10px; max-width: 44ch; }
.honey-strip .btn--ghost { --fg: #fff; border-color: rgba(255,255,255,.55); }
.honey-strip .btn--ghost:hover { background: rgba(255,255,255,.14); }

/* ===========================================================
   About
   =========================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}
.about-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 6;
  box-shadow: var(--shadow-md);
}
.about-body p { color: var(--ink-70); margin-top: 18px; max-width: 54ch; }
.placeholder-note {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 12.5px;
  color: var(--ink-50);
  background: rgba(36,27,14,.04);
  border: 1px dashed var(--line-strong);
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: 24px;
}

/* ===========================================================
   Final CTA
   =========================================================== */
.cta {
  position: relative;
  background: var(--espresso);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}
.cta .glow-1, .cta .glow-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta .glow-1 {
  width: 600px; height: 600px;
  left: 50%; top: -200px; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(217,138,11,.42), transparent 62%);
}
.cta .glow-2 {
  width: 420px; height: 420px;
  right: -120px; bottom: -180px;
  background: radial-gradient(circle, rgba(233,169,58,.28), transparent 65%);
}
.cta .wrap { position: relative; z-index: 1; }
.cta .eyebrow { color: var(--honey-soft); }
.cta h2 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  margin-top: 16px;
  text-wrap: balance;
}
.cta h2 em { font-style: italic; color: var(--honey-soft); }
.cta p { color: rgba(251,246,233,.72); max-width: 46ch; margin: 22px auto 0; }
.cta .btn--lg { margin-top: 40px; box-shadow: 0 0 60px rgba(217,138,11,.4); }
.cta .cta-phone { margin-top: 18px; font-size: 15px; color: rgba(251,246,233,.6); }
.cta .cta-phone a { color: var(--honey-soft); text-decoration: none; font-weight: 600; }

/* ===========================================================
   Footer
   =========================================================== */
.footer {
  background: var(--cream-warm);
  border-top: 1px solid var(--line);
  padding-block: 56px 80px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 28px;
}
.footer .brand { font-size: 24px; }
.footer-tag { color: var(--ink-70); margin-top: 12px; max-width: 34ch; font-size: 15px; }
.footer-contact { text-align: right; display: flex; flex-direction: column; gap: 8px; }
.footer-contact .label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-50); font-weight: 600; }
.footer-contact .phone {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--honey-deep);
  text-decoration: none;
}
.footer-contact .phone:hover { text-decoration: underline; }
.footer-contact .area { color: var(--ink-70); font-size: 15px; }
.footer-legal {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-50);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}


/* ===========================================================
   Scroll reveal
   =========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ===========================================================
   Hero load animation
   =========================================================== */
.hero-title .line > span {
  transform: translateY(110%);
  transition: transform .9s cubic-bezier(.19,1,.22,1);
}
.hero-anim .hero-title .line > span { transform: translateY(0); }
.hero-title .line:nth-child(1) > span { transition-delay: .15s; }
.hero-title .line:nth-child(2) > span { transition-delay: .32s; }

.hero-fade { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .8s ease; }
.hero-anim .hero-fade { opacity: 1; transform: none; }
.hero-anim .hero-fade.f1 { transition-delay: .5s; }
.hero-anim .hero-fade.f2 { transition-delay: .62s; }
.hero-anim .hero-fade.f3 { transition-delay: .74s; }
.hero-figure.hero-fade, .hero-media.hero-fade { transition-delay: .35s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-title .line > span, .hero-fade { transition: none !important; opacity: 1 !important; transform: none !important; }
  .why-bee { opacity: 1 !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { aspect-ratio: 16 / 11; max-height: 460px; }
  .hero-glow { display: none; }
  .hero { padding-top: clamp(96px, 15vh, 130px); }
  .hero-actions { flex-wrap: nowrap; align-items: stretch; gap: 16px; }
  .hero-btns { display: flex; flex-direction: column; gap: 12px; flex: 1 1 auto; min-width: 0; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-actions-logo {
    display: block;
    flex: 0 0 auto;
    width: clamp(96px, 30vw, 132px);
    height: auto;
    align-self: center;
    border-radius: 50%;
    filter: drop-shadow(0 6px 14px rgba(36,27,14,.22));
  }
  .hero-bees { display: none; }
  .hero-sticker { display: none; }
  .hero-bees-m { display: block; }
  .hero-bee--m1 { width: 68px; top: -19%;  right: 0%;  animation-name: bee-in, bee-float-1; }
  .hero-bee--m2 { width: 74px; bottom: -17%; left: -3%; animation-name: bee-in, bee-float-2; }
  .hero-bee--m3 { display: none; }
  .why-grid, .about-grid { grid-template-columns: 1fr; }
  .why-bees { display: none; }
  .about-figure { aspect-ratio: 16 / 11; }
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .grid-3 {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 0 var(--gutter);
    margin-inline: calc(-1 * var(--gutter));
    padding-inline: var(--gutter);
    padding-top: 16px;
    scrollbar-width: none;
  }
  .grid-3::-webkit-scrollbar { display: none; }
  .grid-3 > .card {
    flex: 0 0 84%;
    scroll-snap-align: center;
  }
  .swarm-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 22px;
  }
  .grid-2 { grid-template-columns: 1fr; }
  .nuc-card { grid-template-columns: 1fr; text-align: left; }
  .nuc-price { text-align: left; align-items: flex-start; }
  .footer-contact { text-align: left; }
  .nav-menu-btn { display: flex; }
  .nav-right { display: none; }
}

@media (max-width: 520px) {
  body { font-size: 17px; }
  .nav-cta { padding: 10px 16px; }
  .brand { font-size: 18px; }
  .honey-strip { flex-direction: column; align-items: flex-start; }
}
