/* ============================================================
   The Dripping Hive - Brand stylesheet
   Pure British Honey · Crafted by Nature, Bottled with Purpose
   ============================================================ */

:root {
  --nav-height: 60px;
  /* Core palette - pulled from logo & dark photography */
  --ink:        #222222;            /* primary bg (matches logo card) */
  --ink-2:      #1c1c1c;            /* deeper panel */
  --ink-3:      #2b2b2b;            /* raised panel / hairline */
  --slate:      #2a2724;            /* warm dark stone */
  --cream:      #ffffff;            /* clean white (matches logo type) */
  --cream-2:    #cfc9bd;            /* muted cream */
  --cream-3:    #a39c8d;            /* low-contrast type, WCAG AA vs --ink/--ink-2 */
  --gold:       #ffcd04;            /* brand yellow - exactly #ffcd04 */
  --gold-light: #ffe066;            /* highlight yellow */
  --gold-deep:  #cca300;            /* deep amber */
  --rule:       rgba(255, 255, 255, 0.10);
  --rule-strong: rgba(255, 255, 255, 0.22);

  /* Type - Montserrat + signature script for accents */
  --font-display: "Montserrat", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-sans:    "Montserrat", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-script:  "Brittany Signature", "Brittany", cursive;
  --font-italic:  "Montserrat", sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, Menlo, monospace;

  /* Honey palette SSOT. Components consume the --honey-* aliases supplied by
     [data-honey]; never define variety colors inside a component. */
  --honey-heather-accent: #bc3fde;
  --honey-heather-label: #b936dd;
  --honey-heather-on-color: #ffffff;
  --honey-spring-accent: #c1ff72;
  --honey-spring-label: #c1ff72;
  --honey-spring-on-color: #222222;
  --honey-summer-accent: #ffb11a;
  --honey-summer-label: #f4c972;
  --honey-summer-on-color: #222222;
  --honey-borage-accent: #0aacc8;
  --honey-borage-label: #0aacc8;
  --honey-borage-on-color: #222222;

  /* Spacing scale */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2.5rem;
  --s-5: 4rem;
  --s-6: 6.5rem;
  --s-7: 10rem;

  /* Letterspacing */
  --tracking-tight: -0.01em;
  --tracking-normal: 0;
  --tracking-wide:  0.14em;
  --tracking-xwide: 0.22em;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Button shape SSOT. Every standard button inherits this through .btn. */
  --radius-button: 8px;

  /* Honey card component dimensions (SSOT alignment tokens) */
  --honey-card-desc-height:    8.5rem;
  --honey-card-pairing-height: 3.5em;
}

/* Canonical palette contract for every honey-aware component. New components
   only need data-honey="heather|spring|summer|borage". */
[data-honey="heather"] {
  --honey-accent: var(--honey-heather-accent);
  --honey-label: var(--honey-heather-label);
  --honey-on-color: var(--honey-heather-on-color);
}
[data-honey="spring"] {
  --honey-accent: var(--honey-spring-accent);
  --honey-label: var(--honey-spring-label);
  --honey-on-color: var(--honey-spring-on-color);
}
[data-honey="summer"] {
  --honey-accent: var(--honey-summer-accent);
  --honey-label: var(--honey-summer-label);
  --honey-on-color: var(--honey-summer-on-color);
}
[data-honey="borage"] {
  --honey-accent: var(--honey-borage-accent);
  --honey-label: var(--honey-borage-label);
  --honey-on-color: var(--honey-borage-on-color);
}

/* ------------------------------------------------------------
   Fonts - all self-hosted. No third-party font request is made, so no
   visitor IP is handed to Google or cdnfonts. Montserrat is the variable
   cut: one file covers 300-800 instead of nine static weight files.
   ------------------------------------------------------------ */
@font-face {
  font-family: 'Montserrat';
  src: url('Assets/fonts/montserrat-latin-var.woff2') format('woff2-variations'),
       url('Assets/fonts/montserrat-latin-var.woff2') format('woff2');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('Assets/fonts/montserrat-latin-var-italic.woff2') format('woff2-variations'),
       url('Assets/fonts/montserrat-latin-var-italic.woff2') format('woff2');
  font-weight: 300 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('Assets/fonts/jetbrains-mono-latin-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Brittany Signature';
  src: local('Brittany Signature'), local('Brittany'),
       url('Assets/fonts/BrittanySignature.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}
/* No scroll-snap. `y mandatory` (previously applied above 1025px) seizes the wheel
   and yanks the page to section boundaries, which reads as the site fighting you.
   scroll-padding-top still matters: it keeps anchor targets clear of the fixed nav. */
html {
  scroll-padding-top: var(--nav-height);
}
html, body { background: var(--ink); }

body {
  font-family: var(--font-sans);
  color: var(--cream);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* `clip`, never `hidden`. Per spec an `overflow-x: hidden` on body propagates to the
     viewport and makes it a scroll container, which on iOS Safari decouples the layout
     and visual viewports: the fixed nav then lags behind momentum scroll (page shows
     through the gap it hasn't repainted) and the page jolts as Safari's toolbars
     collapse. `clip` crops identically but creates no scroll container, so none of
     that applies. It is also the only value that may pair with a visible y-axis. */
  overflow-x: clip;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--gold-light); }

/* ----- Subtle film-grain overlay (page-wide atmosphere) ----- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.05;
  mix-blend-mode: overlay;
  /* Own compositing layer, so the grain isn't repainted with the content beneath it. */
  transform: translateZ(0);
  will-change: transform;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* A fixed, full-viewport mix-blend-mode layer forces the whole page into one
   composited blend group that re-blends every scroll frame - expensive on phones.
   At 5% opacity the blend mode is doing almost nothing visible, so touch devices
   keep the grain texture and drop the blend. */
@media (hover: none) {
  body::before { mix-blend-mode: normal; opacity: 0.035; }
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: var(--tracking-tight);
  color: var(--cream);
  text-transform: uppercase;
}

h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Italic accents render in the serif (Cormorant) for editorial body moments;
   bold display headlines that should feel handwritten use --font-script */
em {
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.01em;
}
.script {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1;
}

/* Inline Brittany Signature accents used throughout navigation and headings. */
.sig-script-nav,
.sig-script-badge,
.sig-script-footer-link,
.sig-script-footer-head {
  font-family: var(--font-script);
  text-transform: none;
  font-weight: 400;
  display: inline-block;
  vertical-align: middle;
  line-height: 0.8;
  position: relative;
  top: -1px;
}
.sig-script-nav,
.sig-script-footer-link {
  font-size: 1.45em;
  margin: 0 0.08em;
}
.sig-script-badge {
  font-size: 1.45em;
  margin: 0 0.12em;
  color: var(--cream);
}
.sig-script-footer-head {
  font-size: 1.55em;
  margin: 0 0.12em;
  color: var(--gold);
}

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  font-size: 0.72rem;
  color: var(--cream-2);
}

.eyebrow.gold { color: var(--gold); }

.gold { color: var(--gold); }

/* ============================================================
   Layout helpers
   ============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s-3);
}
/* Phones get wider gutters than the 1.5rem default. Every grid collapses to a single
   full-width column down here, so the cards inherit the container's edge directly and
   1.5rem left them looking bled to the screen edge. Set once on .container rather than
   per-component, so the shop, contact and interior pages all inset by the same amount. */
@media (max-width: 560px) {
  .container { padding: 0 2rem; }
}

.section {
  padding: var(--s-6) 0;
}

.section--collection {
  padding-top: var(--s-5);
  padding-bottom: var(--s-4);
}

/* Desktop-only: the Signature Collection preview is dropped from mobile/tablet,
   where the full products page is the primary path to browse the range. */
@media (max-width: 1024px) {
  .section--collection {
    display: none;
  }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  padding: 1.1rem 1.6rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius-button);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  text-decoration: none;
}

.btn:hover {
  background: var(--gold);
  color: var(--ink);
}

.btn--filled {
  background: var(--gold);
  color: var(--ink);
}
.btn--filled:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--ink);
}

.btn--ghost {
  background: var(--ink);
  border-color: var(--rule-strong);
  color: var(--cream);
}
.btn--ghost:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink);
}

.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn { transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.12s var(--ease); }
.btn:active { transform: scale(0.97); }

/* Touch devices: surface the hover treatment on press (no real hover state) */
@media (hover: none) {
  .btn:active { background: var(--gold); color: var(--ink); }
  .btn--ghost:active { background: var(--cream); border-color: var(--cream); color: var(--ink); }
  .hero__actions .btn--ghost:active { background: var(--ink); border-color: var(--rule-strong); color: var(--cream); }
  .honey-card:active .honey-card__media img { transform: scale(1.02); }
  .honey-card[class*="honey-card--"]:active .honey-card__media {
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--honey-accent) 55%, transparent),
                0 12px 32px -12px color-mix(in srgb, var(--honey-accent) 50%, transparent);
  }
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(34, 34, 34, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  padding: 0.5rem 0;
  /* Additive, not max(): the inset is extra room the notch/island needs *on top of*
     the bar's own padding. With max() a 59px inset would swallow the 0.5rem entirely
     and sit the logo flush against the island. */
  padding-top: calc(0.5rem + env(safe-area-inset-top, 0px));
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  /* Do NOT add transform/will-change here to "promote" the bar. It was tried against
     the nav gap (11d3ce7) and did nothing, because the cause was body's overflow-x
     rather than this element's layer. It also actively hurts: a transform makes .nav
     the containing block for .nav__mobile, which is a fixed-position descendant that
     wants the viewport. The real fix lives on body. */
}

