/* ============================================================
   UFF! · Editorial flagship stylesheet
   "If Monocle launched a South Asian beverage brand."
   Kinfolk × Jacquemus × Condé Nast Traveller × Soho House ×
   a modern Indian design magazine. Builds on the DS tokens.
   ============================================================ */

/*, New editorial type voice (distinctive high-contrast Didone), */
:root {
  --ed-serif: 'Playfair Display', 'Times New Roman', serif;   /* display, even, high-contrast fashion didone */
  --ed-grotesk: 'Inter', -apple-system, sans-serif;        /* labels & body */
  --ed-italic: 'Cormorant Garamond', Georgia, serif;       /* editorial asides */
  --ed-mono: 'Inter', sans-serif;                          /* index numbers / labels, clean grotesk */

  --paper: var(--uff-paper);
  --paper-deep: #efe7da;
  --ink: #1a1714;
  --red: var(--uff-crimson);
  --maroon: var(--uff-maroon);
  --mute: #8b8175;

  --rule: rgba(26,23,20,0.18);
  --gutter: clamp(20px, 4.5vw, 64px);
}

* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  /* warm filmic paper: a faint radial warmth instead of a flat fill */
  background:
    radial-gradient(120% 80% at 50% -10%, #fbf5ea 0%, var(--paper) 46%, var(--paper-deep) 130%) fixed;
  color: var(--ink);
  font-family: var(--ed-grotesk);
  overflow-x: hidden;
}

/* animated film grain, an oversized tile jittered in steps so it flickers like 16mm */
.grain {
  position: fixed; z-index: 9998; pointer-events: none;
  top: -60%; left: -60%; width: 220%; height: 220%;
  opacity: 0.06; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  will-change: transform;
  animation: grainShift 0.7s steps(1) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0,0); }
  10%  { transform: translate(-3%,-4%); }
  20%  { transform: translate(-8%,2%); }
  30%  { transform: translate(4%,-6%); }
  40%  { transform: translate(-2%,7%); }
  50%  { transform: translate(-9%,-2%); }
  60%  { transform: translate(6%,3%); }
  70%  { transform: translate(-4%,5%); }
  80%  { transform: translate(3%,-7%); }
  90%  { transform: translate(-6%,1%); }
  100% { transform: translate(0,0); }
}

/* filmic vignette, darkens the corners so photography + type sit in light */
.vignette {
  position: fixed; inset: 0; z-index: 9997; pointer-events: none;
  background: radial-gradient(115% 95% at 50% 42%, transparent 56%, rgba(40,28,20,0.10) 84%, rgba(28,18,12,0.20) 100%);
  mix-blend-mode: multiply;
}

@media (prefers-reduced-motion: reduce) { .grain { animation: none !important; } }

/* scroll progress, hairline of crimson across the very top */
.scrollprog {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%; z-index: 250;
  background: linear-gradient(90deg, var(--red), var(--guava));
  box-shadow: 0 0 12px rgba(196,18,48,0.5);
}

/* sticky drop pill, appears past the hero, the persistent CTA */
.dropbar {
  position: fixed; right: clamp(16px,3vw,40px); bottom: clamp(16px,3vw,40px); z-index: 240;
  display: inline-flex; align-items: center; gap: 11px;
  padding: 13px 22px; border-radius: 999px; text-decoration: none;
  background: var(--ink); color: var(--paper);
  font-family: var(--ed-grotesk); font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(0,0,0,0.32);
  opacity: 0; transform: translateY(20px) scale(0.96); pointer-events: none;
  transition: opacity .5s ease, transform .5s cubic-bezier(.16,1,.3,1), background .3s ease;
}
.dropbar.show { opacity: 1; transform: none; pointer-events: auto; }
.dropbar:hover { background: var(--red); }
.dropbar .db-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--guava); box-shadow: 0 0 0 0 rgba(200,68,122,0.6); animation: dbPulse 2.4s ease-out infinite; }
@keyframes dbPulse { 0% { box-shadow: 0 0 0 0 rgba(200,68,122,0.55); } 70%,100% { box-shadow: 0 0 0 10px rgba(200,68,122,0); } }
.dropbar .db-arr { transition: transform .35s ease; }
.dropbar:hover .db-arr { transform: translateX(4px); }

/* ---- Masthead ---- */
.masthead {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 18px var(--gutter);
  mix-blend-mode: difference;            /* legible over cream or photo */
  color: #fff;
}
.masthead .mh-logo { justify-self: start; height: 26px; filter: invert(1); }
.masthead .mh-center,
.masthead .mh-right { font-family: var(--ed-grotesk); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; }
.masthead .mh-center { justify-self: center; }
.masthead .mh-right { justify-self: end; display: flex; gap: 22px; flex-wrap: nowrap; align-items: center; }
.masthead .mh-right span { cursor: pointer; }
.masthead .mh-right a[style*="border-radius:999px"] { white-space: nowrap; }
/* collapse secondary text links on smaller laptops so the pill stays on one line */
@media (max-width: 1024px) {
  .masthead .mh-right > a:not([style*="border-radius:999px"]) { display: none; }
}

