/* ============================================================
   Nonna's · Trattoria Romana · Marbella
   Editorial Roman aesthetic — travertine + brick + candle amber
   ============================================================ */

:root {
  /* Anchor palette pulled from the logo */
  --brick:        #9B3A2B;
  --brick-deep:   #7A2A1F;
  --travertine:   #EDE3D2;   /* slightly warmer than the logo cream so it doesn't look grey */
  --travertine-2: #E5DDD0;
  --travertine-3: #DDD3C0;
  --walnut:       #2D1F16;
  --walnut-soft:  #3A2A20;
  --candle:       #D4922A;
  --candle-soft:  #C28E45;
  --olive:        #5A6347;
  --ivory:        #F5EFE0;
  --ink:          #1A120D;

  /* Typography */
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;
  --space-7: 9rem;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  background: var(--travertine);
  color: var(--walnut);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

::selection { background: var(--brick); color: var(--ivory); }

/* ============================================================
   NAV — no bar. Logo + links float freely over the page.
   Over the dark hero video, links are ivory. Once scrolled past
   the hero (.nav.is-scrolled), links flip to walnut for legibility
   on the cream sections.
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 2rem;
  /* NO background, NO backdrop-filter — just floating elements */
  pointer-events: none;        /* let clicks pass through the empty middle */
}
.nav > * { pointer-events: auto; } /* re-enable on actual children */

.nav__logo img {
  height: 88px; width: auto;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.25));   /* lift the badge off any background */
}

.nav__links { list-style: none; display: flex; gap: var(--space-3); align-items: center; }

.nav__links a {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);                                   /* default = light (over hero) */
  font-weight: 500;
  position: relative;
  padding: 0.4rem 0.2rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);              /* subtle lift over hero video */
  transition: color 0.35s ease, text-shadow 0.35s ease;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1px; background: currentColor; transition: right 0.3s ease;
}
.nav__links a:hover::after { right: 0; }

/* Pill CTA — same brick everywhere */
.nav__cta {
  background: var(--brick);
  color: var(--ivory) !important;
  padding: 0.55rem 1rem !important;
  border-radius: 999px;
  text-shadow: none !important;
  box-shadow: 0 4px 18px rgba(0,0,0,0.22);
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--brick-deep); }

/* When scrolled past the hero — links become dark walnut on the cream sections */
.nav.is-scrolled .nav__links a {
  color: var(--walnut);
  text-shadow: none;
}
.nav.is-scrolled .nav__logo img {
  filter: none;
}

/* ============================================================
   HERO — scroll-scrub
   Outer .hero = 400svh (3x slower scroll distance vs the 220svh default).
   Inner .hero__sticky pins at top:0 / 100svh.
   Video advances by currentTime mapped through ease-in-out cubic, so the
   beginning and end of the scroll feel slow, the middle goes briskly.
   ============================================================ */
.hero {
  position: relative;
  height: 400svh;
  min-height: 2400px;
  background: var(--walnut);
}
.hero__sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media video,
.hero__media .hero__fallback {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  position: absolute; inset: 0;
}
.hero__media video { z-index: 2; }
.hero__media .hero__fallback { z-index: 1; }

.hero__overlay {
  position: absolute; inset: 0; z-index: 4;
  background:
    /* Subtle top + heavier bottom-right vignette so the corner text reads cleanly */
    linear-gradient(180deg, rgba(26,18,13,0.30) 0%, rgba(26,18,13,0) 40%),
    radial-gradient(ellipse at 100% 100%, rgba(26,18,13,0.60) 0%, rgba(26,18,13,0) 55%);
}

/* Hero text block — tucked into the lower-right, right-aligned, scaled down */
.hero__content {
  position: absolute; z-index: 5;
  bottom: clamp(2.5rem, 5vw, 4.5rem);
  right: clamp(2rem, 5vw, 4.5rem);
  max-width: 460px;
  display: flex; flex-direction: column; align-items: flex-end;
  text-align: right;
  color: var(--ivory);
}
.hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.85;
  margin-bottom: 0.6rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}
