/* ============================================
   Tacos El Arca — Logo palette + cinematic modules
   ============================================ */

:root {
  --bg-dark: #1A1A20;
  --black: #0D0D12;
  --navy: #102040;
  --sage: #A0D0C0;
  --sage-light: #B0E0D0;
  --sage-dim: #7AA898;
  --rose: #905060;
  --rose-light: #B06080;
  --rose-deep: #603040;
  --cream: #EAE7E2;
  --muted: #8A8A92;
  --surface: #1E1E24;
  --surface-2: #232328;
  --border: rgba(160, 208, 192, 0.12);
  --font-display: "Clash Display", sans-serif;
  --font-body: "General Sans", sans-serif;
  --header-h: 72px;
  --sticky-cta-h: 56px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(16, 32, 64, 0.45), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(96, 48, 64, 0.18), transparent 50%);
}

/* Fixed backgrounds break position:fixed in Chrome mobile */
@media (min-width: 700px) {
  body {
    background-attachment: fixed;
  }
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.sage { color: var(--sage); }
.muted { color: var(--muted); }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.85rem;
}

.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-head {
  margin-bottom: 2rem;
}

/* Bilingual */
body.lang-es .t-en { display: none !important; }
body.lang-en .t-es { display: none !important; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-rose {
  background: var(--rose);
  color: var(--cream);
}

.btn-rose:hover {
  background: var(--rose-light);
}

.btn-sage {
  background: var(--sage);
  color: var(--black);
}

.btn-sage:hover {
  background: var(--sage-light);
}

.btn-outline {
  border: 1px solid rgba(160, 208, 192, 0.35);
  color: var(--cream);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--sage);
  color: var(--sage);
}

/* ========== NAV ========== */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(26, 26, 32, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(234, 231, 226, 0.06);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(13, 13, 18, 0.92);
  border-bottom-color: rgba(160, 208, 192, 0.14);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.nav {
  width: min(1200px, calc(100% - 1.5rem));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.nav-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(160, 208, 192, 0.25);
}

.nav-brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--sage);
  letter-spacing: -0.01em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--cream);
  padding: 0.35rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 44px;
  padding: 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.lang-option {
  color: var(--muted);
  padding: 0.45rem 0.35rem;
  min-width: 32px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.lang-option.active {
  color: var(--sage);
}

.lang-sep {
  color: rgba(138, 138, 146, 0.5);
}

.nav-phone {
  display: none;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--rose);
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.25s;
}

.nav-phone:hover {
  background: var(--rose-light);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(13, 13, 18, 0.72);
}

.nav-overlay[hidden] {
  display: none;
}

@media (max-width: 899px) {
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 95;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
    background: var(--bg-dark);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    font-weight: 600;
  }
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }

  .nav-phone {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  place-items: end center;
  overflow: hidden;
  padding: calc(var(--header-h) + 2rem) 1.25rem calc(5rem + var(--sticky-cta-h));
}

@media (min-width: 768px) {
  .hero {
    place-items: center;
    padding: calc(var(--header-h) + 2rem) 1.5rem calc(4.5rem + var(--sticky-cta-h));
  }
}

.hero-media {
  position: absolute;
  inset: 0;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(26, 26, 32, 0.94) 0%,
      rgba(26, 26, 32, 0.62) 38%,
      rgba(26, 26, 32, 0.28) 62%,
      rgba(26, 26, 32, 0.45) 100%
    ),
    radial-gradient(ellipse 90% 55% at 50% 100%, rgba(13, 13, 18, 0.55), transparent 70%);
}

.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160, 208, 192, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
  will-change: left, top;
}

.hero:hover .hero-glow,
.hero.has-glow .hero-glow {
  opacity: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.9rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 9vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05em;
}

@media (min-width: 640px) {
  .hero-title {
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.28em;
    white-space: nowrap;
  }
}

.hero-title-line {
  display: block;
}

.hero-tagline {
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  color: rgba(234, 231, 226, 0.92);
  margin-bottom: 1.6rem;
  max-width: 28ch;
}

.hero-cta {
  font-size: 1rem;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: calc(1.4rem + var(--sticky-cta-h));
  z-index: 2;
  transform: translateX(-50%);
  color: var(--sage);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  animation: chevron-pulse 2.2s ease-in-out infinite;
}

