
:root {
  --ink: #122e1e;
  --ink-2: #244d37;
  --red: #5e080e;
  --cream: #e6cd9f;
  --paper: #fffaf0;
  --gold: #c39736;
  --lime: #b7cd37;
  --mango: #ef7c25;
  --pineapple: #efbd29;
  --pear: #db4d74;
  --night: #071c18;
  --line: rgba(10, 48, 39, 0.2);
  --soft-line: rgba(244, 232, 202, 0.22);
  --shadow: 0 26px 70px rgba(7, 28, 24, 0.16);
  --display: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --body: Inter, Avenir, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
body::selection { background: var(--red); color: var(--cream); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
picture { display: block; }
button, input, textarea, select { font: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #fff; outline-offset: 3px; box-shadow: 0 0 0 6px #075cca; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.92;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}
h1 { font-size: clamp(4rem, 9vw, 9.4rem); }
h2 { font-size: clamp(3rem, 6vw, 6rem); }
h3 { font-size: clamp(1.9rem, 3vw, 3rem); }

.eyebrow {
  margin-bottom: .85rem;
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .17em;
  line-height: 1.2;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: .88rem 1.45rem;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: #fff7e5; }
.button-primary:hover { background: #6f1014; }
.button-dark { background: var(--ink); color: var(--cream); }
.button-dark:hover { background: var(--red); }
.button-cream { background: var(--cream); color: var(--ink); }
.button-cream:hover { background: #fff8e7; }
.button-outline { border-color: var(--ink); color: var(--ink); }
.button-outline:hover { background: var(--ink); color: var(--cream); }
.button-quiet { border-color: var(--line); background: transparent; }
.button-small { min-height: 2.8rem; padding: .7rem 1.15rem; }
.text-link {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  padding-bottom: .18rem;
  font-size: .79rem;
  font-weight: 900;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.text-link:hover { color: var(--red); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  z-index: 200;
  top: 1rem;
  left: 1rem;
  transform: translateY(-180%);
  border-radius: 999px;
  padding: .8rem 1rem;
  background: #075cca;
  color: #fff;
  font-weight: 900;
}
.skip-link:focus { transform: translateY(0); }

/* Navigation */
.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 104px;
  border-bottom: 1px solid var(--line);
  padding: .7rem clamp(1rem, 4vw, 4.5rem);
  background: rgba(255, 250, 240, .92);
  backdrop-filter: blur(16px);
}
.header-brand { justify-self: start; }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .65rem;
  background: var(--paper);
}
.brand-mark img { width: 150px; height: auto; }
.brand-mark-compact img { width: 112px; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(1.1rem, 2.6vw, 2.8rem); }
.desktop-nav a {
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.desktop-nav a:hover { color: var(--red); }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary {
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: .55rem .9rem;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  list-style: none;
  text-transform: uppercase;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu nav {
  position: absolute;
  right: 0;
  top: calc(100% + .75rem);
  display: grid;
  min-width: 210px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.mobile-menu nav a { padding: 1rem 1.2rem; border-bottom: 1px solid var(--line); font-weight: 800; }

/* Home hero */
.home-hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: min(820px, calc(100vh - 105px));
  background: var(--lime);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(3.5rem, 7vw, 7.5rem) clamp(1.3rem, 4vw, 4.5rem);
}
.hero-copy h1 { margin-bottom: 1.6rem; color: var(--ink); }
.hero-title {
  display: grid;
  max-width: 100%;
  font-size: clamp(3.75rem, 7vw, 7rem);
  line-height: .82;
}
.hero-title span, .hero-title em { display: block; min-width: 0; overflow-wrap: normal; word-break: keep-all; }
.hero-copy h1 em { color: var(--red); font-family: Georgia, serif; font-weight: 700; text-transform: none; }
.hero-intro { max-width: 630px; font-size: clamp(1.05rem, 1.4vw, 1.32rem); font-weight: 600; }
.hero-actions { display: flex; align-items: center; gap: 1.4rem; margin-top: 1.2rem; }
.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
  margin-top: clamp(2rem, 5vw, 4.8rem);
  border-top: 1px solid rgba(10,48,39,.35);
  padding-top: 1.25rem;
}
.proof-strip span { font-size: .64rem; font-weight: 800; letter-spacing: .07em; line-height: 1.35; }
.proof-strip b { display: block; font-family: var(--display); font-size: 1.65rem; letter-spacing: -.02em; }
.hero-visual { position: relative; min-height: 620px; background: var(--night); }
.hero-visual > picture { width: 100%; height: 100%; }
.hero-visual > picture > img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(183,205,55,.2), transparent 28%), linear-gradient(0deg, rgba(7,28,24,.45), transparent 45%);
  content: "";
  pointer-events: none;
}
.hero-stamp {
  position: absolute;
  z-index: 2;
  right: clamp(1.2rem, 4vw, 4rem);
  bottom: clamp(1.2rem, 4vw, 3.5rem);
  transform: rotate(-4deg);
  border: 2px solid var(--cream);
  border-radius: 14px;
  padding: .85rem 1.15rem;
  background: rgba(7,28,24,.78);
  color: var(--cream);
  text-align: center;
}
.hero-stamp span, .hero-stamp b { display: block; font-family: var(--display); line-height: 1; }
.hero-stamp span { font-size: .74rem; letter-spacing: .13em; }
.hero-stamp b { margin-top: .2rem; color: #e95944; font-size: 1.42rem; }
.ticker { overflow: hidden; border-block: 1px solid var(--ink); background: var(--cream); }
.ticker div {
  width: max-content;
  padding: .83rem 0;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .17em;
  animation: ticker 28s linear infinite;
  text-transform: uppercase;
  white-space: nowrap;
}
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: clamp(4.5rem, 9vw, 9rem) clamp(1.25rem, 6vw, 7rem); }
.section-heading { margin-bottom: clamp(2.4rem, 5vw, 5rem); }
.section-heading h2 { margin-bottom: 0; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(260px, .55fr); align-items: end; gap: 3rem; }
.split-heading > p { max-width: 480px; margin: 0 0 .5rem auto; font-size: 1.05rem; font-weight: 600; }

/* Flavor interaction */
.flavor-section { background: var(--paper); }
.flavor-experience { --accent: var(--lime); border: 1px solid var(--line); border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); }
.flavor-classic { --accent: var(--lime); }
.flavor-mango { --accent: var(--mango); }
.flavor-pineapple { --accent: var(--pineapple); }
.flavor-pear { --accent: var(--pear); }
.flavor-controls { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); background: var(--cream); }
.flavor-controls button {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.flavor-controls button:last-child { border-right: 0; }
.flavor-controls button span { opacity: .55; }
.flavor-controls button.active { background: var(--accent); }
.flavor-stage {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  min-height: 500px;
  padding: clamp(2.5rem, 6vw, 6rem);
  background: color-mix(in srgb, var(--accent) 80%, var(--paper));
}
.flavor-stage h3 { max-width: 11ch; margin-bottom: 1.2rem; font-size: clamp(3rem, 5vw, 5.5rem); line-height: .94; text-wrap: balance; }
.flavor-stage > div:last-child > p:not(.eyebrow) { max-width: 610px; font-size: 1.13rem; font-weight: 600; }
.flavor-orb {
  display: grid;
  width: min(33vw, 390px);
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,.62), transparent 26%), var(--accent);
  box-shadow: 18px 20px 0 var(--ink);
}
.flavor-orb span { font-family: Georgia, serif; font-size: clamp(6rem, 13vw, 13rem); font-weight: 900; letter-spacing: -.1em; }
.responsible-note { margin-top: 1.6rem; border-left: 3px solid var(--ink); padding-left: 1rem; font-size: .82rem !important; }

/* Story */
.story-teaser { display: grid; grid-template-columns: .9fr 1.1fr; gap: 1rem; background: var(--ink); color: var(--cream); }
.story-card, .ritual-card { position: relative; min-height: 620px; overflow: hidden; border-radius: 24px; }
.story-card { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: clamp(2rem, 5vw, 5rem); background: var(--red); }
.story-card h2 { max-width: 760px; margin-bottom: 1.6rem; }
.story-card > p:not(.eyebrow) { max-width: 560px; font-size: 1.05rem; }
.story-card .text-link { margin-top: 1.3rem; }
.ritual-photo-card { background: var(--night); }
.ritual-photo-card > picture { width: 100%; height: 100%; min-height: 620px; }
.ritual-photo-card > picture > img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; }
.ritual-photo-card::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,28,24,.92), rgba(7,28,24,.03) 65%); content: ""; }
.ritual-photo-copy { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: clamp(2rem, 5vw, 4.5rem); }
.ritual-photo-copy h3 { margin-bottom: 1rem; }
.ritual-photo-copy > p:last-child { max-width: 560px; }
.ritual-number { position: absolute; right: 1.5rem; bottom: -.3rem; opacity: .12; font-family: Georgia, serif; font-size: clamp(9rem, 22vw, 21rem); font-weight: 900; line-height: .8; }

