/* ═══════════════════════════════════════════════════════════════
   CRUST & CREMA — warm, editorial, cinematic
   ═══════════════════════════════════════════════════════════════ */

/* ── Fonts ─────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Fraunces';
  src: url('../assets/fonts/Fraunces.woff2') format('woff2-variations');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../assets/fonts/Fraunces-italic.woff2') format('woff2-variations');
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../assets/fonts/Manrope.woff2') format('woff2-variations');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

/* ── Tokens ────────────────────────────────────────────────────── */
:root {
  --ink:        #16110d;   /* warm espresso black   */
  --ink-2:      #1d1611;
  --ink-3:      #241b14;
  --cream:      #f3ead9;
  --cream-60:   rgba(243, 234, 217, .62);
  --cream-35:   rgba(243, 234, 217, .38);
  --cream-12:   rgba(243, 234, 217, .13);
  --amber:      #d9a05b;   /* crema gold            */
  --amber-deep: #c98a50;
  --paper:      #efe6d3;   /* light section         */
  --paper-2:    #e7dcc4;
  --paper-ink:  #221a12;
  --paper-ink-60: rgba(34, 26, 18, .64);
  --paper-ink-14: rgba(34, 26, 18, .16);

  --serif: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --sans:  'Manrope', -apple-system, 'Segoe UI', sans-serif;

  --ease-out: cubic-bezier(.19, 1, .22, 1);
  --gutter: clamp(1.25rem, 4vw, 4rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
html.lenis { height: auto; scroll-behavior: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1rem, .95rem + .3vw, 1.125rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.menu-open, body.is-loading { overflow: hidden; }

::selection { background: var(--amber); color: var(--ink); }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #3a2d21; border-radius: 5px; }

.container {
  width: min(100% - 2 * var(--gutter), 82rem);
  margin-inline: auto;
}
.container--narrow { max-width: 54rem; }

section { position: relative; scroll-margin-top: 4.5rem; }

/* Kicker — small uppercase label with rule */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .8em;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: clamp(1.2rem, 2.5vw, 2rem);
}
.kicker::before {
  content: '';
  width: 2.2em;
  height: 1px;
  background: currentColor;
  opacity: .7;
}
.kicker--light { color: var(--amber); }
.kicker--dark  { color: var(--amber-deep); }

.h2 {
  font-family: var(--serif);
  font-weight: 420;
  font-variation-settings: 'opsz' 90;
  font-size: clamp(2.1rem, 1.2rem + 3.4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -.01em;
  text-wrap: balance;
  margin-bottom: clamp(1.2rem, 2.5vw, 1.8rem);
}
.h2 em { color: var(--amber); font-weight: 380; }

.lead { color: var(--cream-60); max-width: 34em; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .95em 1.9em;
  border-radius: 100px;
  border: 1px solid var(--cream-35);
  color: var(--cream);
  transition: background .45s var(--ease-out), color .45s var(--ease-out), border-color .45s var(--ease-out), transform .45s var(--ease-out);
}
.btn:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); transform: translateY(-2px); }
.btn--dark { background: var(--paper-ink); border-color: var(--paper-ink); color: var(--paper); }
.btn--dark:hover { background: transparent; color: var(--paper-ink); border-color: var(--paper-ink); }
.btn--ghost { border-color: var(--paper-ink-14); color: var(--paper-ink); text-transform: none; letter-spacing: .02em; font-weight: 500; }
.btn--ghost:hover { background: var(--paper-ink); color: var(--paper); border-color: var(--paper-ink); }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Reveal primitives (only when JS present) */
html.js .reveal { opacity: 0; transform: translateY(2.4rem); }
html.js .reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 1s var(--ease-out), transform 1.1s var(--ease-out);
}

/* ── Grain overlay ─────────────────────────────────────────────── */
.grain {
  position: fixed;
  inset: -60px;
  z-index: 70;
  pointer-events: none;
  opacity: .14;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
  animation: grain 1.1s steps(4) infinite;
}
@keyframes grain {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-18px, 12px); }
  50%  { transform: translate(14px, -16px); }
  75%  { transform: translate(-10px, -8px); }
  100% { transform: translate(0, 0); }
}

