/* ==========================================================================
   HOME LAYOUT VARIANTS
   --------------------------------------------------------------------------
   Layout 1 (Editorial Split) lives in style.css — it is the default.
   This file adds layouts 2–5. All of them reuse the same tokens, components
   and template parts; only the hero and the section arrangement differ.
   Loaded on the front page only.
   ========================================================================== */

/* ==========================================================================
   LAYOUT 2 — IMMERSIVE   (the approved direction)
   --------------------------------------------------------------------------
   Full-bleed photographic hero with a dark scrim, then a light body. The dark
   opening is the whole point, so it gets the depth work: layered scrim, grain,
   scroll-linked parallax, and a product peek strip so commerce is visible
   before the first scroll.
   ========================================================================== */
.hero-immersive {
  position: relative;
  /* Contain the oversized media layer here rather than relying on a page-level
     overflow rule. If anything else on the page defeats that rule — a plugin,
     a wide embed — the hero would otherwise shift sideways with it. */
  overflow: hidden;
  max-width: 100%;
  min-height: min(100vh, 940px);
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);
}

/* Media sits slightly larger than the frame so parallax has room to move. */
.hero-immersive__media {
  position: absolute;
  inset: -12% 0 -12% 0;
  z-index: -3;
  will-change: transform;
}
.hero-immersive__media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: bbh-kenburns 26s ease-in-out infinite alternate;
}
@keyframes bbh-kenburns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.14); }
}

/* Two-layer scrim: a warm bloom behind the type, then a vertical gradient that
   is heaviest at the bottom so the peek strip stays readable. */
.hero-immersive__scrim {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse 58% 50% at 50% 40%, rgba(253, 65, 16, 0.22), transparent 70%),
    linear-gradient(to bottom,
      rgba(0, 0, 0, var(--scrim-top, 0.58)) 0%,
      rgba(0, 0, 0, var(--scrim-mid, 0.68)) 42%,
      rgba(0, 0, 0, var(--scrim-btm, 0.90)) 100%);
}
/* Three strengths, because how dark this needs to be depends entirely on the
   photograph behind it. Set per page in ACF. */
.hero-immersive[data-scrim="light"]  { --scrim-top: 0.34; --scrim-mid: 0.46; --scrim-btm: 0.80; }
.hero-immersive[data-scrim="medium"] { --scrim-top: 0.58; --scrim-mid: 0.68; --scrim-btm: 0.90; }
.hero-immersive[data-scrim="heavy"]  { --scrim-top: 0.72; --scrim-mid: 0.80; --scrim-btm: 0.94; }

.hero-immersive__inner {
  align-self: center;
  text-align: center;
  padding-block: clamp(var(--sp-14), 16vh, 11rem) var(--sp-10);
  /* This is a grid item, and grid items default to min-width: auto — they will
     not shrink below their content's intrinsic minimum. A long word in the
     headline could therefore force the whole hero wider than the screen, which
     is what pushes the copy sideways. */
  min-width: 0;
}
.hero-immersive__copy {
  max-width: 60rem;
  margin-inline: auto;
  /* min-width: 0 lets the column shrink below its content's intrinsic width;
     overflow-wrap stops a long unbroken word forcing it wider. */
  min-width: 0;
  overflow-wrap: anywhere;
}

