/* =====================================================================
   CHINA'S ALLEY · v7 · "EXHIBIT" EDITION
   Lindsay's Mexican kitchen as Smithsonian wall installation.
   Cream paper · Sepia ink · One chile-red accent.
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Big+Shoulders+Display:wght@400;600;800&family=Newsreader:ital,opsz,wght@0,6..72,300..700;1,6..72,300..700&family=Caveat:wght@500..700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* PAPER — old archival paper, slightly variable */
  --paper: #f4ebd5;
  --paper-light: #f9f1dc;
  --paper-deep: #e8dcc0;
  --paper-edge: #d4c39c;

  /* INK — sepia-leaning warm black */
  --ink: #1c1610;
  --ink-2: #2a2218;
  --ink-3: #3d3527;
  --ink-soft: #6b5a42;
  --ink-faint: #9b8868;

  /* THE accent — chile red, but only ONE */
  --chile: #b71f29;
  --chile-deep: #8a1620;

  /* Mustard — used sparingly, for tension only */
  --gold: #c8941a;
  --gold-deep: #a6760a;

  /* Subtle greens — only for "hours today" or status */
  --moss: #5e6e3a;

  /* Rules */
  --rule: #d4c39c;
  --rule-soft: #e2d3aa;

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-headline: 'Big Shoulders Display', 'Impact', sans-serif;
  --font-body: 'Newsreader', Georgia, serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --font-hand: 'Caveat', cursive;

  --ease: cubic-bezier(0.2, 0, 0, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--paper);
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--chile); color: var(--paper); }

/* =====================================================================
   LAYOUT — generous editorial margins, narrow text columns
   ===================================================================== */
.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.wrap-narrow { max-width: 760px; }
.wrap-wide { max-width: 1480px; }
@media (min-width: 768px) { .wrap { padding: 0 56px; } }
@media (min-width: 1100px) { .wrap { padding: 0 80px; } }

section { padding: 100px 0; position: relative; }
@media (min-width: 768px) { section { padding: 140px 0; } }

/* =====================================================================
   TYPOGRAPHY — editorial hierarchy
   ===================================================================== */

/* Display — Instrument Serif, italic by default for that handwritten-headline feel */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.9;
}

/* Big Shoulders for stamps, labels, hard caps */
.headline-caps {
  font-family: var(--font-headline);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 0.85;
}

/* Eyebrow labels — small caps, tracked */
.eyebrow {
  font-family: var(--font-headline);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-block;
}
.eyebrow.chile { color: var(--chile); }
.eyebrow.gold { color: var(--gold-deep); }

/* Mono — for archival markers, dates, exhibit labels */
.mono {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.lede {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: var(--ink-3);
  font-weight: 300;
  font-variation-settings: 'opsz' 24;
}

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

.hand { font-family: var(--font-hand); font-weight: 600; color: var(--chile); }

/* =====================================================================
   ARCHIVAL EXHIBIT TAGS — like museum wall labels
   ===================================================================== */
.exhibit-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 11px;
  background: var(--ink);
  color: var(--paper-light);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.exhibit-tag::before {
  content: "▸";
  color: var(--gold);
  font-size: 0.7rem;
}

/* Year stamps — like a date stamp on an archival photo */
.year-stamp {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding-left: 24px;
}
.year-stamp::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 1.5px;
  background: var(--ink-soft);
}

