/* ============================================
   KUON 久遠 — Awwwards Edition
   Cinematic Dark × Gold
   ============================================ */
:root {
  --accent: #C4A24E;
  --accent-dim: rgba(196,162,78,0.12);
  --bg: #0C0C0C;
  --bg-alt: #141414;
  --bg-card: #181818;
  --text: #F5F0E8;
  --text-muted: #8A8478;
  --border: rgba(255,255,255,0.07);
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* ============================================
   Layout
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}
.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

/* ============================================
   Typography
   ============================================ */
.t-display {
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.t-heading {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.t-subheading {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  line-height: 1.3;
  font-style: italic;
}
.t-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}
.t-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  font-family: 'Noto Sans JP', sans-serif;
}
.t-accent { color: var(--accent); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  font-family: 'Cormorant Garamond', serif;
  position: relative;
  overflow: hidden;
}
.btn--gold {
  background: var(--accent);
  color: #0C0C0C;
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(196,162,78,0.25);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn svg {
  transition: transform 0.4s var(--ease);
}
.btn:hover svg {
  transform: translateX(4px);
}

/* ============================================
   Scroll Animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-clip {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1s var(--ease);
}
.reveal-clip.visible {
  clip-path: inset(0 0 0% 0);
}
.reveal-line {
  width: 0;
  transition: width 1.2s var(--ease);
}
.reveal-line.visible {
  width: 60px;
}

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(3) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(4) { transition-delay: 0.36s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(5) { transition-delay: 0.48s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(6) { transition-delay: 0.60s; opacity: 1; transform: translateY(0); }

/* ============================================
   Back to Top
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #0C0C0C;
  border: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* ============================================
   Header
   ============================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.5s var(--ease);
}
header.scrolled {
  background: rgba(12,12,12,0.92);
  backdrop-filter: blur(16px);
  padding: 16px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 24px;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.desktop-nav a {
  font-size: 12px;
  font-weight: 500;
  color: rgba(245,240,232,0.5);
  transition: color 0.3s;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.desktop-nav a:hover { color: var(--accent); }
.header-cta {
  padding: 10px 28px;
  font-size: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--text);
  transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  height: 100dvh;
  background: var(--bg);
  z-index: 1001;
  transition: right 0.5s var(--ease);
  padding: 100px 48px 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  display: block;
  padding: 20px 0;
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.05em;
  transition: color 0.3s, padding-left 0.3s;
}
.mobile-menu a:hover {
  color: var(--accent);
  padding-left: 8px;
}
.mobile-menu-close {
  position: absolute;
  top: 32px;
  right: 32px;
  background: none;
  border: none;
  color: var(--text-muted);
  transition: color 0.3s;
}
.mobile-menu-close:hover { color: var(--text); }
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  z-index: 1000;
}
.overlay.open { opacity: 1; pointer-events: auto; }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 20s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,12,12,0.3) 0%, rgba(12,12,12,0.15) 40%, rgba(12,12,12,0.7) 80%, rgba(12,12,12,1) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 clamp(32px, 6vw, 100px) clamp(60px, 8vh, 120px);
  width: 100%;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease) 0.3s forwards;
}
.hero-title {
  font-size: clamp(64px, 10vw, 160px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideUp 1.2s var(--ease) 0.5s forwards;
}
.hero-title span {
  display: block;
}
.hero-title .hero-kanji {
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: 0.5em;
  font-weight: 400;
  color: var(--accent);
  margin-top: 8px;
  display: inline-block;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease) 0.8s forwards;
}
.hero-meta-item {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.5);
  font-family: 'Noto Sans JP', sans-serif;
}
.hero-meta-divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  opacity: 0.4;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: clamp(32px, 6vw, 100px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease) 1.2s forwards;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: var(--accent);
  opacity: 0.4;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.5); opacity: 0.15; }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Marquee
   ============================================ */
.marquee {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee-item {
  flex-shrink: 0;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.15);
  white-space: nowrap;
  padding: 0 24px;
}
.marquee-item .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  margin: 0 24px;
  vertical-align: middle;
  opacity: 0.5;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   Numbers Strip
   ============================================ */
.numbers {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--bg);
}
.numbers-grid {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 6vw, 100px);
}
.number-item {
  text-align: center;
}
.number-value {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
}
.number-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ============================================
   Concept
   ============================================ */
