/* ============================================================
   El Barrio Latino — vitrine
   Two themes (dark/light), two languages (FR/EN)
   ============================================================ */

/* ---------- Theme tokens ---------- */
:root {
  /* brand */
  --coral:   #ff6b45;
  --coral-2: #ff8a3d;
  --teal:    #18b89e;
  --gold:    #ffc24b;
  --pink:    #ff5c8a;
  --purple:  #a86bff;

  /* light theme (default) */
  --bg:        #fff7ef;
  --bg-2:      #ffefe1;
  --surface:   #ffffff;
  --surface-2: #fff3e8;
  --text:      #2a1820;
  --text-soft: #6c5159;
  --line:      rgba(42, 24, 32, .12);
  --line-soft: rgba(42, 24, 32, .07);
  --shadow:    0 18px 50px -22px rgba(120, 50, 30, .45);
  --shadow-sm: 0 8px 24px -14px rgba(120, 50, 30, .4);
  --primary:   #e0492a;
  --primary-ink:#ffffff;
  --herotext:  #2a1820;
  --heroshade: rgba(255,247,239,.55);
  --grain:     .035;

  --radius:    20px;
  --radius-sm: 14px;
  --maxw:      1180px;
  --header-h:  74px;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-script: "Pacifico", cursive;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

:root[data-theme="dark"] {
  --bg:        #150e16;
  --bg-2:      #1d1320;
  --surface:   #221527;
  --surface-2: #2b1a31;
  --text:      #f7ecef;
  --text-soft: #c4a9b6;
  --line:      rgba(255, 235, 240, .12);
  --line-soft: rgba(255, 235, 240, .06);
  --shadow:    0 28px 70px -28px rgba(0, 0, 0, .8);
  --shadow-sm: 0 12px 30px -18px rgba(0, 0, 0, .75);
  --primary:   #ff6b45;
  --primary-ink:#1a0d12;
  --herotext:  #fff4ee;
  --heroshade: rgba(21,14,22,.45);
  --grain:     .06;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background .5s var(--ease), color .5s var(--ease);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; border-radius: 6px; }

.container { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }

.skip-link {
  position: fixed; left: 50%; top: -120px; transform: translateX(-50%);
  background: var(--primary); color: var(--primary-ink); padding: .7rem 1.2rem;
  border-radius: 0 0 12px 12px; z-index: 200; font-weight: 700; transition: top .25s;
}
.skip-link:focus { top: 0; }

.accent-script { font-family: var(--font-script); font-weight: 400; color: var(--coral); }
:root[data-theme="dark"] .accent-script { color: var(--gold); }

/* ---------- Headings & shared ---------- */
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; position: relative; }
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.6vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -.02em;
}
.section-sub { color: var(--text-soft); font-size: 1.05rem; margin-top: .6rem; max-width: 46ch; }
.lead { font-size: 1.18rem; color: var(--text); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  text-transform: uppercase; letter-spacing: .18em; font-size: .74rem; font-weight: 800;
  color: var(--primary); margin-bottom: .9rem;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--coral) 25%, transparent); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; margin-bottom: 2.6rem; flex-wrap: wrap; }
.section-head.center { flex-direction: column; align-items: center; text-align: center; }
.section-head.center .section-sub { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .9rem 1.6rem; border-radius: 999px; font-weight: 700; font-size: .98rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(115deg, var(--coral), var(--coral-2) 55%, var(--gold));
  color: #2a0f08;
  box-shadow: 0 14px 30px -12px color-mix(in srgb, var(--coral) 70%, transparent);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -14px color-mix(in srgb, var(--coral) 80%, transparent); }
.btn-ghost {
  background: color-mix(in srgb, var(--text) 6%, transparent);
  color: var(--text); border: 1.5px solid var(--line);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--coral); color: var(--coral); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: blur(16px) saturate(1.3);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }
.brand { display: flex; align-items: center; gap: .6rem; font-weight: 800; }
.brand-logo { width: 42px; height: 42px; object-fit: contain; border-radius: 10px; }
.brand-name { font-family: var(--font-display); font-size: 1.18rem; letter-spacing: -.01em; }
.brand-name .accent-script { font-size: 1.35rem; }

.nav-desktop { display: flex; gap: .3rem; }
.nav-desktop a {
  padding: .5rem .85rem; border-radius: 999px; font-weight: 600; font-size: .95rem; color: var(--text-soft);
  transition: color .2s, background .2s;
}
.nav-desktop a:hover { color: var(--text); background: color-mix(in srgb, var(--text) 7%, transparent); }