.hero-immersive .eyebrow { color: #FF9C78; }
.hero-immersive .eyebrow::before, .hero-immersive .eyebrow::after { background: #FF9C78; }

.hero-immersive h1 {
  font-size: var(--fs-5xl);
  overflow-wrap: break-word;
  line-height: 0.96;
  letter-spacing: -0.042em;
  color: #fff;
  margin: 0 0 var(--sp-5);
  /* Fraunces at display size: highest optical size, hardest tracking. */
  font-variation-settings: "SOFT" 12, "WONK" 1, "opsz" 144;
}
.hero-immersive h1 em {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: #FF8557;
  font-variation-settings: "SOFT" 18, "WONK" 1, "opsz" 144;
}
.hero-immersive__sub {
  font-size: var(--fs-md);
  line-height: var(--lh-lede);
  color: rgba(251, 248, 244, 0.84);
  max-width: 46ch;
  margin: 0 auto var(--sp-7);
}

/* Line-by-line mask reveal, used on the h1 */
.reveal-line { display: block; /*overflow: hidden; */padding-bottom: 0.06em; }
.reveal-line > span {
  display: block;
  transform: translateY(105%);
  transition: transform 1s var(--ease-out);
}
.is-in .reveal-line > span,
.reveal-line.is-in > span { transform: translateY(0); }
.reveal-line:nth-child(2) > span { transition-delay: 0.13s; }
.reveal-line:nth-child(3) > span { transition-delay: 0.26s; }

/* Stat row */
.hero-immersive__stats {
  display: flex; flex-wrap: wrap; justify-content: center;
  max-width: 100%;
  gap: var(--sp-4) clamp(var(--sp-6), 5vw, var(--sp-12));
  margin-top: var(--sp-9);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(251, 248, 244, 0.16);
}
.hero-immersive__stats div { text-align: center; }
.hero-immersive__stats b {
  display: block;
  font-family: var(--display); font-weight: 600;
  font-size: var(--fs-xl); line-height: 1; color: #fff;
  font-variation-settings: "SOFT" 24, "WONK" 0, "opsz" 48;
}
.hero-immersive__stats small {
  display: block; margin-top: var(--sp-2);
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: var(--tr-label); text-transform: uppercase;
  color: rgba(251, 248, 244, 0.62);
}

/* Product peek strip — commerce above the fold without a second hero */
.hero-peek {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(251, 248, 244, 0.14);
  background: rgba(12, 12, 12, 0.42);
  backdrop-filter: blur(10px);
}
.hero-peek__row {
  display: flex; align-items: stretch;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.hero-peek__row::-webkit-scrollbar { display: none; }
.hero-peek__item {
  flex: 1 0 auto;
  min-width: 0;
  display: flex; align-items: center; gap: var(--sp-4);
  padding: var(--sp-4) clamp(var(--sp-4), 2vw, var(--sp-6));
  border-left: 1px solid rgba(251, 248, 244, 0.10);
  transition: background 0.3s var(--ease);
}
.hero-peek__item:first-child { border-left: 0; }
.hero-peek__item:hover { background: rgba(251, 248, 244, 0.07); }
.hero-peek__thumb {
  width: 52px; height: 52px; flex: none;
  border-radius: 10px; overflow: hidden;
  background: rgba(251, 248, 244, 0.10);
}
.hero-peek__thumb img { width: 100%; height: 100%; object-fit: cover; }
.hero-peek__meta { min-width: 0; }
.hero-peek__meta b {
  display: block;
  font-family: var(--body); font-weight: 600; font-size: var(--fs-sm);
  color: var(--paper);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hero-peek__meta span {
  display: block; margin-top: 2px;
  font-size: var(--fs-sm); font-weight: 600; color: #FF9C78;
}
.hero-peek__all {
  flex: none;
  display: flex; align-items: center; gap: var(--sp-2);
  padding-inline: clamp(var(--sp-4), 2vw, var(--sp-6));
  border-left: 1px solid rgba(251, 248, 244, 0.10);
  font-size: var(--fs-sm); font-weight: 600;
  color: var(--paper);
  white-space: nowrap;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.hero-peek__all:hover { background: var(--flame); color: var(--ink); }

.scroll-cue {
  position: absolute; left: 50%; z-index: 2;
  bottom: calc(100% + var(--sp-5));
  transform: translateX(-50%);
  display: grid; justify-items: center; gap: var(--sp-2);
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: var(--tr-label); text-transform: uppercase;
  color: rgba(251, 248, 244, 0.55);
}
.scroll-cue i {
  display: block; width: 1px; height: 38px;
  background: linear-gradient(to bottom, rgba(251, 248, 244, 0.55), transparent);
  animation: bbh-cue 2.2s ease-in-out infinite;
}
@keyframes bbh-cue {
  0%, 100% { transform: scaleY(0.35); transform-origin: top; opacity: 0.35; }
  50%      { transform: scaleY(1);    transform-origin: top; opacity: 1; }
}

/* Thin value strip directly under the hero, on light */
.trustbar {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.trustbar__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.trustbar__row > div {
  display: flex; align-items: center; gap: var(--sp-3);
  padding-block: var(--sp-5);
  padding-inline: clamp(var(--sp-2), 1.5vw, var(--sp-5));
  font-size: var(--fs-sm); font-weight: 600; color: var(--ink-soft);
  border-left: 1px solid var(--line);
}
.trustbar__row > div:first-child { border-left: 0; padding-left: 0; }
.trustbar__row svg {
  width: 20px; height: 20px; flex: none;
  stroke: var(--flame); fill: none; stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
@media (max-width: 860px) {
  .trustbar__row > div { border-left: 0; padding-inline: 0; padding-block: var(--sp-3); }
  .trustbar__row > div:first-child { padding-top: var(--sp-5); }
}

@media (max-width: 820px) {
  .hero-immersive { min-height: auto; }

  /* padding-block, not padding-top: this file loads after style.css, so setting
     the shorthand here wiped the header offset the overlay header depends on. */
  .hero-immersive__inner { padding-bottom: var(--sp-8); }
  .hero-peek__item { flex: 0 0 auto; }
  .scroll-cue { display: none; }
}

/* The mobile header is shorter, so the hero needs less clearance than desktop. */
@media (max-width: 820px) {
  .has-overlay-header .hero-immersive__inner {
    padding-top: calc(var(--header-h, 76px) + clamp(var(--sp-8), 8vh, var(--sp-12)));
  }
}

/* ==========================================================================
   LAYOUT 3 — BENTO
   Modular tile grid. Everything important is visible without scrolling.
   ========================================================================== */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(150px, auto);
  gap: clamp(0.65rem, 1.1vw, 1rem);
}
.bento__cell {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(1.25rem, 2vw, 1.9rem);
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.bento__cell:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.bento__cell--head { grid-column: span 2; grid-row: span 2; justify-content: center; }
.bento__cell--head h1 {
  font-size: clamp(2.25rem, 3.9vw, 3.5rem);
  line-height: 1.02; letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
}
.bento__cell--head h1 em { display: block; font-style: italic; font-weight: 500; color: var(--flame); }
.bento__cell--head p { color: var(--grey); max-width: 40ch; margin-bottom: 1.5rem; }

.bento__cell--shot { grid-column: span 2; grid-row: span 3; padding: 0; }
.bento__cell--shot img { width: 100%; height: 100%; object-fit: cover; }

/* Ink on vermilion, not white — white here is 3.88:1, below AA for the 11px
   label underneath the figure. */
.bento__cell--flame {
  background: var(--flame); border-color: var(--flame); color: var(--ink);
  grid-column: span 1;
}
.bento__cell--flame b {
  display: block; font-family: var(--display); font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1; color: var(--ink);
}
.bento__cell--flame small {
  display: block; margin-top: 0.45rem;
  font-size: var(--fs-micro); font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(18, 18, 18, 0.78);
}

.bento__cell--ink { background: var(--ink); border-color: var(--ink); color: rgba(251,248,244,0.75); }
.bento__cell--ink b {
  display: block; font-family: var(--display); font-weight: 600;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem); line-height: 1; color: #fff;
}
.bento__cell--ink small {
  display: block; margin-top: 0.45rem;
  font-size: var(--fs-micro); font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(251,248,244,0.55);
}

.bento__cell--quote { grid-column: span 2; }
.bento__cell--quote blockquote {
  margin: 0 0 0.7rem;
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.45; color: var(--ink);
}
.bento__cell--quote figcaption { font-size: 0.8125rem; color: var(--grey-light); }

.bento__cell--tile { padding: 0; }
.bento__cell--tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.bento__cell--tile:hover img { transform: scale(1.07); }

.bento__label {
  position: absolute; top: 0.9rem; left: 0.9rem;
  font-size: var(--fs-micro); font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--grey-light);
}

@media (max-width: 1000px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) {
  .bento { grid-template-columns: 1fr; }
  .bento__cell--head, .bento__cell--shot, .bento__cell--quote { grid-column: span 1; grid-row: auto; }
  .bento__cell--shot { min-height: 320px; }
}

/* ==========================================================================
   LAYOUT 4 — SHOP FIRST
   Price-forward. The catalogue is the hero.
   ========================================================================== */
.hero-shop {
  padding-block: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
  background: var(--paper);
}
.hero-shop__top {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem 2rem; flex-wrap: wrap;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
.hero-shop h1 {
  font-size: clamp(2.25rem, 4.4vw, 3.75rem);
  line-height: 1.03; letter-spacing: -0.03em; margin: 0;
  max-width: 18ch;
}
.hero-shop h1 em { font-style: italic; font-weight: 500; color: var(--flame); }
.hero-shop__aside { max-width: 40ch; }

/* Horizontal scroll rail with snap */
.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 300px);
  gap: clamp(0.85rem, 1.5vw, 1.25rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
}
.rail > * { scroll-snap-align: start; }
.rail::-webkit-scrollbar { height: 6px; }
.rail::-webkit-scrollbar-track { background: var(--line); border-radius: 999px; }
.rail::-webkit-scrollbar-thumb { background: var(--flame); border-radius: 999px; }
.rail.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.rail.is-dragging * { pointer-events: none; }

.rail-nav { display: flex; gap: 0.5rem; }
.rail-nav button {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--line-2);
  display: grid; place-items: center;
  transition: background 0.24s var(--ease), color 0.24s var(--ease), border-color 0.24s var(--ease);
}
.rail-nav button:hover { background: var(--flame); border-color: var(--flame); color: var(--ink); }

/* Value strip */
.valuestrip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.valuestrip div {
  background: var(--paper);
  padding: clamp(1.1rem, 2vw, 1.5rem);
  display: grid; gap: 0.3rem;
}
.valuestrip b { font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.valuestrip span { font-size: 0.85rem; color: var(--grey); }

/* ==========================================================================
   LAYOUT 5 — STORY SCROLL
   Narrative led, with a reading-progress bar and sticky chapter labels.
   ========================================================================== */
.progress-bar {
  position: fixed; top: 0; left: 0; z-index: 150;
  height: 3px; width: 0%;
  background: var(--flame);
  transition: width 0.1s linear;
}

.hero-story {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid; align-items: center;
  padding-block: clamp(3.5rem, 8vw, 7rem);
  overflow: hidden;
}
.hero-story__media {
  position: absolute; inset: 0; z-index: -1;
}
.hero-story__media img { width: 100%; height: 100%; object-fit: cover; }
.hero-story__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, var(--paper) 30%, rgba(251,248,244,0.86) 52%, rgba(251,248,244,0.35) 100%);
}
.hero-story__inner { max-width: 640px; }
.hero-story h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.5rem);
  line-height: 1.03; letter-spacing: -0.03em; margin: 0 0 1.1rem;
}
.hero-story h1 em { font-style: italic; font-weight: 500; color: var(--flame); }
.hero-story__quote {
  margin: 2rem 0 0;
  padding-left: 1.25rem;
  border-left: 3px solid var(--flame);
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.45; color: var(--ink);
}
.hero-story__quote cite {
  display: block; margin-top: 0.6rem;
  font-family: var(--body); font-style: normal;
  font-size: 0.8125rem; font-weight: 600; color: var(--grey-light);
}

.chapter { position: relative; }
.chapter__label {
  position: sticky; top: 100px;
  font-size: var(--fs-micro); font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--flame-dark);
  align-self: start;
}
.chapter__grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 800px) {
  .chapter__grid { grid-template-columns: 1fr; }
  .chapter__label { position: static; }
}

