/* ===========================================================
   RUBY'S TABLE — Global Stylesheet
   A bright, airy, editorial design system for a boutique
   Charleston catering brand: cream & soft white & butter & olive
   & warm taupe & dusty rose, a hint of coastal blue.
   Photography-led. One idea per section. No filler.
   Custom CSS, no framework.
   =========================================================== */

/* -----------------------------------------------------------
   1. Fonts
   Inter   — clean sans; carries headings, body, nav, buttons, labels
   Caveat  — handwritten signature, used once
----------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Caveat:wght@500&display=swap');

/* -----------------------------------------------------------
   2. Design tokens
----------------------------------------------------------- */
:root {
  --cream:          #FBF6EC;
  --cream-deep:      #F4EAD3;
  --soft-white:      #FFFDF8;
  --linen:          #F1E7D2;
  --butter:          #F1D48A;
  --butter-soft:     #F7E7B8;
  --taupe:          #A8967D;
  --taupe-deep:      #7A6B54;
  --olive:          #8B9166;
  --olive-deep:      #5F6640;
  --rose:      #F3C2D4;
  --rose-deep: #B83A64;
  --rose-light: #E4AABD; /* lighter pastel — kept for reference, no longer in active use */
  --dusty-blue:      #9BB3D6; /* button fill — pairs with espresso text, not white */
  --dusty-blue-deep: #446CA6; /* text/line uses — eyebrows, prices, focus states */
  --coastal-soft:      #DCE6E4;
  --coastal-deep:      #4E6367;
  --espresso:        #4A3A2C;
  --espresso-soft:   #6B5642;
  --white-soft:      #FFFDF8; /* alias of --soft-white, kept for compatibility */
  --ruby-red:        #D02A2E; /* one small, personal touch — used sparingly */
  --ruby-red-bright: #F28D90; /* same touch, brightened for dark backgrounds */

  --color-bg:            var(--cream);
  --color-bg-alt:        var(--cream-deep);
  --color-text:          var(--espresso);
  --color-text-soft:     var(--espresso-soft);
  --color-accent:        var(--olive);
  --color-accent-deep:   var(--olive-deep);
  --color-accent-warm:   var(--dusty-blue-deep);
  --color-accent-coastal: var(--coastal-deep);
  --color-line:          rgba(74, 58, 44, 0.12);

  --font-serif: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; /* headings now share the sans stack — kept as a separate token so heading-only tweaks stay easy */
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-script: 'Caveat', cursive;

  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs:  0.75rem;
  --space-sm:  1.4rem;
  --space-md:  2.25rem;
  --space-lg:  4rem;
  --space-xl:  6.5rem;
  --space-2xl: 9.5rem;

  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 10px;

  /* Kept deliberately light — no heavy drop shadows anywhere on the site */
  --shadow-soft: 0 8px 24px -14px rgba(74, 58, 44, 0.10);
  --shadow-lift: 0 14px 32px -16px rgba(74, 58, 44, 0.12);

  --container-max: 1160px;
  --transition: 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* -----------------------------------------------------------
   3. Reset
----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  position: relative;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* -----------------------------------------------------------
   4. Typography — serif carries every heading, sans carries
   everything else. No oversized numerals, no gimmicks.
----------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.005em;
  color: var(--color-text);
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); font-weight: 500; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.55rem); font-weight: 600; }
h4 { font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; font-family: var(--font-sans); font-weight: 600; }

p { max-width: 60ch; }
p + p { margin-top: 1.05em; }

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--color-text-soft);
  max-width: 44ch;
  font-weight: 300;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent-deep);
  margin-bottom: var(--space-sm);
}
.eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--color-accent-deep);
  display: inline-block;
}
.eyebrow.warm { color: var(--color-accent-warm); }
.eyebrow.warm::before { background: var(--color-accent-warm); }
.eyebrow.coastal { color: var(--color-accent-coastal); }
.eyebrow.coastal::before { background: var(--color-accent-coastal); }

