/* =====================================================================
   MAUI DRAGON DELIGHTS
   A digital expression of the jar label.
   ===================================================================== */

/* ---------- 1. Tokens ------------------------------------------------ */
:root {
  /* Brand palette, straight off the label */
  --cream:          #FBF5E8;
  --cream-2:        #F6EDDA;
  --parchment:      #EFE1C4;
  --parchment-2:    #E7D4AF;

  --burgundy:       #7E1239;
  --burgundy-deep:  #5C0A28;
  --burgundy-dark:  #3F0619;
  --burgundy-tint:  #A32A5C;

  --gold:           #AA7C1C;
  --gold-bright:    #D4A83C;
  --gold-pale:      #E7CE8E;
  --gold-ink:       #86600F;   /* passes AA on cream for small text */

  --green:          #314827;
  --green-deep:     #1E2D18;
  --green-soft:     #4E6A40;

  --ink:            #2C2318;
  --ink-soft:       #5D5245;
  --ink-faint:      #8A7E6E;

  /* Type */
  --display: "Playfair Display", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --script:  "Pinyon Script", "Snell Roundhand", "Apple Chancery", cursive;
  --sans:    "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Fluid type scale */
  --fs-xs:   0.78rem;
  --fs-sm:   0.9rem;
  --fs-base: clamp(1rem, 0.97rem + 0.16vw, 1.09rem);
  --fs-lead: clamp(1.09rem, 1.03rem + 0.3vw, 1.29rem);
  --fs-h4:   clamp(1.15rem, 1.08rem + 0.35vw, 1.4rem);
  --fs-h3:   clamp(1.4rem, 1.24rem + 0.75vw, 1.95rem);
  --fs-h2:   clamp(1.85rem, 1.5rem + 1.6vw, 3.05rem);
  --fs-h1:   clamp(2.4rem, 1.65rem + 3.1vw, 4.4rem);

  /* Rhythm */
  --gutter:  clamp(1.15rem, 0.7rem + 2.2vw, 2.5rem);
  --section: clamp(3.75rem, 2.4rem + 6vw, 7.5rem);
  --maxw:    1220px;
  --maxw-narrow: 760px;

  --radius:  4px;
  --radius-lg: 10px;

  --shadow-sm: 0 1px 2px rgba(44, 35, 24, .06), 0 3px 10px rgba(44, 35, 24, .05);
  --shadow-md: 0 2px 6px rgba(44, 35, 24, .07), 0 14px 34px rgba(44, 35, 24, .1);
  --shadow-lg: 0 4px 12px rgba(44, 35, 24, .09), 0 30px 70px rgba(44, 35, 24, .18);

  --ease: cubic-bezier(.22, .61, .36, 1);

  /* Hand-drawn paper grain, generated rather than downloaded */
  --paper: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

/* Height the sticky masthead occupies, so heroes can slide beneath it. */
:root { --hero-offset: 5.2rem; }
@media (max-width: 900px) { :root { --hero-offset: 4.7rem; } }

/* ---------- 2. Reset & base ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* The grain sits above the background and below everything else. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--paper);
  opacity: .05;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.13;
  margin: 0 0 .55em;
  color: var(--burgundy);
  letter-spacing: -.005em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--burgundy); text-decoration-color: rgba(170, 124, 28, .5); text-underline-offset: .18em; }
a:hover { color: var(--burgundy-tint); text-decoration-color: currentColor; }

strong { font-weight: 700; color: var(--ink); }

::selection { background: var(--burgundy); color: var(--cream); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -100px;
  z-index: 999;
  background: var(--burgundy);
  color: var(--cream);
  padding: .75rem 1.25rem;
  border-radius: var(--radius);
  font: 700 var(--fs-sm)/1 var(--sans);
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; color: var(--cream); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

/* ---------- 3. Layout primitives ------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 2;
}
.wrap--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: var(--section); position: relative; }
.section--tight { padding-block: calc(var(--section) * .62); }

.section--parchment {
  background: linear-gradient(180deg, var(--cream-2), var(--parchment));
}
.section--burgundy {
  background:
    radial-gradient(120% 90% at 50% 0%, var(--burgundy) 0%, var(--burgundy-deep) 55%, var(--burgundy-dark) 100%);
  color: var(--parchment);
}
.section--green {
  background:
    radial-gradient(120% 100% at 20% 0%, #3B5730 0%, var(--green) 45%, var(--green-deep) 100%);
  color: #E4E9D8;
}
.section--burgundy h2, .section--burgundy h3, .section--burgundy h4,
.section--green   h2, .section--green   h3, .section--green   h4 { color: var(--gold-bright); }
/* Must exclude buttons: this selector outranks .btn and would repaint the
   label the same colour as a gold button's background. */
.section--burgundy a:not(.btn), .section--green a:not(.btn) { color: var(--gold-bright); }

.center { text-align: center; }
.stack > * + * { margin-top: 1.15em; }

/* ---------- 4. Ornaments --------------------------------------------- */
/* The gold flourish + lozenge that runs across the label. */
.rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  margin: 1.6rem auto;
  max-width: 22rem;
  color: var(--gold);
}
.rule::before, .rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor 45%, currentColor 55%, transparent);
}
.rule__mark {
  width: 9px; height: 9px;
  flex: none;
  transform: rotate(45deg);
  border: 1px solid currentColor;
  background: currentColor;
}
.rule--left { margin-inline: 0; justify-content: flex-start; }
.rule--left::before { display: none; }
.section--burgundy .rule, .section--green .rule { color: var(--gold-bright); }

