/* ---------- Design tokens ----------
   Values below are the reference site's exact design tokens (colors, type scale,
   spacing, radii, durations) per explicit owner direction: the reference site is
   the visual source of truth for the whole site. Custom-property NAMES
   are kept as Sushi Lab originally defined them (--ink, --gold, etc.) so
   nothing elsewhere (HTML inline styles, order.css, JS) needed renaming —
   only the values changed. Sushi Lab's own content (menu, reviews,
   contact, logo, hero video) is unaffected by this file. */
:root {
  --ink: #0a0908;
  --indigo: #131110;
  --indigo-panel: #1c1917;
  --ivory: #f4efe3;
  --ivory-panel: #ffffff;

  --cream-text: #f7f5f2;
  --cream-text-muted: rgba(247, 245, 242, 0.68);
  --cream-text-faint: rgba(247, 245, 242, 0.42);
  --ink-text: #14182a;
  --ink-text-muted: rgba(20, 24, 42, 0.64);
  --ink-text-faint: rgba(20, 24, 42, 0.44);

  --gold: #be1a20;
  --gold-light: #e23a3f;
  --gold-on-light: #be1a20;
  --gold-ink: #f7f5f2;
  --coral: #e23a3f;

  --hairline-dark: rgba(247, 245, 242, 0.09);
  --hairline-dark-strong: rgba(247, 245, 242, 0.18);
  --hairline-light: rgba(20, 24, 42, 0.14);
  --accent-tint: rgba(190, 26, 32, 0.12);

  /* Global semantic tokens (the reference site defines these plainly at root level
     since its whole site is one continuous dark canvas — no per-section
     scoping needed). Defining them here too, not just inside .section-*
     wrappers, means anything outside a section (.hero, .nav, footer,
     order.html's body-level content) still resolves correctly instead of
     depending on CSS fallback-on-invalid-var() behavior. */
  --text: var(--cream-text);
  --text-muted: var(--cream-text-muted);
  --text-faint: var(--cream-text-faint);
  --surface: var(--indigo-panel);
  --hairline: var(--hairline-dark);
  --hairline-strong: var(--hairline-dark-strong);
  --price: var(--gold-light);
  --page-bg: var(--indigo);

  --font-display: "Noto Serif JP", "Iowan Old Style", Georgia, serif;
  --font-body: "Noto Sans JP", -apple-system, "Segoe UI", sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.375rem;
  --text-2xl: clamp(1.75rem, 1.2rem + 2vw, 2.5rem);
  --text-3xl: clamp(2.25rem, 1.4rem + 3vw, 3.5rem);
  --text-hero: clamp(3rem, 1.5rem + 8vw, 7rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 150ms;
  --dur-base: 280ms;
  --dur-slow: 500ms;

  --container-w: min(1240px, 100% - 2.5rem);
  --container-narrow: min(640px, 100% - 2.5rem);

  --z-nav: 100;
  --z-overlay: 200;
  --z-modal: 300;

  --demo-banner-h: 0px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  background: var(--ink);
  color: var(--cream-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; text-wrap: balance; }

/* Legal pages (Impressum/Datenschutz) now use the same dark canvas as the
   rest of the site, per owner direction that every page share one visual
   system. This rule is redundant with the plain `body` rule above (same
   values) — kept explicit so the legal pages' intended background/text
   stay self-documented here rather than relying on an implicit fallback. */
body.legal-body { background: var(--ink); color: var(--cream-text); }

.container { width: var(--container-w); margin-inline: auto; }
.container-narrow { width: var(--container-narrow); margin-inline: auto; }

:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; border-radius: 2px; }

.skip-link {
  position: absolute; top: -50px; left: var(--space-4);
  background: var(--gold); color: var(--cream-text);
  padding: var(--space-2) var(--space-4); border-radius: var(--radius-sm);
  z-index: 1000; transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus { top: var(--space-4); }

/* ---------- Section grounds ----------
   One continuous dark canvas (the reference site's own approach): .section-light
   and .section-dark differ only by a subtle step between --ink and
   --indigo, matching the reference site's --color-bg / --color-bg-alt pairing.
   --surface is the same raised tone in all three variants — cards read as
   "lifted" off whichever background they sit on, same as the reference site's
   feature/testimonial/contact cards. Legal pages (body.legal-body) and
   the order/checkout flow are addressed separately below. */
.section-dark {
  --text: var(--cream-text); --text-muted: var(--cream-text-muted); --text-faint: var(--cream-text-faint);
  --surface: var(--indigo-panel); --hairline: var(--hairline-dark); --hairline-strong: var(--hairline-dark-strong); --price: var(--gold-light);
  --page-bg: var(--indigo);
  background: var(--indigo); color: var(--text);
}
.section-darkest {
  --text: var(--cream-text); --text-muted: var(--cream-text-muted); --text-faint: var(--cream-text-faint);
  --surface: var(--indigo-panel); --hairline: var(--hairline-dark); --hairline-strong: var(--hairline-dark-strong); --price: var(--gold-light);
  --page-bg: var(--ink);
  background: var(--ink); color: var(--text);
}
.section-light {
  --text: var(--cream-text); --text-muted: var(--cream-text-muted); --text-faint: var(--cream-text-faint);
  --surface: var(--indigo-panel); --hairline: var(--hairline-dark); --hairline-strong: var(--hairline-dark-strong); --price: var(--gold-light);
  --page-bg: var(--ink);
  background: var(--ink); color: var(--text);
}
section { position: relative; scroll-margin-top: 88px; padding-block: var(--space-9); }
.section-head { max-width: 640px; margin-bottom: var(--space-7); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-size: var(--text-3xl); margin-top: 0; margin-bottom: var(--space-4); color: var(--text); }
.section-subtitle { margin-top: var(--space-3); color: var(--text-muted); font-size: var(--text-lg); }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light);
}
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--gold); }
.section-head.center .eyebrow::before { display: none; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Card surface — shared premium component language ----------
   Border + radius + faint white-tint gradient sitting directly on the
   section's own background — the reference site's exact card recipe (no separate
   solid panel color, no box-shadow on hover, just a translateY lift and a
   brighter border). Used for About feature blocks, testimonial cards, and
   contact panels. */
.card-surface {
  border: 1px solid var(--hairline); border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(247, 245, 242, 0.04), transparent);
  transition: border-color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.card-surface:hover {
  transform: translateY(-4px);
  border-color: var(--hairline-strong);
}
@media (prefers-reduced-motion: reduce) {
  .card-surface:hover { transform: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: 0.9rem 1.75rem; border-radius: var(--radius-full);
  font-weight: 600; font-size: var(--text-sm); letter-spacing: 0.04em; text-transform: uppercase;
  min-height: 44px; border: 1.5px solid transparent; white-space: nowrap;
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), color var(--dur-fast);
}
.btn[hidden] { display: none; }
.btn:active { transform: scale(0.97); }
.btn-gold { background: var(--gold); color: var(--gold-ink); box-shadow: 0 8px 24px -8px rgba(190, 26, 32, 0.55); }
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 10px 30px -6px rgba(190, 26, 32, 0.7); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--hairline-strong); }
.btn-ghost:hover { border-color: var(--cream-text); background: rgba(247, 245, 242, 0.06); }
.btn-sm { padding: 0.6rem 1.25rem; font-size: var(--text-xs); min-height: 38px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: var(--demo-banner-h); left: 0; right: 0; z-index: var(--z-nav);
  background: transparent; border-bottom: 1px solid transparent;
  padding-block: var(--space-4);
  transition: background var(--dur-base) var(--ease-out), padding var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), backdrop-filter var(--dur-base);
}
.nav.is-scrolled {
  background: rgba(10, 9, 8, 0.78); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-color: var(--hairline-dark); padding-block: var(--space-3);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); }
