/*
  CLIENT: Slolabs by Cafficana
  ART DIRECTION: A printed Italian zine from a coffee laboratory.
                 Cream paper grain + halftone CMYK + terracotta-red stamp ink.
*/

/* ============ TOKENS ============ */
:root {
  --paper: #F2E9D7;
  --paper-2: #EAE0CB;
  --paper-3: #E2D6BD;
  --ink: #1C1410;
  --ink-soft: #41301F;
  --ink-mute: #6A4F3B;
  --line: #1C1410;
  --red: #C2331E;
  --red-deep: #9A2412;
  --red-soft: #DA624C;
  --green: #1E4D3A;
  --green-soft: #2F6B53;
  --gold: #B6892B;

  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Inter Tight", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "Courier New", monospace;
  --font-hand: "Caveat", cursive;

  --pad-x: clamp(16px, 4vw, 56px);
  --section-y: clamp(64px, 10vw, 140px);
  --max: 1380px;

  --t-snap: 0.18s cubic-bezier(.4,1.6,.6,1);
  --t-quick: 0.3s cubic-bezier(.2,.7,.3,1);
  --t-slow: 0.7s cubic-bezier(.2,.7,.3,1);
}

[data-theme="press"] {
  --paper: #1A0F0B;
  --paper-2: #221511;
  --paper-3: #2A1B16;
  --ink: #F2E9D7;
  --ink-soft: #C9B89F;
  --ink-mute: #8E7660;
  --line: #F2E9D7;
  --red: #E0432A;
  --red-deep: #B53520;
  --red-soft: #F0846C;
  --green: #4F8568;
  --gold: #D9A84A;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { max-width: 100%; overflow-x: clip; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  position: relative;
  font-feature-settings: 'ss01', 'cv11';
}

/* PAPER GRAIN + HALFTONE TEXTURE */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(circle at 1px 1px, var(--ink) 0.5px, transparent 0.6px),
    repeating-linear-gradient(0deg, transparent 0 2px, oklch(0% 0 0 / 0.012) 2px 3px),
    repeating-linear-gradient(90deg, transparent 0 2px, oklch(0% 0 0 / 0.008) 2px 3px);
  background-size: 4px 4px, 100% 100%, 100% 100%;
  opacity: 0.18;
  mix-blend-mode: multiply;
}
[data-theme="press"] body::before { mix-blend-mode: screen; opacity: 0.10; }

img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--red); color: var(--paper); }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ============ CORE TYPE ============ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.italic { font-style: italic; font-weight: 400; }
.script { font-family: var(--font-hand); font-weight: 400; }
.mono { font-family: var(--font-mono); }
.eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; font-weight: 500; color: var(--ink-mute);
}
.kicker {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px;
}
.kicker::before { content: ""; width: 16px; height: 1px; background: currentColor; }
.dropcap::first-letter {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  float: left; font-size: 5.4em; line-height: 0.85;
  margin: 8px 12px -4px 0; color: var(--red);
}

/* ============ LAYOUT ============ */
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.section { padding: var(--section-y) 0; position: relative; z-index: 2; }
.rule { height: 1px; background: var(--line); }
.rule-double { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); height: 4px; }

/* ============ TOP RULE ============ */
.toprule {
  position: relative; z-index: 50;
  background: var(--ink); color: var(--paper);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 8px var(--pad-x);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  border-bottom: 1px solid var(--ink);
}
.toprule .dot { display: inline-block; width: 8px; height: 8px; background: var(--red); border-radius: 50%; margin-right: 8px; vertical-align: 1px; animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }
@media (max-width: 720px) {
  .toprule { font-size: 9.5px; gap: 10px; padding: 6px var(--pad-x); }
  .toprule .hide-sm { display: none; }
}

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--pad-x);
  transition: padding var(--t-quick);
}
.nav.scrolled { padding-top: 10px; padding-bottom: 10px; box-shadow: 0 1px 0 var(--line), 0 16px 40px oklch(0% 0 0 / 0.05); }
.nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; min-width: 0; }
.nav-brand .logo {
  min-width: 44px; height: 38px; padding: 0 9px;
  background: var(--red); color: var(--paper);
  border-radius: 9px;
  display: inline-grid; place-items: center;
  font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: 20px;
  letter-spacing: -0.04em;
  border: 1.5px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  transform: rotate(-3deg);
  transition: transform var(--t-snap);
  flex-shrink: 0;
}
.nav-brand:hover .logo { transform: rotate(2deg) scale(1.04); }
.nav-brand .name { font-family: var(--font-display); font-weight: 900; font-size: 22px; letter-spacing: -0.02em; line-height: 1; }
.nav-brand .name small { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-mute); display: block; font-weight: 400; }

.nav-links { display: none; gap: 24px; align-items: center; }
.nav-links a { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; position: relative; transition: color var(--t-quick); white-space: nowrap; }
.nav-links a:hover { color: var(--red); }
.nav-links a.active { color: var(--red); }
.nav-links a::before { content: counter(navc, decimal-leading-zero) "."; counter-increment: navc; color: var(--red); margin-right: 6px; opacity: 0.7; }
.nav-links { counter-reset: navc; }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.icon-btn {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-grid; place-items: center;
  transition: all var(--t-snap);
  flex-shrink: 0;
}
.icon-btn:hover { background: var(--ink); color: var(--paper); transform: translateY(-1px); }
.icon-btn svg { width: 16px; height: 16px; }

.nav-cta { display: none; }
.mobile-toggle { display: inline-grid; }
@media (min-width: 980px) {
  .nav-links { display: flex; }
  .mobile-toggle { display: none; }
  .nav-cta { display: inline-flex; }
}
@media (max-width: 480px) {
  .nav { padding: 12px var(--pad-x); }
  .nav-brand .name { font-size: 19px; }
  .nav-brand .logo { width: 34px; height: 34px; font-size: 19px; }
  .icon-btn { width: 36px; height: 36px; }
}

/* ============ MOBILE MENU ============ */
.menu-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: var(--paper);
  display: flex; flex-direction: column; padding: 20px var(--pad-x) 40px;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(.6,0,.05,1);
  overflow-y: auto;
}
.menu-overlay.open { transform: translateY(0); }
.menu-overlay-head { display: flex; justify-content: space-between; align-items: center; }
.menu-list { list-style: none; margin-top: 50px; counter-reset: mc; display: grid; gap: 0; }
.menu-list a {
  display: flex; align-items: baseline; gap: 18px;
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  font-size: clamp(34px, 9vw, 68px); letter-spacing: -0.025em; line-height: 1;
  padding: 16px 0; border-bottom: 1px solid var(--ink);
}
.menu-list a::before { counter-increment: mc; content: counter(mc, decimal-leading-zero); font-family: var(--font-mono); font-style: normal; font-weight: 400; font-size: 13px; letter-spacing: 0.18em; color: var(--red); }
.menu-list a:hover, .menu-list a.active { color: var(--red); }
.menu-foot { margin-top: auto; padding-top: 32px; display: grid; gap: 6px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); }