.script-accent {
  font-family: var(--font-script);
  font-weight: 500;
  font-size: 1.4em;
  color: var(--ruby-red);
  display: inline-block;
}

/* -----------------------------------------------------------
   Small ruby-red touch — a personal signature, used in exactly
   two places: the footer wordmark and the script signature
   above. Not a palette shift, just a heartbeat of brand color.
----------------------------------------------------------- */
.heart-mark {
  color: var(--ruby-red);
  font-size: 0.55em;
  line-height: 1;
  display: inline-block;
}
.heart-mark.on-dark { color: var(--ruby-red-bright); }

.section-heading { margin-bottom: var(--space-lg); max-width: 60ch; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }

/* -----------------------------------------------------------
   5. Layout helpers
----------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-sm);
}
@media (min-width: 640px) { .container { padding-inline: var(--space-md); } }

section { padding-block: var(--space-2xl); }
.section-tight { padding-block: var(--space-xl); }
.section-minimal { padding-block: var(--space-lg); }
.section-vast { padding-block: clamp(4.5rem, 12vw, 9rem); }
.section-flush { padding: 0; }

.bg-alt   { background: var(--color-bg-alt); }
.bg-espresso { background: var(--espresso); color: var(--cream); }
.bg-espresso h1, .bg-espresso h2, .bg-espresso h3 { color: var(--cream); }

.grid { display: grid; gap: var(--space-md); }
@media (min-width: 780px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.cluster { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-sm); }

.divider {
  width: 44px;
  height: 1.5px;
  background: var(--color-accent);
  margin-block: var(--space-sm);
}
.center .divider { margin-inline: auto; }

.two-col-text { display: grid; gap: var(--space-lg); }
@media (min-width: 900px) { .two-col-text { grid-template-columns: 1fr 1fr; } }

/* -----------------------------------------------------------
   6. Buttons — one filled, one outline. Quiet, not shouty.
----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.85em 1.75em;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), border-color var(--transition), opacity var(--transition);
  white-space: nowrap;
}
.btn:hover { opacity: 0.82; }

.btn-primary { background: var(--dusty-blue); color: var(--espresso); }
.btn-primary:hover { background: var(--espresso); color: var(--soft-white); opacity: 1; }

.btn-outline { background: transparent; color: var(--color-text); border: 1px solid var(--color-text); }
.btn-outline:hover { background: var(--color-text); color: var(--color-bg); opacity: 1; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--color-accent-warm);
  outline-offset: 3px;
}

.skip-link {
  position: absolute; left: -999px; top: auto;
  background: var(--espresso); color: var(--cream);
  padding: 1em 1.5em; z-index: 999;
}
.skip-link:focus { left: 0; top: 0; }

/* -----------------------------------------------------------
   7. Site header / nav — quiet, minimal, lets the page carry
   the weight. No utility bar above it, no heavy effects.
----------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: var(--space-2xs);
  min-height: 74px;
}

.logo {
  display: inline-flex; align-items: center; gap: 0.32em;
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  font-size: 1.5rem; color: var(--espresso); letter-spacing: 0.01em;
}

.main-nav ul { display: flex; align-items: center; gap: var(--space-md); }
.main-nav a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.03em;
  position: relative; padding-block: 0.3em; color: var(--color-text-soft);
}
.main-nav a:hover { color: var(--color-text); }
.main-nav a[aria-current="page"] { color: var(--ruby-red); font-weight: 600; }

.header-cta { display: flex; align-items: center; gap: var(--space-sm); }
.header-cta .btn { padding: 0.65em 1.35em; font-size: 0.78rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 0.5em; }
.nav-toggle span { width: 22px; height: 1.5px; background: var(--espresso); transition: transform var(--transition), opacity var(--transition); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .header-cta .btn-outline-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed; inset: 74px 0 0 0; background: var(--cream);
    padding: var(--space-lg) var(--space-md);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: var(--space-md); }
  .main-nav a { font-size: 1.3rem; }
}


/* -----------------------------------------------------------
   8. Hero video — full-bleed, slow-moving footage beneath a
   warm cream veil. The overlay exists purely so the type stays
   easy to read; it should never read as a "dark hero" trick —
   the palette stays light, calm, and true to the rest of the
   page. Content sits left, generous padding, plenty of air.
----------------------------------------------------------- */
.hero-video {
  position: relative; padding: 0; min-height: 90vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-video .hero-video-media { position: absolute; inset: 0; background: var(--cream); }
.hero-video .hero-video-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-video .hero-video-media::after {
  content: ''; position: absolute; inset: 0;
  /* Warm cream veil, ~50% on average. Slightly stronger over the
     left third (where the text sits) than the requested 45–55%,
     verified against the video's own darkest sampled frame so
     small text stays AA-legible no matter what the loop shows;
     it settles back into the 45–55% range across the rest of the
     frame, where the pasta's movement should read clearly. */
  background: linear-gradient(90deg, rgba(251,246,236,0.68) 0%, rgba(251,246,236,0.52) 45%, rgba(251,246,236,0.48) 100%);
}
.hero-video-content { position: relative; z-index: 2; padding: var(--space-xl) var(--space-sm); max-width: 620px; }
@media (min-width: 640px) { .hero-video-content { padding: var(--space-2xl) var(--space-lg); } }

/* -----------------------------------------------------------
   9. Split-screen — one consistent asymmetric two-up, used the
   same way everywhere it appears. Full-bleed photo one side,
   generous copy the other.
----------------------------------------------------------- */
.split-screen { display: grid; min-height: 56vh; }
@media (min-width: 900px) {
  .split-screen { grid-template-columns: 1fr 1fr; }
  .split-screen.split-wide-left { grid-template-columns: 1.15fr 1fr; }
  .split-screen.split-wide-right { grid-template-columns: 1fr 1.15fr; }
}
.split-screen .split-media { position: relative; min-height: 38vh; background: var(--espresso); }
.split-screen .split-media img,
.split-screen .split-media video { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.split-screen .split-copy { display: flex; flex-direction: column; justify-content: center; padding: var(--space-xl) var(--space-sm); }
@media (min-width: 640px) { .split-screen .split-copy { padding: var(--space-2xl) var(--space-lg); } }
.split-screen .split-copy.on-cream { background: var(--cream); }

/* -----------------------------------------------------------
   10. Pull-quote — one quiet emphasis device
----------------------------------------------------------- */
.pull-quote {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem); line-height: 1.4; color: var(--color-text);
  border-left: 2px solid var(--color-accent); padding-left: var(--space-md); margin-block: var(--space-lg);
}

/* -----------------------------------------------------------
   11. Quiet content list — replaces cards/tables for "good to
   know" style information. Clean stacked rows, generous space,
   no numerals, no icons, no tilt.
----------------------------------------------------------- */
.info-list { border-top: 1px solid var(--color-line); }
.info-row {
  padding-block: var(--space-lg); border-bottom: 1px solid var(--color-line);
}
@media (min-width: 720px) {
  .info-row { display: grid; grid-template-columns: 1fr 1.6fr; gap: var(--space-lg); }
}
.info-row h3 { margin-bottom: 0.3em; }
.info-row p { color: var(--color-text-soft); max-width: 52ch; }

/* -----------------------------------------------------------
   11b. Delivery page — Ordering Information + Delivery Areas.
   Both blocks share one editorial two-column grid device (a
   small photo + copy header, then a hairline-ruled grid) so the
   page reads as one intentional whole rather than a stack of
   equally-weighted sections. No cards, icons, or shadows.
----------------------------------------------------------- */
.page-hero-compact { padding-top: var(--space-md); padding-bottom: var(--space-2xs); }

/* Lets the first content section after a compact hero sit close
   beneath it, instead of stacking a second full section-tight
   top padding on top of the hero's own bottom padding. */
.section-tight.section-flush-top { padding-top: var(--space-md); }

/* One narrow reading column for the price list — prose, photo,
   and list don't all need the same width; this one just needs
   to be easy to scan. */
.content-column { max-width: 700px; }

/* A single quiet line of essentials — no headings, no boxes,
   just the facts a reader actually needs, at a glance. */
.order-essentials { margin-top: 0.5em; color: var(--color-text-soft); font-size: 0.9rem; }

/* Delivery zones — a quiet editorial list, not a pricing chart. */
.zone-list { border-top: 1px solid var(--color-line); }
.zone-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: 1.05rem;
  border-bottom: 1px solid var(--color-line);
}
.zone-name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  color: var(--color-text);
  max-width: 34ch;
}
.zone-fee {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--color-accent-warm);
  white-space: nowrap;
  flex-shrink: 0;
}

