/*
Theme Name: BoCo Pizza Bar
Theme URI: https://boco.ie
Author: BoCo
Author URI: https://boco.ie
Description: Custom theme for BoCo Wood-Fired Pizza Bar, Dublin. Ria's-inspired design with cream, red, green, burgundy palette.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: boco
Tags: restaurant, pizza, custom-logo, custom-menu, food
*/

/* ============================================
   BO·CO — Ria's-inspired, cheerful & bold
   Cream: #FFFEF2  |  Deep Red: #BF2C1F
   Green: #1B5931  |  Burgundy: #481923
   Terracotta: #c76d49
   ============================================ */

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

:root {
  --cream: #FFFEF2;
  --red: #BF2C1F;
  --green: #1B5931;
  --burgundy: #481923;
  --terracotta: #c76d49;
  --charcoal: #1a1a1a;
  --warm-cream: #F5F0E3;
  --text: #2a2a2a;
  --body-font: 'Space Mono', monospace;
  --display-font: 'Instrument Serif', serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ── BUTTONS ── */
.btn-pill {
  display: inline-block;
  font-family: var(--body-font);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--charcoal);
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-pill:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.btn-pill--red {
  border-color: var(--red);
  color: var(--red);
}

.btn-pill--red:hover {
  background: var(--red);
  color: var(--cream);
}

.btn-pill--green {
  border-color: var(--green);
  color: var(--green);
}

.btn-pill--green:hover {
  background: var(--green);
  color: var(--cream);
}

.btn-pill--filled {
  background: var(--red);
  border-color: var(--red);
  color: var(--cream);
}

.btn-pill--filled:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.btn-pill--cream {
  border-color: var(--cream);
  color: var(--cream);
}

.btn-pill--cream:hover {
  background: var(--cream);
  color: var(--charcoal);
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
  border-bottom: 1.5px solid rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.site-nav.scrolled {
  padding: 10px 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-logo img,
.nav-logo svg {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links li a {
  font-family: var(--body-font);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}

.nav-links li a:hover {
  color: var(--red);
}

.nav-links li.menu-cta a {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--red);
  color: var(--red);
  transition: all 0.25s ease;
}

.nav-links li.menu-cta a:hover {
  background: var(--red);
  color: var(--cream);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ── HERO ── */
.hero {
  margin-top: 68px;
  position: relative;
  height: 85vh;
  min-height: 550px;
  overflow: hidden;
}

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

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.1) saturate(1.15) contrast(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.15) 50%,
    rgba(0,0,0,0.5) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 60px;
  left: 40px;
  right: 40px;
  color: var(--cream);
}

.hero-tagline {
  font-family: var(--body-font);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.9;
}

.hero-title {
  font-family: var(--display-font);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  font-weight: 400;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── MARQUEE ── */
.marquee {
  background: var(--green);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
}

.marquee-text {
  font-family: var(--body-font);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  padding-right: 60px;
  flex-shrink: 0;
}

.marquee-text .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--cream);
  border-radius: 50%;
  margin: 0 24px;
  vertical-align: middle;
  opacity: 0.7;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTIONS ── */
.section {
  padding: 80px 40px;
}

.section--cream {
  background: var(--warm-cream);
}

.section--green {
  background: var(--green);
  color: var(--cream);
}

.section--red {
  background: var(--red);
  color: var(--cream);
}

.section--burgundy {
  background: var(--burgundy);
  color: var(--cream);
}

/* ── INTRO ── */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.intro-text h2 {
  font-family: var(--display-font);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 24px;
}

.intro-text h2 em {
  font-style: italic;
  color: var(--red);
}

.intro-text p {
  font-size: 13px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
  max-width: 480px;
}

.intro-image {
  aspect-ratio: 4/5;
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.03);
}

/* ── MENU HIGHLIGHTS ── */
.menu-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.menu-header h2 {
  font-family: var(--display-font);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 16px;
}

.menu-header p {
  font-size: 13px;
  line-height: 1.8;
  color: #555;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.menu-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}

.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.92) saturate(1.1);
}

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

.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.menu-card-title {
  font-family: var(--display-font);
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 4px;
}