@keyframes chevron-pulse {
  0%, 100% { opacity: 0.45; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

/* ========== ABOUT ========== */
.about {
  padding: 5.5rem 0 4.5rem;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(16, 32, 64, 0.55), transparent 60%),
    var(--bg-dark);
}

.about-layout {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.75rem;
}

.about-figure {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(160, 208, 192, 0.28);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.about-figure img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.about-story {
  margin-top: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--cream);
  max-width: 52ch;
}

.spot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(160, 208, 192, 0.18);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(160, 208, 192, 0.14);
}

.spot-card {
  background: var(--surface);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.spot-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 160px at var(--mx, 50%) var(--my, 50%),
    rgba(160, 208, 192, 0.14),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.spot-card:hover::before {
  opacity: 1;
}

.spot-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(160, 208, 192, 0.18);
  margin-bottom: 0.85rem;
  line-height: 1;
}

.spot-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--cream);
}

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

@media (min-width: 700px) {
  .about-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 3rem;
  }

  .spot-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========== MENU ========== */
.menu {
  padding: 4.5rem 0 5rem;
  background: var(--bg-dark);
}

.taco-tuesday {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  border-radius: 12px;
  padding: 1.2rem 1.35rem;
  margin-bottom: 1.5rem;
  text-align: center;
  box-shadow:
    inset 0 0 0 1px rgba(234, 231, 226, 0.14),
    0 10px 28px rgba(96, 48, 64, 0.35);
  transform: rotate(-0.4deg);
}

.taco-tuesday-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: var(--cream);
  letter-spacing: -0.01em;
}

.taco-tuesday-deal {
  margin-top: 0.2rem;
  font-weight: 600;
  color: var(--sage);
  font-size: 1rem;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accordion-panel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 64px;
  text-align: left;
  transition: height 0.55s var(--ease), flex 0.55s var(--ease);
  min-height: 64px;
}

.accordion-panel.active {
  height: 360px;
}

.panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}

.accordion-panel.active .panel-bg {
  transform: scale(1.05);
}

.panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 32, 0.92) 0%,
    rgba(26, 26, 32, 0.45) 45%,
    rgba(26, 26, 32, 0.2) 100%
  );
}

.panel-vert {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 1.15rem;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
  transition: opacity 0.3s;
}

.accordion-panel.active .panel-vert {
  opacity: 0;
}

.panel-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 1.5rem 1.35rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease) 0.08s, transform 0.4s var(--ease) 0.08s;
  pointer-events: none;
}

.accordion-panel.active .panel-body {
  opacity: 1;
  transform: translateY(0);
}

.panel-body h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.panel-price {
  color: var(--sage);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.panel-price small {
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--sage-dim);
}

.panel-note {
  color: rgba(234, 231, 226, 0.78);
  font-size: 0.92rem;
  margin-bottom: 0.65rem;
  max-width: 36ch;
}

.panel-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.85rem;
}

.panel-items li {
  font-size: 0.88rem;
  color: var(--cream);
  position: relative;
  padding-left: 0.7rem;
}

.panel-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sage-dim);
}

.menu-faq {
  margin-top: 2rem;
  padding: 1.35rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  max-width: 640px;
}

.menu-faq h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
  color: var(--sage);
}

.menu-faq p {
  color: var(--muted);
  font-size: 0.98rem;
}

@media (min-width: 800px) {
  .accordion {
    flex-direction: row;
    height: min(70vh, 560px);
    min-height: 420px;
  }

  .accordion-panel {
    flex: 1;
    height: auto !important;
    min-height: 0;
  }

  .accordion-panel.active {
    flex: 4.5;
    height: auto !important;
  }

  .panel-vert {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    top: auto;
    bottom: 1.6rem;
    left: 1rem;
    transform: none;
  }

  .panel-body {
    padding: 1.75rem 1.5rem;
  }
}

/* ========== DRINKS ========== */
.drinks {
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(160, 208, 192, 0.08), transparent 55%),
    var(--bg-dark);
}

.drinks-head {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: 2.25rem;
}

.drinks-price {
  margin-top: 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  color: var(--cream);
  letter-spacing: -0.01em;
}

.drinks-desc {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

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

.drinks-photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(160, 208, 192, 0.18);
  background: var(--surface);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  aspect-ratio: 3 / 4;
}

.drinks-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease);
}

.drinks-photo:hover img {
  transform: scale(1.03);
}

