/* Roma Italian Restaurant — design system */
:root {
  /* Brand */
  --wine: #6B1D2A;
  --wine-deep: #3D0F18;
  --wine-soft: #8B3A48;
  --cream: #F7F1E8;
  --ivory: #FBF7F0;
  --gold: #C4A35A;
  --gold-soft: #D4B97A;
  --olive: #5C6B4A;
  --charcoal: #1A1614;
  --ink: #2C2622;
  --stone: #8A7F72;
  --stone-light: #C4B8A8;
  --line: rgba(26, 22, 20, 0.1);
  --line-gold: rgba(196, 163, 90, 0.35);

  /* Semantic surfaces & text (themeable) */
  --bg: #FBF7F0;
  --bg-elevated: #F7F1E8;
  --surface: #ffffff;
  --text: #2C2622;
  --heading: #3D0F18;
  --muted: #8A7F72;
  --header-bg: rgba(251, 247, 240, 0.92);
  --header-bg-mobile: rgba(251, 247, 240, 0.98);
  --input-bg: #FBF7F0;
  --input-bg-focus: #ffffff;
  --focus-ring: rgba(107, 29, 42, 0.12);
  --card-shadow: 0 8px 30px rgba(26, 22, 20, 0.06);
  --success-bg: rgba(92, 107, 74, 0.12);
  --success-border: rgba(92, 107, 74, 0.25);
  --error-bg: rgba(107, 29, 42, 0.08);
  --error-border: rgba(107, 29, 42, 0.2);

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", system-ui, -apple-system, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 0.85rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6.5rem;

  --nav-h: 4.5rem;
  --radius: 4px;
  --shadow-soft: 0 18px 50px rgba(26, 22, 20, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
  --max-narrow: 720px;
}

/* Dark theme — warm espresso, keeps wine & gold soul */
html[data-theme="dark"] {
  color-scheme: dark;

  --wine: #B04A5A;
  --wine-deep: #2A0A10;
  --wine-soft: #C46A78;
  --cream: #F7F1E8;
  --ivory: #14110F;
  --gold: #D4B97A;
  --gold-soft: #E0C98E;
  --olive: #9AAD84;
  --charcoal: #0C0A09;
  --ink: #E8E0D5;
  --stone: #A89B8C;
  --stone-light: #6B6258;
  --line: rgba(247, 241, 232, 0.12);
  --line-gold: rgba(196, 163, 90, 0.4);

  --bg: #14110F;
  --bg-elevated: #1C1714;
  --surface: #241E1A;
  --text: #E8E0D5;
  --heading: #F7F1E8;
  --muted: #A89B8C;
  --header-bg: rgba(20, 17, 15, 0.92);
  --header-bg-mobile: rgba(20, 17, 15, 0.98);
  --input-bg: #1A1614;
  --input-bg-focus: #2A2320;
  --focus-ring: rgba(196, 163, 90, 0.22);
  --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.45);
  --success-bg: rgba(154, 173, 132, 0.14);
  --success-border: rgba(154, 173, 132, 0.3);
  --error-bg: rgba(176, 74, 90, 0.14);
  --error-border: rgba(176, 74, 90, 0.3);
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease);
}

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

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

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--heading);
  margin: 0;
}

h1 { font-size: clamp(2.8rem, 6vw, 4.6rem); letter-spacing: 0.01em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }

p { margin: 0 0 1rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 36rem;
}

/* ——— Layout ——— */
.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 2.5rem, var(--max-narrow));
  margin-inline: auto;
}

.section {
  padding: var(--space-2xl) 0;
}

.section--cream { background: var(--bg-elevated); }
.section--wine {
  background: linear-gradient(160deg, #3D0F18 0%, #4a1520 55%, #6B1D2A 100%);
  color: var(--cream);
}
.section--wine h2,
.section--wine h3 { color: var(--cream); }
.section--wine .eyebrow { color: var(--gold-soft); }
.section--wine .lead { color: rgba(247, 241, 232, 0.72); }

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}
.section-head p { color: var(--muted); margin: 0.85rem auto 0; }

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.7rem 1.65rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--wine);
  color: var(--cream);
  box-shadow: 0 10px 28px rgba(107, 29, 42, 0.28);
}
.btn--primary:hover {
  background: var(--wine-deep);
  box-shadow: 0 14px 34px rgba(61, 15, 24, 0.32);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247, 241, 232, 0.45);
}
.btn--ghost:hover {
  background: rgba(247, 241, 232, 0.1);
  border-color: var(--cream);
}

