/* ============================================
   MEO LP Template - Design System
   mdA: corporate-site-reference.md ベース
   mdB: meo-lp-structure.md 準拠
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Colors - 和モダン（暗色ベース + ゴールドアクセント） */
  --color-bg: #ffffff;
  --color-bg-alt: #f7f5f0;
  --color-bg-dark: #1a1a1a;
  --color-bg-hero: #0d0d0d;
  --color-fg: #1a1a1a;
  --color-fg-light: #ffffff;
  --color-fg-muted: #6b6b6b;
  --color-fg-muted-light: #a0a0a0;
  --color-accent: #c5a55a;
  --color-accent-hover: #d4b76a;
  --color-border: rgba(26, 26, 26, 0.1);
  --color-border-light: rgba(255, 255, 255, 0.12);

  /* Typography */
  --font-sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-serif: "Noto Serif JP", "游明朝", "Yu Mincho", serif;
  --font-en: "Poppins", sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --section-py: clamp(4rem, 8vw, 7rem);
  --px: clamp(1.25rem, 4vw, 3rem);

  /* Animation */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.4s;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--color-fg);
  background: var(--color-bg);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

::selection {
  background: var(--color-accent);
  color: var(--color-bg-dark);
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--px);
  padding-right: var(--px);
}

/* --- Typography --- */
.heading-xl {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.08em;
}

.heading-lg {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.heading-md {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.heading-sm {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.text-body {
  font-size: 0.9375rem;
  line-height: 2;
  color: var(--color-fg-muted);
}

.text-en {
  font-family: var(--font-en);
  font-weight: 300;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background var(--duration) var(--ease-out-expo),
              box-shadow var(--duration) var(--ease-out-expo);
}

.header.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-fg-light);
  letter-spacing: 0.1em;
}

.header-logo span {
  font-family: var(--font-en);
  font-size: 0.625rem;
  display: block;
  letter-spacing: 0.2em;
  color: var(--color-fg-muted-light);
  margin-top: 2px;
}

.header-nav {
  display: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  min-height: 44px;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: background var(--duration) var(--ease-out-expo);
}

.header-cta:hover {
  background: var(--color-accent-hover);
}

/* Hamburger — min 44px touch target */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-fg-light);
  transition: transform var(--duration) var(--ease-out-expo);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.98);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease-out-expo);
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-fg-light);
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--color-accent);
}

.mobile-nav-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--color-fg-light);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }

  .header-nav {
    display: flex;
    gap: 2rem;
  }

  .header-nav a {
    font-size: 0.8125rem;
    color: var(--color-fg-muted-light);
    letter-spacing: 0.08em;
    transition: color 0.2s;
    position: relative;
  }

  .header-nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width var(--duration) var(--ease-out-expo);
  }

  .header-nav a:hover {
    color: var(--color-fg-light);
  }

  .header-nav a:hover::after {
    width: 100%;
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-bg-hero);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #0d0d0d;
}

/* Hero Slideshow — 動画風Ken Burns */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  will-change: opacity;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: kenBurns 10s ease-in-out infinite alternate;
}

.hero-slide:nth-child(1) img { transform-origin: center center; }
.hero-slide:nth-child(2) img { transform-origin: 30% 20%; }
.hero-slide:nth-child(3) img { transform-origin: 70% 80%; }
.hero-slide:nth-child(4) img { transform-origin: 50% 30%; }

@keyframes kenBurns {
  0%   { transform: scale(1.02); }
  100% { transform: scale(1.12); }
}

/* Hero overlay gradient */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.15) 50%, transparent 100%),
    linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 30%);
  pointer-events: none;
}

/* Slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 2.5rem;
  right: var(--px);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.hero-indicator {
  width: 32px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.3s;
  border: none;
  padding: 20px 0;
  background-clip: content-box;
}

.hero-indicator.active {
  background: var(--color-accent);
  background-clip: content-box;
}

/* Legacy single image (サブページ用) */
.hero-image {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 8rem 0 4rem;
}

.hero-label {
  font-family: var(--font-en);
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--color-fg-light);
  line-height: 1.3;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 0.9375rem;
  color: var(--color-fg-muted-light);
  line-height: 2;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-badge {
  position: absolute;
  bottom: 3rem;
  right: var(--px);
  z-index: 2;
  text-align: right;
}