/* ============ MASTHEAD ============ */
.masthead {
  position: relative;
  padding: clamp(20px, 3vw, 32px) var(--pad-x) clamp(40px, 6vw, 80px);
  border-bottom: 6px double var(--ink);
  z-index: 2;
}
.masthead-meta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  margin-bottom: 22px;
  gap: 8px;
}
.masthead-meta .center { text-align: center; }
.masthead-meta .right { text-align: right; }
.masthead-meta em { font-style: italic; color: var(--red); }
@media (max-width: 720px) {
  .masthead-meta { grid-template-columns: 1fr; gap: 4px; font-size: 9.5px; text-align: center; }
  .masthead-meta .center, .masthead-meta .right { text-align: center; }
}

.masthead-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 17vw, 256px);
  letter-spacing: -0.045em;
  line-height: 0.82;
  text-align: center;
  margin: 6px 0 14px;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 0;
}
.masthead-title .vow { font-style: italic; font-weight: 400; color: var(--red); }
.masthead-tagline {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  text-align: center; font-size: clamp(16px, 2vw, 24px);
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 10px 0; max-width: 700px; margin: 0 auto;
}

/* PAGE HEADER (for internal pages) */
.page-head {
  padding: clamp(80px, 10vw, 140px) 0 clamp(40px, 6vw, 80px);
  border-bottom: 6px double var(--ink);
  text-align: center;
  position: relative;
}
.page-head .kicker { color: var(--red); justify-content: center; display: inline-flex; margin-bottom: 16px; }
.page-head h1 {
  font-size: clamp(54px, 12vw, 180px);
  font-style: italic; font-weight: 900;
  letter-spacing: -0.04em; line-height: 0.85;
}
.page-head h1 .red { color: var(--red); }
.page-head .lead {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--ink-soft);
  margin-top: 18px; max-width: 56ch; margin-left: auto; margin-right: auto;
  border-top: 1px solid var(--line); padding-top: 18px;
}
.page-head .crumbs {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.page-head .crumbs a:hover { color: var(--red); }

/* ============ HERO COVER ============ */
.hero-cover {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: clamp(32px, 6vw, 64px);
  align-items: start;
}
@media (min-width: 980px) {
  .hero-cover { grid-template-columns: 1.05fr 1.4fr 0.55fr; gap: 32px; align-items: stretch; }
}

.hero-article { padding-top: 4px; }
.hero-article .kicker { color: var(--red); margin-bottom: 16px; }
.hero-article h2 {
  font-size: clamp(30px, 4.4vw, 60px);
  letter-spacing: -0.02em; line-height: 0.95;
  margin-bottom: 18px;
}
.hero-article h2 em { color: var(--red); }
.hero-article-body { columns: 1; column-gap: 28px; font-size: 15px; line-height: 1.65; color: var(--ink-soft); }
.hero-article-body p + p { margin-top: 12px; }
.hero-article-cta { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }

.hero-collage {
  position: relative;
  min-height: 380px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  overflow: hidden;
}
@media (min-width: 600px) { .hero-collage { min-height: 460px; } }
@media (min-width: 980px) { .hero-collage { min-height: 540px; } }

.hero-collage::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 24px, oklch(0% 0 0 / 0.025) 24px 26px);
  pointer-events: none;
}
.poster-img {
  position: absolute;
  background: var(--paper);
  padding: 8px 8px 30px;
  border: 1px solid var(--line);
  box-shadow: 4px 6px 0 var(--ink);
  font-family: var(--font-hand);
  font-size: 16px;
  text-align: center;
  color: var(--ink);
  max-width: 60%;
}
.poster-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.poster-img .cap { display: block; margin-top: 6px; line-height: 1; font-size: 16px; }
.poster-1 { top: 6%; left: 4%; width: 56%; transform: rotate(-3deg); z-index: 2; }
.poster-2 { bottom: 4%; right: 5%; width: 50%; transform: rotate(4deg); z-index: 3; }
.poster-img::before {
  content: "";
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%) rotate(-2deg);
  width: 80px; height: 18px;
  background: oklch(80% 0.04 60 / 0.7);
  border: 1px dashed oklch(0% 0 0 / 0.18);
}

.hero-stamp-overlay {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: clamp(36px, 8vw, 96px);
  color: var(--red);
  letter-spacing: -0.03em;
  line-height: 0.85;
  text-shadow: 2px 2px 0 var(--paper);
  pointer-events: none;
  z-index: 4;
  text-align: center;
}
.stamp-1 { top: 38%; left: 50%; transform: translate(-50%, -50%) rotate(-6deg); }
.stamp-1 small { display: block; font-family: var(--font-mono); font-style: normal; font-weight: 500; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; margin-top: 6px; }

.hero-notes {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 22px 18px;
  position: relative;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.06em; line-height: 1.55;
  margin-bottom: 30px;
}
.hero-notes h4 {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px;
  border-bottom: 1px dashed var(--line); padding-bottom: 8px;
  line-height: 1.4;
}
.hero-notes .row { display: flex; justify-content: space-between; padding: 4px 0; border-bottom: 1px dotted var(--line); gap: 10px; }
.hero-notes .row:last-child { border-bottom: 0; }
.hero-notes .row b { font-weight: 500; color: var(--ink); }

.hero-notes-stamp {
  position: absolute;
  bottom: -22px; right: 8px;
  width: 84px; height: 84px;
  background: var(--red); color: var(--paper);
  border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 19px; letter-spacing: -0.02em; line-height: 0.95;
  transform: rotate(-12deg);
  border: 2px dashed var(--paper);
  outline: 2px solid var(--red);
  outline-offset: -8px;
  box-shadow: 3px 3px 0 var(--ink);
}
.hero-notes-stamp small { font-family: var(--font-mono); font-style: normal; font-weight: 500; font-size: 7px; letter-spacing: 0.2em; display: block; }
@media (min-width: 980px) { .hero-notes-stamp { right: -16px; width: 96px; height: 96px; font-size: 22px; } .hero-notes-stamp small { font-size: 8px; } }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 0;
  transition: transform var(--t-snap), box-shadow var(--t-snap), background var(--t-quick), color var(--t-quick);
  border: 1px solid var(--ink);
  white-space: nowrap;
}
.btn-red { background: var(--red); color: var(--paper); border-color: var(--ink); box-shadow: 4px 4px 0 var(--ink); }
.btn-red:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn-red:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn-ghost { color: var(--ink); background: var(--paper); box-shadow: 4px 4px 0 var(--ink); }
.btn-ghost:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); background: var(--ink); color: var(--paper); }
.btn-arrow { width: 14px; height: 14px; }
@media (max-width: 480px) {
  .btn { padding: 12px 18px; font-size: 10.5px; gap: 8px; }
}