.hero__title em { font-style: italic; }
.hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.4;
  opacity: 0.92;
  margin-bottom: 1.2rem;
  max-width: 24ch;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* CTA */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn--primary {
  background: var(--brick);
  color: var(--ivory);
  border-color: var(--brick);
}
.btn--primary:hover { background: var(--brick-deep); border-color: var(--brick-deep); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ivory); }
.btn--ghost:hover { background: var(--ivory); color: var(--walnut); }

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro {
  padding: var(--space-7) 2rem;
  background: var(--travertine);
}
.intro__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.intro__line {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.25;
  color: var(--brick);
  margin-bottom: var(--space-4);
}
.intro__body {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  line-height: 1.7;
  color: var(--walnut);
  font-weight: 400;
}
.intro__body em { color: var(--brick); font-style: italic; }

/* ============================================================
   BLEEDS — pinned editorial sections
   Outer .bleed is 200svh tall → gives 2 viewports of scroll per bleed.
   Inner .bleed__sticky pins at top:0 / 100svh → image stays visible
   while text reveals progressively across the scroll distance.
   ============================================================ */
.bleed {
  position: relative;
  height: 200svh;
  min-height: 1400px;
  background: var(--walnut);
}
.bleed__sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}
.bleed__img,
.bleed__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform-origin: center center;
  will-change: transform;
}
.bleed__video { z-index: 2; }
.bleed__img { z-index: 1; }
/* Until the video source loads, keep the still image visible */
.bleed--motion .bleed__video[src=""] ~ .bleed__img,
.bleed--motion .bleed__video:not([src]) ~ .bleed__img { z-index: 3; }

/* Caption — NO card. Text floats directly over the image.
   A subtle corner-vignette (added on .bleed__sticky::before) gives the text a
   spot of darker space so it reads against any underlying image, light or dark. */
.bleed__caption {
  position: absolute; z-index: 5;
  bottom: clamp(2.5rem, 5vw, 4.5rem);
  left: clamp(2.5rem, 5vw, 4.5rem);
  max-width: 420px;
  /* no background, no blur, no border, no padding */
  color: var(--ivory);
}
.bleed--cap-right .bleed__caption {
  left: auto;
  right: clamp(2.5rem, 5vw, 4.5rem);
  text-align: right;
}
.bleed--cap-top .bleed__caption {
  bottom: auto;
  top: clamp(7rem, 12vw, 9rem);
}

/* Corner-vignette spotlight under the caption — heavier so text reads on any image */
.bleed__sticky::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 3;       /* between image/video (1-2) and caption (5) */
  pointer-events: none;
  /* Larger ellipse, deeper falloff, fully opaque core for strong contrast */
  background: radial-gradient(ellipse 90% 80% at 0% 100%, rgba(18,12,8,0.92), rgba(18,12,8,0.42) 38%, rgba(18,12,8,0) 75%);
}
.bleed--cap-right .bleed__sticky::before {
  background: radial-gradient(ellipse 90% 80% at 100% 100%, rgba(18,12,8,0.92), rgba(18,12,8,0.42) 38%, rgba(18,12,8,0) 75%);
}
.bleed--cap-top.bleed--cap-right .bleed__sticky::before {
  background: radial-gradient(ellipse 90% 80% at 100% 0%, rgba(18,12,8,0.92), rgba(18,12,8,0.42) 38%, rgba(18,12,8,0) 75%);
}

/* Each caption element starts hidden + below — scroll progress drives reveal */
.bleed__eyebrow,
.bleed__title,
.bleed__body {
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
}

