/* ========== Hero ========== */
.hero {
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero-sky {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 900px 400px at 70% -10%, var(--sky-2) 0%, transparent 60%),
    radial-gradient(ellipse 700px 500px at 10% 10%, var(--sky-1) 0%, transparent 55%),
    var(--paper);
  z-index: 0;
}
.hero .container { position: relative; z-index: 2; }

/* Variant A: BIG typographic headline */
.hero[data-variant="a"] .hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.hero[data-variant="a"] .hero-title {
  font-size: 100px;
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 500;
  color: #F4561F;
}
.hero[data-variant="a"] .hero-title em {
  font-style: italic;
  font-weight: 300;
  color: #1A1A1A;
}
.hero[data-variant="a"] .hero-title .bee-word {
  display: inline-block;
  position: relative;
  color: #1A1A1A;
}
.hero[data-variant="a"] .hero-title .bee-word::after {
  content: none;
}
.hero[data-variant="a"] .hero-bottom {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-top: 20px;
}
.hero[data-variant="a"] .hero-lede {
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 540px;
}
.hero[data-variant="a"] .hero-actions { display: flex; gap: 12px; align-items: center; margin-top: 28px; flex-wrap: wrap; }
.hero[data-variant="a"] .hero-scene { display: none; }

/* Variant B: Split with scene */
.hero[data-variant="b"] .hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero[data-variant="b"] .hero-title { font-size: clamp(48px, 6.2vw, 88px); }
.hero[data-variant="b"] .hero-title .bee-word { position: relative; color: var(--cap-deep); font-style: italic; font-weight: 400;}
.hero[data-variant="b"] .hero-lede {
  font-size: 19px; color: var(--ink-2); max-width: 500px; margin-top: 24px;
}
.hero[data-variant="b"] .hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap;}
.hero[data-variant="b"] .hero-bottom { display: none; }

/* Variant C: Centered poster */
.hero[data-variant="c"] {
  padding: 80px 0 120px;
}
.hero[data-variant="c"] .hero-inner {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 24px;
}
.hero[data-variant="c"] .eyebrow { justify-content: center; }
.hero[data-variant="c"] .hero-title {
  font-size: clamp(48px, 8vw, 128px);
  line-height: 0.95;
  max-width: 1100px;
}
.hero[data-variant="c"] .hero-title .bee-word {
  background: var(--bee); padding: 0 14px; display: inline-block;
  border: 2px solid var(--ink); transform: rotate(-1deg);
}
.hero[data-variant="c"] .hero-lede {
  font-size: 20px; color: var(--ink-2); max-width: 640px;
}
.hero[data-variant="c"] .hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;}
.hero[data-variant="c"] .hero-bottom { display: none; }
.hero[data-variant="c"] .hero-scene { margin-top: 24px; }