/* ---- 5-tab primary nav ---- */
.masthead .mh-tabs { justify-self: center; display: flex; gap: clamp(12px,1.8vw,30px); align-items: center; }
.masthead .mh-tabs a { font-family: var(--ed-grotesk); font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; color: inherit; white-space: nowrap; }
.masthead .mh-tabs a:hover { opacity: 0.55; }
@media (max-width: 900px) { .masthead .mh-tabs { display: none; } }

/* ---- shared site footer ---- */
.site-foot { position: relative; background: var(--ink); color: var(--paper); padding: clamp(48px,8vh,88px) var(--gutter) 34px; overflow: hidden; }
.site-foot .row { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; max-width: 1280px; margin: 0 auto; }
.site-foot .wm { font-family: var(--ed-serif); font-style: italic; font-weight: 500; font-size: clamp(72px,16vw,200px); line-height: 0.78; color: rgba(245,240,232,0.14); }
.site-foot nav { display: flex; gap: 22px; flex-wrap: wrap; }
.site-foot nav a { font-family: var(--ed-grotesk); font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--paper); text-decoration: none; opacity: 0.85; }
.site-foot nav a:hover { opacity: 0.5; }
.site-foot .cp { position: relative; z-index: 2; max-width: 1280px; margin: 26px auto 0; font-family: var(--ed-grotesk); font-size: 11px; letter-spacing: 0.1em; color: rgba(245,240,232,0.5); }
.site-foot .social { position: relative; z-index: 2; display: flex; gap: 18px; flex-wrap: wrap; max-width: 1280px; margin: 20px auto 0; }
.site-foot .social a { font-family: var(--ed-grotesk); font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--paper); text-decoration: none; opacity: 0.7; }
.site-foot .social a:hover { opacity: 1; color: var(--guava); }

/* ---- Instagram gallery band (uses the rest of the shoot) ---- */
.ig-band { background: var(--paper); padding: clamp(50px,8vh,100px) 0 clamp(40px,6vh,70px); border-top: 1px solid var(--rule); }
.ig-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; padding: 0 var(--gutter) 20px; border-bottom: 1px solid var(--rule); margin-bottom: clamp(22px,3vh,34px); }
.ig-head h2 { font-family: var(--ed-grotesk); font-weight: 700; font-size: clamp(22px,4vw,44px); letter-spacing: 0.01em; text-transform: uppercase; color: var(--ink); margin: 0; }
.ig-head .handle { font-family: var(--ed-italic); font-style: italic; font-size: clamp(20px,2.6vw,34px); color: var(--ink); text-decoration: none; }
.ig-head .handle:hover { color: var(--red); }
.ig-scroll { display: flex; gap: clamp(10px,1.4vw,18px); overflow-x: auto; padding: 0 var(--gutter) 12px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.ig-scroll::-webkit-scrollbar { height: 0; }
.ig-item { flex: 0 0 auto; width: clamp(210px,24vw,300px); scroll-snap-align: start; text-decoration: none; }
.ig-item .ph { width: 100%; height: clamp(280px,34vw,400px); overflow: hidden; background: var(--paper-deep); }
.ig-item .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.16,1,.3,1); }
.ig-item:hover .ph img { transform: scale(1.05); }
.ig-item .cap { font-family: var(--ed-grotesk); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); margin-top: 10px; }

/* ---- Reusable editorial bits ---- */
.kicker {
  font-family: var(--ed-grotesk); font-size: 11px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--red);
}
.kicker.ink { color: var(--ink); }
.kicker.mute { color: var(--mute); }

.rule { height: 1px; background: var(--rule); width: 100%; }

.serif { font-family: var(--ed-serif); font-weight: 400; }
.aside { font-family: var(--ed-italic); font-style: italic; }

/* mask-reveal primitive (animation-driven for reliable trigger) */
.reveal { overflow: hidden; }
.reveal > * { display: block; transform: translateY(110%); }
.in .reveal > * { animation: uffRevIn 1.05s cubic-bezier(.16,1,.3,1) forwards; }
@keyframes uffRevIn { to { transform: translateY(0); } }
.fade { opacity: 0; transform: translateY(24px); }
.in .fade { animation: uffFadeIn 1s ease forwards; }
@keyframes uffFadeIn { to { opacity: 1; transform: none; } }

/* safety net: once revealed (or if animation can't run), force final state */
.hero.revealed .reveal > *,
.hero.revealed .fade,
.seen .reveal > *,
.seen .fade { opacity: 1 !important; transform: none !important; animation: none !important; }