.brand { display: flex; align-items: center; gap: var(--space-3); color: var(--cream-text); }
.brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: contain; transition: height var(--dur-base) var(--ease-out), width var(--dur-base) var(--ease-out); }
.nav.is-scrolled .brand img { width: 38px; height: 38px; }
.brand-text { font-family: var(--font-display); font-size: var(--text-lg); letter-spacing: 0.06em; }
.brand-text em { font-style: normal; color: var(--gold-light); }

.nav-links { display: flex; align-items: center; gap: var(--space-6); }
.nav-links a {
  position: relative; font-size: var(--text-sm); font-weight: 500; color: var(--cream-text-muted);
  padding-block: 4px; white-space: nowrap; transition: color var(--dur-fast) var(--ease-out);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--gold-light); transition: width var(--dur-base) var(--ease-out);
}
.nav-links a:hover { color: var(--cream-text); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: var(--space-4); }
.lang-switch {
  display: flex; align-items: center; gap: 2px;
  background: rgba(247, 245, 242, 0.06); border: 1px solid var(--hairline-dark); border-radius: var(--radius-full);
  padding: 3px;
}
.lang-option {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 10px; border-radius: var(--radius-full);
  font-size: var(--text-xs); font-weight: 600; color: var(--cream-text-faint);
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
  min-height: 32px;
}
.lang-option .flag { font-size: 1rem; line-height: 1; }
.lang-option[aria-pressed="true"] { background: var(--gold); color: var(--cream-text); }
.lang-option[aria-pressed="false"]:hover { color: var(--cream-text); }
.lang-divider { display: none; }