/* Continuously re-blurring the page behind a fixed bar is a known iOS Safari scroll
   jank source. Touch devices get a solid bar instead; desktop keeps the frost. */
@media (hover: none) {
  .nav {
    background: var(--ink);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  position: relative;
  z-index: 100;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex: 0 0 auto;
}
.nav__logo-mark {
  height: 44px;
  width: auto;
  display: block;
}
.nav__logo-word {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cream);
  gap: 3px;
}
.nav__logo-word .word-1 { font-size: 14px; }
.nav__logo-word .word-2 { font-size: 14px; color: var(--gold); letter-spacing: -0.01em; }
.nav__logo-word .word-3 { font-size: 14px; }
@media (max-width: 480px) {
  .nav__logo { gap: 0.5rem; }
  .nav__logo-mark { height: 36px; }
  .nav__logo-word { gap: 2px; }
  .nav__logo-word .word-1,
  .nav__logo-word .word-2,
  .nav__logo-word .word-3 { font-size: 11.5px; }
}

.nav__links {
  display: flex;
  gap: var(--s-4);
  list-style: none;
}

.nav__link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--cream-2);
  position: relative;
  padding-bottom: 4px;
}
.nav__link em {
  font-family: var(--font-sans);
  font-weight: inherit;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav__link:hover,
.nav__link.active {
  color: var(--cream);
}
.nav__link.active::after,
.nav__link:hover::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: var(--s-2); }

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 12px 8px;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
}
.nav__hamburger span {
  position: absolute;
  left: 8px;
  width: calc(100% - 16px);
  height: 1px;
  background: var(--cream);
  transition: 0.3s var(--ease);
}
.nav__hamburger span:nth-child(1) { top: 12px; }
.nav__hamburger span:nth-child(2) { top: 50%; }
.nav__hamburger span:nth-child(3) { bottom: 12px; }
.nav__hamburger.active span:nth-child(1) { top: 50%; transform: rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { bottom: 50%; transform: rotate(-45deg); }

.nav__mobile {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--ink);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--s-3);
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.4s var(--ease), visibility 0.4s var(--ease);
  z-index: 99;
}
.nav__mobile.active {
  transform: translateY(0);
  visibility: visible;
}

@media (max-width: 880px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__hamburger { display: block; }
  .nav__mobile { display: flex; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 9rem 0 3.6rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__bg::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 78% 38%, rgba(201, 160, 77, 0.18), transparent 40%),
    radial-gradient(circle at 12% 70%, rgba(122, 91, 143, 0.10), transparent 45%);
  filter: blur(20px);
}

.hero__honeycomb {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 305px;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='324' height='455'><defs><g id='h'><path d='M-54 0 L-27 -46.77 L27 -46.77 L54 0 L27 46.77 L-27 46.77 Z' fill='none' stroke='%23323232' stroke-width='1.2'/></g></defs><use href='%23h' x='0' y='405'/><use href='%23h' x='0' y='311.47'/><use href='%23h' x='0' y='217.94'/><use href='%23h' x='0' y='124.41'/><use href='%23h' x='0' y='30.88'/><use href='%23h' x='81' y='358.23'/><use href='%23h' x='81' y='264.70'/><use href='%23h' x='81' y='171.17'/><use href='%23h' x='81' y='77.64'/><use href='%23h' x='162' y='405'/><use href='%23h' x='162' y='311.47'/><use href='%23h' x='162' y='217.94'/><use href='%23h' x='162' y='124.41'/><use href='%23h' x='162' y='30.88'/><use href='%23h' x='243' y='358.23'/><use href='%23h' x='243' y='264.70'/><use href='%23h' x='243' y='171.17'/><use href='%23h' x='243' y='77.64'/><use href='%23h' x='324' y='405'/><use href='%23h' x='324' y='311.47'/><use href='%23h' x='324' y='217.94'/><use href='%23h' x='324' y='124.41'/><use href='%23h' x='324' y='30.88'/></svg>");
  background-repeat: repeat-x;
  background-size: 324px 455px;
  background-position: bottom center;
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.85) 20%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to top, rgba(0,0,0,0.85) 20%, rgba(0,0,0,0) 100%);
}
.hero__honeycomb--top {
  top: 0;
  bottom: auto;
  transform: scaleY(-1);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--s-6);
  align-items: center;
}

.badge {
  display: inline-block;
  background: none;
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}


.hero__title {
  margin-bottom: 1.35rem;
  line-height: 1.15;
  display: flex;
  flex-direction: column;
}
.hero__title-line-1 {
  display: block;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(1.7rem, 4.3vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream);
  white-space: nowrap;
}
.hero__title-line-2 {
  display: block;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream-3);
  margin-top: 0.15rem;
  white-space: nowrap;
}
.hero__title-line-3 {
  display: block;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream-2);
  margin-top: 0.15rem;
  white-space: nowrap;
}

.hero__sub {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--cream-2);
  max-width: 44ch;
  margin-bottom: 2.25rem;
}

.hero__actions { display: flex; gap: var(--s-2); flex-wrap: wrap; }
.hero__actions .btn { justify-content: center; min-width: 270px; }
.hero__actions .btn--ghost {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink);
}
.hero__actions .btn--ghost:hover {
  background: var(--ink);
  border-color: var(--rule-strong);
  color: var(--cream);
}

.hero__image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  max-height: 520px;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__image-frame {
  position: absolute;
  inset: 0.5rem;
  border: 1px solid var(--rule-strong);
  pointer-events: none;
}

@media (min-width: 881px) {
  .hero__image-wrap {
    justify-self: end;
  }
}

@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--s-4); }
  /* Let the title, image, and rest of the content interleave in a custom order */
  .hero__content { display: contents; }
  .hero__title { order: 1; }
  .hero__image-wrap { order: 2; }
  .hero__sub { order: 3; }
  .hero__actions { order: 4; }
}

/* Phones: fit the whole hero on one screen, keep symmetric side margins */
@media (max-width: 560px) {
  .hero {
    min-height: 100dvh;
    padding: calc(var(--nav-height) + 0.35rem) 0 0.5rem;
  }
  .hero__inner { gap: 0.7rem; }
  .home-page .hero__inner {
    text-align: center;
  }
  .hero__image-wrap {
    /* Keep the image's true 4:5 shape; cap height (not width) so it stays uncropped */
    aspect-ratio: 4 / 5;
    width: auto;
    height: 32vh;
    max-height: 290px;
    min-height: 190px;
    justify-self: center;
  }
  .hero__title { margin-bottom: 0.5rem; }
  .hero__title-line-1 {
    font-size: clamp(1.1rem, 5.6vw, 1.5rem);
  }
  .hero__title-line-2,
  .hero__title-line-3 {
    font-size: clamp(0.88rem, 4.2vw, 1.1rem);
  }
  .hero__sub {
    font-size: 0.82rem;
    line-height: 1.4;
    margin-bottom: 0.65rem;
  }
  .home-page .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }
  /* Full-width stacked CTAs, matching the hero image width */
  .hero__actions { gap: 0.45rem; flex-direction: column; }
  .hero__actions .btn { width: 100%; min-width: 0; padding: 0.65rem 1.6rem; }
}

/* Landscape phones: don't let the full-height hero crush vertically */
@media (max-width: 880px) and (orientation: landscape) and (max-height: 500px) {
  .hero { min-height: auto; padding: var(--s-6) 0 var(--s-4); }
  /* Top-align so the image lines up with the title, not the column centre */
  .hero__inner { grid-template-columns: 1fr 1fr; align-items: start; }
  /* Revert the stacked-order split so text and image sit side by side again */
  .hero__content { display: block; }
  /* Same framing as the portrait mobile hero image (aspect ~1.2) */
  .hero__image-wrap { aspect-ratio: 1.2; max-height: none; order: 0; }
}

/* ============================================================
   Product / Collection cards
   ============================================================ */
.collection__badge-wrap {
  margin-bottom: 1.2rem;
}

.collection-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: var(--s-3);
  margin-bottom: var(--s-3);
  padding-bottom: var(--s-2);
  border-bottom: 1px solid var(--rule);
}
.collection-head h2 {
  margin-top: var(--s-1);
  font-size: clamp(1.4rem, 3.2vw, 2rem);
}
.honey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
@media (max-width: 1024px) {
  .honey-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .honey-grid { grid-template-columns: 1fr; }
}

.honey-card {
  position: relative;
  background: transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.honey-card__media {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
}
.honey-card__media img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease);
}
.honey-card[class*="honey-card--"] .honey-card__media {
  border-top: 2px solid var(--honey-accent, var(--gold));
  transition: box-shadow 0.4s var(--ease);
}
.honey-card[class*="honey-card--"]:hover .honey-card__media,
.honey-card[class*="honey-card--"]:focus-within .honey-card__media {
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--honey-accent) 55%, transparent),
              0 12px 32px -12px color-mix(in srgb, var(--honey-accent) 50%, transparent);
}

