/* ===================================
   佐渡の炭火串焼 えん萬
   Design Concept: 墨炎 (Bokuen)
   墨の黒と炭火の炎が織りなす、侘び寂びモダン
   =================================== */

:root {
  /* Colors - 炭と炎 (v2と同じ色味) */
  --sumi-black: #1a1614;
  --charcoal: #2d2825;
  --warm-black: #3d3632;
  --ember-orange: #e85a1c;
  --flame-gold: #f4a524;
  --ash-gray: #8c857e;
  --washi-cream: #f5f0e8;
  --washi-warm: #ede6db;

  /* Typography */
  --font-display: 'Zen Antique', serif;
  --font-heading: 'Shippori Mincho', serif;
  --font-body: 'Shippori Mincho', serif;

  /* Spacing */
  --section-py: clamp(80px, 12vw, 140px);
  --container: min(92%, 1200px);

  /* Animation */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===================================
   Reset & Base
   =================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--washi-cream);
  color: var(--sumi-black);
  line-height: 1.9;
  font-size: clamp(15px, 1.1vw, 17px);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* ===================================
   Smoke Effect
   =================================== */
.smoke-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.smoke {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.03) 0%, transparent 70%);
  animation: smokeRise 25s ease-in-out infinite;
}

.smoke-1 {
  left: -20%;
  animation-delay: 0s;
}

.smoke-2 {
  left: 30%;
  animation-delay: -8s;
}

.smoke-3 {
  left: 60%;
  animation-delay: -16s;
}

@keyframes smokeRise {
  0%, 100% {
    transform: translateY(20%) scale(1);
    opacity: 0;
  }
  20% {
    opacity: 0.4;
  }
  80% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-100%) scale(1.5);
    opacity: 0;
  }
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.85);
  transform: scale(1.05);
  animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10, 9, 8, 0.4) 0%,
      rgba(10, 9, 8, 0.1) 30%,
      rgba(10, 9, 8, 0.3) 70%,
      rgba(10, 9, 8, 0.95) 100%
    ),
    radial-gradient(ellipse at 50% 120%, rgba(232, 106, 44, 0.2) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--washi-cream);
}

.hero-vertical-text {
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 0.5em;
  color: var(--ember-orange);
  opacity: 0;
  animation: fadeSlideRight 1.2s var(--ease-out-expo) 1.5s forwards;
}

@keyframes fadeSlideRight {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

.hero-main {
  padding: 0 20px;
}

.hero-sub {
  font-family: var(--font-heading);
  font-size: clamp(14px, 2vw, 20px);
  letter-spacing: 0.4em;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 12rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 25px;
}

.hero-title .char {
  display: inline-block;
  opacity: 0;
  animation: charReveal 1.4s var(--ease-out-expo) forwards;
}

@keyframes charReveal {
  0% {
    opacity: 0;
    transform: translateY(60px) rotateX(-40deg);
    filter: blur(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0);
    filter: blur(0);
  }
}

.hero-catch {
  font-family: var(--font-heading);
  font-size: clamp(13px, 1.8vw, 18px);
  letter-spacing: 0.3em;
  color: var(--ash-gray);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 1.3s forwards;
}

.hero-tel {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 50px;
  padding: 20px 45px;
  background: linear-gradient(135deg, rgba(232, 106, 44, 0.2), rgba(232, 106, 44, 0.1));
  border: 1px solid rgba(232, 106, 44, 0.4);
  border-radius: 4px;
  color: var(--washi-cream);
  transition: all 0.5s var(--ease-out-expo);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 1.6s forwards;
}

.hero-tel:hover {
  background: rgba(232, 106, 44, 0.3);
  border-color: var(--ember-orange);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(232, 106, 44, 0.2);
}

.hero-tel i {
  font-size: 14px;
  color: var(--ember-orange);
}

.tel-number {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 32px);
  letter-spacing: 0.1em;
}

.tel-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--ash-gray);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 2s forwards;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ash-gray);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--ash-gray), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.4); opacity: 0.2; }
}

/* Flame Effect */
.flame-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 0;
  opacity: 0.6;
}

.flame-effect svg {
  width: 100%;
  height: 100%;
}

