/* ===============================
   250 Social Bar + Kitchen — Tofino
   =============================== */

/* === Tokens === */
:root {
  --bg:          #0b0b0b;
  --bg-elev:     #141414;
  --bg-accent:   #1a1a1a;
  --text:        #f5f5f5;
  --muted:       #a8a8a8;
  --line:        #2a2a2a;
  --accent:      #e5b769;
  --accent-hover:#d4a253;
  --max:         1200px;
}

/* === Reset === */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html.menu-open, html.menu-open body { overflow: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1em; }

/* === Helpers === */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.muted { color: var(--muted); }
.small { font-size: 0.85rem; }

.eyebrow {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.2rem;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 2px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-primary { background: var(--accent); color: #111; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost   { color: var(--text); border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { border-color: var(--text); }
.btn-block   { display: block; width: 100%; text-align: center; }

/* ===============================
   HEADER
   =============================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,11,11,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1.5rem 1rem;
  min-height: 96px;
  overflow: hidden;
  transition: min-height 0.3s ease, padding 0.3s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease;
}
.brand.is-hidden {
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
}

/* Desktop only: when brand is hidden, collapse the logo row entirely
   so the nav-links row sits flush below the header — no empty band. */
@media (min-width: 861px) {
  .brand {
    max-height: 100px;
    overflow: hidden;
  }
  .site-header:has(.brand.is-hidden) .header-row {
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .site-header:has(.brand.is-hidden) .brand {
    max-height: 0;
  }
  /* Add breathing room above the nav links when the logo row is gone,
     so the "Book a Table" CTA isn't jammed against the top edge. */
  .site-header:has(.brand.is-hidden) .desktop-nav {
    padding-top: 0.85rem;
  }
}
.logo-img {
  height: 70px;
  width: auto;
  display: block;
}

/* Desktop nav row beneath logo */
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 0 1.5rem 1rem;
  border-bottom: 1px solid var(--line);
  transition: padding-top 0.3s ease;
}
.desktop-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.5rem 0;
  transition: color 0.2s;
}
.desktop-nav a:hover { color: var(--text); }

.nav-cta {
  color: var(--accent) !important;
  border: 1px solid var(--accent);
  padding: 0.55rem 1.25rem !important;
  border-radius: 2px;
}
.nav-cta:hover {
  background: var(--accent);
  color: #111 !important;
}

/* Hamburger button (mobile only) */
.menu-btn {
  display: none;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  z-index: 60;
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 4px auto;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.2s;
}
html.menu-open .menu-btn span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
html.menu-open .menu-btn span:nth-child(2) { opacity: 0; }
html.menu-open .menu-btn span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ===============================
   MOBILE DRAWER
   =============================== */
.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 90;
}
html.menu-open .backdrop {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(85vw, 380px);
  height: 100vh;
  background: #0b0b0b;
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
html.menu-open .drawer { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--line);
}
.drawer-title {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.drawer-close {
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
}
.drawer-close:hover { color: var(--accent); }

.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem;
  flex: 1;
}
.drawer-nav a {
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s, padding-left 0.2s;
}
.drawer-nav a:hover { color: var(--accent); padding-left: 0.4rem; }

.drawer-cta {
  margin-top: 1.25rem;
  background: var(--accent);
  color: #111 !important;
  text-align: center;
  border-bottom: none !important;
  border-radius: 2px;
  padding: 1rem 1.25rem !important;
}
.drawer-cta:hover {
  background: var(--accent-hover);
  padding-left: 1.25rem !important;
}

.drawer-foot {
  padding: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}
.drawer-foot p { margin: 0 0 0.4em; }

/* ===============================
   HERO
   =============================== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  /* Scale-on-scroll: transformed by JS as the user scrolls past the hero.
     transform-origin centers the zoom; will-change hints the browser to use
     a compositor layer (GPU) so the transform stays smooth. */
  transform-origin: center center;
  will-change: transform;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  /* Vignette: lighter in the center where the headline sits, heavier
     darkening at the corners. The bg image shows through more around
     the centre, but text stays readable on top. */
  background:
    radial-gradient(
      ellipse at center,
      rgba(0,0,0,0.50) 0%,
      rgba(0,0,0,0.78) 55%,
      rgba(0,0,0,0.95) 100%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 4rem 1.5rem;
}
.hero-logo {
  width: clamp(260px, 38vw, 440px);
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.5));
}
.hero-content .lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===============================
   SECTIONS
   =============================== */
.section { padding: 6rem 0; border-top: 1px solid var(--line); }
.section-dark { background: var(--bg-elev); }
.section-accent {
  background: var(--bg-accent);
  background-image: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
/* === Founders Section === */

/* ===============================
   TESTIMONIALS
   =============================== */

.testimonials .eyebrow.centered {
  margin-bottom: 0.5rem;
}
.testimonials h2.centered {
  text-align: center;
  margin-bottom: 3rem;
}

/* === Testimonial card === */
.testimonial-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.2rem;
  left: 1.25rem;
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
}
.testimonial-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.testimonial-quote {
  color: var(--text);
  font-size: 0.97rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}