/* =====================================================================
   NAV — quiet editorial header
   ===================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 235, 213, 0.94);
  backdrop-filter: blur(20px) saturate(1.05);
  -webkit-backdrop-filter: blur(20px) saturate(1.05);
  border-bottom: 1px solid var(--rule);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 24px;
}
@media (min-width: 768px) { .nav-inner { padding: 22px 56px; } }
@media (min-width: 1100px) { .nav-inner { padding: 22px 80px; } }

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand .top {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 500;
}
.brand .name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.55rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 36px;
  align-items: center;
}
@media (min-width: 920px) { .nav-links { display: flex; } }

.nav-links a {
  font-family: var(--font-headline);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
  font-weight: 600;
}
.nav-links a:hover { color: var(--chile); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--chile);
}

.nav-cta {
  font-family: var(--font-headline);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-light);
  background: var(--ink);
  padding: 11px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: all 0.2s var(--ease);
}
.nav-cta:hover { background: var(--chile); transform: translateY(-1px); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 36px;
  height: 36px;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 0 auto; }
@media (min-width: 920px) { .nav-toggle { display: none; } }
@media (max-width: 919px) {
  .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--paper-light);
    padding: 28px;
    gap: 22px;
    border-bottom: 1px solid var(--rule);
    align-items: flex-start;
  }
  .nav-links.open a { font-size: 1rem; }
}

/* =====================================================================
   BUTTONS — editorial, refined
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  border: 1.5px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform 0.4s var(--ease-out);
  z-index: 0;
}
.btn > * { position: relative; z-index: 1; }
.btn span { position: relative; z-index: 1; }

.btn-ink { background: var(--ink); color: var(--paper-light); }
.btn-ink::before { background: var(--chile); }
.btn-ink:hover::before { transform: translateY(0); }

.btn-paper { background: transparent; color: var(--ink); }
.btn-paper:hover { color: var(--paper-light); }
.btn-paper:hover::before { transform: translateY(0); }

.btn-chile { background: var(--chile); color: var(--paper-light); border-color: var(--chile); }
.btn-chile::before { background: var(--ink); }
.btn-chile:hover::before { transform: translateY(0); }

.btn .arrow { transition: transform 0.3s var(--ease); display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* =====================================================================
   TICKER — minimal, archival
   ===================================================================== */
.ticker {
  background: var(--ink);
  color: var(--paper-light);
  padding: 11px 0;
  position: relative;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: scroll 50s linear infinite;
  will-change: transform;
}
.ticker-item {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
}
.ticker-item::after {
  content: "◆";
  color: var(--gold);
  margin-left: 64px;
  font-family: serif;
  font-size: 0.6em;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================================================================
   HERO — full bleed photo, archival treatment, asymmetric type
   ===================================================================== */
.hero {
  padding: 0;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper-light);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  filter:
    sepia(0.55)
    saturate(1.3)
    hue-rotate(-15deg)
    brightness(0.42)
    contrast(1.18);
  animation: kenBurns 35s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes kenBurns {
  0% { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.18) translate(-2%, -2%); }
}

/* Layered overlays for archival depth */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(183, 31, 41, 0.12) 0%, rgba(28, 22, 16, 0.4) 50%, rgba(28, 22, 16, 0.7) 100%);
  z-index: 1;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 0.94 0 0 0 0 0.83 0 0 0 0.45 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 120px 0 100px;
}

/* Asymmetric grid: left column for marker, center for headline */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 60px 1fr 280px; gap: 40px; align-items: start; }
}

/* Left rail — exhibit number */
.hero-marker {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-marker .num {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}
.hero-marker .line {
  width: 1.5px;
  height: 80px;
  background: linear-gradient(180deg, var(--gold), transparent);
  display: none;
}
@media (min-width: 900px) { .hero-marker .line { display: block; } }

/* Main headline area */
.hero-main {
  max-width: 880px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--paper-light);
  margin-bottom: 24px;
}
.hero-title .ampersand {
  color: var(--gold);
  font-style: italic;
}
.hero-title .swash {
  display: inline-block;
  font-style: italic;
}

.hero-name {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(0.95rem, 1.6vw, 1.25rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--paper-light);
  display: block;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(244, 235, 213, 0.3);
  padding-bottom: 24px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.55;
  font-weight: 300;
  color: rgba(244, 235, 213, 0.88);
  margin: 28px 0 36px;
  max-width: 560px;
  font-variation-settings: 'opsz' 22;
}
.hero-tagline em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero .btn-paper { color: var(--paper-light); border-color: var(--paper-light); }
.hero .btn-paper:hover { color: var(--ink); }
.hero .btn-paper::before { background: var(--paper-light); }

