/* ============================================================
   PASTA VINO — styles.css
   Aesthetic: Warm Italian trattoria — editorial serif + artisan warmth
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&display=swap');

/* ── CSS Variables ── */
:root {
  --cream:    #F8F3EC;
  --cream2:   #F0E9DE;
  --charcoal: #1E1B18;
  --vino:     #7B1F2E;
  --vino-dk:  #5A1520;
  --vino-lt:  #A33344;
  --olive:    #5C6B3A;
  --gold:     #C9A84C;
  --sand:     #D4C4A8;
  --white:    #FFFFFF;
  --text:     #2C2420;
  --muted:    #7A6B5E;
  --border:   rgba(124,81,50,0.15);

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Lato', sans-serif;

  --radius: 4px;
  --shadow: 0 4px 24px rgba(30,20,15,0.12);
  --shadow-lg: 0 12px 48px rgba(30,20,15,0.18);
  --transition: 0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.section-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vino);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--serif);
  font-style: italic;
}

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--vino);
  color: var(--white);
  border-color: var(--vino);
}
.btn-primary:hover {
  background: var(--vino-dk);
  border-color: var(--vino-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(123,31,46,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--vino);
  border-color: var(--vino);
}
.btn-outline:hover {
  background: var(--vino);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--muted);
  border-color: var(--sand);
  padding: 0.6rem 1.25rem;
}
.btn-ghost:hover {
  color: var(--vino);
  border-color: var(--vino);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(30,27,24,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: padding var(--transition), box-shadow var(--transition);
  padding: 0.85rem 0;
}
.site-header.scrolled {
  padding: 0.85rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Stabilize header across pages: fixed inner height and consistent nav link padding
   - ensures active/visited states don't change layout (only color/underline allowed)
*/

.header-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
}
.header-logo img {
  height: 60px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  transform-origin: left center;
  transition: transform var(--transition);
}
.site-header.scrolled .header-logo img { transform: scale(0.88); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.header-nav a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.header-nav a:hover { color: var(--white); }
.header-nav a:hover::after { width: 100%; }

.header-ctas {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-ctas .btn { padding: 0.55rem 1.2rem; font-size: 0.75rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 1px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-sunset-sign.png');
  background-size: cover;
  background-position: center 60%;
    /* Subtle motion (Ken Burns / parallax drift) */
  transform: scale(1.08) translate3d(0,0,0);
  animation: heroKenBurns 18s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroKenBurns {
  0%   { transform: scale(1.08) translate3d(0,0,0); }
  100% { transform: scale(1.14) translate3d(-2%,-2%,0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none !important; transform: none !important; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(20,10,5,0.65) 0%,
    rgba(30,15,10,0.75) 50%,
    rgba(15,5,0,0.88) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 7rem 0 4rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s ease forwards;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s ease forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s ease forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s ease forwards;
}
.hero-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s ease forwards;
}
.hero-info a {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition);
}
.hero-info a:hover { color: var(--gold); }
.hero-info .sep { color: rgba(255,255,255,0.25); font-size: 0.7rem; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
}
.hero-scroll svg { width: 18px; height: 18px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 1rem 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.trust-pill:last-child { border-right: none; }
.trust-pill svg { color: var(--gold); flex-shrink: 0; }
.trust-pill .star { color: var(--gold); font-size: 0.8rem; }

/* ============================================================
   ABOUT / STORY
   ============================================================ */
.section-about {
  padding: 6rem 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-image-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--vino);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-image-badge strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}
.about-image-badge span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}
.about-divider {
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.75rem 0 2rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.feature-icon {
  width: 36px; height: 36px;
  background: rgba(123,31,46,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--vino);
}
.feature-text strong { font-size: 0.9rem; display: block; }
.feature-text span { font-size: 0.82rem; color: var(--muted); }

/* ============================================================
   SIGNATURE DISHES
   ============================================================ */
.section-dishes {
  padding: 6rem 0;
  background: var(--cream2);
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header p {
  color: var(--muted);
  max-width: 480px;
  margin: 0.75rem auto 0;
}
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.dish-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(30,20,15,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.dish-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.dish-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dish-card:hover .dish-img img { transform: scale(1.07); }
.dish-body {
  padding: 1.25rem 1.5rem;
}
.dish-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.375rem;
}
.dish-body p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}
.section-dishes .btn-wrap {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================================
   PATIO
   ============================================================ */
.section-patio {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}
.patio-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/patio-deck-day.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.patio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,10,5,0.82) 0%, rgba(20,10,5,0.45) 100%);
}
.patio-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}
.patio-content h2 { color: var(--white); margin-bottom: 1rem; }
.patio-content p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.8;
}

