/* ==============================================================
   PARDESI PANTRY · V2, "A journey home"
   Cinematic editorial: ink-blue night opening over a sepia Taj
   Mahal, cream daylight chapters, gold thread throughout.
   Fraunces (display, opsz 144) + Karla (body).
   ============================================================== */

:root {
  --night:      #131A3D;
  --night-deep: #0C112B;
  --cream:      #F8F1E0;
  --cream-soft: #F1E6CC;
  --paper:      #FFFBF0;
  --ink:        #292619;
  --ink-soft:   #5E5847;
  --gold:       #D4A437;
  --gold-soft:  #E8C878;
  --orange:     #DC7215;
  --orange-deep:#B85A0D;
  --green:      #5A682F;
  --green-deep: #39431D;
  --red:        #B0341B;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Karla", "Segoe UI", sans-serif;

  --gutter: clamp(1.25rem, 4vw, 5rem);
  --section: clamp(5rem, 11vw, 11rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* max width of centred content; widens on large displays (see bottom of file) */
  --content-max: 1500px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  /* fluid base: pinned at 16px up to ~1440px (laptops unchanged),
     scales up gently on 18"/25"+ displays so the whole design grows */
  font-size: clamp(16px, 13.5px + 0.18vw, 22px);
}
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--night); }

/* ---------- custom cursor (fine pointers only) ---------- */
.cursor-dot, .cursor-ring { display: none; }
@media (pointer: fine) {
  .cursor-dot, .cursor-ring {
    display: block;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 3000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  .cursor-dot {
    width: 7px; height: 7px;
    background: var(--gold);
    mix-blend-mode: difference;
  }
  .cursor-ring {
    width: 38px; height: 38px;
    border: 1.5px solid color-mix(in srgb, var(--gold) 65%, transparent);
    transition: width 0.35s var(--ease), height 0.35s var(--ease),
                background 0.3s, border-color 0.3s;
    display: grid;
    place-items: center;
  }
  .cursor-ring::after {
    content: attr(data-label);
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--night);
    opacity: 0;
    transition: opacity 0.25s;
  }
  body.cursor-hover .cursor-ring {
    width: 64px; height: 64px;
    background: color-mix(in srgb, var(--gold) 90%, transparent);
    border-color: transparent;
  }
  body.cursor-hover .cursor-ring::after { opacity: 1; }
  body.cursor-hover .cursor-dot { opacity: 0; }
}

/* ---------- preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: var(--night-deep);
  display: grid;
  place-items: center;
  transition: transform 1s var(--ease);
}
.preloader.is-done { transform: translateY(-101%); }
.preloader__inner { text-align: center; }
.preloader__word {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144;
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--cream);
  display: inline-block;
  overflow: hidden;
}
.preloader__word .ch {
  display: inline-block;
  transform: translateY(110%);
  animation: chUp 0.7s var(--ease) forwards;
  animation-delay: calc(var(--i) * 55ms);
}
.preloader__word .ch.italic { font-style: italic; color: var(--gold); }
@keyframes chUp { to { transform: translateY(0); } }
.preloader__rule {
  width: 0;
  height: 1px;
  background: var(--gold);
  margin: 1.2rem auto 0;
  animation: ruleGrow 1.1s var(--ease) 0.5s forwards;
}
@keyframes ruleGrow { to { width: min(16rem, 60vw); } }

/* ---------- type helpers ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 580;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.display em { font-style: italic; font-weight: 480; }

.kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
/* decorative leading/trailing lines removed per request */

.chapter {
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.chapter__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  white-space: nowrap;
}
.chapter__rule { flex: 1; height: 1px; background: currentColor; opacity: 0.16; }
.chapter__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  opacity: 0.65;
  white-space: nowrap;
}

/* ---------- header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 var(--gutter);
  transition: background 0.5s, box-shadow 0.5s, transform 0.5s var(--ease);
}
.header__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 9.8rem;
  gap: 1rem;
}
.header--dark { color: var(--cream); }
.header.is-solid {
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 14px 44px -22px rgba(19, 26, 61, 0.4);
  color: var(--ink);
}
.header.is-hidden { transform: translateY(-100%); }
.header__logo img {
  height: 9.5rem;
  width: auto;
  transition: transform 0.4s var(--ease);
}
/* transparent over the dark hero, drop-shadow keeps it legible, no chip */
.header--dark:not(.is-solid) .header__logo img {
  filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.55));
}
.header__logo:hover img { transform: rotate(-4deg) scale(1.05); }

.nav { display: flex; gap: 2.6rem; }
.nav a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  padding: 0.4rem 0;
  opacity: 0.75;
  transition: opacity 0.25s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { opacity: 1; }
