﻿/* Base: Mobile-first, neon-blue theme for photo-centric design */
:root {
  --bg: #070a1a;
  --bg-2: #0b1430;
  --surface: #0e1b3a;
  --text: #e6f1ff;
  --muted: #a6b7d4;
  --neon: #00e5ff;
  --neon-soft: #59f0ff;
  /* Neon pink accents */
  --neon-pink: #ff4dff;
  --neon-pink-soft: #ffaaff;
  --accent: #00ffd5;
  --danger: #ff3b6b;
  --radius: 14px;
  --container: 1120px;
  --header-h: 60px;
}

* { box-sizing: border-box; }
html, body { height: 100%; overflow-x: hidden; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -200px, rgba(0, 229, 255, 0.15), transparent 60%),
    radial-gradient(900px 600px at -10% 20%, rgba(89, 240, 255, 0.12), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  font-family: "Poppins", "Noto Sans JP", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; border: 0; }
a { color: var(--neon); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0; z-index: 100;
  width: 100%;
  backdrop-filter: saturate(120%) blur(10px);
  background: color-mix(in oklab, var(--bg-2) 80%, transparent);
  border-bottom: 1px solid rgba(0, 229, 255, 0.12);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); padding: .25rem 0; }
.logo { font-weight: 700; letter-spacing: 0.12em; font-size: 1.25rem; text-transform: uppercase; }
.neon-text { text-shadow:
  0 0 6px var(--neon), 0 0 18px var(--neon-soft), 0 0 28px var(--neon),
  0 0 6px var(--neon-pink), 0 0 18px var(--neon-pink-soft);
  color: #eaffff;
}