/* ============================================================
   GALLERY
   ============================================================ */
.section-gallery {
  padding: 5rem 0;
  background: var(--charcoal);
}
.section-gallery .section-label,
.section-gallery .section-title { color: var(--white); }
.section-gallery .section-label { color: var(--gold); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(123,31,46,0);
  transition: background var(--transition);
}
.gallery-item:hover::after { background: rgba(123,31,46,0.2); }

/* ============================================================
   REVIEWS
   ============================================================ */
.section-reviews {
  padding: 6rem 0;
  background: var(--cream);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(30,20,15,0.06);
  border-top: 3px solid var(--vino);
  position: relative;
}
.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.875rem;
}
.review-text {
  color: var(--muted);
  font-style: italic;
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.review-author {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}
.reviews-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

/* ============================================================
   LOCATION
   ============================================================ */
.section-location {
  padding: 6rem 0;
  background: var(--cream2);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.location-map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
}
.location-info h2 { margin-bottom: 1.5rem; }
.info-block {
  margin-bottom: 1.75rem;
}
.info-block h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vino);
  margin-bottom: 0.5rem;
}
.info-block p, .info-block a {
  color: var(--muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.info-block a:hover { color: var(--vino); }
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table tr td {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.hours-table tr td:first-child {
  font-weight: 700;
  color: var(--text);
  width: 40%;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img {
  height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.4rem;
}
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  font-weight: 700;
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   MOBILE STICKY BAR
   ============================================================ */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 950;
  background: var(--charcoal);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 0.5rem 0.25rem;
  padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
}
.mobile-sticky-inner {
  display: flex;
  gap: 0.25rem;
}
.mob-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.6rem 0.25rem;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  background: transparent;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.mob-btn svg { width: 18px; height: 18px; }
.mob-btn:hover, .mob-btn:active { color: var(--white); background: rgba(255,255,255,0.08); }
.mob-btn.primary { background: var(--vino); color: var(--white); }
.mob-btn.primary:hover { background: var(--vino-lt); }

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-hero {
  background: var(--charcoal);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.menu-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(123,31,46,0.25) 0%, transparent 70%);
}
.menu-hero h1 { color: var(--white); position: relative; }
.menu-hero p {
  color: rgba(255,255,255,0.6);
  position: relative;
  margin-top: 0.75rem;
}

.menu-nav-chips {
  background: var(--cream2);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 74px;
  z-index: 100;
}
.chips-inner {
  display: flex;
  gap: 0.625rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}
.chips-inner::-webkit-scrollbar { display: none; }
.chip {
  flex-shrink: 0;
  padding: 0.45rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.chip:hover, .chip.active {
  background: var(--vino);
  color: var(--white);
  border-color: var(--vino);
}

/* Center the sticky menu jump nav on desktop without breaking horizontal scroll on mobile */
@media (min-width: 768px) {
  .menu-nav-chips .container {
    display: flex;
    justify-content: center;
  }

  .chips-inner {
    justify-content: center;
    width: fit-content;
    max-width: 100%;
  }
}

.menu-body {
  padding: 4rem 0 6rem;
  background: var(--cream);
}

.menu-section {
  margin-bottom: 4.5rem;
}
.menu-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.menu-section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.menu-section-note {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 3rem;
}
.menu-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.1rem 1rem;
}
.menu-item-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  grid-column: 1;
  grid-row: 1;
}
.menu-item-price {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--vino);
  grid-column: 2;
  grid-row: 1;
  text-align: right;
  white-space: nowrap;
}
.menu-item-desc {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  grid-column: 1;
  grid-row: 2;
  line-height: 1.5;
}

