/* ============================================================
   ANABA — Main Stylesheet
   WCAG 2.1 Level AA · Single shared file
   ============================================================ */

/* ── Custom Properties ──────────────────────────────────── */
:root {
  --color-primary:   #0A0A1A;
  --color-primary-light: #1a1a2e;
  --color-accent:    #C9A96E;
  --color-accent-dark: #a8852e;
  --color-bg:        #F2EDE3;
  --color-dark:      #0A0A1A;
  --color-light:     #F2EDE3;
  --color-muted:     #6B6B7A;
  --color-white:     #FFFFFF;
  --color-border:    #E0D9CE;

  --font-serif:      'Georgia', 'Times New Roman', serif;
  --font-sans:       'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  --nav-h:           72px;
  --radius:          4px;
  --radius-lg:       12px;
  --transition:      0.3s ease;
  --shadow:          0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:       0 8px 48px rgba(0,0,0,0.16);

  /* Accessibility overrides (set by JS widget) */
  --a11y-font-scale: 1;
  --a11y-line-height: 1.6;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: calc(16px * var(--a11y-font-scale)); }
body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-dark);
  line-height: var(--a11y-line-height);
  min-height: 100vh;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { max-width: 68ch; }

/* ── Focus Styles (WCAG 2.1 AA) ─────────────────────────── */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* ── Screen-reader only ─────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Skip Link ───────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  border-radius: var(--radius);
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(242,237,227,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  gap: 1rem;
}
.nav-links-left { display: none; } /* unused in new layout */
.nav-links-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-dark);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--color-primary); }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { width: 100%; }

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 52px;
  width: auto;
}
.nav-logo:focus-visible { outline-offset: 6px; }

.nav-divider {
  width: 1px;
  height: 1.2rem;
  background: var(--color-border);
  display: inline-block;
  margin: 0 0.25rem;
  vertical-align: middle;
  flex-shrink: 0;
}
.nav-phone {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--color-accent-dark); }

.nav-instagram {
  display: flex;
  align-items: center;
  color: var(--color-dark);
  transition: color var(--transition);
}
.nav-instagram:hover { color: var(--color-accent); }
.nav-instagram svg { width: 20px; height: 20px; }

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  padding: 4px;
  border-radius: var(--radius);
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow);
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link {
  font-size: 1rem;
  padding: 0.5rem 0;
}
.nav-mobile .nav-instagram {
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0;
}
.nav-mobile .nav-instagram svg { width: 18px; height: 18px; }

/* ── Page offset for fixed nav ──────────────────────────── */
.page-top { padding-top: var(--nav-h); }

/* ══════════════════════════════════════════════════════════
   SECTION ANIMATIONS (scroll-driven fade-in)
══════════════════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ══════════════════════════════════════════════════════════
   UTILITY CLASSES
══════════════════════════════════════════════════════════ */
.container {
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
}
.container-wide {
  width: min(1400px, 100% - 3rem);
  margin-inline: auto;
}
.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.section-title {
  margin-bottom: 1.5rem;
}
.section-title + p { color: var(--color-muted); }

.divider {
  width: 48px; height: 2px;
  background: var(--color-accent);
  margin-block: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), transform 0.15s;
  border: 2px solid transparent;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn-primary:hover { background: var(--color-primary-light); border-color: var(--color-primary-light); }

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

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: var(--color-white); color: var(--color-primary); }

