/* ============================================================
   Nani marketing site — editorial redesign ("magazine" pass)
   Brand tokens mirror the Flutter app (FROZEN palette):
   mobile_flutter/lib/core/theme/app_tokens.dart
   Layout language: hairline rules, small caps, framed plates,
   menu-card pricing — restrained color on a cream ground.
   ============================================================ */

/* ---- Self-hosted fonts (latin subset, woff2) ---- */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/PlayfairDisplay-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/PlayfairDisplay-700-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/SourceSerif4-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/SourceSerif4-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/SourceSerif4-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Homemade Apple';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/HomemadeApple-400.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/DMSans-500.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/DMSans-700.woff2') format('woff2');
}

/* ---- Tokens ---- */
:root {
  --tomato: #D6371F;
  --tomato-deep: #B02D18;
  --olive: #61883A;
  --olive-deep: #4C6B2E;
  --gold: #DA9B2F;
  --gold-deep: #A9761B;      /* display gold that clears 3:1 on cream */
  --sage: #A9C388;           /* sage green — nav + features ground */
  --ink-blue: #44619B;       /* ballpoint blue for handwritten artifacts */
  --hand: 'Homemade Apple', cursive;
  --cream: #FBF9F3;
  --parchment: #F6F2EA;
  --linen: #EAE2D7;
  --charcoal: #282C33;
  --ink-soft: #504A40;

  --hairline: 1px solid var(--linen);
  --hairline-dark: 1px solid #D5CBBB;

  --serif-display: 'Playfair Display', Georgia, serif;
  --serif-body: 'Source Serif 4', Georgia, serif;
  --sans: 'DM Sans', 'Segoe UI', Arial, sans-serif;

  --container: 1140px;
  --measure: 62ch;
}

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--serif-body);
  font-size: 1.125rem;             /* 18px floor everywhere */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'liga', 'kern';
}
img, svg { max-width: 100%; height: auto; }
h1, h2, h3 {
  font-family: var(--serif-display);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 0.45em;
  text-wrap: balance;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.75rem, 6vw, 4.35rem); }
h2 { font-size: clamp(2.1rem, 4.2vw, 3rem); }
h3 { font-size: 1.55rem; line-height: 1.25; }
h1 em, h2 em { font-style: italic; color: var(--tomato); letter-spacing: 0; }
p { margin: 0 0 1em; }
a { color: var(--tomato); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--tomato-deep); }
::selection { background: var(--gold); color: var(--charcoal); }