/* Right rail — quick facts card, like an exhibit info plaque */
.hero-plaque {
  border: 1px solid rgba(244, 235, 213, 0.3);
  padding: 24px 26px;
  background: rgba(28, 22, 16, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
}
.hero-plaque::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.hero-plaque::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 14px;
  height: 14px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.hero-plaque .label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-plaque dl { display: grid; gap: 12px; }
.hero-plaque dt {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: rgba(244, 235, 213, 0.55);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.hero-plaque dd {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--paper-light);
  font-weight: 400;
}
.hero-plaque dd strong { color: var(--gold); font-weight: 500; }

/* Bottom hero bar — like an old film strip */
.hero-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  border-top: 1px solid var(--gold);
  padding: 14px 0;
  z-index: 10;
}
.hero-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--paper-light);
  text-transform: uppercase;
  flex-wrap: wrap;
}
.hero-bar-inner .grp { display: flex; gap: 22px; flex-wrap: wrap; }
.hero-bar-inner .sep { color: var(--ink-soft); }
.hero-bar-inner strong { color: var(--gold); font-weight: 500; }
@media (max-width: 700px) {
  .hero-bar-inner { font-size: 0.62rem; gap: 14px; }
  .hero-bar-inner .grp { gap: 14px; }
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  z-index: 6;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.36em;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0.7;
  display: none;
}
@media (min-width: 1100px) {
  .scroll-cue { display: block; }
}
.scroll-cue::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-left: 14px;
  vertical-align: middle;
  animation: pulseLine 2.4s ease-in-out infinite;
}
@keyframes pulseLine {
  0%, 100% { opacity: 0.4; transform: scaleX(0.7); }
  50% { opacity: 1; transform: scaleX(1); }
}

/* =====================================================================
   SECTION HEADERS — editorial, asymmetric
   ===================================================================== */
.section-head {
  margin-bottom: 80px;
}
.section-head .eyebrow {
  display: inline-block;
  margin-bottom: 22px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  letter-spacing: -0.025em;
  line-height: 0.92;
  color: var(--ink);
  max-width: 18ch;
}
.section-head h2 .accent { color: var(--chile); }
.section-head h2 .swash {
  font-family: var(--font-display);
  font-style: italic;
}

.section-head p.lede {
  margin-top: 28px;
  max-width: 560px;
}

/* Two-column section head: title left, description right */
.section-head-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 80px;
  align-items: end;
}
@media (min-width: 900px) {
  .section-head-split { grid-template-columns: 1.2fr 1fr; gap: 80px; }
}

/* =====================================================================
   QUOTE BLOCK — large editorial pull quote
   ===================================================================== */
.pull-quote {
  background: var(--paper-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 120px 0;
  position: relative;
}

.pull-quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .pull-quote-grid { grid-template-columns: 80px 1fr; gap: 48px; }
}

.pull-quote-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 8rem;
  line-height: 0.7;
  color: var(--chile);
  margin-bottom: -20px;
}

.pull-quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.pull-quote-text strong {
  color: var(--chile);
  font-weight: 400;
}

.pull-quote-attrib {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 16px;
}
.pull-quote-attrib::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--ink-soft);
  display: inline-block;
}

/* =====================================================================
   SPECIMEN / PHOTO GALLERY — items pinned to a wall
   ===================================================================== */
.specimen-section {
  position: relative;
}

.specimen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px 32px;
}
@media (min-width: 700px) {
  .specimen-grid { grid-template-columns: 1fr 1fr; gap: 80px 56px; }
}
@media (min-width: 1024px) {
  .specimen-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 100px 64px;
  }
}

.specimen {
  position: relative;
  transition: transform 0.4s var(--ease);
}
.specimen:nth-child(odd) { transform: rotate(-0.7deg); }
.specimen:nth-child(even) { transform: rotate(0.5deg) translateY(20px); }
.specimen:nth-child(3n) { transform: rotate(1.1deg) translateY(-10px); }

@media (max-width: 699px) {
  .specimen, .specimen:nth-child(even), .specimen:nth-child(3n) {
    transform: rotate(0) translateY(0);
  }
}