/* Commerce */
.shop-preview { background: var(--cream); }
.merch-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.merch-card { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--paper); box-shadow: 0 12px 34px rgba(7,28,24,.08); }
.merch-image { position: relative; overflow: hidden; aspect-ratio: 1; background: #e7d9b9; }
.merch-image picture { width: 100%; height: 100%; }
.merch-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.merch-card:hover .merch-image img { transform: scale(1.025); }
.merch-image > span { position: absolute; left: 1rem; top: 1rem; border-radius: 999px; padding: .42rem .7rem; background: var(--red); color: white; font-size: .61rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.merch-copy { padding: clamp(1.5rem, 3vw, 2.6rem); }
.merch-copy h2 { margin-bottom: 1rem; font-size: clamp(2.3rem, 4vw, 4rem); }
.merch-copy > p:not(.eyebrow) { max-width: 540px; }
.product-status { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.8rem; border-top: 1px solid var(--line); padding-top: 1.4rem; }
.product-status > span { max-width: 240px; color: #526b64; font-size: .74rem; font-weight: 800; line-height: 1.35; }

.clarity-section { background: var(--paper); }
.clarity-grid, .shop-principles, .coa-explainer, .responsible-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.clarity-grid article, .shop-principles > div, .coa-explainer > div, .responsible-grid article { min-height: 270px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(1.5rem, 3vw, 2.7rem); }
.clarity-grid article > span, .shop-principles span, .coa-explainer span { color: var(--red); font-size: .68rem; font-weight: 900; }
.clarity-grid h3, .shop-principles h3, .coa-explainer h3 { margin: 2rem 0 1rem; font-size: clamp(1.7rem, 2.7vw, 2.7rem); }
.clarity-grid article > a { color: var(--red); font-size: .75rem; font-weight: 900; text-transform: uppercase; }

/* Shared page heroes */
.page-hero { padding: clamp(5rem, 11vw, 11rem) clamp(1.3rem, 7vw, 8rem); }
.page-hero h1 { max-width: 1180px; margin-bottom: 1.8rem; }
.page-intro { max-width: 740px; margin-bottom: 0; font-size: clamp(1.1rem, 1.7vw, 1.5rem); font-weight: 600; }
.tone-green { background: var(--ink); color: var(--cream); }
.tone-lime { background: var(--lime); color: var(--ink); }
.tone-cream { background: var(--cream); color: var(--ink); }
.tone-night { background: var(--night); color: var(--cream); }

.story-exact {
  background: var(--night);
  color: #fff7e5;
  overflow: hidden;
}
.story-exact-header {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, .72fr);
  min-height: min(860px, 86vh);
  border-bottom: 1px solid rgba(244,232,202,.24);
}
.story-title-lockup {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(5rem, 9vw, 10rem) clamp(1.3rem, 5vw, 7rem);
  background:
    linear-gradient(90deg, rgba(195,151,54,.14) 1px, transparent 1px) 0 0 / clamp(44px, 7vw, 92px) 100%,
    var(--night);
}
.story-title-lockup::after {
  content: "";
  position: absolute;
  right: clamp(-4rem, -4vw, -2rem);
  bottom: clamp(4rem, 9vw, 9rem);
  width: clamp(8rem, 16vw, 15rem);
  height: .7rem;
  background: linear-gradient(90deg, var(--lime) 0 25%, var(--mango) 25% 50%, var(--pineapple) 50% 75%, var(--pear) 75%);
  transform: rotate(-4deg);
}
.story-exact-header .eyebrow { color: var(--gold); }
.story-exact-header h1 {
  margin-bottom: 0;
  font-size: clamp(4.4rem, 9vw, 9.5rem);
  letter-spacing: -.065em;
  line-height: .8;
  overflow-wrap: normal;
  text-transform: none;
}
.story-exact-header h1 span,
.story-exact-header h1 strong { display: block; }
.story-exact-header h1 span { max-width: 8ch; color: var(--cream); font-weight: 500; }
.story-exact-header h1 strong { margin-left: clamp(1rem, 4vw, 4rem); color: #ef6b58; font-style: italic; }
.story-portrait { position: relative; min-width: 0; margin: 0; background: var(--red); }
.story-portrait picture,
.story-portrait img { display: block; width: 100%; height: 100%; }
.story-portrait img { object-fit: cover; object-position: center 43%; filter: saturate(.9) contrast(1.04); }
.story-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 28px 0 50px rgba(7,28,24,.28);
  pointer-events: none;
}
.story-portrait figcaption {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  max-width: calc(100% - 2rem);
  padding: .55rem .7rem;
  background: rgba(7,28,24,.86);
  color: rgba(255,247,229,.78);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.story-manifesto {
  margin: 0;
}
.story-chapter {
  display: grid;
  grid-template-columns: minmax(150px, .42fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: start;
  min-height: 660px;
  padding: clamp(5rem, 10vw, 11rem) clamp(1.3rem, 8vw, 9rem);
}
.story-chapter > div { max-width: 900px; }
.story-chapter p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3.2vw, 3.5rem);
  letter-spacing: -.025em;
  line-height: 1.18;
}
.story-chapter p + p { margin-top: clamp(2rem, 5vw, 5rem); }
.story-index {
  font-family: var(--display);
  font-size: clamp(8rem, 19vw, 19rem);
  font-weight: 900;
  letter-spacing: -.09em;
  line-height: .72;
}
.story-roots { background: var(--cream); color: var(--ink); }
.story-roots .story-index {
  color: transparent;
  -webkit-text-stroke: 2px rgba(18,46,30,.28);
}
.story-turn {
  grid-template-columns: minmax(0, 1fr) minmax(150px, .42fr);
  background: var(--ink);
  color: #fff7e5;
}
.story-turn > div { grid-column: 1; grid-row: 1; }
.story-turn .story-index { grid-column: 2; grid-row: 1; color: var(--mango); text-align: right; }
.story-turn p:first-child {
  max-width: 15ch;
  color: var(--lime);
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .88;
}
.story-declaration {
  position: relative;
  margin: 0;
  padding: clamp(6rem, 13vw, 14rem) clamp(1.3rem, 8vw, 9rem);
  background: var(--red);
  color: var(--cream);
}
.story-declaration::before {
  content: "";
  position: absolute;
  inset: clamp(1.2rem, 3vw, 3rem);
  border: 1px solid rgba(230,205,159,.34);
  pointer-events: none;
}
.story-declaration p {
  position: relative;
  z-index: 1;
  max-width: 15ch;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(3.5rem, 8.7vw, 10rem);
  letter-spacing: -.06em;
  line-height: .84;
  text-transform: none;
}
.story-declaration p + p { margin-top: clamp(1.5rem, 3vw, 3rem); color: #fff7e5; }
.story-declaration strong { font-weight: 900; }
.story-finale {
  position: relative;
  display: grid;
  min-height: 620px;
  place-content: center;
  padding: clamp(6rem, 12vw, 12rem) 1.3rem;
  background:
    linear-gradient(135deg, transparent 48%, rgba(18,46,30,.1) 48% 52%, transparent 52%),
    var(--lime);
  color: var(--ink);
  text-align: center;
}
.story-finale::before,
.story-finale::after {
  content: "";
  justify-self: center;
  width: min(72vw, 720px);
  height: 10px;
  margin: 0 auto clamp(2.5rem, 5vw, 5rem);
  background: repeating-linear-gradient(90deg, var(--ink) 0 18px, transparent 18px 28px, var(--red) 28px 46px, transparent 46px 56px);
}
.story-finale::after { margin: clamp(2.5rem, 5vw, 5rem) auto 0; }
.story-signature {
  margin: 0 0 clamp(2rem, 4vw, 3.5rem);
  font-family: var(--display);
  font-size: clamp(4.5rem, 10vw, 10rem);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: .82;
}
.story-mantra { margin: 0 0 .8rem; font-size: clamp(1.35rem, 2.5vw, 2.25rem); }
.story-coda { margin: 0; color: var(--red); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1rem, 1.8vw, 1.4rem); }

.shop-status-bar, .coa-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-block: 1px solid var(--line);
  padding: 1.1rem clamp(1.3rem, 6vw, 7rem);
  background: var(--lime);
  font-size: .76rem;
}
.shop-status-bar strong { letter-spacing: .12em; }
.shop-page-grid { background: var(--paper); }
.shop-principles { grid-template-columns: repeat(3, 1fr); padding-top: 0; background: var(--cream); }
.shop-principles > div { min-height: 240px; }

/* Origin story */
.origin-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 8vw, 9rem); align-items: start; }
.origin-lead { position: sticky; top: 120px; }
.story-quote { display: block; border-left: .7rem solid var(--red); padding-left: 1.5rem; font-family: Georgia, serif; font-size: clamp(2.8rem, 6vw, 6.4rem); font-weight: 700; letter-spacing: -.05em; line-height: .95; }
.origin-copy p { font-size: clamp(1.2rem, 2vw, 1.65rem); line-height: 1.55; }
.origin-copy p + p { margin-top: 2.2rem; }
.values-band { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--red); color: var(--cream); }
.values-band article { min-height: 320px; border-right: 1px solid rgba(244,232,202,.28); padding: clamp(2rem, 5vw, 5rem); }
.values-band article:last-child { border-right: 0; }
.values-band span { color: var(--gold); font-weight: 900; }
.values-band h2 { margin: 4rem 0 1rem; font-size: clamp(2.2rem, 4vw, 4.4rem); }
.next-pour { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 2rem; background: var(--lime); }
.next-pour > * { min-width: 0; }
.next-pour h2 { margin-bottom: 0; }
.next-pour > div { display: flex; align-items: center; gap: 1.4rem; }

