/* ============================================================
   GABU² — ビストロ酒場GABU² Stylesheet
   カラー：深黒 + ワインレッド
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600;1,700&family=Noto+Serif+JP:wght@300;400;600&family=Noto+Sans+JP:wght@300;400;500&display=swap');

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

:root {
  --black:       #0c0c0c;
  --black-mid:   #141414;
  --black-soft:  #1e1e1e;
  --red:         #e83138;
  --red-dark:    #b5161e;
  --red-muted:   #7a1018;
  --cream:       #d8cfc4;
  --cream-dim:   #9a9089;
  --grey-ph:     #2a2a2a;
  --grey-ph2:    #222222;
  --line:        rgba(181,22,30,0.35);
  --text-main:   #e8e0d8;
  --text-sub:    #9a9089;
  --text-en:     #c8bfb6;
  --transition:  0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Preloader ────────────────────────────────────────── */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  background-color: #0c0c0c;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1);
  overflow: hidden;
}

.loader.loaded {
  transform: translateY(-100%);
}

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

.loader-logo-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.9);
  animation: logoReveal 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.3s;
}

.loader-logo {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(181, 22, 30, 0.25);
  z-index: 2;
}

.loader-circle {
  position: absolute;
  inset: 0;
  border: 1px solid var(--red);
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 15px rgba(181, 22, 30, 0.2);
}

.loader-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-main);
  opacity: 0;
  transform: translateY(15px);
  animation: textReveal 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.8s;
  text-shadow: 0 0 10px rgba(232, 224, 216, 0.15);
}

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

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes textReveal {
  to {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 0.5em;
  }
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--black);
  color: var(--text-main);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

/* ── Placeholder Images ───────────────────────────────── */
.ph {
  background: linear-gradient(135deg, var(--grey-ph) 0%, var(--grey-ph2) 100%);
  position: relative;
  overflow: hidden;
}

.ph::after {
  content: 'PHOTO';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.12);
}

/* ── Typography ───────────────────────────────────────── */
.en-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.en-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  letter-spacing: 0.12em;
  color: var(--cream-dim);
  font-size: 0.88rem;
}

.jp-serif {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
}

.section-label {
  font-family: 'Playfair Display', serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--red);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--red);
}

/* ── Utility ──────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
}

.red { color: var(--red); }
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-hero {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-hero.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content .reveal-hero:nth-child(1) { transition-delay: 0.1s; }
.hero-content .reveal-hero:nth-child(2) { transition-delay: 0.28s; }
.hero-content .reveal-hero:nth-child(3) { transition-delay: 0.46s; }
.hero-content .reveal-hero:nth-child(4) { transition-delay: 0.64s; }
.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition);
}

#header.scrolled {
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(181,22,30,0.2);
  padding: 14px 40px;
}

.header-logo img {
  height: 52px;
  width: auto;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-list a {
  font-family: 'Playfair Display', serif;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  color: var(--cream-dim);
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width var(--transition);
}

.nav-list a:hover {
  color: var(--text-main);
}

.nav-list a:hover::after {
  width: 100%;
}

.nav-reserve-btn {
  font-family: 'Playfair Display', serif !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.2em !important;
  color: var(--text-main) !important;
  border: 1px solid rgba(181,22,30,0.6) !important;
  padding: 7px 18px !important;
  transition: background var(--transition), color var(--transition) !important;
}

.nav-reserve-btn:hover {
  background: var(--red) !important;
  color: #fff !important;
}

.nav-reserve-btn::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(12, 12, 12, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(181, 22, 30, 0.4);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 110;
  transition: border-color var(--transition), background var(--transition);
}

.hamburger:hover {
  border-color: var(--red);
  background: rgba(12, 12, 12, 0.85);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--red);
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12,12,12,0.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-main);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: var(--red);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100svh;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000; /* ⑥透過した画像の背景は黒で大丈夫です */
  padding-top: 150px; /* Lower the content further below the header on desktop */
  padding-bottom: 40px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  #hero {
    padding-top: 100px; /* Reduced top padding on mobile to save vertical space */
    padding-bottom: 50px;
  }
}

/* Hide old background image to keep it clean black */
.hero-ph {
  display: none;
}

.hero-content-new {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 800px;
  padding: 10px 20px 40px;
}

