/* ============================================================
   NONNA'S — Cucina Italiana · Marbella
   Built to the official brand book (Tessa Arts, 2026) with the
   REAL brand fonts from the client's Branding Pack:
   · Colors: deep red #9e2b2b · cream #e6dbc7 · deep green #2f4a3c
             warm brown #8b5a3c · bougainvillea #c43d4d
   · Type:   NY Irvin (the New Yorker face — wordmark + titles)
             Biro Script (handwritten accents; Caveat covers the
             digits/punctuation the reduced cut lacks)
             Helvetica Now Text (body)
             Adobe Caslon Pro (editorial serif / italic accents)
             Source Sans Semibold tracking 200 (labels / baseline)
   ============================================================ */

@font-face {
  font-family: 'NY Irvin';
  src: url('assets/fonts/ny-irvin.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Biro Script';
  src: url('assets/fonts/biro-script.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Helvetica Now Text';
  src: url('assets/fonts/helvetica-now-text.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Caslon Pro';
  src: url('assets/fonts/caslon-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Caslon Pro';
  src: url('assets/fonts/caslon-italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Caslon Pro';
  src: url('assets/fonts/caslon-semibold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

:root {
  /* Official brand colours (red sampled from the vector logo) */
  --rosso:        #9e2b2b;   /* PRIMARY deep red — Pantone 7622 C */
  --rosso-deep:   #7c2021;   /* darker shade for hover / gradient edges */
  --crema:        #e6dbc7;   /* BASE warm cream — Pantone 4685 C */
  --crema-page:   #f5f0e8;   /* the brand-book page cream (lighter) */
  --verde:        #2f4a3c;   /* SECONDARY deep green — Pantone 5535 C */
  --verde-deep:   #24392e;
  --marrone:      #8b5a3c;   /* SUPPORT warm brown — Pantone 7584 C */
  --bougainvillea:#c43d4d;   /* ACCENT — Pantone 7416 C */
  --ink:          #2a221a;   /* warm charcoal for body text on cream */

  /* Type system — the genuine brand faces, served as woff2 */
  --title:  'NY Irvin', 'Bodoni Moda', Georgia, serif;
  --script: 'Biro Script', 'Caveat', cursive;
  --body:   'Helvetica Now Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --serif:  'Caslon Pro', Georgia, serif;
  --label:  'Source Sans 3', 'Source Sans Pro', 'Helvetica Neue', sans-serif;

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

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--crema-page);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }

::selection { background: var(--rosso); color: var(--crema-page); }

a { color: inherit; text-decoration: none; }

/* Shared label style — Source Sans Semibold, tracking 200 (the logo baseline spec) */
.u-label {
  font-family: var(--label);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2rem;
  pointer-events: none;
}
.nav > * { pointer-events: auto; }

.nav__logo { display: block; transition: opacity 0.35s ease; }
.nav__logo-img { height: 54px; width: auto; }
.nav__logo-img--red { display: none; }
.nav.is-scrolled .nav__logo-img--cream { display: none; }
.nav.is-scrolled .nav__logo-img--red { display: block; }
/* Over the hero the big lockup carries the brand — hide the nav copy */
.nav.nav--over-hero .nav__logo { opacity: 0; pointer-events: none; }

.nav__links {
  list-style: none;
  display: flex; gap: var(--space-3); align-items: center;
}
.nav__links a {
  font-family: var(--label);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crema-page);
  text-shadow: 0 1px 6px rgba(20, 12, 8, 0.55);
  transition: color 0.2s ease, opacity 0.2s ease;
}
.nav__links a:hover { opacity: 0.75; }
.nav.is-scrolled .nav__links a {
  color: var(--ink);
  text-shadow: none;
}
.nav__cta {
  background: var(--rosso);
  color: var(--crema-page) !important;
  text-shadow: none !important;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  transition: background 0.2s ease;
}
.nav__cta:hover { background: var(--rosso-deep); opacity: 1 !important; }

/* ============================================================
   HERO — scroll-scrub video, official lockup over the frame
   ============================================================ */
.hero { height: 400svh; position: relative; }
.hero__sticky {
  position: sticky; top: 0;
  height: 100svh;
  overflow: hidden;
}
.hero__media, .hero__media video, .hero__fallback {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__fallback { z-index: -1; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 52%, rgba(20, 12, 8, 0) 40%, rgba(20, 12, 8, 0.42) 100%),
    linear-gradient(180deg, rgba(20, 12, 8, 0.30) 0%, rgba(20, 12, 8, 0) 28%);
}
.hero__content {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: min(82vw, 660px);
}
.hero__lockup {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 18px rgba(20, 12, 8, 0.55));
  margin-bottom: var(--space-3);
}
.hero__script {
  font-family: var(--script);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--crema-page);
  text-shadow: 0 1px 4px rgba(20, 12, 8, 0.8), 0 2px 14px rgba(20, 12, 8, 0.55);
  margin-bottom: var(--space-4);
}
.btn {
  display: inline-block;
  font-family: var(--label);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.15s ease;
}
.btn--primary {
  background: var(--rosso);
  color: var(--crema-page);
  box-shadow: 0 4px 24px rgba(20, 12, 8, 0.35);
}
.btn--primary:hover { background: var(--rosso-deep); transform: translateY(-1px); }
.btn--primary:active { transform: translateY(0); }

/* ============================================================
   INTRO
   ============================================================ */
.intro {
  padding: var(--space-7) 2rem;
  background: var(--crema-page);
  text-align: center;
}
.intro__inner { max-width: 760px; margin: 0 auto; }
.intro__script {
  font-family: var(--script);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  color: var(--rosso);
  margin-bottom: var(--space-2);
}
.intro__title {
  font-family: var(--title);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: var(--space-4);
}
.intro__body {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.75;
  color: var(--ink);
  opacity: 0.88;
}
.intro__body em {
  font-family: var(--script);
  font-style: normal;
  font-size: 1.35em;
  color: var(--rosso);
}

/* ============================================================
   BLEEDS — pinned full-viewport imagery with camera moves
   ============================================================ */
.bleed { height: 200svh; position: relative; }
.bleed__sticky {
  position: sticky; top: 0;
  height: 100svh;
  overflow: hidden;
}
.bleed__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: center center;
  will-change: transform;
  z-index: 1;
}
/* La materia: the produce lives in the lower third of a tall photo —
   on wide desktop crops, bias the frame down so the ingredients stay
   in shot (mobile is portrait and already shows them, so left default) */
@media (min-width: 769px) {
  .bleed--low-focus .bleed__img { object-position: 50% 74%; }
}

/* Corner-vignette spotlight under the caption */
.bleed__sticky::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 80% at 0% 100%, rgba(20, 12, 8, 0.92), rgba(20, 12, 8, 0.42) 38%, rgba(20, 12, 8, 0) 75%);
}
.bleed--cap-right .bleed__sticky::before {
  background: radial-gradient(ellipse 90% 80% at 100% 100%, rgba(20, 12, 8, 0.92), rgba(20, 12, 8, 0.42) 38%, rgba(20, 12, 8, 0) 75%);
}
.bleed--cap-top.bleed--cap-right .bleed__sticky::before {
  background: radial-gradient(ellipse 90% 80% at 100% 0%, rgba(20, 12, 8, 0.92), rgba(20, 12, 8, 0.42) 38%, rgba(20, 12, 8, 0) 75%);
}
/* Bottom gradient for caption readability */
.bleed__sticky::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0; height: 62%;
  background: linear-gradient(180deg,
    rgba(20, 12, 8, 0)    0%,
    rgba(20, 12, 8, 0.18) 45%,
    rgba(20, 12, 8, 0.48) 78%,
    rgba(20, 12, 8, 0.72) 100%);
  z-index: 2;
  pointer-events: none;
}