.btn--outline {
  background: transparent;
  color: var(--wine);
  border-color: var(--wine);
}
.btn--outline:hover {
  background: var(--wine);
  color: var(--cream);
}

.btn--gold {
  background: var(--gold);
  color: #3D0F18;
}
.btn--gold:hover {
  background: var(--gold-soft);
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* ——— Header / Nav ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.site-header.is-scrolled,
.site-header.is-solid {
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.site-header.is-scrolled .logo,
.site-header.is-solid .logo,
.site-header.is-scrolled .nav-links a:not(.btn),
.site-header.is-solid .nav-links a:not(.btn),
.site-header.is-scrolled .nav-toggle,
.site-header.is-solid .nav-toggle,
.site-header.is-scrolled .theme-toggle,
.site-header.is-solid .theme-toggle {
  color: var(--heading);
}

.site-header.is-scrolled .nav-links a:not(.btn):hover,
.site-header.is-solid .nav-links a:not(.btn):hover,
.site-header.is-scrolled .nav-links a:not(.btn)[aria-current="page"],
.site-header.is-solid .nav-links a:not(.btn)[aria-current="page"] {
  color: var(--wine);
}

/* Keep nav CTA button text readable on solid/scrolled headers */
.site-header .nav-links a.btn {
  color: inherit;
}
.site-header .nav-links a.btn--primary {
  color: var(--cream);
}
.site-header .nav-links a.btn--gold {
  color: #3D0F18;
}
.site-header .nav-links a.btn::after {
  display: none;
}

.site-header.is-scrolled .nav-toggle span,
.site-header.is-solid .nav-toggle span {
  background: var(--heading);
}

.nav-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
}

/* Theme toggle — always visible, elegant sun/moon */
.theme-toggle {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s var(--ease), background-color 0.3s var(--ease);
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: rgba(247, 241, 232, 0.1);
}

.site-header.is-scrolled .theme-toggle:hover,
.site-header.is-solid .theme-toggle:hover {
  background: rgba(26, 22, 20, 0.06);
}

html[data-theme="dark"] .site-header.is-scrolled .theme-toggle:hover,
html[data-theme="dark"] .site-header.is-solid .theme-toggle:hover {
  background: rgba(247, 241, 232, 0.08);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.theme-toggle svg {
  width: 1.15rem;
  height: 1.15rem;
  position: absolute;
  transition: opacity 0.3s var(--ease), transform 0.35s var(--ease);
}

.theme-toggle .icon-moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.theme-toggle .icon-sun {
  opacity: 0;
  transform: rotate(-45deg) scale(0.6);
}

html[data-theme="dark"] .theme-toggle .icon-moon {
  opacity: 0;
  transform: rotate(45deg) scale(0.6);
}

html[data-theme="dark"] .theme-toggle .icon-sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  line-height: 1;
  transition: color 0.3s var(--ease);
}
.logo small {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 0.35rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 721px) {
  .logo { order: 1; }
  .nav-links {
    order: 2;
    margin-left: auto;
  }
  .nav-tools {
    order: 3;
    margin-left: 0;
  }
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 241, 232, 0.88);
  transition: color 0.25s var(--ease);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold-soft);
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  color: var(--cream);
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  margin: 0.3rem auto;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.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);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: end start;
  color: var(--cream);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 22, 20, 0.45) 0%, rgba(26, 22, 20, 0.15) 35%, rgba(26, 22, 20, 0.72) 100%),
    linear-gradient(90deg, rgba(61, 15, 24, 0.45) 0%, transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: calc(var(--nav-h) + 2rem) 0 clamp(5.5rem, 12vh, 8rem);
  max-width: 40rem;
}

.hero__content h1 {
  color: var(--cream);
  margin-bottom: 1.1rem;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

.hero__content .lead {
  color: rgba(247, 241, 232, 0.88);
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__scroll {
  position: absolute;
  bottom: 1.15rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(247, 241, 232, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  pointer-events: none;
}

.hero__scroll::after {
  content: "";
  width: 1px;
  height: 2.2rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 4.5rem) 0 4rem;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(107, 29, 42, 0.12), transparent 50%),
    var(--bg-elevated);
  text-align: center;
  overflow: hidden;
  transition: background-color 0.35s var(--ease);
}

html[data-theme="dark"] .page-hero {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(176, 74, 90, 0.14), transparent 50%),
    var(--bg-elevated);
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(12rem, 40%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}

.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p {
  color: var(--muted);
  max-width: 32rem;
  margin: 0 auto;
}

/* ——— Signature dishes ——— */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.dish-card {
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background-color 0.35s var(--ease);
}

.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.dish-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-elevated);
}

