/* ============================================================
   calé: a secret-ingredient supper club
   Palette: blush rose / botanical green / warm paper / brass,
            with one dark candlelit act (the dinner itself)
   Type:    Fraunces (variable, SOFT & WONK unlocked at display
            sizes, text optical sizes for body)
            Fragment Mono (the typewritten place card: nav,
            labels, numbers, buttons)
   ============================================================ */

:root {
  --paper:       #f6f0e5;   /* warm daylight paper */
  --paper-deep:  #ece1cd;
  --cream:       #fffaf3;   /* the menu card itself */
  --blush:       #e7a9a0;   /* the calé pink, muted */
  --blush-soft:  #f3cfc6;
  --rose:        #b9655d;   /* deeper rose for text on light */
  --rhubarb:     #c64f57;
  --green:       #2f4034;   /* deep botanical */
  --green-soft:  #4e6452;
  --candle-hi:   #24352b;   /* the dark act, lit end */
  --candle-lo:   #10180f;   /* the dark act, shadow end */
  --brass:       #b08a4f;   /* warm gold */
  --brass-lt:    #d6b681;
  --carrot:      #c9722e;   /* the orange act accent */
  --carrot-soft: #e0a15c;
  --ink:         #2a2622;   /* near-black warm */
  --ink-soft:    #5a544c;

  --ff-serif: "Fraunces", Georgia, serif;
  --ff-mono:  "Fragment Mono", "Courier New", monospace;

  /* display voice: soft, slightly wonky, hand-lettered, not typeset */
  --wonk: "SOFT" 45, "WONK" 1;

  --ease: cubic-bezier(.22,.61,.36,1);

  /* whitespace scale: tight inside groups, vast between acts */
  --act-pad:  clamp(7rem, 16vw, 13rem);
  --gutter:   clamp(1.2rem, 5vw, 3.5rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* keep anchored sections clear of the fixed topbar */
.concept, .makers, .orange, .seasons, .press, .vision, .invite { scroll-margin-top: 5rem; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-serif);
  font-optical-sizing: auto;
  font-weight: 380;
  line-height: 1.65;
  font-size: clamp(16px, 1vw + 13px, 18px);
  letter-spacing: .002em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

::selection { background: var(--rhubarb); color: var(--cream); }

:focus-visible { outline: 2px solid var(--brass); outline-offset: 4px; border-radius: 1px; }

.wordmark {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -.02em;
  color: var(--rose);
  font-variation-settings: var(--wonk);
}

/* the small typewritten voice: one mixin's worth of rules */
.topbar__nav a, .btn, .hero__edge, .hero__kicker, .concept__label,
.orange__eyebrow, .person__role, .seasonflow__no, .seasonflow__meta, .press__eyebrow,
.press__source, .invite__pre, .invitecard__kicker, .menu__foot,
.foot__tag, .foot__fine, .reveal-card__hint, .reveal-card__pre {
  font-family: var(--ff-mono);
}

/* film grain */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ───────── top bar ───────── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(.7rem, 2vw, 1.1rem) clamp(1.1rem, 4vw, 2.6rem);
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background .45s var(--ease), backdrop-filter .45s var(--ease),
              border-color .45s var(--ease);
}
.topbar.is-scrolled {
  background: rgba(246,240,229,.82);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: rgba(176,138,79,.28);
}
.topbar.is-dark.is-scrolled {
  background: rgba(18,26,19,.72);
  border-bottom-color: rgba(214,182,129,.3);
}

.topbar__mark {
  font-family: var(--ff-serif); font-style: italic;
  font-size: clamp(1.25rem, .9rem + 1vw, 1.6rem);
  font-variation-settings: var(--wonk);
  color: var(--rose); text-decoration: none; letter-spacing: -.02em;
  line-height: 1; white-space: nowrap; transition: color .45s var(--ease);
}
.topbar.is-dark .topbar__mark { color: var(--blush-soft); }

.topbar__nav { display: flex; gap: clamp(1rem, 3vw, 2.2rem); }
.topbar__nav a {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--green); text-decoration: none; position: relative; padding-bottom: 3px;
  transition: color .45s var(--ease);
}
.topbar.is-dark .topbar__nav a { color: rgba(246,240,229,.9); }
.topbar__nav a::after {
  content: ""; position: absolute; left: 50%; bottom: 0; height: 1px; width: 0;
  transform: translateX(-50%);
  background: var(--rose); transition: width .4s var(--ease), background .45s var(--ease);
}
.topbar.is-dark .topbar__nav a::after { background: var(--brass-lt); }
.topbar__nav a:hover::after, .topbar__nav a:focus-visible::after { width: 100%; }
@media (max-width: 680px) { .topbar__nav { display: none; } }