.nav a:hover::after, .nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__actions { display: flex; align-items: center; gap: 1rem; }
.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.7rem 1.3rem;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.header--dark:not(.is-solid) .cart-btn:hover { background: var(--cream); color: var(--night); }
.header.is-solid .cart-btn:hover, .header--light .cart-btn:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.cart-btn__count {
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  min-width: 1.3rem;
  height: 1.3rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  padding: 0 0.3rem;
}
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; }
.nav-toggle span { width: 25px; height: 2px; background: currentColor; transition: 0.35s var(--ease); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.15rem 2.4rem;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.35s, border-color 0.35s, transform 0.1s;
  will-change: transform;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
}
.btn:hover::before { transform: translateY(0); }
.btn--gold { background: var(--gold); color: var(--night); }
.btn--gold::before { background: var(--cream); }
.btn--orange { background: var(--orange); color: var(--paper); box-shadow: 0 18px 38px -16px rgba(220, 114, 21, 0.6); }
.btn--orange::before { background: var(--night); }
.btn--orange:hover { color: var(--cream); }
.btn--line { border: 1.5px solid currentColor; }
.btn--line::before { background: var(--ink); }
.btn--line:hover { color: var(--cream); border-color: var(--ink); }
.btn--line-light { border: 1.5px solid color-mix(in srgb, var(--cream) 55%, transparent); color: var(--cream); }
.btn--line-light::before { background: var(--cream); }
.btn--line-light:hover { color: var(--night); border-color: var(--cream); }
.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

/* ---------- hero ---------- */
/* ---------- hero (built around the supplied image) ---------- */
.hero {
  position: relative;
  width: 100%;
  height: clamp(600px, 96svh, 1040px);
  overflow: hidden;
  background: var(--night-deep);
  color: var(--cream);
  display: flex;
  align-items: flex-start; /* anchor copy to the top-left sky */
}
/* the supplied image, used exactly as given, never stretched */
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; /* box stays centred + fully visible */
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(9rem, 17vh, 10.5rem) var(--gutter) 0;
}
/* left column, kept clear of the centred product box */
.hero__content {
  max-width: min(26rem, 42vw);
}
.hero__kicker { color: var(--gold-soft); }
.hero__title {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.94;
  margin: 1.2rem 0 0;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}
.hero__title em { color: var(--gold); font-style: italic; }
.hero__sub {
  max-width: 24rem;
  margin: 1.4rem 0 2.1rem;
  color: var(--cream);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9), 0 2px 18px rgba(0, 0, 0, 0.85);
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}
/* entrance, copy stays visible by default; animation only enhances */
.hero__content > * {
  animation: heroIn 0.95s var(--ease) both;
}
.hero__content > *:nth-child(1) { animation-delay: 0.10s; }
.hero__content > *:nth-child(2) { animation-delay: 0.22s; }
.hero__content > *:nth-child(3) { animation-delay: 0.34s; }
.hero__content > *:nth-child(4) { animation-delay: 0.46s; }
@keyframes heroIn {
  from { transform: translateY(20px); }
  to   { transform: none; }
}