.bleed__caption {
  position: absolute; z-index: 5;
  bottom: clamp(2.5rem, 5vw, 4.5rem);
  left: clamp(2.5rem, 5vw, 4.5rem);
  max-width: 460px;
  color: var(--crema-page);
}
.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);
}

.bleed__eyebrow,
.bleed__title,
.bleed__body {
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
}
.bleed__eyebrow {
  font-family: var(--script);
  font-weight: 600;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  color: var(--crema);
  margin-bottom: 0.5rem;
  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(--title);
  font-weight: 400;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 1;
  margin-bottom: 1rem;
  color: var(--crema-page);
  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__body {
  font-family: var(--body);
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--crema-page);
  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);
}

/* ============================================================
   MANIFESTO — the brand story pause
   ============================================================ */
.manifesto {
  padding: var(--space-7) 2rem;
  background: var(--crema);
  text-align: center;
}
.manifesto__inner { max-width: 880px; margin: 0 auto; }
.manifesto__script {
  font-family: var(--script);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  color: var(--rosso);
  margin-bottom: var(--space-3);
}
.manifesto__display {
  font-family: var(--title);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  line-height: 1.12;
  color: var(--rosso);
  margin-bottom: var(--space-4);
}
.manifesto__body {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.75;
  color: var(--ink);
  opacity: 0.88;
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================================
   MENU — the official six, brand-book pairing on deep green
   ============================================================ */
.menu {
  padding: var(--space-7) 2rem;
  background: var(--verde);
  color: var(--crema-page);
}
.menu__inner { max-width: 680px; margin: 0 auto; text-align: center; }
.menu__title {
  font-family: var(--title);
  font-weight: 400;
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  line-height: 1;
  color: var(--crema-page);
  margin-bottom: 0.4rem;
}
.menu__script {
  font-family: var(--script);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: var(--crema);
  margin-bottom: var(--space-6);
}
.menu__list { list-style: none; text-align: left; }
.menu__item { margin-bottom: var(--space-4); }
.menu__row {
  display: flex; align-items: baseline; gap: 0.75rem;
}
.menu__name {
  font-family: var(--body);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  letter-spacing: 0.01em;
  color: var(--crema-page);
  white-space: nowrap;
}
.menu__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(230, 219, 199, 0.45);
  transform: translateY(-4px);
}
.menu__price {
  font-family: var(--body);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--crema);
}
.menu__desc {
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(230, 219, 199, 0.78);
  margin-top: 0.3rem;
  max-width: 540px;
}
.menu__note {
  font-family: var(--script);
  font-weight: 600;
  font-size: clamp(1.45rem, 2.2vw, 1.8rem);
  color: var(--crema);
  margin-top: var(--space-5);
}
.menu__btn {
  display: inline-block;
  margin-top: var(--space-4);
  font-family: var(--label);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crema-page);
  border: 1px solid rgba(230, 219, 199, 0.55);
  border-radius: 999px;
  padding: 0.9rem 2.2rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.menu__btn:hover {
  background: var(--crema-page);
  color: var(--verde);
  border-color: var(--crema-page);
}