.hero-eyebrow-new {
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.45em;
  color: var(--text-main);
  text-transform: uppercase;
  margin-bottom: 0px; /* Bring closer to plate */
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.hero-eyebrow-new::before,
.hero-eyebrow-new::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--red-muted);
}

.hero-eyebrow-new.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Plate Image Wrapper & SVG curved text */
.hero-plate-wrapper {
  position: relative;
  width: clamp(290px, 87vw, 540px);
  height: auto;
  aspect-ratio: 1 / 1;
  margin: -5% auto -4%; /* Negative margins to offset transparent plate padding and bring elements closer */
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 1.5s ease 0.2s, transform 1.5s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
}

.hero-plate-wrapper.visible {
  opacity: 1;
  transform: scale(1);
}

.hero-plate-img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  position: absolute;
  top: 11%;
  left: 11%;
  filter: drop-shadow(0 15px 35px rgba(0,0,0,0.85));
}

.hero-plate-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.curved-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.22em;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.7));
}

.hero-subtitle-new {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  color: var(--cream-dim);
  margin-top: 0px; /* Bring closer to plate */
  font-weight: 300;
  letter-spacing: 0.12em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.4s, transform 1s ease 0.4s;
}

.hero-subtitle-new.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-cta-group {
  margin-top: 20px; /* Bring closer to subtitle */
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.6s, transform 1s ease 0.6s;
}

.hero-cta-group.visible {
  opacity: 1;
  transform: translateY(0);
}

.menu-details-cta, .seat-details-cta {
  text-align: center;
}

.btn-primary {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 36px;
  background: var(--red);
  color: #fff;
  transition: background var(--transition), transform 0.2s;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 15px 32px;
  border: 1px solid rgba(216,207,196,0.35);
  color: var(--text-main);
  transition: border-color var(--transition), color var(--transition);
}

.btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-instagram-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(216,207,196,0.35);
  color: var(--text-main);
  transition: border-color var(--transition), color var(--transition), background-color var(--transition);
}

.btn-instagram-hero:hover {
  border-color: var(--red);
  color: var(--red);
  background-color: rgba(181, 22, 30, 0.08);
}

/* スクロールインジケーター */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--cream-dim);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--cream-dim), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.5); opacity: 1; }
}

/* ============================================================
   CONCEPT
   ============================================================ */
#concept {
  padding: 140px 0 120px;
  position: relative;
  overflow: hidden;
}

#concept::before {
  content: 'CONCEPT';
  position: absolute;
  top: 60px;
  left: -20px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(181,22,30,0.07);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.concept-inner {
  display: flex;
  justify-content: center;
}

.concept-text {
  max-width: 680px;
  width: 100%;
  text-align: center;
  padding-left: 0;
}

#concept .section-label {
  justify-content: center;
}

#concept .section-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--red);
}

.concept-text .section-label {
  margin-bottom: 28px;
}

.concept-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
}

.concept-title-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 500;
  color: var(--red);
  letter-spacing: 0.15em;
  margin-bottom: 36px;
  display: block;
}

.concept-body {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.95rem;
  line-height: 2.1;
  color: var(--cream-dim);
  font-weight: 300;
}

.concept-body p + p {
  margin-top: 1.2em;
}

.concept-tags {
  margin-top: 40px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.concept-tag {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--red);
  border: 1px solid rgba(181,22,30,0.4);
  padding: 5px 14px;
}

/* ============================================================
   MENU
   ============================================================ */
#menu {
  padding: 120px 0 140px;
  background: var(--black-mid);
  position: relative;
}

#menu::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red-muted), transparent);
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
}

.menu-header-left .section-label {
  margin-bottom: 20px;
}

.menu-header-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.1;
}

.menu-header-sub {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.88rem;
  color: var(--cream-dim);
  margin-top: 8px;
  letter-spacing: 0.1em;
}

.menu-slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.menu-slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-slide {
  flex: 0 0 calc((100% - 40px) / 3);
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.menu-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.menu-slide:hover img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .menu-slide {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

@media (max-width: 600px) {
  .menu-slide {
    flex: 0 0 100%;
  }
}

/* インジケーター */
.menu-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.menu-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.menu-dot.active {
  background: var(--red);
  transform: scale(1.3);
}

.menu-cta {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 24px;
}

#menu-tabelog-btn .sp-text {
  display: none;
}

@media (max-width: 768px) {
  #menu-tabelog-btn .pc-text {
    display: none;
  }
  #menu-tabelog-btn .sp-text {
    display: inline;
  }
}