.nav-toggle { background: transparent; border: 0; padding: .4rem; display: grid; gap: 5px; align-items: center; }
.nav-toggle:focus-visible { outline: none; box-shadow: 0 0 0 6px rgba(0,229,255,.25); border-radius: 8px; }
.nav-toggle .bar { width: 26px; height: 2px; background: var(--text); display: block; border-radius: 2px; transition: transform .25s ease, opacity .25s ease, background .25s ease; }
.nav-toggle[aria-expanded="true"] .bar { background: var(--neon); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav { position: fixed; inset: 0; width: 100vw; height: 100dvh; z-index: 200; transform: translateY(-110%); transition: transform .28s ease, opacity .2s ease, visibility .2s ease; background: #070a1a; -webkit-backdrop-filter: none; backdrop-filter: none; display: none; opacity: 0; visibility: hidden; pointer-events: none; overflow: hidden; }
.nav.open { transform: translateY(0); display: flex; align-items: center; justify-content: center; opacity: 1; visibility: visible; pointer-events: auto; padding: 16px; }
.nav.open::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(40% 30% at 80% 10%, rgba(0,229,255,.20), transparent 60%),
  radial-gradient(40% 30% at 10% 85%, rgba(89,240,255,.14), transparent 60%);
  z-index: 0; pointer-events: none; }
.nav ul { list-style: none; margin: 0; padding: 1rem; display: grid; gap: .25rem; }
.nav.open ul { gap: 1.1rem; justify-items: center; text-align: center; width: min(92%, 640px); max-height: calc(100dvh - 48px); margin: 0 auto; background: linear-gradient(180deg, rgba(14,27,58,.98), rgba(14,27,58,.88)); border: 1px solid rgba(0,229,255,.18); border-radius: 16px; padding: 1.25rem; box-shadow: 0 0 0 1px rgba(255,255,255,.03), 0 10px 30px rgba(0,0,0,.35); overflow: auto; }
.nav .nav-close, .nav ul { position: relative; z-index: 1; }
.nav a { display: block; padding: .75rem 1rem; border-radius: 999px; }
.nav.open a { font-size: 1.2rem; border: 1px solid rgba(0,229,255,.12); background: rgba(255,255,255,.02); }
.nav.open a:hover { background: rgba(0,229,255,.08); }
.nav .btn { justify-self: start; }
.nav .lang a { opacity: .9; }
.lang-switch { display: grid; }
.lang-select {
  color: var(--text);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(0,229,255,.3);
  border-radius: 999px;
  padding: .55rem .9rem;
  font-weight: 600;
}
.lang-select:focus-visible { outline: none; box-shadow: 0 0 0 6px rgba(0,229,255,.25); }
.nav.open .lang-switch { width: 100%; }
.nav.open .lang-select { width: 100%; display: block; font-size: 1.2rem; padding: .75rem 1rem; border: 1px solid rgba(0,229,255,.12); background: rgba(255,255,255,.02); border-radius: 999px; }

/* Close button for full-screen nav */
.nav .nav-close {
  position: absolute; top: 12px; right: 12px;
  appearance: none; -webkit-appearance: none;
  background: transparent; color: var(--text);
  border: 1px solid rgba(0,229,255,.35);
  padding: .5rem .7rem; border-radius: 10px;
  font-weight: 600; letter-spacing: .04em;
}
.nav .nav-close:hover { background: rgba(0,229,255,.06); }

/* Hero */
.hero { position: relative; min-height: calc(88vh - var(--header-h)); display: grid; place-items: center; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img, .hero-media source { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; z-index: -1; background:
  linear-gradient(180deg, rgba(7,10,26, .15) 0%, rgba(7,10,26,.65) 60%, rgba(7,10,26, .95) 100%),
  radial-gradient(60% 40% at 70% 10%, rgba(0,229,255,.20), transparent 60%);
}
.hero-content { padding: 1.75rem 0; display: grid; justify-items: center; text-align: center; gap: 1rem; }
.hero .lead { color: var(--muted); margin: .5rem 0 1rem; }
.hero-ctas { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Neon sign (hero) */
.neon-sign { display: inline-grid; gap: .35rem; padding: 1.1rem 1.4rem 1.4rem; border-radius: 22px; position: relative; align-items: center; justify-items: center; isolation: isolate; }
/* Replace plain rectangle with bracket-like neon tubes left/right */
.neon-sign::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    /* left curved cap */
    radial-gradient(18px 26px at left 28%, var(--tube-blue) 98%, transparent) left 10px center / 18px 52px no-repeat,
    /* left vertical tube */
    linear-gradient(var(--tube-blue) 0 0) left 10px center / 3px calc(100% - 64px) no-repeat,
    /* right curved cap */
    radial-gradient(18px 26px at right 28%, var(--tube-blue) 98%, transparent) right 10px center / 18px 52px no-repeat,
    /* right vertical tube */
    linear-gradient(var(--tube-blue) 0 0) right 10px center / 3px calc(100% - 64px) no-repeat;
  filter: drop-shadow(0 0 10px rgba(0,229,255,.5)) drop-shadow(0 0 24px rgba(0,229,255,.35));
}
/* Aura glow behind the sign */
.neon-sign::after { content: ""; position: absolute; inset: -22px; border-radius: 28px; pointer-events: none; z-index: -1; filter: blur(10px);
  background: radial-gradient(60% 70% at 50% 50%, rgba(255,77,255,.18), rgba(0,229,255,.16) 32%, rgba(0,0,0,0) 70%);
  animation: neon-aura 4.8s ease-in-out 1.2s infinite alternate;
}
@keyframes neon-aura { 0% { opacity: .55; transform: scale(1); } 100% { opacity: .85; transform: scale(1.06); } }
.neon-subtitle { font-family: 'Neonderthaw', 'Poppins', system-ui, sans-serif; font-size: clamp(2.2rem, 8.8vw, 4.4rem); letter-spacing: .08em; color: var(--tube-pink); text-shadow: 0 0 4px var(--neon-pink), 0 0 12px var(--neon-pink), 0 0 22px var(--neon-pink-soft), 0 0 30px var(--neon-pink); -webkit-text-stroke: 0.8px rgba(255,255,255,.4); }
.neon-word { margin: 0; font-family: 'Monoton', 'Poppins', system-ui, sans-serif; font-size: clamp(4.2rem, 15.5vw, 10rem); line-height: 1; letter-spacing: .2em; color: #ffffff; text-transform: uppercase; text-shadow: 0 0 6px var(--neon), 0 0 16px var(--neon), 0 0 26px var(--neon-soft), 0 0 8px var(--neon-pink), 0 0 18px var(--neon-pink-soft); -webkit-text-stroke: 1.4px var(--tube-blue); }
.neon-flicker { animation: neon-flicker 4.2s linear 1 both; }
@keyframes neon-flicker {
  /* exactly 3 crisp blinks, then steady on */
  0%  { opacity: .15; filter: saturate(1) brightness(.9); }
  /* blink #1 */
  6%  { opacity: 1;   filter: saturate(1.1) brightness(1.05); }
  8%  { opacity: .22; filter: saturate(1) brightness(.92); }
  /* blink #2 */
  15% { opacity: 1;   filter: saturate(1.1) brightness(1.05); }
  17% { opacity: .3;  filter: saturate(1) brightness(.92); }
  /* blink #3 */
  26% { opacity: 1;   filter: saturate(1.1) brightness(1.05); }
  100%{ opacity: 1;   filter: saturate(1.1) brightness(1.05); }
}

/* Neon pink accent overrides */
.neon-sign::before { filter: drop-shadow(0 0 10px rgba(0,229,255,.5)) drop-shadow(0 0 24px rgba(0,229,255,.35)) drop-shadow(0 0 14px rgba(255,77,255,.45)) drop-shadow(0 0 28px rgba(255,170,255,.32)); }
.neon-subtitle { color: #ffd6ff; text-shadow: 0 0 6px rgba(255,77,255,.6), 0 0 14px rgba(255,170,255,.35), 0 0 6px rgba(0,229,255,.5); opacity: .98; }
.neon-word { text-shadow: 0 0 8px var(--neon), 0 0 18px var(--neon-soft), 0 0 34px var(--neon), 0 0 8px var(--neon-pink), 0 0 18px var(--neon-pink-soft), 0 0 36px var(--neon-pink); }

/* Slow continuous glow */
.neon-word, .neon-subtitle { animation: neon-pulse 6s ease-in-out 1.8s infinite alternate; }
@keyframes neon-pulse { 0% { filter: saturate(1) brightness(1); } 100% { filter: saturate(1.15) brightness(1.08); } }

/* Buttons */
.btn { --ring: rgba(255, 77, 255, .35); display: inline-flex; align-items: center; justify-content: center; gap: .5rem; text-decoration: none; font-weight: 600; border-radius: 999px; padding: .7rem 1rem; border: 1px solid transparent; box-shadow: 0 0 0 0 var(--ring); transition: box-shadow .2s ease, opacity .2s ease, background .2s ease; }
.btn:focus-visible { outline: none; box-shadow: 0 0 0 6px var(--ring); }
.btn-neon { color: #150019; background: linear-gradient(90deg, var(--neon-pink), var(--neon-pink-soft)); border-color: var(--neon-pink); text-shadow: 0 0 6px rgba(0,0,0,.25); filter: drop-shadow(0 0 10px rgba(255,77,255,.35)); }
.btn-ghost { color: var(--text); background: transparent; border-color: var(--neon-pink); }
.btn-ghost:hover { background: rgba(255,77,255,.06); }
/* Neon pink outline style for menu CTA */
.btn-neon-outline { --ring: rgba(255, 77, 255, .28); color: #ffffff; background: transparent; border-color: var(--neon-pink); text-shadow: 0 0 6px rgba(255,77,255,.55), 0 0 12px rgba(255,170,255,.35); filter: drop-shadow(0 0 8px rgba(255,77,255,.28)); }
.btn-neon-outline:hover { background: rgba(255,77,255,.08); }

/* Sections */
.section { padding: 2rem 0; }
.section-header { margin-bottom: 1rem; text-align: center; position: relative; z-index: 1; }
.section-title { font-size: 1.25rem; margin: 0; letter-spacing: .04em; color: var(--text); text-shadow: 0 0 6px rgba(0,0,0,.25); }
.neon-underline { position: relative; display: inline-block; padding-bottom: .35rem; }
.neon-underline::after { content: ""; position: absolute; inset-inline: 0; bottom: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--neon), transparent); filter: drop-shadow(0 0 8px var(--neon)); }
.section-desc { color: var(--muted); margin: .5rem 0 0; }

/* Inline icons for section titles */
.icon { display: inline-block; width: 22px; height: 22px; vertical-align: -4px; margin-right: .4rem; color: var(--neon); }
.icon svg { width: 100%; height: 100%; display: block; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* About features (icon + title + text) */
.about-layout { display: grid; gap: 1.5rem; }
.about-copy,
.about-highlights {
  background: rgba(7,10,26,.6);
  border: 1px solid rgba(0,229,255,.18);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 20px 45px rgba(0,0,0,.35);
  height: 100%;
}
.about-copy { display: flex; flex-direction: column; gap: 1rem; }
.about-meta { list-style: none; padding: 0; margin: 0; display: grid; gap: .65rem; }
.about-meta li { padding: .85rem 1rem; border-radius: 12px; border: 1px solid rgba(0,229,255,.15); background: rgba(255,255,255,.02); }
.meta-label { display: block; font-size: .75rem; letter-spacing: .2em; color: var(--muted); text-transform: uppercase; }
.meta-value { display: block; margin-top: .2rem; font-size: 1.05rem; font-weight: 600; color: var(--text); }
.about-highlights { min-height: 100%; }
.about-features { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.about-feature { display: grid; grid-template-columns: 36px 1fr; align-items: start; gap: .5rem; padding: .25rem 0; }
.about-icon { width: 36px; height: 36px; color: var(--neon); }
.about-icon svg { width: 100%; height: 100%; display: block; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.about-title { margin: 0; font-size: 1.05rem; }
.about-text { margin: .2rem 0 0; color: var(--muted); }

@media (min-width: 720px) {
  .about-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); align-items: start; gap: 2.5rem; }
  .about-meta { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
  .about-features { grid-template-columns: repeat(3, 1fr); }
  .about-feature { grid-template-columns: 28px 1fr; }
  .about-copy,
  .about-highlights { padding: 2rem; }
}

/* Full-bleed background per section with clear separations */
main > section.container { position: relative; }
main > section.container::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1; pointer-events: none; contain: paint;
  background: color-mix(in oklab, var(--bg-2) 92%, transparent);
  border-top: 1px solid rgba(0,229,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.02);
}
/* Alternate subtle backgrounds to emphasize cuts */
main > section.container:nth-of-type(odd)::before { background: color-mix(in oklab, var(--bg) 96%, transparent); }

/* (full-bleed background disabled to prevent overflow on mobile) */

/* (reverted full-bleed section backgrounds) */

/* Menu typography layout */
.menu-typography { display: grid; gap: 1rem; }
.menu-typography .col { background: rgba(14,27,58,.45); border: 1px solid rgba(0,229,255,.12); border-radius: 16px; padding: 1rem; backdrop-filter: blur(3px); }
.menu-typography h3 { margin: 0 0 .25rem; font-size: 1.1rem; }
.menu-typography p, .menu-typography ul { margin: .25rem 0; color: var(--muted); }
.menu-typography ul { padding-left: 1rem; }

/* Menu lists (key-value and price list) */
.kv { display: grid; grid-template-columns: auto 1fr; column-gap: .75rem; row-gap: .25rem; margin: .25rem 0 0; }
.kv dt { font-weight: 600; }
.kv dd { margin: 0; }
.price-list { list-style: none; padding: 0; margin: .25rem 0 0; }
.price-list li { display: flex; align-items: baseline; gap: .75rem; padding: .25rem 0; border-bottom: 1px dashed rgba(255,255,255,.08); }
.price-list .item { flex: 1; }
.price-list .price { white-space: nowrap; }
.menu-note { color: var(--muted); font-size: .9rem; margin: .2rem 0 .4rem; }

/* Flavor chips scroller */
.chips { display: flex; gap: .5rem; overflow-x: auto; scroll-snap-type: x proximity; padding: .25rem 0 .5rem; }
.chip { scroll-snap-align: start; border: 1px solid rgba(0,229,255,.25); background: rgba(255,255,255,.03); border-radius: 999px; padding: .5rem .75rem; font-weight: 600; white-space: nowrap; }

/* Features */
.feature-list { list-style: none; display: grid; gap: .75rem; padding: 0; margin: 0; }
.feature { padding: 1rem; border-radius: var(--radius); background: rgba(14,27,58,.45); border: 1px solid rgba(0,229,255,.12); box-shadow: inset 0 0 0 1px rgba(255,255,255,.02); backdrop-filter: blur(4px); }
.feature-title { margin: 0 0 .25rem; font-size: 1.05rem; }

/* Remove card styling for JA site highlights only */
html[lang="ja"] .feature { padding: 0; border-radius: 0; background: transparent; border: 0; box-shadow: none; backdrop-filter: none; }

/* (parallax and floating photos removed per request) */

/* (removed unused generic card styles for About) */

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.gallery-item { overflow: hidden; border-radius: 12px; border: 1px solid rgba(0,229,255,.12); }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s ease; filter: saturate(1.05) contrast(1.05); }
.gallery-item:hover img { transform: scale(1.04); }

.gallery-wrap { position: relative; overflow: hidden; }
.gallery-wrap::before, .gallery-wrap::after { content: ""; position: absolute; top: 0; bottom: .4rem; width: 14px; pointer-events: none; z-index: 2; opacity: 0; transition: opacity .2s ease; }
.gallery-wrap::before { left: 0; background: linear-gradient(90deg, rgba(7,10,26,.55), rgba(7,10,26,0)); }
.gallery-wrap::after { right: 0; background: linear-gradient(270deg, rgba(7,10,26,.55), rgba(7,10,26,0)); }
.gallery-wrap.show-left::before { opacity: .28; }
.gallery-wrap.show-right::after { opacity: .28; }
.gallery-scroll { display: flex; gap: var(--gap, .5rem); overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity; padding: 0 .5rem .4rem; padding-right: calc(.5rem + var(--peek)); scroll-padding-inline: .5rem; scrollbar-width: none; -ms-overflow-style: none; }
.gallery-scroll::-webkit-scrollbar { width: 0; height: 0; }
.gallery-scroll::-webkit-scrollbar-thumb { background: transparent; }
.gallery-wrap { --peek: 36px; --gap: .25rem; }
.gallery-scroll .gallery-item { flex: 0 0 auto; width: calc(100% - var(--peek) - var(--gap, .5rem)); scroll-snap-align: start; }
.gallery-scroll .gallery-item img { aspect-ratio: 4/3; width: 100%; height: auto; display: block; }
/* Dots (pagination) */
.gallery-dots { position: absolute; left: 50%; transform: translateX(-50%); bottom: .24rem; z-index: 3; display: flex; gap: .3rem; align-items: center; }
.gallery-dots .dot { display: inline-block; width: 6px; aspect-ratio: 1 / 1; padding: 0; margin: 0; border: 0; line-height: 0; border-radius: 50%; background: rgba(255,255,255,.16); box-shadow: none; transition: transform .16s ease, background .16s ease; -webkit-appearance: none; appearance: none; }
.gallery-dots .dot[aria-selected="true"] { background: rgba(255,255,255,.65); transform: scale(1.08); }
.gallery-dots .dot:focus-visible { outline: none; box-shadow: 0 0 0 2px rgba(255,255,255,.25); border-radius: 50%; }
.swipe-hint { position: absolute; left: 50%; transform: translateX(-50%); bottom: calc(100% + .25rem); z-index: 3; font-size: .8rem; color: var(--muted); background: rgba(7,10,26,.6); border: 1px solid rgba(0,229,255,.25); padding: .25rem .6rem; border-radius: 999px; opacity: 0; pointer-events: none; }
.hint-on .swipe-hint { opacity: 1; animation: hint-slide 1.8s ease-out 1; }
@keyframes hint-slide { 0% { transform: translate(-50%,0) translateX(0);} 30% { transform: translate(-50%,0) translateX(18px);} 60% { transform: translate(-50%,0) translateX(-18px);} 100% { transform: translate(-50%,0) translateX(0);} }
/* legacy grid gallery removed via DOM cleanup in JS */

/* Menu page (photo-first) */
.menu-hero { position: relative; min-height: calc(56vh - var(--header-h)); display: grid; place-items: center; isolation: isolate; }
.menu-hero picture, .menu-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.menu-hero .overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(7,10,26,.2), rgba(7,10,26,.85)); }
.menu-hero .title { text-align: center; position: relative; z-index: 1; }
.menu-hero .title h1 { margin: 0; font-size: clamp(2rem, 8vw, 4rem); letter-spacing: .12em; }

.menu-grid { display: grid; gap: .75rem; grid-template-columns: 1fr; }
.menu-card { position: relative; overflow: hidden; border-radius: 14px; border: 1px solid rgba(0,229,255,.12); background: rgba(14,27,58,.35); }
.menu-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .45s ease, filter .45s ease; filter: saturate(1.08) contrast(1.08); }
.menu-card:hover img { transform: scale(1.05); filter: saturate(1.15) contrast(1.12); }
.menu-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: .6rem .8rem; background: linear-gradient(180deg, rgba(7,10,26,0) 0%, rgba(7,10,26,.85) 100%); font-weight: 600; letter-spacing: .04em; }
.badge { display: inline-block; padding: .2rem .5rem; border-radius: 999px; border: 1px solid rgba(0,229,255,.35); background: rgba(255,255,255,.04); font-size: .75rem; margin-left: .5rem; }