.btn-underline {
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255,255,255,0.7);
  border-radius: 0;
  padding: 0.2rem 0.1rem;
  color: var(--color-white);
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  transition: border-color 0.2s, opacity 0.2s;
  box-shadow: none;
}
.btn-underline:hover { border-color: #fff; opacity: 0.75; background: transparent; }

.text-accent { color: var(--color-accent); }
.text-muted  { color: var(--color-muted); }
.bg-primary  { background: var(--color-primary); color: var(--color-white); }
.bg-light    { background: var(--color-light); }
.bg-dark     { background: var(--color-dark); color: var(--color-white); }

/* ══════════════════════════════════════════════════════════
   HERO (shared base)
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--color-dark);
  color: var(--color-white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-block: clamp(5rem, 12vw, 10rem);
}

/* Page banner (non-home pages) */
.page-banner {
  background: var(--color-primary);
  color: var(--color-white);
  padding-block: clamp(3rem, 6vw, 5rem);
  text-align: center;
}
.page-banner .section-label { color: rgba(201,169,110,0.9); }

/* ══════════════════════════════════════════════════════════
   HOME — HERO (video background)
══════════════════════════════════════════════════════════ */
.home-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-primary);
}

/* ── Split layout ────────────────────────────────────────── */
.home-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: calc(100vh - var(--nav-h));
  align-items: stretch;
}
.hero-split-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: var(--color-primary);
  padding: 1.5rem 2.5rem 1.5rem;
  text-align: center;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
.hero-split-spacer { flex: 1; }
.hero-split-spacer-top { flex: 0.94; }
.hero-split-spacer-bot { flex: 1.06; }
.hero-split-bottom { display: flex; flex-direction: column; align-items: center; gap: 0.1rem; }
.hero-lantern-bg {
  position: absolute;
  width: 60%;
  max-width: 270px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.38;
  pointer-events: none;
  z-index: 0;
}
.hero-split-left > *:not(.hero-lantern-bg) {
  position: relative;
  z-index: 1;
}
.hero-split-right {
  position: relative;
  overflow: hidden;
  background: #1a0f08;
}
.hero-split-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.88);
}
@media (max-width: 768px) {
  .home-hero-split {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .hero-split-right {
    min-height: 45vh;
  }
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  pointer-events: none;
}
.hero-overlay-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}
.hero-divider {
  opacity: 0.5;
  margin: 0 0.4rem;
  font-weight: 300;
}

/* ── Hero Brand ──────────────────────────────────────────── */
.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.hero-logo {
  width: 185px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  display: block;
}
.hero-brand-name {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 4.5vw, 3.6rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  line-height: 1;
}
.hero-lantern-img {
  width: 110px;
  height: auto;
  margin-top: 0.6rem;
  opacity: 0.92;
}

.home-hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.home-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
  max-width: 34ch;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* ══════════════════════════════════════════════════════════
   HOME — ABOUT BLURB
══════════════════════════════════════════════════════════ */
.home-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.home-about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.home-about-img img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════════════════════════
   HOME — MENU PREVIEW CARDS
══════════════════════════════════════════════════════════ */
.menu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.menu-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.menu-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.05); }
.menu-card-body { padding: 1.5rem; }
.menu-card-body h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.menu-card-body p { font-size: 0.9rem; color: var(--color-muted); margin-bottom: 1rem; }
.menu-card-price { font-weight: 700; color: var(--color-primary); font-size: 1rem; }