/* ============================================================
   NUMBERS — cheeky stats on cream
   ============================================================ */
.numbers {
  padding: var(--space-7) 2rem;
  background: var(--crema-page);
}
.numbers__inner { max-width: 1100px; margin: 0 auto; }
.numbers__script {
  font-family: var(--script);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  color: var(--rosso);
  text-align: center;
  margin-bottom: var(--space-5);
}
.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(--title);
  font-weight: 400;
  font-size: clamp(4.5rem, 9vw, 7.5rem);
  line-height: 1;
  color: var(--rosso);
  margin-bottom: var(--space-2);
}
.numbers__caption {
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink);
  opacity: 0.85;
  max-width: 260px;
  margin: 0 auto;
}

/* ============================================================
   LE DUE NONNE — split campaign panel, logo seal over the seam
   (the brand-book split-visual device) — SCROLL-SCRUBBED:
   the section is a 350svh runway, the panel pins for 250svh
   while scroll drives both videos' currentTime in sync
   ============================================================ */
.duenonne { position: relative; background: var(--ink); }
.duenonne__sticky { position: static; height: clamp(440px, 66svh, 700px); overflow: hidden; }
.duenonne__grid { display: grid; grid-template-columns: 1fr 1fr; height: 100%; position: relative; }
.duenonne__half { position: relative; overflow: hidden; }
.duenonne__half img,
.duenonne__half video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.duenonne__half--left img  { object-position: 50% 40%; }
.duenonne__half--right img { object-position: 50% 30%; }
.duenonne__half::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,12,8,0.05) 55%, rgba(20,12,8,0.62) 100%);
}
.duenonne__seal {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  z-index: 3;
  background: var(--crema-page);
  border-radius: 50%;
  width: clamp(150px, 17vw, 230px); height: clamp(150px, 17vw, 230px);
  display: grid; place-items: center;
  box-shadow: 0 8px 44px rgba(20,12,8,0.45);
}
.duenonne__seal img { width: 72%; height: auto; }
.duenonne__label {
  position: absolute; bottom: 2rem; z-index: 2;
  font-family: var(--script); font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  color: var(--crema-page); text-shadow: 0 1px 8px rgba(20,12,8,0.7);
}
.duenonne__half--left  .duenonne__label { left: 2.2rem; }
.duenonne__half--right .duenonne__label { right: 2.2rem; }
.duenonne__strip {
  text-align: center; padding: var(--space-6) 2rem;
  background: var(--crema-page);
}
.duenonne__strip-title {
  font-family: var(--title); font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 3rem); color: var(--ink);
  margin-bottom: 0.6rem;
}
.duenonne__strip-body { max-width: 560px; margin: 0 auto; color: rgba(42,34,26,0.78); }