/* Libations special layout */
.menu-item-wine {
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wine-name { font-size: 0.9rem; color: var(--text); }
.wine-price { font-size: 0.9rem; color: var(--vino); font-weight: 700; white-space: nowrap; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image-badge { right: 0; }
  .dishes-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 640px) {
  .header-nav, .header-ctas { display: none; }
  .nav-toggle { display: flex; }

  /* Full-screen overlay mobile menu (clean, stable behavior) */
  .site-header.nav-open .header-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0; /* top:0; right:0; bottom:0; left:0 */
    width: 100vw;
    height: 100dvh;
    background: var(--charcoal);
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* spacing so content sits below header area visually */
    padding-top: calc(env(safe-area-inset-top, 0px) + 4.5rem); /* ~7rem visual on most devices */
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 6.5rem); /* ~10rem visual */
    gap: 1rem;
    z-index: 9999; /* Must sit above backdrop */
  }
  .site-header.nav-open .header-nav a {
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    width: 100%;
    display: block;
    padding: 0.5rem 0;
  }

  /* CTAs pinned at the bottom inside viewport so they remain clickable */
  .site-header.nav-open .header-ctas {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    right: 0;
    bottom: max(1.25rem, env(safe-area-inset-bottom, 1.25rem));
    padding: 0 1.5rem;
    z-index: 10000;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
  }
  .site-header.nav-open .header-ctas .btn { width: 100%; justify-content: center; }

  .dishes-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .trust-pill { padding: 0.4rem 0.875rem; font-size: 0.68rem; }
  .mobile-sticky { display: block; }
  body { padding-bottom: 76px; }
  .patio-bg { background-attachment: scroll; }

/* === Mobile Responsive Enhancements (auto) === */

/* Header logo sizing (mobile) */
.header-logo img { height: 54px; max-width: 190px; }
/* Typography & spacing */
body { font-size: 15px; }
.container { padding-left: 1.25rem; padding-right: 1.25rem; }

/* HERO */
.hero {
  /* account for bottom mobile sticky bar */
  min-height: calc(100svh - 76px);
  min-height: calc(100dvh - 76px);
  align-items: flex-start;
}
.hero-content {
  padding: calc(env(safe-area-inset-top, 0px) + 5.25rem) 0 2.75rem;
  max-width: 560px;
}
.hero-bg {
  background-position: 70% 55%;
}
.hero-sub { font-size: 0.98rem; margin-bottom: 1.5rem; }
.hero-actions { flex-direction: column; align-items: stretch; gap: 0.75rem; margin-bottom: 1.75rem; }
.hero-actions .btn { width: 100%; justify-content: center; }
.hero-info { flex-wrap: wrap; gap: 0.75rem 1rem; font-size: 0.9rem; }
.hero-info span, .hero-info a { font-size: 0.9rem; }

/* Section paddings */
.section-about,
.section-reviews {
  padding: 3.5rem 0;
}
.section-gallery {
  padding: 3.25rem 0;
}

/* ABOUT */
.about-grid {
  grid-template-columns: 1fr;
  gap: 2rem;
}
.about-image img {
  aspect-ratio: 16/11;
}
.about-card {
  padding: 1.25rem;
}

/* GALLERY */
.gallery-grid {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: none;
  grid-auto-rows: 140px;
  margin-top: 1.75rem;
}

/* REVIEWS */
.reviews-grid {
  margin-top: 2rem;
}
.review-card {
  padding: 1.25rem;
}