/* mobile: show the whole image (box visible), stack copy + CTAs beneath it */
@media (max-width: 760px) {
  .hero {
    height: auto;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
  }
  .hero__img {
    position: static;
    height: auto;
    aspect-ratio: 16 / 11;
    object-position: center center;
  }
  .hero__inner {
    padding: 2.4rem var(--gutter) 2.8rem;
    text-align: center;
    background: linear-gradient(180deg, var(--night) 0%, var(--night-deep) 100%);
  }
  .hero__content { max-width: 100%; }
  .hero__sub { margin-inline: auto; }
  .hero__cta { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__content > * { opacity: 1; animation: none; }
}

/* ---------- giant ghost word ---------- */
.ghost {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 640;
  font-variation-settings: "opsz" 144;
  font-size: clamp(8rem, 22vw, 22rem);
  line-height: 1;
  letter-spacing: -0.02em;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px color-mix(in srgb, currentColor 18%, transparent);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

/* ---------- mission (word-by-word reveal) ---------- */
.mission {
  position: relative;
  background: var(--cream);
  padding: var(--section) var(--gutter);
  overflow: hidden;
}
.mission .ghost { color: var(--ink); top: 4%; right: -4%; opacity: 0.7; }
.mission__inner { max-width: 1180px; margin: 0 auto; position: relative; }
.mission__quote {
  font-size: clamp(2.1rem, 5.2vw, 4.6rem);
  line-height: 1.16;
  max-width: 20ch;
}
.mission__quote .w {
  display: inline-block;
  opacity: 0.12;
  transform: translateY(0.18em);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  transition-delay: calc(var(--i) * 45ms);
}
.mission__quote.is-visible .w { opacity: 1; transform: none; }
.mission__quote .w.accent { font-style: italic; color: var(--orange-deep); }
.mission__quote .w.green { font-style: italic; color: var(--green); }
.mission__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.mission__note { max-width: 26rem; color: var(--ink-soft); }
.mission__stamp {
  position: relative;
  width: 8.5rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: none;
}
.mission__stamp svg { position: absolute; inset: 0; animation: spinSlow 26s linear infinite; }
.mission__stamp svg text {
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  fill: var(--green);
}
.mission__stamp img { width: 2.9rem; }
@keyframes spinSlow { to { transform: rotate(360deg); } }

/* ---------- journey (pinned horizontal) ---------- */
.journey {
  background: var(--night);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.journey__head {
  padding: clamp(3rem, 7vw, 6rem) var(--gutter) clamp(2rem, 5vh, 4rem);
  max-width: var(--content-max);
  margin: 0 auto;
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.journey__title { font-size: clamp(2.6rem, 6vw, 5.4rem); max-width: 14ch; }
.journey__title em { color: var(--gold); }

.journey__viewport { position: relative; }
.journey__track {
  display: flex;
  flex-direction: column; /* stacked by default; goes horizontal when GSAP drives it */
}
html.has-hscroll .journey__track {
  flex-direction: row;
  width: max-content;
}
.j-panel {
  padding: clamp(3rem, 6vw, 5.5rem) var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
  max-width: 1240px;
}
html.has-hscroll .j-panel {
  width: min(86vw, var(--content-max));
  flex: none;
  padding-top: clamp(8rem, 19vh, 14rem);
  padding-bottom: clamp(4rem, 8vh, 6rem);
}
.j-panel__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(3.4rem, 7vw, 6rem);
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  line-height: 1;
}
.j-panel h3 {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  margin: 1rem 0 0.9rem;
}
.j-panel h3 em { font-style: italic; color: var(--gold); }
.j-panel p { color: color-mix(in srgb, var(--cream) 72%, transparent); max-width: 34rem; }
.j-panel figure {
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--gold) 30%, transparent);
  box-shadow: 0 40px 70px -36px rgba(0, 0, 0, 0.7);
  transform: rotate(1.2deg);
}
.j-panel:nth-child(even) figure { transform: rotate(-1.2deg); }
.j-panel figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.journey__thread {
  position: absolute;
  left: 0; right: 0; bottom: clamp(1.4rem, 3vh, 2.2rem);
  height: 1px;
  background: color-mix(in srgb, var(--gold) 26%, transparent);
}
.journey__thread::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(var(--p, 0));
  transform-origin: left;
}

/* ---------- services: editorial rows + floating preview ---------- */
.services {
  position: relative;
  background: var(--cream);
  padding: var(--section) var(--gutter);
}
.services__inner { max-width: var(--content-max); margin: 0 auto; position: relative; }
.svc-rows { border-top: 1px solid color-mix(in srgb, var(--ink) 16%, transparent); }
.svc-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 3rem);
  padding: clamp(1.6rem, 3.4vw, 2.8rem) 0.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 16%, transparent);
  position: relative;
  transition: padding-left 0.45s var(--ease);
}
.svc-row:hover { padding-left: 1.8rem; }
.svc-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--night);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s var(--ease);
  z-index: 0;
}
.svc-row:hover::before { transform: scaleY(1); }
.svc-row > * { position: relative; z-index: 1; }
.svc-row__num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--orange-deep);
  font-size: 1rem;
  transition: color 0.35s;
}
.svc-row__name {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(1.7rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  transition: color 0.35s;
}
.svc-row__desc {
  max-width: 17rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: color 0.35s;
}
.svc-row__cta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.35s;
  white-space: nowrap;
}
.svc-row:hover .svc-row__name, .svc-row:hover .svc-row__cta { color: var(--cream); }
.svc-row:hover .svc-row__num { color: var(--gold); }
.svc-row:hover .svc-row__desc { color: color-mix(in srgb, var(--cream) 70%, transparent); }
.svc-row--soon .svc-row__cta { color: var(--red); }
.svc-row--soon:hover .svc-row__cta { color: var(--gold-soft); }

.svc-preview {
  position: fixed;
  top: 0; left: 0;
  width: clamp(15rem, 21vw, 21rem);
  aspect-ratio: 4 / 4.6;
  border-radius: 1.2rem;
  overflow: hidden;
  pointer-events: none;
  z-index: 60;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86) rotate(3deg);
  transition: opacity 0.35s var(--ease), transform 0.45s var(--ease);
  box-shadow: 0 40px 80px -30px rgba(19, 26, 61, 0.65);
}
.svc-preview.is-on { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(0deg); }
.svc-preview img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s;
}
.svc-preview img.is-active { opacity: 1; }