/* ───────── buttons: ink fills from the baseline up ───────── */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; text-decoration: none;
  padding: 1.05em 1.9em; border-radius: 2px;
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% 0%;
  transition: transform .45s var(--ease), color .45s var(--ease),
              background-size .45s var(--ease), border-color .45s var(--ease),
              box-shadow .45s var(--ease);
}
.btn span { transition: transform .45s var(--ease); }
.btn--solid {
  background-color: var(--rose); color: var(--cream);
  background-image: linear-gradient(var(--green), var(--green));
  box-shadow: 0 10px 26px -14px rgba(185,101,93,.9);
}
.btn--solid:hover, .btn--solid:focus-visible {
  background-size: 100% 100%;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -16px rgba(47,64,52,.7);
}
.btn--ghost {
  color: var(--green); border: 1px solid rgba(47,64,52,.35);
  background-image: linear-gradient(rgba(47,64,52,.07), rgba(47,64,52,.07));
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  border-color: var(--green); background-size: 100% 100%; transform: translateY(-2px);
}
.btn--ghost:hover span { transform: translateY(3px); }

/* ───────── scroll reveal ───────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .26s; }
.reveal[data-delay="3"] { transition-delay: .42s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; }
}

/* ============================================================
   HERO: the wordmark owns the left, the invitation hangs right,
   the plate slips in beneath the type
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: grid; grid-template-rows: auto 1fr auto;
  padding: clamp(4.5rem, 9vw, 6.5rem) var(--gutter) clamp(1.5rem, 4vw, 2.5rem);
  background:
    radial-gradient(120% 90% at 82% -10%, var(--blush-soft) 0%, transparent 55%),
    radial-gradient(90% 70% at -10% 110%, var(--paper-deep) 0%, transparent 60%),
    var(--paper);
  overflow: hidden;
}
.hero__edge {
  display: flex; justify-content: space-between; gap: 1rem;
  font-size: .66rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--green-soft);
  position: relative; z-index: 5;
}
.hero__edge--bottom { align-items: end; }
.hero__scroll { position: relative; padding-left: 1.6rem; }
.hero__scroll::before {
  content: ""; position: absolute; left: 0; top: 50%; width: 1.1rem; height: 1px;
  background: var(--green-soft); transform-origin: left;
  animation: line 2.4s var(--ease) infinite;
}
@keyframes line { 0%,100% { transform: scaleX(.4); opacity:.4 } 50% { transform: scaleX(1); opacity:1 } }

.hero__stage {
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  padding-block: clamp(1rem, 4vw, 3rem);
}
.hero__kicker {
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--rose); margin: 0 0 .5rem .3rem;
}
.hero__word {
  font-size: clamp(5.5rem, 30vw, 25rem);
  line-height: .8; margin: 0 0 0 -.045em;
  color: var(--rose);
  text-shadow: 0 1px 0 rgba(255,255,255,.4);
  position: relative; z-index: 2;
}
.hero__aside {
  align-self: flex-end;
  max-width: 30ch;
  margin: clamp(1.2rem, 3vw, 2rem) clamp(0rem, 6vw, 5rem) 0 0;
  position: relative; z-index: 3;
  text-align: left;
}
.hero__line {
  font-weight: 320;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  line-height: 1.5; color: var(--ink);
  margin: 0 0 1.8rem;
}
.hero__line em { font-style: italic; color: var(--rose); }
.hero__cta { display: flex; gap: .8rem; flex-wrap: wrap; }

/* CSS plate: tucked low-left, half under the wordmark's shadow */
.plate {
  position: absolute; left: clamp(14rem, 30vw, 30rem); bottom: clamp(-12rem, -14vw, -8rem);
  width: clamp(14rem, 30vw, 25rem); aspect-ratio: 1;
  pointer-events: none; z-index: 1;
}
@media (max-width: 760px) {
  .hero__aside { align-self: flex-start; margin-right: 0; }
  .plate { left: auto; right: -30%; bottom: -14%; width: 72vw; opacity: .5; }
}