/* ============ MARQUEE ============ */
.marquee {
  position: relative;
  background: var(--red); color: var(--paper);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track { display: flex; gap: 60px; white-space: nowrap; animation: marq 32s linear infinite; will-change: transform; }
.marquee-item {
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  font-size: clamp(24px, 4vw, 52px); letter-spacing: -0.02em; line-height: 1;
  display: inline-flex; align-items: center; gap: 60px;
}
.marquee-item .star { font-family: var(--font-mono); font-style: normal; font-weight: 400; color: var(--paper); transform: translateY(-3px); display: inline-block; }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-tape {
  background: var(--ink); color: var(--paper);
  padding: 10px 0;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  overflow: hidden;
}
.marquee-tape .marquee-track { animation-duration: 60s; }
.marquee-tape .marquee-item { font-family: var(--font-mono); font-weight: 500; font-size: 12px; letter-spacing: 0.32em; font-style: normal; gap: 36px; }
.marquee-tape .marquee-item .star { color: var(--red); }
@media (max-width: 480px) { .marquee { padding: 14px 0; } }

/* ============ MANIFESTO LETTER ============ */
.letter {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
}
@media (min-width: 980px) { .letter { grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: start; } }
.letter-side {
  position: relative;
  padding: 28px 24px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.06em; line-height: 1.7;
  color: var(--ink-soft);
  box-shadow: 6px 6px 0 var(--ink);
  margin-right: 20px;
}
@media (min-width: 980px) { .letter-side { margin-right: 0; padding: 32px 28px; } }
.letter-side h5 { font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px dashed var(--line); }
.letter-side .list { list-style: none; counter-reset: lt; }
.letter-side .list li { counter-increment: lt; padding: 8px 0; border-bottom: 1px dotted var(--line); display: grid; grid-template-columns: 28px 1fr; gap: 8px; }
.letter-side .list li::before { content: counter(lt, decimal-leading-zero); color: var(--red); font-weight: 500; }
.letter-side .stamp-circle {
  position: absolute; top: -16px; right: -14px;
  width: 78px; height: 78px;
  border: 2px solid var(--red); color: var(--red);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  font-size: 14px; line-height: 0.9;
  transform: rotate(8deg);
  background: var(--paper);
  text-align: center;
}
@media (min-width: 480px) { .letter-side .stamp-circle { width: 86px; height: 86px; font-size: 16px; right: -18px; top: -18px; } }
.letter-side .stamp-circle small { font-family: var(--font-mono); font-style: normal; font-weight: 500; font-size: 8px; letter-spacing: 0.18em; display: block; }

.letter-body { position: relative; }
.letter-body .sig {
  font-family: var(--font-hand); font-weight: 600; color: var(--red);
  font-size: 38px; transform: rotate(-3deg); display: inline-block; margin-top: 18px;
}
.letter-body .from {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-mute); margin-top: 8px; display: block;
}
.letter-body p {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(18px, 2.4vw, 30px);
  line-height: 1.32; letter-spacing: -0.012em;
  color: var(--ink); max-width: 64ch;
}
.letter-body p + p { margin-top: 0.7em; }
.letter-body em { color: var(--red); font-weight: 500; }
.letter-body .pull {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  color: var(--red);
  border-left: 4px solid var(--red);
  padding: 4px 0 4px 18px;
  margin: 24px 0;
  font-size: clamp(20px, 2.6vw, 32px);
  line-height: 1.25;
  display: block;
}

/* ============ SECTION HEADER ============ */
.section-header {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  align-items: end;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 4px double var(--line);
}
@media (min-width: 980px) { .section-header { grid-template-columns: 0.5fr 1fr 0.4fr; gap: 32px; } }
.section-header h2 { font-size: clamp(36px, 6.5vw, 96px); letter-spacing: -0.04em; line-height: 0.9; }
.section-header h2 em { color: var(--red); font-style: italic; font-weight: 400; }
.section-header h2 .underline { text-decoration: underline wavy var(--red); text-decoration-thickness: 3px; text-underline-offset: 8px; }
.section-header p { color: var(--ink-soft); max-width: 44ch; font-size: 16px; }
.section-header .number {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: clamp(64px, 10vw, 160px);
  color: var(--red); line-height: 0.85; letter-spacing: -0.03em;
  text-align: right; opacity: 0.92;
}
.section-header .number small { display: block; font-family: var(--font-mono); font-style: normal; font-weight: 500; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-mute); margin-top: 8px; }
@media (max-width: 720px) { .section-header .number { text-align: left; font-size: 64px; } }

/* ============ BREW INDEX ============ */
.brew-section { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.brew-grid { display: grid; gap: 24px; }
@media (min-width: 720px) { .brew-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (min-width: 1100px) { .brew-grid { grid-template-columns: repeat(3, 1fr); gap: 36px; } }
.brew-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 24px 22px 22px;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform var(--t-snap), box-shadow var(--t-snap);
}
@media (min-width: 600px) { .brew-card { padding: 28px 26px 26px; } }
.brew-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.brew-card:nth-child(odd) { transform: rotate(-0.4deg); }
.brew-card:nth-child(even) { transform: rotate(0.5deg); }
.brew-card:hover { transform: translate(-3px, -5px) rotate(0deg); }
.brew-card-row {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 14px;
  border-bottom: 1px solid var(--line); padding-bottom: 14px; margin-bottom: 14px;
}
.brew-card-num { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-mute); }
.brew-card-num b { display: block; font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: 32px; letter-spacing: -0.02em; color: var(--red); margin-top: 4px; line-height: 1; }
.brew-card h3 { font-size: 32px; font-style: italic; font-weight: 600; letter-spacing: -0.02em; line-height: 0.95; text-align: right; }
@media (min-width: 600px) { .brew-card h3 { font-size: 38px; } }
.brew-card h3 small { display: block; font-style: normal; font-family: var(--font-mono); font-weight: 500; font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-mute); margin-top: 5px; }
.brew-illust { height: 90px; display: grid; place-items: center; margin: 6px 0 14px; color: var(--ink); }
.brew-illust svg { height: 100%; max-height: 90px; width: auto; }
.brew-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.55; border-bottom: 1px dashed var(--line); padding-bottom: 14px; margin-bottom: 14px; }
.brew-spec-table { width: 100%; border-collapse: collapse; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; }
.brew-spec-table td { padding: 5px 0; border-bottom: 1px dotted var(--line); vertical-align: middle; }
.brew-spec-table td:first-child { color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.16em; font-size: 10px; }
.brew-spec-table td:last-child { text-align: right; font-weight: 500; color: var(--ink); }
.brew-spec-table tr:last-child td { border-bottom: 0; }
.brew-card .price-tag {
  position: absolute; top: -14px; right: 14px;
  background: var(--red); color: var(--paper);
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  padding: 5px 10px; letter-spacing: 0.12em;
  border: 1px solid var(--ink); box-shadow: 2px 2px 0 var(--ink);
}