/* Picks on top page */
.menu-picks { display: grid; gap: .75rem; grid-template-columns: 1fr; }
.menu-pick { position: relative; border-radius: 14px; overflow: hidden; border: 1px solid rgba(0,229,255,.12); }
.menu-pick img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .45s ease; }
.menu-pick:hover img { transform: scale(1.04); }
.menu-pick .menu-label { position: absolute; left: .6rem; bottom: .6rem; padding: .3rem .6rem; border-radius: 999px; background: rgba(7,10,26,.65); border: 1px solid rgba(0,229,255,.35); }
/* removed span-2 variant */


/* Access */
.access-grid { display: grid; gap: 1rem; }
.access-info { text-align: center; max-width: 680px; margin: 0 auto; }
.access-info dl { display: grid; grid-template-columns: auto 1fr; column-gap: .75rem; row-gap: .25rem; align-items: baseline; justify-content: center; }
.access-ctas { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; margin-top: .5rem; }
.map-embed {
  position: relative;
  width: 100%;
  min-height: 260px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,229,255,.12);
  overflow: hidden;
  background: rgba(14,27,58,.5);
  aspect-ratio: 4 / 3;
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-placeholder { width: 100%; height: 100%; display: grid; place-items: center; color: var(--muted); }

/* News & FAQ */
.news-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.news-item { padding: .9rem 1rem; border-radius: 12px; background: rgba(14,27,58,.45); border: 1px solid rgba(0,229,255,.12); }
.faq { padding: .8rem 1rem; border-radius: 12px; background: rgba(14,27,58,.45); border: 1px solid rgba(0,229,255,.12); }
.faq + .faq { margin-top: .5rem; }