/* ── Custom cursor ─────────────────────────────────────────────── */
.cursor { display: none; }
@media (pointer: fine) {
  .cursor {
    display: block;
    position: fixed;
    top: 0; left: 0;
    z-index: 200;
    pointer-events: none;
  }
  .cursor__dot, .cursor__ring {
    position: absolute;
    top: 0; left: 0;
    border-radius: 50%;
    translate: -50% -50%;
  }
  .cursor__dot { width: 5px; height: 5px; background: var(--amber); }
  .cursor__ring {
    width: 34px; height: 34px;
    border: 1px solid rgba(217, 160, 91, .55);
    transition: scale .35s var(--ease-out), opacity .35s, background .35s;
  }
  .cursor.is-active .cursor__ring { scale: 1.7; background: rgba(217, 160, 91, .08); }
  .cursor.is-hidden { opacity: 0; }
  .cursor__label {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-style: italic;
    font-size: 5px;
    color: var(--cream);
    opacity: 0;
    transition: opacity .3s;
    white-space: nowrap;
  }
  .cursor.has-label .cursor__ring { scale: 3.2; background: rgba(22, 17, 13, .55); border-color: transparent; -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
  .cursor.has-label .cursor__label { opacity: 1; }
  .cursor.has-label .cursor__dot { opacity: 0; }
}

/* ── Preloader ─────────────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--ink);
  display: grid;
  place-items: center;
}
.preloader__inner { text-align: center; }
.preloader__mark {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 420;
  line-height: 1;
}
.preloader__mark em { color: var(--amber); font-weight: 340; }
.preloader__count {
  margin-top: 1.4rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .3em;
  color: var(--cream-60);
  font-variant-numeric: tabular-nums;
}
.preloader__bar {
  width: min(46vw, 260px);
  height: 1px;
  margin: 1rem auto 0;
  background: var(--cream-12);
  overflow: hidden;
}
.preloader__bar span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease-out;
}
.preloader__hint {
  margin-top: 1.1rem;
  font-size: .72rem;
  letter-spacing: .14em;
  color: var(--cream-35);
  font-style: italic;
  font-family: var(--serif);
}
html.no-js .preloader { display: none; }

/* ── Header ────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem var(--gutter);
  transition: background .5s, backdrop-filter .5s, box-shadow .5s, padding .5s;
}
.header.is-scrolled {
  background: rgba(22, 17, 13, .72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--cream-12);
  padding-block: .8rem;
}
.header__brand {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 480;
  letter-spacing: .01em;
  white-space: nowrap;
}
.header__brand em { color: var(--amber); font-weight: 340; }
.header__nav {
  display: flex;
  gap: clamp(1.2rem, 2.6vw, 2.6rem);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.header__nav a {
  position: relative;
  padding-block: .3em;
  color: var(--cream-60);
  transition: color .35s;
}
.header__nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.header__nav a:hover { color: var(--cream); }
.header__nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header__right { display: flex; align-items: center; gap: 1rem; }
.header__cta { padding: .8em 1.6em; font-size: .72rem; }

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
}
.header__burger span {
  display: block;
  width: 26px;
  height: 2px;
  margin-inline: auto;
  background: var(--cream);
  transition: transform .4s var(--ease-out), opacity .3s;
}
body.menu-open .header__burger span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
body.menu-open .header__burger span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

/* Mobile overlay menu */
.mobmenu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(22, 17, 13, .96);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  display: grid;
  place-content: center;
  gap: 3rem;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s, visibility .5s;
}
body.menu-open .mobmenu { opacity: 1; visibility: visible; }
.mobmenu__nav { display: grid; gap: .4rem; }
.mobmenu__nav a {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 9vw, 3.2rem);
  font-weight: 400;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity .5s var(--ease-out), transform .6s var(--ease-out), color .3s;
}
.mobmenu__nav a:hover { color: var(--amber); }
body.menu-open .mobmenu__nav a { opacity: 1; transform: none; }
body.menu-open .mobmenu__nav a:nth-child(1) { transition-delay: .08s; }
body.menu-open .mobmenu__nav a:nth-child(2) { transition-delay: .14s; }
body.menu-open .mobmenu__nav a:nth-child(3) { transition-delay: .2s; }
body.menu-open .mobmenu__nav a:nth-child(4) { transition-delay: .26s; }
body.menu-open .mobmenu__nav a:nth-child(5) { transition-delay: .32s; }
.mobmenu__foot { font-size: .8rem; color: var(--cream-35); line-height: 1.9; }

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

/* ── HERO ──────────────────────────────────────────────────────── */
.hero__track { height: 420vh; }
.hero__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}
.hero__canvas,
.hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
html.js .hero__poster { display: none; }
html.js.reduced .hero__poster { display: block; }
html.js.reduced .hero__canvas { display: none; }

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22,17,13,.55) 0%, rgba(22,17,13,0) 28%),
    linear-gradient(0deg,  rgba(22,17,13,.78) 0%, rgba(22,17,13,0) 42%),
    radial-gradient(120% 90% at 50% 60%, rgba(22,17,13,0) 45%, rgba(22,17,13,.42) 100%);
}