/* ---------- stats band ---------- */
.stats {
  background: var(--green-deep);
  color: var(--cream);
  padding: clamp(3.5rem, 7vw, 6rem) var(--gutter);
}
.stats__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.stat { text-align: center; position: relative; }
.stat + .stat::before {
  content: "";
  position: absolute;
  left: -1rem; top: 12%;
  height: 76%;
  width: 1px;
  background: color-mix(in srgb, var(--cream) 18%, transparent);
}
.stat__num {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.8rem, 5.6vw, 4.6rem);
  font-weight: 560;
  color: var(--gold-soft);
  line-height: 1;
}
.stat__num .unit { font-size: 0.5em; font-style: italic; }
.stat__label {
  margin-top: 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* ---------- products ---------- */
.shop-strip {
  position: relative;
  background: var(--paper);
  padding: var(--section) 0;
  overflow: hidden;
}
.shop-strip .ghost { color: var(--ink); bottom: 1%; right: -3%; opacity: 0.7; }
.shop-strip__head {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.6rem;
  position: relative;
}
.shop-strip__title { font-size: clamp(2.6rem, 6vw, 5.4rem); }
.shop-strip__title em { color: var(--orange-deep); }

.products-grid {
  max-width: var(--content-max);
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(17.5rem, 1fr));
  gap: 1.8rem;
  position: relative;
}
.product-card {
  background: var(--cream);
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--ink) 9%, transparent);
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  transition: box-shadow 0.4s;
  will-change: transform;
}
.product-card:hover { box-shadow: 0 36px 60px -28px rgba(19, 26, 61, 0.4); }
.product-card__media {
  position: relative;
  aspect-ratio: 1 / 0.9;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.product-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(19, 26, 61, 0.22), transparent 55%);
}
.product-card__media img {
  width: 76%;
  transition: transform 0.6s var(--ease);
  filter: drop-shadow(0 20px 26px rgba(19, 26, 61, 0.35));
  transform: translateZ(34px);
}
.product-card:hover .product-card__media img { transform: translateZ(34px) scale(1.07) rotate(-2deg); }
.product-card__tag {
  position: absolute;
  top: 1.05rem; left: 1.05rem;
  z-index: 2;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  background: var(--night);
  color: var(--cream);
}
.product-card__tag--sale { background: var(--red); }
.product-card__tag--new { background: var(--green); }
.product-card__body {
  padding: 1.5rem 1.6rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}
.product-card__cat {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.product-card__name { font-family: var(--font-display); font-weight: 580; font-size: 1.45rem; }
.product-card__desc { font-size: 0.92rem; color: var(--ink-soft); flex: 1; }
.product-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1.2rem;
}
.product-card__price { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; }
.product-card__price s { font-size: 0.92rem; color: var(--ink-soft); font-weight: 400; margin-right: 0.45rem; }
.add-btn {
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.2s;
}
.add-btn:hover:not(:disabled) { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-2px); }
.add-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.add-btn.is-added { background: var(--green); border-color: var(--green); color: #fff; }

/* ---------- testimonial ---------- */
.voice {
  background: var(--cream);
  padding: var(--section) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.voice__mark {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.6;
  color: var(--gold);
  display: block;
  margin-bottom: 1.4rem;
}
.voice blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.6rem, 3.6vw, 3rem);
  line-height: 1.25;
  max-width: 26ch;
  margin: 0 auto;
}
.voice cite {
  display: block;
  margin-top: 2rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- CTA finale ---------- */
.finale {
  position: relative;
  background:
    radial-gradient(60% 90% at 80% 45%, color-mix(in srgb, var(--gold) 14%, transparent), transparent 60%),
    radial-gradient(55% 80% at 8% 115%, color-mix(in srgb, var(--orange) 16%, transparent), transparent 70%),
    linear-gradient(180deg, var(--night) 0%, var(--night-deep) 100%);
  color: var(--cream);
  padding: clamp(3.5rem, 6vw, 5.5rem) var(--gutter);
  overflow: hidden;
}
.finale__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    radial-gradient(1.4px 1.4px at 14% 22%, rgba(248,241,224,0.9), transparent 100%),
    radial-gradient(1px 1px at 30% 64%, rgba(248,241,224,0.6), transparent 100%),
    radial-gradient(1.8px 1.8px at 22% 84%, rgba(212,164,55,0.7), transparent 100%),
    radial-gradient(1px 1px at 46% 14%, rgba(248,241,224,0.7), transparent 100%),
    radial-gradient(1.4px 1.4px at 64% 30%, rgba(248,241,224,0.5), transparent 100%),
    radial-gradient(1px 1px at 88% 70%, rgba(212,164,55,0.6), transparent 100%),
    radial-gradient(1.2px 1.2px at 92% 20%, rgba(248,241,224,0.55), transparent 100%);
}
.finale__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  min-height: clamp(420px, 42vw, 520px);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}
/* entrance, visible by default (the CTA never depends on JS); animation only enhances */
.finale__copy > *,
.finale__visual {
  animation: finaleUp 0.9s var(--ease) both;
}
.finale__copy > *:nth-child(2) { animation-delay: 0.08s; }
.finale__copy > *:nth-child(3) { animation-delay: 0.16s; }
.finale__copy > *:nth-child(4) { animation-delay: 0.24s; }
.finale__visual { animation-delay: 0.16s; }
@keyframes finaleUp {
  from { transform: translateY(22px); }
  to   { transform: none; }
}
.finale__kicker { color: var(--gold-soft); }
.finale__title {
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  line-height: 1.03;
  margin: 1.2rem 0 0;
  text-wrap: balance;
}
.finale__title em { color: var(--gold); font-style: italic; }
.finale__sub {
  color: color-mix(in srgb, var(--cream) 82%, transparent);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.6;
  max-width: 31rem;
  margin: 1.3rem 0 2.1rem;
}
.finale__form {
  display: flex;
  gap: 0.7rem;
  max-width: 32rem;
  flex-wrap: wrap;
}
.finale__input {
  flex: 1 1 13rem;
  min-width: 0;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--cream) 28%, transparent);
  background: color-mix(in srgb, var(--night-deep) 55%, transparent);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.finale__input::placeholder { color: color-mix(in srgb, var(--cream) 48%, transparent); }