.flame-path {
  animation: flameDance 3s ease-in-out infinite;
  transform-origin: bottom center;
}

@keyframes flameDance {
  0%, 100% { d: path("M0,100 Q25,60 20,40 T40,20 T50,50 T60,30 T80,45 T100,100 Z"); }
  33% { d: path("M0,100 Q20,70 25,45 T45,25 T55,45 T65,25 T85,50 T100,100 Z"); }
  66% { d: path("M0,100 Q30,55 22,35 T42,30 T52,55 T62,35 T78,42 T100,100 Z"); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================
   Navigation
   =================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--sumi-black);
  transition: all 0.4s var(--ease-out-expo);
}

.nav.is-fixed {
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--flame-gold);
  letter-spacing: 0.1em;
  padding: 18px 0;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 0;
}

.nav-list a {
  display: block;
  padding: 20px clamp(12px, 2vw, 25px);
  color: var(--washi-cream);
  font-size: 13px;
  letter-spacing: 0.1em;
  position: relative;
  transition: color 0.3s;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--ember-orange);
  transition: all 0.4s var(--ease-out-expo);
  transform: translateX(-50%);
}

.nav-list a:hover {
  color: var(--ember-orange);
}

.nav-list a:hover::after {
  width: 25px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--washi-cream);
  transition: all 0.3s;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================
   Notice Section
   =================================== */
.notice {
  background: linear-gradient(135deg, var(--ember-orange), var(--ember-orange));
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.notice::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(0,0,0,0.15) 0%, transparent 50%);
}

.notice-container {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
  z-index: 1;
}

.notice-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  color: white;
  font-size: 20px;
  animation: flameFlicker 2s ease-in-out infinite;
}

@keyframes flameFlicker {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.9; }
}

.notice-content {
  flex: 1;
}

.notice-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  color: white;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.notice-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255,255,255,0.95);
  padding: 12px 20px;
  border-radius: 6px;
}

.notice-date {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--ember-orange);
  background: rgba(232, 106, 44, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

.notice-text {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.6;
}

/* ===================================
   Section Common
   =================================== */
.section {
  padding: var(--section-py) 0;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.2s var(--ease-out-expo);
}

.section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* お品書きセクションはゆっくりアニメーション */
.menu.section {
  transition: all 1.4s var(--ease-out-expo);
}

.section-container {
  width: var(--container);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(50px, 8vw, 80px);
}

.section-header--light {
  color: var(--washi-cream);
}

.section-header--light .section-en {
  color: var(--ember-orange);
}

.section-en {
  display: block;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ember-orange);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.25em;
}

.section-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--ember-orange), var(--flame-gold));
  margin: 25px auto 0;
}

/* ===================================
   About Section
   =================================== */
.about {
  background: var(--sumi-black);
  color: var(--washi-cream);
  opacity: 1;
}

.about .section-container {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.2s var(--ease-out-expo);
}

.about.is-visible .section-container {
  opacity: 1;
  transform: translateY(0);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.about-lead {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 2.2;
  margin-bottom: 30px;
  color: var(--washi-cream);
}

.about-text p {
  margin-bottom: 1.5em;
  color: var(--ash-gray);
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(10, 9, 8, 0.2);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -25px;
  right: -25px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--ember-orange);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.25;
}

.about-image-label {
  position: absolute;
  bottom: -15px;
  left: 20px;
  background: var(--sumi-black);
  color: var(--washi-cream);
  font-size: 12px;
  letter-spacing: 0.15em;
  padding: 10px 20px;
  border-radius: 2px;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery {
  background: var(--washi-warm);
  color: var(--sumi-black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.gallery-item--large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out-expo);
}

.gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(to top, rgba(10, 9, 8, 0.9) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.6s var(--ease-out-expo);
}

.gallery-item:hover figcaption {
  transform: translateY(0);
}

.gallery-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--washi-cream);
}

.gallery-desc {
  display: block;
  font-size: 12px;
  color: var(--ash-gray);
  margin-top: 5px;
}

/* ===================================
   Menu Section
   =================================== */