/* ══════════════════════════════════════════════════════════
   HOME — SIGNATURE DISHES CAROUSEL
══════════════════════════════════════════════════════════ */
.carousel-wrap {
  position: relative;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.carousel-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
}
.carousel-slide-img {
  overflow: hidden;
}
.carousel-slide-img img { width: 100%; height: 100%; object-fit: cover; }
.carousel-slide-text {
  background: var(--color-primary);
  color: var(--color-white);
  padding: clamp(2.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.carousel-slide-text .section-label { color: var(--color-accent); }
.carousel-slide-text h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1rem; }
.carousel-slide-text p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  background: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.carousel-btn:hover { background: var(--color-primary); border-color: var(--color-primary); }
.carousel-btn:hover svg { stroke: white; }
.carousel-btn svg { width: 18px; height: 18px; stroke: var(--color-dark); fill: none; stroke-width: 2; }
.carousel-dots {
  display: flex; gap: 0.5rem;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.carousel-dot.active { background: var(--color-accent); transform: scale(1.3); }

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════ */
.about-story-text {
  max-width: 720px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.value-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow);
  text-align: center;
}
.value-icon {
  width: 52px; height: 52px;
  margin: 0 auto 1.25rem;
  background: var(--color-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.value-icon svg { width: 24px; height: 24px; stroke: var(--color-primary); fill: none; stroke-width: 1.5; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; color: var(--color-muted); }

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.hours-table th {
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}
.hours-table td {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-border);
}
.hours-table td:last-child { text-align: right; color: var(--color-muted); }
.hours-table tr.closed td { color: var(--color-muted); }

.location-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.location-detail {
  display: flex; gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.location-detail svg {
  width: 20px; height: 20px;
  stroke: var(--color-accent);
  fill: none; stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ══════════════════════════════════════════════════════════
   MENU PAGE
══════════════════════════════════════════════════════════ */
.menu-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.tab-btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-muted);
  border-radius: 100px;
  transition: all var(--transition);
}
.tab-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.tab-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.menu-section { display: none; }
.menu-section.active { display: block; }

.menu-section-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 180px;
  margin-bottom: 2.5rem;
  position: relative;
}
.menu-section-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.menu-section-banner-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(to right, rgba(10,10,26,0.7) 40%, transparent);
  color: var(--color-white);
}
.menu-section-banner-label h2 { font-size: clamp(1.4rem, 3vw, 2rem); }

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Nigiri list */
.nigiri-grid {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nigiri-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  gap: 1rem;
}
.nigiri-item:last-child { border-bottom: none; }
.nigiri-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-text);
}
.nigiri-jp {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-left: 0.4rem;
}
.nigiri-price {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-accent);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 3.5rem;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.menu-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}
.menu-item:hover { box-shadow: var(--shadow); }
.menu-item-img {
  width: 88px; height: 88px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.menu-item-img img { width: 100%; height: 100%; object-fit: cover; }
.menu-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.menu-item-info h4 { font-family: var(--font-serif); font-size: 1rem; margin-bottom: 0.3rem; }
.menu-item-info p { font-size: 0.85rem; color: var(--color-muted); margin-bottom: 0; flex: 1; }
.menu-item-price {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--color-accent);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.menu-item-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
  background: var(--color-light);
  color: var(--color-accent-dark);
  margin-left: 0.5rem;
}

/* ══════════════════════════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════════════════════════ */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.gallery-grid {
  columns: 3;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: block;
}
.gallery-item img {
  width: 100%;
  transition: transform 0.4s ease, filter 0.3s ease;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,26,0.0);
  transition: background var(--transition);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:hover::after { background: rgba(10,10,26,0.25); }
.gallery-item[hidden] { display: none; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
}
.lightbox-img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: -3rem; right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  line-height: 1;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
}
.lightbox-close:hover { background: rgba(255,255,255,0.1); }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-prev { left: -3.5rem; }
.lightbox-next { right: -3.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev svg, .lightbox-next svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2; }
.lightbox-caption {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.contact-dark {
  background: var(--color-dark);
  color: var(--color-white);
  padding: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-light {
  background: var(--color-white);
  padding: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-dark .section-label { color: var(--color-accent); }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-item svg {
  width: 22px; height: 22px;
  stroke: var(--color-accent);
  fill: none; stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 0.2rem;
}
.contact-item a { color: var(--color-white); font-size: 1.1rem; font-weight: 500; }
.contact-item a:hover { color: var(--color-accent); }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  background: var(--color-light);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--color-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
}
.map-placeholder svg { width: 40px; height: 40px; stroke: var(--color-border); fill: none; stroke-width: 1.5; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.75);
  padding-block: clamp(3rem, 5vw, 5rem) 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}
.footer-brand img { height: 38px; filter: brightness(0) invert(1); margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.9rem; max-width: 32ch; }

.footer-nav h4, .footer-hours h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--color-white); }