/* Eyebrow label: small tracked caps, used above most headings. */
.eyebrow {
  display: block;
  font: 700 var(--fs-xs)/1.5 var(--sans);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 1rem;
}
.section--burgundy .eyebrow, .section--green .eyebrow { color: var(--gold-pale); }

/* The one script accent the brand allows itself. */
.script {
  font-family: var(--script);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.05;
  text-transform: none;
  display: inline-block;
  padding-block: .08em;
}

/* Product lockup: the exact three-line arrangement used on the jar. */
.lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  line-height: 1;
  margin: 0 0 1.4rem;
}
.lockup--left { align-items: flex-start; }
.lockup__pre {
  font: 700 var(--fs-xs)/1 var(--sans);
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-ink);
  padding-left: .32em;
}
.lockup__script {
  font-size: clamp(2.1rem, 1.4rem + 2.6vw, 3.6rem);
  color: var(--burgundy);
}
.lockup__post {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(.95rem, .85rem + .35vw, 1.15rem);
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--burgundy);
  padding-left: .34em;
}
.section--burgundy .lockup__pre, .section--green .lockup__pre,
.banner .lockup__pre, .hero .lockup__pre { color: var(--gold-pale); }
.section--burgundy .lockup__script, .section--green .lockup__script,
.banner .lockup__script, .hero .lockup__script { color: var(--gold-bright); }
.section--burgundy .lockup__post, .section--green .lockup__post,
.banner .lockup__post, .hero .lockup__post { color: var(--cream); }

.lede {
  font-size: var(--fs-lead);
  line-height: 1.65;
  color: var(--ink-soft);
}
.section--burgundy .lede, .section--green .lede { color: rgba(251, 245, 232, .82); }

.pull {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.35rem, 1rem + 1.6vw, 2.25rem);
  line-height: 1.35;
  color: var(--burgundy);
  margin: 0;
  text-wrap: balance;
}
h1, h2, .lede { text-wrap: balance; }

/* Small standalone callout: storage notes, required statements. */
.notice {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  border: 1px solid rgba(170, 124, 28, .5);
  border-left: 3px solid var(--gold);
  background: rgba(170, 124, 28, .09);
  border-radius: var(--radius);
  padding: .8rem 1.2rem;
  font-size: var(--fs-sm);
  color: var(--ink);
}

/* ---------- 5. Buttons ----------------------------------------------- */
.btn {
  --btn-bg: var(--burgundy);
  --btn-fg: var(--cream);
  --btn-bd: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 2rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(251, 245, 232, .16);
  font: 700 var(--fs-sm)/1 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease);
}
.btn:hover {
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(251, 245, 232, .3), var(--shadow-md);
}
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--burgundy);
  --btn-bd: rgba(126, 18, 57, .45);
  box-shadow: none;
}
.btn--ghost:hover { --btn-bg: rgba(126, 18, 57, .07); --btn-bd: var(--burgundy); box-shadow: none; transform: translateY(-2px); }