@media (prefers-reduced-motion: reduce) {
  .reveal > *, .fade { transform: none !important; opacity: 1 !important; animation: none !important; }
  .chili, .drift, .spiral { animation: none !important; }
}

/* flavor identities (from packaging) */
:root {
  --guava: #c8447a;     /* guava chili, magenta */
  --lemon: #1f6b4a;     /* masala lemon, green */
  --tamarind: #d98324;  /* orange tamarind, amber */
}

/* ============================================================
   1, LANDING EXPERIENCE
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; padding: clamp(96px,12vh,150px) var(--gutter) 40px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(24px,4vw,72px);
  align-items: center;
}
.hero-meta {
  position: absolute; top: clamp(64px,9vh,92px); left: var(--gutter); right: var(--gutter);
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--mute);
}
.hero-copy { position: relative; z-index: 5; }
.hero h1 {
  font-family: var(--ed-serif); font-weight: 500; color: var(--ink);
  font-size: clamp(64px, 11.5vw, 168px); line-height: 0.92; letter-spacing: -0.02em; margin: 18px 0 0;
}
.hero h1 .it { font-style: italic; font-weight: 500; }
.hero h1 .rd { color: var(--red); font-style: italic; }
.hero .deck {
  font-family: var(--ed-italic); font-style: italic; font-size: clamp(18px,2vw,26px);
  color: var(--ink); margin: 26px 0 0; max-width: 30ch; line-height: 1.4;
}
.hero .deck b { font-style: normal; font-family: var(--ed-grotesk); font-weight: 500; }

.coverlines { margin-top: clamp(28px,4vh,48px); display: flex; flex-direction: column; gap: 11px; max-width: 360px; }
.coverline { display: flex; align-items: baseline; gap: 14px; font-size: 13px; color: var(--ink); }
.coverline .pg { font-family: var(--ed-mono); font-size: 12px; color: var(--red); letter-spacing: 0.1em; min-width: 30px; }
.coverline .dotfill { flex: 1; border-bottom: 1px dotted var(--rule); transform: translateY(-3px); }

/* taped photo treatment, pinned-to-the-page editorial feel */
.tape {
  position: absolute; z-index: 7; width: clamp(70px,7vw,116px); height: 26px;
  background: rgba(214,196,160,0.5);
  box-shadow: 0 1px 5px rgba(0,0,0,0.12);
  pointer-events: none; mix-blend-mode: multiply;
}
.tape::after { content:''; position:absolute; inset:0; background: repeating-linear-gradient(90deg, transparent 0 7px, rgba(255,255,255,0.22) 7px 8px); }
.tape.tl { top: -11px; left: 18px; transform: rotate(-5deg); }
.tape.tr { top: -11px; right: 18px; transform: rotate(4deg); }
.tape.tc { top: -12px; left: 50%; transform: translateX(-50%) rotate(-2deg); }

/* hero portrait */
.hero-art { position: relative; height: clamp(420px, 78vh, 760px); }
.hero-frame {
  position: absolute; inset: 0; overflow: hidden;
  background: var(--paper-deep);
  box-shadow: 0 40px 90px rgba(0,0,0,0.28);
}
.hero-frame img { width: 100%; height: 118%; object-fit: cover; object-position: center 18%; will-change: transform; }
.hero-frame .cap {
  position: absolute; bottom: 14px; left: 14px; right: 14px; z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end;
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: #fff; mix-blend-mode: difference;
}

/* the signature chili */
.chili {
  position: absolute; z-index: 8; width: clamp(150px, 20vw, 300px);
  top: 2%; right: 30%; transform-origin: 60% 0%; pointer-events: none;
  filter: drop-shadow(0 22px 30px rgba(0,0,0,0.32));
}

/* drifting magazine cutouts */
.drift { position: absolute; z-index: 6; pointer-events: none; will-change: transform; }
.drift.deva {
  font-family: var(--font-deva); font-weight: 900; color: var(--red);
  background: var(--paper); padding: 6px 12px; font-size: clamp(20px,2.4vw,34px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.16); transform: rotate(-7deg);
}
/* rotating circular seal, editorial stamp motif (typographic, scroll-reactive) */
.seal { position: absolute; z-index: 7; width: 132px; height: 132px; max-width: 132px; max-height: 132px; pointer-events: none; will-change: transform; }
.seal svg { display: block; width: 132px; height: 132px; animation: sealspin 26s linear infinite; transform-origin: 50% 50%; }
.seal text { font-family: var(--ed-grotesk); font-size: 13.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; fill: var(--ink); }
.seal .ctr { fill: var(--red); font-family: var(--ed-serif); font-style: italic; font-size: 22px; letter-spacing: 0; }
@keyframes sealspin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .seal svg { animation: none; } }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(var(--rot,0deg)); } 50% { transform: translateY(-14px) rotate(var(--rot,0deg)); } }

