/* =========================================================
   BAR RUMBA — Stylesheet v3
   "Mallorca '98 Zine" edition
   Photocopied. Stapled. Slightly faded. Magazine guts.
   ========================================================= */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* =========================================================
   DESIGN TOKENS — dirtier palette
   ========================================================= */
:root {
  /* Aged, slightly dirty palette — pulled away from "clean" */
  --mustard: #C9A227;        /* was bright yellow — now dirtier */
  --mustard-deep: #9C7A14;
  --mustard-light: #E5C04F;

  --brick: #9A3321;          /* was rum red — now more clay */
  --brick-deep: #6F2014;

  --paper: #E8DDC6;          /* warmer, more aged */
  --paper-deep: #D9CCB0;
  --newsprint: #FBF6E9;      /* slightly cream-white for prints */

  --ink: #1A1612;
  --ink-2: #3D362C;
  --ink-3: #6B6155;
  --ink-4: #9C8F7E;

  --stamp: #D85515;          /* slightly muted disposable-camera orange */

  /* Type — magazine guts */
  --font-display: 'PT Serif', 'Times New Roman', Georgia, serif;
  --font-condensed: 'Oswald', 'Bebas Neue', sans-serif;
  --font-script: 'Reenie Beanie', 'Permanent Marker', cursive;
  --font-mono: 'Courier Prime', 'Courier New', monospace;
  --font-stamp: 'VT323', 'Courier New', monospace;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* =========================================================
   PAGE TEXTURE — photocopier grain
   ========================================================= */
body {
  background-color: var(--paper);
  background-image:
    radial-gradient(at 12% 8%, rgba(216, 85, 21, 0.04) 0%, transparent 40%),
    radial-gradient(at 88% 75%, rgba(154, 51, 33, 0.05) 0%, transparent 40%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.08;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence baseFrequency='0.95' numOctaves='3' seed='6'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
}

/* Photocopier streaks (subtle vertical bands) */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.025;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 80px,
    rgba(0,0,0,0.4) 80px,
    rgba(0,0,0,0.4) 81px
  );
  mix-blend-mode: multiply;
}

/* =========================================================
   PHOTO PRIMITIVES
   ========================================================= */
.print {
  position: relative;
  background: var(--newsprint);
  padding: 10px 10px 38px;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.08),
    0 14px 30px rgba(26,22,18,0.18),
    inset 0 0 0 1px rgba(0,0,0,0.04);
  display: block;
}
.print .img-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.print img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.04) saturate(0.92) sepia(0.06);
}
.print .img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 60%, rgba(154, 51, 33, 0.1) 100%);
  pointer-events: none;
  mix-blend-mode: multiply;
}

.frame-num {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  color: var(--newsprint);
  background: rgba(26, 22, 18, 0.75);
  padding: 3px 6px;
  z-index: 5;
  font-weight: 700;
  text-transform: uppercase;
}
.date-stamp {
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-family: var(--font-stamp);
  font-size: 1rem;
  color: var(--stamp);
  letter-spacing: 1.5px;
  z-index: 5;
  text-shadow: 0 0 2px rgba(216, 85, 21, 0.4);
  line-height: 1;
}
.print-cap {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 56px;
  font-family: var(--font-script);
  font-size: 1.15rem;
  color: var(--ink);
  z-index: 5;
  line-height: 1;
}