/* Bright gold keeps the label above 4.5:1; plain gold falls just short. */
.btn--gold { --btn-bg: var(--gold-bright); --btn-fg: #3A2600; --btn-bd: var(--gold-bright); }

.btn--on-dark { --btn-bg: transparent; --btn-fg: var(--gold-bright); --btn-bd: rgba(212, 168, 60, .55); box-shadow: none; }
.btn--on-dark:hover { --btn-bg: rgba(212, 168, 60, .14); --btn-bd: var(--gold-bright); box-shadow: none; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}
.center .btn-row { justify-content: center; }

/* ---------- 6. Masthead ---------------------------------------------- */
.masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 245, 232, 0);
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: clamp(.8rem, .5rem + .8vw, 1.15rem);
}
.masthead.is-stuck {
  background: rgba(251, 245, 232, .93);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  backdrop-filter: saturate(150%) blur(12px);
  box-shadow: 0 1px 0 rgba(170, 124, 28, .28), 0 10px 30px rgba(44, 35, 24, .07);
}

/* Over the hero the masthead is transparent and reads light. */
.masthead--over { color: var(--cream); }
.masthead--over:not(.is-stuck) .wordmark__name,
.masthead--over:not(.is-stuck) .wordmark__sub,
.masthead--over:not(.is-stuck) .nav__link,
.masthead--over:not(.is-stuck) .navtoggle { color: var(--cream); }
.masthead--over:not(.is-stuck) .wordmark__crest { color: var(--gold-bright); }
.masthead--over:not(.is-stuck) .wordmark,
.masthead--over:not(.is-stuck) .nav__link { text-shadow: 0 1px 12px rgba(46, 8, 20, .55); }
.masthead--over:not(.is-stuck) .btn--ghost { --btn-fg: var(--cream); --btn-bd: rgba(251, 245, 232, .5); }

/* Wordmark: crest + engraved type, drawn rather than shipped as an image
   so it stays crisp and can recolour on dark grounds. */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: inherit;
  line-height: 1;
}
.wordmark__crest { width: 2.6rem; height: auto; flex: none; color: var(--green); transition: color .4s var(--ease); }
.wordmark__text { display: flex; flex-direction: column; gap: .2rem; }
.wordmark__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(.95rem, .85rem + .35vw, 1.18rem);
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--burgundy);
  white-space: nowrap;
  transition: color .4s var(--ease);
}
.wordmark__sub {
  font: 700 .58rem/1 var(--sans);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-ink);
  transition: color .4s var(--ease);
}

/* ---------- 7. Navigation -------------------------------------------- */
.nav { display: flex; align-items: center; gap: clamp(1rem, .4rem + 1.6vw, 2.2rem); }
.nav__list { display: flex; align-items: center; gap: clamp(1rem, .4rem + 1.6vw, 2.2rem); list-style: none; margin: 0; padding: 0; }
.nav__link {
  position: relative;
  font: 700 var(--fs-xs)/1 var(--sans);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-block: .5rem;
  transition: color .25s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--burgundy); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.masthead--over:not(.is-stuck) .nav__link:hover,
.masthead--over:not(.is-stuck) .nav__link[aria-current="page"] { color: var(--gold-bright); }

.nav .btn { padding: .7rem 1.4rem; letter-spacing: .14em; }

.navtoggle {
  display: none;
  position: relative;
  z-index: 2;             /* stays above the fixed drawer it controls */
  width: 2.9rem; height: 2.9rem;
  align-items: center; justify-content: center;
  background: none;
  border: 1px solid rgba(126, 18, 57, .25);
  border-radius: var(--radius);
  color: var(--burgundy);
  cursor: pointer;
}
.navtoggle svg { width: 1.35rem; height: 1.35rem; }
.navtoggle[aria-expanded="true"] {
  color: var(--gold-bright) !important;
  border-color: rgba(212, 168, 60, .55);
  text-shadow: none !important;
}
.navtoggle__close { display: none; }
.navtoggle[aria-expanded="true"] .navtoggle__open { display: none; }
.navtoggle[aria-expanded="true"] .navtoggle__close { display: block; }