.finale__input:focus {
  outline: none;
  border-color: var(--gold);
  background: color-mix(in srgb, var(--night-deep) 82%, transparent);
}
.finale__btn { flex: 0 0 auto; }

.finale--centred { text-align: center; }
.finale--centred__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.finale--centred__inner .finale__title { margin: 0; }
.finale--centred__inner .finale__sub { margin: 0; }
.finale--centred__cta {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.finale__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(280px, 30vw, 420px);
}
.finale__glow {
  position: absolute;
  z-index: 0;
  width: 92%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle,
    color-mix(in srgb, var(--gold) 45%, transparent) 0%,
    color-mix(in srgb, var(--orange) 20%, transparent) 36%,
    transparent 66%);
  filter: blur(8px);
}
.finale__frame {
  position: relative;
  z-index: 1;
  width: min(34rem, 100%);
  border-radius: 1.3rem;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--gold) 38%, transparent);
  box-shadow: 0 44px 70px -34px rgba(0, 0, 0, 0.75);
  transform: rotate(-1.4deg);
  animation: finaleFloat 9s ease-in-out infinite;
}
.finale__box { display: block; width: 100%; height: auto; }
@keyframes finaleFloat {
  0%, 100% { transform: rotate(-1.4deg) translateY(0); }
  50%      { transform: rotate(-1.4deg) translateY(-12px); }
}
.finale__spice {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.5));
}
.finale__spice--anise    { width: clamp(2.2rem, 4vw, 3.4rem); top: 2%; right: 6%; animation: drift 11s ease-in-out infinite; }
.finale__spice--chilli   { width: clamp(2.4rem, 4.4vw, 3.8rem); bottom: 4%; left: 4%; rotate: -10deg; animation: drift 9s ease-in-out 0.6s infinite reverse; }
.finale__spice--cinnamon { width: clamp(2rem, 3.4vw, 2.8rem); bottom: 18%; right: 2%; animation: drift 12s ease-in-out 1s infinite; }
@keyframes drift {
  0%, 100% { translate: 0 0; rotate: 0deg; }
  33% { translate: 7px -10px; rotate: 7deg; }
  66% { translate: -6px 6px; rotate: -5deg; }
}