.closing-note.closing-note-tight { padding-top: var(--space-md); }

@media (max-width: 480px) {
  .zone-row { gap: var(--space-sm); }
  .zone-fee { font-size: 0.88rem; }
}

/* -----------------------------------------------------------
   12. Photography frames — plain, minimal radius, no arches,
   no organic blobs. The photo does the work.
----------------------------------------------------------- */
.photo-frame { position: relative; overflow: hidden; aspect-ratio: 4/5; background: var(--linen); border-radius: var(--radius-sm); }
.photo-frame img, .photo-frame video { width: 100%; height: 100%; object-fit: cover; }
.photo-frame.square { aspect-ratio: 1/1; }
.photo-frame.wide { aspect-ratio: 16/10; }
.photo-frame.tall { aspect-ratio: 3/4; }

/* -----------------------------------------------------------
   13. Asymmetric two-up — one photo, one block of copy, used
   consistently across pages instead of a different invention
   each time.
----------------------------------------------------------- */
.offset-duo { display: grid; gap: var(--space-lg); align-items: center; }
@media (min-width: 820px) { .offset-duo { grid-template-columns: 5fr 7fr; } }

/* -----------------------------------------------------------
   14b. Editorial Instagram-style gallery — a peek into the
   camera roll, not an ad unit. Fixed-height row, varied
   widths, horizontal scroll. Swap <img src> only; the layout
   (sizes, order, spacing) is designed to stay put.
----------------------------------------------------------- */
.ig-gallery-head { text-align: center; margin-bottom: var(--space-lg); }