@media (max-width: 900px) {
  .navtoggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(22rem, 86vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 2rem var(--gutter);
    background: linear-gradient(180deg, var(--burgundy), var(--burgundy-dark));
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    visibility: hidden;
    /* Visibility flips instantly on open (so the first link can take focus)
       and only after the slide-out completes on close. */
    transition: transform .42s var(--ease), visibility 0s linear .42s;
  }
  .nav.is-open {
    transform: translateX(0);
    visibility: visible;
    transition: transform .42s var(--ease), visibility 0s linear 0s;
  }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li { border-bottom: 1px solid rgba(212, 168, 60, .22); }
  .nav__link {
    display: block;
    padding: 1.15rem .25rem;
    font-size: var(--fs-sm);
    color: var(--parchment) !important;
    text-shadow: none !important;
  }
  .nav__link::after { display: none; }
  .nav__link:hover, .nav__link[aria-current="page"] { color: var(--gold-bright) !important; }
  .nav .btn { margin-top: 1.8rem; --btn-bg: var(--gold); --btn-fg: #2A1D02; --btn-bd: var(--gold-bright); }
  .nav-scrim {
    position: fixed;
    inset: 0;
    background: rgba(35, 6, 17, .5);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s var(--ease), visibility .35s;
    z-index: 99;
  }
  .nav-scrim.is-open { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }
}

/* ---------- 8. Hero --------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(94svh, 900px);
  display: grid;
  align-items: center;
  margin-top: calc(-1 * var(--hero-offset, 5.2rem));
  padding-top: var(--hero-offset, 5.2rem);
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
/* <picture> is an inline wrapper by default; without this the img's
   height:100% has no definite parent height to resolve against. */
.hero__media picture,
.pagehead__media picture,
.banner__media picture { display: block; width: 100%; height: 100%; }
/* Bias the crop left so the jar sits clear of the headline column. */
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 22% 55%;
  animation: kenburns 26s var(--ease) forwards;
}
@keyframes kenburns {
  from { transform: scale(1.09); }
  to   { transform: scale(1); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(46, 5, 22, .9) 0%, rgba(56, 7, 26, .78) 30%, rgba(70, 12, 33, .34) 52%, rgba(70, 12, 33, 0) 70%),
    linear-gradient(0deg, rgba(40, 5, 19, .55) 0%, rgba(40, 5, 19, 0) 38%);
}
.hero__inner { max-width: 37rem; padding-block: clamp(4rem, 8vw, 7rem); }
.hero .btn--ghost { --btn-fg: var(--cream); --btn-bd: rgba(251, 245, 232, .55); }
.hero .btn--ghost:hover { --btn-bg: rgba(251, 245, 232, .16); --btn-bd: var(--cream); }
.hero__logo { width: min(26rem, 76%); margin-bottom: 1.25rem; filter: drop-shadow(0 6px 26px rgba(30, 4, 14, .5)); }
.hero h1 {
  color: var(--cream);
  margin-bottom: .35em;
  text-shadow: 0 2px 30px rgba(40, 5, 19, .6);
}
.hero h1 .script { color: var(--gold-bright); font-size: 1.18em; }
.hero__sub {
  font-size: var(--fs-lead);
  color: rgba(251, 245, 232, .9);
  max-width: 34rem;
  text-shadow: 0 1px 16px rgba(40, 5, 19, .6);
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1.5rem;
  margin-top: 2.2rem;
  font: 700 var(--fs-xs)/1.4 var(--sans);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-pale);
}
.hero__meta li { list-style: none; display: flex; align-items: center; gap: .6rem; }
.hero__meta li + li::before {
  content: "";
  width: 5px; height: 5px;
  transform: rotate(45deg);
  background: currentColor;
  opacity: .8;
}
.hero__scroll {
  position: absolute;
  left: 50%; bottom: 1.7rem;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  color: rgba(251, 245, 232, .72);
  font: 700 .62rem/1 var(--sans);
  letter-spacing: .28em;
  text-transform: uppercase;
  text-decoration: none;
}
.hero__scroll:hover { color: var(--gold-bright); }
.hero__scroll svg { width: 1rem; animation: bob 2.4s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* A 16:9 photograph cover-cropped into a tall phone viewport zooms about
   3.5x, so the jar swallows the frame and the headline has nowhere to sit.
   So on narrow screens the overlay becomes a stack: photograph in its own
   4:3 panel, copy below it on burgundy. */
@media (max-width: 700px) {
  .hero {
    min-height: 0;
    display: block;
    background: radial-gradient(130% 80% at 50% 0%, var(--burgundy) 0%, var(--burgundy-deep) 55%, var(--burgundy-dark) 100%);
  }
  .hero::after { display: none; }
  .hero__media {
    position: relative;
    inset: auto;
    z-index: 0;
    aspect-ratio: 4 / 3;
  }
  .hero__media img { object-position: 56% 50%; }
  .hero__media::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 26%;
    background: linear-gradient(180deg, rgba(92, 10, 40, 0), rgba(92, 10, 40, .7) 62%, var(--burgundy-deep));
  }
  .hero__inner { max-width: none; padding: 2.1rem 0 3.25rem; }
  .hero h1, .hero__sub, .hero .eyebrow { text-shadow: none; }
  /* A burgundy button on a burgundy panel has nothing to say. */
  .hero .btn:not(.btn--ghost) { --btn-bg: var(--gold-bright); --btn-fg: #3A2600; --btn-bd: var(--gold-bright); }
  .hero__logo { width: min(20rem, 84%); }
  .hero__meta { margin-top: 1.7rem; }
  .hero__scroll { display: none; }
}

@media (max-width: 520px) {
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}

/* ---------- 9. Brand plate (logo + positioning) ----------------------- */
.plate { text-align: center; }
.plate__logo {
  width: min(30rem, 88%);
  margin: 0 auto 1.6rem;
}
.plate h2 { margin-bottom: .3em; }
.plate__tag {
  font-family: var(--display);
  font-style: italic;
  font-size: var(--fs-lead);
  color: var(--gold-ink);
}

/* ---------- 10. Feature split ----------------------------------------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(23rem, 100%), 1fr));
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
@media (max-width: 860px) { .split--reverse .split__media { order: 0; } }

.split__media { position: relative; }
.split__body { max-width: 34rem; }

/* Framed photograph, echoing the label's double gold keyline. */
.framed {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.framed::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(170, 124, 28, .6);
  box-shadow: inset 0 0 0 3px rgba(251, 245, 232, .85), inset 0 0 0 4px rgba(170, 124, 28, .45);
  pointer-events: none;
}
.framed img { width: 100%; }

/* A gold offset plate behind the product photo. */
.framed--offset::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(1.05rem, 1.05rem);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.framed--offset { overflow: visible; }
.framed--offset img { border-radius: var(--radius-lg); }

.price-note {
  display: inline-flex;
  align-items: baseline;
  gap: .55rem;
  font: 700 var(--fs-xs)/1 var(--sans);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-ink);
  border: 1px solid rgba(170, 124, 28, .5);
  border-radius: 100px;
  padding: .5rem 1.1rem;
  margin-bottom: 1.4rem;
}