/* ---------- footer ---------- */
.footer {
  background:
    radial-gradient(120% 80% at 50% 0%, color-mix(in srgb, var(--night) 75%, transparent), transparent 60%),
    var(--night-deep);
  color: color-mix(in srgb, var(--cream) 64%, transparent);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter) 1.8rem;
  position: relative;
  overflow: hidden;
}
/* refined spice-thread divider, fades at both edges, centred ornament */
.footer__thread {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    color-mix(in srgb, var(--gold) 70%, transparent) 18%,
    color-mix(in srgb, var(--orange) 70%, transparent) 38%,
    color-mix(in srgb, var(--green) 65%, transparent) 60%,
    color-mix(in srgb, var(--red) 60%, transparent) 80%,
    transparent 100%);
  opacity: 0.8;
}
.footer__thread::after {
  content: "✦";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-size: 0.85rem;
  background: var(--night-deep);
  padding: 0 0.7rem;
}
.footer__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.5fr 1.2fr;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.footer__logo { display: inline-block; }
.footer__logo img {
  height: clamp(4.5rem, 6vw, 5.5rem);
  width: auto;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.5));
  transition: transform 0.4s var(--ease);
}
.footer__logo:hover img { transform: rotate(-3deg) scale(1.04); }
.footer__about {
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 22rem;
  margin: 1.4rem 0 1.6rem;
}
.footer__social { display: flex; gap: 0.7rem; }
.footer__social a {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--gold) 40%, transparent);
  color: var(--gold-soft);
  transition: color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--night-deep);
  transform: translateY(-3px);
}
.footer__col h4,
.footer h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
}
.footer ul { display: grid; gap: 0.75rem; font-size: 0.95rem; }
.footer a { transition: color 0.25s, opacity 0.25s; }
.footer__col a { position: relative; }
.footer__col a:hover { color: var(--cream); }
.footer__word {
  font-family: var(--font-display);
  font-weight: 640;
  font-variation-settings: "opsz" 144;
  font-size: clamp(4rem, 14vw, 13rem);
  line-height: 1;
  text-align: center;
  margin-top: clamp(3rem, 7vw, 6rem);
  color: transparent;
  -webkit-text-stroke: 1px color-mix(in srgb, var(--gold) 38%, transparent);
  user-select: none;
  white-space: nowrap;
}
.footer__bottom {
  position: relative;
  max-width: var(--content-max);
  margin: clamp(1.5rem, 3vw, 2.4rem) auto 0;
  padding-top: 1.6rem;
  border-top: 1px solid color-mix(in srgb, var(--cream) 12%, transparent);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
}
.footer__bottom a:hover { color: var(--cream); }
.footer__tagline { font-family: var(--font-display); font-style: italic; color: var(--gold); font-size: 0.95rem; }

/* ---------- sticky order CTA ---------- */
.order-fab {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: calc(clamp(1rem, 3vw, 2rem) + env(safe-area-inset-bottom, 0px));
  z-index: 180;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  background: var(--orange);
  color: var(--paper);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 36px -12px rgba(220, 114, 21, 0.7);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.order-fab svg { flex-shrink: 0; }
.order-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px -12px rgba(220, 114, 21, 0.8);
}
@media (max-width: 540px) {
  .order-fab { padding: 0.8rem 1.25rem; font-size: 0.86rem; }
}