/* ============ RECIPE CARDS ============ */
.house-files { background: var(--paper); }
.recipe-card {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border: 2px solid var(--line); background: var(--paper);
  position: relative;
  box-shadow: 8px 8px 0 var(--ink);
  margin-bottom: 60px;
}
@media (min-width: 920px) { .recipe-card { grid-template-columns: 1fr 1fr; } }
.recipe-card-img {
  position: relative; aspect-ratio: 5/4; overflow: hidden;
  border-right: 2px solid var(--line);
  background: var(--ink);
}
@media (max-width: 919px) { .recipe-card-img { border-right: 0; border-bottom: 2px solid var(--line); } }
.recipe-card-img img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05) saturate(1.05); }
.recipe-card-img::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 120% at 100% 100%, transparent 60%, oklch(0% 0 0 / 0.35) 100%),
    repeating-linear-gradient(0deg, oklch(0% 0 0 / 0) 0 3px, oklch(0% 0 0 / 0.06) 3px 4px);
  pointer-events: none; mix-blend-mode: multiply;
}
.recipe-card .stamp-overlay {
  position: absolute; top: 16px; left: 16px;
  background: var(--red); color: var(--paper);
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 6px 12px; font-weight: 500;
  border: 1px solid var(--paper);
  outline: 1px solid var(--red); outline-offset: 2px;
  z-index: 3; transform: rotate(-3deg);
}
.recipe-card-body {
  padding: clamp(24px, 3vw, 48px);
  display: grid; align-content: start; gap: 16px;
  position: relative;
}
.recipe-meta {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-mute);
  display: flex; gap: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.recipe-meta .red { color: var(--red); }
.recipe-card h3 { font-size: clamp(28px, 4.4vw, 60px); letter-spacing: -0.025em; line-height: 0.96; }
.recipe-card h3 em { color: var(--red); font-style: italic; font-weight: 400; }
.recipe-card .ingr { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line); padding-top: 18px; }
.recipe-card .ingr-row {
  display: grid; grid-template-columns: 28px 1fr auto; align-items: baseline; gap: 12px;
  padding: 8px 0; border-bottom: 1px dotted var(--line);
  font-family: var(--font-mono); font-size: 12px;
}
.recipe-card .ingr-row .num { color: var(--red); }
.recipe-card .ingr-row .qty { color: var(--ink-mute); }
.recipe-card .ingr-row .name { font-family: var(--font-body); font-size: 14px; font-weight: 500; }
.recipe-card .blurb { font-size: 16px; line-height: 1.6; color: var(--ink-soft); border-top: 1px dashed var(--line); padding-top: 16px; }
.recipe-card .priceline {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-top: 18px; border-top: 4px double var(--line); margin-top: 6px;
}
.recipe-card .priceline .label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-mute); }
.recipe-card .priceline .price { font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: clamp(40px, 5vw, 56px); color: var(--red); line-height: 1; letter-spacing: -0.02em; }

.recipe-card::before, .recipe-card::after {
  content: ""; position: absolute; width: 100px; height: 24px;
  background: oklch(80% 0.05 60 / 0.65);
  border: 1px dashed oklch(0% 0 0 / 0.18);
  z-index: 2;
}
.recipe-card::before { top: -10px; left: 8%; transform: rotate(-3deg); }
.recipe-card::after { bottom: -10px; right: 12%; transform: rotate(2deg); }
@media (max-width: 600px) {
  .recipe-card::before, .recipe-card::after { width: 70px; height: 18px; }
}

/* small bakery cards row */
.bakery-row { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .bakery-row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .bakery-row { grid-template-columns: repeat(4, 1fr); } }
.bake-card {
  position: relative; background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform var(--t-snap), box-shadow var(--t-snap);
}
.bake-card:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--ink); }
.bake-card-img { aspect-ratio: 1/1; overflow: hidden; border-bottom: 1px solid var(--line); position: relative; }
.bake-card-img img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.04) saturate(1.05); transition: transform 0.7s ease; }
.bake-card:hover .bake-card-img img { transform: scale(1.08); }
.bake-card-img::after { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, transparent 0 3px, oklch(0% 0 0 / 0.04) 3px 4px); mix-blend-mode: multiply; pointer-events: none; }
.bake-card-body { padding: 18px; display: grid; gap: 6px; }
.bake-card-body .num { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; color: var(--red); text-transform: uppercase; }
.bake-card-body h4 { font-size: 26px; font-style: italic; font-weight: 600; letter-spacing: -0.018em; line-height: 1; }
.bake-card-body .desc { font-size: 13px; color: var(--ink-mute); line-height: 1.45; min-height: 36px; }
.bake-card-body .price { font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: 24px; color: var(--ink); margin-top: 6px; letter-spacing: -0.01em; }

/* ============ DISPATCHES ============ */
.dispatches {
  background:
    radial-gradient(1200px 600px at 80% 20%, oklch(from var(--red) l c h / 0.06) 0%, transparent 60%),
    var(--paper-3);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.dispatch-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
@media (min-width: 980px) { .dispatch-grid { grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; } }
.postcard {
  position: relative; background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 10px 10px 0 var(--red);
  transform: rotate(-1.5deg);
  padding: 20px;
  max-width: 92%;
  margin: 0 auto;
}
@media (min-width: 600px) { .postcard { padding: 24px; max-width: 100%; } }
.postcard-img { aspect-ratio: 4/5; overflow: hidden; border: 1px solid var(--line); }
.postcard-img img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05); }
.postcard-meta {
  display: flex; justify-content: space-between; padding-top: 12px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute); margin-top: 12px; border-top: 1px solid var(--line);
  flex-wrap: wrap; gap: 6px;
}
.postcard-meta b { color: var(--red); font-family: var(--font-display); font-style: italic; font-size: 16px; letter-spacing: -0.01em; text-transform: none; }
.postage {
  position: absolute; top: -12px; right: 8px;
  width: 76px; height: 92px;
  background: var(--red); color: var(--paper);
  display: grid; place-items: center; text-align: center;
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  font-size: 18px; line-height: 0.9;
  border: 4px dashed var(--paper);
  outline: 2px solid var(--red); outline-offset: -8px;
  transform: rotate(8deg);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 6px;
}
@media (min-width: 600px) {
  .postage { top: -16px; right: -16px; width: 90px; height: 110px; font-size: 22px; padding: 8px; outline-offset: -10px; }
}
.postage small { font-family: var(--font-mono); font-style: normal; font-weight: 500; font-size: 7px; letter-spacing: 0.16em; display: block; margin-top: 4px; }

.dispatch-body h2 { font-size: clamp(36px, 6vw, 84px); letter-spacing: -0.03em; line-height: 0.95; }
.dispatch-body h2 em { color: var(--red); font-style: italic; font-weight: 400; }
.dispatch-body .lead { font-family: var(--font-display); font-style: italic; font-size: clamp(18px, 2.2vw, 26px); line-height: 1.35; color: var(--ink-soft); margin-top: 18px; max-width: 50ch; }