/* Footer */
.site-footer { border-top: 1px solid rgba(0,229,255,.12); margin-top: 2rem; padding: 1.25rem 0 2rem; background: color-mix(in oklab, var(--bg-2) 92%, transparent); }
.footer-inner { display: grid; gap: .5rem; align-items: center; justify-items: start; }
.sns { list-style: none; display: flex; gap: .75rem; margin: 0; padding: 0; }
.link { color: var(--neon); text-decoration: underline; text-underline-offset: 2px; }
.link:hover { color: var(--neon-pink); }

/* Utilities */
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
body.is-nav-open { overflow: hidden; }
body.with-fixed-header { padding-top: var(--header-h); }
/* Anchor offset for sticky header */
section[id], [id].section, .section { scroll-margin-top: calc(var(--header-h) + 12px); }

/* Hide horizontal scrollbar at viewport bottom (Android/Chrome, WebKit) */
html, body { overflow-x: hidden; }
html::-webkit-scrollbar, body::-webkit-scrollbar { width: 0; height: 0; }

/* Anchor smoke to section titles */
.section-title { position: relative; }
.section-title .smoke-local { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 0; height: 0; pointer-events: none; z-index: 0; }
.section-title .title-text { display: inline-block; }

/* Reveal + Smoke effect */
.reveal { opacity: 0; transform: translateY(8px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

#smoke-stage { position: fixed; inset: 0; pointer-events: none; z-index: 90; }
.smoke-puff { position: absolute; width: 26px; height: 26px; opacity: .96; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,255,255,.96), rgba(255,255,255,0) 74%);
  filter: blur(6px);
  box-shadow: 0 0 14px rgba(255,255,255,.22);
  animation: puff var(--dur,1.9s) cubic-bezier(.2,.6,.2,1) forwards;
  will-change: transform, opacity;
}
@keyframes puff {
  0% { transform: translate(0,0) scale(var(--s, 1)); opacity: .98; filter: blur(6px); }
  60% { transform: translate(var(--dx, 0px), var(--dy, 0px)) scale(calc(var(--s, 1) * 2.2)); opacity: .55; filter: blur(10px); }
  100% { transform: translate(0,0) scale(calc(var(--s, 1) * 3.2)); opacity: 0; filter: blur(16px); }
}

