/* ================================================================
   MARCELLO'S — Art-house Italian / NY neighborhood restaurant
   Design system: warm espresso × ivory × wine × aged brass
   Type: Cormorant Garamond (display) + Inter (body) + JetBrains Mono (numerals)
   ================================================================ */

:root {
  --espresso: #0E0B0A;
  --ink: #161210;
  --ink-warm: #1F1A17;
  --ink-elevated: #25201D;
  --ivory: #F2EBDD;
  --ivory-soft: #ECE3CF;
  --paper: #E8DFC9;
  --cream: #F8F1E1;
  --cream-mid: #C9BEA6;
  --cream-mute: #8A8068;
  --wine: #5C1A1B;
  --wine-warm: #7A2326;
  --brass: #B89968;
  --brass-soft: #8C7349;
  --brass-bright: #D4B581;
  --tomato: #C0392B;

  --rule-warm: rgba(184, 153, 104, 0.22);
  --rule-strong: rgba(184, 153, 104, 0.45);
  --rule-ivory: rgba(14, 11, 10, 0.12);

  --display: 'Cormorant Garamond', 'Garamond', serif;
  --body: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', 'SFMono-Regular', monospace;

  --easing: cubic-bezier(0.16, 1, 0.3, 1);
  --easing-out: cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1280px;
  --container-prose: 720px;
  --container-narrow: 920px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: var(--brass);
}

body {
  font-family: var(--body);
  font-weight: 300;
  background: var(--espresso);
  color: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body.nav-locked { overflow: hidden; position: fixed; width: 100%; }

a, button, [role="button"] {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

iframe { max-width: 100%; }
input, select, textarea { font-size: 16px; }

/* Subtle film-grain noise overlay across whole site */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  mix-blend-mode: overlay;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============= TYPOGRAPHY PRIMITIVES ============= */
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--cream);
}
.italic { font-style: italic; }
.eyebrow {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
}
.eyebrow-mute { color: var(--cream-mute); }
.eyebrow-cream { color: var(--cream-mid); }
.lede {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.45;
  color: var(--cream-mid);
  font-weight: 400;
}
.body { font-size: 16px; line-height: 1.75; color: var(--cream-mid); font-weight: 300; }
.body-lg { font-size: 18px; line-height: 1.75; color: var(--cream-mid); font-weight: 300; }
.muted { color: var(--cream-mute); }
.mono { font-family: var(--mono); font-feature-settings: 'tnum'; letter-spacing: 0.04em; }

.dropcap::first-letter {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 5.6em;
  line-height: 0.86;
  float: left;
  padding: 8px 14px 0 0;
  color: var(--brass);
}

/* ============= NAVIGATION ============= */
.nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 100 !important;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  grid-auto-rows: auto !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  padding: 22px 48px !important;
  margin: 0 !important;
  background: rgba(14, 11, 10, 0.78) !important;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(184, 153, 104, 0.1);
  box-sizing: border-box !important;
  transition: padding 380ms var(--easing), background 380ms var(--easing), box-shadow 380ms var(--easing);
}
.nav > * { min-width: 0 !important; align-self: center !important; }
.nav-logo { grid-column: 1 !important; justify-self: start !important; }
.nav-links { grid-column: 2 !important; justify-self: center !important; display: flex !important; flex-wrap: nowrap !important; align-items: center !important; }
.nav-actions { grid-column: 3 !important; justify-self: end !important; display: flex !important; flex-wrap: nowrap !important; align-items: center !important; }
.nav.scrolled {
  padding: 14px 48px !important;
  background: rgba(14, 11, 10, 0.96) !important;
  backdrop-filter: blur(18px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(140%) !important;
  border-bottom: 1px solid rgba(184, 153, 104, 0.18) !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45) !important;
}
.nav-logo {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.005em;
  color: var(--cream);
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.nav-logo::after {
  content: 'Pelham';
  font-family: var(--body);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  font-style: normal;
  position: relative;
  top: -3px;
}
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  justify-self: center;
}
.nav-links a {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream-mid);
  position: relative;
  padding: 6px 0;
  transition: color 280ms var(--easing);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--brass);
  transition: width 320ms var(--easing), left 320ms var(--easing);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; left: 0; }
.nav-links a.active { color: var(--cream); }

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-phone {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--cream-mid);
  font-weight: 500;
}
.nav-cta {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--espresso);
  background: var(--brass);
  padding: 11px 20px;
  border: 1px solid var(--brass);
  transition: background 320ms var(--easing), color 320ms var(--easing);
}
.nav-cta:hover { background: var(--brass-bright); border-color: var(--brass-bright); }

.nav-burger {
  display: none;
  width: 28px;
  height: 18px;
  position: relative;
  cursor: pointer;
}
.nav-burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--cream);
  transition: transform 320ms var(--easing), top 320ms var(--easing), opacity 280ms var(--easing);
}
.nav-burger span:nth-child(1) { top: 2px; }
.nav-burger span:nth-child(2) { top: 9px; }
.nav-burger span:nth-child(3) { top: 16px; }
.nav-burger.open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* ============= PAGES (SPA routing) ============= */
.page { display: none; }
.page.active { display: block; animation: pageFade 600ms var(--easing); }

@keyframes pageFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============= UTILITIES ============= */
.container { max-width: var(--container); margin: 0 auto; padding: 0 48px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 48px; }
.container-prose { max-width: var(--container-prose); margin: 0 auto; padding: 0 48px; }

.section { padding: 140px 0; position: relative; }
.section-tight { padding: 84px 0; }

.rule {
  display: block;
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--brass) 50%, transparent 100%);
  border: 0;
  margin: 28px 0;
}
.rule-center { margin-left: auto; margin-right: auto; }

.flourish {
  font-family: var(--display);
  color: var(--brass);
  letter-spacing: 0.5em;
  text-align: center;
  padding-left: 0.5em;
  font-size: 22px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid;
  text-decoration: none;
  transition: all 320ms var(--easing);
  white-space: nowrap;
}
.btn-brass {
  background: var(--brass);
  color: var(--espresso);
  border-color: var(--brass);
}
.btn-brass:hover {
  background: var(--brass-bright);
  border-color: var(--brass-bright);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(248, 241, 225, 0.35);
}
.btn-ghost:hover { border-color: var(--cream); }
.btn-wine {
  background: var(--wine);
  color: var(--cream);
  border-color: var(--wine);
}
.btn-wine:hover { background: var(--wine-warm); border-color: var(--wine-warm); }
.btn-text {
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--brass);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 4px;
}
.btn-text:hover { color: var(--brass-bright); border-bottom-color: var(--brass-bright); }
.btn-arrow::after {
  content: '→';
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0;
  transition: transform 320ms var(--easing);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============= HERO ============= */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--espresso);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 62%;
  background-image: url('https://marcellos10803.com/wp-content/uploads/2024/04/DSC04944-scaled.jpg');
  background-size: cover;
  background-position: center 38%;
  filter: brightness(0.72) contrast(1.08);
  animation: heroKenBurns 18s var(--easing-out) infinite alternate;
  /* Feather the left edge so the image dissolves into the dark text column */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.35) 8%, rgba(0,0,0,0.85) 22%, black 36%, black 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.35) 8%, rgba(0,0,0,0.85) 22%, black 36%, black 100%);
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg,
    rgba(14,11,10,0.7) 0%,
    rgba(14,11,10,0.45) 22%,
    rgba(14,11,10,0.2) 50%,
    rgba(14,11,10,0.15) 70%,
    rgba(14,11,10,0.4) 100%
  );
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 80% 30%, rgba(184,153,104,0.10) 0%, rgba(184,153,104,0) 60%);
}