.nav-toggle { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; width: 44px; height: 44px; }
.nav-toggle span { display: block; width: 22px; height: 2px; border-radius: 2px; background: var(--cream-text); transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-6);
  position: fixed; inset: 0; background: rgba(10, 9, 8, 0.98); z-index: calc(var(--z-nav) - 1);
  padding: var(--space-5); opacity: 0; visibility: hidden; transform: translateY(-12px); pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), visibility 0s linear var(--dur-base);
  overflow-y: auto;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out); }
.mobile-menu a { display: block; font-family: var(--font-display); font-size: var(--text-2xl); padding-block: 0; border-bottom: none; color: var(--cream-text); text-align: center; }
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu-footer { margin-top: var(--space-6); display: flex; flex-direction: column; gap: var(--space-4); width: 100%; max-width: 320px; }
.mobile-menu-footer a { font-family: var(--font-body); font-size: var(--text-sm); }

@media (max-width: 1150px) {
  .nav-inner { gap: var(--space-4); }
  .nav-links { gap: var(--space-4); }
  .brand-text { display: none; }
  .nav-reserve-btn { display: none; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-order-btn, .nav-reserve-btn { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 374px) {
  .legal-body .nav-inner, .legal-body .nav-actions { gap: var(--space-2); }
  .legal-body .brand { flex: none; }
  .legal-body .nav-actions .btn { padding-inline: 0.75rem; white-space: normal; text-align: center; line-height: 1.2; }
}

/* ---------- Hero ----------
   Centered composition matching the reference site's hero exactly: min-height
   100dvh, vertically centered content, radial + linear vignette, pill
   kicker + bold pill trust badge, uppercase pill CTAs, animated
   scroll-cue dot-track. The video source is Sushi Lab's own
   hero-bg.mp4 — only the treatment (crop, overlay, sizing) matches
   the reference site, per explicit owner instruction. */
.hero { position: relative; min-height: 100dvh; display: flex; align-items: center; overflow: hidden; scroll-margin-top: 0; color: var(--cream-text); }
.hero-media { position: absolute; inset: 0; z-index: 0; }
/* hero-bg.mp4 is a portrait (1080x1920) source. Crop position verified
   against the actual footage (hands/knife/salmon action) — unrelated to
   the the reference site design match, left as-is since it works correctly and
   the owner said not to alter the video's crop unless required. */
.hero-media video { width: 100%; height: 100%; object-fit: cover; object-position: 50% 76%; position: absolute; inset: 0; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,9,8,0.55) 0%, rgba(10,9,8,0.45) 35%, rgba(10,9,8,0.85) 100%),
    radial-gradient(ellipse at 50% 30%, rgba(10,9,8,0.1), rgba(10,9,8,0.75) 75%);
}
.hero-content {
  position: relative; z-index: 1; width: var(--container-w); margin-inline: auto;
  padding-top: 96px; padding-bottom: var(--space-9);
  text-align: center;
}
.hero-badges { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: var(--space-3) var(--space-4); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream-text);
  padding: 8px 18px; border: 1px solid var(--hairline-dark-strong); border-radius: var(--radius-full);
  background: rgba(247, 245, 242, 0.05); backdrop-filter: blur(8px);
}
.hero-eyebrow::before { content: "⛩"; color: var(--gold-light); }
.hero-halal-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: var(--text-lg); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-light);
  padding: 12px 28px; border: 1.5px solid var(--gold); border-radius: var(--radius-full);
  background: var(--accent-tint); box-shadow: 0 6px 20px -8px rgba(190, 26, 32, 0.5);
}
.hero-halal-badge svg { width: 20px; height: 20px; color: var(--gold-light); flex-shrink: 0; }
.hero-title { font-family: var(--font-display); font-size: var(--text-hero); line-height: 0.95; letter-spacing: 0.01em; color: var(--cream-text); margin-top: var(--space-5); text-wrap: balance; }
.hero-title .line-lab { display: block; font-style: normal; color: var(--gold-light); }
.hero-subtitle { max-width: 620px; margin: var(--space-6) auto 0; font-size: var(--text-lg); color: var(--cream-text-muted); }
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--space-4); margin-top: var(--space-8); }