.menu-card-sub {
  font-family: var(--body-font);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.menu-section-cta {
  text-align: center;
}

/* ── QUOTE ── */
.quote-section {
  padding: 80px 40px;
  text-align: center;
}

.quote-mark {
  font-family: var(--display-font);
  font-size: 72px;
  line-height: 1;
  opacity: 0.3;
  margin-bottom: 16px;
}

.quote-text {
  font-family: var(--display-font);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.25;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto 24px;
}

.quote-text em {
  font-style: italic;
}

.quote-attr {
  font-family: var(--body-font);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ── FULL WIDTH IMAGE BREAK ── */
.image-break {
  height: 50vh;
  min-height: 350px;
  overflow: hidden;
}

.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) brightness(1.05);
}

/* ── LOCATIONS ── */
.locations-header {
  text-align: center;
  margin-bottom: 48px;
}

.locations-header h2 {
  font-family: var(--display-font);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.05;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.location-card {
  border: 1.5px solid rgba(0,0,0,0.1);
  padding: 40px;
  position: relative;
  transition: border-color 0.3s;
}

.location-card:hover {
  border-color: var(--red);
}

.location-badge {
  display: inline-block;
  font-family: var(--body-font);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.location-badge--open {
  background: var(--green);
  color: var(--cream);
}

.location-badge--soon {
  background: var(--terracotta);
  color: var(--cream);
}

.location-name {
  font-family: var(--display-font);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 16px;
}

.location-details {
  font-size: 12px;
  line-height: 2;
  color: #666;
  margin-bottom: 24px;
}

.location-details strong {
  color: var(--text);
}

.location-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ── ORDER STRIP ── */
.order-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 60px 40px;
  flex-wrap: wrap;
}

.order-strip h3 {
  font-family: var(--display-font);
  font-size: 36px;
  font-weight: 400;
  color: var(--cream);
}

.order-strip h3 em {
  font-style: italic;
}

/* ── GINGHAM DIVIDER ── */
.gingham-divider {
  height: 8px;
  background-image:
    linear-gradient(45deg, var(--red) 25%, transparent 25%),
    linear-gradient(-45deg, var(--red) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--red) 75%),
    linear-gradient(-45deg, transparent 75%, var(--red) 75%);
  background-size: 8px 8px;
  background-position: 0 0, 0 4px, 4px -4px, -4px 0;
  opacity: 0.15;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--burgundy);
  color: var(--cream);
  padding: 60px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo img,
.footer-logo svg {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--display-font);
  font-size: 18px;
  font-style: italic;
  opacity: 0.7;
}

.footer-col h4 {
  font-family: var(--body-font);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.5;
}

.footer-col p,
.footer-col a {
  font-size: 13px;
  line-height: 2;
  opacity: 0.8;
  display: block;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--terracotta);
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  opacity: 0.5;
}

.footer-social {
  display: flex;
  gap: 20px;
}

/* ── GENERIC PAGE CONTENT ── */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 40px 80px;
}

.page-content h1 {
  font-family: var(--display-font);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 32px;
}

.page-content h2 {
  font-family: var(--display-font);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.1;
  margin: 40px 0 16px;
}

.page-content p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #444;
}

.page-content ul, .page-content ol {
  margin: 0 0 16px 20px;
  font-size: 14px;
  line-height: 1.8;
  color: #444;
}

/* ── 404 ── */
.page-404 {
  text-align: center;
  padding: 160px 40px 120px;
}

.page-404 h1 {
  font-family: var(--display-font);
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 400;
  color: var(--red);
  margin-bottom: 16px;
}

.page-404 p {
  font-size: 16px;
  color: #666;
  margin-bottom: 32px;
}

/* ── HAMBURGER BUTTON ── */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}

/* Desktop inline nav — hidden on mobile, visible on large screens */
.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links-desktop li a {
  font-family: var(--body-font);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}

.nav-links-desktop li a:hover {
  color: var(--red);
}

.nav-links-desktop li.menu-cta a {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--red);
  color: var(--red);
  transition: all 0.25s ease;
}

.nav-links-desktop li.menu-cta a:hover {
  background: var(--red);
  color: var(--cream);
}

/* ── FULLSCREEN MENU OVERLAY ── */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-overlay.active {
  visibility: visible;
  opacity: 1;
}

.menu-overlay-inner {
  display: grid;
  grid-template-columns: 45% 55%;
  height: 100%;
}