@keyframes heroKenBurns {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.06); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 48px 56px;
  grid-column: 1 / -1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 22px;
  opacity: 0;
  animation: heroFadeUp 900ms var(--easing) 200ms forwards;
}
.hero-eyebrow-row .eyebrow-line {
  width: 56px;
  height: 1px;
  background: var(--brass);
}
.hero-h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(38px, 5.2vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.022em;
  color: var(--cream);
  max-width: 16ch;
  margin: 0 0 18px;
  opacity: 0;
  animation: heroFadeUp 900ms var(--easing) 350ms forwards;
}
.hero-h1 .word-italic { font-style: italic; color: var(--brass-bright); }
.hero-headline { display: contents; }
.hero-sub {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.45;
  color: var(--cream-mid);
  max-width: 38ch;
  margin: 0 0 14px;
  opacity: 0;
  animation: heroFadeUp 900ms var(--easing) 500ms forwards;
}
.hero-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--cream-mid);
  max-width: 48ch;
  margin: 0 0 32px;
  opacity: 0;
  animation: heroFadeUp 900ms var(--easing) 650ms forwards;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 36px;
  opacity: 0;
  animation: heroFadeUp 900ms var(--easing) 800ms forwards;
}
.hero-meta {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 900ms var(--easing) 950ms forwards;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px 14px 18px;
  border: 1px solid rgba(184,153,104,0.4);
  background: rgba(14,11,10,0.4);
  backdrop-filter: blur(10px);
}
.hero-badge-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brass-bright), var(--brass-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--espresso);
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
}
.hero-badge-text {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
  line-height: 1.5;
}
.hero-badge-text strong { color: var(--brass-bright); font-weight: 600; }
.hero-address {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cream-mute);
  letter-spacing: 0.06em;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Vertical edge wordmark */
.hero-vertical {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.6em;
  color: var(--brass);
  font-weight: 500;
  text-transform: uppercase;
  z-index: 3;
  opacity: 0.6;
}

/* Hero scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--body);
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--cream-mute);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: heroFadeUp 900ms var(--easing) 1100ms forwards;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 42px;
  background: var(--brass);
  animation: scrollPulse 2.4s var(--easing-out) infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ============= SECTION INTROS (chapter labels) ============= */
.chapter-label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
}
.chapter-label-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0;
  color: var(--brass-bright);
}
.chapter-label-line { flex: 1; height: 1px; background: var(--rule-warm); max-width: 280px; }

/* ============= "WHAT WE'RE KNOWN FOR" — editorial 2x2 ============= */
.known {
  background: var(--espresso);
  position: relative;
}
.known::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 60% at 80% 20%, rgba(184,153,104,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.known-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 88px;
}
.known-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--cream);
  max-width: 14ch;
}
.known-title em { color: var(--brass); }
.known-blurb {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--cream-mid);
  max-width: 46ch;
  font-weight: 300;
}
.known-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule-warm);
}
.known-item {
  padding: 56px 48px 56px 0;
  border-bottom: 1px solid var(--rule-warm);
  border-right: 1px solid var(--rule-warm);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: background 380ms var(--easing);
}
.known-item:nth-child(2n) {
  border-right: none;
  padding: 56px 0 56px 48px;
}
.known-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.13;
  filter: grayscale(35%) blur(1.5px) brightness(0.78) contrast(1.05);
  z-index: 0;
  transition: opacity 600ms var(--easing), filter 600ms var(--easing), transform 1200ms var(--easing);
  transform: scale(1.04);
}
.known-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(14,11,10,0.55) 0%, rgba(14,11,10,0.85) 60%, var(--espresso) 100%),
    linear-gradient(180deg, rgba(14,11,10,0.4) 0%, rgba(14,11,10,0.7) 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 600ms var(--easing);
}
.known-item:hover::after { opacity: 0.82; }
.known-item:nth-child(2n)::after {
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(14,11,10,0.55) 0%, rgba(14,11,10,0.85) 60%, var(--espresso) 100%),
    linear-gradient(180deg, rgba(14,11,10,0.4) 0%, rgba(14,11,10,0.7) 100%);
}
.known-item > * { position: relative; z-index: 2; }
.known-item:hover { background: rgba(184,153,104,0.03); }
.known-item:hover::before {
  opacity: 0.6;
  filter: grayscale(15%) blur(0) brightness(0.92) contrast(1.05);
  transform: scale(1.0);
}
.known-item:nth-child(1)::before {
  background-image: url('https://marcellos10803.com/wp-content/uploads/2024/01/7.jpg');
}
.known-item:nth-child(2)::before {
  background-image: url('https://marcellos10803.com/wp-content/uploads/2024/01/6.jpg');
}
.known-item:nth-child(3)::before {
  background-image: url('https://marcellos10803.com/wp-content/uploads/2024/01/4.jpg');
}
.known-item:nth-child(4)::before {
  background-image: url('https://marcellos10803.com/wp-content/uploads/2024/01/8.jpg');
}
.known-numeral {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--brass);
  padding-top: 6px;
}
.known-item h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: var(--cream);
}
.known-item p {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--cream-mid);
  font-weight: 300;
  max-width: 48ch;
}

/* ============= ABOUT PREVIEW (image + pull quote) ============= */
.about-preview {
  background: var(--ink-warm);
  position: relative;
  overflow: hidden;
}
.about-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 30% 30%, rgba(184,153,104,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.about-preview-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}
.about-preview-img {
  aspect-ratio: 3 / 4;
  background-image: url('https://marcellos10803.com/wp-content/uploads/2024/03/DSC04163-min-scaled.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.about-preview-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,11,10,0) 60%, rgba(14,11,10,0.5) 100%);
}
.about-preview-content { padding-right: 40px; }
.about-preview-quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 36px;
}
.about-preview-quote::before {
  content: '"';
  font-size: 1.8em;
  color: var(--brass);
  display: block;
  line-height: 0.6;
  margin-bottom: 8px;
}
.about-preview-attr {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 36px;
  font-weight: 500;
}
.about-preview-body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--cream-mid);
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 52ch;
}

/* ============= MENU HIGHLIGHTS ============= */
.menu-highlights {
  background: var(--espresso);
}
.menu-highlights-header {
  text-align: center;
  margin-bottom: 76px;
}
.menu-highlights-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 18px;
}
.menu-highlights-title em { color: var(--brass); }
.menu-highlights-list {
  max-width: 760px;
  margin: 0 auto;
}
.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule-warm);
}
.menu-row:last-child { border-bottom: 1px solid var(--rule-strong); }
.menu-row-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.menu-row-name .star {
  color: var(--brass);
  font-size: 0.6em;
  vertical-align: super;
  margin-left: 6px;
  letter-spacing: 0;
}
.menu-row-desc {
  font-family: var(--body);
  font-style: italic;
  font-size: 14px;
  color: var(--cream-mute);
  line-height: 1.5;
  margin-top: 6px;
  font-weight: 300;
}
.menu-row-price {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--brass-bright);
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.menu-highlights-cta {
  display: flex;
  justify-content: center;
  margin-top: 72px;
}

/* ============= TESTIMONIALS / CAROUSEL ============= */
.testimonials {
  background: var(--ink);
  position: relative;
}
.carousel {
  position: relative;
  max-width: 980px;
  margin: 80px auto 0;
  padding: 0 80px;
}
.carousel-track {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 700ms var(--easing), transform 700ms var(--easing);
  pointer-events: none;
}
.carousel-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.testimonial-mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 96px;
  line-height: 0.3;
  color: var(--brass);
  margin-bottom: 32px;
  display: block;
  height: 30px;
}
.testimonial-quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.4;
  color: var(--cream);
  margin: 0 auto 36px;
  max-width: 32ch;
  letter-spacing: -0.005em;
}
.testimonial-attr {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--rule-strong);
  background: transparent;
  color: var(--brass);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 22px;
  font-style: italic;
  transition: border-color 320ms var(--easing), background 320ms var(--easing), color 320ms var(--easing);
  z-index: 2;
  padding: 0;
}
.carousel-arrow:hover {
  border-color: var(--brass);
  background: var(--brass);
  color: var(--espresso);
}
.carousel-prev { left: 0; }
.carousel-next { right: 0; }
.carousel-dots {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-top: 56px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--rule-strong);
  cursor: pointer;
  padding: 0;
  transition: background 320ms var(--easing), border-color 320ms var(--easing), transform 320ms var(--easing);
}
.carousel-dot:hover { border-color: var(--brass); }
.carousel-dot.active {
  background: var(--brass);
  border-color: var(--brass);
  transform: scale(1.25);
}