.hero-scroll-cue {
  position: absolute; bottom: var(--space-6); left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
  color: var(--cream-text-faint); font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase;
  z-index: 1;
}
/* the reference site's scroll cue is a static line with a moving highlight sliding
   through it (a nested absolutely-positioned child in their markup). Same
   effect here via a single ::after using an animated background-position,
   since Sushi Lab's markup is one plain div rather than a nested track. */
.hero-scroll-cue::after {
  content: ""; width: 1px; height: 36px; background-color: var(--hairline-dark-strong);
  background-image: linear-gradient(var(--gold-light), var(--gold-light));
  background-repeat: no-repeat; background-size: 100% 50%; background-position: 0 -100%;
  animation: scrollpulse 2.2s var(--ease-out) infinite;
}
@keyframes scrollpulse { to { background-position: 0 200%; } }
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue::after { animation: none; opacity: 0.6; }
}

@media (max-width: 720px) {
  .hero { min-height: 100svh; }
  .hero-media video { object-position: 50% 58%; }
  .hero-content { padding-top: 76px; padding-bottom: var(--space-8); }
  .hero-ctas .btn { flex: 1; min-width: 140px; }
}

@media (max-width: 420px) {
  .hero-ctas .btn { font-size: var(--text-xs); letter-spacing: 0.02em; line-height: 1.4rem; }
}

/* ---------- Menu ----------
   Sticky filled pill tabs, gradient scroll-blur, two-column desktop list —
   matches the reference site's menu exactly. Menu DATA (categories/items/prices/
   images) is Sushi Lab's approved js/menu-data.js and is untouched here. */