/* =========================================================
   NAV — magazine masthead style
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(26, 22, 18, 0.55) 0%, rgba(26, 22, 18, 0.18) 65%, transparent 100%);
}
.nav.scrolled {
  background: rgba(232, 221, 198, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 32px;
  border-bottom-color: var(--ink);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--newsprint);
}
.nav-brand .ico {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.5px;
}
.nav-brand .meta {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mustard);
}
.nav.scrolled .nav-brand { color: var(--ink); }
.nav.scrolled .nav-brand .meta { color: var(--brick); }

.brand-logo {
  display: block;
  height: 30px;
  width: auto;
  filter: invert(1);
  transition: filter 0.3s ease;
}
.nav.scrolled .brand-logo { filter: none; }
.brand-logo--footer {
  height: auto;
  width: 100%;
  max-width: 240px;
  padding: 8px 0;
  margin-bottom: 18px;
  filter: invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--newsprint);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 1.5px;
  background: var(--mustard);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav.scrolled .nav-links a { color: var(--ink); }

.nav-cta {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--mustard);
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, transform 0.2s;
  border: 1px solid var(--ink);
}
.nav-cta:hover { background: var(--newsprint); transform: translate(-1px,-1px); box-shadow: 2px 2px 0 var(--ink); }
.nav-cta svg { width: 12px; height: 12px; fill: currentColor; }

.hamburger {
  display: none;
  width: 28px; height: 22px;
  position: relative;
  z-index: 101;
}
.hamburger span {
  position: absolute; left: 0; right: 0;
  height: 2px;
  background: var(--newsprint);
  transition: all 0.3s ease;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }
.nav.scrolled .hamburger span { background: var(--ink); }
.hamburger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* =========================================================
   HERO — asymmetric magazine spread, photo bleeding off-edge
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--ink);
  overflow: hidden;
}

.hero-rumba {
  position: absolute;
  bottom: -28px;
  left: -24px;
  z-index: 2;
  height: 340px;
  pointer-events: none;
  opacity: 0.14;
  filter: invert(1);
  transform-origin: 50% 100%;
  transition: opacity 0.6s ease;
  animation: rumba-sway 5.5s ease-in-out infinite;
}
.hero-rumba img { display: block; height: 100%; width: auto; }
.hero:hover .hero-rumba { opacity: 0.42; }

@keyframes rumba-sway {
  0%   { transform: rotate(-1.2deg); }
  50%  { transform: rotate(1.2deg); }
  100% { transform: rotate(-1.2deg); }
}

@media (max-width: 768px) {
  .hero-rumba { height: 220px; bottom: -18px; left: -32px; opacity: 0.12; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-rumba { animation: none; }
}

/* Big bleeding photo from top-right */
.hero-main-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 92%;
  z-index: 1;
}
.hero-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(0.88) sepia(0.05) brightness(0.96);
}
/* Vignette over big photo */
.hero-main-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26,22,18,0.7) 0%, transparent 35%, transparent 65%, rgba(26,22,18,0.5) 100%),
    linear-gradient(180deg, transparent 60%, rgba(26,22,18,0.4) 100%);
  pointer-events: none;
}
/* Grain on hero */
.hero-main-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' seed='7'/></filter><rect width='300' height='300' filter='url(%23n)'/></svg>");
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 2;
}

/* Hero contact sheet — three small photos stacked top-left */
.hero-strip {
  position: absolute;
  top: 110px;
  left: 56px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-strip .print {
  width: 130px;
  padding: 6px 6px 22px;
  transform: rotate(-1.5deg);
}
.hero-strip .print:nth-child(2) { transform: rotate(1deg); margin-left: 14px; }
.hero-strip .print:nth-child(3) { transform: rotate(-0.8deg); margin-left: -8px; }
.hero-strip .print img { aspect-ratio: 1.3/1; }
.hero-strip .frame-num { font-size: 0.55rem; padding: 2px 4px; }

/* Wordmark — script, oversized, crossing the page */
.hero-wordmark {
  position: absolute;
  bottom: 18%;
  left: 4%;
  z-index: 4;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--newsprint);
  font-size: clamp(5rem, 14vw, 14rem);
  line-height: 0.82;
  letter-spacing: -4px;
  text-shadow: 0 8px 30px rgba(0,0,0,0.6);
  pointer-events: none;
}
.hero-wordmark .l1 {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.3s forwards;
}
.hero-wordmark .l2 {
  display: block;
  color: var(--mustard);
  margin-left: 1.2em;
  opacity: 0;
  transform: translateY(40px);
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.45s forwards;
}
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* Tiny tagline below wordmark */
.hero-tag {
  position: absolute;
  bottom: 12%;
  left: 5%;
  z-index: 5;
  font-family: var(--font-condensed);
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--newsprint);
  max-width: 520px;
  line-height: 1.7;
  opacity: 0;
  animation: rise 0.8s ease-out 0.8s forwards;
  border-top: 1px solid var(--mustard);
  padding-top: 14px;
}
.hero-tag em { font-style: italic; color: var(--mustard); font-family: var(--font-display); letter-spacing: 0; text-transform: none; font-size: 1.5em; }

/* Hero CTAs */
.hero-actions {
  position: absolute;
  bottom: 4.5%;
  left: 5%;
  z-index: 5;
  display: flex;
  gap: 0;
  opacity: 0;
  animation: rise 0.8s ease-out 1s forwards;
}
.hero-actions .btn { border-right-width: 0; }
.hero-actions .btn:last-child { border-right-width: 1.5px; }