/* ============= CATERING / EVENTS TEASER ============= */
.cater-teaser {
  background: var(--ink-warm);
  position: relative;
  overflow: hidden;
}
.cater-teaser-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.cater-teaser-content { padding-right: 20px; }
.cater-teaser-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 32px;
}
.cater-teaser-title em { color: var(--brass); }
.cater-teaser-img {
  aspect-ratio: 4 / 5;
  background-image: url('https://marcellos10803.com/wp-content/uploads/2024/04/DSC04968-scaled.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.85);
}
.cater-teaser-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ============= LOCATION / HOURS ============= */
.location {
  background: var(--espresso);
  padding: 96px 0;
}
.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.location-info h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 24px;
}
.location-info h2 em { color: var(--brass); }
.location-block {
  margin-bottom: 36px;
}
.location-block-label {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-bottom: 10px;
}
.location-block-text {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.4;
}
.location-block-text a {
  color: var(--cream);
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 2px;
  transition: color 280ms var(--easing), border-color 280ms var(--easing);
}
.location-block-text a:hover { color: var(--brass); border-bottom-color: var(--brass); }

.hours-list { list-style: none; }
.hours-list li {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-warm);
  font-family: var(--body);
  font-size: 15px;
}
.hours-list .day {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  color: var(--cream);
}
.hours-list .time {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--brass-bright);
  letter-spacing: 0.04em;
}

.location-map {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--rule-warm);
  filter: grayscale(0.4) contrast(0.95) brightness(0.85);
  transition: filter 380ms var(--easing);
}
.location-map:hover { filter: none; }
.location-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============= FINAL CTA STRIP ============= */
.cta-strip {
  background: var(--espresso);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 70% at 50% 50%, rgba(184,153,104,0.08) 0%, transparent 70%);
}
.cta-strip-content { position: relative; z-index: 1; }
.cta-strip-title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 24px;
}
.cta-strip-title em { color: var(--brass); font-style: italic; }
.cta-strip-text {
  font-family: var(--body);
  font-size: 16px;
  color: var(--cream-mid);
  max-width: 50ch;
  margin: 0 auto 48px;
  line-height: 1.75;
  font-weight: 300;
}
.cta-strip-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============= PAGE HEADER (interior pages) ============= */
.page-header {
  padding: 200px 0 88px;
  background: var(--espresso);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 30% 30%, rgba(184,153,104,0.06) 0%, transparent 60%);
}
.page-header-inner { position: relative; z-index: 1; }
.page-header h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(64px, 8vw, 124px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 24px;
  max-width: 16ch;
}
.page-header h1 em { color: var(--brass); font-style: italic; }
.page-header-sub {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--cream-mid);
  max-width: 50ch;
}

/* Page header hero — full-bleed image with overlay */
.page-header-hero {
  padding: 220px 0 100px;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.page-header-hero::before { content: none; }
.page-header-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 45%;
  z-index: 0;
  filter: brightness(0.62) contrast(1.05);
}
.page-header-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,11,10,0.55) 0%, rgba(14,11,10,0.25) 28%, rgba(14,11,10,0.45) 65%, rgba(14,11,10,0.92) 100%),
    linear-gradient(95deg, rgba(14,11,10,0.55) 0%, rgba(14,11,10,0.15) 50%, rgba(14,11,10,0.35) 100%);
}
.page-header-hero .page-header-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.page-header-hero h1 { color: var(--cream); }
.page-header-hero .page-header-sub {
  color: var(--cream-mid);
  max-width: 56ch;
  text-shadow: 0 1px 12px rgba(14,11,10,0.5);
}
.page-header-hero .menu-cta-strip { margin-top: 36px; }

/* Menu end CTA — replaces the bottom slice placeholder */
.menu-end-cta {
  margin-top: 96px;
  padding: 64px 0 24px;
  text-align: center;
  border-top: 1px solid var(--rule-warm);
}
.menu-end-cta-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin: 12px 0 18px;
}
.menu-end-cta-title em { color: var(--brass); font-style: italic; }
.menu-end-cta-text {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--cream-mid);
  font-weight: 300;
  max-width: 48ch;
  margin: 0 auto 40px;
}
.menu-end-cta-actions {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============= ABOUT PAGE ============= */
.about-section { background: var(--espresso); }
.about-section-alt { background: var(--ink-warm); }
.about-section-deep { background: #0A0807; }

.about-grid-asymmetric-1 {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.about-grid-asymmetric-2 {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-section h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 0;
}
.about-section h2 em { color: var(--brass); font-style: italic; }
.about-section .body {
  font-size: 17px;
  line-height: 1.85;
}
.about-section .body + .body { margin-top: 24px; }

/* Awards — clean 3x2 symmetric grid, brass dividers */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-warm);
  border: 1px solid var(--rule-warm);
  margin: 0 auto;
  max-width: 1100px;
}
.awards-card {
  background: #0A0807;
  padding: 56px 32px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  position: relative;
  transition: background 360ms var(--easing), transform 360ms var(--easing);
  text-decoration: none;
  color: inherit;
}
.awards-card:hover { transform: translateY(-2px); }
.awards-card:hover { background: #100D0B; }
.awards-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 1px;
  background: var(--brass);
}
.awards-mark {
  font-family: var(--display);
  font-style: italic;
  color: var(--brass);
  font-size: 28px;
  line-height: 1;
}
.awards-year {
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  color: var(--brass-bright);
  letter-spacing: 0;
  line-height: 1;
}
.awards-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.25;
  letter-spacing: -0.005em;
  max-width: 22ch;
}
.awards-source {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--cream-mute);
  font-weight: 500;
  margin-top: 4px;
}
@media (max-width: 880px) {
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .awards-grid { grid-template-columns: 1fr; }
}

.about-img-wide {
  aspect-ratio: 21 / 9;
  background-size: cover;
  background-position: center;
  filter: brightness(0.82) contrast(1.06);
  position: relative;
}
.about-img-wide.lead {
  aspect-ratio: 24 / 9;
  filter: brightness(0.7) contrast(1.08);
}
.about-img-wide .img-caption {
  position: absolute;
  left: 48px;
  bottom: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(14,11,10,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-left: 1px solid var(--brass);
  z-index: 2;
}
.about-img-wide .img-numeral {
  position: absolute;
  right: 48px;
  bottom: 32px;
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  color: var(--brass-bright);
  letter-spacing: 0.04em;
  z-index: 2;
}
.about-feature-band {
  position: relative;
  background: var(--ink-warm);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 620px;
  border-top: 1px solid var(--rule-warm);
  border-bottom: 1px solid var(--rule-warm);
}
.about-feature-band-img {
  position: relative;
  background-size: cover;
  background-position: center;
  filter: brightness(0.86) contrast(1.05);
  overflow: hidden;
}
.about-feature-band-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,11,10,0.18) 0%, rgba(14,11,10,0) 60%);
  pointer-events: none;
}
.about-feature-band-img .band-numeral {
  position: absolute;
  top: 32px;
  left: 36px;
  font-family: var(--display);
  font-style: italic;
  font-size: 60px;
  font-weight: 400;
  color: var(--cream);
  text-shadow: 0 2px 18px rgba(14,11,10,0.6);
  line-height: 1;
  letter-spacing: 0;
  opacity: 0.95;
  z-index: 2;
}
.about-feature-band-img .band-tag {
  position: absolute;
  bottom: 32px;
  right: 36px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(14,11,10,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-left: 1px solid var(--brass);
  z-index: 2;
}
.about-feature-band-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 76px;
  position: relative;
  background: var(--ink-warm);
}
.about-feature-band-content.deep { background: var(--espresso); }
.about-feature-band-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 30%, rgba(184,153,104,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.about-feature-band-content > * { position: relative; z-index: 1; }
@media (max-width: 980px) {
  .about-feature-band { grid-template-columns: 1fr; min-height: auto; }
  .about-feature-band-img { aspect-ratio: 4 / 3; }
  .about-feature-band-img .band-numeral { font-size: 44px; top: 22px; left: 24px; }
  .about-feature-band-content { padding: 64px 28px; }
  .about-img-wide .img-caption,
  .about-img-wide .img-numeral { left: 24px; bottom: 22px; right: 24px; font-size: 10px; }
  .about-img-wide .img-numeral { left: auto; right: 24px; font-size: 22px; }
}

/* ============= MENU PAGE ============= */
.menu-page { background: var(--espresso); }
.menu-cta-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.menu-triptych {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 2px;
  background: var(--rule-warm);
  border-top: 1px solid var(--rule-warm);
  border-bottom: 1px solid var(--rule-warm);
}
.menu-triptych-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  filter: brightness(0.92) contrast(1.04);
  transition: filter 360ms var(--easing);
}
.menu-triptych-img:hover { filter: brightness(1.05) contrast(1.06); }
@media (max-width: 720px) {
  .menu-triptych { grid-template-columns: 1fr; }
}