.menu-tabs {
  position: sticky; top: 76px; z-index: 5;
  display: flex; gap: var(--space-2); overflow-x: auto; scrollbar-width: none;
  padding-top: var(--space-3); padding-bottom: var(--space-2); margin-top: calc(var(--space-3) * -1); margin-bottom: var(--space-7);
  background: linear-gradient(180deg, var(--page-bg) 70%, transparent);
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  flex: 0 0 auto; padding: 0.6rem 1.2rem; border-radius: var(--radius-full);
  border: 1px solid var(--hairline); font-size: var(--text-sm); font-weight: 500;
  color: var(--text-muted); white-space: nowrap; min-height: 40px;
  transition: all var(--dur-fast) var(--ease-out);
}
.menu-tab:hover { border-color: var(--hairline-strong); color: var(--text); }
.menu-tab.is-active { background: var(--gold); border-color: var(--gold); color: var(--cream-text); }

.menu-category { margin-bottom: var(--space-9); }
.menu-category-head { display: flex; align-items: baseline; gap: var(--space-3); margin-bottom: var(--space-5); padding-bottom: var(--space-4); border-bottom: 1px solid var(--hairline); }
.menu-category-head h3 { font-size: var(--text-2xl); color: var(--text); }
.menu-category-head .subtitle { display: inline; margin-top: 0; color: var(--text-faint); font-size: var(--text-sm); }

.menu-list { display: grid; gap: var(--space-4); border-top: none; }
.menu-item {
  display: flex; gap: var(--space-4); align-items: center; padding-block: var(--space-3); padding-inline: 0;
  margin-inline: 0; border-bottom: 1px solid var(--hairline); border-radius: 0;
  transition: background var(--dur-fast) var(--ease-out);
}
.menu-item:hover { background: transparent; }
.menu-item-thumb { flex: 0 0 auto; width: 76px; height: 76px; border-radius: var(--radius-md); overflow: hidden; background: var(--surface); }
.menu-item-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.menu-item:hover .menu-item-thumb img { transform: scale(1.08); }
.menu-item-body { flex: 1; min-width: 0; }
.menu-item-row { display: flex; justify-content: space-between; align-items: baseline; gap: var(--space-3); }
.menu-item-row h4 { font-family: var(--font-body); font-weight: 600; font-size: var(--text-base); color: var(--text); }
.menu-item-price { font-family: var(--font-display); font-style: normal; color: var(--price); font-size: var(--text-base); white-space: nowrap; }
.menu-item-desc { margin-top: 2px; font-size: var(--text-sm); color: var(--text-muted); }

@media (min-width: 760px) {
  .menu-list { grid-template-columns: repeat(2, 1fr); gap: var(--space-3) var(--space-6); }
}

.menu-allergen-note { margin-top: var(--space-6); font-size: var(--text-sm); color: var(--text-faint); text-align: center; }
.menu-cta { text-align: center; margin-top: var(--space-8); }

/* ---------- About ---------- */
.about-grid { display: grid; gap: var(--space-8); align-items: center; }
@media (min-width: 860px) { .about-grid { grid-template-columns: 0.85fr 1.15fr; } }
.about-media {
  position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius-lg);
  border: 1px solid var(--hairline); background: var(--surface); box-shadow: 0 30px 60px -24px rgba(0,0,0,0.55);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-copy .eyebrow { display: inline-flex; }
.about-copy p + p { margin-top: var(--space-4); color: var(--text-muted); }

.about-features { margin-top: var(--space-7); display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
.about-feature { padding: var(--space-5); }
.about-feature-num { display: block; font-family: var(--font-display); font-style: normal; color: var(--gold-light); font-size: var(--text-xl); margin-bottom: var(--space-2); line-height: 1; }
.about-feature h4 { font-family: var(--font-display); font-weight: 600; font-size: var(--text-base); text-transform: none; letter-spacing: normal; margin-bottom: var(--space-2); }
.about-feature p { margin-top: 0; font-size: var(--text-sm); color: var(--text-muted); }

@media (max-width: 480px) { .about-features { grid-template-columns: 1fr; } }

/* ---------- Carousel (About media) — crossfading slides, no layout shift. ---------- */
.carousel-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1100ms var(--ease-out); }
.carousel-slide.is-active { opacity: 1; z-index: 1; }
.carousel-dots { position: absolute; bottom: var(--space-4); left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.carousel-dot { position: relative; width: 26px; height: 26px; min-height: 0; padding: 0; background: transparent; border: none; display: flex; align-items: center; justify-content: center; }
.carousel-dot::before { content: ""; width: 8px; height: 8px; border-radius: var(--radius-full); background: rgba(247,245,242,0.45); transition: all var(--dur-base) var(--ease-out); }
.carousel-dot:hover::before { background: rgba(247,245,242,0.75); }
.carousel-dot.is-active::before { background: var(--gold-light); width: 20px; border-radius: var(--radius-sm); }
.carousel-dot:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 2px; }
.about-media::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 30%; z-index: 1; pointer-events: none;
  background: linear-gradient(0deg, rgba(10,9,8,0.55) 0%, transparent 100%);
}