.specimen:hover {
  transform: rotate(0) translateY(-6px) !important;
  z-index: 2;
}

.specimen-pin {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #d4a437, #8a6a18);
  box-shadow: 0 2px 4px rgba(0,0,0,0.3), inset 0 1px 1px rgba(255,255,255,0.3);
  z-index: 3;
}

.specimen-image {
  aspect-ratio: 4/5;
  background: var(--ink);
  overflow: hidden;
  position: relative;
  box-shadow: 0 14px 32px -16px rgba(28, 22, 16, 0.4);
}
.specimen-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
  transition: transform 0.8s var(--ease-out);
}
.specimen:hover .specimen-image img { transform: scale(1.05); }

/* Subtle inner border to look like a print mat */
.specimen-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.specimen-info {
  margin-top: 20px;
  padding: 0 4px;
}

.specimen-num {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  color: var(--ink-faint);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.specimen-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}

.specimen-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500;
}
.specimen-price { color: var(--chile); font-weight: 500; }

.specimen-desc {
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--ink-3);
  line-height: 1.55;
  font-weight: 400;
}

.specimen-note {
  font-family: var(--font-hand);
  font-size: 1.2rem;
  color: var(--chile);
  margin-top: 14px;
  line-height: 1.2;
  transform: rotate(-1deg);
  display: inline-block;
}

/* Tag overlay */
.specimen-flag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--paper-light);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 11px;
  z-index: 2;
  font-weight: 500;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}
.specimen-flag.chile { background: var(--chile); color: var(--paper-light); }
.specimen-flag.gold { background: var(--gold); color: var(--ink); }
.specimen-flag.ink { background: var(--ink); color: var(--paper-light); }

/* =====================================================================
   YEAR TIMELINE — vertical sticky rail
   ===================================================================== */
.timeline {
  background: var(--paper);
  position: relative;
}

.timeline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .timeline-grid {
    grid-template-columns: 200px 1fr;
    gap: 80px;
    align-items: start;
  }
}

.timeline-rail {
  position: relative;
}
@media (min-width: 900px) {
  .timeline-rail {
    position: sticky;
    top: 120px;
  }
}

.timeline-rail h3 {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}

.timeline-marks {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
}
@media (min-width: 900px) {
  .timeline-marks { flex-direction: column; gap: 16px; }
}

.timeline-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink-faint);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
  cursor: pointer;
  letter-spacing: -0.02em;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
}
.timeline-mark:hover { color: var(--ink); }
.timeline-mark.active {
  color: var(--chile);
  transform: translateX(8px);
}

.timeline-content { max-width: 720px; }

.chapter {
  margin-bottom: 100px;
  scroll-margin-top: 120px;
}
.chapter:last-child { margin-bottom: 0; }

.chapter-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}

.chapter-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
  text-transform: uppercase;
  font-weight: 500;
}

.chapter-year {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--chile);
  line-height: 1;
  letter-spacing: -0.02em;
}

.chapter h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 28px;
  color: var(--ink);
}

.chapter p {
  font-family: var(--font-body);
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--ink-3);
  margin-bottom: 18px;
  font-variation-settings: 'opsz' 16;
}
.chapter p strong { color: var(--ink); font-weight: 600; }
.chapter p em { font-family: var(--font-display); font-style: italic; }

/* =====================================================================
   PARALLAX BAND — full-bleed photo with editorial overlay
   ===================================================================== */
.parallax-band {
  height: 70vh;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-band img {
  position: absolute;
  inset: -10% 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  filter: sepia(0.4) saturate(1.3) brightness(0.5) contrast(1.15);
  will-change: transform;
}
.parallax-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(183,31,41,0.1), rgba(28,22,16,0.5)),
    radial-gradient(ellipse at center, transparent 30%, rgba(28,22,16,0.55) 90%);
  z-index: 1;
}
.parallax-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 0.94 0 0 0 0 0.83 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  z-index: 2;
  pointer-events: none;
}