.header-controls { display: flex; align-items: center; gap: .7rem; }

/* Language toggle (segmented pill) */
.lang-toggle {
  position: relative; display: inline-flex; align-items: center;
  background: color-mix(in srgb, var(--text) 8%, transparent);
  border: 1px solid var(--line); border-radius: 999px; padding: 3px;
}
.lang-btn {
  position: relative; z-index: 2; width: 38px; height: 30px; border-radius: 999px;
  font-weight: 800; font-size: .8rem; color: var(--text-soft); transition: color .25s;
}
.lang-btn[aria-pressed="true"] { color: #2a0f08; }
.lang-thumb {
  position: absolute; z-index: 1; top: 3px; left: 3px; width: 38px; height: 30px; border-radius: 999px;
  background: linear-gradient(120deg, var(--coral), var(--gold));
  transition: transform .35s var(--ease); box-shadow: 0 4px 12px -4px color-mix(in srgb, var(--coral) 70%, transparent);
}
.lang-toggle[data-active="en"] .lang-thumb { transform: translateX(38px); }

/* Theme toggle */
.theme-toggle { display: inline-flex; }
.theme-track {
  position: relative; display: inline-flex; align-items: center; justify-content: space-between;
  width: 64px; height: 32px; padding: 0 8px; border-radius: 999px;
  background: linear-gradient(120deg, #ffd27a, #ff9a5a);
  border: 1px solid var(--line); transition: background .4s var(--ease);
}
:root[data-theme="dark"] .theme-track { background: linear-gradient(120deg, #2b2240, #4a2e57); }
.theme-track .ic-sun, .theme-track .ic-moon { width: 15px; height: 15px; flex: none; }
.theme-track .ic-sun { color: #b54a12; }
.theme-track .ic-moon { color: #ffe08a; }
.theme-thumb {
  position: absolute; top: 3px; left: 3px; width: 25px; height: 25px; border-radius: 50%;
  background: #fff; box-shadow: 0 3px 8px rgba(0,0,0,.3);
  transition: transform .4s var(--ease);
}
:root[data-theme="dark"] .theme-thumb { transform: translateX(31px); background: #f2e9ff; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px;
  align-items: center; justify-content: center; border-radius: 12px; border: 1px solid var(--line); }
.hamburger span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 99;
  background: color-mix(in srgb, var(--bg) 96%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; padding: 1rem 1.2rem 1.6rem;
  transform: translateY(-130%); transition: transform .4s var(--ease); box-shadow: var(--shadow);
}
.nav-mobile.open { transform: translateY(0); }
.nav-mobile a { padding: .9rem .4rem; font-weight: 700; font-size: 1.1rem; border-bottom: 1px solid var(--line-soft); }
.nav-mobile-cta { margin-top: 1rem; border-bottom: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: var(--header-h); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; animation: float 14s ease-in-out infinite; }
.blob-1 { width: 46vw; height: 46vw; left: -10vw; top: -8vw; background: radial-gradient(circle, var(--coral), transparent 70%); }
.blob-2 { width: 40vw; height: 40vw; right: -8vw; top: 8vw; background: radial-gradient(circle, var(--pink), transparent 70%); animation-delay: -4s; }
.blob-3 { width: 38vw; height: 38vw; left: 25vw; bottom: -14vw; background: radial-gradient(circle, var(--teal), transparent 70%); animation-delay: -8s; }
:root[data-theme="dark"] .hero-bg .blob { opacity: .42; }
.hero-photo {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s var(--ease); mix-blend-mode: luminosity;
}
.hero-photo.loaded { opacity: .22; }
.hero-bg::after { /* readability veil */
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 30% 20%, transparent, var(--heroshade) 70%),
              linear-gradient(to bottom, transparent 40%, var(--bg) 99%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: var(--grain); mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@keyframes float { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(2vw,-3vw) scale(1.08); } }

.hero-inner { position: relative; z-index: 2; text-align: center; padding-block: 3rem; }
.hero-eyebrow { font-family: var(--font-script); font-size: 1.4rem; letter-spacing: .02em; text-transform: none; color: var(--gold); justify-content: center; }
:root[data-theme="light"] .hero-eyebrow { color: var(--primary); }
.hero-logo { width: min(70vw, 420px); margin: .4rem auto 1rem; filter: drop-shadow(0 20px 40px rgba(0,0,0,.35)); }
.hero-title-text { font-family: var(--font-display); font-weight: 900; font-size: clamp(3rem, 12vw, 7rem); line-height: .9; display: block; color: var(--herotext); }
.hero-title-text .accent-script { display: block; font-size: .6em; color: var(--coral); }
.hero-sub { font-size: clamp(1.05rem, 2.4vw, 1.4rem); color: var(--text); max-width: 40ch; margin: 0 auto 1.6rem; opacity: .92; }
.hero-chips { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.8rem; }
.chip {
  display: inline-flex; align-items: center; gap: .45rem; padding: .5rem 1rem; border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 70%, transparent); border: 1px solid var(--line);
  font-weight: 600; font-size: .9rem; backdrop-filter: blur(8px);
}
.chip .ic { width: 16px; height: 16px; color: var(--coral); }
.chip-status .status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--text-soft); }
.hero-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll .mouse { display: block; width: 24px; height: 38px; border: 2px solid var(--text-soft); border-radius: 14px; position: relative; }
.hero-scroll .mouse::before { content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 8px; border-radius: 4px; background: var(--coral); transform: translateX(-50%); animation: scroll 1.6s infinite; }
@keyframes scroll { 0% { opacity: 0; transform: translate(-50%, 0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 12px); } }

/* status colors */
.is-open .status-dot, .hours-status.is-open .status-dot { background: #2bd47e; box-shadow: 0 0 0 4px rgba(43,212,126,.22); }
.is-closed .status-dot, .hours-status.is-closed .status-dot { background: #ff5c6c; box-shadow: 0 0 0 4px rgba(255,92,108,.2); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-copy p + p { margin-top: 1rem; color: var(--text-soft); }
.about-stats { display: flex; gap: 1.8rem; margin-top: 2rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--primary); }
.stat-label { font-size: .85rem; color: var(--text-soft); }
.about-art { position: relative; min-height: 360px; }
.about-card { position: absolute; border-radius: var(--radius); box-shadow: var(--shadow); background-size: cover; background-position: center; }
.about-card-1 { inset: 0 22% 18% 0; background: linear-gradient(140deg, var(--coral), var(--pink)); }
.about-card-2 { inset: 28% 0 0 30%; background: linear-gradient(140deg, var(--teal), var(--purple)); }
.about-quote { position: absolute; right: -.2rem; bottom: -1rem; font-size: 2.6rem; z-index: 3; text-shadow: 0 4px 16px rgba(0,0,0,.3); }

/* ============================================================
   FEATURES
   ============================================================ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.5rem; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.feature::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--coral), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feature:hover::before { transform: scaleX(1); }
.feature-ic { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 16px;
  background: color-mix(in srgb, var(--coral) 14%, transparent); color: var(--primary); margin-bottom: 1rem; }
.feature-ic svg { width: 26px; height: 26px; }
.feature h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; margin-bottom: .35rem; }
.feature p { color: var(--text-soft); font-size: .95rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-nav { display: flex; gap: .6rem; }
.round-btn { width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--surface);
  display: inline-flex; align-items: center; justify-content: center; transition: transform .2s, background .2s, color .2s, border-color .2s; }
.round-btn svg { width: 22px; height: 22px; }
.round-btn:hover { background: var(--primary); color: var(--primary-ink); border-color: transparent; transform: scale(1.06); }
.round-btn:disabled { opacity: .35; cursor: default; transform: none; background: var(--surface); color: var(--text); }

.gallery-track {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: .5rem clamp(1.2rem, calc((100vw - var(--maxw)) / 2 + 1.2rem), 50vw) 1.5rem;
  scrollbar-width: none; cursor: grab; -webkit-overflow-scrolling: touch;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track.dragging { cursor: grabbing; scroll-snap-type: none; }
.gallery-slide {
  flex: 0 0 clamp(260px, 60vw, 460px); aspect-ratio: 4 / 5; scroll-snap-align: center;
  border-radius: var(--radius); overflow: hidden; position: relative; background: var(--surface-2);
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-slide:hover img { transform: scale(1.06); }
.gallery-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.3), transparent 45%); opacity: 0; transition: opacity .3s; pointer-events: none; }
.gallery-slide:hover::after { opacity: 1; }
.gallery-hint { color: var(--text-soft); font-size: .9rem; margin-top: .4rem; }
.gallery-skeleton { display: flex; gap: 1rem; }
.gallery-skeleton span { flex: 0 0 clamp(260px, 60vw, 460px); aspect-ratio: 4/5; border-radius: var(--radius);
  background: linear-gradient(100deg, var(--surface-2) 30%, color-mix(in srgb, var(--text) 8%, var(--surface-2)) 50%, var(--surface-2) 70%);
  background-size: 200% 100%; animation: shimmer 1.4s infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* ============================================================
   MENUS
   ============================================================ */
.menus-panel {
  position: relative; overflow: hidden; text-align: center;
  max-width: 720px; margin-inline: auto; padding: clamp(2.2rem, 5vw, 3.4rem);
  background: var(--surface); border: 1px solid var(--line); border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
}
.menus-panel .eyebrow, .menus-panel .section-title { position: relative; z-index: 1; }
.menus-panel .section-sub { margin: .6rem auto 0; position: relative; z-index: 1; }
.menus-panel-glow { position: absolute; z-index: 0; inset: auto -20% -60% -20%; height: 60%;
  background: radial-gradient(60% 100% at 50% 100%, color-mix(in srgb, var(--coral) 35%, transparent), transparent 70%);
  filter: blur(30px); pointer-events: none; }
.menus-cta { position: relative; z-index: 1; margin-top: 1.8rem; font-size: 1.05rem; padding: 1rem 2rem; }
.menus-cta svg { width: 20px; height: 20px; }
.menus-quick { position: relative; z-index: 1; display: flex; gap: .8rem; justify-content: center; margin-top: 1.4rem; flex-wrap: wrap; }
.menus-quick-btn {
  display: inline-flex; align-items: center; gap: .55rem; padding: .65rem 1.2rem; border-radius: 999px;
  background: color-mix(in srgb, var(--text) 5%, transparent); border: 1px solid var(--line);
  font-weight: 700; transition: transform .2s, border-color .2s, color .2s, background .2s;
}
.menus-quick-btn:hover { transform: translateY(-3px); border-color: var(--coral); color: var(--coral); }
.menus-quick-btn .mq-ic { display: inline-flex; }
.menus-quick-btn svg { width: 20px; height: 20px; }

/* Menu chooser modal */
.menu-modal {
  position: fixed; inset: 0; z-index: 320; display: none; align-items: center; justify-content: center;
  padding: 1.2rem; background: rgba(8, 4, 8, .72); backdrop-filter: blur(8px);
}
.menu-modal.open { display: flex; animation: fade .25s ease; }
.menu-modal-card {
  position: relative; width: min(100%, 500px); background: var(--bg);
  border: 1px solid var(--line); border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.6rem, 4vw, 2.4rem); box-shadow: var(--shadow);
  animation: pop .3s var(--ease);
}
@keyframes pop { from { transform: translateY(16px) scale(.97); opacity: 0; } }
.menu-modal-close { position: absolute; top: .8rem; right: .9rem; font-size: 2rem; line-height: 1;
  width: 42px; height: 42px; border-radius: 50%; color: var(--text-soft); transition: background .2s, color .2s; }
.menu-modal-close:hover { background: color-mix(in srgb, var(--text) 8%, transparent); color: var(--text); }
.menu-modal-eyebrow { font-size: 1.2rem; margin-bottom: .2rem; }
.menu-modal-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.4rem, 4vw, 1.9rem); margin-bottom: 1.4rem; }
.menu-loading, .menu-empty { color: var(--text-soft); padding: 1rem 0; }

.menu-choices { display: grid; gap: .9rem; }
.menu-choice {
  display: flex; align-items: center; gap: 1rem; text-align: left; width: 100%;
  padding: 1.2rem 1.3rem; border-radius: var(--radius); background: var(--surface);
  border: 1px solid var(--line); transition: transform .22s var(--ease), box-shadow .22s, border-color .22s;
}
.menu-choice:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--coral); }
.menu-choice-ic { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; flex: none;
  border-radius: 16px; background: linear-gradient(135deg, var(--coral), var(--gold)); color: #2a0f08; }
.menu-choice-ic svg { width: 28px; height: 28px; }
.menu-choice-txt { display: flex; flex-direction: column; flex: 1; }
.menu-choice-t { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; }
.menu-choice-s { color: var(--text-soft); font-size: .9rem; }
.menu-choice-go { color: var(--text-soft); transition: transform .2s, color .2s; }
.menu-choice-go svg { width: 22px; height: 22px; }
.menu-choice:hover .menu-choice-go { transform: translateX(4px); color: var(--coral); }

.menu-back { display: inline-flex; align-items: center; gap: .35rem; margin-bottom: 1rem; font-weight: 700; color: var(--text-soft); transition: color .2s; }
.menu-back:hover { color: var(--coral); }
.menu-back svg { width: 20px; height: 20px; }
.menu-files { display: grid; gap: .6rem; }
.menu-more { margin-top: .9rem; }
.menu-file { display: flex; align-items: center; gap: .9rem; padding: .9rem 1.1rem; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--line); transition: border-color .2s, transform .2s, box-shadow .2s; }
.menu-file:hover { transform: translateX(4px); border-color: var(--coral); box-shadow: var(--shadow-sm); }
.menu-file-ic { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 36px; flex: none;
  border-radius: 9px; font-size: .72rem; font-weight: 800; letter-spacing: .04em;
  background: color-mix(in srgb, var(--coral) 16%, transparent); color: var(--primary); }