/* Hero meta block — bottom right corner */
.hero-meta {
  position: absolute;
  bottom: 5%;
  right: 5%;
  z-index: 5;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--newsprint);
  line-height: 1.7;
  opacity: 0;
  animation: rise 0.8s ease-out 1.2s forwards;
}
.hero-meta .lab { color: var(--mustard); margin-right: 6px; }

/* Issue number stamp top-right — like a magazine cover */
.hero-issue {
  position: absolute;
  top: 110px;
  right: 56px;
  z-index: 5;
  font-family: var(--font-condensed);
  color: var(--newsprint);
  text-align: right;
  border-top: 2px solid var(--mustard);
  padding-top: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.hero-issue .num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--mustard);
}
.hero-issue .det {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  margin-top: 6px;
  color: var(--newsprint);
  opacity: 0.8;
}

/* Date stamp bottom-left — like a real photo */
.hero-date-stamp {
  position: absolute;
  bottom: 4.5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-family: var(--font-stamp);
  font-size: 1.4rem;
  color: var(--stamp);
  letter-spacing: 2px;
  text-shadow: 0 0 4px rgba(216, 85, 21, 0.5);
  opacity: 0;
  animation: rise 0.8s ease-out 1.4s forwards;
}

/* =========================================================
   MASTHEAD STRIP — runs under the hero like a colophon
   ========================================================= */
.masthead {
  background: var(--ink);
  color: var(--paper);
  padding: 14px 32px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--mustard);
  border-bottom: 3px double var(--mustard);
}
.masthead .star {
  color: var(--mustard);
  margin: 0 8px;
}
.masthead-marquee {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.masthead-marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.masthead-marquee-copy { display: inline-block; padding-right: 24px; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   PAGE NUMBER — appears in margin of each section
   ========================================================= */
.page-num {
  position: absolute;
  top: 50px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  color: var(--ink-3);
  text-transform: uppercase;
  z-index: 2;
}
.page-num-l { left: 32px; }
.page-num-r { right: 32px; }
.page-num strong { color: var(--brick); font-weight: 700; }

/* =========================================================
   SECTION FRAMEWORK
   ========================================================= */
section {
  position: relative;
  padding: 100px 32px;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}

/* Section header — magazine article style */
.eyebrow {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--brick);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '✱';
  font-size: 1rem;
  color: var(--mustard);
}

.section-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.92;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: 24px;
}
.section-title em { color: var(--brick); }
.section-title .roman {
  font-style: normal;
  color: var(--ink);
}

/* Anim */
.anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.anim.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   STORY (P.01) — magazine article spread
   ========================================================= */
.story {
  background: var(--paper);
  padding-top: 140px;
  padding-bottom: 140px;
}

.story-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 80px;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
}

.story-photo-wrap {
  position: relative;
  margin-top: 60px;
}
.story-photo-wrap .print {
  transform: rotate(-1.5deg);
}
.story-photo-wrap .print img {
  aspect-ratio: 4/5;
}
/* Margin note pinned to photo */
.margin-note {
  position: absolute;
  font-family: var(--font-script);
  color: var(--brick);
  font-size: 1.5rem;
  line-height: 1;
  z-index: 5;
  letter-spacing: 0.5px;
  pointer-events: none;
}
.margin-note.mn-1 {
  top: -42px;
  left: 60px;
  transform: rotate(-5deg);
  max-width: 180px;
  font-size: 1.4rem;
  line-height: 1.1;
  background: var(--paper);
  padding: 6px 12px;
}
.margin-note.mn-1::after {
  content: '↙';
  display: block;
  font-family: var(--font-mono);
  font-size: 1.6rem;
  margin-top: -4px;
}

/* Names of Andrea/Nicole/Annie set huge in the margin */
.story-names {
  position: absolute;
  bottom: -40px;
  left: -20px;
  font-family: var(--font-condensed);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--ink);
  line-height: 0.95;
  text-transform: uppercase;
  z-index: 4;
  background: var(--paper);
  padding: 10px 16px 8px;
  border: 2px solid var(--ink);
  transform: rotate(-2deg);
}
.story-names em {
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brick);
  letter-spacing: 0;
  display: block;
  font-size: 0.7em;
  text-transform: none;
}

/* Article column */
.story-article {
  font-family: var(--font-body);
}

.story-article .eyebrow { margin-top: 0; }

.story-article .lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 28px;
  font-weight: 400;
}
.story-article .lede::first-letter {
  font-size: 4em;
  float: left;
  line-height: 0.85;
  margin: 4px 12px 0 -2px;
  font-weight: 700;
  font-style: normal;
  color: var(--brick);
  font-family: var(--font-display);
}