/* Full-bleed narrative band */
.band {
  position: relative;
  min-height: 60vh;
  display: grid; place-items: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.band img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(18,18,18,0.62), rgba(18,18,18,0.82));
}
.band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3.25rem); max-width: 20ch; margin-inline: auto; }
.band p { color: rgba(251,248,244,0.82); max-width: 52ch; margin-inline: auto; }

/* ==========================================================================
   SHARED — count-up figures
   ========================================================================== */
.counter { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  .hero-immersive__media img { animation: none; transform: scale(1.05); }
  .reveal-line > span { transform: none !important; }
  .scroll-cue i { animation: none; }
}

/* ==========================================================================
   LAYOUT 6 — GOLDEN HARVEST
   --------------------------------------------------------------------------
   The honey-sector convention: warm gold, honeycomb, bee motifs, drip
   dividers, soft rounded shapes. This is the one direction that departs from
   the logo palette, so it re-maps the accent tokens on <body> and the whole
   page follows — header, footer and every shared section included.
   ========================================================================== */
/* The golden palette override now lives in style.css, because the body class
   is site-wide and interior pages need the same tokens. */

/* Honeycomb ground */
.honeycomb-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.honeycomb-bg::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background-image: url("../img/honeycomb.svg");
  background-repeat: repeat;
  opacity: 0.5;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, #000 15%, transparent 72%);
          mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, #000 15%, transparent 72%);
}