.parallax-content {
  position: relative;
  z-index: 5;
  text-align: center;
  color: var(--paper-light);
  padding: 0 32px;
  max-width: 900px;
}
.parallax-content .exhibit-tag {
  background: rgba(244, 235, 213, 0.12);
  color: var(--gold);
  border: 1px solid rgba(244, 235, 213, 0.2);
  margin-bottom: 24px;
}
.parallax-content .exhibit-tag::before { color: var(--gold); }
.parallax-content h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  letter-spacing: -0.025em;
  line-height: 0.95;
  color: var(--paper-light);
  margin-bottom: 24px;
}
.parallax-content h2 em { color: var(--gold); }

.parallax-content p {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  color: rgba(244, 235, 213, 0.85);
  font-weight: 300;
  font-variation-settings: 'opsz' 22;
  max-width: 620px;
  margin: 0 auto;
}

/* =====================================================================
   SECRETS / FEATURE TILES
   ===================================================================== */
.features-section { background: var(--paper-light); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); gap: 56px; }
}

.feature {
  position: relative;
  padding: 0 0 0 28px;
  border-left: 1.5px solid var(--rule);
  transition: border-color 0.3s var(--ease);
}
.feature:hover { border-left-color: var(--chile); }

.feature-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4rem;
  color: var(--chile);
  line-height: 0.85;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.feature h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--ink);
  line-height: 1.05;
}

.feature p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-3);
  font-weight: 400;
}
.feature p em { font-family: var(--font-display); font-style: italic; }

.feature-cite {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.feature-cite::before { content: "— "; color: var(--chile); }

/* =====================================================================
   SPECIALS — minimal cards
   ===================================================================== */
.specials {
  background: var(--paper-deep);
  position: relative;
}

.specials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .specials-grid { grid-template-columns: repeat(3, 1fr); } }

.special-card {
  background: var(--paper-light);
  border: 1px solid var(--rule);
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.special-card:hover {
  background: var(--ink);
  color: var(--paper-light);
  transform: translateY(-3px);
}
.special-card:hover * { color: var(--paper-light); }
.special-card:hover .special-card-day { color: var(--gold); }
.special-card:hover .special-card-price { color: var(--gold); }

.special-card-day {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-weight: 500;
  transition: color 0.3s var(--ease);
}

.special-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1;
  transition: color 0.3s var(--ease);
}

.special-card-price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4rem;
  color: var(--chile);
  line-height: 1;
  margin: 8px 0 24px;
  letter-spacing: -0.04em;
  transition: color 0.3s var(--ease);
}
.special-card-price small {
  font-size: 1rem;
  vertical-align: super;
  letter-spacing: 0;
  margin-left: 4px;
  font-style: normal;
  font-family: var(--font-body);
}

.special-card-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-3);
  line-height: 1.55;
  margin-top: auto;
  margin-bottom: 18px;
  transition: color 0.3s var(--ease);
}

.special-card-rule {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  transition: color 0.3s var(--ease);
}
.special-card:hover .special-card-rule { border-top-color: rgba(244, 235, 213, 0.25); }

/* =====================================================================
   LOCATIONS — proper Google Maps frames, editorial
   ===================================================================== */
.locations-section {
  background: var(--paper-light);
  border-top: 1px solid var(--rule);
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 1000px) { .locations-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

.location-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -16px rgba(28, 22, 16, 0.2);
}

.location-map {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--ink);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.7) sepia(0.15) contrast(1.05);
  transition: filter 0.5s var(--ease);
}
.location-card:hover .location-map iframe {
  filter: saturate(1) sepia(0) contrast(1);
}

.location-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--paper-light);
  color: var(--ink);
  font-family: var(--font-headline);
  font-size: 0.86rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 9px 14px;
  z-index: 3;
  pointer-events: none;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.location-feature-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--ink);
  color: var(--paper-light);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 12px;
  z-index: 3;
  pointer-events: none;
  font-weight: 500;
}
.location-feature-tag.chile { background: var(--chile); }

.location-body { padding: 40px 36px; }
@media (min-width: 768px) { .location-body { padding: 48px; } }

.location-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 500;
}

.location-body h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3rem);
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 0.95;
}