.menu {
  background: var(--sumi-black);
  color: var(--washi-cream);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.menu-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 45px;
  background: transparent;
  border: 2px solid var(--ash-gray);
  border-radius: 50px;
  color: var(--ash-gray);
  font-size: 15px;
  letter-spacing: 0.1em;
  transition: all 0.4s var(--ease-out-expo);
}

.menu-tab:hover {
  border-color: var(--ember-orange);
  color: var(--ember-orange);
}

.menu-tab.active {
  background: var(--ember-orange);
  border-color: var(--ember-orange);
  color: var(--washi-cream);
}

.menu-panel {
  display: none;
  animation: fadeIn 0.6s var(--ease-out-expo);
}

.menu-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-category {
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.menu-category:last-child {
  margin-bottom: 0;
}

.menu-category-title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 400;
  letter-spacing: 0.15em;
  padding: 20px 25px;
  margin: 0;
  color: var(--washi-cream);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.menu-category-title:hover {
  background: rgba(232, 90, 28, 0.1);
}

.menu-category-title i:first-child {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 106, 44, 0.1);
  border-radius: 50%;
  color: var(--ember-orange);
  font-size: 16px;
  flex-shrink: 0;
}

.menu-category-title::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 14px;
  color: var(--ash-gray);
  margin-left: auto;
  transition: transform 0.4s var(--ease-out-expo);
  transform: rotate(180deg);
}

.menu-category.is-closed .menu-category-title::after {
  transform: rotate(0deg);
}

.menu-category-content {
  max-height: 2000px;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo);
}

.menu-category.is-closed .menu-category-content {
  max-height: 0;
}

.menu-category-inner {
  padding: 20px 25px 25px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-category.is-closed .menu-category-inner {
  opacity: 0;
  transform: translateY(-10px);
}

/* メニューアイテムのアニメーション（最小限） */
.menu-category .menu-item,
.menu-category .menu-special {
  opacity: 1;
  transition: opacity 0.25s ease;
}

.menu-category.is-closed .menu-item,
.menu-category.is-closed .menu-special {
  opacity: 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  transition: all 0.3s;
  box-shadow: none;
}

.menu-item:hover {
  background: rgba(232, 90, 28, 0.1);
  transform: translateX(5px);
}

.menu-item span:first-child {
  font-size: 14px;
  letter-spacing: 0.03em;
}

.price {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ember-orange);
  flex-shrink: 0;
  margin-left: 15px;
}

.price::after {
  content: '円';
  font-size: 11px;
  margin-left: 2px;
  opacity: 0.7;
}

.menu-special {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 25px;
  margin: 30px 0;
  padding: 25px 35px;
  background: linear-gradient(135deg, rgba(232, 106, 44, 0.1), rgba(244, 185, 66, 0.08));
  border: 1px solid rgba(232, 106, 44, 0.25);
  border-radius: 8px;
}

.special-name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.1em;
}

.special-price {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--ember-orange);
}

.special-price small {
  font-size: 14px;
  opacity: 0.7;
}

.menu-note {
  margin-top: 15px;
  font-size: 13px;
  color: var(--ash-gray);
  text-align: center;
}

.menu-footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--washi-warm);
  text-align: center;
  font-size: 13px;
  color: var(--ash-gray);
}

/* ===================================
   Info Section
   =================================== */
.info {
  background: var(--washi-cream);
  color: var(--sumi-black);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.info-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.05);
  padding: 40px 25px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 4px 20px rgba(26, 22, 20, 0.06);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(26, 22, 20, 0.12);
}

.info-icon {
  font-size: 32px;
  color: var(--ember-orange);
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--ash-gray);
  margin-bottom: 15px;
}

.info-main {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 34px);
  margin-bottom: 8px;
}

.info-sub {
  font-size: 12px;
  color: var(--ash-gray);
}

.info-notes {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
  background: var(--charcoal);
  color: var(--washi-cream);
  padding: 30px 40px;
  border-radius: 8px;
}

.info-notes li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.note-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 11px;
}

.note-ok {
  background: var(--ember-orange);
  color: white;
}

.note-no {
  background: var(--ash-gray);
  color: white;
}

/* ===================================
   Access Section
   =================================== */