.bleed__eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--candle);
  margin-bottom: 0.7rem;
  letter-spacing: 0.06em;
  text-shadow:
    0 1px 2px rgba(0,0,0,1),
    0 2px 8px rgba(0,0,0,0.9),
    0 3px 18px rgba(0,0,0,0.7);
}
.bleed__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 4.6vw, 4rem);
  line-height: 1;
  margin-bottom: 1.05rem;
  color: var(--ivory);
  /* Three-stacked shadow — close hard halo, soft mid-glow, broad outer wash */
  text-shadow:
    0 1px 2px rgba(0,0,0,1),
    0 2px 8px rgba(0,0,0,0.95),
    0 4px 20px rgba(0,0,0,0.85),
    0 6px 48px rgba(0,0,0,0.6);
}
.bleed__title em {
  font-style: italic;
  color: var(--ivory);
}
.bleed__body {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ivory);
  opacity: 1;
  text-shadow:
    0 1px 2px rgba(0,0,0,1),
    0 2px 10px rgba(0,0,0,0.9),
    0 3px 24px rgba(0,0,0,0.65);
}

/* Stronger gradient at bottom of each bleed for caption readability — now scoped to sticky */
.bleed__sticky::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0; height: 62%;
  background: linear-gradient(180deg,
    rgba(20,14,9,0)    0%,
    rgba(20,14,9,0.18) 45%,
    rgba(20,14,9,0.48) 78%,
    rgba(20,14,9,0.72) 100%);
  z-index: 4;
  pointer-events: none;
}

/* ============================================================
   MANIFESTO — pause between craft trilogy and signature dish
   ============================================================ */
.manifesto {
  padding: var(--space-7) 2rem;
  background: var(--travertine);
  text-align: center;
}
.manifesto__inner {
  max-width: 880px;
  margin: 0 auto;
}
.manifesto__eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--brick);
  margin: 0 0 var(--space-4) 0;
}
.manifesto__display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.05;
  color: var(--walnut);
  margin: 0 0 var(--space-3) 0;
  letter-spacing: -0.01em;
}
.manifesto__display em { font-style: italic; }
.manifesto__english {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  color: var(--walnut-soft);
  margin: 0 0 var(--space-5) 0;
  letter-spacing: 0.03em;
}
.manifesto__body {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--walnut-soft);
  max-width: 620px;
  margin: 0 auto;
}
@media (max-width: 680px) {
  .manifesto { padding: var(--space-6) 1.5rem; }
}

/* ============================================================
   MENU PEEK — three featured dishes on dark walnut
   ============================================================ */
.peek {
  padding: var(--space-7) 2rem;
  background: var(--walnut);
  color: var(--ivory);
}
.peek__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.peek__eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--candle);
  margin: 0 0 var(--space-2) 0;
  text-align: center;
}
.peek__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  text-align: center;
  margin: 0 0 var(--space-6) 0;
  color: var(--ivory);
  letter-spacing: -0.01em;
}
.peek__title em { font-style: italic; }
.peek__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.peek__item {
  padding: 0 var(--space-2);
  border-left: 1px solid rgba(245,239,224,0.16);
}
.peek__item:first-child { border-left: none; padding-left: 0; }
.peek__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.65rem;
  margin: 0 0 var(--space-2) 0;
  color: var(--ivory);
  line-height: 1.15;
}
.peek__name em { font-style: italic; }
.peek__desc {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0 0 var(--space-3) 0;
  color: rgba(245,239,224,0.78);
}
.peek__price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.18rem;
  color: var(--candle);
  letter-spacing: 0.04em;
  margin: 0;
}
@media (max-width: 768px) {
  .peek__grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .peek__item { border-left: none; border-top: 1px solid rgba(245,239,224,0.16); padding: var(--space-3) 0 0 0; }
  .peek__item:first-child { border-top: none; padding-top: 0; }
}

/* ============================================================
   NUMBERS — stats as poetry on travertine-2
   ============================================================ */