.hero__act {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--gutter);
  pointer-events: none;
}
.hero__act::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  z-index: -1;
  width: min(120vw, 1150px);
  height: min(64vh, 600px);
  background: radial-gradient(50% 50% at 50% 50%, rgba(22, 17, 13, .55), transparent 72%);
}
.hero__act--2, .hero__act--3 { opacity: 0; }

.hero__title {
  font-family: var(--serif);
  font-weight: 440;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(3.2rem, 11.5vw, 9.5rem);
  line-height: .98;
  letter-spacing: -.015em;
  text-wrap: balance;
  text-shadow: 0 2px 40px rgba(0, 0, 0, .35);
}
.hero__title em { color: var(--amber); font-weight: 340; }

.hero__line {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: 'opsz' 110;
  font-size: clamp(2.4rem, 7vw, 5.8rem);
  line-height: 1.04;
  letter-spacing: -.01em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, .4);
}
.hero__line em { color: var(--amber); }

.hero__sub {
  margin-top: 1.6rem;
  max-width: 36em;
  font-size: clamp(.95rem, .9rem + .3vw, 1.1rem);
  color: var(--cream-60);
  text-shadow: 0 1px 18px rgba(0, 0, 0, .5);
}

/* right rail — act progress */
.hero__rail {
  position: absolute;
  right: clamp(1.2rem, 3vw, 2.6rem);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero__rail-item {
  position: relative;
  padding-left: 1.2rem;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream-35);
  transition: color .5s;
  writing-mode: vertical-rl;
}
.hero__rail-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--cream-12);
  transition: background .5s;
}
.hero__rail-item.is-live { color: var(--amber); }
.hero__rail-item.is-live::before { background: var(--amber); }
@media (max-width: 900px) { .hero__rail { display: none; } }

/* scroll cue */
.hero__cue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
}
.hero__cue-text {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--cream-60);
}
.hero__cue-line {
  width: 1px;
  height: 54px;
  background: var(--cream-12);
  position: relative;
  overflow: hidden;
}
.hero__cue-line::after {
  content: '';
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--amber);
  animation: cue 1.8s var(--ease-out) infinite;
}
@keyframes cue {
  0%   { top: -40%; }
  100% { top: 110%; }
}

/* ── MANIFESTO ─────────────────────────────────────────────────── */
.manifesto {
  padding: clamp(7rem, 16vh, 12rem) 0 clamp(6rem, 13vh, 10rem);
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(217, 160, 91, .05) 0%, transparent 60%),
    var(--ink);
  text-align: center;
}
.manifesto__text {
  font-family: var(--serif);
  font-weight: 380;
  font-variation-settings: 'opsz' 60;
  font-size: clamp(1.55rem, 1rem + 2.4vw, 2.9rem);
  line-height: 1.34;
  text-wrap: balance;
}
.manifesto__text .w { opacity: .13; }
html.no-js .manifesto__text .w,
html.reduced .manifesto__text .w { opacity: 1; }

.manifesto__stats {
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 6vw, 6rem);
  flex-wrap: wrap;
}
.stat { display: grid; gap: .35rem; }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 420;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.stat__label {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-35);
}

/* ── CRAFT sections ────────────────────────────────────────────── */
.craft {
  padding: clamp(5rem, 12vh, 9rem) 0;
  overflow: clip;
}
.craft__ghost {
  position: absolute;
  top: clamp(1rem, 4vw, 3rem);
  right: max(calc((100vw - 82rem) / 2 - 4rem), -1rem);
  font-family: var(--serif);
  font-size: clamp(8rem, 22vw, 19rem);
  font-weight: 340;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(243, 234, 217, .09);
  user-select: none;
  pointer-events: none;
}
.craft--flip .craft__ghost { right: auto; left: max(calc((100vw - 82rem) / 2 - 4rem), -1rem); }

.craft__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.craft--flip .craft__grid > .craft__media { order: 2; }
.craft--flip .craft__grid > .craft__body  { order: 1; }

.craft__media { position: relative; }

.frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--ink-2);
}
.frame--main img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  scale: 1.12;
  transition: scale 1.2s var(--ease-out);
}
html.js .frame--main {
  clip-path: inset(10% 6% 10% 6% round 18px);
  transition: clip-path 1.3s var(--ease-out);
}
html.js .frame--main.is-in { clip-path: inset(0 0 0 0 round 18px); }
html.js .frame--main.is-in img { scale: 1.04; }

.frame--offset {
  position: absolute;
  right: -8%;
  bottom: -12%;
  width: clamp(150px, 15vw, 230px);
  border-radius: 14px;
  border: 6px solid var(--ink);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .45);
}
.craft--flip .frame--offset { right: auto; left: -8%; }
.frame--offset img { aspect-ratio: 3 / 4; object-fit: cover; }
.frame--offset figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.6rem .9rem .7rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: .82rem;
  color: var(--cream);
  background: linear-gradient(0deg, rgba(22, 17, 13, .85), transparent);
}

.craft__body { position: relative; z-index: 1; }
.ticks {
  list-style: none;
  margin: clamp(1.6rem, 3vw, 2.4rem) 0;
  display: grid;
  gap: .85rem;
}
.ticks li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--cream-60);
  font-size: .95rem;
}
.ticks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .62em;
  width: 1.1rem;
  height: 1px;
  background: var(--amber);
}
.linkline {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber);
  padding-bottom: .4em;
  border-bottom: 1px solid rgba(217, 160, 91, .35);
  transition: gap .4s var(--ease-out), border-color .4s;
}
.linkline::after { content: '↓'; font-size: 1.05em; transition: transform .4s var(--ease-out); }
.linkline:hover { gap: 1.1em; border-color: var(--amber); }
.linkline:hover::after { transform: translateY(3px); }

@media (max-width: 900px) {
  .craft__grid { grid-template-columns: 1fr; }
  .craft--flip .craft__grid > .craft__media { order: 0; }
  .frame--offset { right: 4%; bottom: -10%; }
  .craft--flip .frame--offset { left: 4%; }
  .craft__media { margin-bottom: 3rem; }
}

/* ── COLD BREW feature ─────────────────────────────────────────── */
.coldbrew__track { height: 280vh; }
.coldbrew__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.coldbrew__media {
  position: relative;
  /* starts as a card in the photo's own aspect ratio — the full glass is visible,
     then GSAP grows it to the viewport and object-fit: cover zooms in */
  width: min(52vh, 84vw);
  aspect-ratio: 1600 / 2404;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .5);
}
html.no-js .coldbrew__media, html.reduced .coldbrew__media {
  width: 100%;
  height: 100svh;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
}
.coldbrew__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}
.coldbrew__tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,17,13,.15), rgba(22,17,13,.55) 88%);
  opacity: 0;
  transition: opacity .6s;
}
.coldbrew__caption {
  position: absolute;
  z-index: 2;
  inset-inline: 0;
  bottom: clamp(2.5rem, 9vh, 6rem);
  text-align: center;
  padding: 0 var(--gutter);
  opacity: 0;
  transform: translateY(3rem);
}
html.no-js .coldbrew__caption, html.reduced .coldbrew__caption { opacity: 1; transform: none; }
.coldbrew__title {
  font-family: var(--serif);
  font-weight: 420;
  font-variation-settings: 'opsz' 120;
  font-size: clamp(2.6rem, 8vw, 6.4rem);
  line-height: 1;
  text-shadow: 0 2px 44px rgba(0, 0, 0, .5);
}
.coldbrew__title em { color: var(--amber); }