.testimonial-author {
  color: var(--muted);
  font-size: 0.85rem;
  font-style: italic;
  margin: 0;
  letter-spacing: 0.05em;
}

/* === 3-column grid === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
  align-items: start;
}

/* === Collapsible quote — clamps to 5 lines until expanded === */
.testimonial-quote.is-collapsible {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.4rem;
}
.testimonial-quote.is-collapsible.is-expanded {
  display: block;
  -webkit-line-clamp: unset;
  margin-bottom: 0.6rem;
}

/* === "Read more" / "Read less" per-card toggle ===
   Hidden by default — JS adds .is-shown only when the quote actually overflows */
.testimonial-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--accent);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.4rem 0;
  margin-bottom: 0.8rem;
  text-align: left;
  align-self: flex-start;
  transition: color 0.2s, gap 0.2s;
  align-items: center;
  gap: 0.35rem;
}
.testimonial-toggle.is-shown {
  display: inline-flex;
}
.testimonial-toggle::after {
  content: '↓';
  font-size: 0.9rem;
  transition: transform 0.2s;
}
.testimonial-toggle.is-expanded::after {
  content: '↑';
}
.testimonial-toggle:hover {
  color: var(--accent-hover);
  gap: 0.55rem;
}

/* === Section-level "View more reviews" toggle — mobile only === */
.testimonials-section-toggle {
  display: none;  /* hidden on desktop, shown on mobile via media query */
  margin: 1.5rem auto 0;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.testimonials-section-toggle:hover {
  background: var(--accent);
  color: #111;
}

/* === CTA block === */
.testimonials-cta {
  text-align: center;
  margin-top: 3rem;
}
.testimonials-cta p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

/* === Responsive === */
@media (max-width: 860px) {
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Mobile section-level collapse:
     hide cards 4+ until "View more reviews" is clicked */
  .testimonials-grid > .testimonial-card:nth-child(n+4) {
    display: none;
  }
  .testimonials-grid.is-expanded > .testimonial-card:nth-child(n+4) {
    display: flex;
  }
  /* Show the section-level toggle button on mobile */
  .testimonials-section-toggle {
    display: block;
  }
}

/* === Founders Section === */

/* Restore image styling for existing About / Happy Hour sections */
.about-image img,
.happy-image img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 4px;
}

/* Shared centered helper */
.centered { text-align: center; }

/* --- Editorial stacked with pull-quote --- */
.founders-editorial {
  text-align: center;
}
.founders-editorial .eyebrow.centered {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 2rem;
}
.founders-editorial-image {
  max-width: 680px;
  margin: 1.5rem auto 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
.founders-editorial-image img {
  width: 100%;
  height: auto;
  display: block;
}
.founders-pullquote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-style: italic;
  line-height: 1.3;
  color: var(--text);
  max-width: 760px;
  margin: 3.5rem auto;
  padding: 0 2rem;
  border: none;
  position: relative;
}
.founders-pullquote::before,
.founders-pullquote::after {
  content: '"';
  font-size: 3rem;
  color: var(--accent);
  font-family: 'Fraunces', serif;
  line-height: 0;
  position: relative;
  top: 0.6rem;
  opacity: 0.7;
}
.founders-pullquote::before { margin-right: 0.4rem; }
.founders-pullquote::after { margin-left: 0.4rem; }
.founders-editorial-text {
  columns: 2;
  column-gap: 3rem;
  column-rule: 1px solid var(--line);
  max-width: 960px;
  margin: 0 auto 2rem;
  text-align: left;
}
.founders-editorial-text p {
  break-inside: avoid;
}
.founders-tagline {
  margin-top: 2rem;
  font-style: italic;
}

/* Responsive: 2-col text collapses to 1 col on small screens */
@media (max-width: 720px) {
  .founders-editorial-text {
    columns: 1;
    column-rule: none;
  }
}

/* === Menu Tabs === */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.menu-tab {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: 2px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.menu-tab:hover { color: var(--text); border-color: var(--muted); }
.menu-tab.is-active {
  background: var(--accent);
  color: #111;
  border-color: var(--accent);
}

/* === Menu Carousel === */
.menu-carousels { position: relative; }

.menu-carousel {
  position: relative;
  display: none;
  /* Reserve horizontal space for arrow buttons so they don't overlap cards. */
  padding: 0 60px;
}
.menu-carousel.is-active { display: block; }

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, calc((100% - 3rem) / 3));
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}
.carousel-track::-webkit-scrollbar { height: 6px; }
.carousel-track::-webkit-scrollbar-track { background: transparent; }
.carousel-track::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.carousel-track::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* === Menu Card with Background Image === */
.menu-card {
  position: relative;
  scroll-snap-align: start;
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--bg-elev);
  background-size: cover;
  background-position: center;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  display: flex;
  align-items: flex-end;
}
.menu-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}

/* Placeholder cards (dishes without a real photo) —
   render as solid near-black cards until a real photo is added. */