.journey { margin-top: 36px; display: grid; gap: 14px; }
.journey-step {
  display: grid; grid-template-columns: 56px 1fr; gap: 16px;
  padding: 14px 0; border-bottom: 1px dashed var(--line);
}
.journey-step:last-child { border-bottom: 0; }
.journey-step .stage {
  display: grid; place-items: center;
  width: 56px; height: 56px;
  border: 2px solid var(--red); color: var(--red);
  border-radius: 50%;
  font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: 22px;
  background: var(--paper);
}
.journey-step h5 { font-family: var(--font-display); font-weight: 600; font-size: 20px; letter-spacing: -0.01em; }
.journey-step p { font-size: 14px; color: var(--ink-mute); margin-top: 2px; }

/* ============ STATS ============ */
.stats {
  background: var(--ink); color: var(--paper);
  border-top: 6px double var(--paper);
  border-bottom: 6px double var(--paper);
  padding: clamp(50px, 8vw, 96px) 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (min-width: 900px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.stat { text-align: center; padding: 0 10px; border-right: 1px dashed oklch(from var(--paper) l c h / 0.3); }
.stat:nth-child(2n) { border-right: 0; }
@media (min-width: 900px) { .stat:nth-child(2n) { border-right: 1px dashed oklch(from var(--paper) l c h / 0.3); } .stat:last-child { border-right: 0; } }
.stat .figure { font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: clamp(48px, 8vw, 120px); letter-spacing: -0.04em; line-height: 0.85; color: var(--red); }
.stat .figure small { font-style: normal; font-weight: 700; font-size: 0.45em; color: var(--paper); margin-left: 4px; }
.stat .label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; opacity: 0.85; margin-top: 12px; }

/* ============ MENU PAPER ============ */
.menu-paper-wrap { padding: var(--section-y) 0; }
.menu-paper {
  background: var(--paper); border: 1px solid var(--line);
  box-shadow: 8px 8px 0 var(--ink);
  padding: clamp(20px, 4vw, 56px);
  position: relative;
}
.menu-paper::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 36px;
  background-image: radial-gradient(circle at 50% 8px, oklch(from var(--red) l c h / 0.15) 4px, transparent 5px),
                    radial-gradient(circle at 50% 30px, oklch(from var(--red) l c h / 0.15) 4px, transparent 5px);
  background-size: 36px 56px;
  background-repeat: repeat-y;
  border-right: 1px dashed var(--line);
}
@media (max-width: 720px) { .menu-paper::before { display: none; } }
.menu-paper-head { text-align: center; border-bottom: 4px double var(--line); padding-bottom: 24px; margin-bottom: 28px; }
.menu-paper-head .kicker { color: var(--red); justify-content: center; display: inline-flex; }
.menu-paper-head h2 { font-size: clamp(40px, 8vw, 110px); letter-spacing: -0.04em; line-height: 0.85; margin-top: 4px; }
.menu-paper-head h2 em { color: var(--red); font-style: italic; font-weight: 400; }
.menu-paper-head .sub { font-family: var(--font-display); font-style: italic; font-size: clamp(15px, 1.6vw, 20px); margin-top: 12px; color: var(--ink-soft); }

.menu-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; margin-bottom: 28px; border-bottom: 1px solid var(--line); }
.menu-tab {
  padding: 12px 16px;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute); position: relative;
  border: 0; background: none; cursor: pointer; transition: color var(--t-quick);
}
@media (min-width: 600px) { .menu-tab { padding: 14px 22px; font-size: 11px; letter-spacing: 0.18em; } }
.menu-tab.active { color: var(--red); }
.menu-tab.active::after { content: ""; position: absolute; bottom: -1px; left: 14px; right: 14px; height: 3px; background: var(--red); }
.menu-tab:hover:not(.active) { color: var(--ink); }

.menu-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 900px) { .menu-grid { grid-template-columns: 1fr 1fr; column-gap: 60px; } }
.menu-row {
  display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: baseline;
  padding: 14px 0; border-bottom: 1px dashed var(--line);
  position: relative;
}
.menu-row .name {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: 19px; letter-spacing: -0.01em; padding-right: 8px;
  display: inline-flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
}
@media (min-width: 600px) { .menu-row .name { font-size: 21px; gap: 10px; padding-right: 12px; } }
.menu-row .desc { font-size: 12.5px; color: var(--ink-mute); margin-top: 3px; font-family: var(--font-body); font-style: normal; font-weight: 400; }
.menu-row .badge { display: inline-block; font-family: var(--font-mono); font-size: 9px; background: var(--red); color: var(--paper); padding: 2px 8px; letter-spacing: 0.18em; text-transform: uppercase; font-style: normal; font-weight: 500; vertical-align: 3px; }
.menu-row .price { font-family: var(--font-mono); font-size: 15px; font-weight: 500; letter-spacing: 0.04em; padding-left: 8px; white-space: nowrap; }
@media (min-width: 600px) { .menu-row .price { font-size: 16px; padding-left: 12px; } }
.menu-row .price::before { content: "₹"; font-size: 12px; color: var(--ink-mute); margin-right: 1px; vertical-align: 1px; }

/* ============ POLAROID GALLERY ============ */
.gallery-section { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (min-width: 900px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 26px; } }
.poloroid {
  background: var(--paper);
  padding: 10px 10px 32px;
  border: 1px solid var(--line);
  box-shadow: 5px 5px 0 var(--ink);
  position: relative;
  font-family: var(--font-hand); font-size: 17px; text-align: center;
  transition: transform var(--t-snap), box-shadow var(--t-snap);
}
@media (min-width: 600px) { .poloroid { padding: 12px 12px 40px; font-size: 18px; } }
.poloroid:nth-child(1) { transform: rotate(-2deg); }
.poloroid:nth-child(2) { transform: rotate(1.5deg); margin-top: 16px; }
.poloroid:nth-child(3) { transform: rotate(-1deg); }
.poloroid:nth-child(4) { transform: rotate(2deg); margin-top: 14px; }
.poloroid:nth-child(5) { transform: rotate(1deg); }
.poloroid:nth-child(6) { transform: rotate(-2deg); margin-top: 16px; }
.poloroid:nth-child(7) { transform: rotate(1.5deg); }
.poloroid:nth-child(8) { transform: rotate(-1.5deg); margin-top: 12px; }
.poloroid:hover { transform: translate(-2px, -4px) rotate(0deg); box-shadow: 8px 10px 0 var(--ink); z-index: 2; }
.poloroid img, .poloroid video { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; filter: saturate(1.1); }
.poloroid .cap { display: block; margin-top: 8px; color: var(--ink); line-height: 1; }
.poloroid .date { position: absolute; top: -10px; left: 10px; background: var(--red); color: var(--paper); padding: 3px 8px; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; transform: rotate(-3deg); border: 1px solid var(--ink); }