.story-article p {
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 18px;
  font-family: var(--font-body);
}

/* Pullquote in the column */
.pullquote {
  margin: 32px 0;
  padding: 24px 0 24px 24px;
  border-left: 3px solid var(--brick);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--brick);
  letter-spacing: -0.5px;
}
.pullquote::before {
  content: '"';
  display: block;
  font-size: 4rem;
  line-height: 0.5;
  margin-bottom: 8px;
  margin-left: -10px;
}

/* Stats line in the article */
.story-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--ink);
  flex-wrap: wrap;
}
.story-stat .num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--brick);
  line-height: 1;
}
.story-stat .lab {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 2px;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-top: 6px;
}

/* Sign-off */
.story-signoff {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px dashed var(--ink-3);
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--brick);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.story-signoff::before {
  content: '—';
  color: var(--ink);
}

/* =========================================================
   MENU (P.02) — contact sheet of all drinks
   ========================================================= */
.menu {
  background: var(--paper-deep);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-top: 100px;
  padding-bottom: 100px;
}

.menu-head {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
.menu-head .lede {
  font-family: var(--font-body);
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 380px;
}

/* Filters as letterspaced strikethrough caps */
.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--ink);
}
.filter {
  font-family: var(--font-condensed);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ink-3);
  background: transparent;
  padding: 0;
  position: relative;
  transition: color 0.2s ease;
}
.filter::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1.5px;
  background: var(--ink-3);
  transform-origin: left;
  transition: transform 0.25s ease, background 0.25s ease;
}
.filter:hover { color: var(--ink); }
.filter:hover::before { background: var(--ink); }
.filter.active {
  color: var(--brick);
}
.filter.active::before {
  background: var(--brick);
  height: 2.5px;
  top: auto;
  bottom: -8px;
  transform: scaleX(1);
}
.filter:not(.active)::before {
  transform: scaleX(0.6);
}

/* Contact sheet — 5 columns, dense */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.dish {
  background: var(--newsprint);
  padding: 8px 8px 32px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.4s ease;
  box-shadow:
    0 1px 3px rgba(0,0,0,0.06),
    0 8px 18px rgba(26, 22, 18, 0.12);
}
.dish:nth-child(odd) { transform: rotate(-0.4deg); }
.dish:nth-child(even) { transform: rotate(0.5deg); }
.dish:nth-child(5n) { transform: rotate(-0.8deg); }
.dish:hover {
  transform: rotate(0) translateY(-4px) scale(1.04);
  z-index: 5;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06), 0 18px 30px rgba(26,22,18,0.2);
}
.dish.hidden {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

.dish-img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--paper-deep);
  position: relative;
}
.dish-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.92) sepia(0.06);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.dish:hover .dish-img-wrap img { transform: scale(1.06); }

.dish-frame {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 1px;
  color: var(--newsprint);
  background: rgba(26,22,18,0.7);
  padding: 2px 5px;
  z-index: 3;
  font-weight: 700;
}

.dish-label {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 6px;
}
.dish-name {
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dish-price {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--brick);
  font-weight: 700;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.dish-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--mustard);
  color: var(--ink);
  padding: 2px 6px;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  z-index: 3;
  border: 1px solid var(--ink);
  transform: rotate(3deg);
}

/* "More on the chalkboard" — newspaper ad style */
.menu-more {
  margin-top: 56px;
  padding: 30px 32px;
  border: 2px solid var(--ink);
  background: var(--newsprint);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  position: relative;
}
.menu-more::before, .menu-more::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border: 2px solid var(--ink);
  background: var(--newsprint);
  border-radius: 50%;
}
.menu-more::before { top: -8px; left: -8px; }
.menu-more::after { bottom: -8px; right: -8px; }

.menu-more h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.1;
}
.menu-more p {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 1px;
  color: var(--ink-2);
  line-height: 1.6;
  text-transform: uppercase;
}

/* =========================================================
   FEATURES (P.03) — asymmetric, NOT a grid
   ========================================================= */
.features {
  background: var(--paper);
  padding-top: 140px;
  padding-bottom: 140px;
}

.features-head {
  max-width: 880px;
  margin: 0 auto 100px;
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: end;
}
.features-head .section-title {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  margin: 0;
}
.features-head .lede {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 360px;
  padding-bottom: 8px;
}

/* Three features laid out asymmetrically */
.features-stack {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}