.slice-placeholder {
  border: 1px dashed var(--brass);
  padding: 60px 40px;
  text-align: center;
  margin: 64px 0;
  background: rgba(184,153,104,0.025);
  position: relative;
}
.slice-placeholder-eyebrow {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
  font-weight: 500;
}
.slice-placeholder-title {
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}
.slice-placeholder-text {
  font-family: var(--body);
  font-size: 14px;
  color: var(--cream-mute);
  max-width: 48ch;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.menu-categories { margin-top: 64px; }
.menu-cat {
  border-bottom: 1px solid var(--rule-warm);
  position: relative;
}
.menu-cat:first-child { border-top: 1px solid var(--rule-warm); }
.menu-cat-h {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  font-weight: 400;
}
.menu-cat-header {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 36px 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: padding 320ms var(--easing);
}
.menu-cat-header:hover { padding: 36px 12px; }
.menu-cat-header:hover .menu-cat-title { color: var(--brass); }
.menu-cat-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--brass);
  letter-spacing: 0.04em;
}
.menu-cat-title {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--cream);
  transition: color 280ms var(--easing);
}
.menu-cat-title em { font-style: italic; color: var(--brass); }
.menu-cat-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 320ms var(--easing), border-color 320ms var(--easing);
}
.menu-cat-toggle::before,
.menu-cat-toggle::after {
  content: '';
  position: absolute;
  background: var(--brass);
  transition: transform 380ms var(--easing), background 320ms var(--easing);
}
.menu-cat-toggle::before { width: 14px; height: 1px; }
.menu-cat-toggle::after { width: 1px; height: 14px; }
.menu-cat.open .menu-cat-toggle::after { transform: scaleY(0); }
.menu-cat.open .menu-cat-toggle {
  background: var(--brass);
  border-color: var(--brass);
}
.menu-cat.open .menu-cat-toggle::before,
.menu-cat.open .menu-cat-toggle::after { background: var(--espresso); }

.menu-cat-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 600ms var(--easing);
}
.menu-cat.open .menu-cat-body { max-height: 4000px; }
.menu-cat-body-inner {
  padding: 0 0 56px 84px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.menu-cat-intro {
  grid-column: 1 / -1;
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--cream-mute);
  line-height: 1.5;
  margin-bottom: 8px;
  max-width: 60ch;
}
.menu-cat-list {
  display: grid;
  gap: 0;
}
.menu-cat-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule-warm);
}
.menu-cat-item-name {
  margin: 0;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.menu-cat-item-name .star {
  color: var(--brass);
  font-size: 0.55em;
  vertical-align: super;
  margin-left: 5px;
}
.menu-cat-item-desc {
  font-family: var(--body);
  font-style: italic;
  font-size: 13px;
  color: var(--cream-mute);
  line-height: 1.55;
  margin-top: 4px;
  font-weight: 300;
}
.menu-cat-item-price {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--brass-bright);
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.menu-legend {
  font-family: var(--body);
  font-size: 12px;
  font-style: italic;
  color: var(--cream-mute);
  text-align: center;
  margin: 0 0 24px;
}
.menu-legend .star { color: var(--brass); margin-right: 4px; }

/* ============= CATERING PAGE ============= */
.cater-page { background: var(--espresso); }
.cater-intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.cater-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--rule-warm);
}
.cater-highlight {
  padding: 44px 36px 44px 0;
  border-bottom: 1px solid var(--rule-warm);
  border-right: 1px solid var(--rule-warm);
  position: relative;
}
.cater-highlight:nth-child(2n) { padding-left: 36px; padding-right: 0; border-right: 0; }
.cater-highlight-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--brass);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.cater-highlight h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.cater-highlight p {
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--cream-mid);
  font-weight: 300;
}

.steps-list {
  list-style: none;
  margin-top: 56px;
  max-width: 760px;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule-warm);
  align-items: baseline;
}
.step:first-child { border-top: 1px solid var(--rule-warm); }
.step-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  color: var(--brass);
  letter-spacing: 0.02em;
}
.step h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
}
.step p {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--cream-mid);
  font-weight: 300;
}

.mobile-kitchen {
  background: var(--ink-warm);
  position: relative;
  overflow: hidden;
}
.mobile-kitchen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mobile-kitchen-img {
  aspect-ratio: 4 / 5;
  background-image: url('https://marcellos10803.com/wp-content/uploads/2024/04/DSC04976-scaled.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.85) contrast(1.05);
}
.mobile-kitchen-content h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 28px;
}
.mobile-kitchen-content h2 em { color: var(--brass); font-style: italic; }

/* ============= FORMS ============= */
.form-section { background: var(--ink); }
.form-wrap {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.form-aside h2 {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 24px;
}
.form-aside h2 em { color: var(--brass); font-style: italic; }
.form-aside p {
  font-family: var(--body);
  font-size: 15px;
  color: var(--cream-mid);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
}
.form-aside-contact {
  font-family: var(--display);
  font-size: 18px;
  color: var(--brass);
  font-style: italic;
  letter-spacing: -0.005em;
}
.form-aside-contact a {
  color: var(--brass);
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 2px;
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
}
.form .full { grid-column: 1 / -1; }
.field { position: relative; }
.field label {
  display: block;
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-bottom: 12px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule-strong);
  padding: 10px 0 14px;
  color: var(--cream);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.005em;
  outline: none;
  transition: border-color 320ms var(--easing);
}
.field textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
  font-size: 17px;
}
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--brass) 50%),
                    linear-gradient(135deg, var(--brass) 50%, transparent 50%);
  background-position: calc(100% - 12px) calc(50%), calc(100% - 6px) calc(50%);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.field select option { background: var(--ink); color: var(--cream); }
.field input::placeholder,
.field textarea::placeholder {
  color: var(--cream-mute);
  font-style: italic;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-bottom-color: var(--brass); }
.form-actions {
  grid-column: 1 / -1;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.form-disclaimer {
  font-family: var(--body);
  font-size: 12px;
  color: var(--cream-mute);
  font-style: italic;
}

/* ============= PRIVATE EVENTS ============= */
/* "What we offer" — symmetric 3x2 card grid with brass dividers */
.events-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-warm);
  border: 1px solid var(--rule-warm);
  margin: 56px auto 0;
  max-width: 1100px;
  list-style: none;
}
.events-offer-item {
  background: var(--ink-warm);
  padding: 56px 32px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  position: relative;
  transition: background 360ms var(--easing);
}
.events-offer-item:hover { background: #251F1B; }
.events-offer-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 1px;
  background: var(--brass);
}
.events-offer-mark {
  font-family: var(--display);
  font-style: italic;
  color: var(--brass);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
}
.events-offer-text {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.32;
  letter-spacing: -0.005em;
  max-width: 22ch;
}
@media (max-width: 880px) {
  .events-offer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .events-offer-grid { grid-template-columns: 1fr; }
}