.honey-card__body {
  padding: var(--s-3) 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  flex: 1 1 auto;
}
.honey-card__name {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.2;
  color: var(--cream);
  text-transform: none;
}
.honey-card__tag {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--gold);
}
.honey-card__cta {
  margin-top: auto;
  padding-top: var(--s-2);
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}
.honey-card__cta .price { color: var(--gold); }
.honey-card__cta .btn {
  padding: 0.7rem 1rem;
  font-size: 0.68rem;
}

/* Desktop viewport optimization for Signature Collection section */
@media (min-width: 1025px) {
  :root {
    --honey-card-desc-height: 5.6rem;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: calc(var(--nav-height) + 2rem);
    padding-bottom: 2rem;
    display: flex;
    align-items: center;
  }

  .section--collection {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--s-5);
    padding-bottom: var(--s-5);
  }

  .section--collection .container {
    max-width: 1140px;
  }

  .collection-head {
    margin-bottom: var(--s-2);
    padding-bottom: var(--s-1);
    gap: var(--s-1);
    align-items: center;
  }

  .collection__badge-wrap {
    margin-bottom: 0;
  }


  .collection-head h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  }

  .collection__badge-wrap .badge {
    font-size: 34px;
  }

  .honey-grid {
    gap: var(--s-3);
  }


  .honey-card__body {
    padding: 1.1rem 0;
    gap: 0.6rem;
  }

  .honey-card__name {
    font-size: 1.9rem;
  }

  .honey-card__tag {
    font-size: 0.85rem;
  }

  .honey-card__cta {
    margin-top: 0.5rem;
    font-size: 0.85rem;
  }

  /* Snap alignment for middle content bands on desktop */
  .newsletter-block {
  }
}

/* ============================================================
   Page header (interior pages)
   ============================================================ */
/* Interior pages that retain a standalone header use the same height and style.
   That means the height is declared here, not left to emerge from whatever
   the h1 happens to contain - previously an h1 at clamp(3rem, 7vw, 5.5rem) wrapping
   24px .badge text, so the band was ~88px tall with small text adrift in the middle
   and the dead space flexed with viewport width. */
.page-header {
  --page-header-block: 5.75rem;
  box-sizing: content-box;
  min-height: var(--page-header-block);
  /* Content box is centred inside --page-header-block; the nav offset sits outside it,
     so the visual band is identical on every page regardless of nav height. The extra
     0.9rem top/bottom keeps a two-line subtitle off the nav when it overflows the block. */
  padding-top: calc(var(--nav-height) + 0.9rem);
  padding-bottom: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,160,77,0.08), transparent 50%);
  pointer-events: none;
}
.page-header .container { position: relative; width: 100%; }

/* One title treatment for all interior pages. */
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--cream);
  margin: 0;
}
.page-header__sub {
  max-width: 56ch;
  margin: 0.5rem auto 0;
  color: var(--cream-2);
  font-size: 0.84rem;
}
.page-header__points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 1.5rem;
  margin: 0.65rem auto 0;
  padding: 0;
  color: var(--cream-2);
  font-size: 0.84rem;
  list-style: none;
}
.page-header__points li::before {
  content: "•";
  margin-right: 0.55rem;
  color: var(--gold);
}

@media (max-width: 700px) {
  .page-header { --page-header-block: 4.5rem; }
}
/* ============================================================
   Story / longform
   ============================================================ */
.story-content-section {
  padding-top: calc(var(--nav-height) + var(--s-4));
  padding-bottom: 0;
}
.prose {
  max-width: 660px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--cream-2);
}
.prose p { margin-bottom: var(--s-3); }
.prose p.lead {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.story-content-section .prose p.lead {
  font-size: inherit;
  line-height: inherit;
}
.prose p.lead--roman {
  font-family: inherit;
  font-style: normal;
}
.prose h1,
.prose h2 {
  margin-top: 3rem;
  margin-bottom: var(--s-2);
  font-family: var(--font-italic);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  line-height: 1.3;
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--gold);
}
.story-content-section .prose:first-child h1:first-child,
.story-content-section .prose:first-child h2:first-child {
  margin-top: 0;
}
.story-chapter {
  margin-top: var(--s-5);
}
.story-chapter ul {
  padding-left: var(--s-4);
}
.story-chapter ul + p {
  margin-top: var(--s-3);
}
.story-chapter > h2:first-child,
.story-chapter > .prose > h2:first-child,
.story-promise .prose h2:first-child {
  margin-top: 0;
}
.story-chapter > h2:first-child::before,
.story-chapter > .prose > h2:first-child::before,
.story-promise .prose h2:first-child::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  margin-bottom: var(--s-2);
  background: var(--gold);
}
.story-chapter--tinted {
  max-width: 1100px;
  margin-inline: auto;
  padding: var(--s-4) 0;
  background: var(--ink-2);
  box-shadow: 0 0 0 100vmax var(--ink-2);
  clip-path: inset(0 -100vmax);
}
.story-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: start;
  gap: var(--s-5);
}
.story-feature .prose {
  max-width: none;
  margin: 0;
}
.story-subheading {
  margin-top: var(--s-4);
  color: var(--gold);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: -0.01em;
  text-transform: none;
}
.story-inspiration {
  position: relative;
  margin-top: var(--s-4);
  padding: var(--s-4);
  overflow: hidden;
  border: 1px solid rgba(255, 205, 4, 0.32);
  border-left: 4px solid var(--gold);
  border-radius: 0 14px 14px 0;
  background: linear-gradient(135deg, rgba(255, 205, 4, 0.12), rgba(180, 124, 35, 0.05));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}
.story-inspiration__reference {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: var(--s-2);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
.story-inspiration p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--cream);
  font-family: inherit;
  font-size: 1.1rem;
  line-height: 1.75;
}
.story-inspiration p + p {
  margin-top: var(--s-2);
}
.story-inspiration__verse {
  color: var(--gold);
  font-weight: 700;
}
.story-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-2);
  max-width: 760px;
  margin: var(--s-5) auto 0;
}
.story-stat {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  justify-content: center;
  column-gap: 0.75rem;
  row-gap: 0.2rem;
  padding: var(--s-3) var(--s-2);
  border: 1px solid var(--rule-strong);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 205, 4, 0.1), rgba(180, 124, 35, 0.035));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
  text-align: center;
}
.story-stat__icon {
  display: grid;
  grid-column: 1;
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 205, 4, 0.3);
  border-radius: 50%;
  background: rgba(255, 205, 4, 0.08);
  color: var(--gold);
}
.story-stat__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}
.story-stat strong {
  grid-column: 2;
  grid-row: 1;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 500;
  line-height: 1;
}
.story-stat > span:not(.story-stat__icon) {
  grid-column: 2;
  grid-row: 2;
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
@media (max-width: 560px) {
  .story-stats {
    grid-template-columns: 1fr;
    width: min(100%, 280px);
    max-width: none;
  }
  .story-stat {
    grid-template-columns: 44px auto;
    justify-content: center;
    column-gap: 1rem;
    padding: 1rem;
    text-align: left;
  }
  .story-stat__icon { width: 44px; height: 44px; }
  .story-stat__icon svg { width: 24px; height: 24px; }
  .story-stat strong,
  .story-stat > span:not(.story-stat__icon) { justify-self: start; }
  .story-stat strong { font-size: 2.5rem; }
  .story-stat > span:not(.story-stat__icon) { font-size: 0.65rem; letter-spacing: 0.1em; }
}
.story-media {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: var(--ink-3);
}
.story-media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.story-media--inline {
  max-width: 560px;
  margin: var(--s-4) auto;
}
.story-feature .story-media {
  width: 100%;
  max-width: 460px;
  justify-self: end;
}
.story-section-stack ul {
  padding-left: var(--s-4);
}
.story-section-stack ul + p {
  margin-top: var(--s-3);
}
.story-promise {
  max-width: 660px;
  margin: var(--s-5) auto 0;
  padding: var(--s-4) 0;
  background: rgba(255, 205, 4, 0.045);
  box-shadow: 0 0 0 100vmax rgba(255, 205, 4, 0.045);
  clip-path: inset(0 -100vmax);
}
.story-promise .prose {
  max-width: none;
}
.story-promise__body {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: var(--s-4);
}
.story-promise__body .story-media img {
  aspect-ratio: auto;
}
.story-promise__body .story-media {
  width: 100%;
  max-width: 240px;
  justify-self: start;
}
.story-promise__list {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 0;
  margin: 0;
  list-style: none;
}
.story-promise__list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.65rem;
  border-top: 1px solid var(--rule);
  color: var(--cream-2);
  font-size: 1rem;
  line-height: 1.55;
}
.story-promise__list li::before {
  content: "✓";
  position: absolute;
  top: 0.85rem;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.story-closing {
  margin: 0 calc(50% - 50vw);
  padding: var(--s-4);
  background:
    linear-gradient(rgba(20, 20, 18, 0.72), rgba(20, 20, 18, 0.82)),
    url("Assets/images/our-story/beekeeper-closing-apiary.webp") center 54% / cover no-repeat;
  text-align: center;
}
.story-closing h2 {
  max-width: 20ch;
  margin: var(--s-2) auto;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--cream);
}
.story-closing > p:not(.eyebrow) {
  margin-bottom: var(--s-3);
  color: var(--cream-2);
  font-size: 0.9rem;
}
@media (max-width: 700px) {
  .story-content-section {
    padding-top: calc(var(--nav-height) + var(--s-3));
  }
  .story-chapter--tinted {
    padding: var(--s-4) 0;
  }
  .story-feature,
  .story-promise__body {
    grid-template-columns: 1fr;
    gap: var(--s-3);
  }
  .story-feature .story-media,
  .story-promise__body .story-media {
    justify-self: center;
  }
  .story-promise {
    padding: var(--s-4) 0;
  }
  .story-promise__list {
    grid-template-columns: 1fr;
    gap: 0;
    order: 1;
  }
  .story-promise__body .story-media { order: 2; }
  .story-closing {
    padding: var(--s-3) var(--s-2);
  }
}
.pull-quote {
  margin: var(--s-5) 0;
  padding: var(--s-4) var(--s-3);
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  text-align: center;
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.3;
  color: var(--cream);
  text-transform: none;
}
.pull-quote .gold { color: var(--gold-light); }