/* ============================================================
   L'APERITIVO È SACRO — the bar, the toast, the drinks list.
   Desktop: 220svh runway, panel pins while scroll pushes the
   spritz toward the visitor. Mobile: normal flow, ambient loop.
   ============================================================ */
.aperitivo { position: relative; background: var(--verde-deep); }
.aperitivo__sticky { position: static; height: auto; overflow: hidden; }
.aperitivo__grid { display: grid; grid-template-columns: 1.15fr 1fr; min-height: clamp(480px, 76svh, 780px); }
.aperitivo__media { position: relative; overflow: hidden; }
.aperitivo__media img,
.aperitivo__media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: 50% 26%;
}
.aperitivo__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(36,57,46,0) 70%, rgba(36,57,46,0.95) 100%);
}
.aperitivo__panel {
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--space-6) clamp(2rem, 5vw, 4.5rem);
  color: var(--crema-page);
}
.aperitivo__script {
  font-family: var(--script); font-weight: 600;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  color: var(--bougainvillea); margin-bottom: var(--space-1);
}
.aperitivo__title {
  font-family: var(--title); font-weight: 400;
  font-size: clamp(2.1rem, 4vw, 3.4rem); line-height: 1.08;
  margin-bottom: var(--space-4);
}
.aperitivo__list { list-style: none; }
.aperitivo__list li {
  display: flex; align-items: baseline; gap: 0.35rem 1rem; flex-wrap: wrap;
  padding: 0.7rem 0;
  border-bottom: 1px dotted rgba(230,219,199,0.28);
}
.aperitivo__list li:last-child { border-bottom: 0; }
.aperitivo__list .drink {
  font-family: var(--body); font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--crema-page);
}
.aperitivo__list .it {
  font-family: var(--script); font-weight: 400;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: rgba(230,219,199,0.72);
  flex: 1 1 190px; text-align: right; line-height: 1.32; min-width: 0;
}
.aperitivo__note {
  margin-top: var(--space-4);
  font-family: var(--script); font-weight: 600;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  color: rgba(230,219,199,0.85);
}

/* ============================================================
   VISIT — cream with billboard double-border card
   ============================================================ */
