/* ==========================================================================
   KAASH — thekaash.com
   Mobile-first stylesheet. No framework, no build step.

   CONTENTS
     01  Design tokens
     02  Reset + base
     03  Typography scale
     04  Buttons + links
     05  Layout helpers
     06  Reveal animation
     07  Header + navigation
     08  Hero
     09  Statement strip
     10  Product range
     11  Story (dark)
     12  Formats
     13  Climb / logo story
     14  Campaign moment
     15  First 100 steps
     16  First Taster form
     17  FAQ
     18  Contact
     19  Instagram band
     20  Footer
     21  Sticky mobile CTA
     22  Legal pages
     23  Larger screens
     24  Reduced motion / print
   ========================================================================== */

/* ── 01  DESIGN TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Surfaces */
  --ivory:      #F7F4EF;
  --ivory-lift: #FCFAF6;
  --ivory-sink: #EFEAE1;
  --ink:        #14110F;
  --ink-soft:   #1D1917;
  --ink-2:      #3A342E;
  /* --muted is tuned to clear WCAG AA (4.5:1) on the ivory background.
     --muted-light is ONLY safe on the dark ink surfaces. */
  --muted:      #6F675E;
  --muted-light:#A79E93;
  --line:       rgba(20, 17, 15, .13);
  --line-strong:rgba(20, 17, 15, .26);
  --line-light: rgba(247, 244, 239, .18);

  /* Product accents */
  --glow:        #E4823C;
  --glow-deep:   #A85218;   /* darkened so GLOW text clears AA on ivory */
  --glow-tint:   #FAEADB;
  --focus:       #7CA53A;
  --focus-deep:  #4F7420;
  --focus-tint:  #ECF2E0;
  --hydrate:     #D6426B;
  --hydrate-deep:#A32549;
  --hydrate-tint:#FAE3EA;

  /* Type */
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --urdu:  "Noto Naskh Arabic", "Segoe UI", serif;

  /* Rhythm */
  --shell:       1280px;
  --gutter:      clamp(1.25rem, 5vw, 3.5rem);
  --section-y:   clamp(4.25rem, 11vw, 8.5rem);
  --radius:      3px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* Per-product colour contexts. Set one of these classes on any wrapper and the
   package art, chips and accents inside inherit the right colour. */
.p-glow    { --p: var(--glow);    --p-deep: var(--glow-deep);    --p-tint: var(--glow-tint); }
.p-focus   { --p: var(--focus);   --p-deep: var(--focus-deep);   --p-tint: var(--focus-tint); }
.p-hydrate { --p: var(--hydrate); --p-deep: var(--hydrate-deep); --p-tint: var(--hydrate-tint); }


/* ── 02  RESET + BASE ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* offset so anchor targets clear the sticky header */
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;         /* belt and braces against accidental h-scroll */
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; }

button { font: inherit; color: inherit; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.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;
}

.skip-link {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -120%);
  z-index: 200; background: var(--ink); color: var(--ivory);
  padding: .7rem 1.2rem; text-decoration: none;
  font-size: .8125rem; letter-spacing: .1em; text-transform: uppercase;
}
.skip-link:focus { transform: translate(-50%, 0); }

/* Visible, on-brand focus ring everywhere */
:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 2px;
}
.section-ink :focus-visible,
.campaign :focus-visible,
.site-footer :focus-visible { outline-color: var(--ivory); }


/* ── 03  TYPOGRAPHY SCALE ──────────────────────────────────────────────── */
h1, h2, h3, h4 { margin: 0; font-weight: 400; }

.display-l, .display-m, .display-s, .hero-title {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.012em;
  line-height: 1.02;
  text-wrap: balance;
}

.hero-title  { font-size: clamp(2.85rem, 12.5vw, 6rem); }
.display-m   { font-size: clamp(2.1rem, 8vw, 4rem); line-height: 1.05; }
.display-s   { font-size: clamp(1.75rem, 6vw, 2.75rem); line-height: 1.1; }