.hero-badge p {
  font-family: var(--font-en);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  color: var(--color-fg-muted-light);
  text-transform: uppercase;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-indicator span {
  font-family: var(--font-en);
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  color: var(--color-fg-muted-light);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--color-border-light);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s var(--ease-out-expo);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-accent-hover);
  transform: translateX(-101%);
  transition: transform var(--duration) var(--ease-out-expo);
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--color-fg-light);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--color-bg-dark);
  color: var(--color-fg-light);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-dark:hover {
  opacity: 0.85;
}

/* --- Section --- */
.section {
  padding: var(--section-py) 0;
}

.section-dark {
  background: var(--color-bg-dark);
  color: var(--color-fg-light);
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header .heading-sm {
  margin-bottom: 0.75rem;
}

.section-header .heading-lg {
  margin-bottom: 1rem;
}

.section-header .text-body {
  max-width: 560px;
  margin: 0 auto;
}

.section-divider {
  width: 40px;
  height: 1px;
  background: var(--color-accent);
  margin: 1.25rem auto;
}

/* --- Concept Section --- */
.concept {
  text-align: center;
}

.concept-text {
  max-width: 640px;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 2.2;
  letter-spacing: 0.04em;
  color: var(--color-fg);
}

/* --- Service Cards --- */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-dark);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: transform var(--duration) var(--ease-out-expo);
}

.service-card-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease-out-expo);
  /* プレースホルダー: 実際はクライアント写真 */
  background-color: #2a2a2a;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%);
}

.service-card-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  width: 100%;
}

.service-card-label {
  font-family: var(--font-en);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-fg-light);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.8125rem;
  color: var(--color-fg-muted-light);
  line-height: 1.6;
}

.service-card-arrow {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-fg-light);
  font-size: 0.875rem;
  transition: background 0.2s, border-color 0.2s;
}

@media (pointer: fine) {
  .service-card:hover .service-card-image {
    transform: scale(1.05);
  }

  .service-card:hover .service-card-arrow {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-bg-dark);
  }
}

@media (min-width: 768px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .service-card {
    aspect-ratio: 3 / 4;
  }
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-bg-alt);
  position: relative;
}

.gallery-item img,
.gallery-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8e4dc 0%, #d4cfc4 100%);
  color: var(--color-fg-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

@media (pointer: fine) {
  .gallery-item:hover img,
  .gallery-item:hover .gallery-placeholder {
    transform: scale(1.05);
  }
}

.gallery-item.span-2 {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
  }

  .gallery-item.span-2 {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }

  .gallery-item.span-2 {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
  }
}

/* --- Reviews --- */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.review-card {
  padding: 2rem;
  border: 1px solid var(--color-border);
  position: relative;
}

.review-stars {
  color: var(--color-accent);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-fg);
  margin-bottom: 1rem;
}

.review-author {
  font-size: 0.75rem;
  color: var(--color-fg-muted);
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Access Section --- */
.access-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.access-map {
  aspect-ratio: 16 / 10;
  background: var(--color-bg-alt);
  overflow: hidden;
}

.access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.access-info h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
}

.access-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.access-list-item {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

.access-list-item dt {
  min-width: 5rem;
  color: var(--color-fg-muted);
  flex-shrink: 0;
}

.access-list-item dd {
  color: var(--color-fg);
}

.access-route {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--color-bg-alt);
  font-size: 0.875rem;
  line-height: 2;
  color: var(--color-fg-muted);
}

.access-route strong {
  color: var(--color-fg);
}

@media (min-width: 768px) {
  .access-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* --- NAP Block --- */
.nap-block {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid var(--color-border);
}

.nap-block.dark {
  border-top-color: var(--color-border-light);
}

.nap-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.nap-details {
  font-size: 0.875rem;
  line-height: 2;
  color: var(--color-fg-muted);
}

.nap-details a {
  color: var(--color-accent);
}

.nap-cta {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- CTA Section --- */
.cta-section {
  background: var(--color-bg-dark);
  padding: var(--section-py) 0;
  text-align: center;
}

.cta-section .heading-lg {
  color: var(--color-fg-light);
  margin-bottom: 1rem;
}

.cta-section .text-body {
  color: var(--color-fg-muted-light);
  max-width: 480px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
  background: var(--color-bg-hero);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-fg-light);
  letter-spacing: 0.1em;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.75rem;
  color: var(--color-fg-muted-light);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--color-accent);
}