/* ── ROASTERY band + marquee ───────────────────────────────────── */
.band {
  position: relative;
  height: clamp(420px, 72vh, 640px);
  overflow: hidden;
  display: grid;
  align-items: center;
}
.band__bg {
  position: absolute;
  inset: -18% 0;
}
.band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.72);
}
.band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, transparent 18%, transparent 82%, var(--ink) 100%);
}
.band__marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.band__row {
  display: inline-block;
  animation: marquee 30s linear infinite;
}
.band__row span {
  font-family: var(--serif);
  font-size: clamp(3rem, 8.5vw, 7.5rem);
  font-weight: 420;
  color: transparent;
  -webkit-text-stroke: 1px rgba(243, 234, 217, .75);
  letter-spacing: .01em;
}
.band__row span.is-solid { color: var(--amber); -webkit-text-stroke: 0; font-style: italic; font-weight: 380; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ── MENU ──────────────────────────────────────────────────────── */
.menu {
  padding: clamp(6rem, 14vh, 10rem) 0;
  background: var(--ink);
}
.menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.menu__head {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 380;
  font-size: 1.35rem;
  color: var(--amber);
  margin-bottom: 1.6rem;
}
.menu__list { list-style: none; }
.menu__item {
  display: flex;
  align-items: baseline;
  gap: .9rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--cream-12);
  transition: padding-left .45s var(--ease-out);
}
.menu__item:hover { padding-left: .6rem; }
.menu__item:hover .menu__name { color: var(--amber); }
.menu__name {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1rem + .6vw, 1.5rem);
  font-weight: 420;
  transition: color .35s;
}
.menu__name small {
  display: block;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 400;
  color: var(--cream-35);
  margin-top: .25rem;
  letter-spacing: .02em;
}
.menu__dots {
  flex: 1;
  border-bottom: 1px dotted var(--cream-35);
  opacity: .5;
  transform: translateY(-.35rem);
}
.menu__price {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--cream-60);
  font-variant-numeric: tabular-nums;
}
.menu__note {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  font-size: .85rem;
  color: var(--cream-35);
  font-style: italic;
  font-family: var(--serif);
}
.menu__float {
  position: fixed;
  z-index: 60;
  top: 0; left: 0;
  width: 220px;
  aspect-ratio: 3.4 / 4;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
  pointer-events: none;
  opacity: 0;
  scale: .85;
  rotate: 3deg;
  display: none;
}
@media (max-width: 900px) {
  .menu__grid { grid-template-columns: 1fr; }
}

/* ── VISIT (light flip) ────────────────────────────────────────── */
.visit {
  background: var(--paper);
  color: var(--paper-ink);
  padding: clamp(6rem, 14vh, 10rem) 0;
  border-radius: 32px 32px 0 0;
}
.visit__title {
  font-family: var(--serif);
  font-weight: 440;
  font-variation-settings: 'opsz' 120;
  font-size: clamp(2.6rem, 2rem + 4.5vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -.015em;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.visit__title em { color: var(--amber-deep); font-weight: 380; }
.visit__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.visit__head {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--paper-ink-60);
  margin-bottom: 1.2rem;
}
.visit__big {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 1.2rem + 1.6vw, 2.3rem);
  font-weight: 420;
  line-height: 1.25;
}
.visit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}
.visit__hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.02rem;
}
.visit__hours td {
  padding: .85rem 0;
  border-bottom: 1px solid var(--paper-ink-14);
}
.visit__hours td:first-child { font-weight: 600; }
.visit__hours td:last-child { text-align: right; font-family: var(--serif); font-style: italic; }
.visit__note {
  margin-top: 1.6rem;
  font-size: .9rem;
  color: var(--paper-ink-60);
  line-height: 1.8;
}
@media (max-width: 900px) {
  .visit__grid { grid-template-columns: 1fr; }
}

/* ── FOOTER ────────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  padding: clamp(5rem, 10vh, 8rem) 0 2.5rem;
  overflow: hidden;
}
.footer__word {
  font-family: var(--serif);
  font-weight: 440;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(3rem, 12.5vw, 11rem);
  line-height: 1.05;
  text-align: center;
  letter-spacing: -.01em;
  white-space: nowrap;
  margin-bottom: clamp(3rem, 8vw, 6rem);
}
.footer__word em { color: var(--amber); font-weight: 340; }
.footer__word .l { display: inline-block; }
html.js .footer__word .l { transform: translateY(115%); }
html.js .footer__word.is-in .l {
  transform: none;
  transition: transform 1s var(--ease-out);
  transition-delay: calc(var(--i) * 40ms);
}
.footer__cols {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-12);
}
.footer__nav, .footer__social, .footer__legal { display: flex; gap: 1.6rem; }
.footer__cols a {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-35);
  transition: color .35s;
}
.footer__cols a:hover { color: var(--amber); }
.footer__fine {
  margin-top: 2.2rem;
  font-size: .74rem;
  color: var(--cream-35);
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
}

/* ── Reduced motion ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero__track, .coldbrew__track { height: auto; }
  .hero__sticky, .coldbrew__sticky { position: relative; height: 100svh; }
  html.js .reveal { opacity: 1; transform: none; }
  html.js .frame--main { clip-path: none; }
  .frame--main img { scale: 1; }
  .hero__act--2, .hero__act--3 { display: none; }
  .grain { display: none; }
}

@media (max-width: 640px) {
  .hero__track { height: 360vh; }
  .coldbrew__track { height: 220vh; }
  .br-desk { display: none; }
  .footer__word { white-space: normal; }
  .footer__cols { justify-content: center; text-align: center; }
}