.hero-golden {
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(4rem, 9vw, 7rem);
  background: var(--paper-2);
  text-align: center;
}
.hero-golden h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.02; letter-spacing: -0.03em;
  margin: 0 0 1.1rem;
}
.hero-golden h1 em { display: block; font-style: italic; font-weight: 500; color: var(--flame-dark); }
.hero-golden__sub {
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  color: var(--grey);
  max-width: 52ch; margin: 0 auto 2rem;
}

/* Hex product trio under the headline */
.hexrow {
  display: flex; justify-content: center; align-items: flex-end;
  gap: clamp(0.75rem, 2vw, 2rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  flex-wrap: wrap;
}
.hexcell {
  width: clamp(150px, 20vw, 230px);
  text-align: center;
  transition: transform 0.4s var(--ease);
}
.hexcell:nth-child(2) { transform: translateY(-24px); }
.hexcell:hover { transform: translateY(-34px); }
.hexcell:nth-child(2):hover { transform: translateY(-52px); }
.hexcell__art {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.hexcell__art img { width: 100%; height: auto; }
.hexcell b {
  display: block; margin-top: 0.85rem;
  font-family: var(--display); font-weight: 600; font-size: 1rem; color: var(--ink);
  line-height: 1.25;
}
.hexcell span { display: block; font-size: 0.85rem; color: var(--flame-dark); font-weight: 600; }

/* Floating bee */
.bee {
  position: absolute; width: 54px; z-index: 2;
  animation: bbh-bee 14s ease-in-out infinite;
  pointer-events: none;
}
.bee--1 { top: 14%; left: 8%; }
.bee--2 { top: 26%; right: 10%; animation-delay: -6s; transform: scaleX(-1); }
@keyframes bbh-bee {
  0%   { transform: translate(0, 0) rotate(-6deg); }
  25%  { transform: translate(26px, -18px) rotate(5deg); }
  50%  { transform: translate(52px, 6px) rotate(-3deg); }
  75%  { transform: translate(20px, 22px) rotate(6deg); }
  100% { transform: translate(0, 0) rotate(-6deg); }
}
.bee--2 { animation-name: bbh-bee-flip; }
@keyframes bbh-bee-flip {
  0%   { transform: scaleX(-1) translate(0, 0) rotate(6deg); }
  25%  { transform: scaleX(-1) translate(24px, 20px) rotate(-5deg); }
  50%  { transform: scaleX(-1) translate(46px, -8px) rotate(4deg); }
  75%  { transform: scaleX(-1) translate(18px, -24px) rotate(-6deg); }
  100% { transform: scaleX(-1) translate(0, 0) rotate(6deg); }
}

/* Honey drip divider */
.drip {
  display: block; width: 100%; height: clamp(38px, 5vw, 70px);
  margin: 0; border: 0; line-height: 0;
}
.drip img { width: 100%; height: 100%; object-fit: fill; }

/* Stat band */
.goldstats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  text-align: center;
}
.goldstats div { display: grid; gap: 0.3rem; }
.goldstats b {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1; color: var(--flame-dark);
}
.goldstats small {
  font-size: var(--fs-micro); font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey);
}