.scrollcue {
  position: absolute; bottom: 26px; left: var(--gutter); display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--mute);
}
.scrollcue .ln { width: 46px; height: 1px; background: var(--ink); transform-origin: left; animation: cue 2.4s ease-in-out infinite; }
@keyframes cue { 0%,100% { transform: scaleX(0.3); opacity: .4; } 50% { transform: scaleX(1); opacity: 1; } }

/* ============================================================
   ticker
   ============================================================ */
/* confessional stream, Human-Desire style running line of intimate fragments */
.ticker { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); overflow: hidden; padding: 20px 0; background: var(--paper); }
.ticker-row { display: inline-flex; white-space: nowrap; animation: tick 60s linear infinite; }
.ticker-row span { font-family: var(--ed-italic); font-style: italic; font-size: clamp(20px,2.2vw,30px); padding-right: 8px; color: var(--ink); }
.ticker-row span .sep { font-style: normal; color: var(--red); padding: 0 18px; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ============================================================
   2, FIRST SCROLL  (editorial thesis + parallax)
   ============================================================ */
.thesis { position: relative; padding: clamp(90px,14vh,180px) var(--gutter); overflow: hidden; }
.thesis .idx { display: flex; align-items: baseline; gap: 18px; margin-bottom: clamp(28px,5vh,56px); }
.thesis .idx .no { font-family: var(--ed-mono); font-size: 13px; color: var(--red); letter-spacing: 0.12em; }
.thesis .idx .lbl { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--mute); }
.thesis-statement {
  font-family: var(--ed-serif); font-weight: 400; color: var(--ink);
  font-size: clamp(34px, 6vw, 92px); line-height: 1.02; letter-spacing: -0.015em; max-width: 16ch;
}
.thesis-statement .rd { color: var(--red); font-style: italic; }
.thesis-statement .it { font-style: italic; }
.thesis-grid { margin-top: clamp(40px,7vh,80px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,64px); align-items: start; }
.thesis-body { font-size: 16px; line-height: 1.75; color: #3a352f; max-width: 44ch; }
.thesis-body p { margin: 0 0 16px; }
.thesis-body .lead { font-family: var(--ed-italic); font-style: italic; font-size: 21px; color: var(--ink); }
.thesis-photo { position: relative; height: clamp(360px,60vh,620px); overflow: hidden; background: var(--paper-deep); box-shadow: 0 30px 70px rgba(0,0,0,0.22); }
.thesis-photo img { width: 100%; height: 122%; object-fit: cover; will-change: transform; }
.thesis .floatchili { position: absolute; right: 4%; top: 8%; width: clamp(120px,14vw,210px); z-index: 4; pointer-events: none; will-change: transform; filter: drop-shadow(0 16px 24px rgba(0,0,0,.3)); }

/* ============================================================
   3, BRAND WORLD  (collage spread)
   ============================================================ */
.world { position: relative; background: radial-gradient(140% 120% at 80% 0%, #5e1322 0%, var(--maroon) 45%, #3a0c16 120%); color: var(--paper); padding: clamp(80px,12vh,150px) var(--gutter); overflow: hidden; }
.world .wm { position: absolute; top: -4vw; right: -1vw; font-family: var(--ed-serif); font-style: italic; font-size: clamp(120px,26vw,420px); color: rgba(255,255,255,0.05); pointer-events: none; line-height: 0.7; }
.world-head { position: relative; z-index: 3; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: clamp(40px,6vh,72px); }
.world-head h2 { font-family: var(--ed-serif); font-weight: 400; font-size: clamp(48px,8vw,128px); line-height: 0.86; letter-spacing: -0.02em; margin: 10px 0 0; }
.world-head h2 .it { font-style: italic; }
.world-head .right { text-align: right; max-width: 280px; }
.world-head .right p { font-family: var(--ed-italic); font-style: italic; font-size: 18px; line-height: 1.4; opacity: .9; margin: 0; }

.spread { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 8px; gap: 16px; }
.plate { position: relative; overflow: hidden; background: rgba(0,0,0,0.2); box-shadow: 0 24px 50px rgba(0,0,0,0.3); transform: translateY(28px); opacity: 0; transition: transform .9s cubic-bezier(.16,1,.3,1), opacity .9s ease, box-shadow .5s ease; }
.world.in .plate { transform: none; opacity: 1; }
.world.in .plate:nth-child(2) { transition-delay: .08s; }
.world.in .plate:nth-child(3) { transition-delay: .16s; }
.world.in .plate:nth-child(4) { transition-delay: .24s; }
.world.in .plate:nth-child(5) { transition-delay: .32s; }
.world.in .plate:nth-child(6) { transition-delay: .40s; }
.plate:hover { box-shadow: 0 34px 70px rgba(0,0,0,0.42); }
.plate img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.16,1,.3,1); }
.plate:hover img { transform: scale(1.06); }
.plate .pcap { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px; display: flex; justify-content: space-between; align-items: flex-end; gap: 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.65)); opacity: 0; transform: translateY(10px); transition: opacity .5s ease, transform .5s ease; }
.plate:hover .pcap { opacity: 1; transform: none; }
.plate .pcap .t { font-family: var(--ed-italic); font-style: italic; font-size: 18px; }
.plate .pcap .n { font-family: var(--ed-mono); font-size: 12px; letter-spacing: 0.14em; opacity: .85; }