/* ---------- cart drawer ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 17, 43, 0.55);
  backdrop-filter: blur(4px);
  z-index: 190;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100dvh;
  width: min(28.5rem, 100vw);
  background: var(--paper);
  color: var(--ink);
  z-index: 195;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -40px 0 80px -40px rgba(0, 0, 0, 0.5);
}
body.cart-open .cart-overlay { opacity: 1; pointer-events: auto; }
body.cart-open .cart-drawer { transform: translateX(0); }
body.cart-open { overflow: hidden; }
.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 1.8rem;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
}
.cart-drawer__title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 580; }
.cart-drawer__close { font-size: 1.7rem; line-height: 1; padding: 0.4rem; transition: transform 0.35s; }
.cart-drawer__close:hover { transform: rotate(90deg); }
.cart-drawer__items { flex: 1; overflow-y: auto; padding: 1.3rem 1.8rem; display: grid; gap: 1.3rem; align-content: start; }
.cart-drawer--empty .cart-drawer__items { align-content: center; }

/* empty state, branded, not an error */
.cart-empty {
  text-align: center;
  color: var(--ink-soft);
  padding: 1.2rem 0.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cart-empty__icon {
  width: 4.6rem;
  height: 4.6rem;
  color: var(--gold);
  opacity: 0.92;
  margin-bottom: 1rem;
}
.cart-empty__icon svg { width: 100%; height: 100%; }
.cart-empty__title {
  font-family: var(--font-display);
  font-weight: 580;
  font-size: 1.55rem;
  line-height: 1.05;
  color: var(--night);
  margin-bottom: 0.5rem;
}
.cart-empty__text {
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 24ch;
  color: var(--ink-soft);
}
.cart-empty__picks {
  width: 100%;
  margin-top: 2rem;
}
.cart-empty__picks-title {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 0.85rem;
}
.cart-empty__pick-grid { display: grid; gap: 0.6rem; }
.cart-pick {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  width: 100%;
  padding: 0.85rem 1.15rem;
  border: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
  border-radius: 0.85rem;
  background: var(--cream-soft);
  text-align: left;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.cart-pick:hover {
  border-color: var(--gold);
  background: var(--paper);
  transform: translateY(-1px);
}
.cart-pick__name {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 1.05rem;
  color: var(--ink);
}
.cart-pick__add {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-deep);
  white-space: nowrap;
}
.cart-item { display: grid; grid-template-columns: 4.6rem 1fr auto; gap: 1rem; align-items: center; }
.cart-item__thumb {
  background: var(--cream-soft);
  border-radius: 0.9rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 0.5rem;
}
.cart-item__name { font-family: var(--font-display); font-weight: 580; font-size: 1.08rem; }
.cart-item__price { font-size: 0.87rem; color: var(--ink-soft); }
.cart-item__qty { display: inline-flex; align-items: center; gap: 0.7rem; margin-top: 0.35rem; }
.cart-item__qty button {
  width: 1.55rem; height: 1.55rem;
  border: 1px solid color-mix(in srgb, var(--ink) 30%, transparent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  transition: 0.2s;
}
.cart-item__qty button:hover { background: var(--ink); color: var(--cream); }
.cart-item__line { font-weight: 700; }
.cart-drawer__foot {
  padding: 1.5rem 1.8rem 1.9rem;
  border-top: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  display: grid;
  gap: 1rem;
}
.cart-total { display: flex; justify-content: space-between; font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; }
.cart-note { font-size: 0.8rem; color: var(--ink-soft); text-align: center; }
/* swap checkout CTA based on whether the box has anything in it */
#cart-explore { display: none; }
.cart-drawer--empty #cart-checkout,
.cart-drawer--empty .cart-note { display: none; }
.cart-drawer--empty #cart-explore { display: inline-flex; }

/* ---------- shop page ---------- */
.page-hero {
  position: relative;
  background: linear-gradient(180deg, var(--night-deep), var(--night));
  color: var(--cream);
  text-align: center;
  padding: clamp(9rem, 16vw, 13rem) var(--gutter) clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
}
.page-hero .ghost {
  color: var(--cream);
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-text-stroke-color: color-mix(in srgb, var(--cream) 9%, transparent);
}
.page-hero__kicker { color: var(--gold-soft); justify-content: center; }
.page-hero h1 { font-size: clamp(3rem, 8vw, 7rem); margin-top: 1.4rem; position: relative; }
.page-hero h1 em { color: var(--gold); }
.page-hero p {
  position: relative;
  max-width: 36rem;
  margin: 1.5rem auto 0;
  color: color-mix(in srgb, var(--cream) 75%, transparent);
}
.coming-soon-strip {
  text-align: center;
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  max-width: 480px;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
  border: 1.5px dashed color-mix(in srgb, var(--ink) 22%, transparent);
  border-radius: 1.2rem;
}
.coming-soon-strip .kicker {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--gold-soft);
}
.coming-soon-strip p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--ink) 60%, transparent);
  margin: 0;
}

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  padding: clamp(2.5rem, 5vw, 4rem) var(--gutter) 0;
}
.filter-chip {
  border: 1.5px solid color-mix(in srgb, var(--ink) 26%, transparent);
  border-radius: 999px;
  padding: 0.62rem 1.5rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: 0.3s;
}
.filter-chip:hover { border-color: var(--ink); color: var(--ink); }
.filter-chip.is-active { background: var(--night); border-color: var(--night); color: var(--cream); }

/* ---------- story page ---------- */
.story-block { padding: var(--section) var(--gutter); position: relative; overflow: hidden; }
.story-block__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 6vw, 6.5rem);
  align-items: center;
}
.story-block--flip .story-block__inner > :first-child { order: 2; }
.story-block h2 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); margin-top: 1.2rem; }
.story-block h2 em { color: var(--orange-deep); }
.story-block .prose { margin-top: 1.5rem; color: var(--ink-soft); display: grid; gap: 1.15rem; }
.story-figure { border-radius: 1.4rem; overflow: hidden; position: relative; }
.story-figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3.4; }
.story-figure--pad {
  background:
    radial-gradient(circle at 65% 30%, color-mix(in srgb, var(--gold) 26%, transparent), transparent 65%),
    var(--cream-soft);
  display: grid;
  place-items: center;
  padding: clamp(1.6rem, 4vw, 3rem);
}
.story-figure--pad img {
  width: 78%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 36px rgba(19, 26, 61, 0.35));
}
.pledges {
  background: var(--night);
  color: var(--cream);
  padding: var(--section) var(--gutter);
}
.pledges__inner { max-width: var(--content-max); margin: 0 auto; }
.pledges__head { margin-bottom: clamp(3rem, 6vw, 5rem); }
.pledges__head h2 { font-size: clamp(2.4rem, 5vw, 4.4rem); margin-top: 1.2rem; color: var(--cream); }
.pledges__head h2 em { color: var(--gold-soft); font-style: italic; }
.chapter--light .chapter__num,
.chapter--light .chapter__label { color: color-mix(in srgb, var(--cream) 55%, transparent); }
.chapter--light .chapter__rule { background: color-mix(in srgb, var(--cream) 22%, transparent); }