@media (prefers-reduced-motion: reduce) {
  .bee { animation: none; }
  .hexcell:nth-child(2) { transform: none; }
}

/* ==========================================================================
   LAYOUT 7 — CLASSIC SLIDER
   ========================================================================== */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.hero-slider__viewport { position: relative; }

.hero-slider__slide {
  position: absolute; inset: 0;
  display: grid; align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.85s var(--ease), visibility 0.85s;
  overflow: hidden;
}
/* The first slide is in flow so the section has a natural height; the rest
   stack on top of it absolutely. */
.hero-slider__slide:first-child { position: relative; }
.hero-slider__slide.is-active { opacity: 1; visibility: visible; z-index: 1; }

.hero-slider__img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
}
.hero-slider__slide.is-active .hero-slider__img {
  animation: bbh-slide-zoom 9s ease-out forwards;
}
@keyframes bbh-slide-zoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.15); }
}
.hero-slider__slide::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(18,18,18,0.86) 0%, rgba(18,18,18,0.62) 48%, rgba(18,18,18,0.34) 100%);
}
.hero-slider__slide--right::after {
  background: linear-gradient(270deg, rgba(18,18,18,0.86) 0%, rgba(18,18,18,0.62) 48%, rgba(18,18,18,0.34) 100%);
}
.hero-slider__slide--center::after {
  background: linear-gradient(180deg, rgba(18,18,18,0.55) 0%, rgba(18,18,18,0.78) 100%);
}