/* Breakpoints */
@media (min-width: 720px) {
  .nav, .nav.open { position: static; transform: none; background: transparent; display: block; opacity: 1; visibility: visible; pointer-events: auto; padding: 0; width: auto; height: auto; }
  .nav::before, .nav.open::before { content: none !important; }
  .nav ul { display: flex; gap: .4rem; padding: 0; align-items: center; }
  .nav a { padding: .6rem .8rem; border: 0; background: transparent; font-size: inherit; }
  .lang-select { padding: .45rem .8rem; font-weight: 600; }
  .nav .nav-close { display: none; }
  .nav-toggle { display: none; }
  .hero { min-height: 72vh; }
  
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-wrap { --peek: 96px; --gap: .3rem; }
  .gallery-scroll .gallery-item { width: calc(100% - var(--peek) - var(--gap, .5rem)); }
  .gallery-scroll .gallery-item { width: 36vw; max-width: 520px; }
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .menu-picks { grid-template-columns: repeat(3, 1fr); }
  .access-grid { grid-template-columns: 1fr 1.3fr; align-items: start; }
  .access-info { text-align: left; margin: 0; }
  .access-info dl { justify-content: start; }
  .access-ctas { justify-content: flex-start; }
  .footer-inner { grid-template-columns: auto 1fr auto; justify-items: stretch; }
}