.location-tagline {
  font-family: var(--font-body);
  color: var(--ink-3);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 32px;
  font-weight: 400;
  font-style: italic;
}

.loc-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  align-items: baseline;
}
.loc-row:first-of-type { border-top: none; padding-top: 0; }
.loc-row .l {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.loc-row .v { font-size: 0.95rem; color: var(--ink); font-family: var(--font-body); }
.loc-row .v a { color: var(--chile); transition: opacity 0.2s; }
.loc-row .v a:hover { opacity: 0.7; }

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 18px;
  font-size: 0.9rem;
}
.hours-grid .day {
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
.hours-grid .closed {
  color: var(--chile);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
.hours-grid .today {
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
}
.hours-grid .today::after {
  content: " ◆ TODAY";
  color: var(--chile);
  font-size: 0.96em;
}

.location-actions {
  display: flex;
  gap: 10px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.location-actions .btn { padding: 12px 18px; font-size: 0.74rem; }

/* =====================================================================
   REVIEWS WALL — like exhibit testimonials
   ===================================================================== */
.reviews-section {
  background: var(--ink);
  color: var(--paper-light);
  position: relative;
  overflow: hidden;
}

.reviews-section .section-head h2 { color: var(--paper-light); }
.reviews-section .section-head h2 .accent { color: var(--gold); }
.reviews-section .eyebrow { color: var(--gold); }
.reviews-section .lede { color: rgba(244, 235, 213, 0.7); }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}
@media (min-width: 700px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review {
  background: rgba(244, 235, 213, 0.04);
  border: 1px solid rgba(244, 235, 213, 0.15);
  padding: 32px 28px;
  transition: all 0.3s var(--ease);
  position: relative;
}
.review:hover {
  background: rgba(244, 235, 213, 0.08);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.review::before {
  content: "“";
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.4;
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 4px;
  margin-bottom: 18px;
}

.review-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.45;
  font-weight: 400;
  margin-bottom: 22px;
  color: var(--paper-light);
  letter-spacing: -0.01em;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(244, 235, 213, 0.15);
  padding-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.review-meta .who { color: var(--paper-light); }
.review-meta .src { color: var(--gold); font-size: 0.62rem; }

/* =====================================================================
   CTA — bold, simple, editorial
   ===================================================================== */
.cta {
  background: var(--chile);
  color: var(--paper-light);
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.36em;
  color: rgba(244, 235, 213, 0.7);
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.cta-eyebrow::before, .cta-eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(244, 235, 213, 0.5);
}

.cta h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  letter-spacing: -0.025em;
  line-height: 0.95;
  color: var(--paper-light);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.cta h2 em { color: var(--gold); }

.cta p {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: rgba(244, 235, 213, 0.88);
  margin: 0 auto 40px;
  max-width: 600px;
  line-height: 1.55;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta .btn-paper { color: var(--paper-light); border-color: var(--paper-light); }
.cta .btn-paper::before { background: var(--paper-light); }
.cta .btn-paper:hover { color: var(--chile); }

.cta .btn-ink::before { background: var(--gold); }
.cta .btn-ink:hover { color: var(--ink); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
  background: var(--ink);
  color: var(--paper-light);
  padding: 100px 0 36px;
  border-top: 1px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  margin-bottom: 64px;
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 40px; } }

.footer-brand .name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.3rem;
  letter-spacing: -0.025em;
  color: var(--paper-light);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}
.footer-brand .est {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.footer-tag {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(244, 235, 213, 0.7);
  line-height: 1.6;
  max-width: 320px;
  margin: 22px 0 28px;
  font-weight: 300;
  font-variation-settings: 'opsz' 18;
}
.footer h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 22px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 12px; }
.footer a {
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: rgba(244, 235, 213, 0.65);
  transition: color 0.2s var(--ease);
}
.footer a:hover { color: var(--gold); }

.social { display: flex; gap: 10px; }
.social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 235, 213, 0.3);
  color: var(--paper-light);
  transition: all 0.2s var(--ease);
}
.social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(244, 235, 213, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: rgba(244, 235, 213, 0.4);
  text-transform: uppercase;
  font-weight: 500;
}

/* =====================================================================
   PAGE HEADER
   ===================================================================== */
.page-header {
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.page-header .eyebrow { margin-bottom: 24px; }
.page-header h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3.2rem, 8.5vw, 7rem);
  letter-spacing: -0.025em;
  line-height: 0.92;
  margin-bottom: 28px;
  color: var(--ink);
}
.page-header h1 .accent { color: var(--chile); }
.page-header p.lede { max-width: 620px; }

