/* ==========================================================================
   Namma Spirits Design System
   Palette + type taken directly from the master logo artwork:
   ink #111111 · accent #C71225 · Inter ExtraBold, -0.06em tracking, 1.0 leading
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --ink:        #111111;
  --ink-80:     #3a3a3a;
  --smoke:      #6f6f6f;
  --line:       #e5e2de;
  --bone:       #f5f3f0;
  --bone-deep:  #ebe7e2;
  --paper:      #ffffff;
  --red:        #c71225;
  --red-deep:   #9e0e1d;
  --red-wash:   #fdf2f3;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;

  /* Fluid type scale */
  --t-display: clamp(3rem, 10.5vw, 8rem);
  --t-h1:      clamp(2.5rem, 7vw, 5rem);
  --t-h2:      clamp(2rem, 4.6vw, 3.5rem);
  --t-h3:      clamp(1.35rem, 2.2vw, 1.75rem);
  --t-lead:    clamp(1.0625rem, 1.5vw, 1.3125rem);
  --t-body:    1.0625rem;
  --t-small:   0.9375rem;
  --t-micro:   0.75rem;

  --shell:     1320px;
  --gutter:    clamp(1.25rem, 5vw, 4.5rem);
  --section:   clamp(4.5rem, 10vw, 9rem);

  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --header-h:  76px;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--t-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