.plate__rim {
  width: 100%; height: 100%; border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%, #fff 0%, #f3eee4 55%, #e7ddca 100%);
  box-shadow:
    inset 0 2px 6px rgba(255,255,255,.7),
    inset 0 -8px 18px rgba(176,138,79,.22),
    0 0 0 5px var(--brass-lt),
    0 0 0 7px var(--brass),
    0 0 0 8px rgba(255,250,240,.5),
    0 40px 70px -30px rgba(47,64,52,.5);
  display: grid; place-items: center;
  position: relative;
}
.plate__rim::after {
  content: ""; position: absolute; inset: 7%;
  border-radius: 50%;
  border: 1px solid rgba(176,138,79,.45);
}
/* specular highlight sweeping the gold rim */
.plate__rim::before {
  content: ""; position: absolute; inset: -7px; border-radius: 50%;
  background:
    conic-gradient(from 210deg,
      rgba(255,255,255,0) 0deg,
      rgba(255,255,255,.55) 26deg,
      rgba(255,255,255,0) 70deg,
      rgba(255,255,255,0) 250deg,
      rgba(255,250,240,.3) 290deg,
      rgba(255,255,255,0) 330deg);
  -webkit-mask: radial-gradient(circle, transparent 0 70%, #000 71% 76%, transparent 77%);
          mask: radial-gradient(circle, transparent 0 70%, #000 71% 76%, transparent 77%);
  pointer-events: none;
}
.plate__well {
  width: 64%; height: 64%; border-radius: 50%;
  background:
    radial-gradient(circle at 42% 36%, #d8736e 0%, var(--rhubarb) 45%, #a83b46 100%);
  box-shadow:
    inset 0 10px 28px rgba(120,30,40,.65),
    inset 0 -6px 16px rgba(255,200,190,.18),
    0 0 0 6px #5b7d92, 0 0 0 9px #e9ddc6;
  position: relative; overflow: hidden;
}

/* garnish bits */
.garnish { position: absolute; }
.garnish--leaf {
  width: 24%; height: 24%; left: 40%; top: 24%;
  background: var(--green); border-radius: 0 60% 60% 60%;
  transform: rotate(28deg);
  box-shadow: inset -2px -2px 4px rgba(0,0,0,.25);
}
.garnish--leaf.big { width: 22%; height: 22%; }
.garnish--slice {
  width: 13%; height: 13%; border-radius: 50%;
  background: radial-gradient(circle, #fff6cf 0%, #f2c14e 55%, #c9912e 100%);
  border: 2px solid #e3b545;
}
.garnish--slice.s1 { left: 22%; top: 56%; }
.garnish--slice.s2 { left: 62%; top: 60%; }
.garnish--slice.s3 { left: 46%; top: 70%; }
.garnish--slice.s4 { left: 30%; top: 30%; }
.garnish--petal { width: 8%; height: 14%; border-radius: 50%; }
.garnish--petal.p1 { left: 56%; top: 32%; background: var(--green-soft); transform: rotate(40deg); }
.garnish--petal.p2 { left: 30%; top: 44%; background: #6f8a6a; transform: rotate(-30deg); }
.garnish--petal.p3 { left: 54%; top: 48%; background: var(--green); transform: rotate(70deg); }

/* ============================================================
   CONCEPT: the statement, then three steps stepping down
   the page like courses arriving
   ============================================================ */
.concept {
  max-width: 1180px; margin: 0 auto;
  padding: var(--act-pad) var(--gutter);
}
.concept__label, .orange__eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--green-soft);
}
.rule { width: clamp(2rem, 6vw, 4rem); height: 1px; background: var(--brass); }
.concept__statement {
  font-weight: 320;
  font-size: clamp(1.7rem, 4.6vw, 3.4rem); line-height: 1.22;
  letter-spacing: -.01em; margin: 1.6rem 0 0; max-width: 22ch;
  font-variation-settings: var(--wonk);
}
.concept__statement .ink { font-style: italic; color: var(--rose); }

.steps {
  list-style: none; margin: clamp(4rem, 9vw, 7rem) 0 0; padding: clamp(2.5rem, 6vw, 4rem) 0 0;
  display: flex; flex-direction: column; gap: clamp(3rem, 7vw, 5.5rem);
  border-top: 1px solid rgba(47,64,52,.18);
}
.step {
  display: grid; grid-template-columns: auto 1fr; column-gap: clamp(1.2rem, 3vw, 2.2rem);
  align-items: start; max-width: 44rem;
}
/* the cascade: each step arrives further into the room */
.step:nth-child(2) { margin-left: clamp(0rem, 14vw, 11rem); }
.step:nth-child(3) { margin-left: clamp(0rem, 28vw, 22rem); }
@media (max-width: 700px) {
  .step:nth-child(2), .step:nth-child(3) { margin-left: 0; }
}
.step__num {
  font-family: var(--ff-serif); font-style: italic; font-weight: 300;
  font-variation-settings: var(--wonk);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  color: var(--blush); line-height: .9; min-width: 2ch; text-align: right;
}
.step h3 {
  font-weight: 500; font-size: 1.32rem;
  margin: 0 0 .55rem; color: var(--green); letter-spacing: -.01em;
}
.step p { margin: 0; color: var(--ink-soft); font-size: .98rem; max-width: 34ch; }

.concept__aside {
  margin: clamp(3.5rem, 8vw, 5.5rem) 0 0 auto; max-width: 42ch;
  font-style: italic; font-weight: 320;
  font-size: 1.08rem; color: var(--green-soft);
  padding-left: 1.4rem; border-left: 2px solid var(--blush);
}

/* ============================================================
   THE MAKERS
   ============================================================ */
.makers {
  max-width: 1180px; margin: 0 auto;
  padding: var(--act-pad) var(--gutter);
}
.makers__inner {
  display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 860px) { .makers__inner { grid-template-columns: 1fr; gap: clamp(2.4rem, 8vw, 3rem); } }
.makers__title {
  font-weight: 320;
  font-variation-settings: var(--wonk);
  font-size: clamp(1.7rem, 4.4vw, 3.1rem); line-height: 1.18; letter-spacing: -.01em;
  margin: 0; max-width: 20ch; color: var(--green);
}
.makers__copy { margin: 1.4rem 0 0; max-width: 52ch; color: var(--ink-soft); }
.makers__copy:first-of-type { margin-top: 1.8rem; }

.people {
  list-style: none; margin: 0; padding: 1.8rem 0 0; display: grid; gap: 1.4rem;
  border-top: 1px solid rgba(47,64,52,.18);
}
@media (min-width: 861px) {
  /* the hosts' place cards sit slightly below the headline line, like seats at the end of the table */
  .people { border-top: 0; padding-top: 0; margin-top: clamp(3rem, 8vw, 6rem); }
}
.person { display: grid; grid-template-columns: auto 1fr; column-gap: 1rem; align-items: center; }
.person__mono {
  grid-row: span 2; width: 3.1rem; height: 3.1rem; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--ff-serif); font-style: italic; font-size: 1.25rem; color: var(--cream);
  background: radial-gradient(circle at 38% 32%, var(--blush) 0%, var(--rose) 75%);
  box-shadow: 0 10px 24px -12px rgba(185,101,93,.8);
}
.person__name {
  font-weight: 500; font-size: 1.18rem; color: var(--green);
  align-self: end; line-height: 1.1;
}
.person__role { font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--green-soft); align-self: start; margin-top: .2rem; }

/* ============================================================
   MENU CARD: the typewritten place card, shared by the dark
   dinner act. Warm cream paper under a candlelit glow.
   ============================================================ */
.menu__paper {
  background: var(--cream);
  padding: clamp(2rem, 5vw, 3.4rem) clamp(1.6rem, 4vw, 3rem);
  box-shadow:
    0 0 80px -20px rgba(231,169,160,.2),
    0 50px 90px -40px rgba(0,0,0,.75),
    0 1px 0 rgba(176,138,79,.3);
  border: 1px solid rgba(176,138,79,.25);
  position: relative; z-index: 1;
  transform: rotate(-.7deg);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.menu__paper:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow:
    0 0 90px -18px rgba(231,169,160,.28),
    0 60px 100px -42px rgba(0,0,0,.8),
    0 1px 0 rgba(176,138,79,.3);
}
.menu__paper::before {
  content: ""; position: absolute; inset: 10px; border: 1px solid rgba(176,138,79,.25); pointer-events: none;
}
.menu__brand { font-size: clamp(3rem, 8vw, 4.4rem); text-align: center; line-height: .9; margin: 0; }
.menu__theme { text-align: center; font-style: italic; font-weight: 320; color: var(--green-soft); margin: .2rem 0 0; letter-spacing: .02em; }
.menu__divider { display: flex; align-items: center; justify-content: center; gap: .6rem; color: var(--brass); margin: 1.6rem 0; }
.menu__divider span { height: 1px; width: 22%; background: linear-gradient(90deg, transparent, var(--brass)); }
.menu__divider span:last-child { background: linear-gradient(90deg, var(--brass), transparent); }

.courses { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; }
.course { padding-bottom: 1.5rem; border-bottom: 1px dotted rgba(47,64,52,.22); }
.course:last-child { border-bottom: 0; padding-bottom: 0; }
.course__name {
  font-weight: 500; font-size: 1.45rem; letter-spacing: -.01em;
  color: var(--rose); margin: 0 0 .35rem;
}
.course__body { margin: 0; font-size: .94rem; color: var(--ink-soft); max-width: 46ch; line-height: 1.55; }
.menu__foot {
  margin: 2rem 0 0; text-align: center;
  font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; color: var(--green-soft);
}

/* ============================================================
   THE DINNER: the page's dark act, lit in carrot and amber.
   The head and the transcribed menu card sit as an asymmetric
   pair, closed by a single note.
   ============================================================ */
.orange {
  position: relative;
  background:
    radial-gradient(80% 55% at 82% 2%, rgba(224,161,92,.16) 0%, transparent 58%),
    radial-gradient(75% 55% at 14% 96%, rgba(201,114,46,.20) 0%, transparent 60%),
    linear-gradient(185deg, var(--candle-hi) 0%, var(--candle-lo) 92%);
  color: var(--paper);
  padding: var(--act-pad) var(--gutter) calc(var(--act-pad) * 1.1);
  overflow: hidden;
}
.orange__inner { max-width: 1180px; margin: 0 auto; }

/* head + menu card as an asymmetric pair; card carries more weight */
.orange__layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 880px) {
  .orange__layout { grid-template-columns: 1fr; gap: clamp(2.5rem, 8vw, 3.5rem); }
}
.orange__head { max-width: 32ch; }
.orange__eyebrow { color: var(--carrot-soft); }
.orange__title {
  font-weight: 380; letter-spacing: -.02em;
  font-variation-settings: var(--wonk);
  font-size: clamp(2.6rem, 8vw, 5.6rem); line-height: .96; margin: 1.2rem 0 0;
  color: var(--paper);
}
.orange__title .serif-it { font-style: italic; font-weight: 300; color: var(--carrot-soft); }
.orange__sub {
  font-style: italic; font-weight: 320;
  font-size: clamp(1.02rem, 2.3vw, 1.35rem); color: rgba(240,225,205,.72);
  margin: 1.2rem 0 0; max-width: 40ch;
}
.orange__sub em { font-style: italic; color: var(--carrot-soft); }