.footer-hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.footer-hours-table tr { border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-hours-table td { padding: 0.4rem 0; color: rgba(255,255,255,0.7); }
.footer-hours-table td:last-child { text-align: right; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom a { color: var(--color-accent); }
.footer-bottom a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════════════
   FLOATING ORDER BUTTON
══════════════════════════════════════════════════════════ */
.order-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.order-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
}
.order-float.open .order-options {
  opacity: 1;
  pointer-events: all;
  transform: none;
}
.order-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.25rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  box-shadow: var(--shadow);
  transition: transform 0.15s, box-shadow 0.15s;
}
.order-option:hover { transform: translateX(-4px); box-shadow: var(--shadow-lg); }
.order-uber {
  background: #06C167;
  color: #000000;
}
.order-doordash {
  background: #FF3008;
  color: #FFFFFF;
}
.order-main-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: 4px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--color-accent);
  box-shadow: var(--shadow-lg);
  transition: background var(--transition), transform 0.15s;
}
.order-main-btn:hover { background: var(--color-primary-light); }

/* ── Hero Order Pop-out ──────────────────────────────────── */
.hero-order-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.hero-order-trigger {
  padding: 0.85rem 2.4rem;
  border-radius: 100px;
  background: transparent;
  color: var(--color-white);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--color-accent);
  box-shadow: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  font-family: inherit;
}
.hero-order-trigger:hover { background: rgba(201,169,110,0.15); border-color: var(--color-accent-dark); }
.hero-order-trigger:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 4px; }
/* pill flip animation */
@keyframes pill-flip {
  0%   { transform: rotateX(0deg); }
  40%  { transform: rotateX(90deg); }
  60%  { transform: rotateX(90deg); }
  100% { transform: rotateX(0deg); }
}
.hero-order-wrap.open .hero-order-trigger {
  animation: pill-flip 0.4s ease forwards;
}

/* options container */
.hero-order-options {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  pointer-events: none;
  margin-top: 0.2rem;
}