.eyebrow {
  margin: 0 0 1.35rem;
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow-light { color: var(--muted-light); }
.eyebrow b { font-weight: 600; color: inherit; }

.sec-lede {
  margin: 1.5rem 0 0;
  max-width: 46ch;
  font-size: 1.0625rem;
  color: var(--ink-2);
  text-wrap: pretty;
}
.sec-lede b { font-weight: 600; color: var(--ink); }
.sec-lede em { font-style: italic; }

.inline-urdu, .hero-urdu, .hero-meaning-ur {
  font-family: var(--urdu);
  font-weight: 500;
  line-height: 1.9;            /* Naskh needs vertical room */
}


/* ── 04  BUTTONS + LINKS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  padding: 1.05rem 1.9rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease);
}
.btn-primary { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.btn-primary:hover { background: var(--ink-2); border-color: var(--ink-2); }

.btn-light { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.btn-light:hover { background: #fff; border-color: #fff; }

.btn-quiet {
  background: transparent; color: var(--ink);
  border-color: var(--line-strong);
}
.btn-quiet:hover { border-color: var(--ink); background: rgba(20,17,15,.04); }

.btn-block { width: 100%; }
.btn:active { transform: translateY(1px); }

.link-btn {
  background: none; border: 0; padding: 0;
  font-size: inherit; text-decoration: underline;
  text-underline-offset: 3px; cursor: pointer;
}


/* ── 05  LAYOUT HELPERS ────────────────────────────────────────────────── */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.narrow { max-width: 860px; }
.center { text-align: center; }

.section { padding-block: var(--section-y); }

.section-ink {
  background: var(--ink);
  color: var(--ivory);
}
.section-ink .sec-lede { color: rgba(247, 244, 239, .74); }
.section-ink .sec-lede b { color: var(--ivory); }

.sec-head { margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }


/* ── 06  REVEAL ANIMATION ──────────────────────────────────────────────── */
/* Only applied when JS is present, so a no-JS visitor sees everything. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js .reveal.in { opacity: 1; transform: none; }


/* ── 07  HEADER + NAVIGATION ───────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  transition: background-color .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.stuck {
  background: rgba(247, 244, 239, .92);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
.header-in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  display: inline-flex; align-items: center; gap: .6rem;
  text-decoration: none;
}
.brand-mark { width: 34px; height: auto; }
.brand-word {
  font-size: .9375rem; font-weight: 500;
  letter-spacing: .34em; text-transform: uppercase;
}

.nav-desktop { display: none; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: none; border: 1px solid var(--line-strong); border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle-bars { display: block; width: 17px; }
.nav-toggle-bars i {
  display: block; height: 1px; background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle-bars i:first-child { margin-bottom: 5px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:first-child { transform: translateY(3px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:last-child  { transform: translateY(-3px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 4.25rem 0 0; z-index: 99;
  background: var(--ivory);
  padding: 2.5rem var(--gutter) 3rem;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow-y: auto;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 2.75rem);
  text-decoration: none;
  padding: .55rem 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu-ig {
  margin-top: 2.5rem;
  font-size: .8125rem; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; color: var(--muted);
}
body.menu-open { overflow: hidden; }


/* ── 08  HERO ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-top: clamp(1.25rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 8vw, 5rem);
  background:
    radial-gradient(120% 80% at 50% 0%, var(--ivory-lift) 0%, var(--ivory) 62%);
}
/* Mobile order: headline → product cans → copy + CTA.
   Keeps KAASH, the products and the primary CTA inside the first viewport. */
.hero-in {
  display: grid;
  grid-template-areas: "head" "art" "tail";
  gap: clamp(1.1rem, 4vw, 2rem);
}
.hero-head { grid-area: head; }
.hero-art  { grid-area: art; }
.hero-tail { grid-area: tail; }

.hero-lockup { margin: 0 0 .85rem; }
.hero-urdu {
  margin: 0;
  font-size: clamp(1.9rem, 8vw, 3.4rem);
  line-height: 1.35;
  color: var(--ink);
}
.hero-signature {
  margin: .05rem 0 0;
  font-size: .625rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-title { margin: 0; }

.hero-meaning {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .55rem;
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: .875rem;
  color: var(--muted);
}
.hero-meaning-ur { font-size: 1.25rem; color: var(--ink); }
.hero-meaning-rom { font-style: italic; font-family: var(--serif); font-size: 1.125rem; color: var(--ink-2); }
.hero-meaning-def { letter-spacing: .02em; }

.hero-sub {
  margin: 0;
  max-width: 44ch;
  font-size: 1.0625rem;
  color: var(--ink-2);
  text-wrap: pretty;
}
.hero-sub b { font-weight: 600; color: var(--ink); letter-spacing: .04em; }

.hero-cta {
  display: flex; flex-wrap: wrap; gap: .65rem;
  margin-top: 1.35rem;
}
.hero-cta .btn { flex: 1 1 auto; min-width: 14rem; }

.hero-status {
  display: flex; align-items: center; gap: .55rem;
  margin: 1.35rem 0 0;
  font-size: .75rem; letter-spacing: .06em;
  color: var(--muted);
}
.hero-status .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--focus); flex: none;
}