.visit {
  padding: var(--space-7) 2rem;
  background: var(--crema);
}
.visit__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  /* the billboard double-border treatment */
  border: 1px solid rgba(158, 42, 43, 0.55);
  outline: 1px solid rgba(158, 42, 43, 0.30);
  outline-offset: 6px;
  padding: var(--space-6) var(--space-4);
  background: var(--crema-page);
}
.visit__script {
  font-family: var(--script);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  color: var(--rosso);
  margin-bottom: var(--space-2);
}
.visit__title {
  font-family: var(--title);
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  color: var(--ink);
  margin-bottom: var(--space-2);
}
.visit__lede {
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  color: var(--marrone);
  margin-bottom: var(--space-5);
}
.visit__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  text-align: center;
}
.visit__label {
  font-family: var(--label);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rosso);
  margin-bottom: var(--space-2);
}
.visit__body {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink);
}
.visit__body a {
  color: var(--rosso);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.2s ease;
}
.visit__body a:hover { color: var(--bougainvillea); }

/* ============================================================
   WAITLIST — DJ Nonna pours behind the form, brand-red veil
   (red gradient stays as the base layer under the video)
   ============================================================ */
.waitlist {
  position: relative; overflow: hidden;
  padding: var(--space-7) 2rem;
  background: var(--verde-deep);
  color: var(--crema-page);
  text-align: center;
}
.waitlist__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: 50% 45%;
}
/* neutral darkening so the warm family photo reads natural (not red-washed)
   while cream text stays legible; bottom deepens into the green footer */
.waitlist__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,12,8,0.60) 0%, rgba(20,12,8,0.36) 38%, rgba(20,12,8,0.58) 100%);
}
.waitlist__veil2 {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 85% 75% at 50% 45%, rgba(20,12,8,0) 42%, rgba(20,12,8,0.5) 100%);
}
.waitlist__inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 2; }
.waitlist__script {
  font-family: var(--script);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  color: var(--crema);
  margin-bottom: var(--space-2);
}
.waitlist__title {
  font-family: var(--title);
  font-weight: 400;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  line-height: 1;
  margin-bottom: var(--space-3);
  color: var(--crema-page);
}
.waitlist__lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  margin-bottom: var(--space-5);
  color: rgba(245, 240, 232, 0.92);
  line-height: 1.6;
}
.waitlist__form {
  display: flex; gap: 0.6rem;
  max-width: 480px; margin: 0 auto;
  background: var(--crema-page);
  border-radius: 999px;
  padding: 0.4rem;
}
.waitlist__form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.85rem 1.2rem;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  min-width: 0;
}
.waitlist__form input::placeholder { color: rgba(42, 34, 26, 0.45); }
.waitlist__form button {
  font-family: var(--label);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--verde);
  color: var(--crema-page);
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.waitlist__form button:hover { background: var(--verde-deep); }

/* ============================================================
   PROPOSAL — quiet closing pitch for the owner
   ============================================================ */
.proposal {
  padding: var(--space-7) 2rem;
  background: var(--crema-page);
  text-align: center;
}
.proposal__inner {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(47, 74, 60, 0.45);
  outline: 1px solid rgba(47, 74, 60, 0.22);
  outline-offset: 6px;
  padding: var(--space-6) var(--space-4);
  background: var(--crema);
}
.proposal__eyebrow {
  font-family: var(--label);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: var(--space-3);
}
.proposal__price {
  font-family: var(--title);
  font-weight: 400;
  font-size: clamp(4rem, 9vw, 7.5rem);
  line-height: 1;
  color: var(--rosso);
  margin-bottom: var(--space-3);
}
/* Irvin ships no accented glyphs or € — those characters drop to Caslon,
   a deliberate New-Yorker-style mixed setting */
