/* ============================================================
   Barchetta di carta — mobile-first styles
   Palette:
     --wine     rgb(94, 0, 6)     deep wine, primary text
     --crimson  rgb(155, 15, 6)   crimson, CTA accent
     --tomato   rgb(213, 62, 15)  tomato, highlight
     --cream    rgb(238, 217, 185) cream, page background
   ============================================================ */

:root {
  --wine: rgb(94, 0, 6);
  --wine-soft: rgba(94, 0, 6, 0.78);
  --wine-ghost: rgba(94, 0, 6, 0.14);
  --wine-line: rgba(94, 0, 6, 0.22);
  --crimson: rgb(155, 15, 6);
  --tomato: rgb(213, 62, 15);
  --cream: rgb(238, 217, 185);
  --cream-warm: rgb(244, 228, 202);
  --cream-deep: rgb(228, 203, 168);

  --font-serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --maxw: 560px;
  --gutter: clamp(20px, 6vw, 32px);
  --header-h: 64px;
  --sticky-h: 64px;
  --radius: 4px;

  --t-fast: 180ms;
  --t-med: 360ms;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--cream);
  color: var(--wine);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom));
}
body.intro-active { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   INTRO OVERLAY
   ============================================================ */
.intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--cream);
  color: var(--wine);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 5vw, 28px);
  /* v3: longer hold for the letterpress reveal so the brand mark gets to breathe */
  animation: introFadeOut 800ms var(--ease) 6000ms forwards;
}
.intro.skip { animation: introFadeOut 320ms var(--ease) forwards; }
@keyframes introFadeOut {
  to { opacity: 0; visibility: hidden; }
}

/* Subtle paper-warm gradient backdrop for the letterpress feel */
.intro-letterpress {
  background:
    radial-gradient(ellipse at center, var(--cream-warm) 0%, var(--cream) 55%, var(--cream-deep) 120%);
}

.intro-skip {
  position: absolute;
  top: calc(env(safe-area-inset-top) + 16px);
  right: 18px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wine-soft);
  padding: 8px 12px;
  border: 1px solid var(--wine-line);
  border-radius: 999px;
  transition: background var(--t-fast) var(--ease), color var(--t-fast);
  opacity: 0;
  animation: lpFadeIn 600ms var(--ease) 700ms forwards;
}
.intro-skip:hover, .intro-skip:focus-visible {
  background: var(--wine);
  color: var(--cream);
  outline: none;
}

/* ============================================================
   v3 LETTERPRESS INTRO
   Choreography (total ≈ 4.6s):
     0.0 – 0.5s   top hairline draws from center
     0.4 – 2.6s   paper-boat outline is drawn as one ink stroke
     2.4 – 3.5s   title characters typeset in (staggered)
     3.4 – 3.8s   ornament + tagline fade in
     3.6 – 4.1s   bottom hairline draws from center
     4.5 – 5.3s   overlay fades out (handled above)
   ============================================================ */

.intro-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  width: min(86vw, 420px);
  padding: 28px 0;
}

@keyframes lpFadeIn   { to { opacity: 1; } }
@keyframes lpRiseIn   { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes lpRuleGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes lpDraw     { to   { stroke-dashoffset: 0; } }

/* Hairline rules above + below — grow from the center outward */
.lp-rule {
  display: block;
  width: clamp(140px, 60%, 280px);
  height: 1px;
  background: var(--wine);
  opacity: 0.55;
  transform: scaleX(0);
  transform-origin: center;
}
.lp-rule-top    { animation: lpRuleGrow 700ms cubic-bezier(0.65,0,0.35,1) 200ms forwards; }
.lp-rule-bottom { animation: lpRuleGrow 700ms cubic-bezier(0.65,0,0.35,1) 3700ms forwards; }

/* Minimalist paper-boat mark — one continuous ink stroke */
.lp-boat {
  width: clamp(72px, 18vw, 110px);
  height: auto;
  color: var(--wine);
}
.lp-boat-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: lpDraw 2200ms cubic-bezier(0.7, 0, 0.3, 1) 400ms forwards;
}