/* "Events we host" — symmetric 4x2 card grid */
.events-host-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule-warm);
  border: 1px solid var(--rule-warm);
  margin: 56px auto 0;
  max-width: 1200px;
  list-style: none;
}
.events-host-item {
  background: var(--espresso);
  padding: 44px 22px 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  position: relative;
  transition: background 360ms var(--easing);
}
.events-host-item:hover { background: #100D0B; }
.events-host-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 1px;
  background: var(--brass);
}
.events-host-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--brass);
  font-weight: 400;
  line-height: 1;
}
.events-host-text {
  font-family: var(--display);
  font-size: 17px;
  color: var(--cream);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.32;
  max-width: 18ch;
}
@media (max-width: 980px) {
  .events-host-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .events-host-grid { grid-template-columns: 1fr; }
}

/* ============= GALLERY ============= */
.gallery-page { background: var(--espresso); }
.gallery-cat { margin-bottom: 96px; }
.gallery-cat-header {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: baseline;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--rule-warm);
  padding-bottom: 18px;
}
.gallery-cat-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  color: var(--brass);
}
.gallery-cat-title {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.gallery-cat-title em { color: var(--brass); font-style: italic; }
.gallery-cat-count {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--cream-mute);
  letter-spacing: 0.05em;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  grid-auto-rows: 200px;
}
.gallery-item {
  background-size: cover;
  background-position: center;
  filter: brightness(0.86) contrast(1.04);
  transition: filter 320ms var(--easing), transform 480ms var(--easing);
  cursor: pointer;
}
.gallery-item:hover { filter: brightness(1) contrast(1); transform: scale(1.005); }
.gallery-item.span-4 { grid-column: span 4; }
.gallery-item.span-5 { grid-column: span 5; }
.gallery-item.span-6 { grid-column: span 6; }
.gallery-item.span-7 { grid-column: span 7; }
.gallery-item.span-8 { grid-column: span 8; }
.gallery-item.row-2 { grid-row: span 2; }

.gallery-note {
  font-family: var(--body);
  font-size: 12px;
  font-style: italic;
  color: var(--cream-mute);
  text-align: center;
  border: 1px solid var(--rule-warm);
  padding: 18px 24px;
  max-width: 720px;
  margin: 0 auto 64px;
  line-height: 1.6;
}

/* ============= CONTACT PAGE ============= */
.contact-page { background: var(--espresso); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 80px;
}
.contact-block { margin-bottom: 36px; }
.contact-block-label {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-bottom: 12px;
}
.contact-block-text {
  font-family: var(--display);
  font-size: 22px;
  color: var(--cream);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.4;
}
.contact-block-text a {
  color: var(--cream);
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 2px;
  transition: color 280ms var(--easing), border-color 280ms var(--easing);
}
.contact-block-text a:hover { color: var(--brass); border-bottom-color: var(--brass); }

.contact-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule-warm);
}
.contact-strip-item {
  padding: 36px 32px 36px 0;
  border-bottom: 1px solid var(--rule-warm);
  border-right: 1px solid var(--rule-warm);
}
.contact-strip-item:nth-child(3n) { padding-right: 0; border-right: 0; }
.contact-strip-item:not(:nth-child(3n)) { padding-left: 0; }
.contact-strip-item:nth-child(2),
.contact-strip-item:nth-child(3) { padding-left: 32px; }
.contact-strip-item h3 {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 10px;
}
.contact-strip-item p {
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--cream-mid);
  font-weight: 300;
  margin-bottom: 16px;
}

.contact-map {
  margin-top: 64px;
  aspect-ratio: 21 / 9;
  border: 1px solid var(--rule-warm);
  filter: grayscale(0.45) contrast(0.95) brightness(0.85);
  transition: filter 380ms var(--easing);
}
.contact-map:hover { filter: none; }
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============= FOOTER ============= */
.footer {
  background: #0A0807;
  padding: 88px 0 32px;
  border-top: 1px solid var(--rule-warm);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}
.footer-brand h3 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 14px;
}
.footer-brand p {
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.7;
  color: var(--cream-mute);
  font-weight: 300;
  max-width: 32ch;
}
.footer-col h4 {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col li {
  font-family: var(--body);
  font-size: 13px;
  color: var(--cream-mid);
  margin-bottom: 8px;
  font-weight: 300;
}
.footer-col li a { color: var(--cream-mid); transition: color 240ms var(--easing); }
.footer-col li a:hover { color: var(--brass); }
.footer-col li .day {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--cream);
  display: inline-block;
  width: 90px;
}
.footer-col li .time {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--brass-bright);
}

.footer-bottom {
  border-top: 1px solid var(--rule-warm);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-mini {
  font-family: var(--body);
  font-size: 11px;
  color: var(--cream-mute);
  letter-spacing: 0.04em;
}
.footer-social {
  display: flex;
  gap: 18px;
}
.footer-social a {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-mid);
  transition: color 240ms var(--easing);
  font-weight: 500;
}
.footer-social a:hover { color: var(--brass); }

/* ============= RESPONSIVE / MOBILE ============= */

/* Tablet — tighten paddings, keep layout */
@media (max-width: 1180px) {
  .nav { padding: 20px 36px; }
  .nav.scrolled { padding: 14px 36px; }
  .nav-links { gap: 24px; }
  .nav-links a { font-size: 11px; letter-spacing: 0.16em; }
  .container { padding: 0 36px; }
  .container-narrow, .container-prose { padding: 0 36px; }
  .hero-content { padding: 100px 36px 56px; }
  .section { padding: 110px 0; }
  .about-feature-band-content { padding: 76px 56px; }
  .form-wrap, .cater-intro, .location-grid,
  .mobile-kitchen-grid, .cater-teaser-grid { gap: 56px; }
  .footer-grid { gap: 44px; }
  .about-grid-asymmetric-1, .about-grid-asymmetric-2 { gap: 56px; }
  .gallery-grid { gap: 12px; grid-auto-rows: 170px; }
  .carousel { padding: 0 60px; }
}