.pledge-list { display: grid; gap: 0; }
.pledge {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 2rem;
  align-items: start;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid color-mix(in srgb, var(--cream) 14%, transparent);
}
.pledge:last-child { border-bottom: 1px solid color-mix(in srgb, var(--cream) 14%, transparent); }
.pledge__num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--gold-soft);
  line-height: 1;
  opacity: 0.5;
  padding-top: 0.15em;
}
.pledge__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 580;
  line-height: 1.15;
  margin-bottom: 0.9rem;
  color: var(--cream);
}
.pledge__body p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--cream) 68%, transparent);
  max-width: 52ch;
}

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* toast */
.toast {
  position: fixed;
  bottom: 1.8rem;
  left: 50%;
  transform: translate(-50%, 150%);
  background: var(--green-deep);
  color: var(--cream);
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  z-index: 300;
  transition: transform 0.5s var(--ease);
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.5);
}
.toast.is-shown { transform: translate(-50%, 0); }

/* ---------- responsive ---------- */
@media (max-width: 1060px) {
  .stats__inner { grid-template-columns: repeat(3, 1fr); gap: 2.6rem 2rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .pledge { grid-template-columns: 4rem 1fr; gap: 1.2rem; }
  .svc-row { grid-template-columns: auto 1fr auto; }
  .svc-row__desc { display: none; }
}
@media (max-width: 880px) {
  /* tame the oversized header on tablets / large phones */
  .header__inner { height: 7rem; }
  .header__logo img { height: 6rem; }
  /* the journey intro reserved most of the screen; let it breathe normally */
  .journey__head { min-height: auto; padding-bottom: clamp(1.5rem, 4vw, 3rem); }
  .j-panel { grid-template-columns: minmax(0, 1fr); }
  html.has-hscroll .j-panel { width: 88vw; }
  .story-block__inner { grid-template-columns: minmax(0, 1fr); }
  .story-block--flip .story-block__inner > :first-child { order: 0; }

  /* finale: stack text first, image second */
  .finale__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: clamp(2.2rem, 6vw, 3rem);
    text-align: center;
  }
  .finale__sub { margin-inline: auto; }
  .finale__form { margin-inline: auto; justify-content: center; }
  .finale__visual { order: 2; min-height: 0; }
  .finale__frame { width: min(30rem, 92%); }

  .nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--paper);
    color: var(--ink);
    flex-direction: column;
    align-items: center;
    gap: 1.7rem;
    padding: 2rem 0 2.4rem;
    border-bottom: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
    box-shadow: 0 34px 44px -26px rgba(19, 26, 61, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.4s var(--ease), visibility 0s 0.4s;
  }
  body.nav-open .nav {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition: opacity 0.3s, transform 0.4s var(--ease);
  }
  .nav-toggle { display: flex; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .cart-btn__label { display: none; }
}
@media (max-width: 600px) {
  .kicker { letter-spacing: 0.26em; font-size: 0.64rem; }
  .header__inner { height: 6rem; }
  .header__logo img { height: 5rem; }
  .stats__inner { grid-template-columns: 1fr; gap: 2rem; }
  .stat + .stat::before { display: none; }
  .footer__inner { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: auto 1fr; }
  .svc-row__cta { display: none; }
  .mission .ghost, .shop-strip .ghost { display: none; }
  /* full-screen drawer, no awkward sliver of background */
  .cart-drawer { width: 100vw; }
  .cart-overlay { background: rgba(12, 17, 43, 0.7); }
}

/* ---------- small phones ---------- */
@media (max-width: 430px) {
  .header__inner { height: 5.2rem; }
  .header__logo img { height: 4.2rem; }
  .hero__inner { padding: 2rem var(--gutter) 2.4rem; }
  .hero__title { font-size: clamp(2.5rem, 12vw, 3.4rem); }
  .hero__sub { font-size: 1rem; }
  /* keep the giant footer wordmark from clipping on narrow screens */
  .footer__word { font-size: clamp(2.8rem, 17vw, 5rem); }
  /* comfortable tap targets in the mobile menu */
  .nav a { font-size: 0.92rem; padding: 0.55rem 0; }
  .footer__social a { width: 2.75rem; height: 2.75rem; }
  /* nudge the floating CTA into the corner */
  .order-fab { right: 0.85rem; bottom: 0.85rem; }
}

/* ---------- large displays: let content fill 16"/18"/25"+ screens ---------- */
@media (min-width: 1680px) {
  :root { --content-max: 1660px; }
}
@media (min-width: 2000px) {
  :root { --content-max: 1820px; }
}
@media (min-width: 2400px) {
  :root { --content-max: 2040px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