@media (min-width: 760px) {
  .drinks-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

/* ========== GALLERY ========== */
.gallery {
  padding: 4.5rem 0 5rem;
  background: var(--bg-dark);
}

.masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 90px;
  gap: 0.4rem;
}

.masonry-item {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  height: 100%;
  min-height: 0;
}

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}

.masonry-item:hover img {
  transform: scale(1.02);
}

.masonry-item {
  grid-row: span 3;
}

.masonry-item.wide {
  grid-column: span 2;
  grid-row: span 3;
}

@media (min-width: 700px) {
  .masonry {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 110px;
    gap: 0.5rem;
  }

  .masonry-item {
    grid-row: span 3;
  }

  .masonry-item.wide {
    grid-column: span 2;
    grid-row: span 3;
  }
}

/* ========== REVIEWS ========== */
.reviews {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 40%, rgba(160, 208, 192, 0.1), transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 80%, rgba(144, 80, 96, 0.12), transparent 55%),
    var(--bg-dark);
}

.reviews-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.reviews-card {
  max-width: 420px;
  margin-inline: auto;
  text-align: center;
  padding: 2.75rem 1.75rem 2.25rem;
  background: var(--surface);
  border: 1px solid rgba(160, 208, 192, 0.2);
  border-radius: 20px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(234, 231, 226, 0.04);
}

.reviews-stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
  color: var(--sage);
}

.reviews-stars .star-partial {
  color: var(--sage-dim);
  opacity: 0.65;
}

.reviews-rating {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 10vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.reviews-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 1.75rem;
}

.reviews-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

.btn-sage-outline {
  border-color: rgba(160, 208, 192, 0.45);
  color: var(--sage);
}

.btn-sage-outline:hover {
  border-color: var(--sage);
  color: var(--sage-light);
  background: rgba(160, 208, 192, 0.06);
}

@media (min-width: 480px) {
  .reviews-card {
    padding: 3rem 2.5rem 2.5rem;
  }

  .reviews-actions {
    flex-direction: column;
    align-items: center;
  }

  .reviews-actions .btn {
    min-width: 260px;
  }
}

/* ========== CATERING ========== */
.catering {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(144, 80, 96, 0.22), transparent 55%),
    #2A1A20;
}

.catering-layout {
  display: grid;
  gap: 2.5rem;
}

.catering-photos {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
}

.catering-photos img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.catering-photos img:first-child {
  grid-row: span 2;
  min-height: 280px;
  object-fit: cover;
  object-position: center top;
}

.catering-copy p {
  margin: 1.1rem 0 1.4rem;
  max-width: 42ch;
  color: var(--cream);
  font-size: 1.05rem;
  line-height: 1.7;
}

.catering-copy .display {
  max-width: 14ch;
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--cream);
  font-weight: 500;
}

.check-list svg {
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

@media (min-width: 860px) {
  .catering-layout {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 3.5rem;
  }
}

@media (max-width: 520px) {
  .catering-photos {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .catering-photos img:first-child {
    grid-row: auto;
    min-height: 320px;
    aspect-ratio: 3 / 4;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.2);
  }

  .catering-photos img {
    min-height: 180px;
    aspect-ratio: 4 / 3;
  }
}

/* ========== VISIT ========== */
.visit {
  padding: 5rem 0;
  background: var(--surface);
}

.visit-layout {
  display: grid;
  gap: 2rem;
}

.visit-info {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 560px) and (max-width: 899px) {
  .visit-info {
    grid-template-columns: 1fr 1fr;
  }

  .visit-info .visit-block:last-child {
    grid-column: 1 / -1;
  }
}

.visit-block h3 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
  color: var(--sage);
}

.visit-block p,
.visit-block a {
  color: var(--cream);
}

.visit-block a:hover {
  color: var(--sage);
}

.hours-list {
  display: grid;
  gap: 0.55rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(234, 231, 226, 0.08);
  font-size: 0.95rem;
}

.hours-list .closed {
  color: var(--muted);
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.pay-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
}

.pay-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--cream);
  font-size: 0.92rem;
}

.pay-list svg {
  color: var(--sage-dim);
}

.visit-map {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 320px;
  background: var(--black);
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.map-directions-btn {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  background: var(--sage);
  color: var(--black);
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  transition: background 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
}

.map-directions-btn:hover {
  background: var(--sage-light);
}

.map-directions-btn:active {
  transform: translateX(-50%) scale(0.98);
}

/* Directions modal */
.directions-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.directions-modal[hidden] {
  display: none;
}

.directions-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 18, 0.78);
}