/* ---------- Experience / video section (the reference site's "Atmosphere" section) ---------- */
.experience-grid { display: grid; gap: var(--space-7); align-items: center; }
@media (min-width: 900px) { .experience-grid { grid-template-columns: 1fr 1fr; } }
.experience-copy p { margin-top: var(--space-4); color: var(--text-muted); }
.experience-media {
  position: relative; aspect-ratio: 16/10; overflow: hidden; border-radius: var(--radius-lg);
  border: 1px solid var(--hairline); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
.experience-media video { width: 100%; height: 100%; object-fit: cover; }
.experience-scrim { display: none; }

/* ---------- Gallery — the reference site's uniform grid (no asymmetric/large tile) ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); margin-top: var(--space-7); }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item { position: relative; aspect-ratio: 1/1; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; background: var(--surface); }
.gallery-item.is-large { grid-column: auto; grid-row: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform var(--dur-slow) var(--ease-out), filter var(--dur-slow) var(--ease-out); }
.gallery-item:hover img { transform: scale(1.08); filter: brightness(0.75); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(10,9,8,0.75) 100%);
  opacity: 0; transition: opacity var(--dur-base) var(--ease-out);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item::before {
  content: ""; position: absolute; top: 10px; right: 10px; z-index: 1; width: 34px; height: 34px;
  border-radius: 50%; background: rgba(10,9,8,0.55); border: 1px solid var(--hairline-dark-strong);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f7f5f2' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.35-4.35'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 16px 16px;
  opacity: 0; transform: scale(0.8); pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.gallery-item:hover::before { opacity: 1; transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
  .gallery-item:hover img { transform: none; }
}
.gallery-item.reveal:nth-child(1) { transition-delay: 0ms; }
.gallery-item.reveal:nth-child(2) { transition-delay: 70ms; }
.gallery-item.reveal:nth-child(3) { transition-delay: 140ms; }
.gallery-item.reveal:nth-child(4) { transition-delay: 210ms; }
.gallery-item.reveal:nth-child(5) { transition-delay: 280ms; }
.gallery-item.reveal:nth-child(6) { transition-delay: 350ms; }
.gallery-item.reveal:nth-child(7) { transition-delay: 420ms; }
.gallery-item.reveal:nth-child(8) { transition-delay: 490ms; }
.gallery-item.reveal:nth-child(9) { transition-delay: 560ms; }
.gallery-item.reveal:nth-child(10) { transition-delay: 630ms; }
.gallery-item.reveal:nth-child(11) { transition-delay: 700ms; }
.gallery-item.reveal:nth-child(12) { transition-delay: 770ms; }

.lightbox { position: fixed; inset: 0; background: rgba(10,9,8,0.94); z-index: var(--z-modal); display: flex; align-items: center; justify-content: center; padding: var(--space-6); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity var(--dur-base), visibility 0s linear var(--dur-base); }
.lightbox.is-open { opacity: 1; visibility: visible; pointer-events: auto; transition: opacity var(--dur-base); }
.lightbox img { max-width: min(90vw, 1000px); max-height: 84vh; border-radius: var(--radius-md); object-fit: contain; }
.lightbox-close { position: absolute; top: var(--space-5); right: var(--space-5); width: 42px; height: 42px; border-radius: 50%; background: rgba(247,245,242,0.08); color: var(--cream-text); display: flex; align-items: center; justify-content: center; transition: background var(--dur-fast) var(--ease-out); }
.lightbox-close:hover { background: rgba(247,245,242,0.16); }

/* ---------- Reviews ---------- */
.testimonials-notice { max-width: 640px; margin: var(--space-5) auto 0; font-size: var(--text-sm); color: var(--text-muted); text-align: center; }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-5); margin-top: var(--space-8); }
@media (min-width: 700px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-4); }
.testimonial-top { display: flex; justify-content: space-between; align-items: center; }
.testimonial-stars { display: flex; gap: 3px; color: var(--gold-light); font-size: var(--text-sm); letter-spacing: normal; }
.testimonial-chip { font-size: var(--text-xs); letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold-light); border: 1px solid rgba(190,26,32,0.4); padding: 0.15rem 0.5rem; border-radius: var(--radius-sm); }
.testimonial-quote { margin-top: 0; font-family: var(--font-body); font-weight: 400; font-size: var(--text-base); color: var(--text-muted); line-height: 1.7; flex: 1; }
.testimonial-footer { margin-top: 0; display: flex; align-items: center; gap: var(--space-3); }
.testimonial-avatar {
  flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--accent-tint);
  border: 1px solid rgba(190,26,32,0.35);
  color: var(--gold-light); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: var(--text-sm); font-weight: 600;
}
.testimonial-name { font-size: var(--text-sm); font-weight: 600; color: var(--text); }
.testimonial-context { font-size: var(--text-xs); color: var(--text-faint); margin-top: 1px; }