:focus-visible {
  outline: 2px solid var(--tomato);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--charcoal);
  color: #fff;
  padding: 12px 20px;
  z-index: 100;
}
.skip-link:focus { left: 0; color: #fff; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ---- Editorial furniture ---- */
.smallcaps {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--gold-deep);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.kicker::before, .kicker::after {
  content: '';
  width: 44px;
  height: 1px;
  background: #D5CBBB;
}
@media (max-width: 560px) {
  .kicker { letter-spacing: 0.18em; }
  .kicker::before, .kicker::after { display: none; }
}
.ornament {
  display: block;
  text-align: center;
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1;
  margin: 30px 0 0;
  user-select: none;
}

/* ---- Buttons: editorial, squared, letterspaced ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 60px;
  padding: 18px 40px;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease;
}
.btn-primary {
  background: var(--tomato);
  color: #fff;
}
.btn-primary:hover { background: var(--tomato-deep); color: #fff; }
.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.btn-secondary:hover { background: var(--charcoal); color: var(--cream); }

.text-link {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.text-link:hover { color: var(--tomato); }

/* ---- Ticker banner (the trading floor) ---- */
.ticker {
  display: block;
  background: var(--tomato);
  overflow: hidden;
  text-decoration: none;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 32s linear infinite;
}
.ticker-half { display: flex; }
.ticker span {
  display: inline-flex;
  align-items: center;
  padding: 11px 0;
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker span::after {
  content: '\2736';               /* six-pointed star separator */
  color: var(--gold);
  margin: 0 28px;
  letter-spacing: 0;
}
@keyframes ticker-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ---- Masthead ---- */
.masthead { border-bottom: var(--hairline-dark); }
.masthead-strip {
  border-bottom: var(--hairline);
  padding: 10px 0;
  text-align: center;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.logo-img {
  display: inline-block;
  height: clamp(58px, 8vw, 82px);
  width: auto;
}
.masthead-main {
  text-align: center;
  padding: 34px 0 0;
}
.wordmark {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 4.2rem);
  line-height: 1;
  color: var(--gold-deep);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.wordmark:hover { color: var(--gold-deep); }
.wordmark .dot { color: var(--tomato); }
.masthead-nav {
  margin-top: 26px;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 44px;
  row-gap: 0;
  padding: 0 28px;
}
.masthead-nav a {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  padding: 16px 2px;
}
.masthead-nav a:hover { color: #fff; }
.masthead-nav a.nav-cta {
  background: var(--tomato);
  color: #fff;
  padding: 9px 20px;
  border-radius: 999px;
  margin: 7px 0;
}
.masthead-nav a.nav-cta:hover { background: var(--tomato-deep); color: #fff; }

/* ---- Hero ---- */
.hero { padding: 84px 0 96px; }
.hero .container {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 64px;
  align-items: center;
}
.hero-kicker { justify-content: flex-start; }
.hero-copy h1 { margin-bottom: 30px; }
.hero-copy .lede {
  font-size: 1.3rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 36ch;
}
.hero-copy .lede::first-letter {
  font-family: var(--serif-display);
  font-weight: 700;
  font-style: normal;
  float: left;
  font-size: 3.4em;
  line-height: 0.85;
  padding: 4px 12px 0 0;
  color: var(--tomato);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 36px;
  margin: 38px 0 26px;
}
.hero-note {
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 0;
}
.hero-note::before { content: '* '; color: var(--tomato); font-style: normal; }

/* Framed plate treatment for imagery */
.plate {
  background: #fff;
  border: var(--hairline-dark);
  padding: 22px 22px 14px;
  box-shadow: 0 1px 0 #E7DECF;
}
.plate-inner {
  border: var(--hairline);
  background: var(--parchment);
  padding: 14px;
}
.plate-photo {
  background: #fff;
  border: var(--hairline-dark);
  padding: 12px;
  box-shadow: 0 14px 34px rgba(40, 44, 51, 0.12);
}
.plate-photo img { display: block; width: 100%; height: auto; }

/* ---- Nostalgic handwritten recipe card ---- */
.recipe-card {
  --rule: 30px;                       /* ruled-line rhythm */
  width: 280px;
  background:
    radial-gradient(ellipse 120px 60px at 82% 90%, rgba(218, 155, 47, 0.20), transparent 70%),
    linear-gradient(172deg, #FFFEF9 0%, #FBF5E8 55%, #F4EAD5 100%);
  border: 1px solid #DFD3BC;
  box-shadow: 0 16px 34px rgba(40, 44, 51, 0.22);
  padding: 20px 22px 24px;
  position: relative;
}
.recipe-card::before {                /* strip of kitchen tape */
  content: '';
  position: absolute;
  top: -13px;
  left: 50%;
  width: 96px;
  height: 26px;
  transform: translateX(-50%) rotate(-2.5deg);
  background: linear-gradient(rgba(238, 230, 214, 0.9), rgba(228, 218, 198, 0.75));
  border-left: 1px dashed rgba(40, 44, 51, 0.12);
  border-right: 1px dashed rgba(40, 44, 51, 0.12);
  box-shadow: 0 1px 3px rgba(40, 44, 51, 0.10);
}
.rc-stain {                           /* coffee ring */
  position: absolute;
  right: 16px;
  bottom: 48px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 5px solid rgba(169, 118, 27, 0.22);
  pointer-events: none;
}
.rc-title {
  font-family: var(--hand);
  font-size: 1.3rem;
  color: var(--ink-blue);
  padding-bottom: 10px;
  margin-bottom: 2px;
  border-bottom: 2px solid rgba(214, 55, 31, 0.55);
  white-space: nowrap;
  overflow: hidden;
}
.rc-lines {
  font-family: var(--hand);
  font-size: 0.95rem;
  color: var(--ink-blue);
  line-height: var(--rule);
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent calc(var(--rule) - 1px),
    rgba(122, 146, 180, 0.30) calc(var(--rule) - 1px),
    rgba(122, 146, 180, 0.30) var(--rule)
  );
  background-origin: content-box;
  padding-top: 6px;
  margin: 0;
}
.rc-sig {
  font-family: var(--hand);
  font-size: 0.95rem;
  color: var(--ink-blue);
  text-align: right;
  margin: 10px 0 0;
  transform: rotate(-1.5deg);
}
.recipe-card.rc-small { width: 220px; padding: 16px 18px 18px; margin: 0 auto 26px; transform: rotate(-2deg); }
.recipe-card.rc-small .rc-title { font-size: 1.05rem; }
.recipe-card.rc-small .rc-lines { font-size: 0.8rem; --rule: 26px; }

/* ---- Circular cover badge (cookbook sticker) ---- */
.badge-circle {
  position: absolute;
  top: -30px;
  right: -22px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid #B98A24;
  box-shadow: 0 8px 18px rgba(40, 44, 51, 0.16), inset 0 0 0 5px var(--cream), inset 0 0 0 6px rgba(185, 138, 36, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(8deg);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.72rem;
  line-height: 1.5;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8A5A00;
  z-index: 3;
}

/* ---- Hero photo composition ---- */
.hero-stack {
  position: relative;
  margin: 0 0 0 26px;
}
.hero-stack .recipe-card {
  position: absolute;
  left: -48px;
  bottom: -42px;
  width: 232px;
  transform: rotate(-4deg);
  z-index: 2;
}
.hero-stack .recipe-card .rc-title { font-size: 1.12rem; }
.hero-stack .recipe-card .rc-lines { font-size: 0.84rem; --rule: 27px; }
@media (max-width: 940px) {
  .hero-stack { margin: 0 auto; max-width: 480px; }
  .hero-stack .recipe-card { left: -10px; bottom: -26px; width: 240px; }
  .hero-stack .badge-circle { right: -8px; top: -24px; width: 100px; height: 100px; }
}

/* ---- Phone mockup (the digital experience) ---- */
.phone {
  width: 210px;
  margin: 0 auto 26px;
  background: var(--charcoal);
  border-radius: 30px;
  padding: 10px;
  box-shadow: 0 14px 30px rgba(40, 44, 51, 0.20);
}
.phone-screen {
  background: var(--cream);
  border-radius: 21px;
  padding: 18px 16px 14px;
  text-align: left;
}
.phone-screen .app-title {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 1.02rem;
  margin: 0 0 2px;
  color: var(--charcoal);
}
.phone-screen .app-sub {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 10px;
}
.app-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--linen);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.74rem;
  color: var(--ink-soft);
}
.app-check {
  flex: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #E6F0E2;
  color: var(--olive-deep);
  font-size: 10px;
  line-height: 15px;
  text-align: center;
  font-weight: 700;
}
.app-share {
  margin-top: 12px;
  background: var(--tomato);
  color: #fff;
  border-radius: 10px;
  text-align: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 0;
}
.step .plate-photo { max-width: 250px; margin: 0 auto; }
.step-visual {
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}
.step-visual .recipe-card.rc-small,
.step-visual .phone { margin: 0 auto; }
.hero-stack + .figcaption { margin-top: 52px; }
.figcaption {
  margin: 16px 4px 2px;
  text-align: center;
  font-style: italic;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.figcaption .fig-no {
  font-style: normal;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-right: 10px;
}
@media (max-width: 940px) {
  .hero { padding: 56px 0 72px; }
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-kicker { justify-content: center; }
  .hero-copy { text-align: center; }
  .hero-copy .lede { margin-inline: auto; }
  .hero-actions { justify-content: center; }
}

/* ---- Section scaffolding ---- */
.section {
  padding: 108px 0;
  border-top: var(--hairline-dark);
}
.section-head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head .section-sub {
  color: var(--ink-soft);
  font-size: 1.15rem;
  max-width: 54ch;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .section { padding: 76px 0; }
  .section-head { margin-bottom: 48px; }
}

/* ---- Why Nani: pull quote over garden portrait ---- */
.why {
  background: url('assets/photos/grandmother-garden.jpg') left center / cover no-repeat var(--parchment);
  position: relative;
}
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(251, 249, 243, 0.06) 0%,
    rgba(251, 249, 243, 0.30) 34%,
    rgba(251, 249, 243, 0.88) 55%,
    rgba(251, 249, 243, 0.96) 100%
  );
}
.why .container { position: relative; }
.why-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  min-height: 460px;
}
.why-grid > .pullquote { grid-column: 2; margin: 0; }
@media (max-width: 940px) {
  .why { background-position: 22% center; }
  .why::before { background: rgba(251, 249, 243, 0.90); }
  .why-grid { grid-template-columns: 1fr; min-height: 0; }
  .why-grid > .pullquote { grid-column: 1; }
}
.pullquote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.pullquote .quote-mark {
  display: block;
  font-family: var(--serif-display);
  font-size: 5.5rem;
  line-height: 0.6;
  color: var(--gold);
  margin-bottom: 26px;
  user-select: none;
}
.pullquote blockquote {
  margin: 0;
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.55rem, 3.2vw, 2.2rem);
  line-height: 1.4;
  color: var(--charcoal);
}
.pullquote blockquote strong { color: var(--tomato); font-weight: inherit; }
.pullquote .quote-rest {
  margin: 30px auto 0;
  max-width: 56ch;
  font-size: 1.15rem;
  color: var(--ink-soft);
}

/* ---- The method (how it works) ---- */
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.step {
  padding: 8px 44px 0;
  text-align: center;
}
.step + .step { border-left: var(--hairline); }
.step-no {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.step-rule {
  width: 34px;
  height: 1px;
  background: #D5CBBB;
  margin: 0 auto 26px;
}
.step svg { width: 100%; max-width: 210px; margin: 0 auto 24px; display: block; }
.step h3 { margin-bottom: 0.4em; }
.step p { color: var(--ink-soft); margin: 0; font-size: 1.05rem; }
@media (max-width: 940px) {
  .steps { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .step { padding: 0 12px; }
  .step + .step { border-left: 0; border-top: var(--hairline); margin-top: 44px; padding-top: 44px; }
}

/* ---- Features: editorial columns on sage ---- */
.features-sage { background: var(--sage); border-top: 0; }
.features-sage .kicker { color: var(--charcoal); }
.features-sage .kicker::before,
.features-sage .kicker::after { background: rgba(40, 44, 51, 0.35); }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.feature {
  padding: 8px 44px 0;
  text-align: center;
}
.feature + .feature { border-left: 1px solid rgba(40, 44, 51, 0.18); }
.features-sage .feature p { color: #33383F; }
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border: 1px solid #D5CBBB;
  border-radius: 50%;
  margin-bottom: 24px;
  background: #fff;
}
.feature h3 { margin-bottom: 0.4em; }
.feature p { color: var(--ink-soft); margin: 0; font-size: 1.05rem; }
@media (max-width: 940px) {
  .feature-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .feature { padding: 0 12px; }
  .feature + .feature { border-left: 0; border-top: 1px solid rgba(40, 44, 51, 0.18); margin-top: 44px; padding-top: 44px; }
}

/* Editor's note (the promise) */
.editors-note {
  max-width: 680px;
  margin: 84px auto 0;
  border: var(--hairline-dark);
  outline: 1px solid #D5CBBB;
  outline-offset: 4px;
  background: var(--parchment);
  padding: 44px 48px 40px;
  text-align: center;
}
.editors-note .note-label {
  color: var(--olive-deep);
  display: block;
  margin-bottom: 18px;
}
.editors-note p {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.6;
  font-style: italic;
}
.editors-note p strong { font-style: normal; }
@media (max-width: 700px) {
  .editors-note { padding: 34px 26px 30px; margin-top: 64px; }
}

/* ---- Pricing: the menu card ---- */
.menu-card {
  max-width: 820px;
  margin: 0 auto;
  border: var(--hairline-dark);
  outline: 1px solid #D5CBBB;
  outline-offset: 4px;
  background: #fff;
  padding: 20px 56px;
}
.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 40px;
  align-items: baseline;
  padding: 36px 0;
}
.menu-row + .menu-row { border-top: var(--hairline); }
.menu-row .plan-for {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--olive-deep);
  margin-bottom: 6px;
}
.menu-row h3 {
  margin: 0 0 10px;
  font-size: 1.8rem;
}
.menu-row h3 .flag {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tomato);
  margin-left: 14px;
  position: relative;
  top: -4px;
  white-space: nowrap;
}
.menu-row .plan-desc {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 46ch;
}
.menu-price {
  text-align: right;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  white-space: nowrap;
}
.menu-price .price-sub {
  display: block;
  margin-top: 6px;
  font-family: var(--serif-body);
  font-weight: 400;
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-soft);
}
.pricing-note {
  text-align: center;
  color: var(--ink-soft);
  font-style: italic;
  font-size: 1rem;
  margin: 36px auto 0;
  max-width: 58ch;
}
.pricing-note::before { content: '* '; color: var(--tomato); font-style: normal; }
.pricing-cta { text-align: center; margin-top: 44px; }
@media (max-width: 700px) {
  .menu-card { padding: 8px 26px; }
  .menu-row { grid-template-columns: 1fr; padding: 30px 0; }
  .menu-price { text-align: left; margin-top: 4px; }
}