.feature {
  position: relative;
  margin-bottom: 100px;
  display: grid;
  gap: 50px;
  align-items: center;
}
.feature:nth-child(1) {
  grid-template-columns: 1fr 1.4fr;
  margin-left: 0;
  margin-right: 8%;
}
.feature:nth-child(2) {
  grid-template-columns: 1.4fr 1fr;
  margin-left: 12%;
  margin-right: 0;
}
.feature:nth-child(3) {
  grid-template-columns: 1fr 1.4fr;
  margin-left: 4%;
  margin-right: 6%;
}
.feature:nth-child(4) {
  grid-template-columns: 1.4fr 1fr;
  margin-left: 10%;
  margin-right: 2%;
}

.feature-print {
  position: relative;
}
.feature-print .print {
  transform: rotate(-1.5deg);
}
.feature:nth-child(2) .feature-print .print { transform: rotate(2deg); }
.feature:nth-child(3) .feature-print .print { transform: rotate(-1deg); }
.feature:nth-child(4) .feature-print .print { transform: rotate(1.5deg); }
.feature-print .print img { aspect-ratio: 4/5; }

.feature-print-num {
  position: absolute;
  top: -30px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 5rem;
  color: var(--brick);
  line-height: 0.9;
  letter-spacing: -2px;
  z-index: 4;
}
.feature:nth-child(1) .feature-print-num { left: -20px; }
.feature:nth-child(2) .feature-print-num { right: -10px; }
.feature:nth-child(3) .feature-print-num { left: -16px; }
.feature:nth-child(4) .feature-print-num { right: -14px; }
.feature-print-num small {
  display: inline-block;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  color: var(--newsprint);
  background: var(--ink);
  padding: 4px 10px;
  margin-top: 12px;
  text-transform: uppercase;
  font-weight: 700;
}

.feature-text h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.05;
  letter-spacing: -1px;
}
.feature-text h3 em { color: var(--brick); font-style: italic; }
.feature-text p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 460px;
}

/* Scroll-driven motion: each of the three Welcome blocks comes alive
   as it travels through the viewport. The polaroid drifts against
   scroll (background parallax) while the big numeric tag tilts and
   travels more dramatically for a playful magazine feel. */
@supports (animation-timeline: view()) {
  .feature-print {
    animation: feature-print-drift linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }
  .feature-print-num {
    animation: feature-num-drift linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }
  @keyframes feature-print-drift {
    from { transform: translateY(-32px); }
    to   { transform: translateY(32px); }
  }
  @keyframes feature-num-drift {
    from { transform: translateY(48px) rotate(-5deg); }
    50%  { transform: translateY(0) rotate(0deg); }
    to   { transform: translateY(-48px) rotate(5deg); }
  }
}

/* =========================================================
   PARTIES (P.05) — book the place
   ========================================================= */
.parties {
  background: var(--paper);
  padding: 100px 32px 110px;
  position: relative;
}
.parties-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 90px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.parties-photos {
  position: relative;
  min-height: 520px;
}
.parties-print {
  position: absolute;
  width: 66%;
  padding: 14px 14px 50px;
}
.parties-print .img-wrap { aspect-ratio: 3/2; }
.parties-print--01 {
  top: 0;
  left: 0;
  transform: rotate(-3deg);
  z-index: 1;
}
.parties-print--02 {
  bottom: 0;
  right: 0;
  transform: rotate(2.5deg);
  z-index: 2;
}

.parties-text .section-title {
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  margin-bottom: 22px;
}
.parties-lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 18px;
  max-width: 460px;
}
.parties-text > p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 26px;
}

/* Sticky-feeling scroll motion across the rest of the sections.
   Each animation composes with the element's existing rotation so
   the tilt stays intact while it drifts through the viewport. */