.menu-card--placeholder {
  background: #0a0a0a;
}
.menu-card--placeholder .menu-card-overlay {
  display: none;
}
.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.55) 55%,
    rgba(0,0,0,0.88) 100%);
  z-index: 1;
}
.menu-card-body {
  position: relative;
  z-index: 2;
  padding: 1.75rem;
  width: 100%;
}
.menu-card-body h3 { margin-bottom: 0.5rem; color: var(--text); }
.menu-card-body p {
  color: rgba(245,245,245,0.85);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}
.menu-card-body .price {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 600;
}

/* === Carousel Arrows === */
.carousel-btn {
  position: absolute;
  /* Compensate for the 6px scrollbar at the bottom so the arrow centers
     on the card's visual center, not the track's geometric center. */
  top: calc(50% - 3px);
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(11,11,11,0.78);
  border: 1px solid rgba(229,183,105,0.55);  /* subtle gold border */
  color: var(--accent);                       /* gold chevron */
  padding: 0;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}
.carousel-btn svg {
  width: 22px;
  height: 22px;
  display: block;
}
.carousel-btn:hover {
  background: var(--accent);
  color: #111;
  border-color: var(--accent);
  transform: translateY(calc(-50% - 1px));
  box-shadow: 0 8px 24px rgba(229,183,105,0.35);
}
.carousel-btn:active {
  transform: translateY(-50%) scale(0.96);
}
.carousel-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

/* === Menu Extras (Add-ons + Drinks) === */
.menu-extras {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.extras-block h3 {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}
.extras-price {
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-left: 0.4rem;
}
.extras-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.5rem;
}
.extras-list--single { grid-template-columns: 1fr; }
.extras-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.92rem;
}
.extras-list li span:last-child {
  color: var(--accent);
  font-weight: 600;
  font-family: 'Fraunces', serif;
}

/* PDF download CTA below menu */
.menu-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* === Happy Hour List === */
.hh-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.hh-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px dashed var(--line);
}
.hh-list li span:last-child {
  color: var(--accent);
  font-weight: 600;
  font-family: 'Fraunces', serif;
}

/* === Visit & Reserve === */
.visit-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

/* Left column: info cards stacked */
.visit-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.visit-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.25rem 1.4rem;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
a.visit-card:hover {
  border-color: var(--accent);
  transform: translateX(3px);
  background: rgba(229,183,105,0.05);
}
.visit-card-static {
  cursor: default;
}
.visit-card-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(229,183,105,0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.visit-card-icon svg {
  width: 18px;
  height: 18px;
}
.visit-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}
.visit-card-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.visit-card-value {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
}

/* Right column: bigger map */
.visit-map-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.map-embed {
  flex: 1;
  min-height: 360px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  filter: invert(0.9) hue-rotate(180deg) saturate(0.85) contrast(0.95);
}
.btn-directions {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
}

/* Full-width reserve banner */
.reserve-banner {
  margin-top: 4rem;
  background: linear-gradient(135deg, rgba(229,183,105,0.08) 0%, rgba(229,183,105,0.02) 100%);
  border: 1px solid rgba(229,183,105,0.35);
  border-radius: 6px;
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.reserve-banner-text .eyebrow {
  margin-bottom: 0.6rem;
}
.reserve-banner-text h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.3;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.reserve-banner-text .muted {
  margin: 0;
}
.reserve-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.reserve-banner-actions .btn {
  text-align: center;
}

/* ===============================
   FOOTER
   =============================== */
.site-footer {
  background: #050505;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--line);
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.footer-logo {
  height: 70px;
  width: auto;
  margin: 0 auto;
}
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy { margin: 0; }

/* === Social Links === */
.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.social-links a:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.social-links svg {
  flex-shrink: 0;
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 860px) {
  .desktop-nav { display: none; }
  .menu-btn    { display: block; }

  .header-row { padding: 1rem 1.5rem; min-height: 72px; }
  .logo-img   { height: 48px; }

  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .section { padding: 4rem 0; }

  .hero { min-height: 70vh; }
  .footer-logo { height: 56px; }

  /* Visit section: stack on mobile */
  .visit-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .map-embed {
    min-height: 280px;
  }
  .reserve-banner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 2rem 1.5rem;
    text-align: center;
  }

  /* Carousel: show ~2 cards on tablet */
  .carousel-track {
    grid-auto-columns: minmax(260px, calc((100% - 1.5rem) / 2));
  }
  .menu-carousel { padding: 0 52px; }

  /* Stack the add-ons + drinks side-by-side -> single column on tablet */
  .menu-extras { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 520px) {
  .logo-img { height: 38px; }
  .header-row { min-height: 64px; padding: 0.85rem 1.25rem; }

  /* Carousel: show 1 card on phone — tight side padding for buttons */
  .carousel-track {
    grid-auto-columns: 90%;
    gap: 1rem;
  }
  .menu-carousel { padding: 0 44px; }
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  .carousel-btn svg {
    width: 18px;
    height: 18px;
  }
  .menu-tab { padding: 0.6rem 1rem; font-size: 0.72rem; }
  .menu-card { min-height: 300px; }

  /* Single-column add-ons on phone for legibility */
  .extras-list { grid-template-columns: 1fr; }
}