/* ============================================================
   Contact
   ============================================================ */
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: var(--s-2); }
.field label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--cream-3);
}
.field input,
.field textarea,
.field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule-strong);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.6rem 0;
  transition: border-color 0.25s var(--ease);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 110px; }

/* Native select chrome (white pill, system arrow) is the one form control that
   ignores the underline theme entirely - strip it and draw our own gold arrow. */
.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  padding-right: 1.1rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6'><path d='M0 0l5 6 5-6z' fill='%23ffcd04'/></svg>");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 10px 6px;
}
/* Options render via the OS picker on most platforms, but styling what we can
   keeps desktop (and iOS's inline list on some versions) from flashing white. */
.field select option { background: var(--ink-2); color: var(--cream); }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  padding: var(--s-4) 0 var(--s-3);
  border-top: 1px solid var(--rule);
  background: var(--ink);
}
/* Column, not row: the nav list and the legal list are two stacked rows. As a row
   flex container they sat side by side, and .footer__legal's rule only spanned its
   own width instead of reading as a divider. */
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  margin-bottom: var(--s-3);
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem var(--s-4);
}
.footer__link {
  font-size: 0.88rem;
  color: var(--cream-2);
}
.footer__link em {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  font-style: italic;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s-3);
  border-top: 1px solid var(--rule);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--cream-3);
}
.footer__bottom-badges {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer__bottom-badges img {
  height: 66px;
  width: auto;
  display: block;
  opacity: 0.95;
}
@media (max-width: 880px) {
  .footer__bottom { flex-direction: column; gap: var(--s-2); text-align: center; }
}
/* Phones: stack the links vertically, centered, instead of a cramped wrapped row */
@media (max-width: 560px) {
  .footer__links { flex-direction: column; gap: 0.9rem; }
}

/* ============================================================
   Accessibility - focus & reduced motion
   ============================================================ */
:where(a, button, input, textarea, select, [tabindex]):focus {
  outline: none;
}
:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}
.btn--filled:focus-visible {
  outline-color: var(--ink);
  outline-offset: 3px;
}
.honey-card a:focus-visible,
.footer__link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   The Dripping Hive - Brand & Visual Additions
   ============================================================ */

/* Reusable Newsletter Signup Block */
.newsletter-block {
  background: var(--ink-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: var(--s-5) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-block__inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.newsletter-block__inner h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: var(--s-1);
  letter-spacing: var(--tracking-normal);
  text-transform: uppercase;
}
.newsletter-block__inner p {
  color: var(--cream-2);
  font-size: 0.88rem;
  margin-bottom: var(--s-3);
}
.newsletter-block__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2);
  text-align: left;
}
.newsletter-block__form .field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.newsletter-block__form .field--full {
  grid-column: 1 / -1;
}
.newsletter-block__form label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--cream-3);
}
.newsletter-block__form input {
  background: var(--ink-3);
  border: 1px solid var(--rule-strong);
  color: var(--cream);
  font-family: var(--font-sans);
  /* Must stay >= 16px: iOS Safari zooms the viewport when a smaller input takes focus. */
  font-size: 16px;
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  width: 100%;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.newsletter-block__form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
  outline: none;
}
.newsletter-block__form button {
  grid-column: 1 / -1;
  margin-top: var(--s-2);
  width: 100%;
  justify-content: center;
  border-radius: var(--radius-button);
}
@media (max-width: 580px) {
  .newsletter-block__form {
    grid-template-columns: 1fr;
  }
  .newsletter-block__form .field {
    grid-column: 1 / -1;
  }
}
.newsletter-block__message {
  margin-top: var(--s-2);
  font-family: var(--font-sans);
  font-size: 0.85rem;
}
.newsletter-block__message--success {
  color: var(--gold);
}
.newsletter-block__message--error {
  color: #e0685f;
}


/* Alternating 2-Column Product Rows (Signature Collection Page) */
.product-row-2col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-6);
  align-items: center;
  padding: clamp(1.5rem, 4.5vh, 3rem) 0;
  border-bottom: 1px solid var(--rule);
}
.product-row-2col:last-child {
  border-bottom: 0;
}
.product-row-2col__info {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  order: 1;
}
.product-row-2col__media {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  background: var(--ink-2);
  order: 2;
}
.product-row-2col__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-row-2col__pairings {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  background: var(--ink-2);
  padding: var(--s-3) var(--s-3);
  border-radius: 12px;
  border: 1px solid var(--rule);
  margin-top: var(--s-2);
}
.product-row-2col__pairings-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-xwide);
  color: var(--cream);
  margin-bottom: var(--s-1);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.5rem;
}

@media (max-width: 1024px) {
  .product-row-2col {
    grid-template-columns: 1fr;
    gap: var(--s-4);
    padding: var(--s-5) 0;
  }
  .product-row-2col__media {
    order: -1 !important;
  }
  .product-row-2col__info {
    order: 1 !important;
  }
}

/* Phones: fit each product + its info on one screen (no per-product scroll) */
@media (max-width: 560px) {
  .product-row-2col {
    min-height: 100dvh;
    align-content: center;
    gap: var(--s-2);
    padding: var(--s-3) 0;
  }
  .product-row-2col__media {
    aspect-ratio: auto;
    height: 28vh;
    max-height: 300px;
    min-height: 170px;
  }
  .product-row-2col__info { gap: 0.6rem; }
  .product-row-2col__desc {
    font-size: 0.82rem;
    line-height: 1.42;
  }
  .product-row-2col__pairings {
    padding: var(--s-2);
    margin-top: 0;
  }
  /* Keep all pairings on a single row, shrinking to fit (no wrap).
     Extra specificity so these win over the base rules defined later. */
  .product-row-2col__pairings .pairings-list-vertical { flex-wrap: nowrap; gap: 0.5rem; }
  .product-row-2col__pairings .pairings-list-vertical li { min-width: 0; }
  .product-row-2col__pairings .pairing-circle {
    width: 44px; height: 44px; min-width: 44px; min-height: 44px;
  }
  .product-row__actions { margin-top: var(--s-2) !important; }
  /* Order button spans the same width as the Perfect With box above it */
  .product-row__actions .btn { width: 100%; justify-content: center; }
}

/* Landscape phones (short height): two columns.
   Left: capsule, title, description, Perfect With, order button.
   Right: jar image framed exactly like the portrait mobile version. */
@media (orientation: landscape) and (max-height: 600px) and (max-width: 1024px) {
  .product-row-2col {
    grid-template-columns: 1.1fr 1fr;
    grid-template-areas: none;
    gap: var(--s-4);
    align-content: center;
    align-items: center;
    padding: calc(var(--nav-height) + 0.3rem) 0 var(--s-2);
  }
  .product-row-2col__info {
    display: flex;
    order: 1 !important;
    gap: 0.4rem;
    justify-content: center;
  }
  /* Same landscape jar framing as portrait mobile (container aspect ~1.45,
     object-fit: cover centred), not stretched to the text column. */
  .product-row-2col__media {
    order: 2 !important;
    aspect-ratio: 1.45;
    height: auto;
    max-height: 55vh;
    align-self: center;
  }
  .product-row-2col__media img { object-position: center; }
  .product-row-2col__desc { font-size: 0.72rem; line-height: 1.3; }
  .product-row-2col__pairings { padding: 0.45rem 0.65rem; margin-top: 0.35rem; }
  .product-row-2col__pairings-title { margin-bottom: 0.3rem; padding-bottom: 0.3rem; font-size: 0.62rem; }
  .product-row-2col__pairings .pairings-list-vertical { flex-wrap: nowrap; gap: 0.4rem; }
  .product-row-2col__pairings .pairings-list-vertical li { min-width: 0; }
  .product-row-2col__pairings .pairing-circle {
    width: 34px; height: 34px; min-width: 34px; min-height: 34px;
  }
  .product-row-2col__pairings .pairing-text { font-size: 0.55rem; }
  .product-row__actions { margin-top: 0.35rem !important; }
  .product-row__actions .btn { width: 100%; justify-content: center; padding: 0.6rem 1.2rem; }
}

/* Badge Capsules (Mockup design) */
.variety-capsule {
  display: inline-block;
  padding: 0.45rem 1rem;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-xwide);
  line-height: 1;
  width: fit-content;
  background: var(--honey-label);
  color: var(--honey-on-color);
}

/* Product row typography components */
.product-row-2col__title-wrap {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  margin-bottom: var(--s-1);
}
.product-row-2col__title {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.0;
  letter-spacing: var(--tracking-tight);
  color: var(--cream);
  margin-top: var(--s-1);
}
.product-row-2col__title-wrap svg {
  width: 32px;
  height: 32px;
  fill: var(--honey-accent);
}
.product-row-2col__desc {
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  line-height: 1.55;
  color: var(--cream-2);
}