/* COAs */
.coa-status { background: #ece1c7; }
.coa-status > div { display: flex; align-items: center; gap: .55rem; white-space: nowrap; }
.coa-status p { max-width: 760px; margin: 0; }
.status-dot { width: .7rem; height: .7rem; border-radius: 50%; background: var(--mango); box-shadow: 0 0 0 5px rgba(239,124,37,.2); }
.coa-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; background: var(--paper); }
.coa-card { --accent: var(--lime); border-radius: 22px; padding: clamp(2rem, 4vw, 4rem); background: color-mix(in srgb, var(--accent) 62%, var(--paper)); }
.coa-card h2 { margin-bottom: 2.5rem; font-size: clamp(2.6rem, 5vw, 5rem); }
.coa-card > div { display: flex; justify-content: space-between; gap: 2rem; border-top: 1px solid rgba(10,48,39,.28); padding: .85rem 0; font-size: .82rem; }
.coa-card > div span { color: #496159; }
.coa-card button { width: 100%; margin-top: 1.5rem; border: 0; border-radius: 999px; padding: 1rem; background: rgba(10,48,39,.14); color: var(--ink); cursor: not-allowed; font-size: .7rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.coa-explainer { grid-template-columns: repeat(3, 1fr); padding-top: 0; }

/* Policies and responsible use */
.policy-page { max-width: 900px; margin: 0 auto; padding: clamp(4rem, 8vw, 8rem) 1.3rem; }
.policy-page h2 { margin: 3rem 0 1rem; font-size: clamp(2rem, 3vw, 3rem); }
.policy-page p { font-size: 1.04rem; line-height: 1.75; }
.policy-date { color: #63756f; font-size: .78rem !important; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.policy-notice { display: grid; gap: .35rem; margin-bottom: 2rem; border: 1px solid #d39922; border-radius: 14px; padding: 1.1rem 1.3rem; background: #fff0c4; }
.policy-notice strong { text-transform: uppercase; }
.policy-notice span { font-size: .86rem; }
.not-found-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.responsible-grid { grid-template-columns: repeat(3, 1fr); padding-top: 0; }
.responsible-grid article { min-height: 300px; }
.responsible-grid article > span { display: inline-flex; min-width: 62px; min-height: 62px; align-items: center; justify-content: center; border: 2px solid var(--red); border-radius: 50%; color: var(--red); font-family: var(--display); font-size: 1.2rem; }
.responsible-grid h2 { margin: 2.5rem 0 1rem; font-size: clamp(2rem, 3.5vw, 3.4rem); }

/* Footer */
.site-footer { background: var(--night); color: var(--cream); }
.footer-top { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; align-items: end; padding: clamp(4rem, 8vw, 8rem) clamp(1.3rem, 6vw, 7rem); }
.footer-line { margin-top: 2rem; font-family: Georgia, serif; font-size: clamp(1.3rem, 2.3vw, 2.2rem); font-style: italic; }
.footer-cta h2 { max-width: 760px; margin-bottom: 2rem; font-size: clamp(3rem, 6vw, 6.5rem); }
.footer-links { display: grid; grid-template-columns: .65fr .65fr 1.3fr; border-top: 1px solid var(--soft-line); border-bottom: 1px solid var(--soft-line); padding: 0 clamp(1.3rem, 6vw, 7rem); }
.footer-links > div { display: flex; flex-direction: column; gap: .6rem; min-height: 250px; border-right: 1px solid var(--soft-line); padding: 2.4rem; }
.footer-links > div:first-child { padding-left: 0; }
.footer-links > div:last-child { border-right: 0; }
.footer-links strong { margin-bottom: .5rem; color: var(--gold); font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-links a { font-weight: 700; }
.footer-links a:hover { color: var(--gold); }
.footer-warning p { max-width: 650px; font-size: .8rem; line-height: 1.65; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding: 1.4rem clamp(1.3rem, 6vw, 7rem); color: rgba(244,232,202,.65); font-size: .63rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }

/* Age gate */
.age-gate { position: fixed; z-index: 100; inset: 0; display: grid; overflow-y: auto; place-items: safe center; padding: 1rem; background: rgba(7,28,24,.93); backdrop-filter: blur(13px); }
.age-card { width: min(100%, 540px); max-height: calc(100dvh - 2rem); overflow-y: auto; border: 1px solid rgba(244,232,202,.35); border-radius: 28px; padding: clamp(2rem, 6vw, 4.5rem); background: var(--cream); box-shadow: 0 34px 100px rgba(0,0,0,.4); text-align: center; }
.mini-crest { display: inline-flex; margin-bottom: 2rem; }
.mini-crest .brand-mark { padding: .75rem; }
.mini-crest .brand-mark img { width: 126px; }
.age-card h2 { margin-bottom: 1.4rem; font-size: clamp(3rem, 8vw, 5rem); }
.age-card > p:not(.eyebrow) { max-width: 400px; margin: 0 auto 2rem; }
.age-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.age-card small { display: block; margin-top: 1.5rem; color: #435750; font-size: .7rem; }

@media (max-width: 1120px) {
  .desktop-nav, .desktop-shop { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .mobile-menu { display: block; }
  .home-hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 640px; }
  .hero-visual { min-height: min(78vw, 720px); }
  .story-teaser, .origin-grid { grid-template-columns: 1fr; }
  .story-exact-header { grid-template-columns: minmax(0, 1fr) minmax(330px, .78fr); }
  .story-chapter { grid-template-columns: minmax(120px, .3fr) minmax(0, 1fr); }
  .story-turn { grid-template-columns: minmax(0, 1fr) minmax(120px, .3fr); }
  .origin-lead { position: static; }
  .clarity-grid, .responsible-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  h1 { font-size: clamp(3.5rem, 18vw, 5.7rem); }
  .hero-title { font-size: clamp(2.55rem, 13vw, 4.2rem); }
  h2 { font-size: clamp(2.8rem, 13vw, 4.3rem); }
  .site-header { min-height: 88px; }
  .brand-mark-compact img { width: 96px; }
  .hero-copy { min-height: auto; padding-top: 4.7rem; padding-bottom: 4rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); row-gap: 1rem; }
  .hero-visual { min-height: 70vh; }
  .hero-visual > picture > img { object-position: 53% center; }
  .split-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .split-heading > p { margin-left: 0; }
  .flavor-controls { grid-template-columns: repeat(2, 1fr); }
  .flavor-controls button:nth-child(2) { border-right: 0; }
  .flavor-controls button:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .flavor-stage { grid-template-columns: 1fr; }
  .flavor-stage h3 { font-size: clamp(2.45rem, 11vw, 3.2rem); }
  .flavor-orb { width: min(72vw, 310px); margin: 0 auto; box-shadow: 11px 12px 0 var(--ink); }
  .story-teaser { gap: .75rem; }
  .story-exact-header { grid-template-columns: 1fr; min-height: auto; }
  .story-title-lockup { min-height: 520px; padding-block: 5rem; }
  .story-title-lockup::after { right: 1.3rem; bottom: 2.5rem; }
  .story-exact-header h1 { font-size: clamp(4.1rem, 21vw, 6.3rem); }
  .story-exact-header h1 strong { margin-left: .6rem; }
  .story-portrait { height: min(128vw, 680px); }
  .story-portrait::after { box-shadow: inset 0 24px 40px rgba(7,28,24,.28); }
  .story-chapter,
  .story-turn { grid-template-columns: 1fr; min-height: 0; gap: 3rem; padding-block: 5rem; }
  .story-turn > div,
  .story-turn .story-index { grid-column: 1; grid-row: auto; }
  .story-turn .story-index { grid-row: 1; text-align: left; }
  .story-index { font-size: clamp(7rem, 38vw, 11rem); }
  .story-chapter p { font-size: clamp(1.45rem, 7vw, 2.25rem); }
  .story-turn p:first-child { font-size: clamp(3.4rem, 17vw, 5.5rem); }
  .story-declaration { padding-block: 7rem; }
  .story-declaration p { font-size: clamp(3.35rem, 17vw, 6.2rem); }
  .story-finale { min-height: 540px; }
  .story-signature { font-size: clamp(4.2rem, 22vw, 7rem); }
  .story-card, .ritual-card, .ritual-photo-card > picture, .ritual-photo-card > picture > img { min-height: 520px; }
  .merch-grid, .coa-grid { grid-template-columns: 1fr; }
  .product-status { align-items: stretch; flex-direction: column; }
  .product-status .button { width: 100%; }
  .next-pour { grid-template-columns: 1fr; }
  .clarity-grid, .shop-principles, .coa-explainer, .responsible-grid { grid-template-columns: 1fr; }
  .values-band { grid-template-columns: 1fr; }
  .values-band article { border-right: 0; border-bottom: 1px solid var(--line); }
  .values-band article { min-height: 250px; }
  .values-band h2 { margin-top: 2.5rem; }
  .next-pour > div { align-items: flex-start; flex-direction: column; }
  .shop-status-bar, .coa-status { align-items: flex-start; flex-direction: column; gap: .55rem; }
  .coa-card > div { align-items: flex-start; flex-direction: column; gap: .2rem; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-links > div { min-height: auto; border-bottom: 1px solid var(--soft-line); padding: 2rem 1rem; }
  .footer-links > div:first-child { padding-left: 0; }
  .footer-warning { grid-column: 1 / -1; padding-left: 0 !important; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .age-actions { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .flavor-stage { padding: 2rem 1.25rem; }
  .flavor-stage > div:last-child { min-width: 0; }
}

@media (max-height: 700px) {
  .age-card { padding-block: 1.5rem; }
  .mini-crest { margin-bottom: 1rem; }
  .mini-crest .brand-mark img { width: 86px; }
  .age-card h2 { margin-bottom: .8rem; font-size: clamp(2.4rem, 8vh, 3.5rem); }
  .age-card > p:not(.eyebrow) { margin-bottom: 1rem; }
  .age-card small { margin-top: .8rem; }
}

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

/* Product-led launch experience */
.header-utilities { display: flex; justify-self: end; }
.utility-link {
  min-height: 44px;
  border: 0;
  border-bottom: 2px solid var(--red);
  padding: .5rem .15rem;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mobile-menu-shell { display: none; position: relative; justify-self: end; }
.mobile-menu-trigger {
  min-width: 70px;
  min-height: 44px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mobile-nav-panel {
  position: absolute;
  z-index: 80;
  top: calc(100% + .75rem);
  right: 0;
  width: min(88vw, 360px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: .7rem;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.mobile-nav-panel nav { display: grid; }
.mobile-nav-panel nav a { min-height: 46px; border-bottom: 1px solid var(--line); padding: .8rem .7rem; font-weight: 850; }
.mobile-nav-panel .utility-link { width: 100%; margin-top: .7rem; border: 0; border-radius: 999px; background: var(--red); color: var(--cream); }

.capture-backdrop { position: fixed; z-index: 110; inset: 0; display: grid; place-items: center; overflow-y: auto; padding: 1rem; background: rgba(7,28,24,.82); backdrop-filter: blur(10px); }
.capture-dialog { position: relative; width: min(100%, 620px); border: 1px solid rgba(10,48,39,.25); border-radius: 28px; padding: clamp(2rem, 6vw, 4.7rem); background: var(--cream); box-shadow: 0 40px 120px rgba(0,0,0,.35); }
.capture-dialog h2 { max-width: 480px; margin-bottom: 1.1rem; font-size: clamp(3.4rem, 8vw, 6rem); }
.capture-close { position: absolute; top: 1.1rem; right: 1.1rem; min-height: 44px; border: 1px solid var(--line); border-radius: 999px; padding: .65rem 1rem; background: var(--paper); cursor: pointer; font-size: .7rem; font-weight: 900; text-transform: uppercase; }
.capture-form { display: grid; gap: .65rem; margin-top: 2rem; }
.capture-form label, .footer-signup label { font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.capture-form input, .footer-signup input, .pro-form input, .pro-form select, .pro-form textarea, .locator-card input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(10,48,39,.35);
  border-radius: 12px;
  padding: .9rem 1rem;
  background: var(--paper);
  color: var(--ink);
}
.capture-form input:focus, .footer-signup input:focus, .pro-form input:focus, .pro-form select:focus, .pro-form textarea:focus, .locator-card input:focus { outline: 3px solid #075cca; outline-offset: 2px; }
.form-disclosure { margin: 1rem 0 0; color: #4a625b; font-size: .78rem; line-height: 1.55; }
.form-status { margin: 1rem 0 0; border-left: 4px solid var(--mango); padding: .85rem 1rem; background: #fff1cd; color: var(--ink); font-size: .83rem; font-weight: 700; }
.form-status-dark { background: rgba(244,232,202,.12); color: var(--cream); }

.fact-rail, .wholesale-proof { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--ink); background: var(--cream); }
.hero-visual > picture > img { object-fit: cover; object-position: center; }
.fact-rail div, .wholesale-proof div { min-height: 138px; border-right: 1px solid var(--line); padding: 1.7rem clamp(1rem, 3vw, 2.8rem); }
.fact-rail div:last-child, .wholesale-proof div:last-child { border-right: 0; }
.fact-rail strong, .wholesale-proof strong { display: block; font-family: var(--display); font-size: clamp(2rem, 4vw, 4.2rem); line-height: .9; text-transform: uppercase; }
.fact-rail span, .wholesale-proof span { display: block; margin-top: .6rem; font-size: .67rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }

.flavor-lineup-image { position: relative; overflow: hidden; border: 2px solid var(--ink); border-radius: 20px; background: var(--night); box-shadow: 14px 15px 0 var(--ink); }
.flavor-lineup-image picture, .flavor-lineup-image img { width: 100%; }
.flavor-lineup-image img { aspect-ratio: 2/3; max-height: 720px; object-fit: cover; }
.flavor-lineup-image > span { display: block; border-top: 1px solid var(--soft-line); padding: .7rem 1rem; background: var(--night); color: var(--cream); font-size: .66rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.flavor-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.7rem; }

.classic-spotlight { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 760px; background: var(--ink); color: var(--cream); }
.classic-photo picture, .classic-photo img { width: 100%; height: 100%; }
.classic-photo img { min-height: 760px; object-fit: cover; }
.classic-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(3rem, 7vw, 7rem); }
.classic-copy h2 { max-width: 660px; margin-bottom: 1.4rem; }
.classic-copy > p:not(.eyebrow) { max-width: 620px; font-size: 1.1rem; }
.classic-copy dl { width: 100%; margin: 2rem 0; }
.classic-copy dl > div { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; border-top: 1px solid var(--soft-line); padding: .8rem 0; }
.classic-copy dt { color: var(--gold); font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.classic-copy dd { margin: 0; font-weight: 750; }

.origin-home { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(3rem, 8vw, 9rem); align-items: end; background: var(--cream); }
.origin-home h2 { margin-bottom: 0; }
.origin-home h2 em { color: var(--red); font-family: Georgia, serif; font-weight: 700; text-transform: none; }
.origin-home > div:last-child > p { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

.recipes-preview { background: var(--paper); }
.recipe-preview-grid, .recipe-guardrails, .product-trust-grid, .contact-paths { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); margin-bottom: 2rem; }
.recipe-preview-grid article, .recipe-guardrails article, .product-trust-grid article, .contact-paths article { min-height: 280px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(1.5rem, 3vw, 3rem); }
.recipe-preview-grid span, .recipe-guardrails span, .contact-paths span { color: var(--red); font-size: .7rem; font-weight: 900; }
.recipe-preview-grid h3, .recipe-guardrails h2, .contact-paths h2 { margin: 3rem 0 1rem; font-size: clamp(2rem, 3vw, 3.3rem); }

.find-wholesale-band { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
.find-wholesale-band > div { display: flex; min-height: 560px; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: clamp(2.5rem, 6vw, 6.5rem); }
.find-wholesale-band > div { min-width: 0; }
.find-wholesale-band h2 { overflow-wrap: anywhere; }
.find-wholesale-band > div:first-child { background: var(--lime); }
.find-wholesale-band > div:last-child { background: var(--red); color: var(--cream); }
.find-wholesale-band h2 { margin-bottom: 1.4rem; }
.find-wholesale-band p:not(.eyebrow) { max-width: 620px; }

.transparency-home { display: grid; grid-template-columns: 1fr auto; gap: clamp(3rem, 8vw, 8rem); align-items: center; background: var(--lime); }
.transparency-home > div:first-child { max-width: 900px; }
.transparency-status { min-width: 270px; border: 2px solid var(--ink); border-radius: 22px; padding: 2rem; background: var(--cream); box-shadow: 12px 13px 0 var(--ink); }
.transparency-status span { font-size: .7rem; font-weight: 900; letter-spacing: .1em; }
.transparency-status strong { display: block; color: var(--red); font-family: var(--display); font-size: clamp(6rem, 10vw, 10rem); line-height: .9; }
.transparency-status p { margin: .5rem 0 0; font-weight: 750; }
.faq-home { background: var(--cream); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: grid; grid-template-columns: 55px 1fr; gap: 1rem; align-items: center; min-height: 82px; padding: 1rem; cursor: pointer; font-family: var(--display); font-size: clamp(1.35rem, 2.3vw, 2.4rem); font-weight: 900; line-height: 1; list-style: none; text-transform: uppercase; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--red); font-family: var(--body); font-size: .68rem; }
.faq-list details > p { max-width: 820px; margin: 0 0 1.8rem 71px; font-size: 1.05rem; }
.rita-list-band { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; padding: clamp(4rem, 8vw, 8rem) clamp(1.3rem, 6vw, 7rem); background: var(--red); color: var(--cream); }
.rita-list-band h2 { margin-bottom: 1rem; }

.catalog-filters { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 720px; margin-bottom: 4rem; overflow: hidden; border: 2px solid var(--ink); border-radius: 999px; }
.catalog-filters button { min-height: 50px; border: 0; border-right: 1px solid var(--ink); background: transparent; color: var(--ink); cursor: pointer; font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.catalog-filters button:last-child { border-right: 0; }
.catalog-filters button.active { background: var(--ink); color: var(--cream); }
.catalog-heading { display: grid; grid-template-columns: 1fr minmax(260px,.55fr); gap: 2rem; align-items: end; margin-bottom: 2.5rem; }
.catalog-heading h2 { margin-bottom: 0; }
.catalog-heading > p { max-width: 520px; margin: 0 0 .5rem auto; }
.flavor-card-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; }
.flavor-card { --accent: var(--lime); display: flex; min-height: 480px; flex-direction: column; align-items: flex-start; border: 1px solid var(--line); border-radius: 22px; padding: 1.7rem; background: color-mix(in srgb, var(--accent) 82%, var(--paper)); }
.flavor-card h3 { margin: auto 0 1rem; font-size: clamp(2rem, 3vw, 3.2rem); }
.flavor-card > p:not(.eyebrow) { font-size: .9rem; }
.flavor-card .button { width: 100%; margin-top: 1rem; }
.flavor-number { font-family: Georgia, serif; font-size: clamp(6rem, 9vw, 10rem); font-weight: 900; letter-spacing: -.1em; line-height: 1; opacity: .3; }
.catalog-merch { margin-top: clamp(5rem, 10vw, 10rem); }
.merch-copy h3 { margin-bottom: 1rem; font-size: clamp(2.3rem, 4vw, 4rem); }

.flavor-index-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
.flavor-index-card { --accent: var(--lime); display: flex; min-height: 650px; flex-direction: column; align-items: flex-start; justify-content: flex-end; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); padding: clamp(2rem, 6vw, 6rem); background: var(--accent); }
.flavor-index-card > span { margin-bottom: auto; font-family: Georgia, serif; font-size: clamp(7rem, 14vw, 14rem); font-weight: 900; letter-spacing: -.1em; line-height: .8; opacity: .22; }
.flavor-index-card h2 { margin-bottom: 1rem; }
.release-note { max-width: 1100px; }

.product-hero { --accent: var(--lime); display: grid; grid-template-columns: 1.25fr .75fr; min-height: 700px; background: color-mix(in srgb, var(--accent) 82%, var(--paper)); }
.product-hero > div { min-width: 0; }
.product-hero > div:first-child { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(3rem, 7vw, 7rem); }
.product-hero h1 { max-width: 1100px; margin-bottom: 1.5rem; overflow-wrap: anywhere; font-size: clamp(4rem, 9vw, 9rem); }
.product-hero > div:first-child > p:not(.eyebrow) { max-width: 680px; font-size: 1.15rem; }
.product-facts { display: grid; grid-template-columns: repeat(3,1fr); width: 100%; margin-top: 2rem; border-top: 1px solid var(--line); }
.product-facts span { padding: 1rem 1rem 0 0; font-size: .7rem; font-weight: 800; }
.product-facts b { display: block; font-family: var(--display); font-size: 1.7rem; }
.flavor-color-field { display: flex; flex-direction: column; align-items: center; justify-content: center; border-left: 1px solid var(--ink); background: var(--accent); }
.flavor-color-field span { font-family: Georgia, serif; font-size: clamp(10rem, 20vw, 20rem); font-weight: 900; letter-spacing: -.12em; line-height: .8; opacity: .28; }
.flavor-color-field strong { margin-top: 1.5rem; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.product-viewer { --accent: var(--lime); overflow: hidden; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.product-view-tabs { display: grid; grid-template-columns: repeat(3,1fr); border-bottom: 1px solid var(--line); }
.product-view-tabs button { min-height: 58px; border: 0; border-right: 1px solid var(--line); background: var(--cream); cursor: pointer; font-size: .72rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.product-view-tabs button:last-child { border-right: 0; }
.product-view-tabs button.active { background: var(--accent); }
.product-view-panel { min-height: 540px; background: color-mix(in srgb,var(--accent) 64%,var(--paper)); }
.product-image-panel picture, .product-image-panel img { width: 100%; }
.product-image-panel img { height: min(74vh, 800px); object-fit: contain; background: var(--night); }
.product-image-panel p { margin: 0; border-top: 1px solid var(--line); padding: 1rem 1.4rem; font-size: .76rem; font-weight: 800; text-transform: uppercase; }
.product-text-panel { display: flex; min-height: 540px; flex-direction: column; justify-content: center; padding: clamp(2.5rem, 8vw, 8rem); }
.product-text-panel blockquote { margin: 0 0 2rem; font-family: Georgia, serif; font-size: clamp(4rem, 10vw, 10rem); font-weight: 800; letter-spacing: -.06em; line-height: .84; }
.product-text-panel h2 { max-width: 900px; }
.product-text-panel > p:last-child { max-width: 700px; font-size: 1.1rem; }
.product-trust-grid { grid-template-columns: repeat(2,1fr); margin: 0; }
.product-trust-grid article { min-height: 410px; }
.product-trust-grid h2 { margin: 3rem 0 1rem; }
.related-merch { background: var(--cream); }

.locator-status { display: flex; justify-content: space-between; gap: 2rem; border-block: 1px solid var(--line); padding: 1rem clamp(1.3rem,6vw,7rem); background: var(--lime); font-size: .78rem; }
.find-tools { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.locator-card { display: flex; min-height: 560px; flex-direction: column; align-items: stretch; justify-content: flex-end; border-radius: 24px; padding: clamp(2rem,5vw,5rem); background: var(--cream); }
.locator-card h2 { margin-bottom: 2rem; }
.locator-card label { margin: .9rem 0 .35rem; font-size: .72rem; font-weight: 900; text-transform: uppercase; }
.retailer-card { background: var(--ink); color: var(--cream); }
.retailer-card .form-disclosure { color: #c6d2ce; }
.inline-field { display: grid; grid-template-columns: 1fr auto; gap: .7rem; }
.buyer-path, .faq-contact { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: end; background: var(--lime); }
.buyer-path h2, .faq-contact h2 { margin-bottom: 1rem; }

.recipe-filter-demo, .coa-filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; border-bottom: 1px solid var(--line); padding: 1rem clamp(1.3rem,6vw,7rem); background: var(--cream); }
.recipe-filter-demo span, .coa-filter-bar span { border: 1px solid var(--line); border-radius: 999px; padding: .65rem 1rem; font-size: .68rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.recipe-empty { max-width: 980px; }
.recipe-empty > strong { display: block; color: var(--red); font-family: var(--display); font-size: clamp(8rem, 18vw, 18rem); line-height: .78; }
.recipe-empty h2 { margin-top: 2rem; }
.recipe-guardrails { margin-bottom: 0; }
.recipe-template-hero { padding: clamp(6rem,12vw,12rem) clamp(1.3rem,7vw,8rem); background: var(--pear); }
.recipe-template-hero h1 { max-width: 1250px; margin-bottom: 2rem; }
.recipe-template-hero > p:last-child { max-width: 720px; font-size: 1.2rem; }
.recipe-template-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.recipe-template-grid article { min-height: 520px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(2rem,5vw,5rem); }
.recipe-template-grid h2 { margin: 4rem 0 1rem; font-size: clamp(2.5rem,4vw,4.6rem); }
.recipe-template-grid dl > div { border-top: 1px solid var(--line); padding: .8rem 0; }
.recipe-template-grid dt { font-size: .7rem; font-weight: 900; text-transform: uppercase; }
.recipe-template-grid dd { margin: .3rem 0 0; }

.form-section { display: grid; grid-template-columns: minmax(260px,.65fr) minmax(0,1.35fr); gap: clamp(3rem,8vw,9rem); align-items: start; }
.form-intro { position: sticky; top: 120px; }
.form-intro h2 { margin-bottom: 1.5rem; }
.pro-form { border: 1px solid var(--line); border-radius: 24px; padding: clamp(1.5rem,4vw,4rem); background: var(--cream); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.2rem; }
.form-grid > label { display: grid; gap: .4rem; color: var(--ink); font-size: .7rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.form-grid textarea { resize: vertical; }
.form-wide { grid-column: 1 / -1; }
.form-grid fieldset { border: 1px solid var(--line); border-radius: 14px; padding: 1rem; }
.form-grid legend { padding: 0 .35rem; font-size: .7rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.form-grid .check { display: flex; align-items: center; gap: .6rem; margin-top: .55rem; font-size: .82rem; font-weight: 650; text-transform: none; }
.form-grid .check input { width: 20px; min-height: 20px; }
.pro-form > .button { margin-top: 1.3rem; }
.wholesale-proof { background: var(--lime); }
.contact-paths { margin: 0; }
.contact-paths article { min-height: 390px; }
.contact-paths a { color: var(--red); font-size: .75rem; font-weight: 900; text-transform: uppercase; }
.inactive-commerce { max-width: 960px; }
.inactive-commerce h2 { margin-bottom: 1.5rem; }

.coa-filter-bar { justify-content: center; }

.footer-kicker { max-width: 440px; color: rgba(244,232,202,.72); font-size: .82rem; }
.footer-signup { align-self: end; }
.footer-signup > label { display: block; margin-bottom: .8rem; color: var(--gold); }
.footer-signup > div { display: grid; grid-template-columns: minmax(220px,1fr) auto; gap: .7rem; }
.footer-signup input { border-color: var(--soft-line); background: rgba(244,232,202,.08); color: var(--cream); }
.footer-signup input::placeholder { color: rgba(244,232,202,.62); }
.footer-signup small { display: block; margin-top: .7rem; color: rgba(244,232,202,.62); }
.footer-links { grid-template-columns: .65fr .65fr .65fr 1.25fr; }

@media (max-width: 1240px) {
  .desktop-nav { gap: 1rem; }
  .desktop-nav a { font-size: .64rem; }
}

@media (max-width: 1120px) {
  .header-utilities { display: none; }
  .mobile-menu-shell { display: block; }
  .classic-spotlight, .origin-home, .form-section { grid-template-columns: 1fr; }
  .classic-photo img { min-height: 620px; }
  .origin-home { align-items: start; }
  .form-intro { position: static; }
  .flavor-card-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .product-hero { grid-template-columns: 1fr; }
  .flavor-color-field { min-height: 320px; border-top: 1px solid var(--ink); border-left: 0; }
  .flavor-color-field span { font-size: 11rem; }
  .recipe-template-grid { grid-template-columns: 1fr; }
  .recipe-template-grid article { min-height: auto; border-right: 0; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
  .footer-warning { grid-column: 1 / -1; }
}

@media (max-width: 800px) {
  .fact-rail, .wholesale-proof { grid-template-columns: repeat(2,1fr); }
  .fact-rail div:nth-child(2), .wholesale-proof div:nth-child(2) { border-right: 0; }
  .fact-rail div:nth-child(-n+2), .wholesale-proof div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .classic-spotlight, .find-wholesale-band, .transparency-home, .flavor-index-grid, .find-tools { grid-template-columns: 1fr; }
  .classic-photo img { min-height: 520px; }
  .find-wholesale-band > div { min-height: 440px; }
  .transparency-status { min-width: 0; }
  .recipe-preview-grid, .recipe-guardrails, .product-trust-grid, .contact-paths { grid-template-columns: 1fr; }
  .catalog-heading, .buyer-path, .faq-contact, .rita-list-band { grid-template-columns: 1fr; align-items: start; }
  .catalog-heading > p { margin-left: 0; }
  .flavor-index-card { min-height: 520px; }
  .locator-status { align-items: flex-start; flex-direction: column; gap: .4rem; }
  .footer-signup > div { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .home-hero { min-height: 0; }
  .hero-title { font-size: clamp(2.55rem, 13vw, 4.2rem); line-height: .86; }
  .hero-intro { font-size: 1rem; }
  .hero-actions { width: 100%; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 62vh; }
  .fact-rail div, .wholesale-proof div { min-height: 118px; }
  .flavor-stage { padding: 2rem 1.15rem; }
  .flavor-lineup-image { box-shadow: 8px 9px 0 var(--ink); }
  .flavor-card-grid, .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .flavor-card { min-height: 420px; }
  .product-hero > div:first-child { padding: 3rem 1.3rem; }
  .product-hero h1 { font-size: clamp(3rem,15vw,4.8rem); }
  .product-facts { grid-template-columns: 1fr; }
  .product-facts span { border-bottom: 1px solid var(--line); padding: .75rem 0; }
  .flavor-color-field { min-height: 240px; }
  .product-view-tabs button { min-height: 52px; }
  .product-text-panel { min-height: 430px; }
  .product-text-panel blockquote { font-size: clamp(3.2rem,16vw,5.5rem); }
  .inline-field { grid-template-columns: 1fr; }
  .locator-card { min-height: 510px; }
  .recipe-empty > strong { font-size: 9rem; }
  .faq-list summary { grid-template-columns: 38px 1fr; font-size: 1.35rem; }
  .faq-list details > p { margin-left: 54px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-links > div { border-right: 0; }
  .footer-warning { grid-column: auto; }
}

/* Launch-candidate refinements */
.launch-pill {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .65rem .95rem;
  background: var(--cream);
  color: var(--ink);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.mobile-launch-status {
  display: block;
  margin-top: .7rem;
  border-radius: 999px;
  padding: .8rem 1rem;
  background: var(--red);
  color: var(--cream);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}
.launch-hero .hero-title { font-size: clamp(3.25rem, 6.4vw, 6.75rem); }
.hero-visual-portrait { min-height: 760px; }
.hero-visual-portrait picture, .hero-visual-portrait img { width: 100%; height: 100%; }
.hero-visual-portrait img { object-position: 50% 48%; }
.flavor-product-image { max-width: 520px; margin: 0 auto; }
.flavor-product-image picture { background: var(--night); }
.launch-status-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
  padding: clamp(4rem, 8vw, 8rem) clamp(1.3rem, 6vw, 7rem);
  background: var(--lime);
}
.launch-status-band h2 { margin-bottom: 0; }
.launch-status-band > div:last-child p { max-width: 620px; font-size: 1.1rem; font-weight: 650; }
.sold-out-status strong { color: var(--red); font-family: var(--display); font-size: 1.8rem; text-transform: uppercase; }
.sold-out-status span { margin-left: auto; }

.visual-flavor-grid .flavor-card { min-height: 0; overflow: hidden; padding: 0 0 1.35rem; }
.flavor-card-image { overflow: hidden; width: 100%; margin-bottom: 1.35rem; background: var(--night); }
.flavor-card-image picture, .flavor-card-image img { width: 100%; }
.flavor-card-image img { aspect-ratio: 2 / 3; object-fit: cover; }
.visual-disclosure { display: block; margin: -.55rem 0 1rem; color: #5b665e; font-size: .68rem; font-weight: 800; letter-spacing: .055em; line-height: 1.35; text-transform: uppercase; }
.hero-disclosure { position: absolute; z-index: 3; right: 1rem; bottom: 1rem; margin: 0; padding: .55rem .7rem; max-width: calc(100% - 2rem); background: rgba(7, 28, 24, .82); color: var(--cream); }
.visual-flavor-grid .flavor-card > .eyebrow,
.visual-flavor-grid .flavor-card > h3,
.visual-flavor-grid .flavor-card > .button { margin-right: 1.35rem; margin-left: 1.35rem; }
.visual-flavor-grid .flavor-card h3 { margin-top: .45rem; }

.visual-flavor-index { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.visual-flavor-card { --accent: var(--lime); position: relative; min-width: 0; overflow: hidden; background: var(--accent); }
.visual-flavor-card picture, .visual-flavor-card img { width: 100%; height: 100%; }
.visual-flavor-card img { aspect-ratio: 2 / 3; object-fit: cover; transition: transform .5s ease; }
.visual-flavor-card:hover img { transform: scale(1.02); }
.visual-flavor-card::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,28,24,.93), rgba(7,28,24,0) 62%); content: ""; pointer-events: none; }
.visual-flavor-card > div { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: clamp(1.3rem, 3vw, 2.5rem); color: var(--cream); }
.visual-flavor-card .visual-disclosure { margin: 0 0 .65rem; color: rgba(250, 241, 216, .78); }
.visual-flavor-card h2 { margin-bottom: 1rem; font-size: clamp(2rem, 3.3vw, 3.7rem); }

.launch-availability, .wholesale-visual {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
  background: var(--lime);
}
.launch-availability > picture, .wholesale-visual > picture { overflow: hidden; border-radius: 28px; box-shadow: var(--shadow); }
.launch-availability img, .wholesale-visual img { width: 100%; max-height: 820px; object-fit: cover; }
.launch-availability h2, .wholesale-visual h2 { margin-bottom: 1.4rem; }
.launch-availability > div > p:not(.eyebrow), .wholesale-visual > div > p:not(.eyebrow) { max-width: 620px; font-size: 1.08rem; font-weight: 650; }
.coming-soon-panel { min-height: 440px; background: var(--cream); }
.coa-launch-state { max-width: 1100px; }
.coa-launch-state > p:last-child { max-width: 760px; font-size: 1.12rem; }
.responsible-grid-compact { grid-template-columns: repeat(4, 1fr); }
.footer-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.footer-outline { border-color: var(--cream); color: var(--cream); }
.footer-outline:hover { background: var(--cream); color: var(--ink); }

@media (max-width: 1120px) {
  .hero-visual-portrait { min-height: min(110vw, 900px); }
  .visual-flavor-index { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .responsible-grid-compact { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  .launch-status-band, .launch-availability, .wholesale-visual { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 600px) {
  .launch-hero .hero-title { font-size: clamp(2.55rem, 13vw, 4.05rem); }
  .hero-visual-portrait { min-height: 76vh; }
  .visual-flavor-index, .responsible-grid-compact { grid-template-columns: 1fr; }
  .visual-flavor-card img { max-height: 760px; }
  .sold-out-status span { margin-left: 0; }
}

/* September 2026: reviewed product-information homepage. */
:root { --header-height: 104px; }
.review-hero { grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); min-height: 590px; background: var(--paper); }
.review-hero .hero-copy { min-height: 0; padding: clamp(2rem,4vw,4.5rem); }
.review-hero .hero-title { font-size: clamp(3.5rem,5.6vw,6rem); line-height: .94; letter-spacing: -.04em; }
.review-hero .hero-title span { overflow-wrap: normal; }
.review-hero .hero-title em { margin-top: .1em; }
.review-hero .hero-intro { font-size: 1.05rem; font-weight: 400; max-width: 36ch; }
.review-hero .hero-actions { flex-wrap: wrap; gap: 1.2rem; }
.review-hero-visual { min-height: 0; align-self: stretch; }
.review-hero-visual > picture, .review-hero-visual > picture > img { width: 100%; height: 100%; }
.review-hero-visual > picture > img { object-fit: cover; object-position: center; }
.review-hero-visual::after { display: none; }
.review-hero .hero-disclosure { font-size: .65rem; }
.story-intro { display: grid; grid-template-columns: 1.3fr .7fr; gap: 3rem; align-items: end; padding: 5.5rem 5vw 3rem; }
.story-intro h2 { max-width: 15ch; margin: 0; font-size: clamp(3rem,5.6vw,5.5rem); }
.story-intro > p { max-width: 36ch; margin: 0; }
.flavor-story { scroll-margin-top: calc(var(--header-height) + 20px); }
.story-navigation { position: sticky; top: var(--header-height); z-index: 20; display: flex; align-items: stretch; border-block: 1px solid var(--line); background: var(--paper); }
.story-navigation nav { display: grid; grid-template-columns: repeat(4,1fr); flex: 1; min-width: 0; }
.story-navigation a { display: flex; align-items: center; justify-content: center; gap: .8rem; min-height: 62px; padding: .8rem; border-bottom: 3px solid transparent; font-size: .8rem; font-weight: 800; }
.story-navigation a[aria-current] { border-bottom-color: var(--red); background: var(--cream); }
.story-navigation a:hover { background: var(--cream); }
.story-navigation a span { color: var(--red); font-size: .7rem; }
.motion-control { flex-shrink: 0; padding: .7rem 1.4rem; border: 0; border-left: 1px solid var(--line); background: var(--paper); color: var(--ink); font-size: .75rem; font-weight: 700; cursor: pointer; }
.motion-control:disabled { cursor: default; }
.flavor-chapters { position: relative; display: grid; }
.chapter-stack, .sticky-packaging { grid-area: 1 / 1; }
.flavor-chapter { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 5vw; min-height: min(800px,calc(100svh - var(--header-height) - 62px)); padding: 4rem 6vw; scroll-margin-top: calc(var(--header-height) + 62px); }
.story-tone-lime { background: var(--lime); }
.story-tone-mango { background: var(--mango); }
.story-tone-pineapple { background: var(--pineapple); }
.story-tone-pear { background: var(--pear); }
.chapter-copy { max-width: 530px; padding-block: 1rem; }
.chapter-copy h3 { font-size: clamp(3.6rem,6vw,6.5rem); line-height: .94; margin-bottom: 1.5rem; }
.chapter-copy > p:not(.eyebrow) { max-width: 35ch; }
.chapter-copy .button { margin-block: .8rem 1.2rem; }
.chapter-disclosure { font-size: .8rem; margin: 0; }
.packaging-frame { width: 100%; height: 100%; background: transparent; }
.packaging-frame img { display: block; width: 100%; height: 100%; object-fit: contain; }
.chapter-packaging { width: min(100%,330px); height: 540px; justify-self: center; }
.sticky-packaging { display: none; }
.is-enhanced .sticky-packaging { display: block; position: sticky; align-self: start; justify-self: end; z-index: 2; top: calc(var(--header-height) + 82px); width: min(26vw,330px); height: min(580px,calc(100svh - var(--header-height) - 102px)); margin: 20px calc(25% - min(13vw,165px)) 20px 0; pointer-events: none; }
.sticky-packaging-layer { position: absolute; inset: 0; opacity: 0; transition: opacity .35s ease; }
.sticky-packaging-layer.is-visible { opacity: 1; }
.is-enhanced .chapter-packaging { visibility: hidden; }
.product-information-band { display: grid; grid-template-columns: 1.2fr .8fr; gap: 5vw; padding: 5rem 6vw; background: var(--paper); }
.product-information-band h2 { margin-bottom: 1.5rem; font-size: clamp(2.8rem,4.5vw,4.7rem); }
.product-information-band p { max-width: 52ch; }
.product-information-band nav { align-self: center; display: grid; }
.product-information-band nav a { padding: 1.1rem 0; border-bottom: 1px solid var(--line); font-weight: 800; }
.product-information-band nav a:hover { color: var(--red); }
@media (min-width: 761px) and (max-width: 1120px) {
  .review-hero { grid-template-columns: 1fr 1fr; min-height: 520px; }
  .review-hero .hero-title { font-size: clamp(3rem,5.4vw,4.4rem); }
  .review-hero .hero-copy { padding: 2rem; }
}
@media (max-width: 900px) {
  .story-intro { grid-template-columns: 1fr; gap: 1.5rem; padding-block: 3.5rem 2rem; }
  .story-navigation a { gap: .4rem; font-size: .73rem; padding-inline: .35rem; }
  .story-navigation a span { display: none; }
  .flavor-chapter { min-height: 0; gap: 2rem; padding: 3rem 5vw; }
  .chapter-copy h3 { font-size: clamp(2.7rem,6vw,4rem); }
  .chapter-packaging { width: min(100%,280px); }
  .product-information-band { grid-template-columns: 1fr; gap: 1rem; }
}
@media (max-width: 760px) {
  :root { --header-height: 88px; }
  .site-header { min-height: var(--header-height); }
  .review-hero { grid-template-columns: 1fr; min-height: 0; }
  .review-hero .hero-copy { padding: 2.2rem 1.3rem 2rem; }
  .review-hero .hero-title { font-size: clamp(3rem,12vw,4.6rem); line-height: .94; margin-bottom: 1rem; }
  .review-hero .hero-title span, .review-hero .hero-title em { display: inline; }
  .review-hero .hero-title em { margin-left: .15em; }
  .review-hero .hero-actions { flex-direction: row; align-items: center; margin-top: .4rem; }
  .review-hero .hero-actions .button { width: auto; }
  .review-hero-visual { height: auto; aspect-ratio: 3 / 2; }
  .review-hero-visual > picture > img { object-fit: contain; }
  .review-hero .hero-disclosure { right: .5rem; bottom: .5rem; max-width: calc(100% - 1rem); font-size: .55rem; padding: .45rem; }
  .flavor-chapter { grid-template-columns: 1fr; gap: 1.4rem; padding: 2.6rem 1.3rem; }
  .chapter-copy { padding: 0; }
  .chapter-copy h3 { max-width: 11ch; font-size: clamp(3.1rem,12vw,4.5rem); }
  .chapter-packaging { width: min(74vw,300px); }
  .story-intro h2 { font-size: clamp(2.8rem,11vw,4rem); }
  .story-navigation a { min-height: 54px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .is-enhanced .sticky-packaging { display: none; }
  .is-enhanced .chapter-packaging { visibility: visible; }
}
/* Keep every flavor can visible in the hero. */
.review-hero-visual { display: flex; flex-direction: column; justify-content: center; padding: 1.5rem 1.5rem 1.5rem 0; background: var(--paper); }
.review-hero-visual > picture { height: auto; }
.review-hero-visual > picture > img { height: auto; object-fit: contain; }
.review-hero .hero-disclosure { position: static; margin: .75rem 0 0; padding: 0; max-width: 100%; background: transparent; color: var(--ink); font-size: .65rem; line-height: 1.5; }
@media (max-width: 760px) {
  .review-hero-visual { padding: 0 1.3rem 1.5rem; aspect-ratio: auto; }
  .review-hero .hero-disclosure { font-size: .6rem; }
}

/* Supplied no-plaque master: natural aspect ratio and consistent sticky offset. */
.site-header { height: var(--header-height); min-height: var(--header-height); padding-block: 8px; }
.brand-mark { padding: 0; background: transparent; vertical-align: middle; }
.brand-mark img { width: 180px; height: auto; }
.brand-mark-compact img { width: auto; height: 80px; }
.mini-crest { margin-bottom: 1rem; }
.mini-crest .brand-mark { padding: 0; }
.mini-crest .brand-mark img { width: 116px; height: auto; }
.age-card { padding: clamp(1.5rem,4vw,2rem); }
.age-card h2 { font-size: clamp(2.4rem,6vw,3.2rem); line-height: 1; }
@media (max-width: 760px) {
  .brand-mark-compact img { width: auto; height: 68px; }
}
@media (max-height: 700px) {
  .mini-crest .brand-mark img { width: 90px; }
  .mini-crest { margin-bottom: .75rem; }
  .age-card > p:not(.eyebrow) { margin-bottom: 1.25rem; }
}

/* Current artwork: complete isolated cans, with no photographic rectangle. */
.flavor-lineup-image { overflow: visible; border: 0; border-radius: 0; box-shadow: none; background: transparent; }
.flavor-lineup-image picture, .flavor-product-image picture { background: transparent; }
.flavor-lineup-image img { height: min(62vh,580px); aspect-ratio: auto; object-fit: contain; }
.flavor-lineup-image > span { margin-top: 1.5rem; border: 0; background: transparent; color: var(--ink); text-align: center; font-size: .75rem; }
.product-image-panel img { padding: 1.5rem; background: transparent; }
.flavor-card-image { padding: 1.5rem 1rem 0; background: transparent; }
.flavor-card-image img { height: 350px; aspect-ratio: auto; object-fit: contain; }
.visual-flavor-card { display: flex; flex-direction: column; }
.visual-flavor-card picture { height: auto; padding: 2rem 1.5rem 0; }
.visual-flavor-card img { height: 380px; aspect-ratio: auto; object-fit: contain; }
.visual-flavor-card::after { display: none; }
.visual-flavor-card > div { position: static; display: flex; flex: 1; flex-direction: column; align-items: flex-start; color: var(--ink); }
.visual-flavor-card .visual-disclosure { color: var(--ink); font-size: .75rem; }
.visual-flavor-card .button { margin-top: auto; }
.story-portrait img { aspect-ratio: 3 / 2; object-fit: cover; }
@media (max-width: 760px) {
  .chapter-packaging { height: 460px; }
  .flavor-lineup-image img { height: 420px; max-height: none; }
  .visual-flavor-card img { height: 360px; }
}

/* Open navigation with the flavor palette and the warmth of the Rita lettering. */
.tropical-header {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.25rem;
  padding-inline: clamp(1rem, 3vw, 3rem);
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
}
.tropical-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-width: 0;
}
.tropical-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .45rem .85rem;
  border: 1.5px solid var(--ink);
  border-radius: 55% 45% 48% 52% / 50% 50% 50% 50%;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 3px 0 var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.125rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease;
}
.tropical-nav a:nth-child(1) { background: var(--lime); }
.tropical-nav a:nth-child(2) { background: var(--mango); }
.tropical-nav a:nth-child(4) { background: #ef87a1; }
.tropical-nav a:nth-child(5) { background: var(--pineapple); }
.tropical-nav a:hover { transform: translateY(-3px) rotate(-2deg); box-shadow: 0 6px 0 var(--ink); }
.tropical-nav a:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--ink); }
@media (min-width: 901px) and (max-width: 1280px) {
  .tropical-header { grid-template-columns: auto minmax(0, 1fr); gap: 1rem; }
  .tropical-header .header-utilities { display: none; }
  .tropical-nav { justify-content: flex-end; }
  .tropical-nav a { font-size: 1.05rem; padding-inline: .7rem; }
}
@media (max-width: 900px) {
  :root { --header-height: 176px; }
  .tropical-header { grid-template-columns: 1fr auto; grid-template-rows: 56px 1fr; gap: 6px 1rem; padding: 8px 1rem 12px; }
  .tropical-header .header-brand { grid-column: 1; grid-row: 1; }
  .tropical-header .brand-mark-compact img { width: auto; height: 56px; }
  .tropical-header .header-utilities { grid-column: 2; grid-row: 1; display: flex; }
  .tropical-header .launch-pill { font-size: .65rem; }
  .tropical-nav { grid-column: 1 / -1; grid-row: 2; gap: 6px; }
  .tropical-nav a { font-size: .95rem; padding: .45rem .7rem; }
}
@media (max-width: 380px) {
  .tropical-header { padding-inline: .6rem; }
  .tropical-nav a { font-size: .875rem; padding-inline: .4rem; }
}
@media (min-width: 720px) and (max-width: 900px) {
  :root { --header-height: 128px; }
}

/* The supplied panorama is the hero: its empty plaster wall holds the copy. */
.hacienda-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 0;
  aspect-ratio: 1916 / 821;
  background: #f1e4ce;
}
.hacienda-hero-scene { position: absolute; z-index: -2; inset: 0; }
.hacienda-hero-scene picture, .hacienda-hero-scene img { width: 100%; height: 100%; }
.hacienda-hero-scene img { object-fit: cover; object-position: center; }
.hacienda-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,250,240,.72), rgba(255,250,240,.4) 29%, transparent 43%);
  content: "";
  pointer-events: none;
}
.hacienda-hero-copy {
  width: 40%;
  padding: 2rem 0 2rem clamp(1.5rem, 3.5vw, 5rem);
}
.hacienda-hero-copy .eyebrow {
  max-width: 36ch;
  margin-bottom: 1.25rem;
  font-size: clamp(.625rem, .76vw, .85rem);
  line-height: 1.6;
  letter-spacing: .14em;
}
.hacienda-hero .hero-title {
  margin-bottom: 1.4rem;
  font-size: clamp(3rem, 5.2vw, 6.5rem);
  line-height: .98;
  letter-spacing: -.04em;
}
.hacienda-hero .hero-title em {
  margin-top: .08em;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  text-transform: none;
}
.hacienda-hero .hero-intro {
  max-width: 33ch;
  margin-bottom: 0;
  font-size: clamp(.95rem, 1.16vw, 1.25rem);
  font-weight: 500;
  line-height: 1.6;
}
.hacienda-hero .hero-actions {
  flex-wrap: wrap;
  gap: 1rem 1.3rem;
  margin-top: 1.7rem;
}
.hacienda-hero .hero-actions .button { padding-inline: 1.2rem; }
.hacienda-hero .hero-actions .text-link { display: inline-flex; min-height: 44px; align-items: center; }
@media (max-width: 1100px) and (min-width: 901px) {
  .hacienda-hero-copy { padding-block: 1.5rem; }
  .hacienda-hero .hero-title { margin-bottom: 1rem; }
  .hacienda-hero .hero-actions { gap: .9rem; margin-top: 1.2rem; }
  .hacienda-hero .hero-actions .button { padding-inline: .95rem; font-size: .68rem; }
  .hacienda-hero .hero-actions .text-link { font-size: .7rem; }
}
/* A portrait screen needs a separate text area so all four cans stay intact. */
@media (max-width: 900px) {
  .hacienda-hero { display: flex; flex-direction: column; aspect-ratio: auto; }
  .hacienda-hero::before { display: none; }
  .hacienda-hero-copy { width: 100%; padding: 2.5rem clamp(1.25rem, 6vw, 3rem) 1.6rem; }
  .hacienda-hero-copy .eyebrow { max-width: none; margin-bottom: 1rem; font-size: .625rem; }
  .hacienda-hero .hero-title { font-size: clamp(3rem, 8vw, 4.8rem); line-height: .97; margin-bottom: 1rem; }
  .hacienda-hero .hero-title span, .hacienda-hero .hero-title em { display: block; }
  .hacienda-hero .hero-intro { max-width: 46ch; font-size: 1rem; }
  .hacienda-hero .hero-actions { flex-direction: row; align-items: center; margin-top: 1.25rem; gap: 1rem; }
  .hacienda-hero .hero-actions .button { width: auto; }
  .hacienda-hero-scene { position: relative; z-index: 0; width: 100%; aspect-ratio: 1.65; }
  .hacienda-hero-scene img { object-position: right bottom; }
  .hacienda-hero-scene::after {
    position: absolute; inset: -1px 0 auto; height: 20%;
    background: linear-gradient(#f1e4ce, transparent); content: ""; pointer-events: none;
  }
}
@media (max-width: 380px) {
  .hacienda-hero-copy { padding-top: 2rem; }
  .hacienda-hero .hero-title { font-size: 2.55rem; }
  .hacienda-hero .hero-actions { gap: .75rem; }
  .hacienda-hero .hero-actions .button { padding-inline: .85rem; font-size: .66rem; }
  .hacienda-hero .hero-actions .text-link { font-size: .7rem; }
}