/* ============================================================
   SEAT
   ============================================================ */
#seat {
  padding: 140px 0 120px;
  position: relative;
}

.seat-header {
  margin-bottom: 70px;
}

.seat-header .section-label {
  margin-bottom: 20px;
}

.seat-header-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
}

.seat-header-sub {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.9rem;
  color: var(--cream-dim);
  margin-top: 10px;
  letter-spacing: 0.08em;
  max-width: 520px;
}

.seat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.seat-img-a {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

/* 意図的にずらした右側カラム */
.seat-col-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 60px;
}

.seat-img-b {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ============================================================
   ACCESS
   ============================================================ */
#access {
  padding: 120px 0 140px;
  background: var(--black-mid);
  position: relative;
}

#access::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red-muted), transparent);
}

.access-inner {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: start;
}

.access-info .section-label {
  margin-bottom: 28px;
}

.access-info-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  margin-bottom: 40px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.info-table th {
  font-family: 'Playfair Display', serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
  text-align: left;
  padding: 16px 0;
  width: 110px;
  vertical-align: top;
}

.info-table td {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  color: var(--cream-dim);
  padding: 16px 0;
  line-height: 1.7;
}

.tel-link {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.08em;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  transition: color var(--transition);
}

.tel-link:hover {
  color: var(--red);
}

.tel-link::before {
  content: '—';
  color: var(--red);
  font-size: 1rem;
}

.map-container {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid rgba(181,22,30,0.15);
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) contrast(1.1) invert(1);
  opacity: 0.85;
  transition: filter 0.4s, opacity 0.4s;
}

.map-container:hover iframe {
  filter: grayscale(40%) contrast(1.05) invert(1);
  opacity: 1;
}

/* ============================================================
   RESERVE
   ============================================================ */
#reserve {
  padding: 130px 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}

#reserve::before {
  content: 'RESERVE';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(80px, 16vw, 220px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(181,22,30,0.06);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.reserve-label {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.reserve-label .section-label {
  text-align: center;
}

.reserve-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 14px;
}

.reserve-title em {
  font-style: italic;
  color: var(--red);
}

.reserve-sub {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.92rem;
  color: var(--cream-dim);
  letter-spacing: 0.1em;
  margin-bottom: 52px;
}

.reserve-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-tabelog {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  padding: 18px 44px;
  background: var(--red);
  color: #fff;
  text-transform: uppercase;
  transition: background var(--transition), transform 0.2s;
}

.btn-tabelog:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  padding: 17px 36px;
  border: 1px solid rgba(181,22,30,0.5);
  color: var(--text-main);
  text-transform: uppercase;
  transition: border-color var(--transition), color var(--transition), transform 0.2s;
}

.btn-instagram:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-3px);
}

.reserve-contact {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.8rem;
  color: var(--text-sub);
  letter-spacing: 0.08em;
}

.reserve-tel {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--text-main);
  letter-spacing: 0.1em;
  display: block;
  margin-top: 6px;
  transition: color var(--transition);
}

.reserve-tel:hover {
  color: var(--red);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #080808;
  border-top: 1px solid rgba(181,22,30,0.15);
  padding: 70px 0 40px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand img {
  height: 56px;
  margin-bottom: 18px;
}

.footer-brand-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.92rem;
  color: var(--text-main);
  letter-spacing: 0.1em;
}

.footer-brand-addr {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.75rem;
  color: var(--text-sub);
  margin-top: 8px;
  line-height: 1.8;
}

.footer-nav-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  font-family: 'Playfair Display', serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--text-sub);
  transition: color var(--transition);
}

.footer-nav-list a:hover {
  color: var(--red);
}

.footer-hours-item {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  color: var(--text-sub);
  line-height: 1.9;
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-family: 'Playfair Display', serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--text-sub);
}

.footer-sns {
  display: flex;
  gap: 16px;
}

.footer-sns a {
  font-family: 'Playfair Display', serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--text-sub);
  text-transform: uppercase;
  transition: color var(--transition);
}

