/* ═══════════════════════════════════════════════════════════════════════════
   Jhandiwala Farms — styles.css
   Fraunces (display) + Karla (text). Palette sampled from the supplied logo.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── self-hosted type: Fraunces (variable, optical size) + Karla (variable) ──
   Latin subset only. Files come from the Fontsource packages; licences sit
   beside them in assets/fonts/. ─────────────────────────────────────────── */
@font-face {
  font-family: Fraunces;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/fraunces-latin-var.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Fraunces;
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/fraunces-latin-var-italic.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Karla;
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/karla-latin-var.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── tokens ─────────────────────────────────────────────────────────────── */
:root {
  --ink:        #0c1a0f;
  --forest:     #123a1c;
  --forest-dk:  #0d2a14;
  --leaf:       #46811a;
  --leaf-dk:    #35650f;
  --leaf-pale:  #eaf0dd;
  --jamun:      #3a0b52;
  --jamun-lt:   #6d2490;
  --plum:       #1a0327;
  --cream:      #f2efe2;
  --paper:      #faf8f0;
  --pale:       #eef1e3;
  --line:       rgba(18, 58, 28, .14);
  --line-lt:    rgba(255, 255, 255, .18);
  --muted:      #4a5a4c;
  --muted-lt:   rgba(255, 255, 255, .74);

  --accent:     var(--leaf);

  --wrap:       1280px;
  --pad:        clamp(1.15rem, 4vw, 2.5rem);
  --pad-nav:    clamp(.75rem, 2.1vw, 1.6rem);
  --navh:       clamp(58px, 6.2vw, 78px);
  --tail:       26svh;

  --sp-sec:     clamp(4.5rem, 9vw, 9rem);
  --r:          14px;

  --ease:       cubic-bezier(.22, .61, .36, 1);
  --ease-out:   cubic-bezier(.16, .84, .44, 1);
}

/* ── reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--navh) + 12px);
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Karla, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(.97rem, .35vw + .88rem, 1.06rem);
  font-weight: 400;
  line-height: 1.66;
  letter-spacing: .002em;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, picture, video { display: block; max-width: 100%; }
img { height: auto; }
ul, ol { list-style: none; padding: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

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

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

/* ── type ─────────────────────────────────────────────────────────────────
   One system, two families. Fraunces carries every display size; Karla
   carries every piece of interface and body text. The rules below are the
   only place sizes, weights and tracking are set — sections inherit from
   here rather than redefining their own. Tracking tightens as the type
   grows, which is what keeps the large headings from reading loose. */
h1, h2, h3, h4, .fr {
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.022em;
  text-wrap: balance;
  font-variation-settings: "SOFT" 0, "WONK" 0;
}
h1 { font-size: clamp(2.4rem, 6.1vw, 5.1rem); letter-spacing: -.032em; line-height: 1.02; }
h2 { font-size: clamp(1.95rem, 4.3vw, 3.5rem); letter-spacing: -.026em; }
h3 { font-size: clamp(1.28rem, 2.1vw, 1.72rem); line-height: 1.18; letter-spacing: -.018em; }
h4 { font-size: 1rem; letter-spacing: -.005em; }
h1 em, h2 em, h3 em { font-style: italic; font-weight: 300; letter-spacing: -.012em; }

p { text-wrap: pretty; max-width: 68ch; }
.lead {
  font-size: clamp(1.04rem, .55vw + .92rem, 1.26rem);
  line-height: 1.58; letter-spacing: -.006em; max-width: 46ch;
}

.eyebrow {
  display: block;
  font-size: clamp(.68rem, .9vw, .77rem);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--leaf-dk);
  margin-bottom: clamp(.9rem, 1.6vw, 1.25rem);
}
.eyebrow--light { color: #bfe08a; }

.note {
  max-width: 62ch;
  color: var(--muted);
  font-size: .97rem;
  margin-top: clamp(1.8rem, 3vw, 2.6rem);
}

.wrap { width: min(var(--wrap), 100% - var(--pad) * 2); margin-inline: auto; }

/* ── buttons ────────────────────────────────────────────────────────────── */
.btn {
  --bh: clamp(2.9rem, 3.4vw, 3.35rem);
  display: inline-flex; align-items: center; gap: .6rem;
  min-height: var(--bh); padding: 0 clamp(1.1rem, 2vw, 1.6rem);
  border-radius: 999px;
  font-weight: 600; font-size: clamp(.86rem, .9vw, .95rem);
  letter-spacing: .015em; white-space: nowrap;
  transition: background .28s var(--ease), color .28s var(--ease),
              border-color .28s var(--ease), transform .28s var(--ease);
}
.btn svg { width: 1.05em; height: 1.05em; flex: none; transition: transform .3s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }
.btn--sm { --bh: clamp(2.5rem, 2.9vw, 2.85rem); font-size: .84rem; }

.btn--solid { background: var(--leaf); color: #fff; }
.btn--solid:hover { background: var(--leaf-dk); }

.btn--light { background: var(--paper); color: var(--forest-dk); }
.btn--light:hover { background: #fff; }

.btn--ghost { border: 1px solid var(--line-lt); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .4); }
.btn--ghost svg:not(:only-child) { transform: none; }
.btn--ghost:hover svg { transform: none; }

.btn--line { border: 1px solid var(--line); color: var(--forest-dk); }
.btn--line:hover { border-color: var(--leaf); color: var(--leaf-dk); }
.btn--line:hover svg { transform: none; }

.btn-row {
  display: flex; flex-wrap: wrap; gap: clamp(.6rem, 1.2vw, .9rem);
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
}

/* ── ornament + tick ────────────────────────────────────────────────────── */
/* ── shared circular icon ───────────────────────────────────────────────
   One implementation for every icon-in-a-circle on the site. The svg is a
   grid item centred on both axes; sizing it in em keeps the glyph optically
   the same weight whatever the circle size. */
.ico {
  --ico-size: clamp(44px, 4.4vw, 52px);   /* one circle size across the site */
  flex: none; display: inline-grid; place-items: center;
  inline-size: var(--ico, var(--ico-size)); block-size: var(--ico, var(--ico-size));
  aspect-ratio: 1; border-radius: 50%; line-height: 0;
  font-size: var(--ico, var(--ico-size));
}
.ico > svg {
  display: block; inline-size: .46em; block-size: .46em;
  fill: none; overflow: visible;
}
.ico--solid { background: var(--leaf); color: #fff; }
.ico--soft  { background: rgba(70, 129, 26, .12); color: var(--leaf-dk); }
.ico--line  { border: 1px solid var(--line); color: var(--forest-dk); }

.orn { display: flex; align-items: center; justify-content: center; gap: .7rem; margin-top: 1.1rem; }
.orn i { display: block; width: clamp(38px, 6vw, 74px); height: 1px; background: var(--line); }
.orn svg { width: 18px; height: 18px; color: var(--leaf); }

.tick { display: block; width: 54px; height: 2px; background: var(--accent); margin-top: 1.8rem; }

/* ── scroll rail ────────────────────────────────────────────────────────── */
.rail {
  position: fixed; inset: 0 auto 0 0; width: 2px; z-index: 90;
  background: rgba(0, 0, 0, .06); pointer-events: none;
}
.rail__fill {
  display: block; width: 100%; height: 0;
  background: var(--accent); transition: background .6s var(--ease);
}
@media (max-width: 899px) { .rail { width: 2px; background: transparent; } }

/* ── header ─────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(1.05) blur(6px);
  transition: padding .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.nav__in {
  /* wider than the editorial column so the logo sits closer to the edge and
     the three zones — logo / nav / enquire — balance across the header */
  width: min(1800px, 100% - var(--pad-nav) * 2); margin-inline: auto;
  min-height: var(--navh);
  display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.6rem);
  padding-block: .4rem;
}
.nav.is-stuck {
  background: rgba(250, 248, 240, .88);
  box-shadow: 0 1px 14px rgba(12, 26, 15, .07);
}
@supports not (backdrop-filter: blur(6px)) { .nav.is-stuck { background: var(--paper); } }

.brand { display: flex; align-items: center; gap: .6rem; margin-right: auto; flex: none; }
.nav__nav { margin-inline: auto; }
.brand picture { display: block; flex: none; }
.brand img {
  flex: none; width: auto; height: clamp(34px, 4.4vw, 46px);
  transition: height .3s var(--ease);
}
.nav.is-stuck .brand picture { display: block; flex: none; }
.brand img { height: clamp(30px, 3.8vw, 40px); }
.brand__text { display: grid; line-height: 1; }
.brand__name {
  font-family: Fraunces, Georgia, serif; font-weight: 500;
  font-size: clamp(1.05rem, 1.8vw, 1.42rem); color: var(--forest-dk);
  letter-spacing: -.01em;
}
.brand__sub {
  font-size: clamp(.56rem, .8vw, .68rem); font-weight: 600;
  letter-spacing: .42em; text-transform: uppercase; color: var(--leaf);
  margin-top: .28rem;
}

.nav__nav { display: none; }
.nav__links { display: flex; align-items: center; gap: clamp(.9rem, 2.1vw, 2.35rem); }
.nav__links a {
  position: relative; display: block; padding: .4rem 0;
  font-size: clamp(.76rem, .82vw, .85rem); font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase; color: #2c3d2f;
  white-space: nowrap;          /* ABOUT US / CONTACT US stay on one line */
  transition: color .25s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--leaf); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav__links a:hover { color: var(--leaf-dk); }
.nav__links a:hover::after, .nav__links a.is-here::after { transform: scaleX(1); }
.nav__links a.is-here { color: var(--leaf-dk); }

.nav__act { display: flex; align-items: center; gap: .6rem; flex: none; }
.nav__act .btn--solid { display: none; }

.burger {
  width: 46px; height: 42px; display: grid; place-content: center; gap: 6px;
  border: 1px solid var(--line); border-radius: 10px;
}
.burger span:not(.vh) {
  display: block; width: 20px; height: 1.6px; background: var(--forest-dk);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.8px) rotate(-45deg); }