@supports (animation-timeline: view()) {
  .story-photo-wrap .print {
    animation: story-print-drift linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }
  @keyframes story-print-drift {
    from { transform: rotate(-1.5deg) translateY(-40px); }
    to   { transform: rotate(-1.5deg) translateY(40px); }
  }

  .visit-photo .print {
    animation: visit-print-drift linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }
  @keyframes visit-print-drift {
    from { transform: rotate(2deg) translateY(-36px); }
    to   { transform: rotate(2deg) translateY(36px); }
  }

  .review-hero::before {
    animation: review-quote-drift linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }
  @keyframes review-quote-drift {
    from { transform: translateY(40px) rotate(-4deg); }
    50%  { transform: translateY(0) rotate(0deg); }
    to   { transform: translateY(-40px) rotate(4deg); }
  }

  .hero-strip .print:nth-child(1) {
    animation: hero-strip-1-drift linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }
  .hero-strip .print:nth-child(2) {
    animation: hero-strip-2-drift linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }
  .hero-strip .print:nth-child(3) {
    animation: hero-strip-3-drift linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }
  @keyframes hero-strip-1-drift {
    from { transform: rotate(-1.5deg) translateY(-20px); }
    to   { transform: rotate(-1.5deg) translateY(20px); }
  }
  @keyframes hero-strip-2-drift {
    from { transform: rotate(1deg) translateY(20px); }
    to   { transform: rotate(1deg) translateY(-20px); }
  }
  @keyframes hero-strip-3-drift {
    from { transform: rotate(-0.8deg) translateY(-30px); }
    to   { transform: rotate(-0.8deg) translateY(30px); }
  }

  .parties-print--01 {
    animation: parties-print-1-drift linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }
  .parties-print--02 {
    animation: parties-print-2-drift linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }
  @keyframes parties-print-1-drift {
    from { transform: rotate(-3deg) translateY(-30px); }
    to   { transform: rotate(-3deg) translateY(30px); }
  }
  @keyframes parties-print-2-drift {
    from { transform: rotate(2.5deg) translateY(30px); }
    to   { transform: rotate(2.5deg) translateY(-30px); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-print,
  .feature-print-num,
  .story-photo-wrap .print,
  .visit-photo .print,
  .parties-print,
  .review-hero::before,
  .hero-strip .print { animation: none !important; }
}

/* =========================================================
   REVIEWS (P.04) — pull-quote magazine treatment
   ========================================================= */
.reviews {
  background: var(--ink);
  color: var(--paper);
  padding-top: 140px;
  padding-bottom: 140px;
  position: relative;
  overflow: hidden;
}
.reviews .eyebrow { color: var(--mustard); }
.reviews .eyebrow::before { color: var(--paper); }

.reviews-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  margin-top: 60px;
  align-items: start;
}

/* Big pull-quote review */
.review-hero {
  position: relative;
  padding: 0 0 0 60px;
}
.review-hero::before {
  content: '\201C';
  position: absolute;
  top: -40px;
  left: -20px;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 14rem;
  color: var(--mustard);
  line-height: 1;
  pointer-events: none;
  opacity: 0.95;
}
.review-hero-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  line-height: 1.25;
  color: var(--paper);
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}
.review-hero-text em {
  color: var(--mustard);
  font-weight: 700;
}
.review-hero-attr {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--paper);
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--mustard);
  padding-top: 16px;
}
.review-hero-attr .src {
  color: var(--mustard);
  font-family: var(--font-mono);
  letter-spacing: 1.5px;
  font-size: 0.7rem;
}

/* Smaller stacked reviews */
.review-side {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.review-side-item {
  border-top: 1px dashed rgba(232, 221, 198, 0.3);
  padding-top: 24px;
}
.review-side-item:first-child { border-top: none; padding-top: 0; }

.review-stars {
  display: flex;
  gap: 2px;
  color: var(--mustard);
  margin-bottom: 12px;
}
.review-stars svg { width: 14px; height: 14px; fill: currentColor; }

.review-side-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--paper);
  font-style: italic;
  margin-bottom: 16px;
}

.review-side-attr {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--paper);
  display: flex;
  gap: 12px;
  align-items: center;
}
.review-side-attr .src {
  color: var(--ink-4);
  font-family: var(--font-mono);
  letter-spacing: 1px;
  font-size: 0.62rem;
}

/* Google rating bar */
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
  background: var(--paper);
  margin-bottom: 32px;
  font-family: var(--font-mono);
  letter-spacing: 1px;
  border: 1px solid var(--mustard);
}
.google-rating .stars {
  display: flex;
  gap: 2px;
  color: var(--brick);
}
.google-rating .stars svg { width: 14px; height: 14px; fill: currentColor; }
.google-rating .num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  color: var(--ink);
}
.google-rating .src {
  font-size: 0.62rem;
  color: var(--ink-3);
  border-left: 1px solid var(--ink-3);
  padding-left: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
}

/* =========================================================
   VISIT (P.05) — tear-out coupon + bleed photo
   ========================================================= */
.visit {
  background: var(--paper);
  padding-top: 140px;
  padding-bottom: 0;
  overflow: visible;
  position: relative;
  z-index: 2;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 600px;
}

.visit-info {
  padding-right: 60px;
}