/* ---------- 11. Pillars ----------------------------------------------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(14rem, 100%), 1fr));
  gap: clamp(1.6rem, .8rem + 2vw, 3rem);
}
.pillar { text-align: center; }
.pillar__icon {
  width: 4.4rem; height: 4.4rem;
  margin: 0 auto 1.15rem;
  color: var(--gold);
  display: grid;
  place-items: center;
}
.pillar__icon svg { width: 100%; height: 100%; }
.pillar h3 {
  font-size: var(--fs-h4);
  letter-spacing: .02em;
  margin-bottom: .5em;
}
.pillar p { font-size: var(--fs-sm); color: var(--ink-soft); line-height: 1.65; }
.section--burgundy .pillar__icon, .section--green .pillar__icon { color: var(--gold-bright); }
.section--burgundy .pillar p, .section--green .pillar p { color: rgba(251, 245, 232, .78); }

/* ---------- 12. Cards -------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
  gap: clamp(1.1rem, .6rem + 1.4vw, 1.9rem);
}
.card {
  position: relative;
  background: linear-gradient(170deg, rgba(255, 253, 247, .92), rgba(246, 237, 218, .92));
  border: 1px solid rgba(170, 124, 28, .35);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 1.4vw, 2.2rem);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(170, 124, 28, .7); }
.card__num {
  font-family: var(--display);
  font-size: 2.1rem;
  font-style: italic;
  line-height: 1;
  color: var(--gold);
  opacity: .55;
  margin-bottom: .7rem;
}
.card h3 { font-size: var(--fs-h4); margin-bottom: .45em; }
.card p { font-size: var(--fs-sm); color: var(--ink-soft); line-height: 1.66; }

.section--burgundy .card, .section--green .card {
  background: rgba(251, 245, 232, .07);
  border-color: rgba(212, 168, 60, .32);
  box-shadow: none;
}
.section--burgundy .card p, .section--green .card p { color: rgba(251, 245, 232, .8); }
.section--burgundy .card:hover, .section--green .card:hover { background: rgba(251, 245, 232, .11); border-color: rgba(212, 168, 60, .6); }

/* ---------- 13. Ways to enjoy ------------------------------------------ */
.ways { display: grid; gap: 0; }
.way {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1.4rem;
  align-items: start;
  padding-block: clamp(1.35rem, 1rem + 1vw, 1.9rem);
  border-top: 1px solid rgba(170, 124, 28, .3);
}
.way:last-child { border-bottom: 1px solid rgba(170, 124, 28, .3); }
.way__icon { width: 3.2rem; height: 3.2rem; color: var(--gold); }
.way h3 { font-size: var(--fs-h4); margin-bottom: .25em; }
.way p { color: var(--ink-soft); margin: 0; }
.section--green .way { border-color: rgba(212, 168, 60, .25); }
.section--green .way__icon { color: var(--gold-bright); }
.section--green .way p { color: rgba(228, 233, 216, .8); }
@media (max-width: 560px) {
  .way { grid-template-columns: 2.4rem 1fr; gap: 1rem; }
  .way__icon { width: 2.4rem; height: 2.4rem; }
}