.dish-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.dish-card:hover .dish-card__media img {
  transform: scale(1.04);
}

.dish-card__body {
  padding: 1.35rem 1.4rem 1.5rem;
}

.dish-card__body h3 {
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}

.dish-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.dish-card__price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--wine);
  font-weight: 600;
  white-space: nowrap;
}

.dish-card__body p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* ——— Story split ——— */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.split--reverse .split__media { order: 2; }
.split--reverse .split__copy { order: 1; }

.split__media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.split__media--portrait img {
  aspect-ratio: 3 / 4;
}

.split__copy .eyebrow { margin-bottom: 0.7rem; }
.split__copy h2 { margin-bottom: 1rem; }
.split__copy p { color: var(--muted); }
.split__copy .btn { margin-top: 0.75rem; }

/* ——— Ambiance band ——— */
.ambiance {
  position: relative;
  min-height: 62vh;
  display: grid;
  place-items: center;
  color: var(--cream);
  overflow: hidden;
}

.ambiance__media {
  position: absolute;
  inset: 0;
}

.ambiance__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ambiance__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 22, 20, 0.55), rgba(61, 15, 24, 0.7));
}

.ambiance__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 1.5rem;
  max-width: 36rem;
}

.ambiance__content h2 {
  color: var(--cream);
  margin-bottom: 1rem;
}

.ambiance__content p {
  color: rgba(247, 241, 232, 0.82);
  margin-bottom: 1.75rem;
}

/* ——— Hours strip ——— */
.hours-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.hours-card {
  background: rgba(247, 241, 232, 0.06);
  border: 1px solid rgba(247, 241, 232, 0.12);
  border-radius: 14px;
  padding: 1.75rem 1.85rem;
  backdrop-filter: blur(8px);
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(247, 241, 232, 0.1);
  font-size: 0.98rem;
}

.hours-list li:last-child { border-bottom: 0; }

.hours-list .day { color: rgba(247, 241, 232, 0.7); }
.hours-list .time {
  font-weight: 400;
  color: var(--cream);
  text-align: right;
}

.contact-mini h3 {
  margin: 0 0 0.85rem;
  font-size: 1.55rem;
}

.contact-mini p {
  margin: 0 0 0.45rem;
  color: rgba(247, 241, 232, 0.78);
}

.contact-mini a:not(.btn) {
  color: var(--gold-soft);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
}
.contact-mini a:not(.btn):hover { border-bottom-color: var(--gold-soft); }

.contact-mini .btn--ghost {
  color: var(--cream);
  border: 1px solid rgba(247, 241, 232, 0.45);
}
.contact-mini .btn--ghost:hover {
  color: var(--cream);
  background: rgba(247, 241, 232, 0.1);
  border-color: var(--cream);
}

/* ——— Menu page ——— */
.menu-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: start;
}

.menu-nav {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.menu-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.55rem 0.75rem;
  border-left: 2px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.menu-nav a:hover,
.menu-nav a.is-active {
  color: var(--wine);
  border-left-color: var(--gold);
  background: rgba(196, 163, 90, 0.08);
}

.menu-section {
  scroll-margin-top: calc(var(--nav-h) + 1.5rem);
  margin-bottom: 3.5rem;
}

.menu-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.menu-section__head h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
}

.menu-section__head span {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1.5rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.menu-item:last-child { border-bottom: 0; }

.menu-item__name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 500;
  color: var(--heading);
  line-height: 1.25;
}

.menu-item__price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--wine);
  white-space: nowrap;
}

.menu-item__desc {
  grid-column: 1 / -1;
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
  max-width: 40rem;
}

.menu-item__tag {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
}

.menu-note {
  margin-top: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--bg-elevated);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.menu-featured {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
  margin: 0 0 3.5rem;
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.menu-featured__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.menu-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-featured__copy {
  padding: 1.5rem 2rem 1.5rem 0.5rem;
}

.menu-featured__copy h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.menu-featured__copy p {
  color: var(--muted);
  margin-bottom: 0.75rem;
}

/* ——— About ——— */
.timeline {
  position: relative;
  margin: 2.5rem 0 0;
  padding-left: 1.5rem;
  border-left: 1px solid var(--line-gold);
}

.timeline__item {
  position: relative;
  padding: 0 0 2rem 1.25rem;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -1.7rem;
  top: 0.35rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--bg);
}