.visit-coupon {
  margin-top: 40px;
  border: 2px dashed var(--ink);
  padding: 28px 32px;
  background: var(--newsprint);
  position: relative;
  font-family: var(--font-mono);
}
.visit-coupon::before {
  content: '✂';
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--paper);
  padding: 0 6px;
  font-size: 1.2rem;
  color: var(--ink);
}
.visit-coupon-head {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--brick);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink);
}

.visit-line {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  padding: 10px 0;
  font-size: 0.82rem;
  border-bottom: 1px dashed rgba(26, 22, 18, 0.2);
}
.visit-line:last-child { border-bottom: none; }
.visit-line .lab {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 700;
  font-size: 0.7rem;
}
.visit-line .val {
  color: var(--ink);
  font-weight: 500;
  line-height: 1.6;
}
.visit-line a.val:hover { color: var(--brick); }

.visit-actions {
  display: flex;
  gap: 0;
  margin-top: 28px;
}
.visit-actions .btn { border-right-width: 0; }
.visit-actions .btn:last-child { border-right-width: 1.5px; }

/* Visit photo - bleeds off the right edge */
.visit-photo {
  position: relative;
  min-height: 600px;
  margin-right: -32px;
}
.visit-photo .print {
  position: absolute;
  inset: 0 0 -30px 0;
  width: calc(100% + 32px);
  padding: 14px 14px 60px;
  transform: rotate(2deg);
  z-index: 3;
}
.visit-photo .print .img-wrap {
  height: 100%;
}
.visit-photo .scribble {
  position: absolute;
  font-family: var(--font-script);
  color: var(--brick);
  font-size: 1.8rem;
  z-index: 5;
  line-height: 1;
  letter-spacing: 0.5px;
}
.visit-photo .scribble.s1 {
  top: 30px;
  left: -50px;
  transform: rotate(-6deg);
  background: var(--paper);
  padding: 6px 12px;
  border: 2px solid var(--ink);
}

/* =========================================================
   BUTTONS — newspaper-ad style
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  position: relative;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  border: 1.5px solid var(--ink);
}
.btn:hover { transform: translate(-2px, -2px); }
.btn svg.messenger-ico { width: 14px; height: 14px; fill: currentColor; }

.btn-mustard {
  background: var(--mustard);
  color: var(--ink);
}
.btn-mustard:hover { box-shadow: 4px 4px 0 var(--ink); background: var(--mustard-light); }

.btn-glass {
  background: transparent;
  color: var(--newsprint);
  border-color: var(--newsprint);
}
.btn-glass:hover { background: var(--newsprint); color: var(--ink); box-shadow: 4px 4px 0 var(--mustard); }

.btn-dark {
  background: var(--ink);
  color: var(--newsprint);
}
.btn-dark:hover { box-shadow: 4px 4px 0 var(--mustard); background: var(--brick); border-color: var(--brick); }

.btn-outline {
  background: transparent;
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--newsprint); box-shadow: 4px 4px 0 var(--mustard); }

/* =========================================================
   FOOTER — back cover of the zine / colophon
   ========================================================= */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 60px 32px 28px;
  position: relative;
  overflow: hidden;
  border-top: 3px double var(--mustard);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.footer-brand .ico {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 2rem;
  color: var(--paper);
  letter-spacing: -1px;
  display: block;
  margin-bottom: 8px;
}
.footer-brand .meta {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 24px;
  display: block;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--mustard);
  line-height: 1.3;
  letter-spacing: -0.3px;
  max-width: 380px;
  border-left: 2px solid var(--mustard);
  padding-left: 16px;
}

.footer-col h4 {
  font-family: var(--font-condensed);
  font-weight: 500;
  font-size: 0.68rem;
  color: var(--paper);
  margin-bottom: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--mustard);
  padding-bottom: 10px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a, .footer-col span {
  font-size: 0.85rem;
  color: var(--ink-4);
  transition: color 0.2s ease;
  line-height: 1.6;
  font-family: var(--font-body);
}
.footer-col a:hover { color: var(--mustard); }