.numbers {
  padding: var(--space-7) 2rem;
  background: var(--travertine-2);
}
.numbers__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.numbers__eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--brick);
  margin: 0 0 var(--space-5) 0;
  text-align: center;
}
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  align-items: start;
}
.numbers__item {
  text-align: center;
}
.numbers__value {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(4.5rem, 9vw, 7.5rem);
  line-height: 1;
  color: var(--brick);
  margin: 0 0 var(--space-3) 0;
  letter-spacing: -0.02em;
}
.numbers__value em { font-style: italic; }
.numbers__caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.45;
  color: var(--walnut);
  max-width: 280px;
  margin: 0 auto;
}
.numbers__en {
  display: block;
  font-style: normal;
  font-size: 0.88rem;
  color: var(--walnut-soft);
  letter-spacing: 0.04em;
  margin-top: 0.35rem;
  opacity: 0.78;
}
@media (max-width: 768px) {
  .numbers__grid { grid-template-columns: 1fr; gap: var(--space-5); }
}

/* ============================================================
   MENU
   ============================================================ */
.menu {
  padding: var(--space-7) 2rem;
  background: var(--travertine-2);
}
.menu__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.menu__eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--brick);
  text-align: center;
  margin-bottom: var(--space-2);
  font-weight: 500;
}
.menu__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  text-align: center;
  line-height: 1;
  margin-bottom: var(--space-3);
  color: var(--walnut);
}
.menu__lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  text-align: center;
  color: var(--walnut-soft);
  max-width: 600px;
  margin: 0 auto var(--space-6);
  line-height: 1.55;
}
.menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
}
.menu__col h3.menu__cat {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--brick);
  margin-top: var(--space-4);
  margin-bottom: var(--space-2);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(155, 58, 43, 0.25);
}
.menu__col h3.menu__cat:first-child { margin-top: 0; }
.menu__col ul { list-style: none; }
.menu__col li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px dotted rgba(45, 31, 22, 0.18);
  font-family: var(--serif);
}
.menu__col li:last-child { border-bottom: none; }
.menu__col li span {
  font-size: 1.15rem;
  color: var(--walnut);
  font-weight: 500;
  white-space: nowrap;
}
.menu__col li em {
  font-style: italic;
  color: var(--walnut-soft);
  text-align: right;
  font-size: 0.98rem;
  line-height: 1.4;
}
.menu__note {
  margin-top: var(--space-6);
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--brick);
}

/* ============================================================
   VISIT
   ============================================================ */
.visit {
  padding: var(--space-7) 2rem;
  background: var(--walnut);
  color: var(--ivory);
}
.visit__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.visit__eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--candle);
  margin-bottom: var(--space-2);
  font-weight: 500;
}
.visit__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: var(--space-5);
}
.visit__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
}
.visit__label {
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--candle);
  margin-bottom: var(--space-2);
  font-weight: 500;
}
.visit__body {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--ivory);
}
.visit__body a { color: var(--candle); border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.visit__body a:hover { color: var(--ivory); }

/* ============================================================
   WAITLIST
   ============================================================ */
/* Warm brick gradient — keeps the brick character but layered with a soft
   candle-amber glow at the center and a deeper brick at the edges, so the
   eye lands on the title and the section feels lit rather than flat. */
.waitlist {
  padding: var(--space-7) 2rem;
  background:
    radial-gradient(ellipse 70% 55% at 50% 40%, rgba(212, 146, 42, 0.28), rgba(212, 146, 42, 0) 70%),
    radial-gradient(ellipse 130% 110% at 50% 50%, var(--brick) 0%, var(--brick-deep) 85%);
  color: var(--ivory);
  text-align: center;
  position: relative;
}
.waitlist__inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.waitlist__eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
  font-weight: 500;
  color: var(--ivory);
  opacity: 0.88;
}
.waitlist__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  line-height: 1;
  margin-bottom: var(--space-3);
  color: var(--ivory);
}
.waitlist__lede {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.7vw, 1.25rem);
  margin-bottom: var(--space-5);
  color: rgba(245, 239, 224, 0.92);
  line-height: 1.55;
}
.waitlist__form {
  display: flex; gap: 0.6rem;
  max-width: 480px; margin: 0 auto;
  background: var(--ivory);
  border-radius: 999px;
  padding: 0.4rem;
}
.waitlist__form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.85rem 1.2rem;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--walnut);
  outline: none;
}
.waitlist__form input::placeholder { color: rgba(45, 31, 22, 0.45); }
.waitlist__form button {
  background: var(--walnut);
  color: var(--ivory);
  border: none;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s ease;
}
.waitlist__form button:hover { background: var(--brick-deep); }