.menu-file-name { flex: 1; font-weight: 600; }
.menu-file-go { color: var(--text-soft); font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; }

/* ============================================================
   HOURS
   ============================================================ */
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hours-status { display: inline-flex; align-items: center; gap: .55rem; margin-top: 1.4rem; padding: .6rem 1.1rem; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line); font-weight: 700; }
.hours-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.6rem; box-shadow: var(--shadow); }
.hours-list li { display: flex; justify-content: space-between; align-items: center; padding: .85rem .2rem; border-bottom: 1px solid var(--line-soft); }
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { color: var(--text-soft); font-weight: 600; }
.hours-list .time { font-weight: 800; font-variant-numeric: tabular-nums; }
.hours-list li.today { background: color-mix(in srgb, var(--coral) 10%, transparent); border-radius: 12px; padding-inline: .9rem; margin-inline: -.7rem; border-bottom-color: transparent; }
.hours-list li.today .day { color: var(--primary); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: stretch; }
.contact-cards { display: flex; flex-direction: column; gap: .9rem; }
.contact-card { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.3rem; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-sm); transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.contact-card:hover { transform: translateX(5px); box-shadow: var(--shadow-sm); border-color: var(--coral); }
.contact-ic { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; flex: none; border-radius: 14px;
  background: color-mix(in srgb, var(--coral) 14%, transparent); color: var(--primary); }