.ig-gallery-scroll {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-inline: var(--space-sm);
  padding-bottom: var(--space-2xs);
  scrollbar-width: thin;
  scrollbar-color: var(--taupe) transparent;
}
@media (min-width: 640px) { .ig-gallery-scroll { padding-inline: var(--space-md); } }
.ig-gallery-scroll::-webkit-scrollbar { height: 6px; }
.ig-gallery-scroll::-webkit-scrollbar-thumb { background: var(--taupe); border-radius: 10px; }
.ig-gallery-scroll::-webkit-scrollbar-track { background: transparent; }

.ig-gallery-item {
  position: relative;
  flex: 0 0 auto;
  scroll-snap-align: start;
  height: min(52vh, 480px);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--linen);
}
.ig-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ig-gallery-item.size-sm { width: min(60vw, 250px); }
.ig-gallery-item.size-md { width: min(72vw, 330px); }
.ig-gallery-item.size-lg { width: min(86vw, 430px); }

.ig-follow-link {
  display: inline-flex; align-items: center; gap: 0.45em;
  font-size: 0.85rem; letter-spacing: 0.02em; color: var(--color-text-soft);
  border-bottom: 1px solid var(--color-line);
  padding-bottom: 0.15em;
  transition: color var(--transition), border-color var(--transition);
}
.ig-follow-link:hover { color: var(--color-accent-warm); border-color: var(--color-accent-warm); }