.hero-slider__inner { padding-block: clamp(5rem, 13vw, 10rem); }
.hero-slider__copy { max-width: 40rem; }
.hero-slider__slide--center .hero-slider__copy { max-width: 46rem; margin-inline: auto; text-align: center; }
.hero-slider__slide--center .hero-slider__copy .eyebrow { justify-content: center; }
.hero-slider__slide--center .hero-slider__copy .eyebrow::after {
  content: ""; width: 22px; height: 2px; background: currentColor;
}
.hero-slider__slide--right .hero-slider__copy { margin-left: auto; text-align: right; }
.hero-slider__slide--right .hero-slider__copy .eyebrow { flex-direction: row-reverse; }

.hero-slider .eyebrow { color: #FF9C78; }
.hero-slider .eyebrow::before, .hero-slider .eyebrow::after { background: #FF9C78; }
body.bbh-palette-golden .hero-slider .eyebrow { color: #F5C462; }
body.bbh-palette-golden .hero-slider .eyebrow::before,
body.bbh-palette-golden .hero-slider .eyebrow::after { background: #F5C462; }

.hero-slider__title {
  font-size: clamp(2.4rem, 5.6vw, 4.75rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 1rem;
}
.hero-slider__text {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: rgba(251, 248, 244, 0.86);
  max-width: 46ch;
  margin: 0 0 2rem;
}
.hero-slider__slide--center .hero-slider__text { margin-inline: auto; }
.hero-slider__slide--right .hero-slider__text { margin-left: auto; }

/* Copy animates in only on the active slide */
.hero-slider__copy > * {
  opacity: 0;
  transform: translateY(24px);
}
.hero-slider__slide.is-active .hero-slider__copy > * {
  animation: bbh-slide-in 0.75s var(--ease-out) forwards;
}
.hero-slider__slide.is-active .hero-slider__copy > *:nth-child(1) { animation-delay: 0.15s; }
.hero-slider__slide.is-active .hero-slider__copy > *:nth-child(2) { animation-delay: 0.27s; }
.hero-slider__slide.is-active .hero-slider__copy > *:nth-child(3) { animation-delay: 0.39s; }
.hero-slider__slide.is-active .hero-slider__copy > *:nth-child(4) { animation-delay: 0.51s; }
@keyframes bbh-slide-in {
  to { opacity: 1; transform: none; }
}

/* Arrows */
.hero-slider__arrow {
  position: absolute; top: 50%; z-index: 3;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 1.1rem;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.hero-slider__arrow:hover { background: var(--flame); color: var(--ink); }
.hero-slider__arrow--prev { left: clamp(0.75rem, 2.5vw, 2rem); }
.hero-slider__arrow--next { right: clamp(0.75rem, 2.5vw, 2rem); }

/* Dots + pause */
.hero-slider__controls {
  position: absolute; z-index: 3;
  left: 50%; bottom: clamp(1.25rem, 3vw, 2.25rem);
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 1rem;
}
.hero-slider__dots { display: flex; gap: 0.5rem; }
.hero-slider__dots button {
  width: 30px; height: 20px;
  display: grid; place-items: center;
}
.hero-slider__dots span {
  display: block;
  width: 26px; height: 3px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  transition: background 0.28s var(--ease), width 0.28s var(--ease);
}
.hero-slider__dots button[aria-selected="true"] span { background: var(--flame); width: 34px; }
.hero-slider__dots button:hover span { background: rgba(255, 255, 255, 0.7); }

.hero-slider__pause {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.25s var(--ease);
}
.hero-slider__pause:hover { background: rgba(255, 255, 255, 0.24); }
.hero-slider__pause-icon {
  width: 10px; height: 12px;
  border-left: 3px solid #fff;
  border-right: 3px solid #fff;
}
.hero-slider__pause[aria-pressed="true"] .hero-slider__pause-icon {
  width: 0; height: 0;
  border: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #fff;
  margin-left: 3px;
}

@media (max-width: 700px) {
  .hero-slider__arrow { display: none; }
  .hero-slider__slide--right .hero-slider__copy { margin-left: 0; text-align: left; }
  .hero-slider__slide--right .hero-slider__copy .eyebrow { flex-direction: row; }
  .hero-slider__slide::after,
  .hero-slider__slide--right::after {
    background: linear-gradient(180deg, rgba(18,18,18,0.60) 0%, rgba(18,18,18,0.86) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider__slide.is-active .hero-slider__img { animation: none; transform: scale(1.02); }
  .hero-slider__copy > * { opacity: 1; transform: none; }
  .hero-slider__slide.is-active .hero-slider__copy > * { animation: none; }
}