/* MENU (menu page + section) */
.menu-hero {
  padding: 6rem 0 3rem;
}
.menu-grid {
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.menu-item {
  gap: 0.1rem 0.75rem;
}

/* FOOTER */
.site-footer {
  padding: 3rem 0 1.75rem;
}
.footer-brand img { height: 52px; width: auto; max-width: 200px; object-fit: contain; }
.footer-brand p { font-size: 0.95rem; }
}

/* Scroll-lock classes: JS will add `nav-locked` to both <html> and <body>
   when menu opens. This prevents background scrolling while allowing the
   overlay itself to scroll. */
html.nav-locked,
body.nav-locked {
  overflow: hidden !important;
}

/* Mobile injected overlay (created by JS) */
#mobileNav,
#mobileNavBackdrop {
  display: none; /* hidden by default; enabled on mobile */
}

@media (max-width: 640px) {
  /* Backdrop that covers the viewport beneath the panel */
  #mobileNavBackdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    will-change: opacity;
  }

  /* Panel that holds mobile nav content */
  #mobileNav {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--charcoal);
    color: rgba(255,255,255,0.95);
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;

    /* CLOSED state (default) */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  #mobileNav .mobile-nav__panel {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    padding: max(1.25rem, env(safe-area-inset-top, 1.25rem)) 1.5rem max(1.5rem, env(safe-area-inset-bottom, 1.5rem));
    box-sizing: border-box;
  }

  /* Close button */
  .mobile-nav__close {
    margin-left: auto;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    padding: 0.5rem;
    cursor: pointer;
  }

  /* Links area: center visually but allow scrolling */
  .mobile-nav__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    align-items: stretch;
  }
  .mobile-nav__links a {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    padding: 0.6rem 0;
    display: block;
  }

  .mobile-nav__ctas {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .mobile-nav__ctas .btn { width: 100%; }

  /* When open, make backdrop visible */
  body.mobile-nav-open #mobileNavBackdrop { opacity: 1; pointer-events: auto; }
  body.mobile-nav-open #mobileNav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}


/* Mobile hero sizing + image framing */
@media (max-width: 640px) {
  .hero {
    /* Keep hero visually full-screen ABOVE the mobile sticky bar */
    min-height: calc(100vh - 76px);
    min-height: calc(100svh - 76px);
    min-height: calc(100dvh - 76px);
    align-items: flex-end;
  }
  .hero-content {
    /* Extra room for fixed header + sticky bar */
    padding:
      calc(env(safe-area-inset-top, 0px) + 5.5rem)
      0
      calc(env(safe-area-inset-bottom, 0px) + 3.25rem + 76px);
  }
  .hero-bg {
    /* Frame the sign better on narrow screens */
    background-position: 70% 55%;

    /* Slightly gentler motion on mobile to avoid over-cropping */
    transform: scale(1.04) translate3d(0,0,0);
    animation: heroKenBurnsMobile 22s ease-in-out infinite alternate;
  }
}

@keyframes heroKenBurnsMobile {
  0%   { transform: scale(1.04) translate3d(0,0,0); }
  100% { transform: scale(1.08) translate3d(-1%,-1%,0); }
}

/* ── Call Button — Header ── */
.btn-call {
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  border-color: rgba(201,168,76,0.45);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.04em;
}
.btn-call:hover {
  background: rgba(201,168,76,0.22);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(201,168,76,0.18);
}
.header-call-btn { font-size: 0.72rem !important; }


/* ============================================================
   SUBPAGE HERO (About / Menu etc.)
   ============================================================ */
.hero.hero--subpage {
  min-height: 70vh;
  min-height: 70svh;
  min-height: 70dvh;
}
.hero.hero--subpage .hero-bg {
  background-position: center 55%;
}
@media (max-width: 680px) {
  .hero.hero--subpage {
    min-height: 78svh;
    min-height: 78dvh;
  }
}