.footer-sns a:hover {
  color: var(--red);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .access-inner {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  #header {
    padding: 16px 24px;
  }
  #header.scrolled {
    padding: 12px 24px;
  }
  .nav-list {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  #hero {
    min-height: auto;
  }

  .hero-content {
    padding: 0 24px 40px;
    text-align: left;
  }
  .hero-eyebrow {
    justify-content: flex-start;
  }
  .hero-cta-group {
    justify-content: flex-start;
  }
  .hero-scroll {
    right: 24px;
  }

  #concept {
    padding: 100px 0 80px;
  }
  .concept-inner {
    justify-content: flex-start;
  }
  .concept-text {
    text-align: left;
  }
  #concept .section-label {
    justify-content: flex-start;
  }
  #concept .section-label::after {
    display: none;
  }
  .concept-tags {
    justify-content: flex-start;
  }

  #menu {
    padding: 90px 0 100px;
  }
  .menu-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 12px;
  }
  .menu-header-title br {
    display: none;
  }

  #seat {
    padding: 90px 0 80px;
  }
  .seat-header {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .seat-header-sub {
    margin-left: 0;
    margin-right: 0;
  }
  .seat-grid {
    grid-template-columns: 1fr;
  }
  .seat-col-right {
    padding-top: 0;
  }

  #access {
    padding: 90px 0 100px;
  }
  .access-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .access-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .access-info .section-label {
    justify-content: flex-start;
  }
  .info-table {
    max-width: 460px;
    width: 100%;
    margin: 0;
  }

  #reserve {
    padding: 90px 0;
    text-align: left;
  }
  .reserve-label {
    justify-content: flex-start;
  }
  .reserve-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .reserve-contact {
    text-align: left;
  }

  /* .footer-inner grid overrides removed */
  .footer-inner {
    align-items: flex-start;
    text-align: left;
  }
  .footer-brand {
    align-items: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: left;
    align-items: flex-start;
  }

  .container {
    width: 92%;
  }

  .menu-details-cta, .seat-details-cta {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(36px, 10vw, 54px);
  }
  .hero-bg-text {
    font-size: clamp(80px, 24vw, 160px);
  }
  .btn-primary, .btn-tabelog {
    padding: 14px 28px;
  }
}

.floating-instagram {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(232, 49, 56, 0.35);
  z-index: 999;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.floating-instagram:hover {
  transform: translateY(-4px) scale(1.05);
  background-color: var(--red-dark);
  box-shadow: 0 6px 20px rgba(181, 22, 30, 0.5);
}

.floating-instagram svg {
  transition: transform 0.3s ease;
}

.floating-instagram:hover svg {
  transform: rotate(10deg);
}

@media (max-width: 768px) {
  .floating-instagram {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }
}

/* ============================================================
   DETAILS PAGES (MENU & SEAT)
   ============================================================ */
.details-hero {
  position: relative;
  height: 45vh;
  min-height: 280px;
  background: linear-gradient(135deg, var(--black-mid) 0%, var(--black) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(181, 22, 30, 0.15);
}

.details-hero::before {
  content: 'GALLERY';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(80px, 15vw, 180px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(181, 22, 30, 0.05);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.details-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.details-hero-eyebrow {
  font-family: 'Playfair Display', serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.details-hero-eyebrow::before,
.details-hero-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--red);
}

.details-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-main);
  letter-spacing: 0.02em;
}

.details-hero-title em {
  font-style: italic;
  color: var(--red);
}

.details-hero-subtitle {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.95rem;
  color: var(--cream-dim);
  margin-top: 12px;
  letter-spacing: 0.12em;
}

/* Details Section & Grid */
.details-section {
  padding: 90px 0;
  position: relative;
}

.details-category-wrap {
  margin-bottom: 80px;
}

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

.details-category-header {
  margin-bottom: 36px;
  border-left: 3px solid var(--red);
  padding-left: 20px;
}

.details-category-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.3;
}

.details-category-en {
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  color: var(--red);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

/* Details Card */
.details-card {
  background-color: var(--black-mid);
  border: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s ease, box-shadow 0.4s ease;
}

.details-card:hover {
  transform: translateY(-8px);
  border-color: rgba(181, 22, 30, 0.3);
  box-shadow: 0 12px 30px rgba(12, 12, 12, 0.8), 0 4px 15px rgba(181, 22, 30, 0.08);
}

.details-card-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: var(--grey-ph2);
  position: relative;
}