.menu-overlay-left {
  background: var(--cream);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-overlay.active .menu-overlay-left {
  transform: translateX(0);
}

.menu-overlay-close {
  position: absolute;
  top: 24px;
  left: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
  padding: 8px;
  transition: color 0.2s;
}

.menu-overlay-close:hover {
  color: var(--red);
}

.menu-overlay-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
}

.menu-overlay-link {
  font-family: var(--display-font);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--charcoal);
  transition: color 0.2s ease;
  line-height: 1.3;
}

.menu-overlay-link:hover {
  color: var(--red);
}

.menu-overlay-footer {
  margin-top: auto;
  padding-top: 40px;
  display: flex;
  gap: 20px;
}

.menu-overlay-footer a {
  font-family: var(--body-font);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  transition: color 0.2s;
}

.menu-overlay-footer a:hover {
  color: var(--red);
}

.menu-overlay-right {
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.6s ease 0.2s;
}

.menu-overlay.active .menu-overlay-right {
  opacity: 1;
}

.menu-overlay-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) brightness(1.05);
}

/* Lock body scroll when overlay is open */
body.menu-open {
  overflow: hidden;
}

/* ── LOCATION PAGE (Ria's-style) ── */
.loc-hero {
  margin-top: 68px;
  background: var(--burgundy);
  color: var(--cream);
}

.loc-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  max-width: 1400px;
  margin: 0 auto;
}

.loc-hero-image {
  padding: 40px;
  display: flex;
  align-items: center;
}

.loc-hero-image img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: cover;
}

.loc-hero-info {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.loc-hero-name {
  font-family: var(--display-font);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  margin-bottom: 24px;
}

.loc-hero-contact {
  margin-bottom: 32px;
}

.loc-hero-contact p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.9;
}

.loc-hero-contact a {
  color: var(--cream);
  opacity: 0.9;
}

.loc-hero-contact a:hover {
  opacity: 1;
}