.timeline__year {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.timeline__item h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.timeline__item p {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}

.value-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 1.6rem 1.4rem;
  box-shadow: var(--card-shadow);
  border-top: 3px solid var(--gold);
}

.value-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

/* ——— Contact / Form ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.info-panel {
  background: #3D0F18;
  color: var(--cream);
  border-radius: 16px;
  padding: 2rem 1.85rem;
  box-shadow: var(--shadow-soft);
}

.info-panel h2 {
  color: var(--cream);
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
}

.info-panel > p {
  color: rgba(247, 241, 232, 0.7);
  margin-bottom: 1.75rem;
}

.info-block {
  margin-bottom: 1.4rem;
}

.info-block h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.4rem;
}

.info-block p,
.info-block a {
  color: rgba(247, 241, 232, 0.9);
  margin: 0;
  line-height: 1.55;
}

.info-block a:hover { color: var(--gold-soft); }

.form-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 2rem 1.85rem;
  box-shadow: var(--card-shadow);
}

.form-card h2 {
  font-size: 1.9rem;
  margin-bottom: 0.35rem;
}

.form-card > p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--input-bg);
  border-radius: 8px;
  padding: 0.8rem 0.95rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
  outline: none;
  color: var(--text);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--wine-soft);
  box-shadow: 0 0 0 3px var(--focus-ring);
  background: var(--input-bg-focus);
}

.field textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.form-actions {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.form-status {
  display: none;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.45;
}

.form-status.is-visible { display: block; }

.form-status--success {
  background: var(--success-bg);
  color: var(--olive);
  border: 1px solid var(--success-border);
}

.form-status--error {
  background: var(--error-bg);
  color: var(--wine);
  border: 1px solid var(--error-border);
}

/* ——— Footer ——— */
.site-footer {
  background: var(--charcoal);
  color: rgba(247, 241, 232, 0.72);
  padding: 3.5rem 0 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo {
  color: var(--cream);
  margin-bottom: 0.85rem;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 18rem;
  margin: 0;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li { margin-bottom: 0.5rem; }

.footer-col a {
  font-size: 0.95rem;
  transition: color 0.25s var(--ease);
}

.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(247, 241, 232, 0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(247, 241, 232, 0.45);
}

/* ——— Reveal animations ——— */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__scroll::after { animation: none; }
  .dish-card,
  .dish-card__media img,
  .btn { transition: none; }
}

/* ——— Responsive ——— */
@media (max-width: 960px) {
  .dish-grid { grid-template-columns: 1fr 1fr; }
  .split,
  .split--reverse .split__media,
  .split--reverse .split__copy {
    grid-template-columns: 1fr;
  }
  .split--reverse .split__media,
  .split--reverse .split__copy { order: unset; }
  .hours-grid,
  .contact-grid,
  .menu-layout,
  .menu-featured {
    grid-template-columns: 1fr;
  }
  .menu-nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
  }
  .menu-nav a {
    border-left: 0;
    border-bottom: 2px solid transparent;
    padding: 0.45rem 0.7rem;
  }
  .menu-nav a:hover,
  .menu-nav a.is-active {
    border-left-color: transparent;
    border-bottom-color: var(--gold);
  }
  .menu-featured__copy { padding: 0 1.5rem 1.5rem; }
  .values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --nav-h: 4rem; }

  .nav-toggle { display: block; }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    background: var(--header-bg-mobile);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 16px 40px rgba(26, 22, 20, 0.12);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.35s var(--ease), background-color 0.35s var(--ease);
  }

  .nav-links.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a:not(.btn) {
    color: var(--heading) !important;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.85rem;
  }

  .nav-links a::after { display: none; }

  .nav-links .nav-cta {
    margin: 1rem 0 0;
  }

  .nav-links .nav-cta .btn {
    width: 100%;
  }

  .nav-links a.btn--primary {
    color: var(--cream) !important;
  }

  .nav-links a.btn--gold {
    color: #3D0F18 !important;
  }

  .dish-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .hero__content { max-width: 100%; }
  .section { padding: 4.25rem 0; }
}

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

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