/* ---- Waitlist: subscription insert over the baking scene ---- */
.waitlist {
  background: url('assets/photos/waitlist-baking.jpg') center 38% / cover no-repeat var(--charcoal);
  position: relative;
  border-top: 0;
}
.waitlist::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 16, 0.35);
}
.waitlist .container { position: relative; }
.waitlist-box {
  max-width: 660px;
  margin: 0 auto;
  border: var(--hairline-dark);
  outline: 1px solid #D5CBBB;
  outline-offset: 4px;
  background: var(--cream);
  padding: 56px 52px 44px;
  text-align: center;
}
.waitlist-box h2 { font-size: clamp(1.9rem, 3.6vw, 2.5rem); }
.waitlist-box > p { color: var(--ink-soft); max-width: 46ch; margin: 0 auto 1em; }
.waitlist-form {
  display: flex;
  gap: 16px;
  margin: 34px 0 14px;
}
.waitlist-form input[type='email'] {
  flex: 1;
  min-height: 60px;
  padding: 12px 4px;
  font-family: var(--serif-body);
  font-size: 1.125rem;
  color: var(--charcoal);
  background: transparent;
  border: 0;
  border-bottom: 2px solid #A79B89;
  border-radius: 0;
}
.waitlist-form input[type='email']::placeholder { color: #8D8271; font-style: italic; }
.waitlist-form input[type='email']:focus-visible {
  outline: none;
  border-bottom-color: var(--tomato);
}
.waitlist-form .hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  min-height: 1.6em;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1rem;
  margin: 0 0 6px;
}
.form-status.ok { color: var(--olive-deep); }
.form-status.error { color: #C13B2A; }
.waitlist-privacy {
  font-size: 0.98rem;
  font-style: italic;
  color: var(--ink-soft);
  margin: 0;
}
.hand-note {
  font-family: var(--hand);
  font-size: 1.05rem;
  color: var(--ink-blue);
  transform: rotate(-2deg);
  margin: 22px 0 0;
}
@media (max-width: 640px) {
  .waitlist-box { padding: 44px 26px 36px; }
  .waitlist-form { flex-direction: column; }
}

/* ---- Footer ---- */
.site-footer {
  border-top: var(--hairline-dark);
  padding: 64px 0 56px;
  text-align: center;
}
.site-footer .fleuron {
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
  display: block;
  margin-bottom: 20px;
  user-select: none;
}
.footer-brand {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--charcoal);
  text-decoration: none;
}
.footer-tag {
  margin: 14px 0 26px;
  color: var(--ink-soft);
  font-style: italic;
  font-size: 1rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 26px;
}
.footer-links a {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
}
.footer-links a:hover { color: var(--tomato); }
.footer-legal {
  margin: 0;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---- Privacy page ---- */
.prose {
  max-width: 700px;
  margin: 0 auto;
  padding: 72px 28px 108px;
}
.prose h1 { font-size: clamp(2.2rem, 4.4vw, 3.2rem); }
.prose h2 {
  font-size: 1.6rem;
  margin-top: 1.8em;
}
.prose li { margin-bottom: 0.5em; }