/* ============ TICKET ============ */
.visit-section { background: var(--paper); }
.ticket {
  display: grid; grid-template-columns: 1fr;
  border: 2px solid var(--line); background: var(--paper);
  position: relative;
  box-shadow: 10px 10px 0 var(--ink);
  overflow: hidden;
}
@media (min-width: 980px) { .ticket { grid-template-columns: 1.4fr auto 1fr; } }
.ticket-stub {
  border-right: 2px dashed var(--line);
  padding: clamp(20px, 3vw, 48px);
  background:
    radial-gradient(circle at 0 50%, var(--paper-2) 14px, transparent 15px),
    repeating-linear-gradient(0deg, transparent 0 4px, oklch(0% 0 0 / 0.02) 4px 5px),
    var(--paper);
  position: relative;
}
.ticket-stub::before, .ticket-stub::after {
  content: ""; position: absolute; width: 24px; height: 24px;
  background: var(--paper-2); border-radius: 50%;
  border: 2px solid var(--line); right: -14px;
}
.ticket-stub::before { top: -12px; }
.ticket-stub::after { bottom: -12px; }
@media (max-width: 979px) {
  .ticket-stub { border-right: 0; border-bottom: 2px dashed var(--line); }
  .ticket-stub::before { right: -14px; top: auto; bottom: -14px; }
  .ticket-stub::after { right: auto; left: -14px; top: auto; bottom: -14px; }
}
.ticket-stub .kicker { color: var(--red); }
.ticket-stub h2 { font-size: clamp(32px, 5vw, 64px); margin-top: 8px; line-height: 0.95; letter-spacing: -0.025em; }
.ticket-stub h2 em { color: var(--red); font-style: italic; font-weight: 400; }
.ticket-stub .lead { font-family: var(--font-display); font-style: italic; font-size: clamp(16px, 1.6vw, 20px); color: var(--ink-soft); margin-top: 14px; max-width: 50ch; }

.info-block { display: grid; grid-template-columns: 30% 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.info-block:last-child { border-bottom: 0; }
.info-block .key { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); padding-top: 4px; }
.info-block .val { font-family: var(--font-display); font-weight: 600; font-size: 17px; line-height: 1.3; }
.info-block .val small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 13px; color: var(--ink-mute); margin-top: 4px; }
.info-block a { transition: color var(--t-quick); }
.info-block a:hover { color: var(--red); }
.ticket-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

.ticket-perforation { display: none; width: 24px; background: radial-gradient(circle at 50% 12px, transparent 6px, var(--paper) 7px) center top / 100% 24px repeat-y; position: relative; }
@media (min-width: 980px) { .ticket-perforation { display: block; } }

.ticket-side { padding: clamp(20px, 3vw, 40px); display: grid; gap: 14px; align-content: center; background: var(--ink); color: var(--paper); }
.ticket-side .price-block { text-align: center; border: 2px solid var(--paper); padding: 18px 14px; }
.ticket-side .price-block .seat-no { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.7; }
.ticket-side .price-block .seat-num { font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: clamp(56px, 8vw, 110px); line-height: 0.9; color: var(--red); letter-spacing: -0.04em; }
.ticket-side .ticket-stamp { display: grid; place-items: center; width: 100px; height: 100px; margin: 8px auto 0; border: 2px solid var(--paper); color: var(--paper); border-radius: 50%; font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: 17px; line-height: 0.95; text-align: center; transform: rotate(-12deg); }
.ticket-side .ticket-stamp small { font-family: var(--font-mono); font-style: normal; font-weight: 500; font-size: 8px; letter-spacing: 0.2em; display: block; }

.findus-map { margin-top: 60px; position: relative; border: 2px solid var(--line); background: var(--paper-2); aspect-ratio: 3/1; overflow: hidden; box-shadow: 8px 8px 0 var(--ink); }
@media (max-width: 720px) { .findus-map { aspect-ratio: 4/3; } }
.findus-map iframe { width: 100%; height: 100%; border: 0; filter: contrast(1.05) sepia(0.15) saturate(1.05); }
.findus-map .pin { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -100%); background: var(--red); color: var(--paper); padding: 10px 16px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; border: 2px solid var(--ink); z-index: 2; pointer-events: none; }
.findus-map .pin::after { content: ""; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); border: 5px solid transparent; border-top-color: var(--ink); }

/* ============ FINAL CTA ============ */
.cta-stamp-section {
  background: var(--red); color: var(--paper);
  padding: clamp(60px, 12vw, 140px) 0;
  position: relative; overflow: hidden;
  border-top: 6px double var(--ink); border-bottom: 6px double var(--ink);
  text-align: center;
}
.cta-stamp-section::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, transparent 0 24px, oklch(0% 0 0 / 0.07) 24px 25px); pointer-events: none; }
.cta-stamp-section .approved {
  display: inline-block;
  border: 5px solid var(--paper);
  outline: 5px solid var(--red); outline-offset: 4px;
  padding: 8px 20px;
  margin-bottom: 28px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase;
  transform: rotate(-3deg); font-weight: 500;
}
.cta-stamp-section h2 { font-size: clamp(44px, 11vw, 168px); letter-spacing: -0.04em; line-height: 0.85; font-style: italic; font-weight: 900; }
.cta-stamp-section h2 .non-italic { font-style: normal; font-weight: 700; }
.cta-stamp-section h2 em { color: var(--paper); font-style: italic; font-weight: 400; }
.cta-stamp-section .sub { font-family: var(--font-display); font-style: italic; font-size: clamp(17px, 2.4vw, 26px); margin-top: 18px; opacity: 0.95; max-width: 520px; margin-left: auto; margin-right: auto; padding: 0 var(--pad-x); }
.cta-stamp-section .btn-row { margin-top: 32px; display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; padding: 0 var(--pad-x); }
.cta-stamp-section .btn-red { background: var(--paper); color: var(--ink); border-color: var(--ink); box-shadow: 4px 4px 0 var(--ink); }
.cta-stamp-section .btn-red:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); background: var(--ink); color: var(--paper); }
.cta-stamp-section .btn-ghost { background: transparent; color: var(--paper); border-color: var(--paper); box-shadow: 4px 4px 0 var(--ink); }
.cta-stamp-section .btn-ghost:hover { background: var(--paper); color: var(--ink); }