/* ── drawer ─────────────────────────────────────────────────────────────── */
.drawer {
  position: fixed; inset: var(--navh) 0 auto 0; z-index: 99;
  background: var(--paper); border-bottom: 1px solid var(--line);
  padding: clamp(1.2rem, 4vw, 2rem) var(--pad) clamp(1.6rem, 5vw, 2.4rem);
  max-height: calc(100dvh - var(--navh)); overflow-y: auto;
  transform: translateY(-10px); opacity: 0;
  transition: transform .32s var(--ease-out), opacity .25s var(--ease);
}
.drawer[hidden] { display: none; }
.drawer.is-open { transform: none; opacity: 1; }
.drawer li + li { border-top: 1px solid var(--line); }
.drawer a {
  display: block; padding: .78rem 0;
  font-family: Fraunces, Georgia, serif; font-size: 1.35rem; color: var(--forest-dk);
}
.drawer__foot { margin-top: 1.4rem; display: grid; gap: .5rem; justify-items: start; }
.drawer__foot a:not(.btn) { font-family: Karla, sans-serif; font-size: .95rem; color: var(--muted); padding: .2rem 0; }
.drawer__foot .btn { color: #fff; margin-bottom: .4rem; }

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  background: var(--plum);
  isolation: isolate;
  overflow-x: clip;
}
/* real in-flow block, not padding: the sticky hero image needs travel inside
   the section's content box, and padding would give it none */