.access {
  background: var(--sumi-black);
  color: var(--washi-cream);
}

.access-content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: stretch;
}

.access-info {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.access-block h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--ember-orange);
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(232, 106, 44, 0.2);
}

.access-block p {
  font-size: 16px;
  line-height: 2;
}

.access-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding: 14px 28px;
  background: var(--ember-orange);
  color: var(--washi-cream);
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.08em;
  transition: all 0.4s;
}

.access-tel:hover {
  background: var(--flame-gold);
}

.access-routes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.access-routes li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.access-routes li > i {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 106, 44, 0.1);
  border-radius: 50%;
  color: var(--ember-orange);
  font-size: 14px;
}

.access-routes strong {
  display: block;
  color: var(--washi-cream);
  margin-bottom: 3px;
}

.access-routes span {
  font-size: 14px;
  color: var(--ash-gray);
  line-height: 1.6;
}

.access-map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 9, 8, 0.15);
  min-height: 450px;
}

.access-map iframe {
  display: block;
}

/* ===================================
   Footer
   =================================== */
.footer {
  background: var(--sumi-black);
  color: var(--washi-cream);
}

.footer-content {
  width: var(--container);
  margin: 0 auto;
  padding: 70px 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-sub {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--ash-gray);
  margin-bottom: 8px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: var(--flame-gold);
  letter-spacing: 0.15em;
}

.footer-info {
  text-align: right;
  font-size: 14px;
  color: var(--ash-gray);
  line-height: 2;
}

.footer-info a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--washi-cream);
  transition: color 0.3s;
}

.footer-info a:hover {
  color: var(--ember-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 25px 20px;
  text-align: center;
  font-size: 12px;
  color: var(--ash-gray);
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1024px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 220px);
  }

  .gallery-item--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .hero-vertical-text {
    display: none;
  }
}

@media (max-width: 768px) {
  .flame-effect {
    height: 200px;
    opacity: 0.3;
  }

  .flame-path {
    animation: flameDanceMobile 4s ease-in-out infinite;
  }

  @keyframes flameDanceMobile {
    0%, 100% { d: path("M0,100 Q15,70 20,55 T35,40 T50,60 T65,45 T85,55 T100,100 Z"); }
    50% { d: path("M0,100 Q20,65 25,50 T40,35 T55,55 T70,40 T80,50 T100,100 Z"); }
  }

  .nav-list {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 9, 8, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.5s var(--ease-out-expo);
    z-index: 999;
  }

  .nav-list.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-list li {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s var(--ease-out-expo);
  }

  .nav-list.is-open li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-list.is-open li:nth-child(1) { transition-delay: 0.1s; }
  .nav-list.is-open li:nth-child(2) { transition-delay: 0.15s; }
  .nav-list.is-open li:nth-child(3) { transition-delay: 0.2s; }
  .nav-list.is-open li:nth-child(4) { transition-delay: 0.25s; }
  .nav-list.is-open li:nth-child(5) { transition-delay: 0.3s; }
  .nav-list.is-open li:nth-child(6) { transition-delay: 0.35s; }

  .nav-list a {
    padding: 20px;
    text-align: center;
    font-size: 18px;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  .nav-logo {
    position: relative;
    z-index: 1001;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

  .about-image::before {
    display: none;
  }

  .access-content {
    grid-template-columns: 1fr;
  }

  .access-map {
    min-height: 350px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-notes {
    flex-direction: column;
    align-items: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item,
  .gallery-item--large {
    grid-column: span 1;
    grid-row: span 1;
    height: 280px;
  }

  .gallery-item figcaption {
    transform: translateY(0);
  }

  .notice-container {
    flex-direction: column;
    text-align: center;
  }

  .notice-item {
    flex-direction: column;
    gap: 8px;
    text-align: left;
  }

  .menu-tabs {
    gap: 10px;
  }

  .menu-tab {
    padding: 14px 30px;
    font-size: 14px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-special {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-info {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-scroll {
    display: none;
  }

  .hero-tel {
    padding: 15px 30px;
  }

  .menu-tabs {
    flex-direction: column;
  }

  .menu-tab {
    justify-content: center;
  }
}