/* Perfect With - horizontal icon strip (icon above label, evenly spread) */
.pairings-list-vertical {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  gap: var(--s-3);
}
.pairings-list-vertical li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  flex: 1 1 0;
  min-width: 64px;
}
.pairing-circle {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: 50%;
  background: var(--honey-accent);
  color: var(--honey-on-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Crop dark background corners of pairing icon images */
}
.pairing-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Original icons: coloured disc inscribed on a dark square. Scale up so the
     disc overfills the circular clip and the dark corners don't show. */
  transform: scale(1.32);
}
.pairing-circle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pairing-text {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream);
  line-height: 1.25;
}

/* Compact Signature Collection grid */
.signature-collection-section {
  background:
    radial-gradient(circle at 0% 50%, rgba(255, 205, 4, 0.1), transparent 45%),
    radial-gradient(circle at 100% 50%, rgba(255, 205, 4, 0.1), transparent 45%),
    var(--ink-2);
  border-top: 1px solid rgba(255, 205, 4, 0.18);
  border-bottom: 1px solid rgba(255, 205, 4, 0.18);
}
.signature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: var(--s-2);
  padding-block: calc(var(--nav-height) + var(--s-4)) var(--s-4);
}
.signature-grid__title {
  position: absolute;
  grid-column: 1 / -1;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}
.signature-grid .product-row-2col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 148px;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: var(--s-2);
  align-items: stretch;
  min-width: 0;
  height: 100%;
  padding: var(--s-2);
  border: 1px solid var(--rule);
  border-radius: 18px;
  background: var(--ink-2);
}
.signature-grid .product-row-2col:last-child { border-bottom: 1px solid var(--rule); }
.signature-grid .product-row-2col__media {
  grid-column: 2;
  grid-row: 1 / 4;
  order: 2 !important;
  width: 100%;
  max-width: none;
  min-height: 178px;
  height: 100%;
  aspect-ratio: auto;
  margin: 0;
  border-radius: 12px;
}
.signature-grid .product-row-2col__media picture,
.signature-grid .product-row-2col__media img { width: 100%; height: 100%; }
.signature-grid .product-row-2col__media img { object-fit: cover; }
.signature-grid .product-row-2col__info {
  display: contents;
}
.signature-grid .variety-capsule {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  padding: .35rem .65rem;
  font-size: .56rem;
}
.signature-grid .product-row-2col__title-wrap {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
}
.signature-grid .product-row-2col__title {
  margin: 0;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
}
.signature-grid .product-row-2col__desc {
  grid-column: 1;
  grid-row: 3;
  align-self: start;
  font-size: .7rem;
  line-height: 1.42;
}
.signature-grid .product-row-2col__pairings {
  grid-column: 1;
  grid-row: 4;
  align-self: end;
  gap: .5rem;
  margin-top: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.signature-grid .product-row-2col__pairings-title {
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--honey-accent);
  font-size: .58rem;
}
.signature-grid .pairings-list-vertical {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: .4rem;
}
.signature-grid .pairings-list-vertical li {
  flex: 0 0 auto;
  flex-direction: row;
  min-width: 0;
  gap: .3rem;
  padding: .28rem .45rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
}
.signature-grid .pairing-circle {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
}
.signature-grid .pairing-text {
  color: var(--cream-2);
  font-size: .55rem;
}
.signature-grid .product-row__actions {
  grid-column: 2;
  grid-row: 4;
  align-self: end;
  margin-top: 0 !important;
}
.signature-grid .product-row__actions .btn {
  width: 100%;
  height: 35px;
  min-height: 35px;
  justify-content: center;
  padding: .25rem .35rem;
  font-size: .52rem;
  letter-spacing: .08em;
  white-space: nowrap;
}

@media (max-width: 880px) {
  .signature-grid__title {
    position: static;
    width: auto;
    height: auto;
    margin: 0 0 var(--s-1);
    overflow: visible;
    clip: auto;
    white-space: normal;
  }
}
@media (max-width: 820px) {
  .signature-grid { grid-template-columns: 1fr; }
  .signature-grid .product-row-2col {
    grid-template-columns: minmax(0, 1fr) 150px;
    min-height: 250px;
  }
}
@media (max-width: 560px) {
  .signature-grid .product-row-2col {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto auto;
    min-height: 0;
    padding: var(--s-2);
    gap: .65rem;
  }
  .signature-grid .product-row-2col__media {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 180px;
    min-height: 0;
    aspect-ratio: auto;
  }
  .signature-grid .variety-capsule { grid-column: 1; grid-row: 2; }
  .signature-grid .product-row-2col__title-wrap { grid-column: 1; grid-row: 3; }
  .signature-grid .product-row-2col__desc { grid-column: 1; grid-row: 4; }
  .signature-grid .product-row-2col__pairings { grid-column: 1; grid-row: 5; }
  .signature-grid .product-row__actions { grid-column: 1; grid-row: 6; }
  .signature-grid .product-row-2col__title { font-size: 1.25rem; }
  .signature-grid .product-row-2col__desc { font-size: .65rem; line-height: 1.35; }
  .signature-grid .pairings-list-vertical { gap: .3rem; }
  .signature-grid .pairings-list-vertical li { padding: .22rem .35rem; }
  .signature-grid .pairing-circle { width: 21px; height: 21px; min-width: 21px; min-height: 21px; }
  .signature-grid .pairing-text { font-size: .5rem; }
  .signature-grid .product-row__actions .btn { height: 40px; min-height: 40px; padding: .6rem .4rem; font-size: .56rem; }
}

/* ============================================================
   Price Grid Component (Consolidated from order.html)
   ============================================================ */


/* Styling utility for Products Page Header Image */
/* The wordmark stands in for the h1 on the collection page. Matching its height to
   the h1 font-size/line-height keeps every interior page header the same height. */


/* ============================================================
   Motion
   Entrance only, and cheap. `@media (scripting: enabled)` is the guard: with JS
   off (or on a browser that doesn't know the feature) the rule never applies and
   content is simply present - no flash-of-invisible, no inline script needed.
   ============================================================ */
@keyframes page-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body { animation: page-fade 260ms var(--ease) both; }

@media (scripting: enabled) {
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  }
  .reveal.is-visible { opacity: 1; transform: none; }
  /* Gentle stagger within a grid - capped at 4 so a long list never crawls. */
  .reveal:nth-child(2) { transition-delay: 60ms; }
  .reveal:nth-child(3) { transition-delay: 120ms; }
  .reveal:nth-child(n + 4) { transition-delay: 180ms; }
}

@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Skip link
   ============================================================ */
.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 300;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 8px 8px;
  transition: transform 0.2s var(--ease);
}
.skip-link:focus {
  transform: translate(-50%, 0);
  color: var(--ink);
}

/* ============================================================
   Shop page (order.html)
   ============================================================ */
/* padding-block, never the `padding: X 0` shorthand. These sections sit on the same
   element as .container (`class="container shop-section"`), match its specificity and
   come later in the file, so a shorthand silently zeroes the container's gutters and
   the cards run edge to edge. Same trap applies to .contact-section and .legal-section. */
.shop-section { padding-block: var(--s-5) 0; }
.shop-section:last-of-type { padding-bottom: var(--s-5); }

.shop-section__head {
  text-align: center;
  margin-bottom: var(--s-4);
}
.shop-section__title {
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--cream);
}
.shop-section__sub {
  margin-top: 0.6rem;
  color: var(--cream-2);
  font-size: 0.92rem;
}

/* ----- Jar cards ----- */
.jar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
}
/* Deliberately identical to .bundle-card - the two sections should read as one
   catalogue, not two different components. */
.jar-card {
  background: var(--ink-2);
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: var(--s-3);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.jar-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--cream);
}
.jar-card__note {
  margin-top: 0.4rem;
  color: var(--cream-2);
  font-size: 0.86rem;
  line-height: 1.55;
}

.jar-card__sizes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: auto;
}
.size-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.7rem 0.4rem;
  background: transparent;
  border: 1px solid var(--rule-strong);
  border-radius: 10px;
  color: var(--cream-2);
  font-family: var(--font-sans);
  cursor: pointer;
  /* 44px minimum touch target */
  min-height: 44px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.size-chip__size {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.size-chip__weight { font-size: 0.62rem; color: var(--cream-3); }
.size-chip__price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.size-chip:hover { border-color: var(--gold-deep); }
.size-chip.is-selected {
  border-color: var(--gold);
  background: rgba(255, 205, 4, 0.08);
  color: var(--cream);
}
.size-chip.is-selected .size-chip__price { color: var(--gold); }
.size-chip:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.jar-card__cta {
  justify-content: center;
  width: 100%;
  font-weight: 700;
}
.jar-card__cta-detail { text-transform: none; letter-spacing: 0; opacity: 0.85; }

/* ----- Shared honey information ----- */
.product-information__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: var(--s-5);
  margin: 0;
}
.product-information__item {
  display: grid;
  grid-template-columns: minmax(7rem, 0.4fr) minmax(0, 1fr);
  gap: var(--s-2);
  padding-block: 0.9rem;
  border-top: 1px solid var(--rule);
}
.product-information__item dt {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}
.product-information__item dd {
  margin: 0;
  color: var(--cream-2);
  font-size: 0.88rem;
  line-height: 1.6;
}
.order-product-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  margin-top: var(--s-4);
  padding-top: var(--s-2);
  border-top: 1px solid var(--rule-strong);
  color: var(--cream-2);
  font-size: 0.84rem;
  line-height: 1.55;
}
.order-product-note strong { color: var(--cream); }
.order-product-note a {
  flex: 0 0 auto;
  color: var(--gold);
  font-weight: 700;
}