.concept {
  padding: clamp(100px, 12vw, 180px) 0;
  background: var(--bg);
}
.concept-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}
.concept-visual {
  position: relative;
}
.concept-visual img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
}
.concept-visual::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  opacity: 0.2;
  z-index: -1;
}
.concept-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.concept-quote {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.5;
  font-style: italic;
  color: var(--text);
}
.concept-quote::before {
  content: '"';
  display: block;
  font-size: 64px;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 16px;
}
.concept-desc {
  font-size: 15px;
  line-height: 2;
  color: var(--text-muted);
  font-family: 'Noto Sans JP', sans-serif;
}
.concept-chef {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.concept-chef-name {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.concept-chef-title {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ============================================
   Full-bleed Image Break
   ============================================ */
.image-break {
  position: relative;
  height: clamp(300px, 40vw, 500px);
  overflow: hidden;
}
.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,12,12,0.6) 0%, transparent 50%, rgba(12,12,12,0.6) 100%);
}
.image-break-text {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  white-space: nowrap;
}
.image-break-text span {
  font-size: clamp(12px, 1.5vw, 16px);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
}

/* ============================================
   Menu
   ============================================ */
.menu-section {
  padding: clamp(100px, 12vw, 180px) 0;
  background: var(--bg-alt);
}
.menu-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 40px;
}
.menu-tab {
  padding: 12px 32px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Cormorant Garamond', serif;
}
.menu-tab:hover { color: var(--text); }
.menu-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.menu-item {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: var(--bg-card);
  transition: background 0.4s var(--ease);
  position: relative;
}
.menu-item:hover {
  background: #1e1e1e;
}
.menu-item-img {
  width: 120px;
  height: 120px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.menu-item:hover .menu-item-img img {
  transform: scale(1.08);
}
.menu-item-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.menu-item-name {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.menu-item-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  font-family: 'Noto Sans JP', sans-serif;
}
.menu-item-price {
  font-size: 18px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.menu-footer {
  text-align: center;
  margin-top: 64px;
}
.menu-footer p {
  font-size: 14px;
  color: var(--text-muted);
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 24px;
}

/* ============================================
   Gallery
   ============================================ */
.gallery {
  padding: clamp(100px, 12vw, 180px) 0;
  background: var(--bg);
}
.gallery-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 8px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.6s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-grid:hover .gallery-item:not(:hover) img {
  filter: brightness(0.5);
}
.gallery-item:nth-child(1) { grid-column: 1 / 8; grid-row: 1; aspect-ratio: 16/10; }
.gallery-item:nth-child(2) { grid-column: 8 / 13; grid-row: 1; aspect-ratio: 4/3; }
.gallery-item:nth-child(3) { grid-column: 1 / 5; grid-row: 2; aspect-ratio: 1; }
.gallery-item:nth-child(4) { grid-column: 5 / 9; grid-row: 2; aspect-ratio: 1; }
.gallery-item:nth-child(5) { grid-column: 9 / 13; grid-row: 2; aspect-ratio: 1; }

/* ============================================
   Access
   ============================================ */
.access {
  padding: clamp(100px, 12vw, 180px) 0;
  background: var(--bg-alt);
}
.access-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}
.access-map {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a1a1a, #222);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  gap: 8px;
}
.access-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.access-row {
  display: flex;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.access-row:last-child { border-bottom: none; padding-bottom: 0; }
.access-label {
  flex-shrink: 0;
  width: 80px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 2px;
}
.access-value {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  font-family: 'Noto Sans JP', sans-serif;
}
.access-value a {
  color: var(--text);
  border-bottom: 1px solid var(--accent);
  transition: color 0.3s;
}
.access-value a:hover { color: var(--accent); }

/* ============================================
   Reserve
   ============================================ */
.reserve {
  padding: clamp(100px, 12vw, 180px) 0;
  background: var(--bg);
  position: relative;
}
.reserve::before {
  content: 'RESERVE';
  position: absolute;
  top: clamp(60px, 8vw, 120px);
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(80px, 12vw, 200px);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.02);
  pointer-events: none;
  white-space: nowrap;
}
.reserve-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
  position: relative;
}
.reserve-form {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: span 2; }
.form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: 'Noto Sans JP', sans-serif;
}
.form-label .required {
  color: var(--accent);
  margin-left: 4px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 0;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-family: 'Noto Sans JP', sans-serif;
  outline: none;
  transition: border-color 0.3s var(--ease);
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A8478' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 24px;
}
.form-textarea { resize: vertical; min-height: 80px; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: var(--accent);
}
.form-input::placeholder,
.form-textarea::placeholder { color: #4A463F; }
.form-submit {
  margin-top: 40px;
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 14px;
}

/* ============================================
   Footer
   ============================================ */
footer {
  background: #080808;
  padding: clamp(60px, 8vw, 100px) 0 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand {
  max-width: 300px;
}
.footer-logo {
  font-size: 28px;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 13px;
  color: #5A5650;
  line-height: 1.9;
  font-family: 'Noto Sans JP', sans-serif;
}
.footer-nav {
  display: flex;
  gap: 48px;
}
.footer-nav-group h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-nav-group a {
  display: block;
  font-size: 14px;
  color: #5A5650;
  padding: 4px 0;
  transition: color 0.3s;
  font-family: 'Noto Sans JP', sans-serif;
}
.footer-nav-group a:hover { color: var(--accent); }
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5A5650;
  transition: all 0.3s;
}
.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #3A3630;
  letter-spacing: 0.05em;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .concept-layout { grid-template-columns: 1fr; gap: 48px; }
  .concept-visual::after { display: none; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; }
  .gallery-item:nth-child(2) { grid-column: 1 / 2; }
  .gallery-item:nth-child(3) { grid-column: 2 / 3; }
  .gallery-item:nth-child(4) { grid-column: 1 / 2; }
  .gallery-item:nth-child(5) { grid-column: 2 / 3; }
  .access-layout { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-nav { gap: 32px; }
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .header-cta.desktop-only { display: none; }
  .hamburger { display: flex; }

  .hero { align-items: flex-end; }
  .hero-title { font-size: clamp(48px, 14vw, 80px); }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-meta-divider { display: none; }
  .hero-scroll { display: none; }

  .numbers-grid {
    flex-wrap: wrap;
    gap: 32px;
  }
  .number-item { flex: 1; min-width: 100px; }

  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item:nth-child(n) { grid-column: 1; aspect-ratio: 16/10; }

  .menu-tabs { flex-wrap: wrap; gap: 0; }

  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .menu-tab { padding: 10px 20px; font-size: 12px; }
  .menu-item { padding: 24px 20px; }
  .menu-item-img { width: 80px; height: 80px; }
}

/* ============================================
   Phase 3 — Sub-page Styles
   ============================================ */

/* Nav Active State */
.nav-link.active {
  color: var(--accent) !important;
  font-weight: 600;
}

/* Page Hero */
.page-hero {
  background: var(--bg);
  padding: clamp(140px, 16vw, 200px) 0 clamp(60px, 8vw, 100px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(196,162,78,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .t-label {
  margin-bottom: 16px;
}
.page-hero .t-heading {
  margin-top: 16px;
}
.page-hero-desc {
  font-size: 15px;
  color: var(--text-muted);
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.9;
  margin-top: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-family: 'Noto Sans JP', sans-serif;
}
.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.3s;
}
.breadcrumb a:hover {
  color: var(--accent);
}
.breadcrumb-separator {
  color: rgba(255,255,255,0.15);
  font-size: 10px;
}
.breadcrumb-current {
  color: var(--accent);
}

/* CTA Band */
.cta-band {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-alt);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(196,162,78,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band .t-heading {
  margin-bottom: 16px;
}
.cta-band .t-body {
  margin-bottom: 40px;
}

/* Section More / More Link */
.section-more {
  text-align: center;
  margin-top: 48px;
}
.more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  transition: all 0.3s var(--ease);
  font-family: 'Cormorant Garamond', serif;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}
.more-link:hover {
  border-bottom-color: var(--accent);
}
.more-link svg {
  transition: transform 0.3s var(--ease);
}
.more-link:hover svg {
  transform: translateX(4px);
}

/* ============================================
   Sub-page Sections
   ============================================ */

/* About Page */
.about-section {
  padding: clamp(80px, 10vw, 140px) 0;
}
.about-section:nth-child(even) {
  background: var(--bg-alt);
}
.about-section:nth-child(odd) {
  background: var(--bg);
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}
.about-layout.reverse {
  direction: rtl;
}
.about-layout.reverse > * {
  direction: ltr;
}
.about-visual {
  position: relative;
}
.about-visual img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-visual::after {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  opacity: 0.15;
  z-index: -1;
}
.about-layout.reverse .about-visual::after {
  right: auto;
  left: -16px;
}
.about-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-text .t-heading {
  font-size: clamp(28px, 4vw, 48px);
}
.about-text p {
  font-size: 15px;
  line-height: 2;
  color: var(--text-muted);
  font-family: 'Noto Sans JP', sans-serif;
}
.about-text blockquote {
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  padding-left: 24px;
  border-left: 2px solid var(--accent);
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-top: 24px;
}
.about-feature-item {
  text-align: center;
  padding: 32px 16px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.about-feature-item:hover {
  border-color: rgba(196,162,78,0.3);
}
.about-feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.about-feature-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.about-feature-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ============================================
   Service / Menu Page
   ============================================ */
.service-section {
  padding: clamp(80px, 10vw, 140px) 0;
}
.service-section:nth-child(even) {
  background: var(--bg-alt);
}
.service-section:nth-child(odd) {
  background: var(--bg);
}
.service-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.course-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(32px, 4vw, 48px);
  text-align: center;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.course-card:hover {
  border-color: rgba(196,162,78,0.3);
  transform: translateY(-4px);
}
.course-card.featured {
  border-color: var(--accent);
}
.course-card.featured::before {
  content: 'Recommended';
  position: absolute;
  top: 16px;
  right: -32px;
  background: var(--accent);
  color: #0C0C0C;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 40px;
  transform: rotate(45deg);
}
.course-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.course-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  margin-bottom: 8px;
}
.course-price {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 300;
  color: var(--accent);
  margin: 16px 0 24px;
  letter-spacing: -0.02em;
}
.course-price small {
  font-size: 14px;
  color: var(--text-muted);
  font-family: 'Noto Sans JP', sans-serif;
}
.course-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 2;
  font-family: 'Noto Sans JP', sans-serif;
}
.course-divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  opacity: 0.3;
  margin: 24px auto;
}
.course-items {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 2.2;
  font-family: 'Noto Sans JP', sans-serif;
}

/* A la carte */
.alacarte-category {
  margin-bottom: 48px;
}
.alacarte-category:last-child {
  margin-bottom: 0;
}
.alacarte-category-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.alacarte-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.alacarte-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.alacarte-item:last-child {
  border-bottom: none;
}
.alacarte-name {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.alacarte-desc {
  font-size: 13px;
  color: var(--text-muted);
  font-family: 'Noto Sans JP', sans-serif;
  margin-top: 4px;
}
.alacarte-price {
  font-size: 16px;
  color: var(--accent);
  white-space: nowrap;
  margin-left: 24px;
  flex-shrink: 0;
}

/* Drink Menu */
.drink-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.drink-category {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.drink-category-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 4px;
}
.drink-category-sub {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.drink-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.drink-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
}
.drink-item-name {
  color: var(--text-muted);
}
.drink-item-price {
  color: var(--accent);
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
}

/* ============================================
   Gallery Page
   ============================================ */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-page-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}
.gallery-page-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.6s var(--ease);
}
.gallery-page-item:hover img {
  transform: scale(1.06);
}
.gallery-page-grid:hover .gallery-page-item:not(:hover) img {
  filter: brightness(0.5);
}
.gallery-page-item.wide {
  grid-column: span 2;
}
.gallery-page-item.wide img {
  aspect-ratio: 2/1;
}
.gallery-page-item.tall {
  grid-row: span 2;
}
.gallery-page-item.tall img {
  aspect-ratio: auto;
  height: 100%;
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 16px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery-page-item:hover .gallery-caption {
  opacity: 1;
}
.gallery-caption span {
  font-size: 13px;
  color: rgba(245,240,232,0.8);
  font-family: 'Noto Sans JP', sans-serif;
}
.gallery-section-title {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.gallery-content-section {
  padding: clamp(80px, 10vw, 140px) 0;
}
.gallery-content-section:nth-child(even) {
  background: var(--bg-alt);
}
.gallery-content-section:nth-child(odd) {
  background: var(--bg);
}

/* ============================================
   Form Styles (Dark Theme)
   ============================================ */
.contact-form {
  max-width: 720px;
  margin: 0 auto;
}
.contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.contact-form .form-input,
.contact-form .form-select,
.contact-form .form-textarea {
  padding: 16px 0;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: var(--text);
}
.contact-form .form-input:focus,
.contact-form .form-select:focus,
.contact-form .form-textarea:focus {
  border-bottom-color: var(--accent);
  box-shadow: 0 1px 0 0 var(--accent);
}

/* ============================================
   FAQ Accordion
   ============================================ */
.faq-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg);
}
.faq-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  transition: color 0.3s;
  text-align: left;
}
.faq-question:hover {
  color: var(--accent);
}
.faq-question-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  margin-left: 16px;
}
.faq-question-icon::before,
.faq-question-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--accent);
  transition: transform 0.3s var(--ease);
}
.faq-question-icon::before {
  width: 14px;
  height: 1px;
  transform: translate(-50%, -50%);
}
.faq-question-icon::after {
  width: 1px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.faq-item.open .faq-question-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 2;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ============================================
   Contact / Access Info
   ============================================ */
.contact-section {
  padding: clamp(80px, 10vw, 140px) 0;
}
.contact-section:nth-child(even) {
  background: var(--bg-alt);
}
.contact-section:nth-child(odd) {
  background: var(--bg);
}
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-block h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

/* ============================================
   Phase 3 Responsive Overrides
   ============================================ */
@media (max-width: 1024px) {
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-layout.reverse { direction: ltr; }
  .about-visual::after { display: none; }
  .about-features { grid-template-columns: 1fr 1fr; }
  .course-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .drink-grid { grid-template-columns: 1fr; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-page-item.wide { grid-column: span 2; }
  .gallery-page-item.tall { grid-row: span 1; }
  .gallery-page-item.tall img { aspect-ratio: 1; height: auto; }
  .contact-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .page-hero { padding: clamp(120px, 14vw, 160px) 0 clamp(48px, 6vw, 80px); }
  .about-features { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; margin-top: 24px; }
  .alacarte-item { flex-direction: column; gap: 4px; }
  .alacarte-price { margin-left: 0; }
  .gallery-page-grid { grid-template-columns: 1fr; }
  .gallery-page-item.wide { grid-column: 1; }
  .gallery-page-item.wide img { aspect-ratio: 16/10; }
  .contact-form .form-grid { grid-template-columns: 1fr; }
  .contact-form .form-group.full { grid-column: 1; }
  .breadcrumb { gap: 8px; font-size: 11px; }
}