/* ---------- 14. Full-bleed banner -------------------------------------- */
.banner {
  position: relative;
  min-height: clamp(24rem, 52vh, 40rem);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  color: var(--cream);
  padding-block: var(--section);
}
.banner__media { position: absolute; inset: -12% 0; z-index: -2; will-change: transform; }
.banner__media img { width: 100%; height: 100%; object-fit: cover; }
.banner::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(35, 5, 17, .66), rgba(35, 5, 17, .42) 45%, rgba(35, 5, 17, .72));
}
.banner .pull { color: var(--cream); text-shadow: 0 2px 26px rgba(30, 4, 14, .65); }
.banner .eyebrow { color: var(--gold-pale); }
.banner .rule { color: var(--gold-bright); }

/* ---------- 15. Process strip ------------------------------------------ */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr));
  gap: clamp(1.2rem, .6rem + 1.8vw, 2.2rem);
  counter-reset: step;
}
.step { position: relative; }
.step__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-md);
}
.step__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.step:hover .step__media img { transform: scale(1.05); }
.step__media::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(170, 124, 28, .6), inset 0 0 0 4px rgba(251, 245, 232, .7);
}
.step__n {
  counter-increment: step;
  position: absolute;
  top: -.9rem; left: -.6rem;
  z-index: 2;
  width: 3rem; height: 3rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--burgundy);
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 1.15rem;
  box-shadow: var(--shadow-sm);
}
.step__n::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: var(--fs-h4); margin: 1.35rem 0 .35em; }
.step p { font-size: var(--fs-sm); color: var(--ink-soft); }