/* ---------- Hours + contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-6); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
.contact-card { padding: var(--space-6); }
.contact-details { display: flex; flex-direction: column; gap: var(--space-6); }
.contact-details .section-title { font-size: min(var(--text-3xl), 8vw); }
.contact-row { display: flex; gap: var(--space-4); }
.contact-row > div { min-width: 0; overflow-wrap: anywhere; }
.contact-row-icon {
  flex: none; width: 46px; height: 46px; border-radius: 50%; margin-top: 0;
  background: var(--accent-tint); border: 1px solid rgba(190,26,32,0.35);
  color: var(--gold-light); display: flex; align-items: center; justify-content: center;
}
.contact-row-icon svg { width: 20px; height: 20px; }
.contact-row h5 { font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); font-weight: 600; margin-bottom: var(--space-1); }
.contact-row p, .contact-row a { margin-top: var(--space-1); font-size: var(--text-lg); color: var(--text); }
.contact-row a:hover { color: var(--gold-light); }
.contact-row a[href^="mailto:"] { font-size: clamp(0.75rem, calc((100vw - 10.4rem) / 15.5), var(--text-lg)); }
.contact-ctas { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-6); }
.contact-ctas .btn { max-width: 100%; white-space: normal; text-align: center; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--hairline); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.7rem 0; font-size: var(--text-sm); }
.hours-table td:first-child { color: var(--text-muted); }
.hours-table td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.hours-table tr.is-today td { color: var(--gold-light); font-weight: 700; }

.map-wrap {
  position: relative; width: 100%; aspect-ratio: 4/3; min-height: 320px; background: var(--surface); margin-top: var(--space-6);
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--hairline);
}
.map-wrap.has-map iframe { filter: grayscale(0.4) invert(0.92) contrast(0.9); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.map-consent { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-3); text-align: center; padding: var(--space-6); }
.map-consent svg { width: 36px; height: 36px; color: var(--gold-light); }
.map-consent p { max-width: 32ch; color: var(--text-muted); font-size: var(--text-sm); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--hairline-dark); padding-block: var(--space-8) var(--space-6); }
.footer-grid { display: grid; gap: var(--space-7); }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-3); }
.footer-brand img { width: 40px; height: 40px; border-radius: 50%; }
.footer-brand span { font-family: var(--font-display); font-size: var(--text-lg); color: var(--cream-text); }
.footer-tagline { font-size: var(--text-sm); color: var(--cream-text-faint); }
.footer h5 { font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-text-faint); font-weight: 600; margin-bottom: var(--space-4); }
.footer ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer a { font-size: var(--text-sm); color: var(--cream-text-muted); }
.footer a:hover { color: var(--cream-text); }
.footer-bottom { margin-top: var(--space-8); padding-top: var(--space-5); border-top: 1px solid var(--hairline-dark); display: flex; justify-content: space-between; flex-wrap: wrap; align-items: center; gap: var(--space-3); font-size: var(--text-xs); color: var(--cream-text-faint); }
.footer-bottom > span:last-child { flex-wrap: wrap; }
.footer-bottom-links a, .footer-bottom-links button { color: var(--cream-text-faint); font-size: var(--text-xs); transition: color var(--dur-fast) var(--ease-out); }
.footer-bottom-links a:hover, .footer-bottom-links button:hover { color: var(--cream-text); }

@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: var(--space-4); right: var(--space-4); bottom: var(--space-4); max-width: 620px; margin-inline: auto;
  background: rgba(10, 9, 8, 0.97); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--hairline-dark); border-radius: var(--radius-md);
  padding: var(--space-5); box-shadow: 0 30px 60px -24px rgba(0,0,0,0.5); z-index: var(--z-overlay);
  transform: translateY(140%); transition: transform var(--dur-slow) var(--ease-out); color: var(--cream-text);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p { font-size: var(--text-sm); color: var(--cream-text-muted); }
.cookie-banner a { color: var(--gold-light); text-decoration: underline; }
.cookie-actions { margin-top: var(--space-4); display: flex; flex-wrap: wrap; gap: var(--space-2); }

.modal-backdrop { position: fixed; inset: 0; background: rgba(10,9,8,0.6); z-index: var(--z-modal); display: flex; align-items: center; justify-content: center; padding: var(--space-5); opacity: 0; pointer-events: none; transition: opacity var(--dur-base); }
.modal-backdrop.is-open { opacity: 1; pointer-events: auto; }
.modal { background: var(--indigo-panel); color: var(--cream-text); border: 1px solid var(--hairline-dark); border-radius: var(--radius-md); padding: var(--space-6); max-width: 460px; width: 100%; }
.modal h3 { font-size: var(--text-xl); }
.modal p { margin-top: var(--space-2); font-size: var(--text-sm); color: var(--cream-text-muted); }
.cookie-cat { display: flex; justify-content: space-between; gap: var(--space-4); align-items: flex-start; padding-block: var(--space-4); border-top: 1px solid var(--hairline-dark); }
.cookie-cat:first-of-type { border-top: none; }
.cookie-cat h4 { font-family: var(--font-body); font-size: var(--text-base); font-weight: 600; }
.cookie-cat p { margin-top: var(--space-1); font-size: var(--text-xs); }
.toggle { position: relative; flex: none; width: 42px; height: 24px; border-radius: var(--radius-full); background: var(--hairline-dark-strong); transition: background var(--dur-fast); }
.toggle::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--cream-text); transition: transform var(--dur-fast); }
.toggle.is-on { background: var(--gold); }
.toggle.is-on::after { transform: translateX(18px); }
.modal-actions { margin-top: var(--space-5); display: flex; flex-wrap: wrap; gap: var(--space-2); }

/* ---------- Demo mode banner ---------- */
.demo-mode-banner { background: #3a2f10; color: #ffe9a8; text-align: center; font-size: var(--text-sm); font-weight: 600; padding: var(--space-2) var(--space-4); position: fixed; top: 0; left: 0; right: 0; z-index: calc(var(--z-nav) + 1); }
.demo-mode-banner-en { display: block; font-weight: 400; font-size: 0.78rem; opacity: 0.85; }