.hero__tail { height: var(--tail); }
.hero__media { position: sticky; top: 0; height: 100svh; overflow: hidden; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 74% 50%;
  transform: translate3d(0, var(--hy, 0px), 0) scale(1.08);
  will-change: transform;
}
/* One overlay recipe for every full-bleed photographic section: a directional
   wash on the text side plus a light top veil for the header. Tuned so the
   photograph reads clearly and the text still clears WCAG AA. */
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(96deg, rgba(15, 2, 22, .62) 0%, rgba(15, 2, 22, .46) 30%,
                    rgba(15, 2, 22, .22) 54%, rgba(15, 2, 22, .04) 76%, rgba(15, 2, 22, 0) 92%),
    linear-gradient(180deg, rgba(15, 2, 22, .28) 0%, rgba(15, 2, 22, 0) 24%);
}
.hero__flow {
  margin-top: -100svh; position: relative; z-index: 1;
  min-height: 100svh; display: flex; align-items: center;
  padding-block: calc(var(--navh) + 2rem) clamp(4rem, 12svh, 8rem);
}
.hero__inner { max-width: 40rem; color: #fff; }
.hero h1 { color: #fff; }
.hero h1 em { color: #9fd15f; font-style: normal; font-weight: 400; }
.hero .lead { color: rgba(255, 255, 255, .84); margin-top: clamp(1rem, 2vw, 1.5rem); max-width: 34rem; }

.badges {
  display: flex; flex-wrap: wrap; gap: clamp(1rem, 2vw, 1.7rem);
  margin-top: clamp(2rem, 4.5vw, 3.2rem);
}
.badges li {
  display: flex; align-items: flex-start; gap: .7rem;
  flex: 1 1 11rem; min-width: 10.5rem; max-width: 15rem;
}

.badges span span, .badges li > span:last-child {
  font-size: clamp(.76rem, .85vw, .85rem); line-height: 1.42;
  color: rgba(255, 255, 255, .72);
}
.badges strong {
  display: block; font-size: clamp(.92rem, 1vw, 1.02rem); font-weight: 700;
  color: #fff; margin-bottom: .18rem; letter-spacing: .005em;
}

.hero .wave {
  position: absolute; left: 0; width: 100%; bottom: calc(var(--tail) - 1px);
  height: clamp(34px, 5.4vw, 92px); z-index: 2; pointer-events: none;
}
.hero .wave path { fill: var(--paper); }

.cue {
  position: absolute; left: 50%;
  bottom: calc(var(--tail) + clamp(62px, 7vw, 116px));
  transform: translateX(-50%); z-index: 3;
  display: flex; align-items: center; gap: .55rem;
  font-size: .66rem; font-weight: 700; letter-spacing: .28em;
  text-transform: uppercase; color: rgba(255, 255, 255, .62);
}
.cue i {
  width: 1px; height: 26px; background: rgba(255, 255, 255, .4); position: relative; overflow: hidden;
}
.cue i::after {
  content: ""; position: absolute; inset: 0; background: #fff;
  animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue { 0% { transform: translateY(-100%); } 60%, 100% { transform: translateY(100%); } }

/* ═══════════════ BANDS ═══════════════ */
.band { position: relative; padding-block: var(--sp-sec); }
.band--paper { background: var(--paper); }
.band--cream { background: var(--cream); }
.band--tight { padding-top: 0; }

#products { margin-top: calc(var(--tail) * -1); z-index: 2; }

/* ── section head with rail controls ────────────────────────────────────── */
.rowhead {
  display: grid; grid-template-columns: 1fr; gap: 1.4rem;
  align-items: end; text-align: center;
}
.rowhead__mid { grid-column: 1; }
.rowhead__lead {
  max-width: 54ch; margin: clamp(1rem, 2vw, 1.4rem) auto 0;
  color: var(--muted); font-size: clamp(.95rem, .5vw + .86rem, 1.06rem);
}
.railctl { display: flex; gap: .6rem; justify-content: center; }
.railctl__b {
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), opacity .25s var(--ease);
}
.railctl__b > svg { inline-size: .4em; block-size: .4em; }
.railctl__b:first-child svg { transform: rotate(180deg); }
.railctl__b--on { background: var(--leaf); border-color: var(--leaf); color: #fff; }
.railctl__b:hover { background: var(--leaf-dk); border-color: var(--leaf-dk); color: #fff; }
.railctl__b[disabled] { opacity: .34; cursor: default; background: none; color: var(--forest-dk); border-color: var(--line); }

/* ── product rail ───────────────────────────────────────────────────────── */
.railwrap { margin-top: clamp(2rem, 4vw, 3.2rem); }
.prail {
  display: flex; gap: clamp(.7rem, 1.3vw, 1.15rem);
  /* scroll-behavior stays auto: the loop writes scrollLeft every frame, and a
     CSS smooth behaviour would animate each of those writes. The arrow and
     keyboard nudges pass behavior:'smooth' explicitly instead. */
  overflow-x: auto; overscroll-behavior-x: contain;
  padding-inline: max(var(--pad), (100% - var(--wrap)) / 2);
  scroll-padding-inline: max(var(--pad), (100% - var(--wrap)) / 2);
  /* headroom for the arc: cards at the ends sit lower and the middle one
     scales up, and neither may be clipped */
  padding-block: clamp(1.6rem, 3vw, 2.6rem) clamp(3.5rem, 6vw, 5.5rem);
  scrollbar-width: none;
}
.prail::-webkit-scrollbar { display: none; }
.prail.is-drag { cursor: grabbing; }

.pcard {
  flex: 0 0 auto; width: clamp(158px, 62vw, 200px);
  will-change: transform;            /* the arc is written every frame */
  transform-origin: 50% 30%;
}

/* ── product card — organic arched silhouette ────────────────────────────
   Geometry traced from the supplied label artwork: 924 x 1504 outer box, a
   top arch about a fifth of the height, a shallow bottom curve, and the
   coloured badge across the bottom sixth. Every card uses this one rule, so
   all fourteen are identical whatever the photograph inside them. */
.pcard__a {
  display: flex; flex-direction: column;
  aspect-ratio: 924 / 1504;
  background: #f6f2e4;
  border: 1px solid rgba(18, 58, 28, .13);
  border-radius: 50% 50% 50% 50% / 20% 20% 5.3% 5.3%;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(12, 26, 15, .07);
  transition: border-color .3s var(--ease), box-shadow .38s var(--ease);
}
.pcard__a:hover { border-color: rgba(18, 58, 28, .26); box-shadow: 0 16px 34px rgba(12, 26, 15, .13); }

/* the arch, carrying the house mark as the label does */
.pcard__cap {
  flex: 0 0 15%; display: grid; place-items: end center;
  padding-bottom: .25rem;
}
.pcard__cap picture { display: block; }
.pcard__cap img { width: auto; height: clamp(20px, 2.1vw, 30px); opacity: .92; }

.pcard__img {
  flex: 1 1 auto; display: grid; place-items: center; overflow: hidden;
  padding: 0 8%;
}
.pcard__img img {
  /* the whole product, always: contain never crops, and the box is sized so
     3:2 photography fills it edge to edge with no strip above or below */
  width: 100%; height: 100%; object-fit: contain; object-position: center;
  /* the supplied photography sits on white or pale wood; multiplying against
     the card's cream drops those backgrounds into the card instead of leaving
     a white rectangle floating on it */
  mix-blend-mode: multiply;
  border-radius: 10px;   /* the few photographs shot on wood read as a tile,
                            not a hard rectangle, against the cream */
  transition: transform .7s var(--ease-out);
}
.pcard__a:hover .pcard__img img { transform: scale(1.04); }

.pcard__body {
  flex: 0 0 auto; min-height: 3.1em;
  display: grid; place-items: center; text-align: center;
  padding: .45rem clamp(.6rem, 1.4vw, 1rem) .7rem;
}
.pcard__name {
  font-family: Fraunces, Georgia, serif; font-weight: 500;
  font-size: clamp(.95rem, 1.12vw, 1.12rem); line-height: 1.16; color: var(--ink);
  letter-spacing: -.018em; text-wrap: balance;
}

/* the badge curves up into the card, as the label's purple panel does */
.pcard__tag {
  flex: 0 0 16%;
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  color: #fff; font-size: clamp(.66rem, .78vw, .74rem); font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  /* the dome comes from the radius alone — overlapping the body with a
     negative margin collided with the product name at tablet sizes */
  border-radius: 50% 50% 0 0 / 22px 22px 0 0;
}
.pcard__tag svg { width: 15px; height: 15px; }
.pcard__tag--frozen { background: var(--jamun-lt); }
.pcard__tag--pulp   { background: var(--leaf); }
.pcard__tag--iqf    { background: var(--leaf); }
.pcard__tag--dry    { background: var(--jamun); }
.pcard__tag--leaf   { background: var(--leaf-dk); }

/* ── quality strip ──────────────────────────────────────────────────────── */
.railhint {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: .55rem .85rem; margin-top: clamp(.4rem, 1vw, .9rem);
  font-size: clamp(.68rem, .8vw, .76rem); font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: rgba(37, 50, 39, .5);
}
.railhint i { display: block; width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: .6; }

#products { overflow: hidden; }
.leafmark {
  position: absolute; pointer-events: none; color: rgba(18, 58, 28, .07);
  inline-size: min(34vw, 300px); block-size: auto;
}
.leafmark--l { left: -4%; top: 16%; transform: rotate(-18deg); }
.leafmark--r { right: -5%; bottom: 12%; transform: rotate(158deg); }
@media (max-width: 899px) { .leafmark { inline-size: min(44vw, 220px); opacity: .8; } }

.striphead { text-align: center; margin-bottom: clamp(1.8rem, 3.4vw, 2.8rem); }
.striphead h2 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); }

.strip {
  background: var(--pale); border: 1px solid var(--line); border-radius: 18px;
  padding: clamp(1.4rem, 3vw, 2.6rem) clamp(1rem, 2.4vw, 2rem);
  position: relative; overflow: hidden;
}
.strip__list { display: grid; gap: clamp(1.3rem, 2.4vw, 1.8rem); }
.strip__list li { display: flex; align-items: flex-start; gap: .9rem; }

.strip h3 {
  font-size: clamp(1.02rem, 1.25vw, 1.2rem); line-height: 1.2; color: var(--ink);
  font-weight: 500; margin-bottom: .3rem;
}
.strip h3 em { font-style: normal; color: var(--leaf-dk); font-variant-numeric: tabular-nums; margin-right: .3em; }
.strip p { font-size: .82rem; line-height: 1.45; color: var(--muted); }

/* ── brand introduction ─────────────────────────────────────────────────── */
.intro { display: grid; gap: clamp(2.2rem, 5vw, 4rem); align-items: center; }
.intro__text p { margin-top: 1.1rem; max-width: 44ch; color: #253227; }
.intro__logo { display: block; width: min(100%, 380px); justify-self: center; }
.intro__logo img { width: 100%; height: auto; }

.facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.1rem 1.6rem; margin-top: clamp(1.8rem, 3vw, 2.6rem);
  border-top: 1px solid var(--line); padding-top: clamp(1.4rem, 2.4vw, 2rem);
}
.facts dt {
  font-size: .66rem; font-weight: 700; letter-spacing: .17em;
  text-transform: uppercase; color: var(--leaf-dk); margin-bottom: .3rem;
}
.facts dd { font-size: .95rem; line-height: 1.4; }

/* ═══════════════ PINNED PHOTOGRAPHIC SECTIONS ═══════════════ */
.pin { position: relative; background: var(--ink); isolation: isolate; overflow-x: clip; }
.pin__media { position: sticky; top: 0; height: 100svh; overflow: hidden; z-index: 0; }
.pin__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: translate3d(0, var(--py, 0px), 0) scale(1.06);
  will-change: transform;
}
.pin__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(96deg, rgba(8, 16, 10, .5) 0%, rgba(8, 16, 10, .32) 34%,
                    rgba(8, 16, 10, .12) 62%, rgba(8, 16, 10, 0) 88%),
    linear-gradient(180deg, rgba(8, 16, 10, .24) 0%, rgba(8, 16, 10, 0) 28%);
}
.pin__scrim--r {
  background:
    linear-gradient(264deg, rgba(18, 2, 26, .6) 0%, rgba(18, 2, 26, .42) 34%,
                    rgba(18, 2, 26, .14) 62%, rgba(18, 2, 26, 0) 88%),
    linear-gradient(180deg, rgba(18, 2, 26, .24) 0%, rgba(18, 2, 26, 0) 28%);
}
.pin__flow { margin-top: -100svh; position: relative; z-index: 1; }
.panel {
  position: relative;
  min-height: 100svh; display: flex; align-items: center;
  padding-block: clamp(3rem, 10svh, 7rem);
}
/* local plate so panel text keeps contrast wherever the photograph is bright */
.panel::before {
  content: ""; position: absolute; z-index: -1;
  inset: -6% -32% -6% -34%;
  background: radial-gradient(66% 60% at 27% 50%,
              rgba(6, 12, 8, .46) 0%, rgba(6, 12, 8, .36) 36%,
              rgba(6, 12, 8, .16) 60%, rgba(6, 12, 8, .08) 76%, rgba(6, 12, 8, 0) 88%);
  pointer-events: none;
}
.panel--right { justify-content: flex-end; }
.panel--right::before {
  inset: -6% -34% -6% -32%;
  background: radial-gradient(66% 60% at 73% 50%,
              rgba(14, 3, 20, .46) 0%, rgba(14, 3, 20, .36) 36%,
              rgba(14, 3, 20, .2) 60%, rgba(14, 3, 20, .12) 76%, rgba(14, 3, 20, 0) 88%);
}
/* one modifier, for panels whose photograph carries a bright subject (the
   signboard) directly behind the text — same recipe, a little more weight */
.panel--bright::before {
  background: radial-gradient(66% 60% at 73% 50%,
              rgba(6, 12, 8, .56) 0%, rgba(6, 12, 8, .44) 36%,
              rgba(6, 12, 8, .26) 60%, rgba(6, 12, 8, .14) 76%, rgba(6, 12, 8, 0) 88%);
}

.panel__in { max-width: 34rem; color: #fff; }
.panel__in h2, .panel__in h3 { color: #fff; }
.panel__in p { margin-top: 1.1rem; color: rgba(255, 255, 255, .82); }

/* ═══════════════ THE JAMUN RUN ═══════════════ */
.run {
  position: relative; background: var(--jamun);
  background: linear-gradient(178deg, #1d0429 0%, #2c0740 46%, #1a0325 100%);
  padding-block: var(--sp-sec);
  color: #fff;
}
.run > .snow { z-index: 0; }
.run .wrap { position: relative; z-index: 1; }
/* stage 07: the section cools and the frame picks up a frost rim */
.run.is-freezing { background-image: linear-gradient(178deg, #16062b 0%, #1d1046 46%, #120a24 100%); }
.run .run__frame, .run { transition: background-image 1.2s var(--ease), box-shadow 1.2s var(--ease); }
.run.is-freezing .run__frame { box-shadow: 0 24px 60px rgba(0,0,0,.34), 0 0 0 1px rgba(159,220,245,.35), 0 0 46px rgba(126,208,240,.22); }

.run__head { max-width: 46rem; }
.run__head h2 { color: #fff; }
.run__head p { margin-top: 1.1rem; color: rgba(255, 255, 255, .76); max-width: 40rem; }
.run__grid { margin-top: clamp(2.4rem, 5vw, 4rem); display: grid; gap: clamp(1.6rem, 3vw, 3rem); }

.run__stage { display: none; }
.run__frame {
  position: sticky; top: calc(var(--navh) + var(--run-head-h, 0px) + 3vh);
  aspect-ratio: 4 / 3; border-radius: 18px; overflow: hidden;
  background: #14021d; box-shadow: 0 24px 60px rgba(0, 0, 0, .34);
}
.run__shot { position: absolute; inset: 0; opacity: 0; transition: opacity .85s var(--ease); }
.run__shot img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); }
.run__shot.is-on { opacity: 1; }
.run__prog {
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: rgba(255, 255, 255, .18);
}
/* typographic frame — used for a stage that has no photograph yet; same
   plate, same rhythm, so the sequence still reads as one production story */
.run__shot--plate {
  display: grid; place-items: center; padding: clamp(1.5rem, 4vw, 3rem);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(146, 74, 186, .22), rgba(20, 2, 29, 0) 70%),
    linear-gradient(168deg, #24063a 0%, #180226 100%);
}
.run__plate { display: grid; justify-items: center; text-align: center; max-width: 26rem; }
.run__plate-num {
  font-family: Fraunces, Georgia, serif; font-weight: 300;
  font-size: clamp(3.4rem, 8vw, 6.5rem); line-height: .9; color: #cfa0ea;
  letter-spacing: -.03em;
}
.run__plate-title {
  font-family: Fraunces, Georgia, serif; font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  color: #fff; margin-top: .7rem; letter-spacing: -.015em;
}
.run__plate-leaf {
  inline-size: 26px; block-size: 26px; margin-top: 1.7rem;
  color: rgba(207, 160, 234, .62); fill: none;
}
.run__plate::after {
  content: ""; display: block; width: 46px; height: 1px;
  background: rgba(207, 160, 234, .35); margin-top: 1.4rem;
}

.run__prog i {
  display: block; height: 100%; width: 20%; background: #cfa0ea;
  transition: width .6s var(--ease);
}

.run__steps { display: grid; gap: clamp(1rem, 2vw, 1.4rem); counter-reset: s; }
.run__step {
  border-top: 1px solid rgba(255, 255, 255, .16);
  padding-top: clamp(1.1rem, 2vw, 1.5rem);
}
.run__mob { margin-bottom: 1.1rem; border-radius: 12px; overflow: hidden; }
.run__mob img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.run__num {
  display: block; font-family: Fraunces, Georgia, serif; font-size: .95rem;
  letter-spacing: .1em; color: #cfa0ea; margin-bottom: .35rem;
}
.run__step h3 { color: #fff; }
.run__step p { margin-top: .5rem; color: rgba(255, 255, 255, .74); max-width: 34ch; }

/* ── sustainability ─────────────────────────────────────────────────────── */
.sust { overflow: hidden; }
.sust__leaf {
  position: absolute; right: -3%; top: 8%; width: min(46vw, 460px);
  color: rgba(18, 58, 28, .09); pointer-events: none;
}
.sust__in { position: relative; }
.sust__cols {
  display: grid; gap: clamp(1rem, 2.4vw, 2.4rem);
  margin-top: clamp(1.4rem, 2.6vw, 2rem); max-width: 68rem;
}
.sust__cols p { color: #253227; max-width: 48ch; }
.sust__list {
  display: grid; gap: clamp(1.4rem, 3vw, 2.4rem);
  margin-top: clamp(2.6rem, 5vw, 4rem);
  border-top: 1px solid var(--line); padding-top: clamp(1.8rem, 3vw, 2.6rem);
}
.sust__list h3 { font-size: clamp(1.08rem, 1.5vw, 1.32rem); }
.sust__list p { margin-top: .5rem; color: var(--muted); font-size: .95rem; max-width: 34ch; }

/* ── contact ────────────────────────────────────────────────────────────── */
.contact {
  position: relative; background: var(--forest); color: #fff;
  padding-block: var(--sp-sec);
}
.contact h2 { color: #fff; }
.contact h2 em { color: #a9d977; }
.contact .lead { color: rgba(255, 255, 255, .8); margin-top: 1.2rem; max-width: 40ch; }
.contact__grid { display: grid; gap: clamp(2.4rem, 5vw, 4.5rem); }

.ask {
  margin-top: clamp(2.4rem, 4vw, 3.4rem); border-top: 1px solid var(--line-lt);
  padding-top: clamp(1.6rem, 3vw, 2.2rem);
}
.ask h3 { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: #fff; }
.ask ol { margin-top: 1rem; display: grid; gap: .55rem; }
.ask li { display: flex; gap: .8rem; color: rgba(255, 255, 255, .82); font-size: .95rem; }
.ask li span { color: #a9d977; font-weight: 700; font-size: .78rem; letter-spacing: .1em; padding-top: .18rem; }
.ask > p { margin-top: 1.1rem; color: rgba(255, 255, 255, .62); font-size: .9rem; }

.reach { display: grid; align-content: start; gap: 0; }
.reach > * {
  display: grid; gap: .28rem; padding: clamp(1rem, 1.8vw, 1.3rem) 0;
  border-top: 1px solid var(--line-lt);
}
.reach > *:last-child { border-bottom: 1px solid var(--line-lt); }
.reach span:first-child {
  font-size: .66rem; font-weight: 700; letter-spacing: .17em;
  text-transform: uppercase; color: #a9d977;
}
.reach span:last-child { font-size: clamp(.95rem, 1.1vw, 1.06rem); line-height: 1.5; color: #fff; overflow-wrap: anywhere; }
.reach a { transition: color .25s var(--ease); }
.reach a:hover span:last-child { color: #cbe8a5; }

/* ── footer ─────────────────────────────────────────────────────────────── */
.foot { background: var(--ink); color: rgba(255, 255, 255, .74); padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.foot__top { display: grid; gap: clamp(2rem, 4vw, 3rem); }
.foot__brand picture { display: block; }
.foot__brand img { height: clamp(56px, 7vw, 76px); width: auto; }
.foot__line {
  font-family: Fraunces, Georgia, serif; font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: #fff; margin-top: 1rem; line-height: 1.35;
}
.foot__note { font-size: .88rem; margin-top: .7rem; max-width: 34ch; color: rgba(255, 255, 255, .58); }
.foot h4 {
  font-family: Karla, sans-serif; font-size: .68rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: #a9d977; margin-bottom: 1rem;
}
.foot ul { display: grid; gap: .55rem; font-size: .92rem; }
.foot a:hover { color: #fff; }
.foot address { font-style: normal; font-size: .9rem; margin-top: 1rem; line-height: 1.6; color: rgba(255, 255, 255, .58); }
.foot .btn { margin-top: 1.2rem; }
.foot__base {
  margin-top: clamp(2.4rem, 4vw, 3.4rem); padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between;
  font-size: .8rem; color: rgba(255, 255, 255, .5);
}

/* ── floating whatsapp ──────────────────────────────────────────────────── */
.wa {
  position: fixed; right: clamp(.8rem, 2vw, 1.5rem); bottom: clamp(.8rem, 2vw, 1.5rem);
  z-index: 95; display: inline-flex; align-items: center; gap: .5rem;
  padding: .72rem .95rem; border-radius: 999px;
  background: #1a7c44; color: #fff; font-size: .86rem; font-weight: 600;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .22);
  transition: transform .3s var(--ease-out), background .3s var(--ease);
}
.wa svg { width: 20px; height: 20px; }
.wa:hover { transform: translateY(-2px); background: #146336; }
@media (max-width: 599px) { .wa span { display: none; } .wa { padding: .8rem; } }

/* ── frozen atmosphere ───────────────────────────────────────────────────
   One canvas per zone, painted by main.js. Purely decorative: it never takes
   pointer events and never affects layout. */
.snow {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; opacity: .9;
}
.snow--hero { z-index: 2; opacity: .55; }
#products > .wrap, #products .railwrap { position: relative; z-index: 1; }

/* ── cold store ──────────────────────────────────────────────────────────── */
.cold {
  position: relative; overflow: hidden; color: #fff;
  padding-block: clamp(3.5rem, 7vw, 6rem);
  background:
    radial-gradient(90% 120% at 78% 30%, rgba(126, 208, 240, .16), rgba(20, 3, 30, 0) 62%),
    linear-gradient(172deg, #1a0325 0%, #24063a 55%, #170221 100%);
}
.cold__grid {
  position: relative; z-index: 1;
  display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.cold h2 { color: #fff; }
.cold h2 em { color: #9fdcf5; font-style: normal; }
.cold p { color: rgba(255, 255, 255, .78); margin-top: 1.1rem; max-width: 44ch; }

/* the focal snowflake — the same drawn symbol as the badges, at display size.
   Everything else in the frozen system stays small so the hierarchy holds. */
.flake {
  display: block; inline-size: clamp(72px, 9vw, 132px); block-size: auto;
  color: #9fdcf5; fill: none; opacity: .92;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  filter: drop-shadow(0 0 26px rgba(126, 208, 240, .3));
}
.flake use, .flake { stroke-width: 1.1; }

.therm {
  display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem);
  justify-self: start; margin: 0;
}
.therm__svg {
  inline-size: clamp(88px, 12vw, 120px); block-size: auto;
  color: rgba(255, 255, 255, .5); flex: none;
  filter: drop-shadow(0 0 22px rgba(126, 208, 240, .22));
}
.therm__mark { stroke: #9fdcf5; fill: none; }
.therm__marklabel {
  font-family: Karla, sans-serif; font-size: 13px; font-weight: 700;
  fill: #9fdcf5; text-anchor: end; stroke: none; letter-spacing: .02em;
}
.therm__tick {
  font-family: Karla, sans-serif; font-size: 13px; font-weight: 600;
  fill: rgba(255, 255, 255, .58); letter-spacing: .04em;
}
/* the column is drawn full height and scaled from the bulb end, so --fill of
   1 is the top of the scale and 0 is the bottom */
.therm__fill {
  /* fill-box, or the origin would resolve against the whole viewBox and the
     column would scale about the wrong point */
  transform-box: fill-box; transform-origin: 50% 100%;
  transform: scaleY(var(--fill, 0));
}
/* once it has settled at −18 the glass breathes very slightly, then stops
   moving the reading — the number never cycles */
.therm.is-settled .therm__svg { animation: frostbreath 5.5s var(--ease) infinite; }
@keyframes frostbreath {
  0%, 100% { filter: drop-shadow(0 0 22px rgba(126, 208, 240, .22)); }
  50%      { filter: drop-shadow(0 0 34px rgba(126, 208, 240, .42)); }
}
@media (prefers-reduced-motion: reduce) { .therm.is-settled .therm__svg { animation: none; } }
.therm__read { display: grid; gap: .3rem; }
.therm__val {
  font-family: Fraunces, Georgia, serif; font-weight: 400;
  font-size: clamp(2.1rem, 4.2vw, 3.2rem); line-height: 1;
  color: #cdeeff; letter-spacing: -.03em; font-variant-numeric: tabular-nums;
}
.therm__label {
  font-size: .68rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255, 255, 255, .55);
}
@media (min-width: 900px) {
  .cold__grid { grid-template-columns: 1.1fr .9fr; }
  .therm { justify-self: end; }
}

/* ── reveals ────────────────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 110ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════════════════════
   BREAKPOINTS
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── ≤ 899px: hero and pins unstack ─────────────────────────────────────── */
@media (max-width: 899px) {
  :root { --tail: 0px; }

  .hero { padding-bottom: 0; }
  .hero__media { position: relative; height: auto; }
  .hero__media img { height: auto; aspect-ratio: 16 / 11; transform: none; object-position: 72% 50%; }
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(15, 2, 22, .55) 0%, rgba(15, 2, 22, .06) 40%,
                      rgba(15, 2, 22, .5) 82%, var(--plum) 100%);
  }
  .hero__flow { margin-top: -1px; min-height: 0; padding-block: clamp(2rem, 8vw, 3rem) clamp(3.5rem, 12vw, 5rem); }
  .hero .wave { bottom: -1px; }
  .cue { display: none; }
  .hero h1 { margin-top: .4rem; }

  .pin__media { position: relative; height: auto; }
  .pin__media img { height: auto; aspect-ratio: 4 / 3; transform: none; }
  .pin__scrim, .pin__scrim--r {
    background: linear-gradient(180deg, rgba(8, 16, 10, .3) 0%, rgba(8, 16, 10, .1) 45%, rgba(8, 16, 10, .8) 100%);
  }
  .pin__flow { margin-top: -1px; }
  .panel { min-height: 0; padding-block: clamp(2.4rem, 8vw, 3.6rem); }
  .panel::before, .panel--right::before { display: none; }
  .panel--right { justify-content: flex-start; }
  .panel + .panel { padding-top: 0; }
}

/* ── ≥ 600px ────────────────────────────────────────────────────────────── */
@media (min-width: 600px) {
  .pcard { width: clamp(200px, 34vw, 240px); }
  .strip__list { grid-template-columns: repeat(2, 1fr); gap: clamp(1.4rem, 3vw, 2rem) clamp(1.2rem, 3vw, 2.4rem); }
  .strip__list--seven { grid-template-columns: repeat(2, 1fr); }
  .sust__list { grid-template-columns: repeat(3, 1fr); }
  .foot__top { grid-template-columns: repeat(2, 1fr); }
}

/* ── ≥ 900px ────────────────────────────────────────────────────────────── */
@media (min-width: 900px) {
  .nav__nav { display: block; }
  .nav__act .btn--solid { display: inline-flex; }
  .burger { display: none; }

  .rowhead {
    grid-template-columns: 1fr auto 1fr; text-align: center; align-items: center;
  }
  .rowhead__mid { grid-column: 2; }
  .railctl { grid-column: 3; justify-content: flex-end; }

  .pcard { width: clamp(210px, 21vw, 262px); }

  .strip__list--seven { grid-template-columns: repeat(7, 1fr); gap: clamp(.7rem, 1.2vw, 1.1rem); }
  .strip__list--seven li { display: grid; justify-items: center; text-align: center; gap: .7rem; }
  .strip__list--seven li + li { border-left: 1px solid var(--line); padding-left: clamp(.5rem, 1vw, 1rem); }
  .strip__list--seven h3 { font-size: clamp(.95rem, 1.1vw, 1.12rem); }
  .strip__list--seven p { font-size: .78rem; }
  .strip__list li + li {
    border-left: 1px solid var(--line); padding-left: clamp(.9rem, 1.6vw, 1.5rem);
  }
  .strip__list li { align-items: flex-start; }
  .strip .ico { margin-top: .1rem; }

  .intro { grid-template-columns: 1.15fr .85fr; }
  .sust__cols { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1.1fr .9fr; }
  .foot__top { grid-template-columns: 1.4fr .9fr 1.2fr; }

  /* the heading is sticky too, and the stage frame sits below it, so stage 01
     is already telling its story while "The jamun run." is still on screen —
     the editorial hand-off the section was missing */
  .run__head { position: sticky; top: calc(var(--navh) + 2.4vh); z-index: 2; }
  .run__grid { grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 4rem); align-items: stretch; margin-top: clamp(1.6rem, 3vw, 2.4rem); }
  .run__stage { display: block; height: 100%; }
  .run__mob { display: none; }
  .run__steps { gap: 0; }
  .run__step {
    min-height: 74svh; display: flex; flex-direction: column; justify-content: center;
    border-top: 0; padding-top: 0; padding-left: clamp(1.2rem, 2vw, 2rem);
    border-left: 1px solid rgba(255, 255, 255, .16);
    opacity: .34; transition: opacity .5s var(--ease), border-color .5s var(--ease);
  }
  .run__step.is-on { opacity: 1; border-left-color: #cfa0ea; }
  .run__step h3 { font-size: clamp(1.6rem, 2.6vw, 2.3rem); }
  .run__step p { font-size: 1.02rem; }
  .run__steps > :first-child { padding-top: calc(var(--run-head-h, 0px) + 4svh); }
  .run__steps > :last-child { padding-bottom: 4svh; }
}

/* ── ≥ 1200px ───────────────────────────────────────────────────────────── */
@media (min-width: 1200px) {
  .hero__inner { max-width: 44rem; }
  .panel__in { max-width: 38rem; }
}

/* ── very narrow (≤ 360px) ──────────────────────────────────────────────── */
@media (max-width: 640px) {
  .badges { gap: 1rem; }
  .badges li { width: 100%; max-width: none; }
}

@media (max-width: 360px) {
  :root { --pad: 1rem; }
  .brand__sub { letter-spacing: .3em; }
  .pcard { width: 66vw; }
}

/* ── reduced motion ─────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .snow { display: none; }
  .therm__fill { transition: none; }
  .hero__media img, .pin__media img { transform: none !important; }
  .run__shot { transition: none; }
  .cue i::after { animation: none; }
  .prail { scroll-behavior: auto; }
}