/* the menu card, held to the right of the pair so it reads asymmetric */
.orange__card {
  max-width: 36rem; width: 100%;
  justify-self: end;
}
@media (max-width: 880px) {
  .orange__card { justify-self: center; margin-inline: auto; }
}
.orange__card .menu__paper {
  transform: rotate(.7deg);
  box-shadow:
    0 0 80px -20px rgba(224,161,92,.22),
    0 50px 90px -40px rgba(0,0,0,.75),
    0 1px 0 rgba(176,138,79,.3);
}
.orange__card .menu__paper:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow:
    0 0 90px -18px rgba(224,161,92,.3),
    0 60px 100px -42px rgba(0,0,0,.8),
    0 1px 0 rgba(176,138,79,.3);
}
.orange__card .course__name { color: var(--carrot); }

/* closing CTA line, set beneath the pair */
.orange__note {
  margin: clamp(2.5rem, 6vw, 4rem) 0 0; max-width: 48ch;
  font-size: .92rem; color: rgba(240,225,205,.72);
}
.orange__note a {
  color: var(--carrot-soft); text-decoration: none;
  border-bottom: 1px solid rgba(224,161,92,.4); padding-bottom: 2px;
  transition: color .4s var(--ease), border-color .4s var(--ease);
}
.orange__note a:hover, .orange__note a:focus-visible { color: var(--blush-soft); border-color: var(--brass-lt); }