.title-accent { font-family: var(--serif); font-style: normal; font-size: 0.92em; }
.proposal__lede {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--ink);
  opacity: 0.88;
  margin: 0 auto var(--space-6) auto;
  max-width: 680px;
  line-height: 1.7;
}
.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(42, 34, 26, 0.16);
}
.proposal__col:first-child { border-left: none; padding-left: 0; }
.proposal__col-script {
  font-family: var(--script);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--rosso);
  margin-bottom: var(--space-1);
}
.proposal__col-title {
  font-family: var(--title);
  font-weight: 400;
  font-size: 1.7rem;
  margin-bottom: var(--space-2);
  color: var(--ink);
  line-height: 1.1;
}
.proposal__col-body {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.82;
}
.proposal__footer {
  font-size: 1.08rem;
  color: var(--ink);
  opacity: 0.88;
  line-height: 1.6;
}
.proposal__footer strong { font-weight: 700; color: var(--rosso); }

/* ============================================================
   FOOTER — deep green
   ============================================================ */
.footer {
  padding: var(--space-6) 2rem;
  background: var(--verde);
  color: var(--crema-page);
  text-align: center;
}
.footer__logo {
  height: 72px; width: auto;
  margin: 0 auto var(--space-2) auto;
}
.footer__script {
  font-family: var(--script);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--crema);
  margin-bottom: var(--space-3);
}
.footer__line {
  font-family: var(--label);
  font-weight: 400;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  color: rgba(245, 240, 232, 0.85);
  margin-bottom: 0.5rem;
}
.footer__line--tiny {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.6);
}
.footer__line a {
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.2s ease;
}
.footer__line a:hover { color: var(--crema); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .nav { padding: 0.9rem 1.2rem; }
  .nav__logo-img { height: 40px; }
  .nav__links { gap: 1rem; }
  .nav__links a { font-size: 0.68rem; letter-spacing: 0.14em; }
  .nav__cta { padding: 0.45rem 0.85rem; }

  .hero__content { width: min(88vw, 520px); }

  .bleed__caption {
    max-width: 78vw;
    bottom: clamp(2rem, 8vw, 3rem);
    left: 1.4rem;
  }
  .bleed--cap-right .bleed__caption { right: 1.4rem; }

  .numbers__grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .visit__grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .proposal__grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .proposal__col { border-left: none; border-top: 1px solid rgba(42, 34, 26, 0.16); padding: var(--space-3) 0 0 0; }
  .proposal__col:first-child { border-top: none; padding-top: 0; }

  .waitlist__form { flex-direction: column; border-radius: 16px; }
  .waitlist__form input { padding: 0.9rem 1rem; text-align: center; }
  .waitlist__form button { padding: 0.95rem 1rem; }

  /* due nonne on mobile: the two family photos stack, each a comfortable band */
  .duenonne__sticky { height: auto; }
  .duenonne__grid { grid-template-columns: 1fr; grid-auto-rows: 58svh; height: auto; }
  .duenonne__half { height: 58svh; }
  .duenonne__seal { width: 130px; height: 130px; }
  .duenonne__half--left .duenonne__label { left: 1.4rem; bottom: 1.4rem; }
  .duenonne__half--right .duenonne__label { right: 1.4rem; bottom: 1.4rem; }

  /* aperitivo: pinning the drinks panel doesn't fit a phone —
     back to normal flow with the ambient loop */
  .aperitivo { height: auto; }
  .aperitivo__sticky { position: static; height: auto; }
  .aperitivo__grid { grid-template-columns: 1fr; height: auto; min-height: 0; }
  .aperitivo__media { height: 56svh; }
  .aperitivo__media::after {
    background: linear-gradient(180deg, rgba(36,57,46,0) 70%, rgba(36,57,46,0.95) 100%);
  }
  .aperitivo__panel { padding: var(--space-5) 1.4rem var(--space-6); }

  .intro, .menu, .visit, .waitlist, .proposal, .manifesto, .numbers {
    padding-left: 1.2rem; padding-right: 1.2rem;
  }
  .visit__inner, .proposal__inner { padding: var(--space-5) var(--space-3); }
}