@media (min-width: 1024px) {
  .section { padding: 3rem 0; }
  .section-title { font-size: 1.5rem; }
  .hero .lead { font-size: 1.125rem; }
  .gallery-wrap.centered { overflow: visible; }
  .gallery-wrap.centered::before,
  .gallery-wrap.centered::after { content: none; }
  .gallery-wrap.centered .gallery-scroll {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 1rem;
    overflow: visible;
    padding: 0;
  }
  .gallery-wrap.centered .gallery-item {
    width: 100% !important;
    flex: initial;
    scroll-snap-align: unset;
  }
  .gallery-wrap.centered .gallery-item img { height: 100%; object-fit: cover; }
  .gallery-wrap.centered .gallery-dots,
  .gallery-wrap.centered .swipe-hint { display: none; }
}
/* (reverted CTA desktop alignment override) */
/* Force centered slides variant */
@media (max-width: 1023px) {
  .gallery-wrap.centered .gallery-scroll { scroll-snap-type: x mandatory; padding: 0 0 .4rem; scroll-padding-inline: 0; }
  .gallery-wrap.centered .gallery-scroll .gallery-item { flex: 0 0 100% !important; width: 100% !important; scroll-snap-align: center; }
}

/* News embed layout */
.news-embed-grid {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
}
.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(0, 229, 255, 0.07);
  padding: 1.35rem;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
  width: 100%;
  max-width: 680px;
}
.news-card p { margin: 0 0 0.9rem 0; }
.news-profile-embed {
  margin-top: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background: #0c0f14;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  max-width: 560px;
  width: 100%;
}
.news-profile-embed iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}
@media (min-width: 960px) {
  .news-card {
    align-items: center;
    text-align: center;
  }
}