/* Action links — Ria's uppercase arrow style */
.loc-actions {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.loc-action-link {
  font-family: var(--body-font);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.loc-action-link:hover {
  color: var(--terracotta);
}

.loc-action-link .arrow {
  transition: transform 0.2s;
}

.loc-action-link:hover .arrow {
  transform: translateX(4px);
}

/* ── TABBED MENUS ── */
/* ══════════════════════════════════════════════
   MENU CARD — Canva-matching design v2
   Replace the menu section in style.css
   (from ".loc-menus {" to just before "/* ── FAQ ACCORDION")
   ══════════════════════════════════════════════ */

.loc-menus {
  background: var(--burgundy);
  padding: 40px 40px 80px;
}

.loc-menus-tabs {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
}

.loc-tab {
  font-family: var(--body-font);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.5;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.loc-tab:hover {
  opacity: 0.8;
}

.loc-tab.active {
  opacity: 1;
  border-bottom-color: var(--cream);
}

.loc-menus-content {
  max-width: 820px;
  margin: 0 auto;
}

.loc-tab-panel {
  display: none;
}

.loc-tab-panel.active {
  display: block;
}

/* ── The menu card itself — burgundy border like Canva ── */
.loc-menu-card {
  background: var(--cream);
  padding: 52px 48px 40px;
  color: var(--text);
  border: 3px solid var(--burgundy);
  position: relative;
}

/* BO·CO watermark top-right like Canva */
.loc-menu-card::before {
  content: 'BO·CO';
  position: absolute;
  top: 36px;
  right: 44px;
  font-family: var(--body-font);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--terracotta);
  opacity: 0.25;
  pointer-events: none;
}

/* Hide old logo element if present */
.loc-menu-logo { display: none; }

/* ── Section (Pizza, Small Plates, etc.) ── */
.loc-menu-section {
  margin-bottom: 40px;
}

/* ── Category headings — bold uppercase like Canva ── */
.loc-menu-category {
  font-family: var(--body-font);
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: var(--terracotta);
  border: none;
}

/* Remove italic from old markup */
.loc-menu-category em {
  font-style: normal;
}

/* ── Items container ── */
.loc-menu-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ══════════════════════════════════════
   NEW simplified markup: .loc-menu-item with .n and .p
   Each item is one flowing line, uppercase, monospace
   ══════════════════════════════════════ */

.loc-menu-item {
  font-family: var(--body-font);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 6px;
}

/* Item name/number — terracotta bold */
.loc-menu-card .n,
.loc-menu-item-name {
  font-family: var(--body-font);
  font-weight: 700;
  color: var(--terracotta);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  display: inline;
}

/* Price — bold, inline at end of line */
.loc-menu-card .p,
.loc-menu-item-price {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
  display: inline;
  margin-left: 4px;
}

/* Make old desc elements flow inline too */
.loc-menu-item-info {
  display: inline;
}

.loc-menu-item-desc {
  display: inline;
  font-family: var(--body-font);
  font-style: normal;
  color: var(--text);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0;
}

/* <small> tag for sub-notes within items (e.g. "add veg or cashew cream") */
.loc-menu-card small {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #777;
  margin-top: 2px;
}

/* ── Notes (allergen info, service charge etc.) ── */
.loc-menu-note {
  margin-top: 20px;
  font-family: var(--body-font);
  font-size: 10px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #999;
  text-align: center;
  line-height: 1.8;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .loc-menus {
    padding: 24px 16px 60px;
  }

  .loc-menus-tabs {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .loc-tab {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .loc-menu-card {
    padding: 32px 20px 28px;
    border-width: 2px;
  }

  .loc-menu-card::before {
    font-size: 22px;
    top: 20px;
    right: 20px;
    letter-spacing: 3px;
  }

  .loc-menu-category {
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 16px;
  }

  .loc-menu-item,
  .loc-menu-card .n,
  .loc-menu-item-name,
  .loc-menu-card .p,
  .loc-menu-item-price,
  .loc-menu-item-desc {
    font-size: 11px;
  }

  .loc-menu-items {
    gap: 10px;
  }

  .loc-menu-item {
    line-height: 1.7;
  }
}

/* ── FAQ ACCORDION ── */
.loc-faqs {
  padding: 80px 40px;
}

.loc-faqs-header {
  margin-bottom: 40px;
}

.loc-faqs-header h2 {
  font-family: var(--display-font);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
}

.loc-faqs-list {
  max-width: 900px;
  margin: 0 auto;
}

.loc-faq-item {
  border: 1.5px solid rgba(0,0,0,0.1);
  margin-bottom: -1.5px;
}

.loc-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--display-font);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  text-align: left;
  transition: color 0.2s;
}

.loc-faq-question:hover {
  color: var(--red);
}

.loc-faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.loc-faq-item.open .loc-faq-chevron {
  transform: rotate(180deg);
}

.loc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.loc-faq-item.open .loc-faq-answer {
  max-height: 300px;
}

.loc-faq-answer p {
  padding: 0 24px 20px;
  font-size: 13px;
  line-height: 1.8;
  color: #555;
  font-style: italic;
}

/* ── LEGACY LOCATION PAGE STYLES (kept for backwards compat) ── */
.location-hero {
  margin-top: 68px;
  position: relative;
  height: 50vh;
  min-height: 400px;
  overflow: hidden;
}

.location-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.05) saturate(1.1);
}

.location-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.4) 100%);
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.location-hero-title {
  font-family: var(--display-font);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
}

.location-info {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px 40px;
}

.location-info-block h3 {
  font-family: var(--display-font);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
}

.location-info-block p {
  font-size: 13px;
  line-height: 2;
  color: #555;
  margin-bottom: 16px;
}

.location-info-block .btn-pill {
  margin-top: 8px;
  margin-right: 8px;
}

.location-map {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(0.2);
}

.location-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.location-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(1.08);
  transition: transform 0.4s ease;
}

.location-gallery img:hover {
  transform: scale(1.02);
}

/* ── HAMBURGER MENU DROPDOWNS ── */
.menu-overlay-dropdown {
  display: flex;
  flex-direction: column;
}

.menu-overlay-link--parent {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--display-font);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.3;
  padding: 0;
  text-align: left;
  transition: color 0.2s;
}

.menu-overlay-link--parent:hover {
  color: var(--red);
}

.dropdown-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  margin-top: 4px;
}

.menu-overlay-dropdown.open .dropdown-chevron {
  transform: rotate(180deg);
}

.menu-overlay-dropdown-items {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding-left: 20px;
}