/* ============ COLOPHON FOOTER ============ */
.colophon { background: var(--ink); color: var(--paper); padding: clamp(50px, 8vw, 100px) 0 24px; }
.colophon-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 900px) { .colophon-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 56px; } }
.colophon-brand h3 { font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: clamp(40px, 5vw, 56px); letter-spacing: -0.03em; line-height: 0.92; color: var(--red); }
.colophon-brand h3 small { display: block; font-family: var(--font-mono); font-style: normal; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--paper); margin-top: 4px; opacity: 0.7; }
.colophon-brand p { font-family: var(--font-display); font-style: italic; margin-top: 18px; font-size: 17px; line-height: 1.45; max-width: 30ch; opacity: 0.85; }
.colophon-socials { display: flex; gap: 10px; margin-top: 20px; }
.colophon-socials a { width: 38px; height: 38px; border: 1px solid var(--paper); border-radius: 50%; display: grid; place-items: center; transition: all var(--t-snap); }
.colophon-socials a:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }
.colophon-socials a svg { width: 16px; height: 16px; }
.colophon h6 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; font-weight: 500; }
.colophon ul { list-style: none; display: grid; gap: 8px; font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 16px; }
.colophon ul a { transition: color var(--t-quick); }
.colophon ul a:hover { color: var(--red); }
.colophon-bottom {
  margin-top: 40px; padding-top: 20px;
  border-top: 1px solid oklch(from var(--paper) l c h / 0.2);
  display: grid; grid-template-columns: 1fr; gap: 12px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: oklch(from var(--paper) l c h / 0.6);
}
@media (min-width: 720px) { .colophon-bottom { grid-template-columns: 1fr auto 1fr; align-items: center; } }
.colophon-bottom .credit { text-align: center; }
.colophon-bottom .credit a { color: var(--red); transition: color var(--t-quick); border-bottom: 1px dashed currentColor; padding-bottom: 1px; }
.colophon-bottom .credit a:hover { color: var(--paper); }
.colophon-bottom .right { text-align: right; }
@media (max-width: 719px) {
  .colophon-bottom { text-align: center; } .colophon-bottom .right { text-align: center; }
}

/* ============ INTERNAL PAGE STYLES ============ */
/* Two-col article (story page) */
.long-form {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  font-size: 17px; line-height: 1.7; color: var(--ink-soft);
  max-width: 72ch; margin: 0 auto;
}
.long-form h2 { font-size: clamp(32px, 4vw, 56px); color: var(--ink); margin: 32px 0 16px; }
.long-form h2 em { color: var(--red); font-style: italic; font-weight: 400; }
.long-form h3 { font-size: clamp(24px, 3vw, 36px); color: var(--ink); margin: 24px 0 12px; }
.long-form p strong { color: var(--ink); font-weight: 600; }
.long-form p em { color: var(--red); font-style: italic; }
.long-form .pull { font-family: var(--font-display); font-style: italic; color: var(--red); border-left: 4px solid var(--red); padding: 6px 0 6px 18px; margin: 28px 0; font-size: clamp(20px, 2.4vw, 28px); line-height: 1.3; }
.long-form ul { padding-left: 24px; margin: 14px 0; }
.long-form ul li { margin: 6px 0; }
.long-form ul li::marker { color: var(--red); }

/* Timeline (story) */
.timeline { display: grid; gap: 0; max-width: 800px; margin: 0 auto; }
.timeline-row {
  display: grid; grid-template-columns: 80px 1fr; gap: 18px;
  padding: 18px 0; border-bottom: 1px dashed var(--line);
  align-items: start;
}
@media (min-width: 720px) { .timeline-row { grid-template-columns: 120px 1fr; gap: 28px; } }
.timeline-year { font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: clamp(28px, 4vw, 44px); color: var(--red); letter-spacing: -0.02em; line-height: 1; }
.timeline-content h4 { font-family: var(--font-display); font-weight: 600; font-size: clamp(18px, 2vw, 24px); margin-bottom: 6px; }
.timeline-content p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; max-width: 58ch; }

/* Team grid (story) */
.team-grid { display: grid; gap: 24px; grid-template-columns: 1fr; margin-top: 36px; }
@media (min-width: 700px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card { background: var(--paper); border: 1px solid var(--line); box-shadow: 5px 5px 0 var(--ink); padding: 22px; }
.team-card h4 { font-size: 26px; font-style: italic; font-weight: 600; }
.team-card .role { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); margin-top: 4px; }
.team-card p { font-size: 14px; color: var(--ink-soft); margin-top: 12px; line-height: 1.55; }

/* Reservation form (visit) */
.reserve-form {
  display: grid; gap: 16px; max-width: 560px; margin: 36px auto 0;
  background: var(--paper); border: 2px solid var(--line);
  box-shadow: 8px 8px 0 var(--ink);
  padding: clamp(20px, 3vw, 36px);
}
.reserve-form h3 { font-size: clamp(28px, 3vw, 40px); font-style: italic; font-weight: 600; }
.reserve-form h3 em { color: var(--red); }
.reserve-form .form-row { display: grid; gap: 16px; }
@media (min-width: 600px) { .reserve-form .form-row.two { grid-template-columns: 1fr 1fr; } }
.reserve-form label { display: grid; gap: 6px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); font-weight: 500; }
.reserve-form input, .reserve-form select, .reserve-form textarea {
  font: inherit; font-family: var(--font-body); font-size: 16px;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 0;
  padding: 12px 14px; color: var(--ink);
  transition: border-color var(--t-quick), background var(--t-quick);
  width: 100%;
}
.reserve-form input:focus, .reserve-form select:focus, .reserve-form textarea:focus { outline: 2px solid var(--red); outline-offset: 2px; background: var(--paper); }
.reserve-form textarea { resize: vertical; min-height: 100px; }
.reserve-form button { margin-top: 8px; justify-self: start; }

/* Article cards (journal) */
.article-grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .article-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (min-width: 1100px) { .article-grid { grid-template-columns: repeat(3, 1fr); } }
.article-card { background: var(--paper); border: 1px solid var(--line); box-shadow: 5px 5px 0 var(--ink); transition: transform var(--t-snap), box-shadow var(--t-snap); display: grid; grid-template-rows: auto 1fr; }
.article-card:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--ink); }
.article-card-img { aspect-ratio: 16/10; overflow: hidden; border-bottom: 1px solid var(--line); }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; filter: contrast(1.04); }
.article-card:hover .article-card-img img { transform: scale(1.05); }
.article-card-body { padding: 22px; display: grid; gap: 10px; align-content: start; }
.article-card .meta { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); display: flex; gap: 16px; flex-wrap: wrap; }
.article-card .meta span:not(.tag) { color: var(--ink-mute); }
.article-card h3 { font-size: clamp(22px, 2.5vw, 30px); font-style: italic; font-weight: 600; line-height: 1.05; letter-spacing: -0.01em; }
.article-card .excerpt { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.article-card .more { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); padding-top: 10px; border-top: 1px dashed var(--line); margin-top: 6px; font-weight: 500; }

/* Featured article (journal first) */
.feature-article { display: grid; grid-template-columns: 1fr; gap: 0; border: 2px solid var(--line); background: var(--paper); box-shadow: 8px 8px 0 var(--ink); margin-bottom: 60px; }
@media (min-width: 900px) { .feature-article { grid-template-columns: 1.2fr 1fr; } }
.feature-article-img { aspect-ratio: 4/3; overflow: hidden; border-bottom: 2px solid var(--line); }
@media (min-width: 900px) { .feature-article-img { border-bottom: 0; border-right: 2px solid var(--line); aspect-ratio: auto; } }
.feature-article-img img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05); }
.feature-article-body { padding: clamp(24px, 3vw, 48px); display: grid; align-content: center; gap: 16px; }
.feature-article-body .meta { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); }
.feature-article-body h2 { font-size: clamp(30px, 4vw, 60px); font-style: italic; font-weight: 600; letter-spacing: -0.02em; line-height: 1; }
.feature-article-body p { font-family: var(--font-display); font-style: italic; font-size: clamp(17px, 1.8vw, 22px); color: var(--ink-soft); line-height: 1.4; }