.directions-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  background: var(--bg-dark);
  border: 1px solid rgba(160, 208, 192, 0.2);
  border-radius: 18px;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.directions-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--muted);
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}

.directions-modal-close:hover {
  color: var(--cream);
  background: rgba(234, 231, 226, 0.06);
}

.directions-modal-dialog h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.25rem;
  padding-right: 2rem;
}

.directions-modal-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.35rem;
}

.directions-options {
  display: grid;
  gap: 0.75rem;
}

.directions-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 56px;
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid rgba(160, 208, 192, 0.18);
  color: var(--cream);
  font-weight: 600;
  font-size: 1rem;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.directions-option:hover {
  border-color: var(--sage);
  color: var(--sage);
  background: rgba(160, 208, 192, 0.06);
}

.directions-option svg {
  color: var(--sage);
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .directions-options {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .visit-layout {
    grid-template-columns: 1fr 1.05fr;
    gap: 2.5rem;
    align-items: stretch;
  }

  .visit-map iframe {
    min-height: 100%;
  }
}

/* ========== STICKY CTA BAR ========== */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  align-items: stretch;
  width: 100%;
  height: auto;
  min-height: var(--sticky-cta-h);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  /* Force compositing layer — stabilizes fixed pos vs Chrome dynamic toolbar */
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.sticky-cta-btn {
  flex: 1 1 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--sticky-cta-h);
  height: var(--sticky-cta-h);
  padding: 0 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 0;
  white-space: nowrap;
}

.sticky-cta-btn svg {
  flex-shrink: 0;
}

.sticky-cta-call {
  background: var(--rose);
  color: var(--cream);
}

.sticky-cta-call:hover {
  background: var(--rose-light);
}

.sticky-cta-directions {
  background: var(--sage);
  color: var(--bg-dark);
}

.sticky-cta-directions:hover {
  background: var(--sage-light);
}

.sticky-cta-long {
  display: none;
}

@media (min-width: 700px) {
  .footer {
    padding-bottom: calc(2.5rem + var(--sticky-cta-h) + 16px + env(safe-area-inset-bottom, 0px));
  }

  .sticky-cta {
    left: 50%;
    right: auto;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    transform: translate3d(-50%, 0, 0);
    width: min(600px, calc(100% - 2rem));
    max-width: 600px;
    height: var(--sticky-cta-h);
    min-height: var(--sticky-cta-h);
    padding-bottom: 0;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  }

  .sticky-cta-btn {
    font-size: 1rem;
    gap: 0.6rem;
  }

  .sticky-cta-call {
    border-radius: 999px 0 0 999px;
  }

  .sticky-cta-directions {
    border-radius: 0 999px 999px 0;
  }

  .sticky-cta-short {
    display: none;
  }

  .sticky-cta-long {
    display: inline;
  }

  .hero-scroll {
    bottom: calc(1.4rem + var(--sticky-cta-h) + 16px);
  }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(160, 208, 192, 0.22);
  padding: 3rem 0 calc(2.5rem + var(--sticky-cta-h) + env(safe-area-inset-bottom, 0px));
}

.footer-inner {
  display: grid;
  gap: 1.75rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(160, 208, 192, 0.25);
}

.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-tag {
  font-size: 0.9rem;
}

.footer-hunger {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem 0.85rem;
}

.footer-hunger a {
  font-weight: 700;
}

.footer-hunger a:hover {
  color: var(--sage-light);
}

.footer-bottom {
  display: grid;
  gap: 0.4rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(234, 231, 226, 0.08);
}

.footer-meta {
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-powered {
  font-size: 0.72rem;
  color: var(--muted);
}

.footer-powered a {
  color: rgba(138, 138, 146, 0.9);
  transition: color 0.2s;
}

.footer-powered a:hover {
  color: var(--sage);
}

.sticky-cta-hidden {
  transform: translateY(120%) !important;
}

@media (min-width: 700px) {
  .sticky-cta-hidden {
    transform: translate3d(-50%, 120%, 0) !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-scroll {
    animation: none !important;
  }

  .accordion-panel,
  .panel-bg,
  .panel-body,
  .panel-vert,
  .masonry-item img,
  .drinks-photo img,
  .hero-glow,
  .site-header,
  .sticky-cta,
  .sticky-cta-btn {
    transition: none !important;
  }

  .hero-glow {
    display: none !important;
  }
}