.footer-copyright {
  font-size: 0.6875rem;
  color: var(--color-fg-muted-light);
  letter-spacing: 0.05em;
  margin-top: 1rem;
}

/* --- FAQ --- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-fg);
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  margin-left: 1rem;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-fg);
  transition: transform var(--duration) var(--ease-out-expo);
}

.faq-icon::before {
  width: 12px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration) var(--ease-out-expo),
              padding var(--duration) var(--ease-out-expo);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 2;
  color: var(--color-fg-muted);
}

/* --- Service Detail Page --- */
.service-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  background: var(--color-bg-hero);
  overflow: hidden;
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  background-color: #2a2a2a;
}

.service-hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 3rem;
}

.service-detail {
  font-size: 0.9375rem;
  line-height: 2.2;
  color: var(--color-fg-muted);
  max-width: 720px;
}

.service-detail p + p {
  margin-top: 1.5rem;
}

/* Menu Table */
.menu-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.menu-table tr {
  border-bottom: 1px solid var(--color-border);
}

.menu-table td {
  padding: 1rem 0;
  font-size: 0.9375rem;
  vertical-align: top;
}

.menu-table td:first-child {
  font-weight: 500;
  padding-right: 2rem;
}

.menu-table td:last-child {
  text-align: right;
  color: var(--color-fg-muted);
  white-space: nowrap;
}

/* Related Services */
.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Mobile Floating CTA --- */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem var(--px);
  display: flex;
  gap: 0.75rem;
  transform: translateY(100%);
  transition: transform var(--duration) var(--ease-out-expo);
  border-top: 1px solid var(--color-border-light);
}

.floating-cta.visible {
  transform: translateY(0);
}

.floating-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  min-height: 44px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.floating-cta .btn-call {
  background: transparent;
  color: var(--color-fg-light);
  border: 1px solid var(--color-border-light);
}

.floating-cta .btn-reserve {
  background: var(--color-accent);
  color: var(--color-bg-dark);
}

@media (min-width: 768px) {
  .floating-cta {
    display: none;
  }
}

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.75rem;
  color: var(--color-fg-muted);
}

.breadcrumb a {
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

.breadcrumb span {
  margin: 0 0.5rem;
}

/* --- Fade In Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out-expo),
              transform 0.6s var(--ease-out-expo);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Utilities --- */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }

/* --- Access Page Specific --- */
.access-landmarks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.landmark-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.landmark-dot {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- Language Switcher (PC header only) --- */
.lang-switcher {
  display: none;
  gap: 0.25rem;
  margin-left: 1rem;
}

.lang-switcher a {
  font-family: var(--font-en);
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  color: var(--color-fg-muted-light);
  padding: 0.25rem 0.5rem;
  border: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.lang-switcher a:hover {
  color: var(--color-fg-light);
}

.lang-switcher a.active {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

@media (min-width: 768px) {
  .lang-switcher {
    display: flex;
  }
}

/* Mobile nav language switcher */
.mobile-lang-switcher {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border-light);
}

.mobile-lang-switcher a {
  font-family: var(--font-en) !important;
  font-size: 0.875rem !important;
  color: var(--color-fg-muted-light) !important;
  letter-spacing: 0.08em !important;
  padding: 0.375rem 0.75rem !important;
  border: 1px solid transparent !important;
}

.mobile-lang-switcher a.active {
  color: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
}

/* --- Focus Visible (Accessibility) --- */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.btn-primary:focus-visible,
.btn-outline:focus-visible,
.btn-dark:focus-visible,
.header-cta:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.header-nav a:focus-visible {
  color: var(--color-fg-light);
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.faq-question:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}

.hamburger:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* --- Menu Table Mobile --- */
@media (max-width: 479px) {
  .menu-table tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.875rem 0;
  }

  .menu-table td {
    padding: 0;
  }

  .menu-table td:first-child {
    flex: 1;
    padding-right: 1rem;
    font-size: 0.875rem;
  }

  .menu-table td:last-child {
    flex-shrink: 0;
    font-size: 0.875rem;
  }
}