/* ============================================================
   THE ORANGE ACT, DRESSED: the plated course and the reveal
   card. Both restored from the retired Blush act (commit
   dd881cd) and rethemed to the carrot and amber palette.
   ============================================================ */

/* the plated course: butter poached carrots in carrot-ginger
   veloute, set to overlap the lower-left corner of the menu card */
.dish {
  margin: .5rem 0 0 clamp(-7rem, -8vw, -3rem);
  max-width: 16rem; position: relative; z-index: 2;
}
@media (max-width: 880px) {
  .dish { margin: 2.5rem auto 0; max-width: 18rem; }
}
.dish__plate { width: 100%; aspect-ratio: 1; filter: drop-shadow(0 30px 50px rgba(0,0,0,.55)); }
.dish__rim {
  width: 100%; height: 100%; border-radius: 50%;
  transform: rotate(-4deg);
  background:
    radial-gradient(circle at 38% 32%, #fff 0%, #f3eee4 55%, #e7ddca 100%);
  box-shadow:
    inset 0 2px 6px rgba(255,255,255,.7),
    inset 0 -8px 18px rgba(176,138,79,.22),
    0 0 0 5px var(--brass-lt),
    0 0 0 7px var(--brass),
    0 0 0 8px rgba(255,250,240,.5),
    0 40px 70px -30px rgba(0,0,0,.5);
  display: grid; place-items: center;
  position: relative;
}
.dish__rim::after {
  content: ""; position: absolute; inset: 7%;
  border-radius: 50%;
  border: 1px solid rgba(176,138,79,.45);
}
.dish__rim::before {
  content: ""; position: absolute; inset: -7px; border-radius: 50%;
  background:
    conic-gradient(from 210deg,
      rgba(255,255,255,0) 0deg,
      rgba(255,255,255,.55) 26deg,
      rgba(255,255,255,0) 70deg,
      rgba(255,255,255,0) 250deg,
      rgba(255,250,240,.3) 290deg,
      rgba(255,255,255,0) 330deg);
  -webkit-mask: radial-gradient(circle, transparent 0 70%, #000 71% 76%, transparent 77%);
          mask: radial-gradient(circle, transparent 0 70%, #000 71% 76%, transparent 77%);
  pointer-events: none;
}
/* the veloute pool: carrot and ginger, deep amber */
.dish__well {
  width: 64%; height: 64%; border-radius: 50%;
  background:
    radial-gradient(circle at 42% 36%, var(--carrot-soft) 0%, var(--carrot) 48%, #8a4a1e 100%);
  box-shadow:
    inset 0 10px 28px rgba(90,40,10,.6),
    inset 0 -6px 16px rgba(255,225,180,.2),
    0 0 0 6px #9c6b34, 0 0 0 9px #e9ddc6;
  position: relative; overflow: hidden;
}
/* carrot-act garnish: cilantro, poached carrot coins, lime, chili oil */
.dish .garnish--leaf { background: var(--green); }
.dish .garnish--slice {
  background: radial-gradient(circle, #ffd8a0 0%, var(--carrot-soft) 55%, var(--carrot) 100%);
  border: 2px solid #b9631f;
}
.dish .garnish--slice.lime {
  background: radial-gradient(circle, #e8f0b8 0%, #b7c95e 55%, #8a9c3c 100%);
  border: 2px solid #7d8f34;
}
.dish .garnish--petal.p1 { background: #a33018; transform: rotate(40deg); }
.dish .garnish--petal.p2 { background: #c0603f; transform: rotate(-30deg); }
.dish .garnish--petal.p3 { background: #8f2b16; transform: rotate(70deg); }
.dish figcaption {
  margin-top: 1.6rem; text-align: center;
  font-style: italic; font-weight: 320;
  color: rgba(240,225,205,.72); font-size: .98rem;
}

/* the reveal card: the envelope from your place setting, replayed */
.reveal-card {
  margin: clamp(2.5rem, 6vw, 3.5rem) 0 0;
  max-width: 320px; width: 100%; perspective: 1400px;
}
@media (max-width: 880px) {
  .reveal-card { margin-inline: auto; }
}
.reveal-card__inner {
  position: relative; width: 100%; aspect-ratio: 5/6; border: 0; padding: 0;
  background: transparent; cursor: pointer; font: inherit;
  transform-style: preserve-3d; transition: transform 1s var(--ease);
  border-radius: 4px;
}
.reveal-card.flipped .reveal-card__inner { transform: rotateY(180deg); }
.reveal-card__inner:focus-visible { outline: 2px solid var(--brass-lt); outline-offset: 8px; }
.reveal-card__face {
  position: absolute; inset: 0; backface-visibility: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-radius: 4px; padding: 2rem; text-align: center;
  box-shadow:
    0 0 60px -10px rgba(224,161,92,.16),
    0 40px 70px -30px rgba(0,0,0,.8);
}
.reveal-card__front {
  background: linear-gradient(165deg, #fffaf3 0%, #f1e6d2 100%);
  color: var(--ink); border: 1px solid rgba(176,138,79,.5);
}
.reveal-card__front::before {
  content: ""; position: absolute; inset: 10px; border: 1px solid rgba(176,138,79,.4); border-radius: 3px;
}
.reveal-card__seal {
  font-family: var(--ff-serif); font-style: italic; font-weight: 340;
  font-variation-settings: var(--wonk);
  font-size: 1.7rem; line-height: 1.15; color: var(--green); letter-spacing: .01em;
}
.reveal-card__hint {
  margin-top: 1.4rem; font-size: .62rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--green-soft);
}
.reveal-card__wax {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  width: 3rem; height: 3rem; border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, var(--carrot-soft) 0%, var(--carrot) 60%, #8a4a1e 100%);
  display: grid; place-items: center;
  font-family: var(--ff-serif); font-style: italic; font-size: 1.5rem; color: var(--cream);
  box-shadow: inset -3px -3px 6px rgba(0,0,0,.3), 0 4px 12px -4px rgba(0,0,0,.5);
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse { 0%,100% { transform: translateX(-50%) scale(1); } 50% { transform: translateX(-50%) scale(1.07); } }
.reveal-card.flipped .reveal-card__wax { animation: none; }
.reveal-card__back {
  transform: rotateY(180deg);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(224,161,92,.55) 0%, #fff 62%),
    var(--cream);
  color: var(--ink); border: 1px solid var(--carrot-soft);
}
.reveal-card__back::before {
  content: ""; position: absolute; inset: 10px; border: 1px solid var(--carrot-soft); border-radius: 3px;
}
.reveal-card__pre { font-size: .64rem; letter-spacing: .28em; text-transform: uppercase; color: var(--green); }
.reveal-card__answer { font-size: clamp(2.6rem, 12vw, 3.4rem); line-height: 1; margin: .4rem 0 .6rem; color: var(--carrot); }
.reveal-card__post { font-style: italic; font-weight: 320; color: var(--green-soft); }

/* reduced motion: the global catch-all silences the wax pulse but
   not the 3D flip transition, so drop the transition to an instant swap */
@media (prefers-reduced-motion: reduce) {
  .reveal-card__inner { transition: none; }
}

.seasons__next a {
  color: var(--rose); text-decoration: none;
  border-bottom: 1px solid rgba(185,101,93,.4); padding-bottom: 2px;
  transition: color .4s var(--ease), border-color .4s var(--ease);
}
.seasons__next a:hover, .seasons__next a:focus-visible { color: var(--green); border-color: var(--brass); }

/* ============================================================
   SEASONS PAST: an index that reads like a menu, not a grid
   ============================================================ */
.seasons {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
}
.seasons__inner {
  max-width: 1180px; margin: 0 auto;
  padding: var(--act-pad) var(--gutter);
}
.seasons__title {
  font-weight: 320; font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-variation-settings: var(--wonk);
  line-height: 1.2; letter-spacing: -.01em; margin: 1.3rem 0 0; max-width: 22ch; color: var(--green);
}
.seasonflow {
  list-style: none; margin: clamp(3rem, 7vw, 5rem) 0 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: baseline;
  column-gap: clamp(1.6rem, 4vw, 3.2rem); row-gap: 1.2rem;
}
.seasonflow li { display: flex; align-items: flex-start; gap: .45rem; }
.seasonflow__no {
  font-size: .68rem; letter-spacing: .14em; color: var(--brass);
  margin-top: .35em;
}
.seasonflow__body { display: flex; flex-direction: column; gap: .5rem; }
.seasonflow__ing {
  font-family: var(--ff-serif); font-style: italic; font-weight: 340;
  font-variation-settings: var(--wonk);
  font-size: clamp(2.1rem, 6vw, 4.2rem);
  color: var(--green-soft); line-height: 1;
  transition: color .45s var(--ease);
}
.seasonflow__meta {
  font-size: .62rem; letter-spacing: .13em; line-height: 1.5;
  color: var(--green-soft); max-width: 26ch;
}
.seasonflow__aside { font-style: italic; color: var(--green-soft); }
.seasonflow li:hover .seasonflow__ing { color: var(--green); }
.seasonflow .is-current .seasonflow__ing {
  color: var(--rhubarb);
  text-decoration: underline wavy var(--blush) 2px;
  text-underline-offset: .18em;
}
.seasonflow .is-current .seasonflow__no { color: var(--rhubarb); }
.seasons__next {
  margin: clamp(2rem, 5vw, 3rem) 0 0; font-size: .9rem; letter-spacing: .02em;
  color: var(--green-soft);
}
.seasons__next em { font-style: italic; color: var(--rose); }

/* ============================================================
   PRESS: back in daylight, one line pinned under a giant mark
   ============================================================ */
.press {
  background: var(--paper-deep);
  padding: var(--act-pad) var(--gutter);
  position: relative; overflow: hidden;
}
.press__inner { max-width: 820px; margin: 0 auto; text-align: center; position: relative; }
.press__inner::before {
  content: "\201C";
  position: absolute; top: -1.2rem; left: 50%; transform: translateX(-50%);
  font-family: var(--ff-serif); font-style: italic;
  font-variation-settings: var(--wonk);
  font-size: clamp(8rem, 22vw, 15rem); line-height: 1;
  color: rgba(231,169,160,.35); pointer-events: none;
}
.press__eyebrow { font-size: .66rem; letter-spacing: .26em; text-transform: uppercase; color: var(--rose); margin: 0; position: relative; }
.press__quote {
  font-weight: 320; font-style: italic;
  font-variation-settings: var(--wonk);
  font-size: clamp(1.7rem, 4.6vw, 3rem); line-height: 1.26; letter-spacing: -.01em;
  margin: 2.2rem auto 0; max-width: 24ch; color: var(--green);
  position: relative;
}
.press__source { font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--green-soft); margin: 1.8rem 0 0; }
.press__link {
  display: inline-block; margin: 1.6rem 0 0; text-decoration: none;
  font-family: var(--ff-mono); font-size: .74rem; letter-spacing: .1em; color: var(--rose);
  border-bottom: 1px solid rgba(185,101,93,.4); padding-bottom: 3px;
  transition: color .4s var(--ease), border-color .4s var(--ease);
}
.press__link:hover, .press__link:focus-visible { color: var(--green); border-color: var(--brass); }
.press__link span { display: inline-block; transition: transform .4s var(--ease); }
.press__link:hover span { transform: translate(2px,-2px); }

/* ============================================================
   WHAT'S NEXT / VISION: a bento, one dark lead panel,
   two lighter panels stacked beside it
   ============================================================ */
.vision {
  background:
    radial-gradient(90% 70% at 92% -10%, var(--blush-soft) 0%, transparent 55%),
    var(--paper);
}
.vision__inner {
  max-width: 1180px; margin: 0 auto;
  padding: var(--act-pad) var(--gutter);
}
.vision__title {
  font-weight: 320; font-size: clamp(1.8rem, 4.8vw, 3.4rem);
  font-variation-settings: var(--wonk);
  line-height: 1.18; letter-spacing: -.01em; margin: 1.4rem 0 0; max-width: 20ch; color: var(--green);
}
.vision__copy { margin: 1.6rem 0 0; max-width: 50ch; color: var(--ink-soft); font-size: 1.04rem; }
.vision__reach { margin: clamp(2.5rem, 6vw, 3.5rem) 0 0; max-width: 50ch; color: var(--ink-soft); font-size: 1.04rem; }
.vision__reach a {
  color: var(--rose); text-decoration: none;
  border-bottom: 1px solid rgba(185,101,93,.4); padding-bottom: 2px;
  transition: color .4s var(--ease), border-color .4s var(--ease);
}
.vision__reach a:hover, .vision__reach a:focus-visible { color: var(--green); border-color: var(--brass); }

.visiongrid {
  list-style: none; margin: clamp(3.5rem, 8vw, 5.5rem) 0 0; padding: 0;
  display: grid; gap: clamp(1rem, 2vw, 1.4rem);
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(0, auto);
}
.vcard {
  position: relative; border-radius: 4px;
  padding: clamp(1.8rem, 4vw, 2.6rem);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.vcard:hover { transform: translateY(-4px); }
.vcard__num {
  font-family: var(--ff-serif); font-style: italic; font-weight: 300;
  font-variation-settings: var(--wonk);
  font-size: 2rem; display: block; line-height: 1; margin-bottom: 1rem;
}
.vcard h3 {
  font-weight: 500; font-size: 1.35rem; letter-spacing: -.01em;
  margin: 0 0 .55rem;
}
.vcard p { margin: 0; font-size: .96rem; max-width: 38ch; }

.vcard--lead {
  grid-column: 1 / 8; grid-row: 1 / 3;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: clamp(18rem, 34vw, 26rem);
  background:
    radial-gradient(80% 60% at 80% 0%, rgba(231,169,160,.18) 0%, transparent 60%),
    linear-gradient(165deg, var(--candle-hi) 0%, var(--candle-lo) 100%);
  color: var(--paper);
  box-shadow: 0 40px 70px -40px rgba(16,24,15,.7);
}
.vcard--lead:hover { box-shadow: 0 50px 80px -42px rgba(16,24,15,.85); }
.vcard--lead .vcard__num { color: var(--blush); }
.vcard--lead h3 { color: var(--paper); font-size: clamp(1.6rem, 3vw, 2.1rem); }
.vcard--lead p { color: rgba(246,240,229,.78); }

.vcard--blush {
  grid-column: 8 / 13; grid-row: 1;
  background: linear-gradient(160deg, var(--blush-soft) 0%, rgba(243,207,198,.35) 100%);
  border: 1px solid rgba(185,101,93,.18);
}
.vcard--blush .vcard__num { color: var(--rose); }
.vcard--blush h3 { color: var(--rose); }
.vcard--blush p { color: var(--ink-soft); }

.vcard--paper {
  grid-column: 8 / 13; grid-row: 2;
  background: var(--cream);
  border: 1px solid rgba(176,138,79,.28);
}
.vcard--paper .vcard__num { color: var(--brass); }
.vcard--paper h3 { color: var(--green); }
.vcard--paper p { color: var(--ink-soft); }

@media (max-width: 820px) {
  .visiongrid { grid-template-columns: 1fr; }
  .vcard--lead, .vcard--blush, .vcard--paper { grid-column: 1 / -1; grid-row: auto; }
  .vcard--lead { min-height: 15rem; }
}

/* ============================================================
   INVITE: evening again, candle up
   ============================================================ */
.invite {
  background:
    radial-gradient(80% 60% at 50% -10%, rgba(231,169,160,.2) 0%, transparent 60%),
    linear-gradient(180deg, var(--candle-hi) 0%, #182419 100%);
  color: var(--paper);
  padding: var(--act-pad) var(--gutter);
  text-align: center; position: relative; overflow: hidden;
}
.invite__pre { font-size: .68rem; letter-spacing: .28em; text-transform: uppercase; color: var(--brass-lt); margin: 0; }
.invite__head {
  font-weight: 320; font-style: italic;
  font-variation-settings: var(--wonk);
  font-size: clamp(2.4rem, 7vw, 4.6rem); line-height: 1.02; margin: 1rem 0 0;
  color: var(--paper); letter-spacing: -.01em;
}
.invite__copy { max-width: 44ch; margin: 1.6rem auto 0; color: rgba(246,240,229,.82); }

/* thin botanical rule: two brass rules meeting a rhubarb seed */
.invite__botanical {
  display: flex; align-items: center; justify-content: center; gap: .9rem;
  margin: clamp(2.4rem, 6vw, 3.5rem) auto 0; max-width: 18rem;
}
.invite__stem {
  height: 1px; flex: 1;
  background: linear-gradient(90deg, transparent, var(--brass));
}
.invite__botanical .invite__stem:last-child {
  background: linear-gradient(90deg, var(--brass), transparent);
}
.invite__seed {
  width: 7px; height: 11px; border-radius: 50%;
  background: linear-gradient(160deg, var(--blush) 0%, var(--rhubarb) 100%);
  box-shadow: 0 0 0 3px rgba(214,182,129,.18); transform: rotate(18deg);
  flex: 0 0 auto;
}

.invite__cards {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 1.2rem;
  max-width: 720px; margin: clamp(2.4rem, 5.5vw, 3.5rem) auto 0;
}
@media (max-width: 640px) { .invite__cards { grid-template-columns: 1fr; } }
.invitecard {
  display: flex; flex-direction: column; gap: .3rem; text-align: left;
  padding: clamp(1.6rem, 4vw, 2.2rem);
  border: 1px solid rgba(214,182,129,.32); border-radius: 3px;
  text-decoration: none; color: var(--paper);
  background: rgba(246,240,229,.045);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: transform .45s var(--ease), background .45s var(--ease),
              border-color .45s var(--ease), box-shadow .45s var(--ease);
  position: relative; overflow: hidden;
}
/* a candle sheen that slides across on hover */
.invitecard::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(243,207,198,.09) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s var(--ease);
  pointer-events: none;
}
.invitecard:hover, .invitecard:focus-visible {
  transform: translateY(-4px); border-color: var(--brass-lt);
  background: rgba(246,240,229,.07);
  box-shadow: 0 30px 50px -30px rgba(0,0,0,.6);
}
.invitecard:hover::before, .invitecard:focus-visible::before { transform: translateX(100%); }
.invitecard__kicker { font-size: .6rem; letter-spacing: .24em; text-transform: uppercase; color: var(--brass-lt); }
.invitecard__handle {
  font-family: var(--ff-serif); font-style: italic; font-size: 1.7rem;
  font-variation-settings: var(--wonk);
  color: var(--blush-soft); line-height: 1.1;
}
.invitecard__cta { margin-top: .8rem; font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .08em; color: rgba(246,240,229,.85); }
.invitecard__cta span { display: inline-block; transition: transform .4s var(--ease); }
.invitecard:hover .invitecard__cta span { transform: translate(3px,-3px); }

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: #16120e; color: var(--paper); text-align: center;
  padding: clamp(3.5rem, 8vw, 5.5rem) 1.5rem clamp(2.5rem, 6vw, 4rem);
}
.foot__mark { font-size: 3rem; color: var(--blush); margin: 0; }
.foot__tag { font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; color: var(--brass-lt); margin: .6rem 0 0; }
.foot__hosts { font-style: italic; font-weight: 320; color: rgba(246,240,229,.8); margin: 2rem 0 0; font-size: 1.1rem; }
.foot__hosts span { color: var(--blush-soft); }
.foot__fine { font-size: .62rem; letter-spacing: .08em; color: rgba(246,240,229,.4); margin: 1.4rem 0 0; }