/* ============================================================
   PROPOSAL — quiet closing pitch for the owner
   ============================================================ */
.proposal {
  padding: var(--space-7) 2rem;
  background: var(--travertine);
  text-align: center;
  position: relative;
}
.proposal__inner {
  max-width: 980px;
  margin: 0 auto;
}
.proposal__eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--brick);
  margin: 0 0 var(--space-4) 0;
}
.proposal__price {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(4rem, 9vw, 7.5rem);
  line-height: 1;
  color: var(--walnut);
  margin: 0 0 var(--space-3) 0;
  letter-spacing: -0.02em;
}
.proposal__price em { font-style: italic; }
.proposal__lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--walnut-soft);
  margin: 0 auto var(--space-6) auto;
  max-width: 680px;
  line-height: 1.55;
}
.proposal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  text-align: left;
  margin-bottom: var(--space-6);
}
.proposal__col {
  padding: 0 var(--space-2);
  border-left: 1px solid rgba(45, 31, 22, 0.16);
}
.proposal__col:first-child { border-left: none; padding-left: 0; }
.proposal__col-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--brick);
  margin: 0 0 var(--space-2) 0;
}
.proposal__col-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  margin: 0 0 var(--space-2) 0;
  color: var(--walnut);
  line-height: 1.15;
}
.proposal__col-title em { font-style: italic; }
.proposal__col-body {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0;
  color: var(--walnut-soft);
}
.proposal__footer {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--walnut-soft);
  margin: 0;
  line-height: 1.55;
}
.proposal__footer strong {
  font-weight: 600;
  font-style: normal;
  color: var(--brick);
}
@media (max-width: 768px) {
  .proposal__grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .proposal__col { border-left: none; border-top: 1px solid rgba(45, 31, 22, 0.16); padding: var(--space-3) 0 0 0; }
  .proposal__col:first-child { border-top: none; padding-top: 0; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: var(--space-5) 2rem;
  background: var(--ink);
  color: var(--ivory);
  text-align: center;
}
.footer__logo {
  height: 80px; width: auto;
  margin: 0 auto var(--space-3);
  filter: brightness(1.05);
}
.footer__line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: var(--space-1);
  opacity: 0.9;
}
.footer__line--small {
  font-style: normal;
  font-size: 0.95rem;
  opacity: 0.75;
}
.footer__line--tiny {
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.78rem;
  opacity: 0.55;
  margin-top: var(--space-3);
  letter-spacing: 0.04em;
}
.footer__line a { border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.footer__line a:hover { color: var(--candle); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 820px) {
  .nav { padding: 0.9rem 1.2rem; }
  .nav__logo img { height: 36px; }
  .nav__links { gap: var(--space-2); }
  .nav__links a { font-size: 0.7rem; letter-spacing: 0.08em; }
  .nav__links li:not(:last-child) { display: none; }

  .bleed__caption {
    left: 1rem; right: 1rem; bottom: 1.5rem;
    max-width: none;
    padding: 1.2rem 1.4rem;
  }

  .menu__grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .menu__col li { font-size: 0.95rem; }
  .menu__col li em { font-size: 0.85rem; }

  .visit__grid { grid-template-columns: 1fr; gap: var(--space-4); }

  .waitlist__form { flex-direction: column; border-radius: 12px; }
  .waitlist__form input { padding: 0.9rem 1rem; }
  .waitlist__form button { padding: 0.95rem 1rem; border-radius: 8px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .intro, .menu, .visit, .waitlist { padding-left: 1.2rem; padding-right: 1.2rem; }
}