.details-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.details-card:hover .details-card-img-wrap img {
  transform: scale(1.06);
}

.details-card-content {
  padding: 24px;
}

.details-card-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.details-card-sub {
  font-family: 'Playfair Display', serif;
  font-size: 0.78rem;
  color: var(--cream-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Back Button */
.details-footer {
  padding: 60px 0 100px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  padding: 16px 40px;
  border: 1px solid rgba(216, 207, 196, 0.3);
  color: var(--text-main);
  text-transform: uppercase;
  transition: border-color var(--transition), color var(--transition), background-color var(--transition);
}

.btn-back:hover {
  border-color: var(--red);
  color: #fff;
  background-color: var(--red);
}

.btn-back svg {
  transition: transform 0.3s ease;
}

.btn-back:hover svg {
  transform: translateX(-4px);
}

@media (max-width: 768px) {
  .details-hero {
    height: 35vh;
    min-height: 220px;
    text-align: left;
  }
  .details-hero-content {
    padding: 0 24px;
    text-align: left;
  }
  .details-hero-eyebrow {
    justify-content: flex-start;
  }
  .details-hero-eyebrow::after {
    display: none;
  }
  .details-section {
    padding: 60px 0;
  }
  .details-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .details-category-wrap {
    margin-bottom: 50px;
  }
  .details-category-header {
    border-left: 3px solid var(--red);
    padding-left: 20px;
    text-align: left;
    border-bottom: none;
    padding-bottom: 0;
    max-width: none;
    margin: 0 0 24px 0;
  }
  .details-card {
    text-align: left;
  }
  .details-card-sub {
    display: block;
  }
  .details-footer {
    padding: 40px 0 80px;
  }
}

/* ============================================================
   MENU PAGE EXTENSIONS (TABS, SLIDER, COURSE)
   ============================================================ */

/* Menu Section Wrappers */
.menu-section-wrap {
  margin-bottom: 100px;
}

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

/* Recommendation Card Description */
.details-card-desc {
  margin-top: 14px;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--cream-dim);
  letter-spacing: 0.02em;
  font-weight: 300;
}

/* Drink Slider */
.drink-slider-container {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 20px 0;
}

.drink-slider {
  position: relative;
  width: 100%;
  max-width: 600px;
  background-color: var(--black-mid);
  border: 1px solid rgba(181, 22, 30, 0.2);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.drink-slides-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2; /* Match landscape menu proportion (e.g. 1.5 aspect ratio) */
  background-color: #0d0d0d;
}

.drink-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.drink-slide.active {
  opacity: 1;
  z-index: 2;
}

.drink-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Slide Nav controls */
.drink-slider-prev,
.drink-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(12, 12, 12, 0.75);
  border: 1px solid rgba(181, 22, 30, 0.3);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background var(--transition), border-color var(--transition), transform 0.2s;
}

.drink-slider-prev:hover,
.drink-slider-next:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-50%) scale(1.05);
}

.drink-slider-prev {
  left: 16px;
}

.drink-slider-next {
  right: 16px;
}

/* Slide Dots indicators */
.drink-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
  background: rgba(12, 12, 12, 0.6);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.drink-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.drink-dot.active {
  background: var(--red);
  transform: scale(1.3);
}

.course-intro-img-wrap {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16/9;
  margin: 0 auto 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.course-intro-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.course-intro-card:hover .course-intro-img {
  transform: scale(1.03);
}

/* Course Intro Card */
.course-intro-card {
  padding: 40px 0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.course-title-main {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.9rem, 4.2vw, 2.2rem);
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 24px;
  line-height: 1.4;
}

.course-text-detail {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--cream-dim);
  max-width: 640px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.course-action-wrap {
  display: flex;
  justify-content: center;
}

.btn-tabelog-course {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 16px 48px;
  background: var(--red);
  color: #fff;
  transition: background var(--transition), transform 0.2s, box-shadow var(--transition);
  border: 1px solid var(--red);
}

.btn-tabelog-course:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(181, 22, 30, 0.3);
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .course-intro-card {
    padding: 30px 0;
  }
  .btn-tabelog-course {
    font-size: clamp(0.72rem, 3vw, 0.85rem);
    padding: 14px 12px;
    width: 100%;
    white-space: nowrap;
  }
  .drink-slider-prev,
  .drink-slider-next {
    width: 40px;
    height: 40px;
  }
  .drink-slider-prev {
    left: 8px;
  }
  .drink-slider-next {
    right: 8px;
  }

  /* Seat Slider Responsive */
  .seat-slider-prev,
  .seat-slider-next {
    width: 40px;
    height: 40px;
  }
}