/* ---------- 16. Nutrition panel ---------------------------------------- */
.nutrition {
  background: #fff;
  color: #000;
  border: 1px solid #000;
  border-radius: 2px;
  padding: .55rem .7rem .7rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: .82rem;
  line-height: 1.25;
  max-width: 22rem;
  box-shadow: var(--shadow-md);
}
.nutrition h3 {
  font-family: inherit;
  font-weight: 900;
  font-size: 1.85rem;
  line-height: .95;
  letter-spacing: -.02em;
  color: #000;
  margin: 0 0 .2rem;
}
.nutrition__row { display: flex; justify-content: space-between; gap: 1rem; padding: .16rem 0; border-top: 1px solid #000; }
.nutrition__row--plain { border-top: none; }
.nutrition__row--indent { padding-left: 1rem; }
.nutrition__row--indent2 { padding-left: 2rem; }
.nutrition__row b { font-weight: 700; }
.nutrition__bar { height: 9px; background: #000; margin: .12rem 0; }
.nutrition__bar--thin { height: 4px; }
.nutrition__cal { display: flex; justify-content: space-between; align-items: flex-end; padding: .1rem 0; }
.nutrition__cal span { font-weight: 900; font-size: 1.55rem; line-height: 1; }
.nutrition__cal b { font-weight: 900; font-size: 1.05rem; }
.nutrition__dv { text-align: right; font-weight: 700; font-size: .72rem; padding: .1rem 0; border-top: 1px solid #000; }
.nutrition__foot { font-size: .64rem; line-height: 1.3; padding-top: .3rem; border-top: 4px solid #000; margin-top: .2rem; }

/* ---------- 17. Accordion (FAQ) ---------------------------------------- */
.faq { border-top: 1px solid rgba(170, 124, 28, .35); }
.faq details { border-bottom: 1px solid rgba(170, 124, 28, .35); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem .25rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--burgundy);
  transition: color .2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--burgundy-tint); }
.faq summary::after {
  content: "";
  flex: none;
  width: .7rem; height: .7rem;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg) translateY(-25%);
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg) translateY(-25%); }
.faq__body { padding: 0 .25rem 1.4rem; color: var(--ink-soft); max-width: 54ch; }
.faq details[open] .faq__body { animation: fadeUp .4s var(--ease) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ---------- 18. Forms --------------------------------------------------- */
.form { display: grid; gap: 1.15rem; }
.field { display: grid; gap: .45rem; }
.field label {
  font: 700 var(--fs-xs)/1 var(--sans);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.field input, .field textarea, .field select {
  width: 100%;
  font: 400 var(--fs-base)/1.6 var(--sans);
  color: var(--ink);
  background: rgba(255, 253, 247, .8);
  border: 1px solid rgba(170, 124, 28, .45);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 9rem; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(170, 124, 28, .18);
}
.field--pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
@media (max-width: 620px) { .field--pair { grid-template-columns: 1fr; } }

.form__note { font-size: var(--fs-sm); color: var(--ink-soft); }
.form__status {
  border: 1px solid rgba(170, 124, 28, .5);
  background: rgba(170, 124, 28, .1);
  border-radius: var(--radius);
  padding: .9rem 1.1rem;
  font-size: var(--fs-sm);
}
.form__status[hidden] { display: none; }

.section--burgundy .field label, .section--green .field label { color: var(--gold-pale); }
.section--burgundy .field input, .section--burgundy .field textarea,
.section--green .field input, .section--green .field textarea {
  background: rgba(251, 245, 232, .08);
  border-color: rgba(212, 168, 60, .4);
  color: var(--cream);
}
.section--burgundy .field input::placeholder, .section--green .field input::placeholder { color: rgba(251, 245, 232, .45); }
.section--burgundy .field input:focus, .section--burgundy .field textarea:focus,
.section--green .field input:focus, .section--green .field textarea:focus {
  background: rgba(251, 245, 232, .14);
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(212, 168, 60, .22);
}

/* Honeypot */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- 19. Contact detail block ------------------------------------ */
.details-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.35rem; }
.details-list li { display: grid; grid-template-columns: 2.2rem 1fr; gap: 1rem; align-items: start; }
.details-list svg { width: 1.5rem; height: 1.5rem; color: var(--gold); margin-top: .25rem; }
.details-list dt, .details-list .k {
  font: 700 var(--fs-xs)/1.4 var(--sans);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: .25rem;
}
.details-list .v { color: var(--ink); }
.section--burgundy .details-list svg, .section--green .details-list svg { color: var(--gold-bright); }
.section--burgundy .details-list .k, .section--green .details-list .k { color: var(--gold-pale); }
.section--burgundy .details-list .v, .section--green .details-list .v { color: var(--parchment); }

/* ---------- 20. Footer --------------------------------------------------- */
.footer {
  /* The footer ground is darker than the page, so the gold ink needs to
     come down a step to clear 4.5:1. */
  --gold-ink: #6F4E08;
  position: relative;
  background: linear-gradient(180deg, var(--parchment), var(--parchment-2));
  border-top: 3px solid var(--gold);
  padding-block: clamp(3rem, 2rem + 3vw, 4.5rem) 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(auto-fit, minmax(11rem, 1fr));
  gap: clamp(2rem, 1rem + 3vw, 4rem);
  align-items: start;
}
.footer__brand { max-width: 26rem; }
.footer__emblem {
  width: 7rem;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(170, 124, 28, .55), var(--shadow-sm);
}
.footer h2 {
  font-size: 1.28rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .3em;
}
.footer__tag { font-family: var(--display); font-style: italic; color: var(--gold-ink); margin-bottom: 1rem; }
.footer p, .footer li { font-size: var(--fs-sm); color: var(--ink-soft); }
.footer h3 {
  font-family: var(--sans);
  font-weight: 900;
  font-size: var(--fs-xs);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 1.1rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.footer a { color: var(--ink); text-decoration: none; }
.footer a:hover { color: var(--burgundy); text-decoration: underline; text-underline-offset: .2em; }

.footer__legal {
  margin-top: clamp(2.4rem, 1.5rem + 2vw, 3.5rem);
  padding-top: 1.6rem;
  border-top: 1px solid rgba(126, 18, 57, .22);
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 2rem;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--ink-soft);
}
.footer__statement {
  font-weight: 700;
  color: var(--burgundy);
  letter-spacing: .01em;
  margin-bottom: 1.2rem;
  font-size: var(--fs-sm);
}

/* ---------- 21. Page header (interior pages) ----------------------------- */
.pagehead {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(7rem, 5rem + 8vw, 11rem) clamp(3.5rem, 2.5rem + 4vw, 6rem);
  margin-top: calc(-1 * var(--hero-offset, 5.2rem));
  color: var(--cream);
  text-align: center;
}
.pagehead__media { position: absolute; inset: 0; z-index: -2; }
.pagehead__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 58%; }
.pagehead::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(38, 5, 18, .8), rgba(38, 5, 18, .52) 50%, rgba(38, 5, 18, .78));
}
.pagehead h1 { color: var(--cream); text-shadow: 0 2px 28px rgba(30, 4, 14, .6); margin-bottom: .3em; }
.pagehead .eyebrow { color: var(--gold-pale); }
.pagehead p { color: rgba(251, 245, 232, .88); max-width: 44rem; margin-inline: auto; font-size: var(--fs-lead); }
.pagehead .rule { color: var(--gold-bright); }

.crumbs {
  display: flex; flex-wrap: wrap; gap: .5rem;
  justify-content: center;
  list-style: none; margin: 0 0 1.4rem; padding: 0;
  font: 700 var(--fs-xs)/1 var(--sans);
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(251, 245, 232, .65);
}
.crumbs a { color: rgba(251, 245, 232, .8); text-decoration: none; }
.crumbs a:hover { color: var(--gold-bright); }
.crumbs li + li::before { content: "/"; margin-right: .55rem; opacity: .5; }

/* ---------- 22. Reveal animation ----------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0ms);
}
.no-js .reveal, html:not(.js) .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .banner__media { transform: none !important; }
}

/* ---------- 23. Utilities -------------------------------------------------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.measure { max-width: 60ch; }
.measure-tight { max-width: 46ch; }
.center .measure, .center .measure-tight { margin-inline: auto; }