.footer-bottom {
  border-top: 1px solid rgba(232, 221, 198, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  color: var(--ink-4);
  max-width: 1240px;
  margin: 0 auto;
  text-transform: uppercase;
}
.footer-bottom a { color: var(--ink-4); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--mustard); }
.footer-credit {
  font-size: 0.58rem;
  opacity: 0.6;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .hero-strip { left: 32px; }
  .hero-issue { right: 32px; }
  .menu-grid { grid-template-columns: repeat(4, 1fr); }
  .features-head { grid-template-columns: 1fr; gap: 20px; }
  .feature, .feature:nth-child(1), .feature:nth-child(2), .feature:nth-child(3), .feature:nth-child(4) {
    grid-template-columns: 1fr 1.2fr;
    margin-left: 0; margin-right: 0;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  /* Hero — restack */
  .hero-main-photo { width: 100%; height: 100%; }
  .hero-main-photo::after {
    background: linear-gradient(180deg, rgba(26,22,18,0.35) 0%, rgba(26,22,18,0.15) 30%, rgba(26,22,18,0.7) 100%);
  }
  .hero-strip { display: none; }
  .hero-issue { top: 90px; right: 24px; }
  .hero-wordmark { font-size: clamp(3.6rem, 14vw, 6rem); bottom: 22%; }
  .hero-tag { bottom: 16%; }

  /* Sections */
  section, .story, .menu, .features, .reviews, .visit { padding: 80px 24px; }

  /* Story */
  .story-grid { grid-template-columns: 1fr; gap: 60px; }
  .story-photo-wrap { margin-top: 0; max-width: 460px; margin-left: auto; margin-right: auto; }
  .story-names { font-size: clamp(1.8rem, 6vw, 2.6rem); }

  /* Menu */
  .menu-head { grid-template-columns: 1fr; gap: 24px; }
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .menu-filters { gap: 18px; }

  /* Features */
  .feature, .feature:nth-child(1), .feature:nth-child(2), .feature:nth-child(3), .feature:nth-child(4) {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 80px;
  }
  .feature-print { max-width: 360px; margin: 0 auto; }
  .feature:nth-child(2) .feature-print, .feature:nth-child(4) .feature-print { order: 1; }
  .feature:nth-child(2) .feature-text, .feature:nth-child(4) .feature-text { order: 2; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; gap: 50px; }
  .review-hero { padding-left: 20px; }
  .review-hero::before { font-size: 10rem; top: -50px; left: -10px; }

  /* Parties */
  .parties { padding: 80px 24px 90px; }
  .parties-grid { grid-template-columns: 1fr; gap: 50px; }
  .parties-photos {
    min-height: auto;
    aspect-ratio: 3/2;
    max-width: 480px;
    margin: 0 auto;
  }
  .parties-print { width: 88%; }
  .parties-print--01 { top: 0; left: 0; }
  .parties-print--02 { bottom: 0; right: 0; }

  /* Visit */
  .visit-grid { grid-template-columns: 1fr; gap: 50px; min-height: auto; }
  .visit-info { padding-right: 0; }
  .visit-photo {
    margin-right: 0;
    min-height: auto;
    max-width: 500px;
    margin: 0 auto;
  }
  .visit-photo .print {
    position: relative;
    inset: auto;
    width: 100%;
    transform: rotate(0);
  }
  .visit-photo .print .img-wrap {
    aspect-ratio: 4/5;
    height: auto;
  }
  .visit-photo .scribble.s1 {
    left: 18px;
    top: -16px;
    font-size: 1.4rem;
  }

  /* Page numbers */
  .page-num { display: none; }
}

@media (max-width: 640px) {
  .nav { padding: 12px 20px; }
  .nav.scrolled { padding: 10px 20px; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--paper);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: var(--ink) !important; font-size: 1rem; }
  .nav-cta { display: none; }
  .hamburger { display: block; }
  .nav-brand .meta { display: none; }

  /* Hero */
  .hero-issue { top: 80px; right: 20px; }
  .hero-issue .num { font-size: 1.8rem; }
  .hero-wordmark { font-size: clamp(3rem, 18vw, 5rem); left: 5%; bottom: 32%; }
  .hero-tag {
    bottom: 14%;
    padding-top: 10px;
    font-size: 0.6rem;
    letter-spacing: 3px;
    line-height: 1.6;
  }
  .hero-actions {
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
    bottom: 4%;
  }
  .hero-actions .btn {
    border-right-width: 1.5px;
    padding: 10px 16px;
    font-size: 0.62rem;
    letter-spacing: 1.6px;
  }
  .hero-meta { display: none; }
  .hero-date-stamp { display: none; }

  /* Masthead */
  .masthead { padding: 10px 20px; font-size: 0.6rem; }

  section, .story, .menu, .features, .reviews, .visit { padding: 64px 20px; }

  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .menu-filters { gap: 14px; }
  .filter { font-size: 0.78rem; letter-spacing: 3px; }

  .menu-more { grid-template-columns: 1fr; }

  .review-hero::before { font-size: 8rem; top: -40px; }

  .footer { padding: 50px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}