/* ========== CSS illustration: Montana ridgeline + planter scene ========== */
.hero-scene {
  position: relative;
  aspect-ratio: 5 / 4;
  max-width: 560px;
  width: 100%;
  justify-self: end;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(to bottom, var(--sky-1) 0%, #F9EFD6 68%, #E9E1C8 69%, #E9E1C8 100%);
  border: 1px solid var(--rule);
}
.hero[data-variant="c"] .hero-scene {
  max-width: 960px;
  aspect-ratio: 21 / 9;
}
/* Sun */
.scene-sun {
  position: absolute; top: 10%; right: 14%;
  width: 110px; height: 110px; border-radius: 50%;
  background: radial-gradient(circle, var(--bee) 0%, #F6D567 60%, transparent 72%);
  filter: blur(1px);
}
/* Mountains (3 layers) */
.scene-mtn {
  position: absolute; bottom: 30%; left: 0; right: 0;
  height: 50%;
  background:
    linear-gradient(135deg, transparent 49.4%, #8BA0B8 49.5%, #8BA0B8 50.5%, transparent 50.6%),
    linear-gradient(to top, #6C89A8 0%, #8BA0B8 100%);
  clip-path: polygon(0 100%, 0 55%, 8% 68%, 18% 40%, 28% 62%, 38% 20%, 52% 55%, 62% 30%, 76% 58%, 86% 38%, 100% 62%, 100% 100%);
}
.scene-mtn.back {
  bottom: 35%;
  height: 60%;
  background: linear-gradient(to top, #A6B8CA 0%, #C2D0DE 100%);
  clip-path: polygon(0 100%, 0 68%, 15% 50%, 24% 70%, 38% 35%, 50% 60%, 64% 28%, 78% 52%, 92% 40%, 100% 58%, 100% 100%);
  opacity: 0.9;
}
.scene-mtn.front {
  bottom: 28%;
  height: 40%;
  background: linear-gradient(to top, #4E6B53 0%, #6F8B6A 100%);
  clip-path: polygon(0 100%, 0 70%, 10% 50%, 22% 75%, 34% 45%, 48% 68%, 58% 40%, 72% 70%, 86% 50%, 100% 65%, 100% 100%);
}
/* Snow caps */
.scene-mtn.front::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 28%;
  background: rgba(255,255,255,0.22);
  clip-path: polygon(22% 73%, 34% 45%, 42% 60%, 48% 68%, 54% 60%, 58% 40%, 64% 58%, 72% 70%, 78% 60%, 86% 50%, 92% 60%, 100% 65%, 100% 0, 0 0, 0 70%, 10% 50%, 16% 60%);
}
/* Foreground grass / field */
.scene-field {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 31%;
  background:
    linear-gradient(to top, #5C8141 0%, #7BA45A 100%);
}
.scene-field::before {
  content: "";
  position: absolute;
  top: -6px; left: 0; right: 0; height: 12px;
  background: radial-gradient(circle at 3px 12px, #5C8141 3px, transparent 4px);
  background-size: 8px 12px;
}
/* Flower planter in foreground */
.scene-planter {
  position: absolute;
  left: 58%; bottom: 2%;
  width: 34%;
  aspect-ratio: 2 / 1;
  z-index: 5;
}
.scene-planter .pot {
  position: absolute; bottom: 0; left: 15%; right: 15%; height: 45%;
  background: linear-gradient(to bottom, #B6602F, #8C4622);
  border-radius: 6px 6px 2px 2px;
  box-shadow: inset 0 6px 0 rgba(255,255,255,0.15);
}
.scene-planter .pot::before {
  content: ""; position: absolute; top: 0; left: -6%; right: -6%; height: 18%;
  background: linear-gradient(to bottom, #9F5326, #7A3C1B);
  border-radius: 4px;
}
.scene-planter .stem {
  position: absolute; bottom: 30%;
  width: 3px; height: 55%;
  background: linear-gradient(to top, #2E5C23, #4A8238);
  border-radius: 2px;
  transform-origin: bottom center;
}
.scene-planter .flower {
  position: absolute;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--bee) 0%, var(--bee) 30%, #E38AA6 31%, #E38AA6 100%);
  box-shadow: inset 0 0 0 2px var(--ink);
}
.f1 { left: 32%; top: 5%; } .s1 { left: 38%; }
.f2 { left: 48%; top: 15%; background: radial-gradient(circle at center, var(--bee) 0%, var(--bee) 30%, #F4C430 31%, #E5A227 100%); } .s2 { left: 54%; }
.f3 { left: 64%; top: 8%; background: radial-gradient(circle at center, var(--bee) 0%, var(--bee) 30%, #FFFFFF 31%, #F0E8D4 100%); } .s3 { left: 70%; }

/* Floating bee */
.scene-bee {
  position: absolute;
  top: 22%; left: 18%;
  width: 48px; height: 36px;
  z-index: 6;
  animation: beefly 9s ease-in-out infinite;
}
.scene-bee .body {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, var(--bee) 0 10px, var(--ink) 10px 14px, var(--bee) 14px 22px);
  border-radius: 50%;
  border: 2px solid var(--ink);
}
.scene-bee .wing {
  position: absolute; top: -8px; left: 10px;
  width: 18px; height: 14px;
  background: rgba(255,255,255,0.75);
  border: 1.5px solid var(--ink);
  border-radius: 60% 80% 40% 80%;
  transform-origin: bottom left;
  animation: wingflap 0.18s ease-in-out infinite alternate;
}
.scene-bee .wing.r { left: 22px; border-radius: 80% 60% 80% 40%;}
@keyframes beefly {
  0%, 100% { transform: translate(0, 0) rotate(-2deg); }
  25% { transform: translate(30px, -12px) rotate(3deg); }
  50% { transform: translate(60px, 6px) rotate(-3deg); }
  75% { transform: translate(20px, -18px) rotate(4deg); }
}
@keyframes wingflap { from { transform: scaleY(1); } to { transform: scaleY(0.6) rotate(6deg); } }

/* Stats strip */
.stats-strip { padding: 56px 0; background: var(--paper-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hero-stats .stat {
  padding: 0 24px;
  border-right: 1px solid var(--rule);
}
.hero-stats .stat:last-child { border-right: none; }
.hero-stats .num { font-family: var(--font-display); font-size: 44px; line-height: 1; letter-spacing: -0.02em; }
.hero-stats .num em { font-style: italic; font-weight: 300; color: var(--cap-deep); font-size: 28px;}
.hero-stats .lbl { font-size: 13px; color: var(--muted); margin-top: 6px; font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase; }

@media (max-width: 900px) {
  .hero[data-variant="a"] .hero-bottom,
  .hero[data-variant="b"] .hero-inner { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .hero-stats .stat:nth-child(2n) { border-right: none; }
}