/* -----------------------------------------------------------
   15. Menu page
----------------------------------------------------------- */
.menu-jump { display: flex; flex-wrap: wrap; gap: var(--space-2xs); margin-bottom: var(--space-lg); }
.menu-jump a {
  padding: 0.5em 1.1em; border-radius: 100px; border: 1px solid var(--color-line);
  font-size: 0.82rem; letter-spacing: 0.02em; font-weight: 500;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.menu-jump a:hover { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }

.menu-category { padding-block: var(--space-lg); border-top: 1px solid var(--color-line); scroll-margin-top: 130px; }
.menu-category:first-of-type { border-top: none; padding-top: 0; }
/* Dessert reads as a featured single item, not a full category —
   the same divider, a smaller footprint. */
.menu-category.menu-category-compact { padding-block: var(--space-md); }

/* Price now reads as a subtitle directly under the heading,
   instead of floating right-aligned on its own axis. */
.menu-category-head { margin-bottom: var(--space-md); }
.price-tiers { font-family: var(--font-sans); font-size: 0.92rem; color: var(--color-text-soft); margin-top: 0.35em; }

.menu-items { display: grid; gap: var(--space-sm); }
@media (min-width: 720px) { .menu-items { grid-template-columns: repeat(2, 1fr); } }

.menu-item { padding-bottom: var(--space-xs); border-bottom: 1px solid var(--color-line); }
.menu-item-head { display: flex; justify-content: space-between; align-items: baseline; gap: var(--space-sm); }
.menu-item-head h3 { font-size: 1.15rem; }

/* A photo accent for dishes with a photo — a proper banner image
   above the name, not a tiny icon, so the dish actually reads.
   Items without a photo (e.g. Salads) stay plain text below.

   Each source photo was shot from a slightly different distance,
   so a flat object-fit:cover leaves the dish a different size in
   every card. --photo-zoom lets each card dial in its own scale
   (1 = shown as-is; >1 crops in tighter; <1 shows more of the
   original frame, revealing --photo-vpos to re-aim the crop
   vertically) so every dish reads at the same visual distance.
   Ruby's Vodka Radiatori is the reference (zoom: 1, untouched). */
.menu-item-photo {
  aspect-ratio: 4/3; border-radius: var(--radius-sm); overflow: hidden;
  margin-bottom: var(--space-xs); background: var(--linen);
  position: relative;
}
.menu-item-photo img {
  position: absolute; top: 0; left: 50%; height: 100%;
  width: calc(100% * var(--photo-zoom, 1));
  max-width: none;
  object-fit: cover;
  object-position: center var(--photo-vpos, 50%);
  transform: translateX(-50%);
}
.menu-item-price { font-family: var(--font-sans); font-weight: 500; color: var(--color-accent-warm); white-space: nowrap; font-size: 0.98rem; }
.menu-item p { color: var(--color-text-soft); font-size: 0.96rem; margin-top: 0.3em; }
.menu-item .serves { display: block; font-size: 0.8rem; color: var(--olive-deep); margin-top: 0.3em; }

.menu-note { margin-top: var(--space-md); }
.menu-note h3 { margin-bottom: 0.35em; }
.menu-note p { color: var(--color-text-soft); }

/* Dessert's heading is deliberately smaller than a full category
   title — it's a featured single item, not another chapter. */
.dessert-heading { font-size: clamp(1.4rem, 2.2vw, 1.8rem); }

/* A true footnote — quiet, small, no label of its own. */
.dessert-footnote {
  margin-top: var(--space-sm);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--color-text-soft);
  max-width: 48ch;
}

/* -----------------------------------------------------------
   16. "Tonight's table" list (home menu teaser)
----------------------------------------------------------- */
.today-list { border-top: 1px solid var(--color-line); }
.today-list li { display: flex; justify-content: space-between; gap: var(--space-md); padding-block: var(--space-sm); border-bottom: 1px solid var(--color-line); }
.today-list h3 { font-size: 1.2rem; margin-bottom: 0.15em; }
.today-list p { color: var(--color-text-soft); font-size: 0.92rem; }
.today-list .item-price { font-family: var(--font-sans); font-weight: 500; color: var(--color-accent-warm); white-space: nowrap; }