/* ----- Bundle cards ----- */
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
.bundle-card {
  background: var(--ink-2);
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: var(--s-3);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.bundle-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--cream);
}
.bundle-card__desc {
  color: var(--cream-2);
  font-size: 0.86rem;
  line-height: 1.55;
  flex: 1;
}
.bundle-card__price {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold);
}
.bundle-card .btn { align-self: flex-start; }

/* ----- How it works ----- */
.shop-section--how { padding-bottom: var(--s-5); }
.shop-section--how-first {
  display: grid;
  grid-template-columns: minmax(150px, 0.5fr) minmax(0, 2fr);
  align-items: stretch;
  gap: var(--s-4);
  padding-top: calc(var(--nav-height) + var(--s-4));
  padding-bottom: var(--s-3);
}
.shop-section--how-first .shop-section__head {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  text-align: center;
}
.shop-section--how-first .shop-section__title {
  white-space: nowrap;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}
.shop-section--how-first .how-steps { gap: var(--s-2); }
.shop-section--how-first .how-step { padding-top: 0.75rem; }
.shop-section--how-first .how-step__num { margin-bottom: 0.25rem; font-size: 0.7rem; }
.shop-section--how-first .how-step__title { margin-bottom: 0.2rem; font-size: 0.82rem; }
.shop-section--how-first .how-step p { font-size: 0.78rem; line-height: 1.45; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  list-style: none;
}
.how-step {
  border-top: 1px solid var(--rule-strong);
  padding-top: var(--s-2);
}
.how-step__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.how-step__title {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin-bottom: 0.4rem;
}
.how-step p { color: var(--cream-3); font-size: 0.85rem; line-height: 1.55; }
.how-note {
  margin-top: var(--s-4);
  text-align: center;
  color: var(--cream-3);
  font-size: 0.88rem;
}
.how-note a { color: var(--gold); }

@media (max-width: 880px) {
  .jar-grid { grid-template-columns: 1fr; }
  .bundle-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: 1fr; gap: var(--s-2); }
  .shop-section { padding-top: var(--s-4); }
  .shop-section--how-first {
    display: block;
    padding-top: calc(var(--nav-height) + var(--s-3));
  }
  .shop-section--how-first .shop-section__head { margin-bottom: var(--s-2); }
  .product-information__list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .bundle-grid { grid-template-columns: 1fr; }
  .jar-card { padding: var(--s-2) var(--s-3) var(--s-3); }
  .product-information__item { grid-template-columns: 1fr; gap: 0.35rem; }
  .order-product-note { align-items: flex-start; flex-direction: column; }
}

/* ----- Multi-size order builder ----- */
.order-builder-section { padding-top: var(--s-3); }
.jar-size-guide { margin-bottom:var(--s-3); padding:0 var(--s-3); border:1px solid var(--rule-strong); border-radius:18px; overflow:hidden; background:var(--ink-2); }
.order-product h3,.order-summary h3 { color:var(--cream); }
.jar-size-guide__items { display:grid; grid-template-columns:repeat(3,1fr); gap:var(--s-2); align-items:end; padding:var(--s-2) 0 var(--s-3); text-align:center; }
.jar-size-guide__item { display:grid; grid-template-columns:1fr; justify-items:center; align-items:baseline; row-gap:.1rem; color:var(--cream-2); }
.jar-size-guide__item .jar-outline { grid-column:1; justify-self:center; }
.jar-size-guide__item small { grid-column:1; color:var(--cream-3); font-size:.68rem; line-height:1.3; max-width:12rem; }
.jar-outline { display:block; position:relative; width:46px; height:55px; margin-bottom:.25rem; border:2px solid var(--gold-deep); border-radius:5px 5px 10px 10px; background:linear-gradient(rgba(255,205,4,.04),rgba(255,205,4,.18)); }
.jar-outline::before { content:""; position:absolute; left:5px; right:5px; top:-8px; height:8px; border:2px solid var(--gold-deep); border-radius:3px 3px 0 0; }
.jar-outline--small { width:38px; height:43px; margin-top:12px; }.jar-outline--large { width:52px; height:64px; margin-top:-9px; }
.honey-order { display:grid; grid-template-columns:minmax(0,2fr) minmax(270px,.85fr); gap:var(--s-3); align-items:start; }
.order-products { display:grid; gap:var(--s-3); }
.order-product { overflow:hidden; border:1px solid var(--rule); border-radius:18px; background:var(--ink-2); padding:var(--s-3); }
.order-product__head { display:flex; gap:var(--s-2); align-items:center; padding-bottom:var(--s-2); border-bottom:1px solid var(--rule); }
.order-product__head>img { width:96px; height:76px; flex:0 0 96px; object-fit:cover; border-radius:10px; filter:saturate(.9); }
.order-product__identity { display:flex; flex:1; justify-content:space-between; gap:var(--s-2); align-items:end; min-width:0; }
.order-product__head .eyebrow { color:var(--honey-accent); }.order-product__identity>p { color:var(--cream-3); font-size:.85rem; }
.order-product__details {
  border-bottom: 1px solid var(--rule);
}
.jar-size-guide summary,
.order-product__details summary,
.honey-information-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  min-height: 48px;
  color: var(--honey-accent, var(--gold));
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}
.jar-size-guide summary::-webkit-details-marker,
.order-product__details summary::-webkit-details-marker,
.honey-information-accordion summary::-webkit-details-marker { display: none; }
.jar-size-guide summary span,
.order-product__details summary span,
.honey-information-accordion summary span { font-size: 1.2rem; transition: transform .2s var(--ease); }
.jar-size-guide[open] summary span,
.order-product__details[open] summary span,
.honey-information-accordion[open] summary span { transform: rotate(45deg); }
.order-product__details-body { padding: 0 0 var(--s-2); color: var(--cream-2); font-size: .84rem; line-height: 1.6; }
.order-product__details-body > p strong { color: var(--cream); }
.order-product__details-body > p + p { margin-top:var(--s-2); }
.taster-box-intro { max-width:68ch; }
.order-product__pairings { margin-top: var(--s-2); }
.order-product__pairings > strong { color: var(--honey-accent); font-size: .68rem; letter-spacing: var(--tracking-wide); text-transform: uppercase; }
.order-product__pairings ul { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: .65rem; }
.order-product__pairings li { display: inline-flex; align-items: center; gap: .4rem; padding: .4rem .65rem; border: 1px solid var(--rule); border-radius: 999px; color: var(--cream-2); font-size: .75rem; }
.order-product__pairings img { width: 26px; height: 26px; object-fit: contain; }
.order-builder-section { padding-bottom: var(--s-5); }
.order-line { display:grid; grid-template-columns:minmax(180px,1.5fr) minmax(125px,.8fr) minmax(80px,.5fr); gap:var(--s-2); align-items:end; padding-top:var(--s-2); }
.order-line label,.order-line__quantity>span,.order-line__subtotal>span,.order-summary>label { display:block; color:var(--cream-3); font-size:.7rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; }
.order-line select,.order-summary select,.order-summary textarea,.order-summary input { width:100%; min-height:44px; margin-top:.4rem; border:1px solid var(--rule-strong); border-radius:8px; background:var(--ink); color:var(--cream); padding:.65rem; }
.quantity-stepper { display:inline-grid; grid-template-columns:40px 46px 40px; margin-top:.4rem; border:1px solid var(--rule-strong); border-radius:8px; overflow:hidden; }
.quantity-stepper:has([data-remove-size]) { grid-template-columns:40px 46px 40px auto; }
.quantity-stepper button,.quantity-stepper input { min-height:42px; border:0; background:var(--ink); color:var(--cream); text-align:center; }.quantity-stepper button { color:var(--gold); font-size:1.1rem; cursor:pointer; }.quantity-stepper input { width:100%; -moz-appearance:textfield; }.quantity-stepper input::-webkit-inner-spin-button { appearance:none; }
.quantity-stepper:has([data-quantity]:disabled) { opacity:.4; border-color:var(--rule); }
.quantity-stepper button:disabled,.quantity-stepper input:disabled { cursor:not-allowed; }
.order-line__subtotal strong { display:block; margin-top:.75rem; color:var(--gold); }.order-line__remove,.order-product__add { border:0; background:none; color:var(--gold); cursor:pointer; font-weight:700; }.quantity-stepper .order-line__remove { min-height:42px; padding:0 .75rem; border-left:1px solid var(--rule-strong); color:var(--cream-2); font-size:.68rem; text-decoration:none; }.quantity-stepper .order-line__remove:hover { background:rgba(255,205,4,.08); color:var(--gold); }.order-product__add { margin-top:var(--s-2); padding:.6rem 0; }
.order-summary { position:sticky; top:calc(var(--nav-height) + 1rem); padding:var(--s-3); border:1px solid rgba(255,205,4,.28); border-radius:18px; background:radial-gradient(circle at 50% 0,rgba(255,205,4,.12),transparent 45%),var(--ink-2); }
.order-summary h3 { margin:.25rem 0 var(--s-2); }.order-summary__items>p { display:flex; justify-content:space-between; gap:1rem; padding:.65rem 0; border-top:1px solid var(--rule); color:var(--cream-2); }.order-summary__items small { display:block; color:var(--cream-3); margin-top:.2rem; }.order-summary__subtotal,.order-summary__delivery { display:flex; justify-content:space-between; gap:1rem; padding:.65rem 0; border-top:1px solid var(--rule); color:var(--cream-2); font-size:.82rem; }.order-summary__subtotal strong,.order-summary__delivery strong { color:var(--cream); }.order-summary__total { display:flex; justify-content:space-between; margin:0 0 var(--s-2); padding:var(--s-2) 0; border-block:1px solid var(--rule-strong); color:var(--cream); }.order-summary__total strong { color:var(--gold); font-size:1.2rem; }.order-summary__note,.order-summary__status { margin-top:.65rem; color:var(--cream-3); font-size:.75rem; line-height:1.5; }.order-summary__cta { width:100%; justify-content:center; margin-top:var(--s-2); text-align:center; }.order-summary__cta.is-disabled { opacity:.45; cursor:not-allowed; }
.order-summary__note { color:var(--cream); font-weight:600; }
.order-summary__address { margin-top: var(--s-2); }
.order-summary__address-title,.order-summary__address label { display:block; color:var(--cream-3); font-size:.7rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; }
.order-summary__address-grid { display:grid; grid-template-columns:1fr 1fr; gap:.75rem; margin-top:.65rem; }
.order-summary__address-wide { grid-column:1/-1; }
.order-summary__address label span { font-size:.62rem; font-weight:400; letter-spacing:0; text-transform:none; }
.order-summary__address input:focus { border-color:var(--gold); outline:none; }
.order-summary__address input[aria-invalid="true"] { border-color:#e6a04b; box-shadow:0 0 0 1px rgba(230,160,75,.3); }
.order-summary__address small { display:block; margin-top:.4rem; color:var(--cream-3); font-size:.68rem; line-height:1.45; }
.order-summary__status:not(:empty) { padding:.75rem .85rem; border:1px solid rgba(255,205,4,.55); border-radius:8px; background:rgba(255,205,4,.1); color:var(--cream); font-size:.78rem; font-weight:600; }
.order-summary__status:not(:empty)::before { content:"!"; display:inline-grid; width:1.15rem; height:1.15rem; margin-right:.5rem; place-items:center; border-radius:50%; background:var(--gold); color:var(--ink); font-size:.7rem; font-weight:800; }
.order-summary__status.is-complete { border-color:var(--rule); background:transparent; color:var(--cream-2); font-weight:400; }
.order-summary__status.is-complete::before { content:"✓"; background:transparent; color:var(--gold); }
.order-summary__status.is-complete span { display:block; margin-top:.35rem; }
.custom-order-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  margin-top: var(--s-5);
  padding: var(--s-4);
  border: 1px solid rgba(255,205,4,.24);
  border-radius: 18px;
  overflow: hidden;
  background: var(--ink-2);
}
.custom-order-callout > div { max-width: 720px; }
.custom-order-callout h2 { margin: .35rem 0 var(--s-1); color: var(--cream); font-size: clamp(1.25rem,2.4vw,1.8rem); }
.custom-order-callout p:not(.eyebrow) { color: var(--cream-2); line-height: 1.65; }
.custom-order-callout .btn { flex: 0 0 auto; }
.honey-information-accordion {
  margin-top: var(--s-3);
  padding: 0 var(--s-3);
  border: 1px solid var(--rule-strong);
  border-radius: 18px;
  overflow: hidden;
  background: var(--ink-2);
}
.honey-information-accordion[open] { padding-bottom: var(--s-3); }
.honey-information-accordion .product-information__list { padding-top: var(--s-1); }
.signature-grid__information { grid-column: 1 / -1; }
@media(max-width:880px){.honey-order{grid-template-columns:1fr}.order-summary{position:static}.order-line{grid-template-columns:minmax(180px,1.5fr) minmax(125px,.8fr) minmax(80px,.5fr)}}
@media(max-width:640px){
  .jar-size-guide { padding: 0 var(--s-2); }
  .jar-size-guide__items { grid-template-columns:1fr; gap:0; text-align:left; }
  .jar-size-guide__item { grid-template-columns:58px auto 1fr; justify-content:stretch; justify-items:stretch; align-items:center; padding:.8rem 0; border-top:1px solid var(--rule); }
  .jar-size-guide__item .jar-outline { grid-column:1; grid-row:1/3; justify-self:center; margin:0; transform:scale(.72); }
  .jar-size-guide__item strong { grid-column:2; }
  .jar-size-guide__item > span:not(.jar-outline) { grid-column:3; color:var(--cream-3); }
  .jar-size-guide__item small { grid-column:2/4; max-width:none; margin-top:.15rem; font-size:.7rem; }
  .order-product__head>img{width:78px;height:78px;flex-basis:78px}
  .order-product__identity{display:block}
  .order-product__identity>p{margin-top:.35rem}
  .order-line{grid-template-columns:1fr 1fr}
  .order-line label{grid-column:1/-1}
  .order-summary__address-grid{grid-template-columns:1fr}
  .order-summary__address-wide{grid-column:auto}
  .quantity-stepper{grid-template-columns:36px 44px 36px}
  .quantity-stepper:has([data-remove-size]){grid-template-columns:36px 44px 36px auto}
  .custom-order-callout { align-items:flex-start; flex-direction:column; padding:var(--s-3); }
  .custom-order-callout .btn { width:100%; justify-content:center; }
}