/* Mobile main breakpoint — burger menu, single-column collapse */
@media (max-width: 980px) {
  .nav {
    grid-template-columns: 1fr auto !important;
    padding: 16px 22px !important;
    background: rgba(14, 11, 10, 0.96) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .nav.scrolled {
    padding: 12px 22px !important;
    background: rgba(14, 11, 10, 0.98) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .nav-logo { font-size: 20px; }
  .nav-logo::after { font-size: 8px; letter-spacing: 0.36em; }

  /* Mobile drawer — hidden by default, full-screen overlay when .open */
  .nav-links {
    display: none !important;
  }
  .nav-links::before { content: none; }
  .nav-links::after { content: none; }
  .nav-links.open {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: #0E0B0A !important;
    padding: 88px 28px 32px !important;
    margin: 0 !important;
    gap: 0;
    z-index: 90 !important;
    align-items: stretch !important;
    justify-content: center !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    list-style: none;
    box-sizing: border-box;
  }
  .nav-links li {
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(184, 153, 104, 0.22);
    list-style: none;
    margin: 0;
  }
  .nav-links li:first-child { border-top: 1px solid rgba(184, 153, 104, 0.22); }
  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    font-family: var(--display);
    font-size: clamp(20px, 5.4vw, 26px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.005em;
    text-transform: none;
    color: #F8F1E1;
    line-height: 1.15;
    min-height: 52px;
    box-sizing: border-box;
  }
  .nav-links a::after {
    content: '\2192';
    display: inline-block;
    position: static;
    left: auto;
    bottom: auto;
    width: auto;
    height: auto;
    background: none;
    font-style: normal;
    font-size: 16px;
    color: #B89968;
    opacity: 0.4;
    margin-left: 12px;
  }
  .nav-links a.active {
    color: #B89968;
  }
  .nav-links a.active::after { opacity: 1; }

  .nav-actions .nav-phone { display: none; }
  .nav-burger {
    display: block;
    width: 28px;
    height: 18px;
    padding: 12px;
    box-sizing: content-box;
    margin: -12px -8px -12px 0;
  }
  .nav-cta { padding: 10px 16px; font-size: 10px; letter-spacing: 0.22em; min-height: 40px; }

  .container, .container-narrow, .container-prose { padding: 0 24px; }
  .section { padding: 80px 0; }
  .section-tight { padding: 56px 0; }

  /* HERO — image as banner background with headline overlaid; rest of content below */
  .hero {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    min-height: auto;
    background: var(--espresso);
  }
  .hero-image {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 64vh;
    min-height: 400px;
    max-height: 600px;
    background-position: center 38%;
    flex: none;
  }
  .hero-image::before {
    background: linear-gradient(180deg,
      rgba(14,11,10,0.05) 0%,
      rgba(14,11,10,0.18) 28%,
      rgba(14,11,10,0.45) 55%,
      rgba(14,11,10,0.82) 88%,
      rgba(14,11,10,0.95) 100%);
  }
  .hero-image::after {
    background: radial-gradient(70% 55% at 50% 100%, rgba(184,153,104,0.18) 0%, rgba(184,153,104,0) 70%);
  }
  .hero-content {
    position: relative;
    padding: 36px 24px 64px;
    grid-column: 1 / -1;
    max-width: 720px;
  }
  /* Lift eyebrow + H1 onto the bottom of the image */
  .hero-headline {
    display: block;
    position: absolute;
    bottom: calc(100% + 24px);
    left: 24px;
    right: 24px;
    z-index: 5;
    pointer-events: none;
  }
  .hero-headline > * { pointer-events: auto; }
  .hero-h1 {
    font-size: clamp(30px, 8.4vw, 46px);
    line-height: 1.04;
    max-width: 22ch;
    margin: 0;
    color: var(--cream);
    text-shadow: 0 2px 28px rgba(14,11,10,0.55);
  }
  .hero-eyebrow-row { margin: 0 0 14px; gap: 14px; }
  .hero-eyebrow-row .eyebrow-line { width: 28px; }
  .hero-eyebrow-row .eyebrow {
    text-shadow: 0 1px 12px rgba(14,11,10,0.6);
  }
  .hero-sub {
    font-size: 17px;
    max-width: 36ch;
    margin: 0 0 14px;
    color: var(--cream);
    font-weight: 500;
  }
  .hero-text { font-size: 15px; max-width: 46ch; margin-bottom: 28px; line-height: 1.7; }
  .hero-actions { gap: 10px; margin-bottom: 32px; }
  .hero-actions .btn { padding: 13px 22px; font-size: 10px; letter-spacing: 0.22em; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 18px; }
  .hero-badge { padding: 12px 18px 12px 14px; gap: 12px; background: rgba(184,153,104,0.06); border-color: rgba(184,153,104,0.32); }
  .hero-badge-mark { width: 32px; height: 32px; font-size: 13px; }
  .hero-badge-text { font-size: 9px; letter-spacing: 0.24em; }
  .hero-address { font-size: 10px; letter-spacing: 0.06em; line-height: 1.6; }
  .hero-vertical { display: none; }
  .hero-scroll { display: none; }

  /* CHAPTER LABELS */
  .chapter-label { gap: 14px; margin-bottom: 28px; font-size: 10px; letter-spacing: 0.28em; flex-wrap: wrap; }
  .chapter-label-num { font-size: 16px; }
  .chapter-label-line { max-width: 120px; }

  /* KNOWN-FOR */
  .known-header { grid-template-columns: 1fr; gap: 18px; margin-bottom: 44px; }
  .known-title { font-size: clamp(28px, 7.4vw, 42px); line-height: 1.05; max-width: 22ch; }
  .known-blurb { font-size: 15px; line-height: 1.7; }
  .known-grid { grid-template-columns: 1fr; border-top: 1px solid var(--rule-warm); }
  .known-item, .known-item:nth-child(2n) {
    padding: 32px 0;
    border-right: 0;
    grid-template-columns: 36px 1fr;
    gap: 14px;
  }
  .known-item::after,
  .known-item:nth-child(2n)::after {
    background:
      radial-gradient(120% 90% at 100% 0%, rgba(14,11,10,0.55) 0%, rgba(14,11,10,0.85) 60%, var(--espresso) 100%),
      linear-gradient(180deg, rgba(14,11,10,0.4) 0%, rgba(14,11,10,0.7) 100%);
  }
  .known-item h3 { font-size: 21px; margin-bottom: 8px; line-height: 1.2; }
  .known-item p { font-size: 14.5px; line-height: 1.7; }
  .known-numeral { font-size: 17px; padding-top: 3px; }

  /* ABOUT PREVIEW */
  .about-preview-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-preview-img { aspect-ratio: 4 / 3; }
  .about-preview-content { padding-right: 0; }
  .about-preview-quote { font-size: clamp(22px, 5.4vw, 30px); line-height: 1.3; margin-bottom: 24px; }
  .about-preview-body { font-size: 15px; line-height: 1.75; }
  .about-preview-attr { font-size: 10px; letter-spacing: 0.28em; margin-bottom: 24px; }

  /* MENU HIGHLIGHTS */
  .menu-highlights-header { margin-bottom: 44px; }
  .menu-highlights-title { font-size: clamp(28px, 7.4vw, 42px); line-height: 1.08; margin-bottom: 14px; }
  .menu-highlights .lede { font-size: 16px; line-height: 1.5; }
  .menu-row { padding: 20px 0; gap: 16px; }
  .menu-row-name { font-size: 18px; line-height: 1.2; }
  .menu-row-desc { font-size: 13px; line-height: 1.45; }
  .menu-row-price { font-size: 14px; }
  .menu-highlights-cta { margin-top: 48px; }

  /* TESTIMONIAL CAROUSEL */
  .carousel { padding: 0 48px; margin-top: 48px; }
  .carousel-track { min-height: 280px; }
  .testimonial-mark { font-size: 60px; margin-bottom: 18px; height: 20px; }
  .testimonial-quote { font-size: clamp(20px, 4.8vw, 26px); line-height: 1.34; max-width: 26ch; margin-bottom: 24px; }
  .testimonial-attr { font-size: 10px; letter-spacing: 0.26em; }
  .carousel-arrow { width: 40px; height: 40px; font-size: 16px; }
  .carousel-dots { margin-top: 36px; gap: 10px; }
  .carousel-dot { width: 8px; height: 8px; }

  /* CATERING TEASER + LOCATION + MOBILE-KITCHEN + FORM + CONTACT + ABOUT */
  .cater-teaser-grid,
  .location-grid,
  .mobile-kitchen-grid,
  .form-wrap,
  .contact-grid,
  .about-grid-asymmetric-1,
  .about-grid-asymmetric-2,
  .cater-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cater-teaser-content,
  .form-aside,
  .mobile-kitchen-content { padding-right: 0; }
  .cater-teaser-img,
  .mobile-kitchen-img { aspect-ratio: 4 / 3; max-width: 100%; }
  .cater-teaser-actions { gap: 12px; margin-top: 24px; }

  /* LOCATION */
  .location-block-text { font-size: 19px; }
  .hours-list li { grid-template-columns: 130px 1fr; gap: 18px; padding: 12px 0; font-size: 14px; }
  .hours-list .day { font-size: 16px; }
  .hours-list .time { font-size: 13px; }
  .location-map { aspect-ratio: 4 / 3; }

  /* CTA STRIP */
  .cta-strip-title { font-size: clamp(32px, 8vw, 56px); line-height: 1.04; margin-bottom: 18px; }
  .cta-strip-text { font-size: 15px; line-height: 1.7; margin-bottom: 32px; }
  .cta-strip-actions { gap: 12px; }

  /* PAGE HEADER (interior pages) */
  .page-header { padding: 120px 0 56px; }
  .page-header h1 { font-size: clamp(40px, 11vw, 64px); line-height: 1.0; margin-bottom: 16px; max-width: 16ch; }
  .page-header-sub { font-size: 15px; line-height: 1.55; max-width: 100%; }
  .page-header-hero { padding: 130px 0 48px; min-height: 50vh; }
  .page-header-hero .menu-cta-strip { margin-top: 24px; gap: 10px; }
  .page-header-img { background-position: center; }

  /* Menu end CTA */
  .menu-end-cta { margin-top: 64px; padding: 48px 0 8px; }
  .menu-end-cta-title { font-size: clamp(28px, 6.4vw, 38px); line-height: 1.06; margin: 10px 0 14px; }
  .menu-end-cta-text { font-size: 15px; margin-bottom: 32px; }
  .menu-end-cta-actions { flex-direction: column; gap: 10px; width: 100%; }
  .menu-end-cta-actions .btn { width: 100%; justify-content: center; }

  /* ABOUT PAGE */
  .about-section h2 { font-size: clamp(32px, 6.4vw, 44px); }
  .about-section .body { font-size: 16px; line-height: 1.75; }
  .about-section .body + .body { margin-top: 18px; }
  .about-img-wide { aspect-ratio: 16 / 10; }
  .about-img-wide.lead { aspect-ratio: 16 / 10; }

  /* MENU PAGE */
  .menu-cta-strip { gap: 12px; margin-top: 32px; }
  .menu-cta-strip .btn { padding: 13px 22px; font-size: 10px; letter-spacing: 0.22em; }
  .menu-categories { margin-top: 48px; }
  .menu-cat-body-inner { grid-template-columns: 1fr; padding: 0 0 40px 0; gap: 0; }
  .menu-cat-header {
    grid-template-columns: 40px 1fr 36px;
    gap: 14px;
    padding: 22px 0;
    min-height: 64px;
  }
  .menu-cat-header:hover { padding: 22px 0; }
  .menu-cat-num { font-size: 15px; }
  .menu-cat-title { font-size: clamp(22px, 4.8vw, 28px); }
  .menu-cat-toggle { width: 36px; height: 36px; }
  .menu-cat-toggle::before { width: 12px; }
  .menu-cat-toggle::after { height: 12px; }
  .menu-cat-intro { font-size: 16px; margin-bottom: 4px; }
  .menu-cat-item { padding: 14px 0; gap: 12px; }
  .menu-cat-item-name { font-size: 17px; }
  .menu-cat-item-desc { font-size: 13px; }
  .menu-cat-item-price { font-size: 13px; }
  .slice-placeholder { padding: 44px 24px; margin: 48px 0; }
  .slice-placeholder-title { font-size: 24px; }
  .slice-placeholder-text { font-size: 13px; }

  /* CATERING / EVENTS */
  .cater-highlights-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .cater-highlight, .cater-highlight:nth-child(2n) {
    padding: 32px 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule-warm);
    padding-left: 0;
    padding-right: 0;
  }
  .cater-highlight h3 { font-size: 22px; }
  .step { grid-template-columns: 60px 1fr; gap: 22px; padding: 24px 0; }
  .step-num { font-size: 26px; }
  .step h3 { font-size: 19px; }
  .step p { font-size: 14px; }
  .mobile-kitchen-content h2 { font-size: clamp(30px, 6vw, 42px); margin-bottom: 22px; }

  /* FORMS */
  .form { grid-template-columns: 1fr; gap: 28px; }
  .form-wrap { gap: 36px; }
  .form-aside h2 { font-size: clamp(28px, 5.6vw, 40px); margin-bottom: 18px; }
  .form-aside p { font-size: 14px; }
  .field label { font-size: 9px; letter-spacing: 0.28em; margin-bottom: 10px; }
  .field input,
  .field select,
  .field textarea {
    font-size: 17px;
    padding: 8px 0 12px;
  }
  .field textarea { min-height: 110px; font-size: 16px; }
  .form-actions { gap: 16px; margin-top: 12px; }
  .form-actions .btn { width: 100%; justify-content: center; }
  .form-disclaimer { font-size: 12px; }

  /* PRIVATE EVENTS */
  .events-offer-grid { grid-template-columns: 1fr; margin: 40px auto 0; }
  .events-offer-item { padding: 38px 24px 32px; }
  .events-offer-text { font-size: 18px; max-width: 28ch; }
  .events-host-grid { grid-template-columns: repeat(2, 1fr); margin: 40px auto 0; }
  .events-host-item { padding: 32px 16px 26px; gap: 12px; }
  .events-host-text { font-size: 15px; max-width: 100%; }

  /* AWARDS */
  .awards-grid { grid-template-columns: 1fr; max-width: 100%; }
  .awards-card { padding: 38px 24px 32px; gap: 12px; }
  .awards-title { font-size: 19px; max-width: 24ch; }

  /* GALLERY */
  .gallery-page { padding-bottom: 24px; }
  .gallery-cat { margin-bottom: 64px; }
  .gallery-cat-header { grid-template-columns: 50px 1fr auto; gap: 16px; margin-bottom: 24px; padding-bottom: 14px; }
  .gallery-cat-num { font-size: 17px; }
  .gallery-cat-title { font-size: clamp(22px, 4.6vw, 30px); }
  .gallery-cat-count { font-size: 11px; }
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 130px;
    gap: 8px;
  }
  .gallery-item.span-4, .gallery-item.span-5, .gallery-item.span-6,
  .gallery-item.span-7, .gallery-item.span-8 { grid-column: span 6; }
  .gallery-item.row-2 { grid-row: span 1; }
  .gallery-note { font-size: 12px; padding: 16px 20px; margin-bottom: 48px; }

  /* CONTACT */
  .contact-grid { padding-bottom: 56px; }
  .contact-block-text { font-size: 19px; }
  .contact-strip-grid { grid-template-columns: 1fr; }
  .contact-strip-item, .contact-strip-item:nth-child(3n) {
    padding: 28px 0;
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule-warm);
  }
  .contact-strip-item:last-child { border-bottom: 0; }
  .contact-strip-item:nth-child(2),
  .contact-strip-item:nth-child(3) { padding-left: 0; }
  .contact-strip-item h3 { font-size: 21px; }
  .contact-map { aspect-ratio: 4 / 3; margin-top: 48px; }

  /* FOOTER */
  .footer { padding: 64px 0 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 28px; margin-bottom: 56px; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 8px; }
  .footer-brand h3 { font-size: 26px; }
  .footer-brand p { font-size: 13px; max-width: 100%; }
  .footer-col h4 { margin-bottom: 16px; font-size: 9px; letter-spacing: 0.32em; }
  .footer-col li { font-size: 13px; }
  .footer-col li .day { font-size: 13px; width: 80px; }
  .footer-col li .time { font-size: 11px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding-top: 22px; }
  .footer-mini { font-size: 10px; line-height: 1.6; }

  /* TOUCH TARGETS */
  .btn { min-height: 44px; }
  .btn-text { padding: 10px 0 6px; min-height: 36px; display: inline-flex; align-items: center; }
  .nav-links a { padding: 10px 0; }
}