.menu-overlay-dropdown.open .menu-overlay-dropdown-items {
  max-height: 200px;
  padding-top: 4px;
  padding-bottom: 8px;
}

.menu-overlay-sublink {
  font-family: var(--body-font);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  padding: 6px 0;
  transition: color 0.2s;
}

.menu-overlay-sublink:hover {
  color: var(--red);
}

/* ── LOCATION CHOOSER MODAL ── */
.location-chooser {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.location-chooser.active {
  visibility: visible;
  opacity: 1;
}

.location-chooser-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.location-chooser-panel {
  position: relative;
  background: var(--cream);
  padding: 48px;
  max-width: 560px;
  width: 90%;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-chooser.active .location-chooser-panel {
  transform: translateY(0);
}

.location-chooser-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
  padding: 4px;
  transition: color 0.2s;
}

.location-chooser-close:hover {
  color: var(--red);
}

.location-chooser-title {
  font-family: var(--display-font);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  margin-bottom: 8px;
}

.location-chooser-subtitle {
  font-size: 12px;
  color: #888;
  margin-bottom: 32px;
}

.location-chooser-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.location-chooser-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px 20px;
  border: 1.5px solid rgba(0,0,0,0.1);
  background: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  flex: 1 1 0%;
min-width: 0;
}

.location-chooser-card:hover {
  border-color: var(--red);
  background: rgba(191,44,31,0.04);
}

.location-chooser-name {
  font-family: var(--display-font);
  font-size: 24px;
  font-weight: 400;
  color: var(--charcoal);
}

.location-chooser-address {
  font-family: var(--body-font);
  font-size: 11px;
  color: #888;
  letter-spacing: 0.5px;
}

.location-chooser-arrow {
  font-size: 20px;
  color: var(--red);
  transition: transform 0.2s;
}

.location-chooser-card:hover .location-chooser-arrow {
  transform: translateX(4px);
}

body.chooser-open {
  overflow: hidden;
}

/* ── COOKIE CONSENT ── */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 250;
  background: var(--charcoal);
  color: var(--cream);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.cookie-consent.active {
  max-height: 200px;
  padding: 20px 40px;
}

.cookie-consent-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-consent p {
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-consent .btn-pill--filled {
  font-size: 10px;
  padding: 8px 20px;
}

.cookie-consent .cookie-decline {
  font-family: var(--body-font);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  transition: all 0.25s ease;
}

.cookie-consent .cookie-decline:hover {
  border-color: var(--cream);
}

/* ── ALLERGEN BAR ── */
.loc-allergen-bar {
  text-align: center;
  margin-bottom: 24px;
}

.loc-allergen-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--body-font);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.loc-allergen-link:hover {
  opacity: 1;
}

/* ── CONTACT PAGE ── */
.contact-hero {
  margin-top: 68px;
  background: var(--burgundy);
  color: var(--cream);
  padding: 80px 40px;
  text-align: center;
}

.contact-hero h1 {
  font-family: var(--display-font);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  margin-bottom: 16px;
}

.contact-hero p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
  opacity: 0.9;
}

.contact-locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-location-card {
  border: 1.5px solid rgba(0,0,0,0.1);
  padding: 40px;
}

.contact-location-card h2 {
  font-family: var(--display-font);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 24px;
}

.contact-detail {
  font-size: 13px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

.contact-detail strong {
  color: var(--text);
}

.contact-detail a {
  color: var(--red);
}

.contact-detail a:hover {
  text-decoration: underline;
}

.contact-form-wrapper {
  max-width: 640px;
  margin: 0 auto;
}

.boco-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-family: var(--body-font);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--body-font);
  font-size: 13px;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: var(--cream);
  color: var(--text);
  border-radius: 0;
  -webkit-appearance: none;
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
}

.contact-maps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.contact-map h3 {
  font-family: var(--body-font);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
  background: var(--warm-cream);
  color: #888;
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  filter: grayscale(0.2);
}

/* ── 404 PAGE (enhanced) ── */
.page-404 {
  text-align: center;
  padding: 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 68px;
}

.page-404-inner {
  max-width: 560px;
  padding: 40px;
}

.page-404-number {
  font-family: var(--display-font);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 400;
  color: var(--red);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
  opacity: 0.15;
}