/* Title — letter-by-letter typeset reveal */
.lp-title {
  margin: 4px 0 0;
  font-family: var(--font-serif);
  font-weight: 500;
  text-align: center;
  font-size: clamp(2.4rem, 11vw, 3.6rem);
  line-height: 0.92;
  letter-spacing: 0.005em;
  color: var(--wine);
}
.lp-line { display: block; }
.lp-line-2 {
  margin-top: 4px;
  font-style: italic;
  font-weight: 400;
  font-size: 0.74em;
  color: var(--crimson);
  letter-spacing: 0.04em;
}
.lp-title .ch {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  animation: lpRiseIn 600ms cubic-bezier(0.2, 0.7, 0.2, 1) calc(2300ms + var(--i, 0) * 55ms) forwards;
}
.lp-title .ch-gap {
  width: 0.28em; /* preserved space between "di" and "carta" */
  animation: none;
  opacity: 1;
}

/* Tiny ornament under the title */
.lp-ornament {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--tomato);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  animation:
    lpFadeIn   400ms var(--ease) 3400ms forwards,
    lpRuleGrow 600ms cubic-bezier(0.65,0,0.35,1) 3400ms forwards;
}

.lp-tagline {
  margin: 0;
  /* Constrain to stage width so wrapped lines still center under the title */
  max-width: min(86vw, 400px);
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  /* Compensate for the trailing letter-spacing on the right so the
     visual block centers optically rather than just metrically. */
  padding-left: 0.26em;
  text-align: center;
  text-transform: uppercase;
  color: var(--wine-soft);
  opacity: 0;
  animation: lpRiseIn 700ms var(--ease) 3550ms forwards;
}

/* Reduced motion — show everything immediately and fade out faster */
@media (prefers-reduced-motion: reduce) {
  .lp-rule, .lp-ornament { transform: scaleX(1); opacity: 0.55; animation: none; }
  .lp-boat-line { stroke-dashoffset: 0; animation: none; }
  .lp-title .ch { opacity: 1; transform: none; animation: none; }
  .lp-tagline, .intro-skip { opacity: 1; animation: none; }
  .intro { animation: introFadeOut 350ms ease 1400ms forwards; }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  padding: 0 var(--gutter);
  padding-top: env(safe-area-inset-top);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  background: rgba(238, 217, 185, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med) var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--wine-line); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--wine);
  min-width: 0;
}
.brand-icon {
  width: 28px;
  height: 22px;
  flex: 0 0 auto;
}
.brand-icon polygon { fill: currentColor; }
.brand-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1;
  display: inline-flex;
  flex-direction: column;
  letter-spacing: 0.01em;
}
.brand-text em {
  font-style: italic;
  font-size: 0.72em;
  color: var(--crimson);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.reserve-pill {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--wine);
  padding: 9px 16px;
  border: 1px solid var(--wine);
  border-radius: 999px;
  transition: background var(--t-fast), color var(--t-fast);
}
.reserve-pill:hover, .reserve-pill:focus-visible {
  background: var(--wine);
  color: var(--cream);
  outline: none;
}

.menu-toggle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 6px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--wine);
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast);
  transform-origin: center;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ============================================================
   SIDE NAV
   ============================================================ */
.side-nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(94, 0, 6, 0.42);
  z-index: 60;
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}
.side-nav-scrim.is-open { opacity: 1; }
.side-nav-scrim[hidden] { display: block !important; pointer-events: none; opacity: 0; }
.side-nav-scrim:not([hidden]) { pointer-events: auto; }

.side-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(82vw, 360px);
  background: var(--wine);
  color: var(--cream);
  padding: calc(env(safe-area-inset-top) + 28px) 28px 28px;
  z-index: 70;
  transform: translateX(100%);
  transition: transform var(--t-med) var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -24px 0 40px rgba(0, 0, 0, 0.18);
}
.side-nav.is-open { transform: translateX(0); }

.side-nav-close {
  position: absolute;
  top: calc(env(safe-area-inset-top) + 14px);
  right: 14px;
  width: 40px;
  height: 40px;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--cream);
  opacity: 0.85;
}
.side-nav-close:hover { opacity: 1; }

.side-nav ul {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.side-nav li a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(238, 217, 185, 0.16);
  transition: color var(--t-fast);
}
.side-nav li a:hover { color: var(--cream-warm); }