/* -----------------------------------------------------------
   17. Forms
----------------------------------------------------------- */
.form-grid { display: grid; gap: var(--space-md); }
@media (min-width: 720px) { .form-grid.two-col { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.5em; }
.field.full { grid-column: 1/-1; }
.field label { font-size: 0.85rem; font-weight: 500; }
.field .hint { font-size: 0.79rem; color: var(--color-text-soft); }
.field input, .field select, .field textarea {
  padding: 0.8em 1em; border: 1px solid var(--color-line); border-radius: var(--radius-sm);
  background: var(--soft-white); transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--color-accent-warm); box-shadow: 0 0 0 3px rgba(68, 108, 166, 0.10);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-status { margin-top: var(--space-sm); font-size: 0.94rem; }
.form-status[data-state="success"] { color: var(--olive-deep); }
.form-status[data-state="error"] { color: var(--dusty-blue-deep); }

/* -----------------------------------------------------------
   18. Footer
----------------------------------------------------------- */
.site-footer { background: var(--espresso); color: var(--cream); padding-block: var(--space-xl) var(--space-md); }
.site-footer a:hover { color: var(--butter); }
.footer-grid { display: grid; gap: var(--space-lg); margin-bottom: var(--space-lg); }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-logo {
  display: inline-flex; align-items: center; gap: 0.32em;
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  font-size: 1.4rem; margin-bottom: var(--space-sm); color: var(--cream);
}
.footer-tagline { color: rgba(251,246,236,0.7); max-width: 32ch; }
.footer-col h4 { color: var(--butter); font-size: 0.78rem; margin-bottom: var(--space-sm); }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75em; }
.footer-col a { color: rgba(251,246,236,0.82); font-size: 0.88rem; }
.footer-col a.footer-link-icon { display: inline-flex; align-items: center; gap: 0.55em; }
.footer-col a.footer-link-icon svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-col p { color: rgba(251,246,236,0.82); font-size: 0.94rem; }
.footer-social { display: flex; gap: var(--space-sm); margin-top: var(--space-sm); }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(251,246,236,0.3); border-radius: 50%; display: grid; place-items: center; transition: background var(--transition), border-color var(--transition); }
.footer-social a:hover { background: rgba(251,246,236,0.1); border-color: var(--cream); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom { border-top: 1px solid rgba(251,246,236,0.16); padding-top: var(--space-md); display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-sm); font-size: 0.82rem; color: rgba(251,246,236,0.58); }

/* -----------------------------------------------------------
   19. Quiet closing note
----------------------------------------------------------- */
.closing-note {
  text-align: center;
  padding-block: var(--space-xl);
  border-top: 1px solid var(--color-line);
}
.closing-note .btn { margin-top: var(--space-md); }
.closing-note h2 { margin-bottom: 0.3em; }

/* -----------------------------------------------------------
   20. Page hero (interior pages)
----------------------------------------------------------- */
.page-hero { padding-top: var(--space-xl); padding-bottom: var(--space-lg); }
.page-hero .lede { margin-top: var(--space-sm); }
.breadcrumb { font-size: 0.82rem; color: var(--color-text-soft); margin-bottom: var(--space-sm); }
.breadcrumb a:hover { color: var(--color-accent-warm); }

/* -----------------------------------------------------------
   21. Reveal-on-scroll — subtle, not showy
----------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 800ms cubic-bezier(0.22,1,0.36,1), transform 800ms cubic-bezier(0.22,1,0.36,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }

/* -----------------------------------------------------------
   22. Utility
----------------------------------------------------------- */
.text-center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }
.mt-md { margin-top: var(--space-md); }
.mt-sm { margin-top: var(--space-sm); }
.mx-auto { margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.placeholder-note { font-size: 0.84rem; color: var(--color-text-soft); border: 1px dashed var(--color-line); padding: var(--space-sm); margin-top: var(--space-sm); }

/* 404 */
.error-page { min-height: 55vh; display: grid; place-items: center; text-align: center; padding-block: var(--space-2xl); }
.error-page h1 { font-size: clamp(2.8rem, 8vw, 5rem); }