.page-404 h1 {
  font-family: var(--display-font);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.page-404 p {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 32px;
}

.page-404-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER LINKS ── */
.footer-links {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-links a {
  font-size: 12px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--terracotta);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .site-nav {
    padding: 12px 20px;
  }

  .nav-links-desktop {
    display: none;
  }

  .hero {
    height: 70vh;
  }

  .hero-content {
    bottom: 40px;
    left: 20px;
    right: 20px;
  }

  .section {
    padding: 60px 20px;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .order-strip {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .page-content {
    padding: 100px 20px 60px;
  }

  /* Overlay: full-width left panel on mobile */
  .menu-overlay-inner {
    grid-template-columns: 1fr;
  }

  .menu-overlay-right {
    display: none;
  }

  .menu-overlay-left {
    padding: 80px 24px 40px;
  }

  .menu-overlay-close {
    left: 24px;
  }

  /* Location page mobile */
  .loc-hero-inner {
    grid-template-columns: 1fr;
  }

  .loc-hero-image {
    padding: 20px;
  }

  .loc-hero-info {
    padding: 32px 20px;
  }

  .loc-menus {
    padding: 32px 20px 60px;
  }

  .loc-menus-tabs {
    gap: 16px;
    flex-wrap: wrap;
  }

  .loc-menu-card {
    padding: 24px;
  }

  .loc-faqs {
    padding: 60px 20px;
  }

  .location-info {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px;
  }

  .location-gallery {
    grid-template-columns: 1fr 1fr;
  }

  /* Contact page mobile */
  .contact-hero {
    padding: 60px 20px;
  }

  .contact-locations {
    grid-template-columns: 1fr;
  }

  .contact-location-card {
    padding: 28px;
  }

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

  .contact-maps {
    grid-template-columns: 1fr;
  }

  /* Chooser modal mobile */
  .location-chooser-panel {
    padding: 32px 24px;
  }

  .location-chooser-options {
    grid-template-columns: 1fr;
  }

  /* Cookie consent mobile */
  .cookie-consent.active {
    padding: 16px 20px;
  }

  .cookie-consent-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .cookie-consent p {
    font-size: 11px;
  }
}
/* ═══ OPENTABLE BOOKING MODAL ═══ */
.ot-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.ot-modal.active {
  opacity: 1;
  visibility: visible;
}
.ot-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(72, 25, 35, 0.85);
  cursor: pointer;
}
.ot-modal-panel {
  position: relative;
  background: var(--cream);
  padding: 48px 40px 40px;
  max-width: 520px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1;
}
.ot-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  transition: color 0.2s;
}
.ot-modal-close:hover {
  color: var(--terracotta);
}
.ot-modal-title {
  font-family: var(--display-font);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--text);
}
.ot-modal-title em {
  font-style: italic;
}
.ot-modal-widget {
  min-height: 200px;
}
body.ot-open {
  overflow: hidden;
}
@media (max-width: 768px) {
  .ot-modal-panel {
    padding: 36px 24px 24px;
    width: 95%;
  }
  .ot-modal-title {
    font-size: 26px;
  }
}/* ═══ TOAST MESSAGE ═══ */
.boco-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--burgundy);
  color: var(--cream);
  font-family: var(--body-font);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 32px;
  z-index: 10001;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  text-align: center;
  max-width: 90%;
}
.boco-toast.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
/* ═══ CHOOSER ACTION BUTTONS ═══ */
.location-chooser-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  align-items: center;
}
.chooser-action-btn {
  font-family: var(--body-font);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--burgundy);
  background: transparent;
  color: var(--burgundy);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.chooser-action-btn:hover {
  background: var(--burgundy);
  color: var(--cream);
}
.chooser-coming-soon {
  font-family: var(--body-font);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
  font-style: italic;
}
img:not(.custom-logo):not([src*="logo"]) {
  filter: saturate(0.95) contrast(0.98) brightness(1.01) sepia(0.03);
}

.footer-logo img,
img[src*="logo"] {
  filter: none !important;
}

/* ── Read More toggle (About section) ── */
.intro-read-more {
  display: inline-block;
  margin-top: 0.5em;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85em;
  text-decoration: none;
  color: inherit;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.intro-read-more:hover { opacity: 1; }