.side-nav-foot {
  margin-top: auto;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  opacity: 0.75;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: env(safe-area-inset-bottom);
}
.side-nav-foot .side-nav-city { margin-top: 12px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 32px var(--gutter);
  text-align: center;
  background:
    radial-gradient(ellipse at top, var(--cream-warm), var(--cream) 70%);
  overflow: hidden;
  /* Fill the visible viewport on first load so the menu never peeks above
     the fold on any phone size. Uses svh (small viewport height — the
     "worst case" with full browser chrome visible) to avoid layout shift
     when the URL bar shows/hides. Falls back to vh on older browsers. */
  min-height: calc(100vh  - var(--header-h) - var(--sticky-h));
  min-height: calc(100svh - var(--header-h) - var(--sticky-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(20px, 5vh, 40px);
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  margin: 0 0 22px;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--wine-soft);
}
.hero-title {
  margin: 0 0 40px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 13vw, 4.4rem);
  line-height: 0.92;
  letter-spacing: 0.005em;
  color: var(--wine);
}
.hero-title span { display: block; }
.hero-title em {
  font-style: italic;
  font-weight: 400;
  font-size: 0.78em;
  color: var(--crimson);
  letter-spacing: 0.03em;
}
.hero-sub {
  max-width: 34ch;
  margin: 0 auto 32px;
  font-size: 1rem;
  color: var(--wine-soft);
  line-height: 1.6;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  padding: 14px 22px;
  border: 1px solid var(--wine);
  border-radius: 999px;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.hero-cta:hover, .hero-cta:focus-visible {
  background: var(--wine);
  color: var(--cream);
  outline: none;
  transform: translateY(-1px);
}

.hero-boat {
  width: clamp(140px, 38vw, 180px);
  margin: 0 auto;
  color: var(--wine);
  animation: heroBoatBob 6s ease-in-out infinite;
}
.hero-boat polygon { fill: currentColor; }
.hero-boat .hero-boat-back { fill: var(--crimson); opacity: 0.85; }
.hero-boat .hero-wave,
.hero-boat .hero-wave-2 { fill: none; stroke: var(--wine); }
.hero-boat .hero-wave { stroke-width: 1.2; opacity: 0.55; }
.hero-boat .hero-wave-2 { stroke-width: 1; opacity: 0.3; }
@keyframes heroBoatBob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-4px) rotate(1deg); }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 72px var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.section-head {
  text-align: center;
  margin-bottom: 40px;
}
.section-eyebrow {
  margin: 0 0 14px;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tomato);
  font-weight: 500;
}
.section-head h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 8vw, 2.8rem);
  line-height: 1.05;
  color: var(--wine);
}
.section-head h2 em {
  font-style: italic;
  color: var(--crimson);
  font-weight: 400;
}
.section-note {
  margin: 14px auto 0;
  max-width: 32ch;
  font-size: 0.9rem;
  color: var(--wine-soft);
}

.prose {
  max-width: 38ch;
  margin: 0 auto;
  text-align: center;
}
.prose p {
  margin: 0 0 16px;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--wine-soft);
}
.prose strong { color: var(--wine); font-weight: 600; }

/* About-section prose: longer body copy reads better left-aligned at wider measure */
.prose-about {
  max-width: 56ch;
  text-align: left;
}
.prose-about p { margin: 0 0 20px; }
.prose-about p:last-child { margin-bottom: 0; }

.text-link {
  display: block;
  text-align: center;
  margin-top: 32px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson);
  font-weight: 500;
  transition: color var(--t-fast);
}
.text-link:hover, .text-link:focus-visible { color: var(--tomato); outline: none; }

/* ============================================================
   MENU — accordion (collapsed by default, tap title to expand)
   ============================================================ */
.section-menu { padding-bottom: 24px; }
.menu-root {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--wine-line);
}
.menu-section { border-bottom: 1px solid var(--wine-line); }

.menu-section-head {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 22px 4px;
  text-align: left;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background var(--t-fast);
}
.menu-section-head:hover,
.menu-section-head:focus-visible {
  background: rgba(213, 62, 15, 0.06);
  outline: none;
}

.menu-section-num {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--tomato);
  font-feature-settings: "tnum" 1;
  font-weight: 500;
  width: 28px;
}