/* ============================================================
   Contact page (contact.html)
   ============================================================ */
.contact-section { padding-block: calc(var(--nav-height) + var(--s-4)) var(--s-5); }
/* Centre the single direct-contact tile and cap its readable width. */
.contact-grid {
  display: flex;
  justify-content: center;
}
.contact-details {
  width: 100%;
  max-width: 640px;
  background: var(--ink-2);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: var(--s-3);
  display: flex;
  flex-direction: column;
}
.contact-details__title {
  margin-bottom: var(--s-2);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}
.contact-details__intro {
  margin-bottom: var(--s-3);
  color: var(--cream-2);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-details__list { list-style: none; display: grid; gap: var(--s-2); }
.contact-details__list li { display: flex; flex-direction: column; gap: 0.2rem; }
.contact-details__label {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--cream-3);
}
.contact-details__list a {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--cream);
  word-break: break-word;
}
.contact-details__list a:hover { color: var(--gold); }
.contact-details__list .contact-details__whatsapp-button {
  align-self: flex-start;
  padding: 0.7rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  color: var(--ink);
  word-break: normal;
}
.contact-details__list .contact-details__whatsapp-button:hover { color: var(--ink); }
.contact-details__whatsapp-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  fill: currentColor;
}
@media (max-width: 880px) {
  .contact-section { padding-block: calc(var(--nav-height) + var(--s-3)) var(--s-4); }
}

/* ============================================================
   Taster box (homepage)
   ============================================================ */
.home-taster { padding:var(--s-6) 0; border-block:1px solid var(--rule); background:var(--ink-2); }
.home-taster__inner { display:grid; grid-template-columns:minmax(0,1fr) minmax(300px,.72fr); gap:var(--s-5); align-items:center; }
.home-taster__copy h2 { max-width:14ch; margin:.5rem 0 var(--s-2); color:var(--cream); font-size:clamp(1.8rem,3.5vw,3rem); line-height:1.08; text-transform:none; letter-spacing:var(--tracking-tight); }
.home-taster__copy > p:not(.eyebrow) { max-width:62ch; color:var(--cream-2); line-height:1.7; }
.home-taster__copy > p + p { margin-top:var(--s-1); }
.home-taster__cta { display:flex; justify-content:space-between; align-items:center; gap:var(--s-2); margin-top:var(--s-3); padding-top:var(--s-2); border-top:1px solid var(--rule); font-size:.72rem; letter-spacing:var(--tracking-wide); text-transform:uppercase; }
.home-taster__cta .price { color:var(--gold); }
.home-taster__cta .btn { padding:.7rem 1rem; font-size:.68rem; }
.home-taster__media { width:100%; max-width:500px; justify-self:end; aspect-ratio:1371 / 1148; overflow:hidden; border:1px solid var(--rule-strong); border-radius:12px; }
.home-taster__media img { display:block; width:100%; height:100%; object-fit:cover; }
@media(max-width:880px){.home-taster{padding:var(--s-5) 0}.home-taster__inner{grid-template-columns:1fr}.home-taster__copy h2{max-width:none}.home-taster__media{order:-1;justify-self:center}}
@media(max-width:560px){.home-taster__cta .btn{justify-content:center}}
/* ============================================================
   Christmas collection (homepage)
   ============================================================ */
.home-christmas {
  position: relative;
  padding: var(--s-6) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 205, 4, 0.16);
  background:
    radial-gradient(circle at 88% 18%, rgba(20, 92, 67, 0.24), transparent 34%),
    radial-gradient(circle at 8% 88%, rgba(180, 124, 35, 0.14), transparent 32%),
    var(--ink);
}
.home-christmas__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: var(--s-5);
}
.home-christmas__media {
  aspect-ratio: 1400 / 933;
  overflow: hidden;
  border: 1px solid rgba(255, 205, 4, 0.24);
  border-radius: 14px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}