/* =====================================================================
   MENU
   ===================================================================== */
.menu-cats {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 64px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--rule);
}
.menu-cats::-webkit-scrollbar { display: none; }

.menu-cat {
  padding: 14px 22px;
  font-family: var(--font-headline);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: all 0.2s var(--ease);
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-weight: 600;
}
.menu-cat:hover { color: var(--ink); }
.menu-cat.active {
  color: var(--ink);
  border-bottom-color: var(--chile);
}

.menu-section h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  letter-spacing: -0.025em;
  margin: 80px 0 32px;
  color: var(--ink);
  font-weight: 400;
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
  line-height: 0.95;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.menu-section h3 small {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
  text-transform: uppercase;
  font-weight: 500;
}
.menu-section:first-of-type h3 { margin-top: 0; }

.menu-list {
  display: block;
  max-width: 760px;
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}

.menu-row-name {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: var(--ink);
  font-weight: 600;
  font-variation-settings: 'opsz' 18;
}
.menu-row-name .tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--chile);
  margin-left: 10px;
  font-weight: 500;
  vertical-align: middle;
}

.menu-row-price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--chile);
  font-weight: 400;
}

.menu-row-desc {
  grid-column: 1 / -1;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink-3);
  line-height: 1.55;
  margin-top: 6px;
  font-weight: 400;
}

/* =====================================================================
   FORMS / ADMIN
   ===================================================================== */
.admin-shell { min-height: 100vh; background: var(--paper); padding: 80px 0; }

.admin-card {
  background: var(--paper-light);
  border: 1px solid var(--rule);
  padding: 40px;
  margin-bottom: 24px;
}
@media (min-width: 768px) { .admin-card { padding: 48px; } }

.admin-card h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  font-weight: 400;
}
.admin-card .sub {
  font-family: var(--font-body);
  color: var(--ink-3);
  font-size: 0.96rem;
  margin-bottom: 32px;
  line-height: 1.55;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 22px;
}
@media (min-width: 600px) { .form-row.split { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; }

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  padding: 14px 16px;
  border: 1px solid var(--rule);
  background: var(--paper);
  font-size: 0.96rem;
  color: var(--ink);
  transition: all 0.2s var(--ease);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--paper-light);
}

.form-group textarea { min-height: 120px; resize: vertical; font-family: inherit; line-height: 1.55; }

.specials-list { display: flex; flex-direction: column; gap: 10px; }
.special-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 20px;
  background: var(--paper);
  border: 1px solid var(--rule);
  transition: border 0.2s;
}
.special-row:hover { border-color: var(--ink); }
.special-row .idx { font-family: var(--font-mono); color: var(--chile); font-size: 0.86rem; letter-spacing: 0.1em; font-weight: 600; }
.special-row .name { font-family: var(--font-body); font-size: 0.96rem; color: var(--ink); }

.icon-btn {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--ink-soft);
  transition: all 0.2s var(--ease);
}
.icon-btn:hover { background: var(--chile); color: var(--paper-light); }

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--ink);
  color: var(--paper-light);
  padding: 14px 22px;
  font-family: var(--font-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  border-left: 3px solid var(--gold);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  pointer-events: none;
  z-index: 200;
  font-weight: 500;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* =====================================================================
   ANIMATIONS
   ===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.13s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.21s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.29s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.37s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.45s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.53s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.61s; }
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }

.counter { display: inline-block; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
  .hero-bg img { animation: none !important; }
  .specimen, .specimen:nth-child(even), .specimen:nth-child(3n) { transform: rotate(0) !important; }
}