.menu-section-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
}
.menu-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 6.5vw, 1.8rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--wine);
}
.menu-section-sub {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine-soft);
  font-style: italic;
  font-weight: 400;
}

/* Chevron — two crossing lines that rotate into a "×" when open */
.menu-section-chev {
  width: 22px;
  height: 22px;
  position: relative;
  flex: 0 0 auto;
  transition: transform var(--t-med) var(--ease);
}
.menu-section-chev span {
  position: absolute;
  top: 50%; left: 50%;
  width: 18px;
  height: 1.5px;
  background: var(--wine);
  transform-origin: center;
  transition: transform var(--t-med) var(--ease), background var(--t-fast);
}
.menu-section-chev span:nth-child(1) { transform: translate(-50%, -50%); }
.menu-section-chev span:nth-child(2) { transform: translate(-50%, -50%) rotate(90deg); }

.menu-section.is-open .menu-section-chev span { background: var(--tomato); }
.menu-section.is-open .menu-section-chev span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.menu-section.is-open .menu-section-chev span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

/* Collapsible body using grid-template-rows (0fr → 1fr) */
.menu-section-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 420ms var(--ease);
}
.menu-section-body-inner {
  overflow: hidden;
  min-height: 0;
}
.menu-section.is-open > .menu-section-body { grid-template-rows: 1fr; }

.menu-section-body-inner .menu-list,
.menu-section-body-inner .menu-empty {
  /* fade the contents in slightly after the height begins to expand */
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 320ms var(--ease) 80ms, transform 320ms var(--ease) 80ms;
}
.menu-section.is-open .menu-section-body-inner .menu-list,
.menu-section.is-open .menu-section-body-inner .menu-empty {
  opacity: 1;
  transform: translateY(0);
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 4px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: left;
}
.menu-item-name {
  margin: 0 0 4px;
  font-size: 1rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: var(--wine);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.menu-item-title {
  /* Plain inline content so chips flow with the dish-name text and only
     wrap together with the last word when there isn't room — they no
     longer get dropped to a new line by themselves. */
  min-width: 0;
}
.menu-item-name .price {
  font-weight: 400;
  color: var(--tomato);
  letter-spacing: 0.04em;
  white-space: nowrap;
  font-feature-settings: "tnum" 1;
}

/* Dietary marker chips — inline so they ride along with the name text */
.menu-tags {
  display: inline;
  white-space: nowrap;
  margin-left: 4px;
}
.menu-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-left: 3px;
  vertical-align: middle;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0;
  border-radius: 50%;
  border: 1px solid currentColor;
  line-height: 1;
  font-family: var(--font-sans);
  /* Nudge optical centering up a hair so the chip rides on the cap-height line */
  position: relative;
  top: -1px;
}
.menu-tag:first-child { margin-left: 0; }
.menu-tag-L { color: var(--wine); }
.menu-tag-G { color: var(--crimson); }
.menu-tag-V { color: var(--tomato); background: rgba(213, 62, 15, 0.08); }

.menu-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 18px;
  margin: 0 auto 32px;
  font-size: 0.78rem;
  color: var(--wine-soft);
}
.menu-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.menu-item-desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--wine-soft);
}
.menu-empty {
  margin: 0;
  padding: 4px 0 24px;
  font-style: italic;
  color: var(--wine-soft);
  font-size: 0.92rem;
}

/* Fallback for browsers without grid-row animation support */
@supports not (grid-template-rows: 0fr) {
  .menu-section-body { display: block; max-height: 0; overflow: hidden; transition: max-height 420ms var(--ease); }
  .menu-section.is-open > .menu-section-body { max-height: 4000px; }
}

@media (prefers-reduced-motion: reduce) {
  .menu-section-body,
  .menu-section-chev,
  .menu-section-chev span,
  .menu-section-body-inner .menu-list,
  .menu-section-body-inner .menu-empty { transition: none !important; }
}

/* Section dividers: alternating subtle backgrounds */
.section-mol { background: var(--cream-warm); border-radius: 0; max-width: 100%; padding-left: var(--gutter); padding-right: var(--gutter); }
.section-mol > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section-about { padding-top: 88px; }
.section-contacts { padding-bottom: 56px; }