/* ============================================================
   SEAT SLIDER STYLES
   ============================================================ */
.seat-slider-container {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 10px 0;
}

.seat-slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  background-color: var(--black-mid);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.seat-slider:hover {
  border-color: rgba(181, 22, 30, 0.25);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6), 0 4px 15px rgba(181, 22, 30, 0.05);
}

.seat-slides-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background-color: var(--grey-ph2);
}

.seat-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.seat-slide.active {
  opacity: 1;
  z-index: 2;
}

.seat-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s linear;
}

.seat-slide.active img {
  transform: scale(1.05);
}

/* Seat Slider Controls Bar */
.seat-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 16px 0;
  background-color: var(--black-mid);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.seat-slider-prev,
.seat-slider-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--cream-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform 0.2s;
}

.seat-slider-prev:hover,
.seat-slider-next:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: scale(1.05);
}

.seat-slider-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.seat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.seat-dot.active {
  background: var(--red);
  transform: scale(1.3);
}

/* ============================================================
   TOP PAGE RESTRUCTURE (FOOD/DRINK, COURSE, SEAT)
   ============================================================ */
.menu-presentation-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  margin-top: 50px;
}

.menu-presentation-grid.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

/* Desktop grid column swapping */
.menu-presentation-grid.reverse .menu-presentation-img-col {
  grid-column: 2;
}

.menu-presentation-grid.reverse .menu-presentation-content {
  grid-column: 1;
  grid-row: 1;
}

.menu-presentation-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.menu-presentation-img-wrap.blend {
  position: relative;
  aspect-ratio: 1/1;
  border: none;
  box-shadow: none;
  background: transparent;
  border-radius: 50%;
  overflow: hidden;
}

.menu-presentation-img-wrap.blend::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 35px 20px var(--black);
  pointer-events: none;
  z-index: 2;
}

.menu-pres-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.menu-pres-img-blend {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 70%);
  mask-image: radial-gradient(circle, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 70%);
  filter: brightness(0.9) contrast(1.05);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.menu-presentation-grid:hover .menu-pres-img {
  transform: scale(1.04);
}

.menu-presentation-grid:hover .menu-pres-img-blend {
  transform: scale(1.05);
}

.menu-presentation-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-pres-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--cream-dim);
  margin-bottom: 30px;
}

#index-about {
  padding: 60px 0;
  background: var(--black);
  position: relative;
}

#index-about .menu-header {
  margin-bottom: 24px;
}

#index-about .menu-presentation-grid {
  margin-top: 0;
  gap: clamp(20px, 4vw, 40px);
}

#index-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red-muted), transparent);
}

@media (max-width: 1024px) {
  .menu-presentation-grid,
  .menu-presentation-grid.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* Reset grid columns on mobile to follow native HTML flow (image on top) */
  .menu-presentation-grid.reverse .menu-presentation-img-col {
    grid-column: auto;
  }
  
  .menu-presentation-grid.reverse .menu-presentation-content {
    grid-column: auto;
    grid-row: auto;
  }
  
  #index-about {
    padding: 40px 0;
  }
}

/* Intro Text Blocks (Tapas, Drinks, Desserts, Seats) */
.tapas-intro-text,
.drink-intro-text,
.dessert-intro-text,
.seat-intro-text {
  text-align: center;
  max-width: 680px;
  margin: 40px auto 0;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--cream-dim);
}

.index-about-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--cream-dim);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .tapas-intro-text,
  .drink-intro-text,
  .dessert-intro-text,
  .seat-intro-text {
    text-align: left;
    margin: 30px auto 0;
    font-size: 0.88rem;
    line-height: 1.8;
  }
  
  .index-about-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
  }
}