.home-christmas__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-christmas__copy h2 {
  max-width: 15ch;
  margin: 0.5rem 0 var(--s-2);
  color: var(--cream);
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: var(--tracking-tight);
  text-transform: none;
}
.home-christmas__copy > p:not(.eyebrow) {
  color: var(--cream-2);
  line-height: 1.7;
}
.home-christmas__copy > p + p { margin-top: var(--s-1); }
.home-christmas__details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: var(--s-3) 0;
}
.home-christmas__details span {
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 205, 4, 0.25);
  border-radius: 999px;
  background: rgba(255, 205, 4, 0.07);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 880px) {
  .home-christmas { padding: var(--s-5) 0; }
  .home-christmas__inner { grid-template-columns: 1fr; gap: var(--s-4); }
  .home-christmas__copy h2 { max-width: none; }
}
@media (max-width: 560px) {
  .home-christmas__copy .btn { width: 100%; justify-content: center; }
}
/* ============================================================
   Testimonials (homepage)
   ============================================================ */
.home-testimonials { padding:var(--s-6) 0; background:var(--ink); }
.home-testimonials__heading { max-width:680px; margin:0 auto var(--s-4); text-align:center; }
.home-testimonials__heading h2 { margin:.5rem 0 var(--s-2); color:var(--cream); font-size:clamp(1.8rem,3.5vw,3rem); line-height:1.08; letter-spacing:var(--tracking-tight); text-transform:none; }
.home-testimonials__heading > p:last-child { color:var(--cream-2); line-height:1.7; }
.testimonial-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:var(--s-3); }
.testimonial-card { position:relative; display:flex; min-height:320px; flex-direction:column; justify-content:space-between; margin:0; padding:var(--s-3); overflow:hidden; border:1px solid var(--rule); border-radius:14px; background:linear-gradient(145deg,var(--ink-2),rgba(180,124,35,.08)); }
.testimonial-card__visual { display:flex; align-items:center; justify-content:space-between; gap:var(--s-2); }
.testimonial-card__visual img { width:78px; height:78px; border:2px solid rgba(255,205,4,.38); border-radius:50%; object-fit:cover; box-shadow:0 8px 24px rgba(0,0,0,.24); }
.testimonial-card__rating { color:var(--gold); font-size:.85rem; letter-spacing:.18em; white-space:nowrap; }
.testimonial-card blockquote { margin:var(--s-2) 0 var(--s-3); color:var(--cream-2); font-family:Georgia,serif; font-size:1.05rem; font-style:italic; line-height:1.7; }
.testimonial-card figcaption { padding-top:var(--s-2); border-top:1px solid var(--rule); color:var(--gold); font-size:.72rem; font-weight:700; letter-spacing:var(--tracking-wide); text-transform:uppercase; }
@media(max-width:880px){.testimonial-grid{grid-template-columns:1fr}.testimonial-card{min-height:0}}
/* ============================================================
   Coming Soon gift collection (homepage)
   ============================================================ */
.home-gifts {
  padding: var(--s-6) 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 205, 4, .10), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(180, 124, 35, .12), transparent 34%),
    linear-gradient(135deg, #29261e 0%, #201f1b 48%, #2a251b 100%);
  border-block: 1px solid rgba(255, 205, 4, .14);
}
.home-gifts__content { max-width: 760px; }
.home-gifts__content h2 {
  max-width: 22ch;
  margin: .5rem 0 var(--s-2);
  color: var(--cream);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.2;
  text-transform: none;
  letter-spacing: var(--tracking-tight);
}
.home-gifts__content > p:not(.eyebrow),
.home-gifts__footer > p {
  color: var(--cream-2);
  line-height: 1.7;
}
.home-gifts__gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s-2);
  margin-top: var(--s-3);
}
.home-gift-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--rule-strong);
  background: var(--ink-2);
}
.home-gift-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.home-gift-card__copy {
  flex: 1;
  padding: 1rem;
  border-top: 3px solid var(--honey-accent);
}
.home-gift-card__copy .eyebrow {
  margin: 0 0 .35rem;
  color: var(--honey-accent);
  font-size: .62rem;
}
.home-gift-card__copy h3 {
  margin: 0;
  color: var(--cream);
  font-size: 1rem;
}
.home-gift-card__themes {
  margin-top: .45rem;
  color: var(--honey-accent);
  font-size: .67rem;
  font-weight: 400;
  line-height: 1.4;
}
.home-gift-card__description {
  margin-top: .65rem;
  color: var(--cream-2);
  font-size: .78rem;
  line-height: 1.5;
}
.home-gifts__footer {
  max-width: 760px;
  margin-top: var(--s-4);
}
.home-gifts__footer > p { font-size: .9rem; }
.home-gifts__actions { display: flex; flex-wrap: wrap; gap: var(--s-1); margin-top: var(--s-3); }

@media (max-width: 880px) {
  .home-gifts { padding: var(--s-5) 0; }
  .home-gifts__content h2 { max-width: none; }
  .home-gifts__gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .home-gifts__gallery { grid-template-columns: 1fr; }
  .home-gifts__actions { flex-direction: column; }
  .home-gifts__actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   Our Story summary (homepage)
   Sits under the collection grid on desktop; because .section--collection is
   display:none below 1024px, the same block lands under the hero on mobile.
   ============================================================ */
.story-summary {
  padding: var(--s-5) 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 205, 4, 0.08), transparent 70%),
    var(--ink-2);
}
.story-summary__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--s-5) var(--s-4);
  text-align: center;
}
.story-summary__title {
  max-width: 20ch;
  margin: var(--s-2) auto;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.25;
  font-weight: 600;
  text-transform: none;
  letter-spacing: var(--tracking-tight);
  color: var(--cream);
}
.story-summary__body {
  max-width: 60ch;
  margin: 0 auto var(--s-3);
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 880px) {
  .story-summary { padding: var(--s-4) 0; }
  .story-summary__inner { padding: var(--s-4) var(--s-2); }
  .story-summary__body { font-size: 0.9rem; }
}

/* ============================================================
   Legal pages (privacy / cookies / terms)
   ============================================================ */
.legal-section { padding-block: var(--s-5); }
.legal {
  max-width: 70ch;
  margin: 0 auto;
  color: var(--cream-2);
  font-size: 0.95rem;
  line-height: 1.75;
}
.legal__updated {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--cream-3);
  margin-bottom: var(--s-3);
}
.legal__lede {
  font-size: 1.02rem;
  color: var(--cream);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--rule);
  margin-bottom: var(--s-3);
}
.legal h2 {
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--cream);
  margin: var(--s-4) 0 var(--s-2);
}
.legal h3 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gold);
  margin: var(--s-3) 0 0.5rem;
}
.legal p { margin-bottom: var(--s-2); }
.legal ul { margin: 0 0 var(--s-2) 1.1rem; }
.legal li { margin-bottom: 0.5rem; padding-left: 0.25rem; }
.legal a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.legal strong { color: var(--cream); font-weight: 600; }

/* Unresolved client input - deliberately loud so it can't ship unnoticed. */
.legal .todo,
mark.todo {
  background: rgba(255, 205, 4, 0.15);
  border: 1px dashed var(--gold-deep);
  border-radius: 4px;
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 0.1rem 0.4rem;
  white-space: nowrap;
}

/* ============================================================
   Footer legal row
   ============================================================ */
/* No border-top here - .footer__bottom already draws one a few rows down, and two
   hairlines that close together read as a mistake. The .footer__inner gap does the
   separating instead. */
.footer__legal {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem var(--s-3);
}
.footer__legal-link {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--cream-3);
}
.footer__legal-link:hover { color: var(--gold); }

/* ============================================================
   Cookie consent banner
   Categories are declared now so analytics can be switched on later without
   revisiting consent architecture. Nothing in a category loads until accepted.
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 250;
  background: var(--ink-2);
  border-top: 1px solid var(--rule-strong);
  padding: var(--s-3) 0 calc(var(--s-3) + env(safe-area-inset-bottom, 0px));
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}
.cookie-banner.is-open { transform: translateY(0); }
.cookie-banner__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s-3);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  min-width: 260px;
  color: var(--cream-2);
  font-size: 0.85rem;
  line-height: 1.6;
}
.cookie-banner__text a { color: var(--gold); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.cookie-banner__actions .btn { padding: 0.75rem 1.2rem; font-size: 0.72rem; }

.cookie-banner__options {
  width: 100%;
  display: none;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-top: var(--s-2);
  padding-top: var(--s-2);
  border-top: 1px solid var(--rule);
}
.cookie-banner.is-detailed .cookie-banner__options { display: flex; }
.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--cream-2);
  max-width: 30ch;
}
.cookie-option input { margin-top: 0.15rem; accent-color: var(--gold); }
.cookie-option span { display: block; }
.cookie-option strong { color: var(--cream); display: block; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: var(--tracking-wide); margin-bottom: 0.15rem; }

@media (max-width: 700px) {
  .cookie-banner { padding: var(--s-2) 0 calc(var(--s-2) + env(safe-area-inset-bottom, 0px)); }
  .cookie-banner__inner { gap: var(--s-2); }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner { transition: none; }
}