body.is-locked { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

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

.skip-link {
  position: absolute; top: -100px; left: var(--gutter); z-index: 999;
  background: var(--ink); color: #fff; padding: .75rem 1.25rem;
  font-size: var(--t-small); font-weight: 600; border-radius: 0 0 4px 4px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- 3. Layout primitives ---------- */
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
.section--bone { background: var(--bone); }
.section--ink { background: var(--ink); color: var(--bone); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

/* ---------- 4. Typography ---------- */
.display, .h1, .h2, .h3 {
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}
.display { font-size: var(--t-display); letter-spacing: -0.055em; }
.h1 { font-size: var(--t-h1); }
.h2 { font-size: var(--t-h2); }
.h3 { font-size: var(--t-h3); letter-spacing: -0.03em; line-height: 1.2; }

.lead { font-size: var(--t-lead); line-height: 1.55; color: var(--ink-80); text-wrap: pretty; }
.muted { color: var(--smoke); }
.section--ink .muted, .section--ink .lead { color: #a8a8a8; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: var(--t-micro); font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--red);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--red); flex: none;
}
.section--ink .eyebrow { color: #ff5566; }
.section--ink .eyebrow::before { background: #ff5566; }

.dot { color: var(--red); }

.prose p + p { margin-top: 1.15rem; }
.prose p { color: var(--ink-80); text-wrap: pretty; }
.section--ink .prose p { color: #b5b5b5; }

/* ---------- 5. Logo wordmark (matches master artwork) ---------- */
.wordmark {
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--ink);
  display: inline-block;
  white-space: nowrap;
}
.wordmark--stack { white-space: normal; }
.wordmark--stack .wordmark__line { display: block; }
.wordmark--nav { font-size: 1.375rem; }
.wordmark--foot { font-size: clamp(3rem, 9vw, 6.5rem); color: var(--bone); }
.wordmark .dot { color: var(--red); }

/* ---------- 6. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 1.85rem;
  font-size: var(--t-small); font-weight: 700; letter-spacing: .01em;
  border-radius: 100px;
  border: 1.5px solid transparent;
  transition: background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn__arrow { transition: transform .3s var(--ease); flex: none; }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-deep); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--red); }
.btn--ghost { border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--light { border-color: rgba(255,255,255,.35); color: #fff; }
.btn--light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: var(--t-small);
  padding-bottom: 3px;
  border-bottom: 2px solid var(--red);
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.link-arrow:hover { gap: .9rem; color: var(--red); }

/* ---------- 7. Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
}
.header__inner {
  width: 100%; max-width: var(--shell); margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav { display: flex; align-items: center; gap: clamp(1.25rem, 2.4vw, 2.25rem); }
.nav__link {
  position: relative;
  font-size: var(--t-small); font-weight: 600; letter-spacing: -.01em;
  padding-block: .35rem;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after {
  transform: scaleX(1); transform-origin: left;
}
.header__actions { display: flex; align-items: center; gap: 1rem; }
.header__cta { padding: .7rem 1.4rem; }

.burger {
  display: none; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  margin-right: -10px; position: relative; z-index: 210;
}
.burger__box { display: block; width: 24px; height: 12px; position: relative; }
.burger__box span {
  position: absolute; left: 0; width: 100%; height: 2px; background: var(--ink);
  transition: transform .3s var(--ease);
}
.burger__box span:first-child { top: 0; }
.burger__box span:last-child { bottom: 0; }
.burger[aria-expanded="true"] .burger__box span:first-child { transform: translateY(5px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__box span:last-child { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav, .header__cta { display: none; }
  .burger { display: flex; }
}

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 190;
  background: var(--paper);
  padding: calc(var(--header-h) + 2rem) var(--gutter) 3rem;
  display: flex; flex-direction: column; justify-content: space-between; gap: 2rem;
  transform: translateY(-100%);
  transition: transform .5s var(--ease), visibility .5s;
  visibility: hidden;
  overflow-y: auto;
}
.drawer.is-open { transform: translateY(0); visibility: visible; }
.drawer__nav { display: flex; flex-direction: column; gap: .25rem; }
.drawer__link {
  font-size: clamp(2rem, 9vw, 3rem); font-weight: 800; letter-spacing: -.045em;
  padding-block: .3rem; line-height: 1.1;
}
.drawer__link[aria-current="page"] { color: var(--red); }
.drawer__foot { display: grid; gap: 1.25rem; }
.drawer__meta { font-size: var(--t-small); color: var(--smoke); }

/* ---------- 8. Hero ---------- */
.hero {
  position: relative;
  min-height: min(100svh, 920px);
  display: flex; align-items: flex-end;
  padding-top: calc(var(--header-h) + 4rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
  overflow: hidden;
  background: var(--bone);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 78% 12%, rgba(199,18,37,.11), transparent 58%),
    radial-gradient(90% 70% at 8% 92%, rgba(17,17,17,.07), transparent 60%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(to right, rgba(17,17,17,.05) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
}
@media (max-width: 700px) { .hero__grid { background-size: calc(100% / 3) 100%; } }

.hero__inner { position: relative; width: 100%; }
.hero__title { margin-bottom: 1.75rem; }
.hero__title > span { display: block; }
.hero__title .l2 { color: var(--red); }
.hero__body { max-width: 48ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .875rem; margin-top: 2.25rem; }

.hero__foot {
  display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: flex-end; justify-content: space-between;
  margin-top: clamp(3rem, 8vw, 5.5rem);
  padding-top: 1.75rem;
  border-top: 1px solid rgba(17,17,17,.14);
}
.hero__facts { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3rem); }
.fact__k { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.fact__v { font-size: var(--t-micro); text-transform: uppercase; letter-spacing: .14em;
           font-weight: 600; color: var(--smoke); margin-top: .5rem; }

.scroll-cue {
  display: inline-flex; align-items: center; gap: .65rem;
  font-size: var(--t-micro); text-transform: uppercase; letter-spacing: .16em;
  font-weight: 600; color: var(--smoke);
}
.scroll-cue svg { animation: nudge 2.2s var(--ease) infinite; }
@keyframes nudge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* Interior page header */
.pagehead {
  padding-top: calc(var(--header-h) + clamp(4rem, 10vw, 7.5rem));
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  background: var(--bone);
  position: relative; overflow: hidden;
}
.pagehead::after {
  content: ""; position: absolute; right: -8%; top: -35%;
  width: 46vw; height: 46vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(199,18,37,.11), transparent 62%);
  pointer-events: none;
}
.pagehead__inner { position: relative; }
.pagehead .lead { max-width: 62ch; margin-top: 1.5rem; }

.crumbs { display: flex; gap: .5rem; align-items: center; font-size: var(--t-micro);
          text-transform: uppercase; letter-spacing: .14em; font-weight: 600;
          color: var(--smoke); margin-bottom: 1.5rem; }
.crumbs a:hover { color: var(--red); }

/* ---------- 9. Marquee ---------- */
.marquee {
  background: var(--ink); color: var(--bone);
  padding-block: 1.15rem; overflow: hidden;
}
.marquee__track { display: flex; width: max-content; animation: slide 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; flex: none; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 1.5rem;
  padding-inline: 1.5rem;
  font-size: var(--t-micro); font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; white-space: nowrap;
}
.marquee__item::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex: none; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .scroll-cue svg { animation: none; }
}

/* ---------- 10. Product cards ---------- */
.bottle-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: border-color .35s var(--ease), transform .35s var(--ease),
              box-shadow .35s var(--ease);
}
.bottle-card:hover {
  border-color: var(--ink);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -30px rgba(17,17,17,.45);
}
.bottle-card__tag {
  align-self: flex-start;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 100px;
  background: var(--bone); color: var(--smoke);
}
.bottle-card__tag--new { background: var(--red-wash); color: var(--red); }
.bottle-card__art {
  display: grid; place-items: center;
  padding-block: clamp(1.5rem, 4vw, 2.5rem);
}
.bottle-card__art img { height: clamp(180px, 24vw, 250px); width: auto; transition: transform .5s var(--ease); }
.bottle-card:hover .bottle-card__art img { transform: translateY(-8px) scale(1.03); }
.bottle-card__name { font-size: 1.3125rem; font-weight: 800; letter-spacing: -.03em; line-height: 1.15; }
.bottle-card__kind { font-size: var(--t-micro); text-transform: uppercase; letter-spacing: .14em;
                     font-weight: 600; color: var(--red); margin-top: .5rem; }
.bottle-card__desc { font-size: var(--t-small); color: var(--smoke); margin-top: .85rem; line-height: 1.6; }
.bottle-card__foot {
  margin-top: auto; padding-top: 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: var(--t-small); font-weight: 600;
}
.bottle-card__abv { color: var(--smoke); font-variant-numeric: tabular-nums; }
.bottle-card__link { display: inline-flex; align-items: center; gap: .4rem; transition: gap .25s var(--ease); }
.bottle-card:hover .bottle-card__link { gap: .8rem; color: var(--red); }
.bottle-card__stretch::after { content: ""; position: absolute; inset: 0; }

/* ---------- 11. Product detail rows ---------- */
.product {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 5.5rem);
  border-bottom: 1px solid var(--line);
}
.product:last-child { border-bottom: 0; }
.product--flip .product__art { order: 2; }
@media (max-width: 880px) {
  .product { grid-template-columns: 1fr; }
  .product--flip .product__art { order: 0; }
}
.product__art {
  position: relative; display: grid; place-items: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: var(--bone); overflow: hidden;
}
.product__art::before {
  content: ""; position: absolute; width: 74%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(199,18,37,.14), transparent 68%);
}
.product__art img { position: relative; height: clamp(240px, 32vw, 370px); width: auto; }
.product__num {
  position: absolute; top: .75rem; left: 1.25rem;
  font-size: clamp(3.5rem, 8vw, 6rem); font-weight: 800; letter-spacing: -.06em;
  color: rgba(17,17,17,.08); line-height: 1;
}
.notes { display: grid; gap: .875rem; margin-top: 1.75rem; }
.note { display: grid; grid-template-columns: 92px 1fr; gap: 1rem; align-items: baseline;
        padding-bottom: .875rem; border-bottom: 1px dashed var(--line); }
.note:last-child { border-bottom: 0; }
.note__k { font-size: var(--t-micro); text-transform: uppercase; letter-spacing: .14em;
           font-weight: 700; color: var(--red); }
.note__v { font-size: var(--t-small); color: var(--ink-80); }
@media (max-width: 480px) { .note { grid-template-columns: 1fr; gap: .25rem; } }

.spec-row {
  display: flex; flex-wrap: wrap; gap: 2rem;
  margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
}
.spec__k { font-size: var(--t-micro); text-transform: uppercase; letter-spacing: .14em;
           color: var(--smoke); font-weight: 600; }
.spec__v { font-size: 1.125rem; font-weight: 800; letter-spacing: -.02em; margin-top: .35rem; }

/* ---------- 12. Steps ---------- */
.step { position: relative; padding-top: 2rem; border-top: 2px solid var(--ink); }
.section--ink .step { border-top-color: rgba(245,243,240,.28); }
.step__n { font-size: var(--t-micro); font-weight: 700; letter-spacing: .16em;
           color: var(--red); margin-bottom: .9rem; }
.section--ink .step__n { color: #ff5566; }
.step__t { font-size: 1.1875rem; font-weight: 800; letter-spacing: -.025em; margin-bottom: .65rem; }
.step__d { font-size: var(--t-small); color: var(--smoke); line-height: 1.65; }
.section--ink .step__d { color: #a8a8a8; }

/* ---------- 13. Botanicals ---------- */
.botanical {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.35rem; border: 1px solid var(--line); background: var(--paper);
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.botanical:hover { border-color: var(--red); background: var(--red-wash); }
.botanical__icon { flex: none; width: 40px; height: 40px; color: var(--red); }
.botanical__t { font-weight: 700; font-size: var(--t-small); letter-spacing: -.01em; }
.botanical__d { font-size: 0.875rem; color: var(--smoke); margin-top: .3rem; line-height: 1.55; }

/* ---------- 14. Quote ---------- */
.quote { text-align: center; max-width: 760px; margin-inline: auto; }
.quote__mark { font-size: 4rem; line-height: .6; color: var(--red); font-weight: 800; }
.quote__text { font-size: clamp(1.6rem, 4vw, 2.75rem); font-weight: 800;
               letter-spacing: -.04em; line-height: 1.15; margin-top: 1.5rem; }
.quote__by { font-size: var(--t-micro); text-transform: uppercase; letter-spacing: .16em;
             font-weight: 600; color: var(--smoke); margin-top: 2rem; }

/* ---------- 15. Timeline ---------- */
.tl {
  display: grid; grid-template-columns: 150px 1fr; gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: 2rem; border-top: 1px solid var(--line);
}
.tl:last-child { border-bottom: 1px solid var(--line); }
.tl__year { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800;
            letter-spacing: -.05em; line-height: 1; color: var(--red); }
.tl__t { font-size: 1.125rem; font-weight: 800; letter-spacing: -.025em; margin-bottom: .5rem; }
.tl__d { color: var(--smoke); font-size: var(--t-small); max-width: 62ch; }
@media (max-width: 620px) { .tl { grid-template-columns: 1fr; gap: .75rem; } }

/* ---------- 16. Forms ---------- */
.field { display: grid; gap: .5rem; }
.field__label { font-size: var(--t-micro); text-transform: uppercase; letter-spacing: .14em;
                font-weight: 700; color: var(--smoke); }
.field__input, .field__select, .field__textarea {
  width: 100%; padding: .9rem 1rem;
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 2px;
  font-size: var(--t-small);
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.field__input:focus, .field__select:focus, .field__textarea:focus {
  outline: none; border-color: var(--ink); background: #fff;
}
.field__textarea { resize: vertical; min-height: 150px; }
.field__select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23111111' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-note { font-size: 0.8125rem; color: var(--smoke); line-height: 1.55; }
.form-status {
  display: none; padding: .9rem 1.1rem; border-radius: 2px;
  font-size: var(--t-small); font-weight: 600;
  background: var(--red-wash); color: var(--red-deep);
  border-left: 3px solid var(--red);
}
.form-status.is-visible { display: block; }

.subscribe { display: flex; gap: .625rem; flex-wrap: wrap; }
.subscribe .field__input { flex: 1 1 240px; min-width: 0; }
.section--ink .field__input {
  background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.2); color: #fff;
}
.section--ink .field__input::placeholder { color: #8a8a8a; }
.section--ink .field__input:focus { border-color: #fff; background: rgba(255,255,255,.1); }
.section--ink .form-status { background: rgba(255,255,255,.08); color: #fff; border-left-color: #ff5566; }

/* ---------- 17. Accordion ---------- */
.acc { border-bottom: 1px solid var(--line); }
.acc__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; text-align: left; padding: 1.5rem 0;
  font-size: 1.0625rem; font-weight: 700; letter-spacing: -.02em;
  transition: color .2s var(--ease);
}
.acc__btn:hover { color: var(--red); }
.acc__icon { flex: none; width: 20px; height: 20px; position: relative; }
.acc__icon::before, .acc__icon::after {
  content: ""; position: absolute; top: 9px; left: 0; width: 100%; height: 2px;
  background: currentColor; transition: transform .3s var(--ease);
}
.acc__icon::after { transform: rotate(90deg); }
.acc__btn[aria-expanded="true"] .acc__icon::after { transform: rotate(0deg); }
.acc__panel { overflow: hidden; max-height: 0; transition: max-height .35s var(--ease); }
.acc__panel p { padding-bottom: 1.5rem; color: var(--smoke); font-size: var(--t-small); max-width: 72ch; }

/* ---------- 18. Tiles / stats ---------- */
.tile {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--line); background: var(--paper);
  display: flex; flex-direction: column; gap: .75rem;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.tile:hover { transform: translateY(-4px); border-color: var(--ink); }
.tile__icon { width: 30px; height: 30px; color: var(--red); margin-bottom: .5rem; }
.tile__t { font-size: 1.0625rem; font-weight: 800; letter-spacing: -.025em; }
.tile__d { font-size: var(--t-small); color: var(--smoke); line-height: 1.6; }
.tile__link { margin-top: auto; padding-top: .75rem; font-size: var(--t-small); font-weight: 700;
              transition: color .2s var(--ease); }
.tile__link:hover { color: var(--red); }

.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.stat-band > div { background: var(--paper); padding: clamp(1.5rem, 3vw, 2.25rem); }
.section--bone .stat-band > div { background: var(--bone); }
@media (max-width: 780px) { .stat-band { grid-template-columns: repeat(2, 1fr); } }

/* ---------- 19. CTA band ---------- */
.cta-band { background: var(--ink); color: var(--bone); position: relative; overflow: hidden; }
.cta-band::after {
  content: ""; position: absolute; left: 50%; bottom: -60%;
  width: 70vw; height: 70vw; transform: translateX(-50%); border-radius: 50%;
  background: radial-gradient(circle, rgba(199,18,37,.3), transparent 62%);
  pointer-events: none;
}
.cta-band__inner { position: relative; text-align: center; }
.cta-band .h2 { max-width: 20ch; margin-inline: auto; }

/* The CTA band is dark but isn't .section--ink, so re-map the light-background
   text colours that .lead / .eyebrow / .dot would otherwise inherit. */
.cta-band .lead { color: #b0b0b0; }
.cta-band .eyebrow { color: #ff5566; }
.cta-band .eyebrow::before { background: #ff5566; }
.cta-band .dot, .section--ink .dot { color: #ff5566; }
.footer .tile__d { color: #a8a8a8; }

/* ---------- 20. Footer ---------- */
.footer { background: var(--ink); color: var(--bone); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer__top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; } }
.footer__h {
  font-size: var(--t-micro); text-transform: uppercase; letter-spacing: .16em;
  font-weight: 700; color: #8a8a8a; margin-bottom: 1.25rem;
}
.footer__list { display: grid; gap: .7rem; }
.footer__list a, .footer__list li { font-size: var(--t-small); color: #cfcfcf; }
.footer__list a { transition: color .2s var(--ease); }
.footer__list a:hover { color: #fff; }
.footer__mark { padding-block: clamp(1.5rem, 4vw, 2.5rem); border-top: 1px solid rgba(245,243,240,.14); }
.footer__legal {
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between;
  align-items: center; padding-block: 1.75rem;
  border-top: 1px solid rgba(245,243,240,.14);
  font-size: 0.8125rem; color: #8a8a8a;
}
.footer__legal a { transition: color .2s var(--ease); }
.footer__legal a:hover { color: #fff; }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.drink-note {
  background: var(--red); color: #fff; text-align: center;
  padding: .875rem 1rem; font-size: var(--t-micro); font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; line-height: 1.5;
}
.social { display: flex; gap: .625rem; margin-top: 1.5rem; }
.social a {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid rgba(245,243,240,.22); border-radius: 50%;
  transition: background-color .25s var(--ease), border-color .25s var(--ease);
}
.social a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.social svg { width: 17px; height: 17px; }

/* ---------- 21. Age gate ---------- */
.agegate {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  background: var(--ink);
  padding: var(--gutter);
  opacity: 1;
  transition: opacity .5s var(--ease), visibility .5s;
}
.agegate[hidden] { display: none; }
.agegate.is-closing { opacity: 0; visibility: hidden; }
.agegate__panel { max-width: 500px; text-align: center; color: var(--bone); }
.agegate .wordmark { color: var(--bone); font-size: clamp(2.25rem, 8vw, 3.25rem); margin-bottom: 2rem; }
.agegate__q { font-size: clamp(1.375rem, 4vw, 1.75rem); font-weight: 800;
              letter-spacing: -.035em; line-height: 1.2; }
.agegate__sub { font-size: var(--t-small); color: #9a9a9a; margin-top: .9rem; line-height: 1.6; }
.agegate__actions { display: flex; gap: .75rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.agegate__deny { display: none; font-size: var(--t-small); color: #ff8a94; margin-top: 1.5rem; line-height: 1.6; }
.agegate__deny.is-visible { display: block; }
.agegate__fine { font-size: 0.75rem; color: #6f6f6f; margin-top: 2rem; line-height: 1.6; }

/* ---------- 22. Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); }
[data-reveal].is-in {
  opacity: 1; transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--d, 0ms);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .btn:hover, .tile:hover, .bottle-card:hover { transform: none; }
}

/* ---------- 23. Utilities ---------- */
.stack-sm > * + * { margin-top: .75rem; }
.stack > * + * { margin-top: 1.5rem; }
.stack-lg > * + * { margin-top: 2.5rem; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.center { text-align: center; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 48ch; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.section-head { display: grid; gap: 1.25rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--row { grid-template-columns: minmax(0,1fr) auto; align-items: end; gap: 2rem; }
@media (max-width: 700px) { .section-head--row { grid-template-columns: 1fr; align-items: start; } }

/* ==========================================================================
   24. Brand scopes
   Namma Spirits is the house. Each brand re-points the accent tokens, so every
   component below inherits that brand's colour without new rules.
   ========================================================================== */
.brand--sante {
  --red:      #d9691f;   /* La Santé orange   */
  --red-deep: #0f4d2e;   /* La Santé green    */
  --red-wash: #fdf1e5;
  --brand-bg: #f7e9d8;
}
.brand--amari {
  --red:      #b4762a;   /* Amari gold        */
  --red-deep: #3d2313;   /* Amari brown       */
  --red-wash: #faf2e2;
  --brand-bg: #f5e7d3;
}

/* ---------- 25. Product photography frames ----------
   Bottle shots are studio images on a cream ground. We letterbox them with
   `contain` against a matching brand tint so the whole bottle always shows;
   `cover` would crop the cap or the base off a portrait product shot. */
.shot {
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
  background: var(--brand-bg, var(--bone));
}
.shot img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  transition: transform .8s var(--ease);
}
.shot--tall  { aspect-ratio: 3 / 4; }
.shot--square { aspect-ratio: 1 / 1; }
.shot--wide  { aspect-ratio: 5 / 4; }
a:hover > .shot img, .brand-card:hover .shot img { transform: scale(1.035); }

.shot__badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: .45rem .8rem; border-radius: 100px;
  background: rgba(255,255,255,.92); color: var(--red-deep);
  backdrop-filter: blur(6px);
}

/* ---------- 26. Brand cards (home) ---------- */
.brand-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .35s var(--ease), transform .35s var(--ease),
              box-shadow .35s var(--ease);
}
.brand-card:hover {
  border-color: var(--ink);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -35px rgba(17,17,17,.5);
}
.brand-card__body { padding: clamp(1.5rem, 3vw, 2.5rem); display: flex; flex-direction: column; flex: 1; }
.brand-card__logo { height: 58px; width: auto; object-fit: contain; object-position: left center; margin-bottom: 1.25rem; }
/* Square emblem marks (e.g. the La Santé roundel) need equal sides. */
.brand-card__logo--mark { height: 68px; width: 68px; }
.brand-card__name {
  font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800;
  letter-spacing: -.04em; line-height: 1;
}
.brand-card__kind {
  font-size: var(--t-micro); text-transform: uppercase; letter-spacing: .16em;
  font-weight: 700; color: var(--red); margin-top: .75rem;
}
.brand-card__desc { font-size: var(--t-small); color: var(--smoke); margin-top: 1rem; line-height: 1.65; }
.brand-card__meta {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line);
}
.brand-card__foot { margin-top: auto; padding-top: 1.5rem; }

/* ---------- 27. Market / availability ---------- */
.market {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.25rem;
  align-items: center;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--line); background: var(--paper);
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.market:hover { border-color: var(--ink); }
.market__pin { width: 22px; height: 22px; color: var(--red); flex: none; }
.market__name { font-weight: 800; letter-spacing: -.025em; font-size: 1.0625rem; }
.market__note { font-size: 0.8125rem; color: var(--smoke); margin-top: .2rem; }
@media (max-width: 560px) {
  .market { grid-template-columns: auto 1fr; }
  .market .pill { grid-column: 2; justify-self: start; }
}

.pill {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  padding: .4rem .8rem; border-radius: 100px; white-space: nowrap;
}
.pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex: none; }
.pill--live { background: #eaf6ee; color: #17693c; }
.pill--soon { background: var(--red-wash); color: var(--red-deep); }
.pill--plan { background: var(--bone); color: var(--smoke); }
.section--ink .pill--live { background: rgba(35,160,88,.16); color: #6ee59f; }
.section--ink .pill--soon { background: rgba(255,255,255,.1); color: #ffb3ba; }

/* ---------- 28. Split feature (image + copy) ---------- */
.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.feature--flip .feature__media { order: 2; }
@media (max-width: 880px) {
  .feature { grid-template-columns: 1fr; }
  .feature--flip .feature__media { order: 0; }
}

/* ---------- 29. Fact list ---------- */
.facts { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1px; background: var(--line); margin-top: 2rem; }
.facts > div { background: var(--paper); padding: 1.25rem 1.35rem; }
.section--bone .facts > div { background: var(--bone); }
.facts__k { font-size: var(--t-micro); text-transform: uppercase; letter-spacing: .14em; color: var(--smoke); font-weight: 600; }
.facts__v { font-size: 1.0625rem; font-weight: 800; letter-spacing: -.02em; margin-top: .3rem; }

/* ---------- 30. Placeholder marker ---------- */
.todo {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #8a6d00; background: #fff6d6; border: 1px dashed #d9b400;
  padding: .3rem .6rem; border-radius: 3px;
}

/* ---------- 31. Nav-free header variant (currently unused) ----------
   Every page carries the full nav today, so nothing uses .header--minimal.
   Kept because it is the other half of the nav-free landing page: section 7
   hides .header__cta below 900px on the assumption a burger takes over there,
   so a header with no burger needs this override or it goes empty on phones.
   Add `header--minimal` to <header> if you strip the nav again. */
.header--minimal .header__cta { display: inline-flex; }
@media (max-width: 480px) {
  .header--minimal .header__cta { padding: .6rem 1.1rem; font-size: 0.875rem; }
}

/* ---------- 32. Sold-out / production status pills ----------
   Amari has launched and sold through its first batch; La Santé is still in
   production. Neither is "live" in the buy-it-now sense, so they need their
   own states alongside .pill--live and .pill--soon. */
.pill--out  { background: #fdf2f3; color: #9e0e1d; }
.pill--prod { background: #f1f0fd; color: #3f3aa3; }
.section--ink .pill--out  { background: rgba(255,255,255,.10); color: #ff8a94; }
.section--ink .pill--prod { background: rgba(255,255,255,.10); color: #b3b0ff; }

/* ---------- 33. Product block with no photography ----------
   The product sections were built as a two-column image + copy grid. With the
   bottle shots removed there is only one child, so collapse to a single column
   and hold the copy to a readable measure instead of letting it span full width. */
.feature--solo { grid-template-columns: minmax(0, 1fr); }
.feature--solo > div { max-width: 74ch; }