/* each button flies in from its side */
.hero-order-uber {
  opacity: 0;
  transform: translateX(-40px) scale(0.85);
  transition: opacity 0.3s ease 0.25s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1) 0.25s;
}
.hero-order-doordash {
  opacity: 0;
  transform: translateX(40px) scale(0.85);
  transition: opacity 0.3s ease 0.3s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1) 0.3s;
}
.hero-order-wrap.open .hero-order-options {
  pointer-events: all;
}
.hero-order-wrap.open .hero-order-uber,
.hero-order-wrap.open .hero-order-doordash {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.hero-order-btn {
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  white-space: nowrap;
  font-family: inherit;
  transition: opacity 0.2s, transform 0.15s;
}
.hero-order-btn:hover { transform: scale(1.05); opacity: 0.92; }
.hero-order-uber { background: #06C167; color: #000; }
.hero-order-doordash { background: #FF3008; color: #fff; }

/* ══════════════════════════════════════════════════════════
   ACCESSIBILITY WIDGET
══════════════════════════════════════════════════════════ */
.a11y-widget {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 800;
}
.a11y-toggle {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  background: var(--color-white);
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.a11y-toggle:hover { background: var(--color-light); }
.a11y-toggle svg { width: 22px; height: 22px; stroke: var(--color-primary); fill: none; stroke-width: 1.8; }

.a11y-panel {
  position: absolute;
  bottom: calc(100% + 0.75rem);
  left: 0;
  width: 260px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  display: none;
}
.a11y-panel.open { display: block; }
.a11y-panel h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}
.a11y-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.a11y-row:last-of-type { margin-bottom: 0.5rem; }
.a11y-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-dark);
}
.a11y-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.a11y-btn {
  width: 30px; height: 30px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  border-radius: var(--radius);
  font-size: 1rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.a11y-btn:hover { background: var(--color-light); }
.a11y-value {
  font-size: 0.8rem;
  font-weight: 700;
  min-width: 2.5ch;
  text-align: center;
}
.a11y-switch {
  position: relative;
  width: 44px; height: 24px;
}
.a11y-switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.a11y-slider {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: 100px;
  transition: background var(--transition);
  cursor: pointer;
}
.a11y-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: white;
  top: 3px; left: 3px;
  transition: transform var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.a11y-switch input:checked + .a11y-slider { background: var(--color-primary); }
.a11y-switch input:checked + .a11y-slider::before { transform: translateX(20px); }
.a11y-switch input:focus-visible + .a11y-slider { outline: 3px solid var(--color-accent); outline-offset: 2px; }
.a11y-reset {
  width: 100%;
  margin-top: 1rem;
  padding: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-muted);
  transition: all var(--transition);
}
.a11y-reset:hover { border-color: var(--color-primary); color: var(--color-primary); }

/* High contrast mode */
body.high-contrast {
  --color-bg: #000000;
  --color-dark: #FFFFFF;
  --color-white: #111111;
  --color-muted: #CCCCCC;
  --color-border: #555555;
  --color-primary: #6B6FFF;
  --color-accent: #FFD700;
  --color-light: #1A1A1A;
}
body.high-contrast .site-nav { background: #000000; border-color: #555; }
body.high-contrast .nav-link { color: #FFFFFF; }
body.high-contrast img { filter: contrast(1.1); }

/* Large pointer / focus mode */
body.large-pointer * { cursor: default !important; }
body.large-pointer a, body.large-pointer button, body.large-pointer [role="button"] { cursor: pointer !important; }
body.large-pointer :focus-visible { outline-width: 4px !important; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .site-nav {
    grid-template-columns: auto 1fr auto;
    padding: 0 1.25rem;
  }
  .nav-links-left, .nav-links-right { display: none; }
  .nav-logo { justify-content: flex-start; }
  .nav-hamburger { display: flex; }

  .home-hero { min-height: 80vh; }
  .hero-grid { grid-template-columns: 0 1fr 0; }
  .hero-col-left, .hero-col-right { display: none; }
  .hero-col-center::before { background: linear-gradient(to bottom, rgba(10,10,26,0.6) 0%, rgba(0,0,0,0.5) 100%); }

  .home-about { grid-template-columns: 1fr; }
  .home-about-img { aspect-ratio: 16/9; order: -1; }

  .carousel-slide { grid-template-columns: 1fr; min-height: auto; }
  .carousel-slide-img { aspect-ratio: 4/3; }


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

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

  .gallery-grid { columns: 2; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .lightbox-prev { left: -2rem; }
  .lightbox-next { right: -2rem; }

  .order-float { bottom: 1.25rem; right: 1.25rem; }
  .a11y-widget { bottom: 1.25rem; left: 1.25rem; }
}

@media (max-width: 600px) {
  .menu-items-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }

  .lightbox-prev { left: 0.25rem; }
  .lightbox-next { right: 0.25rem; }

  .carousel-slide-text { padding: 2rem 1.5rem; }
}

/* ── Instagram Popup ─────────────────────────────────────── */
.ig-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.ig-popup[hidden] { display: none; }

.ig-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,26,0.7);
  backdrop-filter: blur(4px);
  animation: ig-fade-in 0.3s ease;
}

@keyframes ig-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes ig-slide-up {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.ig-popup-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem 2rem;
  max-width: 380px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  animation: ig-slide-up 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.ig-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #f0f0f0;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.ig-popup-close:hover { background: #e0e0e0; }

.ig-popup-logo {
  margin-bottom: 1rem;
}
.ig-popup-logo img {
  width: 100px;
  height: auto;
  margin: 0 auto;
  filter: invert(1) brightness(0);
  opacity: 0.85;
}

.ig-popup-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.ig-popup-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.ig-popup-sub {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.ig-popup-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-primary);
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 0.85rem;
}
.ig-popup-btn:hover { background: var(--color-primary-light); transform: scale(1.03); }

.ig-popup-skip {
  display: block;
  background: none;
  border: none;
  font-size: 0.78rem;
  color: #aaa;
  cursor: pointer;
  font-family: inherit;
  padding: 0.25rem;
  transition: color 0.15s;
}
.ig-popup-skip:hover { color: #666; }