/* ============ MOTION HELPERS ============ */
.r-up { will-change: transform, opacity; }

/* Utility to hide on certain breakpoints */
.hide-sm { display: none; }
@media (min-width: 720px) { .hide-sm { display: inline; } }
.show-sm { display: inline; }
@media (min-width: 720px) { .show-sm { display: none; } }

/* ====================================================================
   PREMIUM LAYER — animations, social proof, brand-story exhibits
   Added in the polish pass. All motion fails open + respects reduced-motion.
   ==================================================================== */

/* ---- Scroll progress ribbon (press-tape style, top of viewport) ---- */
.scroll-ribbon {
  position: fixed; top: 0; left: 0; height: 4px; width: 0%;
  background: var(--red);
  z-index: 60;
  pointer-events: none;
  box-shadow: 0 0 0 1px var(--ink);
}
.scroll-ribbon::after {
  content: ""; position: absolute; right: -1px; top: 0; bottom: 0; width: 2px; background: var(--ink);
}

/* ---- Word-by-word headline reveal ---- */
.reveal-words .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
  will-change: transform, opacity;
}
.reveal-words .word .inner { display: inline-block; will-change: transform, opacity; }

/* ---- Image clip reveal (slides a paper mask off the photo) ---- */
.clip-reveal { position: relative; overflow: hidden; }
.clip-reveal::after {
  content: ""; position: absolute; inset: 0; background: var(--paper);
  transform-origin: right; z-index: 5;
  transition: transform 0.9s cubic-bezier(.7,0,.2,1);
}
.clip-reveal.revealed::after { transform: scaleX(0); }
@media (prefers-reduced-motion: reduce) { .clip-reveal::after { display: none; } }

/* ---- Tilt-on-hover (desktop pointer only) ---- */
@media (hover: hover) and (pointer: fine) {
  .tilt { transition: transform var(--t-quick); transform-style: preserve-3d; }
}

/* ---- Magnetic buttons keep their snap; nothing extra needed in CSS ---- */

/* ====================================================================
   SOCIAL PROOF — real 4.5★ / 71 Google reviews
   ==================================================================== */
.proof { background: var(--paper); }
.proof-head { text-align: center; margin-bottom: 44px; }
.proof-head .stars {
  font-family: var(--font-mono); color: var(--red); font-size: 28px; letter-spacing: 4px;
  display: block; margin-bottom: 14px;
}
.proof-head .rating-line {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: clamp(22px, 3vw, 36px); letter-spacing: -0.01em;
}
.proof-head .rating-line b { color: var(--red); font-style: normal; font-weight: 900; }
.proof-head .source { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-mute); margin-top: 10px; }

.proof-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 760px) { .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; } }
@media (min-width: 1080px) { .proof-grid { grid-template-columns: repeat(3, 1fr); } }
.proof-card {
  background: var(--paper); border: 1px solid var(--line);
  box-shadow: 5px 5px 0 var(--ink);
  padding: 26px 24px;
  position: relative;
  transition: transform var(--t-snap), box-shadow var(--t-snap);
}
.proof-card:nth-child(odd) { transform: rotate(-0.5deg); }
.proof-card:nth-child(even) { transform: rotate(0.6deg); }
.proof-card:hover { transform: translate(-3px,-3px) rotate(0deg); box-shadow: 8px 8px 0 var(--ink); }
.proof-card .quote-mark {
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  font-size: 60px; line-height: 0.6; color: var(--red); display: block; height: 28px;
}
.proof-card p {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(17px, 1.8vw, 20px); line-height: 1.4; color: var(--ink);
  margin: 8px 0 18px;
}
.proof-card .by {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute); border-top: 1px dashed var(--line); padding-top: 14px;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.proof-card .by .stars-sm { color: var(--red); letter-spacing: 1px; }

/* ====================================================================
   BRAND-STORY EXHIBITS — the brand's own poster graphics, framed
   ==================================================================== */
.exhibit-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 820px) { .exhibit-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
.exhibit {
  position: relative; background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 7px 7px 0 var(--ink);
  padding: 14px 14px 18px;
  transition: transform var(--t-snap), box-shadow var(--t-snap);
}
.exhibit:nth-child(1) { transform: rotate(-1deg); }
.exhibit:nth-child(2) { transform: rotate(0.6deg); }
.exhibit:nth-child(3) { transform: rotate(-0.5deg); }
.exhibit:hover { transform: translateY(-5px) rotate(0deg); box-shadow: 10px 12px 0 var(--ink); z-index: 2; }
.exhibit img { width: 100%; height: auto; display: block; border: 1px solid var(--line); }
.exhibit .plate {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  margin-top: 12px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute);
}
.exhibit .plate b { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 17px; letter-spacing: -0.01em; color: var(--red); text-transform: none; }
.exhibit .tape-pin {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%) rotate(-2deg);
  width: 84px; height: 20px; background: oklch(80% 0.05 60 / 0.62);
  border: 1px dashed oklch(0% 0 0 / 0.18);
}

/* ====================================================================
   STORY HERO with real storefront photo band
   ==================================================================== */
.story-band {
  position: relative; overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--ink);
}
.story-band img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.92; }
.story-band .story-band-inner { position: relative; aspect-ratio: 21/9; }
@media (max-width: 720px) { .story-band .story-band-inner { aspect-ratio: 4/3; } }
.story-band .overlay {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
  background: radial-gradient(120% 120% at 50% 50%, transparent 30%, oklch(0% 0 0 / 0.55) 100%);
  padding: var(--pad-x);
}
.story-band .overlay h2 {
  color: var(--paper); font-style: italic; font-weight: 900;
  font-size: clamp(32px, 6vw, 96px); letter-spacing: -0.03em; line-height: 0.9;
  text-shadow: 2px 3px 0 oklch(0% 0 0 / 0.4);
}
.story-band .overlay p {
  color: var(--paper); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; margin-top: 16px; opacity: 0.92;
}

/* ====================================================================
   READABILITY — slightly larger small copy, safer line-heights
   ==================================================================== */
.menu-row .desc, .bake-card-body .desc, .article-card .excerpt { color: var(--ink-soft); }
.brew-card p, .recipe-card .blurb { color: var(--ink-soft); }
.hero-article-body { color: var(--ink-soft); font-size: 15.5px; }
.toprule a { transition: color var(--t-quick); }
.toprule a:hover { color: var(--red-soft); }

/* press theme: ensure exhibit/proof frames read on dark */
[data-theme="press"] .proof-card,
[data-theme="press"] .exhibit { background: var(--paper-2); }
[data-theme="press"] .story-band { background: #000; }