/* rasa explorer, interactive, tied to the real formula */
.rasa-x { position: relative; z-index: 3; margin-top: clamp(48px,7vh,84px); border-top: 1px solid rgba(255,255,255,0.25); padding-top: clamp(32px,5vh,56px); }
.rasa-head h3 { font-family: var(--ed-serif); font-weight: 400; font-size: clamp(30px,4.4vw,62px); line-height: 0.94; margin: 8px 0 0; }
.rasa-head h3 .it { font-style: italic; color: #f0d9b6; }
.rasa-head .rasa-sub { font-family: var(--ed-italic); font-style: italic; font-size: clamp(15px,1.6vw,19px); opacity: 0.88; max-width: 46ch; margin: 14px 0 0; }
.rasa-body { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(24px,4vw,56px); margin-top: clamp(28px,4vh,44px); align-items: stretch; }
.rasa-list { display: flex; flex-direction: column; gap: 8px; }
.rasa-tab { display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; gap: 14px; width: 100%; text-align: left; cursor: pointer;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.16); border-left: 3px solid transparent; border-radius: 4px; color: var(--paper);
  padding: 16px 18px; transition: background .35s ease, border-color .35s ease, padding-left .35s ease; }
.rasa-tab:hover { background: rgba(255,255,255,0.1); padding-left: 24px; }
.rasa-tab.active { background: rgba(255,255,255,0.12); border-left-color: var(--rc); }
.rasa-tab .rt-no { font-family: var(--ed-mono); font-size: 12px; opacity: 0.65; }
.rasa-tab .rt-en { font-family: var(--ed-serif); font-size: clamp(20px,2.4vw,30px); line-height: 1; }
.rasa-tab.active .rt-en { color: var(--rc); }
.rasa-tab .rt-sa { font-family: var(--ed-grotesk); font-size: 11px; letter-spacing: 0.06em; opacity: 0.62; white-space: nowrap; }
/* detail panel */
.rasa-detail { position: relative; overflow: hidden; background: #fbf3e6; color: var(--ink); border-radius: 4px; padding: clamp(28px,3.4vw,48px); box-shadow: 0 30px 70px rgba(0,0,0,0.32); display: flex; flex-direction: column; }
.rasa-detail::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--rc); }
.rd-deva { position: absolute; top: 8px; right: 22px; font-family: var(--ed-serif); font-size: clamp(80px,11vw,150px); line-height: 1; color: var(--rc); opacity: 0.16; pointer-events: none; }
.rd-no { font-family: var(--ed-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rc); }
.rd-name { font-family: var(--ed-serif); font-weight: 500; font-size: clamp(40px,6vw,80px); line-height: 0.94; margin: 6px 0 0; color: var(--ink); }
.rd-desc { font-family: var(--ed-italic); font-style: italic; font-size: clamp(17px,1.9vw,23px); line-height: 1.4; color: #3a342c; margin: 16px 0 0; max-width: 38ch; }
.rd-from { font-family: var(--ed-grotesk); font-size: 11px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: #8c8273; margin-top: auto; padding-top: 26px; }
.rd-ings { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.rd-ings .chip { display: inline-flex; align-items: baseline; gap: 8px; font-family: var(--ed-grotesk); font-size: 14px; font-weight: 500; color: var(--ink); background: #fff; border: 1px solid var(--rule); border-radius: 999px; padding: 9px 16px; }
.rd-ings .chip i { font-style: normal; font-family: var(--ed-mono); font-size: 11px; color: var(--rc); }
.rasa-foot { font-family: var(--ed-grotesk); font-size: 13px; opacity: 0.8; margin-top: clamp(22px,3vh,32px); }
.rasa-foot b { font-weight: 600; opacity: 1; }
@media (max-width: 820px) {
  .rasa-body { grid-template-columns: 1fr; }
  .rasa-tab .rt-sa { display: none; }
}

/* sober-is-sexy stamp */
.stamp { position: absolute; z-index: 4; font-family: var(--ed-grotesk); font-weight: 600; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  border: 1px solid currentColor; border-radius: 999px; padding: 9px 18px; }

/* ============================================================
   MOMENTS ticker label
   ============================================================ */
.ticker-row span .moment-lead { font-style: normal; font-family: var(--ed-grotesk); font-weight: 600; font-size: 0.5em; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mute); padding-right: 18px; }

/* ============================================================
   FOUNDER BAND, "meet the founder" (the sipping portrait lives here now)
   ============================================================ */
.founderband { position: relative; background: var(--paper); padding: clamp(70px,11vh,150px) var(--gutter); overflow: hidden; }
.founderband .inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 0.92fr 1fr; gap: clamp(32px,6vw,96px); align-items: center; }
.founderband .fb-photo { position: relative; height: clamp(420px,72vh,720px); overflow: hidden; background: var(--paper-deep); box-shadow: 0 36px 80px rgba(0,0,0,0.26); }
.founderband .fb-photo img { width: 100%; height: 108%; object-fit: cover; object-position: center 32%; will-change: transform; }
.founderband .fb-photo .stamp { position: absolute; bottom: 18px; left: 18px; color: var(--paper); border-color: rgba(255,255,255,0.6); }
.founderband .fb-eyebrow { font-family: var(--ed-grotesk); font-size: 11px; font-weight: 500; letter-spacing: 0.32em; text-transform: uppercase; color: var(--red); }
.founderband h2 { font-family: var(--ed-serif); font-weight: 400; font-size: clamp(40px,6.4vw,96px); line-height: 0.92; letter-spacing: -0.02em; color: var(--ink); margin: 14px 0 0; }
.founderband h2 .it { font-style: italic; }
.founderband .fb-body { font-family: var(--ed-italic); font-style: italic; font-size: clamp(19px,2.1vw,27px); line-height: 1.45; color: var(--ink); max-width: 38ch; margin: 24px 0 0; }
.founderband .fb-body + .fb-body { font-family: var(--ed-grotesk); font-style: normal; font-size: 15px; line-height: 1.7; color: #3a352f; max-width: 46ch; margin-top: 18px; }
.founderband .fb-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 30px; text-decoration: none; font-family: var(--ed-grotesk); font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 6px; transition: gap .35s ease, color .3s ease, border-color .3s ease; }
.founderband .fb-link:hover { gap: 20px; color: var(--red); border-color: var(--red); }
.founderband .fb-sig { font-family: var(--ed-italic); font-style: italic; font-size: 30px; color: var(--maroon); margin-top: 26px; transform: rotate(-4deg); display: inline-block; }

/* ============================================================
   MOODBOARD WALL, the Pinterest cut-outs, built as real type
   ============================================================ */
.moodboard { position: relative; background: linear-gradient(180deg, var(--paper-deep), var(--paper)); padding: clamp(70px,11vh,140px) var(--gutter) clamp(90px,13vh,170px); overflow: hidden; }
.moodboard .mb-head { max-width: 1180px; margin: 0 auto clamp(34px,5vh,58px); display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 18px; }
.moodboard .mb-head h2 { font-family: var(--ed-serif); font-weight: 400; font-size: clamp(38px,6vw,104px); line-height: 0.9; letter-spacing: -0.02em; color: var(--ink); margin: 8px 0 0; }
.moodboard .mb-head h2 .it { font-style: italic; color: var(--red); }
.moodboard .mb-head .right { max-width: 300px; text-align: right; }
.moodboard .mb-head .right p { font-family: var(--ed-italic); font-style: italic; font-size: 18px; line-height: 1.4; color: var(--ink); margin: 0; opacity: 0.85; }

/* the collage */
.mb-wall { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: clamp(14px,1.6vw,24px); align-items: start; }
.mb-card { position: relative; overflow: hidden; border-radius: 2px; padding: 30px 26px; min-height: 200px; display: flex; flex-direction: column; justify-content: center;
  box-shadow: 0 18px 40px rgba(40,18,16,0.16); transition: transform .55s cubic-bezier(.16,1,.3,1), box-shadow .45s ease;
  transform: rotate(var(--r,0deg)) translateY(26px); opacity: 0; }
.moodboard.in .mb-card { transform: rotate(var(--r,0deg)); opacity: 1; }
.mb-card:hover { transform: rotate(0deg) scale(1.03); box-shadow: 0 30px 64px rgba(40,18,16,0.3); z-index: 5; }
.moodboard.in .mb-card:nth-child(2){transition-delay:.05s}.moodboard.in .mb-card:nth-child(3){transition-delay:.1s}.moodboard.in .mb-card:nth-child(4){transition-delay:.15s}.moodboard.in .mb-card:nth-child(5){transition-delay:.2s}.moodboard.in .mb-card:nth-child(6){transition-delay:.25s}.moodboard.in .mb-card:nth-child(7){transition-delay:.3s}.moodboard.in .mb-card:nth-child(8){transition-delay:.35s}.moodboard.in .mb-card:nth-child(9){transition-delay:.4s}.moodboard.in .mb-card:nth-child(10){transition-delay:.45s}

.mb-card .mb-tape { position: absolute; top: -10px; left: 50%; transform: translateX(-50%) rotate(-3deg); width: 86px; height: 24px; background: rgba(214,196,160,0.55); box-shadow: 0 1px 5px rgba(0,0,0,0.12); mix-blend-mode: multiply; }
.mb-card .mb-tape::after { content:''; position:absolute; inset:0; background: repeating-linear-gradient(90deg, transparent 0 7px, rgba(255,255,255,0.22) 7px 8px); }

/* card type treatments */
.mb-display { font-family: var(--ed-serif); font-weight: 700; line-height: 0.92; letter-spacing: -0.01em; }
.mb-script { font-family: var(--ed-italic); font-style: italic; }
.mb-grotesk { font-family: var(--ed-grotesk); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.04; }
.mb-q { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; opacity: 0.7; font-family: var(--ed-grotesk); }

/* colourways */
.mb-maroon { background: var(--maroon); color: var(--paper); }
.mb-red    { background: var(--red); color: var(--paper); }
.mb-cream  { background: #fbf5ea; color: var(--ink); }
.mb-ink    { background: var(--ink); color: var(--paper); }
.mb-tam    { background: var(--tamarind); color: #2a1206; }
.mb-photo  { padding: 0; min-height: 230px; background: var(--paper-deep); }
.mb-photo img { width: 100%; height: 100%; object-fit: cover; }
.mb-outline { background: #fbf5ea; color: var(--maroon); }
.mb-outline .mb-display { -webkit-text-stroke: 1.4px var(--maroon); color: transparent; }

.mb-card .mb-sub { margin-top: 12px; font-family: var(--ed-grotesk); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.72; }
.mb-card .accent { color: var(--lemon); }
.mb-red .accent, .mb-maroon .accent, .mb-ink .accent { color: var(--tamarind); }

@media (max-width: 880px) {
  .founderband .inner { grid-template-columns: 1fr; }
  .founderband .fb-photo { height: 56vh; }
  .mb-wall { grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); }
  .mb-card { transform: rotate(0deg) !important; }
}

/* ============================================================
   LOGO-BREAK SCATTER, "UFF! · the sound you make when…"
   ============================================================ */
.logobreak { position: relative; min-height: 96vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.logobreak .lb-bg { position: absolute; inset: 0; background: linear-gradient(rgba(28,18,14,.52),rgba(28,18,14,.64)), url(../assets/editorial-party-table.jpg) center 30%/cover no-repeat; }
.logobreak .lb-logo { position: relative; z-index: 3; width: min(42vw,460px); filter: drop-shadow(0 24px 60px rgba(0,0,0,.5)); }
.logobreak .lb-scatter { position: absolute; inset: 0; z-index: 2; }
.lb-phrase { position: absolute; max-width: 230px; color: var(--paper); transform: translateY(14px); opacity: 0; transition: transform .9s cubic-bezier(.16,1,.3,1), opacity .9s ease; }
.lb-phrase::before { content: ''; position: absolute; inset: -14px -20px; background: radial-gradient(closest-side, rgba(18,11,9,0.62), rgba(18,11,9,0) 78%); filter: blur(6px); z-index: -1; border-radius: 44%; }
.logobreak.in .lb-phrase { transform: translateY(0); opacity: 1; }
.lb-phrase .uff { display: block; font-family: var(--ed-grotesk); font-weight: 700; font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }
.lb-phrase .said { font-family: var(--ed-italic); font-style: italic; font-size: clamp(17px,1.7vw,22px); line-height: 1.28; color: #f8eeda; text-shadow: 0 1px 2px rgba(0,0,0,0.95), 0 2px 20px rgba(0,0,0,0.85); }
.logobreak.in .lb-phrase:nth-child(1){transition-delay:.1s}.logobreak.in .lb-phrase:nth-child(2){transition-delay:.22s}.logobreak.in .lb-phrase:nth-child(3){transition-delay:.34s}.logobreak.in .lb-phrase:nth-child(4){transition-delay:.46s}.logobreak.in .lb-phrase:nth-child(5){transition-delay:.58s}.logobreak.in .lb-phrase:nth-child(6){transition-delay:.7s}
/* positions, scattered around the wordmark */
.lb-p1 { top: 13%; left: 7%; text-align: left; transform: translateY(14px) rotate(-3deg); }
.logobreak.in .lb-p1 { transform: translateY(0) rotate(-3deg); }
.lb-p2 { top: 9%; right: 8%; text-align: right; transform: translateY(14px) rotate(2.5deg); }
.logobreak.in .lb-p2 { transform: translateY(0) rotate(2.5deg); }
.lb-p3 { top: 47%; left: 4%; text-align: left; transform: translateY(14px) rotate(2deg); }
.logobreak.in .lb-p3 { transform: translateY(0) rotate(2deg); }
.lb-p4 { top: 44%; right: 5%; text-align: right; transform: translateY(14px) rotate(-2.5deg); }
.logobreak.in .lb-p4 { transform: translateY(0) rotate(-2.5deg); }
.lb-p5 { bottom: 13%; left: 12%; text-align: left; transform: translateY(14px) rotate(-1.5deg); }
.logobreak.in .lb-p5 { transform: translateY(0) rotate(-1.5deg); }
.lb-p6 { bottom: 11%; right: 11%; text-align: right; transform: translateY(14px) rotate(3deg); }
.logobreak.in .lb-p6 { transform: translateY(0) rotate(3deg); }
@media (max-width: 880px) {
  .logobreak { min-height: 92vh; }
  .logobreak .lb-logo { width: 64vw; }
  .lb-phrase { max-width: 40vw; }
  .lb-phrase .said { font-size: 14px; }
  .lb-p1,.lb-p3,.lb-p5 { left: 5%; }
  .lb-p2,.lb-p4,.lb-p6 { right: 5%; }
}

/* ============================================================
   THE FORMULA, real-ingredient spec ledger (transparency moment)
   ============================================================ */
.formula { position: relative; background: var(--ink); color: var(--paper); padding: clamp(72px,11vh,150px) var(--gutter); overflow: hidden; }
.formula .fm-inner { max-width: 1080px; margin: 0 auto; }
.formula .fm-head { display: grid; grid-template-columns: 1fr 0.8fr; gap: clamp(24px,5vw,72px); align-items: end; margin-bottom: clamp(40px,6vh,68px); }
.formula .kicker { color: var(--red); }
.formula h2 { font-family: var(--ed-serif); font-weight: 400; font-size: clamp(40px,6.6vw,104px); line-height: 0.9; letter-spacing: -0.02em; margin: 12px 0 0; }
.formula h2 .it { font-style: italic; color: #f0d9b6; }
.formula .fm-lede { font-family: var(--ed-italic); font-style: italic; font-size: clamp(18px,1.9vw,24px); line-height: 1.45; color: #e7dccb; opacity: 0.92; }

/* composition bar */
.fm-bar { display: flex; height: 18px; border-radius: 2px; overflow: hidden; margin-bottom: 14px; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12); }
.fm-bar span { display: block; height: 100%; transition: flex .9s cubic-bezier(.16,1,.3,1); }
.formula:not(.in) .fm-bar span { flex: 0 1 0 !important; }
.fm-legend { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-bottom: clamp(40px,6vh,64px); }
.fm-legend .lg { display: flex; align-items: center; gap: 9px; font-family: var(--ed-grotesk); font-size: 12px; letter-spacing: 0.04em; color: #d8cdba; }
.fm-legend .lg b { color: var(--paper); font-weight: 600; }
.fm-legend .sw { width: 11px; height: 11px; border-radius: 2px; flex: none; }

/* ledger */
.fm-group { border-top: 1px solid rgba(255,255,255,0.16); padding-top: 26px; margin-top: 26px; }
.fm-group:first-of-type { margin-top: 0; }
.fm-group .grp-label { font-family: var(--ed-grotesk); font-size: 11px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.fm-row { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: baseline; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07); transition: padding-left .4s ease; }
.fm-row:hover { padding-left: 10px; }
.fm-row .ing { font-family: var(--ed-serif); font-weight: 500; font-size: clamp(20px,2.4vw,30px); line-height: 1.1; }
.fm-row .ing .dev { font-style: italic; font-size: 0.62em; color: #c9a98a; margin-left: 8px; }
.fm-row .desc { display: block; font-family: var(--ed-italic); font-style: italic; font-size: clamp(14px,1.4vw,17px); color: #b8ac99; margin-top: 5px; max-width: 52ch; }
.fm-row .pct { font-family: var(--ed-serif); font-weight: 300; font-size: clamp(22px,2.6vw,38px); color: #f0d9b6; white-space: nowrap; font-variant-numeric: tabular-nums; }
.fm-row .pct small { font-family: var(--ed-grotesk); font-size: 11px; letter-spacing: 0.1em; color: #8c8273; display: block; text-align: right; margin-top: 2px; text-transform: uppercase; }
.fm-foot { margin-top: 34px; font-family: var(--ed-grotesk); font-size: 12px; letter-spacing: 0.04em; color: #8c8273; line-height: 1.7; }
@media (max-width: 740px) {
  .formula .fm-head { grid-template-columns: 1fr; }
  .fm-row { grid-template-columns: 1fr; }
  .fm-row .pct { text-align: left; }
  .fm-row .pct small { text-align: left; }
}

/* responsive */
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; }
  .hero-art { height: 56vh; order: -1; }
  .chili { right: 8%; width: 150px; }
  .thesis-grid { grid-template-columns: 1fr; }
  .flavor { grid-template-columns: 30px 1fr auto; }
  .flavor .fdesc { display: none; }
  .masthead .mh-center { display: none; }
}