.contact-ic svg { width: 24px; height: 24px; }
.contact-text { display: flex; flex-direction: column; }
.contact-label { font-size: .8rem; color: var(--text-soft); text-transform: uppercase; letter-spacing: .08em; }
.contact-value { font-weight: 700; font-size: 1.05rem; }
.contact-reserve { margin-top: .4rem; }
.contact-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); min-height: 340px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: saturate(1.05); }
:root[data-theme="dark"] .contact-map iframe { filter: invert(.9) hue-rotate(180deg) saturate(.9) brightness(.95); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-top: 3.5rem; margin-top: 2rem; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer-brand img { width: 64px; margin-bottom: .8rem; }
.footer-script { font-size: 1.7rem; }
.footer-tag { color: var(--text-soft); max-width: 38ch; margin-top: .3rem; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.footer-col h4 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: .8rem; }
.footer-col a { display: block; color: var(--text-soft); padding: .3rem 0; transition: color .2s; }
.footer-col a:hover { color: var(--coral); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1.3rem 0; border-top: 1px solid var(--line); color: var(--text-soft); font-size: .88rem; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(8,4,8,.92); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 4vw; }
.lightbox.open { display: flex; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; } }
.lb-img { max-width: 92vw; max-height: 86vh; border-radius: 14px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lb-close { position: absolute; top: 1.2rem; right: 1.4rem; font-size: 2.4rem; line-height: 1; color: #fff; width: 48px; height: 48px; border-radius: 50%; transition: background .2s; }
.lb-close:hover { background: rgba(255,255,255,.15); }
.lb-arrow { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2rem; color: #fff; width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.1); transition: background .2s; }
.lb-arrow:hover { background: rgba(255,255,255,.25); }
.lb-prev { left: 2vw; } .lb-next { right: 2vw; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-art { min-height: 300px; order: -1; }
  .hours-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  :root { --header-h: 64px; }
  .header-controls { gap: .45rem; }
  .brand-name { display: none; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .section-head { margin-bottom: 1.8rem; }
  .hours-list li.today { margin-inline: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