/* ============================================================
   CONTACTS
   ============================================================ */
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.contact-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--wine-line);
  align-items: baseline;
}
.contact-list li:last-child { border-bottom: 0; }
.contact-label {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tomato);
  font-weight: 500;
}
.contact-value {
  font-size: 1rem;
  color: var(--wine);
  transition: color var(--t-fast);
}
a.contact-value:hover { color: var(--crimson); text-decoration: underline; text-underline-offset: 4px; }

/* ============================================================
   RESERVE FORM
   ============================================================ */
.section-reserve {
  background: var(--wine);
  color: var(--cream);
  max-width: 100%;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section-reserve > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section-reserve .section-eyebrow { color: var(--cream-deep); }
.section-reserve .section-head h2 { color: var(--cream); }
.section-reserve .section-head h2 em { color: var(--tomato); }
.section-reserve .section-note { color: rgba(238, 217, 185, 0.78); }

.reserve-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field-full { grid-column: 1 / -1; }
.field-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-deep);
  font-weight: 500;
}
.field-label em { text-transform: none; letter-spacing: 0.02em; font-style: italic; opacity: 0.7; }
.field input,
.field textarea,
.field select {
  font: inherit;
  color: var(--cream);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(238, 217, 185, 0.36);
  padding: 8px 0 10px;
  border-radius: 0;
  outline: none;
  transition: border-color var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
  font-size: 1rem;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-bottom-color: var(--tomato); }
.field input::placeholder,
.field textarea::placeholder { color: rgba(238, 217, 185, 0.42); }
.field textarea { resize: vertical; min-height: 80px; line-height: 1.5; }

/* date / time inputs */
.field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(91%) sepia(11%) saturate(456%) hue-rotate(348deg) brightness(99%) contrast(94%);
  opacity: 0.7;
  cursor: pointer;
}

/* select: dropdown-arrow chevron in cream */
.field select {
  cursor: pointer;
  padding-right: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23eed9b9' stroke-width='1.4' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 12px 8px;
}
.field select option { color: var(--wine); background: var(--cream); }
.field select:invalid { color: rgba(238, 217, 185, 0.5); }

.btn-primary {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--tomato);
  color: var(--cream);
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background var(--t-fast), transform var(--t-fast);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--crimson);
  outline: none;
  transform: translateY(-1px);
}

.reserve-fallback {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(238, 217, 185, 0.7);
  margin: 4px 0 0;
}
.reserve-fallback a {
  color: var(--cream);
  border-bottom: 1px solid rgba(238, 217, 185, 0.35);
  padding-bottom: 1px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  text-align: center;
  padding: 56px var(--gutter) 32px;
  font-size: 0.88rem;
  color: var(--wine-soft);
}
.site-footer .brand-icon {
  width: 32px; height: 26px;
  margin: 0 auto 16px;
  color: var(--wine);
}
.site-footer p { margin: 4px 0; }
.site-footer .footer-quote {
  font-family: var(--font-serif);
  font-style: italic;
  margin-top: 12px;
  color: var(--crimson);
}

/* ============================================================
   STICKY CTA (bottom banner, like the reference)
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: var(--tomato);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 20px calc(18px + env(safe-area-inset-bottom));
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  transition: background var(--t-fast), transform var(--t-med) var(--ease);
  box-shadow: 0 -10px 30px rgba(94, 0, 6, 0.12);
}
.sticky-cta:hover, .sticky-cta:focus-visible { background: var(--crimson); outline: none; }
.sticky-cta-arrow { transition: transform var(--t-fast); }
.sticky-cta:hover .sticky-cta-arrow { transform: translateX(4px); }
.sticky-cta.is-hidden { transform: translateY(120%); }

/* ============================================================
   BIGGER SCREENS — small adjustments only (mobile-first site)
   ============================================================ */
@media (min-width: 640px) {
  :root { --maxw: 620px; }
  .hero { padding: 80px var(--gutter) 96px; }
  .section { padding: 96px var(--gutter); }
  .menu-root { gap: 80px; }
}

@media (min-width: 960px) {
  :root { --maxw: 680px; --gutter: 40px; }
  .reserve-pill { font-size: 0.84rem; }
  .hero-title { font-size: clamp(3rem, 6vw, 5rem); }
}

/* ============================================================
   Utilities
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