/* Hero product group */
.hero-art {
  display: flex; align-items: flex-end; justify-content: center;
  padding-top: .25rem;
}
.hero-can { width: 30%; max-width: 190px; }
.hero-can:first-child { transform: translateX(16%) rotate(-4deg) scale(.88); z-index: 1; }
.hero-can:last-child  { transform: translateX(-16%) rotate(4deg) scale(.88); z-index: 1; }
.hero-can-lead { z-index: 2; width: 33%; max-width: 215px; }

.pkg { width: 100%; height: auto; overflow: visible; }
.pkg-name, .pkg-flavour, .pkg-note {
  text-anchor: middle;
  font-family: var(--sans);
  fill: #fff;
}
.pkg-name    { font-size: 21px; font-weight: 600; letter-spacing: 1.6px; }
.pkg-flavour { font-size: 9px;  font-weight: 500; letter-spacing: 1.5px; fill: rgba(255,255,255,.88); }
.pkg-flavour-sm { font-size: 7.5px; letter-spacing: 1px; }
.pkg-note    { font-size: 7px;  font-weight: 500; letter-spacing: 1.6px; fill: rgba(255,255,255,.72); }

/* Package colour wiring */
.p-glow, .p-focus, .p-hydrate,
.format-grid {
  --pkg: var(--p);
  --pkg-deep: var(--p-deep);
  --pkg-glass: color-mix(in srgb, var(--p) 26%, #fff);
}
/* Fallback for browsers without color-mix() */
@supports not (color: color-mix(in srgb, red 50%, blue)) {
  .p-glow    { --pkg-glass: #F6D6B8; }
  .p-focus   { --pkg-glass: #DCE8C4; }
  .p-hydrate { --pkg-glass: #F4C3D2; }
}


/* ── 09  STATEMENT STRIP ───────────────────────────────────────────────── */
.strip {
  border-block: 1px solid var(--line);
  background: var(--ivory-sink);
  overflow: hidden;
  padding-block: .9rem;
}
.strip-track {
  display: flex;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.strip-half {
  display: flex; align-items: center; gap: 2.25rem;
  padding-right: 2.25rem;
}
.strip-track span {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: .02em;
  color: var(--ink-2);
  white-space: nowrap;
}
.strip-half span:nth-child(even) { color: var(--muted); }   /* the separators */
@keyframes marquee { to { transform: translateX(-50%); } }


/* ── 10  PRODUCT RANGE ─────────────────────────────────────────────────── */
.range-grid { display: grid; gap: clamp(2.5rem, 7vw, 3rem); }

.prod {
  display: grid;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
.prod-art {
  display: grid; place-items: end center;
  background: var(--p-tint);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 6vw, 3rem) 1rem 0;
  margin-bottom: 1.5rem;
  min-height: 15rem;
  overflow: hidden;
}
.prod-art .pkg { width: min(50%, 170px); }

.prod-name {
  font-family: var(--sans);
  font-size: 1.5rem; font-weight: 600;
  letter-spacing: .12em;
}
.prod-flavour {
  margin: .3rem 0 0;
  font-family: var(--serif);
  font-size: 1.55rem; font-style: italic;
  color: var(--p-deep);
}
.prod-function {
  margin: 1.1rem 0 0;
  font-size: .6875rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
}
.prod-emotion {
  margin: .6rem 0 0;
  font-size: 1.0625rem;
  color: var(--ink-2);
  max-width: 30ch;
}

.chips {
  display: flex; flex-wrap: wrap; gap: .4rem;
  margin: 1.35rem 0 0; padding: 0; list-style: none;
}
.chips li {
  font-size: .6875rem; letter-spacing: .06em;
  padding: .32rem .65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  background: var(--ivory-lift);
}

.prod-status {
  margin: 1rem 0 0;
  font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
}

.prod-pick {
  position: relative;
  display: inline-flex; align-items: center; gap: .45rem;
  margin-top: 1rem;
  min-height: 44px;                 /* comfortable tap target */
  padding: .55rem 0;
  font-size: .8125rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none;
  color: var(--p-deep);
}
/* underline hugs the text rather than the padded hit area */
.prod-pick::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: .5rem;
  height: 1px; background: var(--p);
}
.prod-pick > span { transition: transform .25s var(--ease); }
.prod-pick:hover > span { transform: translateX(4px); }

.range-cta {
  margin-top: clamp(2.5rem, 7vw, 4rem);
  padding-top: clamp(2rem, 5vw, 2.5rem);
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: flex-start; gap: .85rem;
}
.range-cta .btn { min-width: 15rem; }
.range-cta-note {
  margin: 0;
  font-size: .75rem; letter-spacing: .04em;
  color: var(--muted);
}

.range-foot {
  margin: clamp(1.75rem, 4vw, 2.5rem) 0 0;
  max-width: 52ch;
  font-size: .8125rem;
  color: var(--muted);
}
.section-ink .range-foot { color: var(--muted-light); }


/* ── 11  STORY (dark) ──────────────────────────────────────────────────── */
.story .inline-urdu { font-size: .9em; }
.story-body { margin-top: clamp(2rem, 6vw, 3rem); max-width: 40ch; }
.story-body p { margin: 0 0 1.4rem; color: rgba(247,244,239,.72); font-size: 1.0625rem; }
.story-body p.lead {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 4.5vw, 1.75rem);
  line-height: 1.35;
  color: var(--ivory);
  margin-block: 2rem;
}
.story-body p.quiet {
  margin-bottom: 0;
  font-size: .9375rem;
  letter-spacing: .04em;
  color: var(--muted-light);
}


/* ── 12  FORMATS ───────────────────────────────────────────────────────── */
.format-grid { display: grid; gap: 1.25rem; }
.format { margin: 0; }
.format-art {
  display: grid; place-items: end center;
  background: var(--ivory-sink);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 5vw, 2.5rem) 1rem 0;
  min-height: 13.5rem;
}
.format-art .pkg { width: min(40%, 130px); }
.format figcaption {
  display: flex; flex-direction: column; gap: .2rem;
  padding-top: 1rem;
}
.format-name {
  font-size: .8125rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
}
.format-note { font-size: .8125rem; color: var(--muted); }


/* ── 13  CLIMB / LOGO STORY ────────────────────────────────────────────── */
.climb { background: var(--ivory-lift); }
.climb-mark {
  width: clamp(120px, 30vw, 190px);
  height: auto;
  margin: 0 auto clamp(2rem, 6vw, 3rem);
}
.climb-legend {
  display: grid; gap: 1.1rem;
  margin: clamp(2.5rem, 7vw, 3.5rem) 0 0; padding: 0;
  list-style: none;
  text-align: left;
}
.climb-legend li {
  display: grid; gap: .15rem;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
  font-size: .9375rem;
  color: var(--ink-2);
}
.climb-legend span {
  font-size: .625rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
}


/* ── 14  CAMPAIGN MOMENT ───────────────────────────────────────────────── */
.campaign {
  background: var(--ink);
  color: var(--ivory);
  padding-block: clamp(5rem, 16vw, 11rem);
  overflow: hidden;
}
.campaign-type {
  display: grid;
  font-family: var(--serif);
  line-height: .93;
  letter-spacing: -.02em;
  font-size: clamp(2.9rem, 15vw, 9rem);
}
.campaign-a { color: rgba(247, 244, 239, .45); }   /* keeps AA contrast for large text */
.campaign-b { color: var(--ivory); }
.campaign-sub {
  margin: clamp(2rem, 6vw, 3rem) 0 0;
  max-width: 34ch;
  font-size: 1.0625rem;
  color: rgba(247, 244, 239, .66);
}


/* ── 15  FIRST 100 STEPS ───────────────────────────────────────────────── */
.steps {
  display: grid; gap: 1.75rem;
  margin: 0; padding: 0; list-style: none;
  counter-reset: none;
}
.steps li {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.step-n {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: .5rem;
}
.steps h3 {
  font-size: 1.125rem; font-weight: 600;
  letter-spacing: .06em;
}
.steps p { margin: .4rem 0 0; color: var(--ink-2); font-size: .9375rem; max-width: 32ch; }


/* ── 16  FIRST TASTER FORM ─────────────────────────────────────────────── */
.signup-grid { display: grid; gap: clamp(2.5rem, 8vw, 4rem); }

.signup-lede {
  margin: 1.5rem 0 0; max-width: 42ch;
  font-size: 1.0625rem; color: rgba(247,244,239,.74);
}
.signup-points {
  display: grid; gap: .65rem;
  margin: 1.75rem 0 0; padding: 0; list-style: none;
}
.signup-points li {
  position: relative; padding-left: 1.4rem;
  font-size: .9375rem; color: rgba(247,244,239,.82);
}
.signup-points li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 8px; height: 1px; background: var(--ivory);
}
.signup-privacy {
  margin: 2rem 0 0; max-width: 44ch;
  font-size: .75rem; line-height: 1.6;
  color: var(--muted-light);
}

.signup-form-wrap {
  background: rgba(247, 244, 239, .05);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 5vw, 2.5rem);
}

/* No-JavaScript fallback: hide the form, show a route that actually works. */
.noscript-note { display: none; }
html:not(.js) .signup-form { display: none; }
html:not(.js) .noscript-note {
  display: block; margin: 0;
  font-size: .9375rem; line-height: 1.7;
  color: rgba(247, 244, 239, .82);
}
html:not(.js) .noscript-note a { color: var(--ivory); }

.field { margin-bottom: 1.35rem; border: 0; padding: 0; min-width: 0; }
.field-row { display: grid; gap: 1.35rem; }

.field label, .field legend {
  display: block; padding: 0;
  margin-bottom: .5rem;
  font-size: .6875rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(247,244,239,.78);
}
.req { color: var(--glow); }
.opt {
  font-size: .625rem; letter-spacing: .12em;
  color: var(--muted-light); text-transform: uppercase;
}

.field input {
  width: 100%;
  padding: .95rem 1rem;
  background: rgba(20, 17, 15, .35);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  color: var(--ivory);
  font-family: var(--sans); font-size: 1rem;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.field input::placeholder { color: rgba(247,244,239,.35); }
.field input:hover { border-color: rgba(247,244,239,.32); }
.field input:focus {
  border-color: var(--ivory);
  background: rgba(20, 17, 15, .55);
  outline: none;
}
.field input[aria-invalid="true"] { border-color: var(--hydrate); }

.err {
  margin: .45rem 0 0;
  font-size: .75rem; color: #F2A0B8;
}

.choice-hint {
  margin: -.25rem 0 .6rem;
  font-size: .75rem;
  color: var(--muted-light);
}

.chips-choice { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip-radio { position: relative; margin: 0; }
.chip-radio input {
  position: absolute; opacity: 0; width: 100%; height: 100%;
  margin: 0; cursor: pointer;
}
.chip-radio span {
  display: block;
  padding: .6rem 1rem;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  font-size: .8125rem; font-weight: 500; letter-spacing: .08em;
  color: rgba(247,244,239,.82);
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
/* Second line inside a product chip: the benefit, in the form's own words */
.chip-radio span small {
  display: block;
  margin-top: .1rem;
  font-size: .625rem; font-weight: 400; letter-spacing: .04em;
  text-transform: none;
  opacity: .72;
}
.chip-radio input:hover + span { border-color: rgba(247,244,239,.45); }
.chip-radio input:checked + span {
  background: var(--p, var(--ivory));
  border-color: var(--p, var(--ivory));
  color: var(--ink);
}
.chip-radio.p-glow input:checked + span,
.chip-radio.p-focus input:checked + span,
.chip-radio.p-hydrate input:checked + span { color: #fff; }
.chip-radio input:focus-visible + span { outline: 2px solid var(--ivory); outline-offset: 3px; }

#tasterSubmit { margin-top: .5rem; }
.form-note {
  margin: 1rem 0 0; min-height: 1.25rem;
  font-size: .8125rem; line-height: 1.6; color: var(--muted-light);
}
.form-note.is-error { color: #F2A0B8; }
.form-note a { color: var(--ivory); text-underline-offset: 3px; }

/* Quiet route to the real Google Form, in case the on-page submission ever
   fails or the visitor simply prefers it. */
.form-direct {
  margin: 1.25rem 0 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-light);
  font-size: .75rem;
  color: var(--muted-light);
}
.form-direct a {
  color: rgba(247, 244, 239, .92);
  text-decoration: underline; text-underline-offset: 3px;
}
.form-direct a:hover { color: var(--ivory); }

.signup-done { text-align: center; padding: clamp(1rem, 4vw, 2rem) 0; }
.signup-done[hidden] { display: none; }
.done-kicker {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 10vw, 4rem);
  line-height: 1;
}
.done-body { margin: 1rem 0 2rem; color: rgba(247,244,239,.74); }
.done-share { margin: 1.75rem 0 0; font-size: .875rem; color: var(--muted-light); }


/* ── 17  FAQ ───────────────────────────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.35rem 0;
  cursor: pointer;
  font-size: 1.0625rem; font-weight: 500;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  margin-left: auto;
  font-family: var(--serif); font-size: 1.5rem; line-height: 1;
  color: var(--muted);
  transition: transform .25s var(--ease);
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 0 1.5rem; max-width: 58ch; }
.faq-a p { margin: 0; color: var(--ink-2); }


/* ── 18  CONTACT ───────────────────────────────────────────────────────── */
.contact { background: var(--ivory-lift); }
.contact-grid { display: grid; gap: clamp(2.5rem, 7vw, 4rem); }
.contact-lede { margin: 1.25rem 0 0; max-width: 38ch; color: var(--ink-2); }
.mail-link {
  display: inline-block;
  margin-top: 1.75rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 5.5vw, 2rem);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: .2rem;
  transition: border-color .25s var(--ease);
}
.mail-link:hover { border-bottom-color: var(--ink); }

.contact-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 1rem; }
.contact-list li {
  display: grid; gap: .1rem;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
  font-size: .9375rem; color: var(--ink-2);
}
.contact-list span {
  font-size: .625rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
}


/* ── 19  INSTAGRAM BAND ────────────────────────────────────────────────── */
.ig-band { background: var(--ink); color: var(--ivory); }
.ig-band-link { display: block; text-decoration: none; }
.ig-band-inner {
  display: flex; align-items: center; gap: 1.1rem;
  padding-block: clamp(2rem, 6vw, 2.75rem);
}
.ig-band-text { display: grid; gap: .15rem; }
.ig-band-text b {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.35rem, 5vw, 1.85rem);
}
.ig-band-text span { font-size: .875rem; color: rgba(247,244,239,.62); }
.ig-band-arrow {
  margin-left: auto; font-size: 1.25rem;
  transition: transform .3s var(--ease);
}
.ig-band-link:hover .ig-band-arrow { transform: translateX(6px); }


/* ── 20  FOOTER ────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: var(--ivory);
  padding-block: clamp(3rem, 9vw, 5rem) 2rem;
  border-top: 1px solid var(--line-light);
}
.footer-top { display: grid; gap: clamp(2.5rem, 7vw, 4rem); }
.footer-brand img { width: clamp(150px, 42vw, 200px); height: auto; }
.footer-philosophy {
  margin: 1.5rem 0 0;
  font-family: var(--serif); font-style: italic;
  font-size: 1.125rem;
  color: rgba(247,244,239,.7);
}

.footer-nav { display: grid; gap: 2rem; }
.footer-nav h2 {
  font-size: .625rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: .9rem;
}
.footer-nav a {
  display: block;
  padding: .3rem 0;
  font-size: .9375rem;
  color: rgba(247,244,239,.82);
  text-decoration: none;
}
.footer-nav a:hover { color: var(--ivory); text-decoration: underline; text-underline-offset: 3px; }

.footer-bottom {
  margin-top: clamp(3rem, 8vw, 4.5rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-light);
  display: grid; gap: 1.25rem;
}
.footer-disclaimer {
  margin: 0; max-width: 62ch;
  font-size: .75rem; line-height: 1.6;
  color: var(--muted-light);
}
.footer-legal {
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin: 0;
  font-size: .75rem; letter-spacing: .06em;
  color: var(--muted-light);
}


/* ── 21  STICKY MOBILE CTA ─────────────────────────────────────────────── */
.sticky-cta {
  position: fixed; inset: auto 0 0; z-index: 90;
  padding: .75rem var(--gutter) calc(.75rem + env(safe-area-inset-bottom));
  background: rgba(247, 244, 239, .94);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transform: translateY(100%);
  transition: transform .35s var(--ease);
}
.sticky-cta.show { transform: none; }
.sticky-cta[hidden] { display: none; }


/* ── 22  LEGAL PAGES ───────────────────────────────────────────────────── */
.legal { padding-block: clamp(3rem, 9vw, 6rem); }
.legal h1 { font-family: var(--serif); font-size: clamp(2rem, 7vw, 3rem); margin-bottom: 1rem; }
.legal h2 {
  margin: 2.5rem 0 .75rem;
  font-size: 1.125rem; font-weight: 600; letter-spacing: .04em;
}
.legal p, .legal li { color: var(--ink-2); max-width: 68ch; }
.legal ul { padding-left: 1.2rem; }
.legal .updated { font-size: .8125rem; color: var(--muted); }
.legal-back {
  display: inline-block; margin-top: 3rem;
  font-size: .8125rem; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; border-bottom: 1px solid var(--line-strong); padding-bottom: .2rem;
}


/* ── 23  LARGER SCREENS ────────────────────────────────────────────────── */
/* Tablet portrait keeps the single-column hero, so the cans have to be reined
   in or the primary CTA is pushed below a 1024px-tall fold. */
@media (min-width: 40em) and (max-width: 59.99em) {
  .hero-can      { max-width: 132px; }
  .hero-can-lead { max-width: 152px; }
}

@media (min-width: 40em) {
  .field-row { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .format-grid { grid-template-columns: repeat(3, 1fr); }
  .climb-legend { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 2rem; }
  .contact-list { grid-template-columns: repeat(2, 1fr); gap: 1.25rem 2rem; }
  .footer-nav { grid-template-columns: repeat(3, 1fr); }
  .hero-cta .btn { flex: 0 1 auto; }
}

@media (min-width: 60em) {
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
  .sticky-cta { display: none !important; }

  .nav-desktop {
    display: flex; align-items: center; gap: 2.25rem;
  }
  .nav-desktop a {
    position: relative;
    display: inline-flex; align-items: center;
    min-height: 44px;               /* tap target, invisible to the eye */
    font-size: .75rem; font-weight: 500;
    letter-spacing: .16em; text-transform: uppercase;
    text-decoration: none;
  }
  .nav-desktop a:not(.nav-ig)::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 12px;
    height: 1px; background: var(--ink);
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s var(--ease);
  }
  .nav-desktop a:not(.nav-ig):hover::after { transform: scaleX(1); }
  .nav-ig { color: var(--ink); justify-content: center; min-width: 44px; }
  .nav-ig:hover { opacity: .6; }

  /* Desktop: copy stacked in the left column, products fill the right */
  .hero-in {
    grid-template-columns: 1.02fr .98fr;
    grid-template-areas:
      "head art"
      "tail art";
    align-content: center;
    align-items: center;
    column-gap: clamp(2rem, 5vw, 4.5rem);
    row-gap: 1.75rem;
    min-height: min(80vh, 800px);
  }
  .hero-head { align-self: end; }
  .hero-tail { align-self: start; }
  .hero-art { padding-top: 0; align-self: center; }
  .hero-can { max-width: 200px; }
  .hero-can-lead { max-width: 240px; }
  .hero-lockup { margin-bottom: 1.5rem; }

  .range-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .prod-art { min-height: 23rem; }

  .signup-grid { grid-template-columns: 1fr 1.05fr; gap: clamp(3rem, 6vw, 5rem); align-items: start; }
  .contact-grid { grid-template-columns: 1.1fr .9fr; align-items: start; }
  .footer-top { grid-template-columns: .9fr 1.1fr; align-items: start; }

  .climb-legend { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 80em) {
  .prod-art .pkg { width: min(60%, 190px); }
}


/* ── 24  REDUCED MOTION / PRINT ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .strip-track { animation: none; }
}

@media print {
  .site-header, .mobile-menu, .sticky-cta, .strip, .ig-band { display: none !important; }
  body { background: #fff; color: #000; }
  .section-ink, .campaign, .site-footer { background: #fff !important; color: #000 !important; }
}