/* Phone — tighter spacing, smaller decorative elements */
@media (max-width: 720px) {
  .container, .container-narrow, .container-prose { padding: 0 22px; }
  .section { padding: 64px 0; }
  .section-tight { padding: 48px 0; }
  .hero-image { height: 56vh; min-height: 360px; max-height: 520px; }
  .hero-content { padding: 32px 22px 56px; }
  .hero-headline { left: 22px; right: 22px; bottom: calc(100% + 22px); }
  .hero-h1 { font-size: clamp(28px, 8.4vw, 40px); line-height: 1.06; max-width: 20ch; }
  .hero-sub { font-size: 16px; margin-bottom: 12px; }
  .hero-text { font-size: 15px; line-height: 1.65; margin-bottom: 24px; max-width: 100%; }
  .hero-actions { width: 100%; gap: 8px; }
  .hero-actions .btn { flex: 1 1 calc(50% - 4px); justify-content: center; padding: 13px 12px; font-size: 10px; letter-spacing: 0.18em; min-height: 46px; }
  .hero-actions .btn-text { flex: 1 1 100%; padding: 4px 0 2px; font-size: 11px; }
  .hero-badge { padding: 10px 14px 10px 12px; gap: 10px; }
  .hero-badge-text { font-size: 9px; line-height: 1.4; letter-spacing: 0.22em; }
  .hero-address { font-size: 10px; word-break: break-word; line-height: 1.55; }

  .chapter-label { font-size: 10px; letter-spacing: 0.24em; gap: 12px; }
  .chapter-label-line { display: none; }

  .known-title { font-size: clamp(26px, 8vw, 36px); line-height: 1.05; }
  .known-item, .known-item:nth-child(2n) { padding: 28px 0; gap: 12px; grid-template-columns: 32px 1fr; }
  .known-item h3 { font-size: 19px; }
  .known-item p { font-size: 14px; line-height: 1.65; }
  .known-numeral { font-size: 16px; padding-top: 2px; }

  .about-preview-quote { font-size: clamp(20px, 5.6vw, 26px); line-height: 1.32; }
  .about-preview-body { font-size: 14.5px; }

  .menu-highlights-title { font-size: clamp(26px, 8vw, 36px); line-height: 1.08; }
  .menu-row { padding: 18px 0; }
  .menu-row-name { font-size: 17px; }
  .menu-row-desc { font-size: 13px; }

  .carousel { padding: 0 36px; margin-top: 40px; }
  .carousel-track { min-height: 260px; }
  .carousel-arrow { width: 36px; height: 36px; font-size: 14px; }
  .testimonial-mark { font-size: 50px; margin-bottom: 14px; height: 16px; }
  .testimonial-quote { font-size: clamp(18px, 5vw, 22px); line-height: 1.36; max-width: 22ch; }
  .carousel-dots { margin-top: 30px; }

  .cater-teaser-title,
  .mobile-kitchen-content h2 { font-size: clamp(24px, 6.6vw, 32px); line-height: 1.1; }

  .cta-strip-title { font-size: clamp(28px, 8.6vw, 44px); line-height: 1.08; }
  .cta-strip-text { font-size: 14.5px; }
  .cta-strip-actions .btn { width: 100%; justify-content: center; }

  .page-header { padding: 100px 0 44px; }
  .page-header-hero { padding: 110px 0 40px; min-height: 44vh; }
  .page-header h1 { font-size: clamp(34px, 11vw, 54px); line-height: 1.02; }
  .page-header-sub { font-size: 15px; line-height: 1.55; }

  .about-feature-band-content { padding: 56px 24px; }
  .about-feature-band-img .band-numeral { font-size: 38px; top: 18px; left: 20px; }
  .about-feature-band-img .band-tag { right: 20px; bottom: 20px; padding: 7px 12px; font-size: 9px; }
  .about-img-wide .img-caption { left: 20px; bottom: 18px; padding: 8px 14px; font-size: 9px; letter-spacing: 0.26em; }
  .about-img-wide .img-numeral { right: 20px; bottom: 18px; font-size: 18px; }

  .menu-cat-header { padding: 18px 0; min-height: 60px; grid-template-columns: 32px 1fr 32px; gap: 12px; }
  .menu-cat-header:hover { padding: 18px 0; }
  .menu-cat-title { font-size: clamp(20px, 5.2vw, 24px); }
  .menu-cat-toggle { width: 32px; height: 32px; }

  .step { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .step-num { font-size: 22px; }
  .step h3 { margin-bottom: 4px; }

  .events-host-grid { grid-template-columns: 1fr; }
  .events-host-item { padding: 28px 18px 24px; }

  .gallery-cat-header { grid-template-columns: 36px 1fr; gap: 12px; }
  .gallery-cat-count { display: none; }
  .gallery-grid { grid-auto-rows: 110px; gap: 6px; }

  .form-wrap { gap: 30px; }
  .form { gap: 24px; }
  .field input,
  .field select { font-size: 16px; }
  .field textarea { font-size: 16px; }

  .footer-brand h3 { font-size: 24px; }
  .footer-bottom { gap: 12px; }
}

/* Small phone — single-column footer, full-width buttons */
@media (max-width: 540px) {
  .container, .container-narrow, .container-prose { padding: 0 20px; }
  .section { padding: 56px 0; }
  .nav { padding: 14px 18px; }
  .nav.scrolled { padding: 10px 18px; }
  .nav-cta { padding: 8px 12px; font-size: 9.5px; letter-spacing: 0.2em; }

  .hero-image { height: 52vh; min-height: 320px; max-height: 480px; }
  .hero-content { padding: 28px 20px 48px; }
  .hero-headline { left: 20px; right: 20px; bottom: calc(100% + 20px); }
  .hero-h1 { font-size: clamp(26px, 8.8vw, 36px); line-height: 1.08; max-width: 18ch; }
  .hero-sub { font-size: 15px; }
  .hero-text { font-size: 14.5px; }
  .hero-actions { gap: 8px; }
  .hero-actions .btn { flex: 1 1 100%; padding: 14px 16px; font-size: 10.5px; min-height: 48px; }
  .hero-actions .btn-text { padding: 6px 0; }
  .hero-badge { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: 1; }
  .hours-list li { grid-template-columns: 110px 1fr; gap: 12px; padding: 10px 0; }
  .hours-list .day { font-size: 14px; }

  .events-offer-grid { margin: 32px auto 0; }
  .events-offer-item { padding: 32px 18px 28px; }

  .awards-card { padding: 32px 20px 28px; }
  .awards-title { font-size: 17px; }
  .awards-source { font-size: 9px; letter-spacing: 0.28em; }

  .contact-strip-item h3 { font-size: 19px; }
  .contact-strip-item p { font-size: 13.5px; }

  .gallery-grid { grid-auto-rows: 96px; }

  .cater-teaser-actions .btn,
  .menu-cta-strip .btn,
  .cta-strip-actions .btn,
  .form-actions .btn { width: 100%; justify-content: center; }

  .slice-placeholder { padding: 36px 18px; margin: 36px 0; }
  .slice-placeholder-title { font-size: 21px; }

  .page-header { padding: 96px 0 40px; }
  .page-header-hero { padding: 100px 0 36px; min-height: 40vh; }
  .page-header h1 { font-size: clamp(32px, 11.5vw, 48px); letter-spacing: -0.02em; line-height: 1.04; }

  .menu-row { grid-template-columns: 1fr; gap: 4px; }
  .menu-row-price { justify-self: start; padding-top: 4px; }

  .menu-cat-item { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
  .menu-cat-item-price { justify-self: start; padding-top: 2px; }

  .known-title,
  .menu-highlights-title { font-size: clamp(24px, 8.4vw, 32px); }
  .cater-teaser-title,
  .mobile-kitchen-content h2 { font-size: clamp(22px, 7vw, 30px); }
  .cta-strip-title { font-size: clamp(26px, 9vw, 38px); }
}

/* Very small phone — final tightening */
@media (max-width: 380px) {
  .container, .container-narrow, .container-prose { padding: 0 18px; }
  .nav { padding: 12px 16px; }
  .nav-logo { font-size: 18px; }
  .nav-cta { display: none; }
  .nav-actions { gap: 10px; }

  .hero-content { padding: 24px 18px 44px; }
  .hero-headline { left: 18px; right: 18px; bottom: calc(100% + 18px); }
  .hero-h1 { font-size: clamp(24px, 9.2vw, 32px); line-height: 1.1; max-width: 16ch; }
  .hero-text { font-size: 14px; }

  .known-title,
  .menu-highlights-title { font-size: clamp(22px, 8vw, 28px); line-height: 1.1; }
  .cater-teaser-title,
  .mobile-kitchen-content h2 { font-size: clamp(20px, 7vw, 26px); }
  .known-item h3 { font-size: 19px; }

  .testimonial-quote { font-size: 18px; }
  .carousel { padding: 0 24px; }
  .carousel-arrow { width: 32px; height: 32px; font-size: 14px; }

  .page-header h1 { font-size: clamp(30px, 13vw, 42px); }
  .cta-strip-title { font-size: clamp(24px, 9vw, 32px); }
}

/* Touch-only adjustments — disable hover-dependent reveals on touch devices */
@media (hover: none) and (pointer: coarse) {
  .gallery-item:hover { filter: brightness(0.86) contrast(1.04); transform: none; }
  .menu-cat-header:hover .menu-cat-title { color: var(--cream); }
  .location-map:hover,
  .contact-map:hover { filter: grayscale(0.4) contrast(0.95) brightness(0.85); }
  .known-item:hover::before {
    opacity: 0.13;
    filter: grayscale(35%) blur(1.5px) brightness(0.78) contrast(1.05);
    transform: scale(1.04);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-image { animation: none !important; }
}

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 900ms var(--easing), transform 900ms var(--easing); }
.reveal.visible { opacity: 1; transform: translateY(0); }
