/* ========================================
   Condition Labo — Split Cinematic (Pattern M)
   ======================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark: #0D1F15;
  --dark-mid: #142A1D;
  --green: #3A7D5C;
  --green-dark: #2A5E44;
  --green-accent: #4FA97A;
  --green-light: #E8F2EC;
  --green-pale: #F2F8F5;
  --gold: #C5A572;
  --gold-dark: #A88752;
  --gold-light: #DCC59A;
  --white: #FFFFFF;
  --off-white: #F8F8F6;
  --text: #2A2A2A;
  --text-light: #6A6A6A;
  --text-muted: #AAAAAA;
  --border: #E0E8E3;
  --serif: 'Noto Serif JP', serif;
  --sans: 'Noto Sans JP', sans-serif;
  --en: 'Cormorant Garamond', serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--white); line-height: 1.8; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 48px; display: flex; align-items: center; justify-content: space-between;
  background: transparent; transition: all 0.4s;
}
.header.scrolled {
  background: rgba(255,255,255,0.95); backdrop-filter: blur(16px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  padding-top: 14px; padding-bottom: 14px;
  /* 横padding は .header or media query から継承して左右シフトを防ぐ */
}
.header__logo {
  display: flex; align-items: center; text-decoration: none;
  transition: opacity 0.3s;
}
.header__logo:hover { opacity: 0.75; }
.header__logo-img {
  display: block; height: 32px; width: auto; max-width: 240px;
  /* ヒーロー上ではロゴを白系に表示するためのフィルター */
  filter: brightness(0) invert(1);
  transition: filter 0.4s;
}
.header.scrolled .header__logo-img {
  filter: none;
}
.header__nav { display: flex; gap: 24px; }
.header__nav a { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); transition: color 0.3s; }
.header.scrolled .header__nav a { color: var(--text-light); }
.header__nav a:hover { color: var(--white); }
.header.scrolled .header__nav a:hover { color: var(--green); }
.header__ctas { display: flex; gap: 8px; align-items: center; }
.header__cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; border-radius: 2px; transition: all 0.3s;
}
.header__cta--phone {
  background: var(--gold); color: var(--white);
  box-shadow: 0 2px 8px rgba(168,135,82,0.25);
}
.header__cta--phone:hover {
  background: var(--gold-dark);
  box-shadow: 0 4px 14px rgba(168,135,82,0.4);
  transform: translateY(-1px);
}
.header__cta--web {
  background: var(--green); color: var(--white);
  box-shadow: 0 2px 8px rgba(58,125,92,0.25);
}
.header__cta--web:hover {
  background: var(--green-dark);
  box-shadow: 0 4px 14px rgba(58,125,92,0.4);
  transform: translateY(-1px);
}

/* Hamburger */
.header__hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative; z-index: 110;
}
.header__hamburger span {
  display: block; width: 100%; height: 2px; background: var(--white);
  position: absolute; left: 0; transition: all 0.3s;
}
.header.scrolled .header__hamburger span { background: var(--text); }
.header__hamburger span:nth-child(1) { top: 0; }
.header__hamburger span:nth-child(2) { top: 9px; }
.header__hamburger span:nth-child(3) { top: 18px; }
.header__hamburger.active span:nth-child(1) { top: 9px; transform: rotate(45deg); background: var(--text); }
.header__hamburger.active span:nth-child(2) { opacity: 0; }
.header__hamburger.active span:nth-child(3) { top: 9px; transform: rotate(-45deg); background: var(--text); }

/* Mobile Nav */
.mobile-nav {
  position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
  background: var(--white); z-index: 105; padding: 100px 32px 40px;
  box-shadow: -4px 0 24px rgba(0,0,0,0.1); transition: right 0.4s ease;
  display: flex; flex-direction: column; gap: 0;
}
.mobile-nav.active { right: 0; }
.mobile-nav a {
  display: block; padding: 14px 0; font-size: 15px; font-weight: 500;
  color: var(--text); border-bottom: 1px solid var(--border); transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--green); }
.mobile-nav a.mobile-nav__cta {
  margin-top: 12px; padding: 14px 24px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  text-align: center; font-weight: 700; border-radius: 4px; border-bottom: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(168,135,82,0.25);
}
.mobile-nav a.mobile-nav__cta:first-of-type { margin-top: 24px; }
.mobile-nav a.mobile-nav__cta:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, #8a6d3f 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(168,135,82,0.4);
}
.mobile-nav a.mobile-nav__cta--web {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  box-shadow: 0 2px 8px rgba(58,125,92,0.25);
}
.mobile-nav a.mobile-nav__cta--web:hover {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1a4630 100%);
  box-shadow: 0 4px 14px rgba(58,125,92,0.4);
}
.mobile-nav__cta svg { flex-shrink: 0; }

/* ========================================
   HERO: Split Cinematic
   ======================================== */
.hero { position: relative; min-height: 100vh; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.hero__bg-sp { display: none; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.05) 100%);
}
.hero__split {
  position: absolute; inset: 0; z-index: 2;
  background: rgba(13,31,21,0.72);
  clip-path: polygon(0 0, 58% 0, 38% 100%, 0 100%);
}
.hero__content {
  position: absolute; bottom: 120px; left: 80px; z-index: 3; color: var(--white); max-width: 520px;
}
.hero__label {
  font-family: var(--en); font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--green-accent); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero__label::before { content: ''; width: 40px; height: 1px; background: var(--green-accent); }
.hero__title {
  font-family: var(--serif); font-size: 44px; font-weight: 900;
  line-height: 1.6; letter-spacing: 0.06em; margin-bottom: 20px;
}
.hero__sub {
  font-size: 15px; color: rgba(255,255,255,0.7); line-height: 2; max-width: 440px; margin-bottom: 32px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; color: var(--white);
  font-size: 14px; font-weight: 700; letter-spacing: 0.1em; border-radius: 2px; transition: all 0.3s;
}
.hero__cta--phone {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  box-shadow: 0 4px 16px rgba(168,135,82,0.35);
}
.hero__cta--phone:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, #8a6d3f 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168,135,82,0.5);
}
.hero__cta--web {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  box-shadow: 0 4px 16px rgba(58,125,92,0.35);
}
.hero__cta--web:hover {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1a4630 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58,125,92,0.5);
}

.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 10px; letter-spacing: 0.2em;
}
.scroll-indicator__line {
  width: 1px; height: 40px; background: rgba(255,255,255,0.15); position: relative; overflow: hidden;
}
.scroll-indicator__line::after {
  content: ''; position: absolute; top: -40px; left: 0;
  width: 1px; height: 40px; background: var(--green-accent);
  animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim { 0% { top: -40px; } 100% { top: 40px; } }

/* ========================================
   INTRODUCTION
   ======================================== */
.intro-section {
  padding: 80px 0 60px;
  background: var(--white);
}
.intro-block {
  max-width: 720px; margin: 0 auto; text-align: center;
}
.intro-block__emblem {
  display: block; width: 64px; height: 64px;
  margin: 0 auto 24px; opacity: 0.9;
}
.intro-block__lead {
  font-family: var(--serif); font-size: 26px; font-weight: 700;
  line-height: 1.7; color: var(--text); margin-bottom: 12px;
}
@media (max-width: 768px) {
  .intro-block__emblem { width: 52px; height: 52px; margin-bottom: 16px; }
}
.intro-block__motto {
  font-family: var(--serif); font-size: 14px; font-weight: 400;
  color: var(--green); letter-spacing: 0.12em; margin-bottom: 40px;
}
.intro-block__body {
  text-align: left; position: relative;
  padding-left: 24px; border-left: 2px solid var(--green-accent);
}
.intro-block__body p {
  font-size: 15px; line-height: 2; color: var(--text-light); margin-bottom: 16px;
}
.intro-block__body p:last-child { margin-bottom: 0; }
.intro-block__body strong {
  color: var(--text); font-weight: 700;
}

/* ========================================
   FOR WHOM
   ======================================== */
.forwhom-section {
  padding: 100px 0; background: var(--white);
}
.forwhom-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1080px; margin: 0 auto;
}
.forwhom-card {
  background: var(--white); padding: 32px 28px;
  border: 1px solid var(--border); border-radius: 8px;
  transition: all 0.3s;
  display: flex; flex-direction: column; align-items: flex-start;
}
.forwhom-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-accent);
  box-shadow: 0 12px 32px rgba(0,0,0,0.05);
}
.forwhom-card__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green-pale); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.forwhom-card__title {
  font-family: var(--serif); font-size: 16px; font-weight: 700;
  margin-bottom: 12px; line-height: 1.5; color: var(--text);
}
.forwhom-card__text {
  font-size: 13px; color: var(--text-light); line-height: 1.8;
}

@media (max-width: 1024px) {
  .forwhom-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .forwhom-section { padding: 60px 0; }
  .forwhom-grid { grid-template-columns: 1fr; max-width: 480px; }
  .forwhom-card { padding: 24px 20px; }
}

/* ========================================
   CLINICAL CONCEPT
   ======================================== */
.concept-section {
  padding: 100px 0; background: var(--green-pale);
}

/* Flow diagram */
.concept-flow {
  display: flex; align-items: flex-start; justify-content: center; gap: 20px;
  max-width: 600px; margin: 0 auto 56px;
}
.concept-flow__step { text-align: center; flex: 1; }
.concept-flow__icon {
  width: 56px; height: 56px; margin: 0 auto 12px;
  background: var(--white); border: 2px solid var(--green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.concept-flow__label {
  font-family: var(--serif); font-size: 15px; font-weight: 700; margin-bottom: 4px;
}
.concept-flow__note {
  font-size: 11px; color: var(--text-muted); letter-spacing: 0.02em;
}
.concept-flow__arrow {
  color: var(--green-accent); padding-top: 16px; flex-shrink: 0;
}

/* Two approaches */
.concept-approaches {
  display: flex; align-items: stretch; gap: 0;
  max-width: 700px; margin: 0 auto 56px;
  background: var(--white); border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05); overflow: hidden;
}
.concept-approach {
  flex: 1; padding: 28px 32px; text-align: center;
}
.concept-approach__tag {
  font-family: var(--en); font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 8px;
}
.concept-approach__title {
  font-family: var(--serif); font-size: 16px; font-weight: 700;
  color: var(--green); margin-bottom: 8px;
}
.concept-approach__subtitle {
  display: block; font-family: var(--sans); font-size: 12px; font-weight: 400;
  color: var(--text-muted); margin-top: 4px; letter-spacing: 0.04em;
}
.concept-approach__text {
  font-size: 13px; color: var(--text-light); line-height: 1.6;
}
.concept-approach__divider {
  width: 1px; background: var(--border); flex-shrink: 0;
}

/* Main video */
.concept-video {
  max-width: 680px; margin: 0 auto 56px;
}
.concept-video__embed {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: 8px; box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.concept-video__embed iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.concept-video__label {
  text-align: center; margin-top: 16px;
  font-size: 13px; color: var(--text-muted); letter-spacing: 0.04em;
}

/* Case study videos */
.concept-cases { max-width: 900px; margin: 0 auto; }
.concept-cases__heading {
  font-family: var(--serif); font-size: 18px; font-weight: 700;
  text-align: center; margin-bottom: 28px;
}
.concept-cases__note {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  color: var(--text-muted); margin-left: 8px;
}
.concept-cases__disclaimer {
  text-align: center; font-size: 11px; color: var(--text-muted);
  margin-top: -20px; margin-bottom: 28px; line-height: 1.7;
}
.concept-cases__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.concept-case__embed {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: 6px; box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.concept-case__embed iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.concept-case__title {
  font-size: 13px; font-weight: 600; margin-top: 10px; text-align: center;
  color: var(--text-light);
}

@media (max-width: 1024px) {
  .concept-cases__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .concept-section { padding: 60px 0; }
  .concept-flow { gap: 12px; }
  .concept-flow__icon { width: 44px; height: 44px; }
  .concept-flow__icon svg { width: 22px; height: 22px; }
  .concept-flow__label { font-size: 13px; }
  .concept-approaches { flex-direction: column; }
  .concept-approach__divider { width: 100%; height: 1px; }
  .concept-approach { padding: 20px 24px; }
}

/* ========================================
   SECTIONS
   ======================================== */
.section { padding: 120px 0; }
.section--pale { background: var(--green-pale); }
.section-header { margin-bottom: 64px; }
.section-header__en {
  font-family: var(--en); font-size: 72px; font-weight: 400;
  color: var(--green-light); line-height: 1; letter-spacing: -0.02em;
  margin-bottom: -20px; position: relative; z-index: 0;
}
.section-header__ja {
  font-family: var(--serif); font-size: 28px; font-weight: 700;
  position: relative; z-index: 1; letter-spacing: 0.1em;
}
.section-header__line { width: 40px; height: 2px; background: var(--green); margin-top: 16px; }
.section-header__desc { margin-top: 20px; font-size: 15px; color: var(--text-light); line-height: 2; max-width: 560px; }
.section-header--center { text-align: center; }
.section-header--center .section-header__line { margin: 16px auto 0; }
.section-header--center .section-header__desc { margin-left: auto; margin-right: auto; }
.section-header--dark .section-header__en { color: rgba(79,169,122,0.15); }
.section-header--dark .section-header__ja { color: var(--white); }
.section-header--dark .section-header__line { background: var(--green-accent); }
.section-header--dark .section-header__desc { color: rgba(255,255,255,0.5); }

/* ========================================
   FEATURES
   ======================================== */
.feature-row {
  display: grid; grid-template-columns: 60% 1fr; gap: 0; min-height: 420px;
  margin-bottom: 2px; overflow: hidden;
}
.feature-row--reverse { grid-template-columns: 1fr 60%; }
.feature-row--reverse .feature-row__img { order: 2; }
.feature-row--reverse .feature-row__body { order: 1; }
.feature-row__img { overflow: hidden; position: relative; }
.feature-row__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.feature-row:hover .feature-row__img img { transform: scale(1.03); }
.feature-row__img::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, transparent 70%, rgba(13,31,21,0.12) 100%);
  pointer-events: none;
}
.feature-row--reverse .feature-row__img::after {
  background: linear-gradient(to left, transparent 70%, rgba(13,31,21,0.12) 100%);
}
.feature-row__body {
  padding: 48px; display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
}
.feature-row__num {
  font-family: var(--en); font-size: 72px; font-weight: 400;
  color: var(--green-light); line-height: 1; margin-bottom: 8px;
}
.feature-row__title {
  font-family: var(--serif); font-size: 20px; font-weight: 700;
  letter-spacing: 0.05em; margin-bottom: 16px; line-height: 1.6;
}
.feature-row__text { font-size: 14px; color: var(--text-light); line-height: 1.9; }
.feature-row__line { width: 40px; height: 2px; background: var(--green); margin-top: 20px; }

/* ========================================
   MENU: Split Dark/Light
   ======================================== */
.menu-section { padding: 120px 0; }
.menu-split {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; position: relative;
}
.menu-split__left {
  background: var(--dark); color: var(--white);
  padding: 80px 60px; display: flex; flex-direction: column; justify-content: center;
}
.menu-split__right {
  background: var(--green-pale); color: var(--text);
  padding: 80px 60px; display: flex; flex-direction: column; justify-content: center;
}
.menu-split__tag {
  display: inline-block; padding: 4px 14px; background: var(--green-accent); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; margin-bottom: 20px; width: fit-content;
}
.menu-split__title { font-family: var(--serif); font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.menu-split__sub { font-size: 13px; opacity: 0.5; margin-bottom: 24px; }
.menu-split__price { font-family: var(--serif); font-size: 52px; font-weight: 700; line-height: 1; letter-spacing: 0.01em; }
.menu-split__left .menu-split__price { color: var(--green-accent); }
.menu-split__right .menu-split__price { color: var(--green); }
.menu-split__price-unit { font-family: var(--sans); font-size: 14px; opacity: 0.6; }
.menu-split__list { list-style: none; margin-top: 20px; padding-top: 20px; }
.menu-split__left .menu-split__list { border-top: 1px solid rgba(255,255,255,0.08); }
.menu-split__right .menu-split__list { border-top: 1px solid var(--border); }
.menu-split__list li { font-size: 13px; opacity: 0.7; padding: 4px 0 4px 16px; position: relative; }
.menu-split__list li::before { content: ''; position: absolute; left: 0; top: 13px; width: 6px; height: 1px; }
.menu-split__left .menu-split__list li::before { background: var(--green-accent); }
.menu-split__right .menu-split__list li::before { background: var(--green); }

/* Menu Detail Button */
.btn-menu-detail {
  display: inline-block; margin-top: 20px; padding: 10px 24px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  border-radius: 4px; cursor: pointer; transition: all 0.3s;
  background: transparent; border: 1px solid;
}
.btn-menu-detail--dark {
  color: var(--white); border-color: rgba(255,255,255,0.25);
}
.btn-menu-detail--dark:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.btn-menu-detail--light {
  color: var(--green); border-color: var(--green);
}
.btn-menu-detail--light:hover { background: var(--green); color: var(--white); }

/* Menu Detail Modal */
.menu-modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.menu-modal-overlay.active { opacity: 1; pointer-events: auto; }
.menu-modal {
  background: var(--white); border-radius: 8px; max-width: 600px; width: 100%;
  max-height: 85vh; overflow-y: auto; position: relative;
  transform: translateY(24px) scale(0.97); transition: transform 0.35s ease;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}
.menu-modal-overlay.active .menu-modal { transform: translateY(0) scale(1); }
.menu-modal__close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 40px; height: 40px;
  background: rgba(0,0,0,0.4); border: none; border-radius: 50%;
  font-size: 20px; cursor: pointer; color: var(--white); line-height: 40px; text-align: center;
  transition: background 0.2s;
}
.menu-modal__close:hover { background: rgba(0,0,0,0.6); }
.menu-modal__hero {
  position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.menu-modal__hero img { width: 100%; height: 100%; object-fit: cover; }
.menu-modal__hero-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 28px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}
.menu-modal__hero-tag {
  display: inline-block; padding: 3px 10px; font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; border-radius: 2px; margin-bottom: 8px;
  background: var(--green); color: var(--white);
}
.menu-modal__hero-title {
  font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--white);
}
.menu-modal__body { padding: 28px; }
.menu-modal__price-block {
  display: flex; gap: 16px; align-items: baseline;
  padding-bottom: 20px; margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.menu-modal__price-item { text-align: center; }
.menu-modal__price-label {
  display: block; font-size: 11px; color: var(--text-muted);
  letter-spacing: 0.05em; margin-bottom: 4px;
}
.menu-modal__price-value {
  font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--green);
  line-height: 1; letter-spacing: 0.01em;
}
.menu-modal__price-value span { font-family: var(--sans); font-size: 13px; font-weight: 400; color: var(--text-light); }
.menu-modal__price-plus {
  font-size: 20px; color: var(--text-muted); padding-top: 12px;
}
.menu-modal__desc {
  font-size: 14px; line-height: 1.9; color: var(--text-light); margin-bottom: 24px;
}
.menu-modal__section-title {
  font-size: 13px; font-weight: 700; color: var(--green); letter-spacing: 0.08em;
  margin-bottom: 10px; padding-bottom: 6px; border-bottom: 1px solid var(--border);
}
.menu-modal__section-title:not(:first-child) { margin-top: 20px; }
.menu-modal__includes {
  list-style: none; padding: 0; margin-bottom: 20px;
}
.menu-modal__includes li {
  font-size: 13px; color: var(--text-light); line-height: 1.7;
  padding: 5px 0 5px 20px; position: relative;
}
.menu-modal__includes li::before {
  content: ''; position: absolute; left: 2px; top: 12px;
  width: 8px; height: 8px; border-radius: 50%;
  border: 2px solid var(--green-accent); background: transparent;
}
.menu-modal__note {
  font-size: 12px; color: var(--text-muted); line-height: 1.7;
  padding: 12px 16px; background: var(--green-pale); border-radius: 6px;
  margin-bottom: 20px;
}
.menu-modal__cta { margin-top: 24px; }

@media (max-width: 768px) {
  .menu-modal-overlay { padding: 12px; }
  .menu-modal { max-height: 90vh; }
  .menu-modal__body { padding: 20px; }
  .menu-modal__hero-title { font-size: 18px; }
}

/* ========================================
   DIRECTOR: Dark with clip-path
   ======================================== */
.director-section {
  background: var(--dark); position: relative;
  clip-path: polygon(0 4vw, 100% 0, 100% calc(100% - 4vw), 0 100%);
  margin-top: -4vw; padding: calc(80px + 5vw) 0 calc(60px + 5vw);
}
.director-block {
  display: grid; grid-template-columns: 45% 1fr; gap: 0; min-height: 560px;
  max-width: 1200px; margin: 0 auto;
}
.director-block__img { overflow: hidden; }
.director-block__img img { width: 100%; height: 100%; object-fit: cover; }
.director-block__body {
  padding: 60px 60px; display: flex; flex-direction: column; justify-content: center;
  background: #1A3325;
}
.director-block__role {
  font-family: var(--en); font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--green-accent); margin-bottom: 16px;
}
.director-block__name {
  font-family: var(--serif); font-size: 32px; font-weight: 700;
  letter-spacing: 0.1em; margin-bottom: 4px; color: var(--white);
}
.director-block__name-en {
  font-family: var(--en); font-size: 14px; color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em; margin-bottom: 20px;
}
.director-block__quote {
  font-size: 15px; line-height: 2; color: rgba(255,255,255,0.6);
  border-left: 2px solid var(--green-accent); padding-left: 20px;
  margin-bottom: 20px; font-style: italic;
}
.director-block__bio {
  font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.9; margin-bottom: 20px;
}
.director-block__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.director-block__tags span {
  padding: 4px 14px; border: 1px solid rgba(255,255,255,0.15); font-size: 12px;
  color: rgba(255,255,255,0.5); border-radius: 2px;
}
.btn-ig {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff; padding: 10px 24px; font-size: 13px; font-weight: 700;
  border-radius: 2px; width: fit-content; transition: transform 0.3s;
}
.btn-ig:hover { transform: scale(1.05); }

/* ========================================
   STAFF GRID
   ======================================== */
.staff-section { padding: calc(120px + 4vw) 0 120px; }
.staff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.staff-item { text-align: center; cursor: pointer; }
.staff-item__img { aspect-ratio: 3/4; overflow: hidden; margin-bottom: 16px; }
.staff-item__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.staff-item:hover .staff-item__img img { transform: scale(1.05); }
.staff-item__name { font-family: var(--serif); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.staff-item__role { font-size: 12px; color: var(--text-muted); }
.staff-item__books { font-size: 11px; color: var(--text-light); margin-top: 8px; line-height: 1.5; }
.staff-item__more { display: inline-block; margin-top: 8px; font-size: 11px; color: var(--green); font-weight: 700; letter-spacing: 0.05em; }

/* ========================================
   BOOKS
   ======================================== */
.books-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.book-card {
  background: var(--white); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-radius: 6px; transition: all 0.4s;
}
.book-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
.book-card__img { aspect-ratio: 3/4; overflow: hidden; background: #f0f0f0; }
.book-card__img img { width: 100%; height: 100%; object-fit: cover; }
.book-card__body { padding: 16px 20px; }
.book-card__title { font-family: var(--serif); font-size: 14px; font-weight: 700; line-height: 1.5; margin-bottom: 4px; }
.book-card__meta { font-size: 11px; color: var(--text-muted); }

/* Books More */
.books-more { text-align: center; margin-top: 40px; }
.btn-books-all {
  display: inline-block; padding: 14px 40px;
  background: transparent; border: 2px solid var(--green);
  color: var(--green); font-size: 14px; font-weight: 700; letter-spacing: 0.04em;
  border-radius: 4px; cursor: pointer; transition: all 0.3s;
}
.btn-books-all:hover { background: var(--green); color: var(--white); }

/* Books All Modal */
.books-modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.books-modal-overlay.active { opacity: 1; pointer-events: auto; }
.books-modal {
  background: var(--white); border-radius: 8px; max-width: 800px; width: 100%;
  max-height: 85vh; overflow-y: auto; position: relative;
  transform: translateY(24px) scale(0.97); transition: transform 0.35s ease;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}
.books-modal-overlay.active .books-modal { transform: translateY(0) scale(1); }
.books-modal__close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 40px; height: 40px;
  background: var(--off-white); border: none; border-radius: 50%;
  font-size: 20px; cursor: pointer; color: var(--text); line-height: 40px; text-align: center;
  transition: background 0.2s;
}
.books-modal__close:hover { background: var(--green-light); }
.books-modal__header { padding: 32px 32px 0; text-align: center; }
.books-modal__title { font-family: var(--serif); font-size: 22px; font-weight: 700; }
.books-modal__sub { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.books-modal__body { padding: 24px 32px 32px; }
.books-modal__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 16px;
}
.books-modal__item { text-align: center; }
.books-modal__item img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: transform 0.3s;
}
.books-modal__item:hover img { transform: scale(1.04); }
.books-modal__item p {
  font-size: 11px; font-weight: 600; line-height: 1.4; color: var(--text);
  margin-top: 8px;
}
.books-modal__item p span {
  display: block; font-size: 10px; font-weight: 400; color: var(--text-muted); margin-top: 2px;
}

@media (max-width: 768px) {
  .books-modal-overlay { padding: 12px; }
  .books-modal { max-height: 90vh; }
  .books-modal__header { padding: 24px 20px 0; }
  .books-modal__body { padding: 16px 20px 24px; }
  .books-modal__grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 12px; }
}

/* ========================================
   CELEBRITY GALLERY (Marquee)
   ======================================== */
.celebrity-section {
  padding: 100px 0 80px; background: var(--off-white); overflow: hidden;
}
.celebrity-marquee {
  width: 100%; overflow: hidden; position: relative;
  margin-top: 16px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.celebrity-marquee__track {
  display: flex; gap: 20px; width: max-content;
  animation: celebrity-scroll 80s linear infinite;
}
.celebrity-marquee:hover .celebrity-marquee__track {
  animation-play-state: paused;
}
.celebrity-item {
  flex-shrink: 0; width: 220px; aspect-ratio: 3/4;
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.celebrity-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.celebrity-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
@keyframes celebrity-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-220px * 21 - 20px * 21)); }
}
@media (max-width: 768px) {
  .celebrity-section { padding: 60px 0 48px; }
  .celebrity-item { width: 160px; }
  @keyframes celebrity-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-160px * 21 - 20px * 21)); }
  }
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.testimonial-card {
  background: var(--white); border: 1px solid var(--border); padding: 32px 28px;
  border-radius: 6px; transition: all 0.4s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.06); }
.testimonial-card__stars { color: #F5A623; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card__text {
  font-size: 14px; color: var(--text-light); line-height: 1.9; margin-bottom: 20px;
}
.testimonial-card__footer { border-top: 1px solid var(--border); padding-top: 16px; display: flex; align-items: center; gap: 12px; }
.testimonial-card__name { font-family: var(--serif); font-size: 14px; font-weight: 700; }
.testimonial-card__label { font-size: 11px; color: var(--text-muted); }
.testimonial-card__footer { flex-direction: column; align-items: flex-start; gap: 4px; }
.testimonial-more { text-align: center; margin-top: 40px; }
.btn-voice-all {
  display: inline-block; padding: 14px 40px;
  background: transparent; border: 2px solid var(--green);
  color: var(--green); font-size: 14px; font-weight: 700; letter-spacing: 0.04em;
  border-radius: 4px; cursor: pointer; transition: all 0.3s;
}
.btn-voice-all:hover { background: var(--green); color: var(--white); }

/* Voice Modal */
.voice-modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.voice-modal-overlay.active { opacity: 1; pointer-events: auto; }
.voice-modal {
  background: var(--white); border-radius: 8px; max-width: 720px; width: 100%;
  max-height: 85vh; overflow-y: auto; position: relative;
  transform: translateY(24px) scale(0.97); transition: transform 0.35s ease;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}
.voice-modal-overlay.active .voice-modal { transform: translateY(0) scale(1); }
.voice-modal__close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 40px; height: 40px;
  background: var(--off-white); border: none; border-radius: 50%;
  font-size: 20px; cursor: pointer; color: var(--text); line-height: 40px; text-align: center;
}
.voice-modal__close:hover { background: var(--green-light); }
.voice-modal__header { padding: 32px 32px 0; text-align: center; }
.voice-modal__title { font-family: var(--serif); font-size: 22px; font-weight: 700; }
.voice-modal__sub { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.voice-modal__body { padding: 24px 32px 32px; }
.voice-item {
  padding: 24px 0; border-bottom: 1px solid var(--border);
}
.voice-item:last-child { border-bottom: none; }
.voice-item__head { margin-bottom: 12px; }
.voice-item__name {
  font-family: var(--serif); font-size: 15px; font-weight: 700; color: var(--text);
}
.voice-item__name span { font-family: var(--sans); font-size: 12px; font-weight: 400; color: var(--text-muted); }
.voice-item__symptom {
  font-size: 11px; color: var(--green); letter-spacing: 0.04em;
  margin-top: 4px; padding: 2px 10px; background: var(--green-pale);
  border-radius: 2px; display: inline-block;
}
.voice-item__text {
  font-size: 13px; color: var(--text-light); line-height: 1.9;
}

@media (max-width: 768px) {
  .voice-modal-overlay { padding: 12px; }
  .voice-modal { max-height: 90vh; }
  .voice-modal__header { padding: 24px 20px 0; }
  .voice-modal__body { padding: 16px 20px 24px; }
}

/* ========================================
   YOUTUBE: Dark section
   ======================================== */
.youtube-section {
  background: var(--dark); position: relative;
  clip-path: polygon(0 4vw, 100% 0, 100% calc(100% - 4vw), 0 100%);
  margin-top: -4vw; margin-bottom: -4vw;
  padding: calc(100px + 5vw) 0;
}
.youtube-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px;
}
.youtube-card__embed {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: 6px; box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.youtube-card__embed iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}

/* Lite YouTube (click-to-load) */
.lite-youtube {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: #000; cursor: pointer;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  transition: filter 0.3s;
}
.lite-youtube::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4));
  transition: background 0.3s;
}
.lite-youtube:hover::before { background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.3)); }
.lite-youtube__play {
  position: relative; z-index: 2;
  background: none; border: none; cursor: pointer;
  padding: 0; transition: transform 0.2s;
}
.lite-youtube:hover .lite-youtube__play { transform: scale(1.1); }
.concept-video__embed .lite-youtube,
.youtube-card__embed .lite-youtube {
  position: absolute;
}

/* Lite Map */
.lite-map {
  position: relative; width: 100%; height: 100%; min-height: 500px;
  background: var(--green-pale);
  background-image:
    linear-gradient(var(--green-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--green-light) 1px, transparent 1px);
  background-size: 40px 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background-color 0.3s;
}
.lite-map:hover { background-color: #dcede3; }
.lite-map__play {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: var(--white); padding: 28px 36px;
  border: 2px solid var(--green); border-radius: 8px;
  color: var(--green); font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.lite-map__play:hover {
  background: var(--green); color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.youtube-cta { text-align: center; }
.btn-youtube {
  display: inline-block; padding: 14px 40px; border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); font-size: 14px; font-weight: 700; letter-spacing: 0.08em;
  border-radius: 2px; transition: all 0.3s;
}
.btn-youtube:hover { background: var(--green); border-color: var(--green); }

/* ========================================
   FLOW
   ======================================== */
.flow-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: 1000px; margin: 0 auto;
}
.flow-step { text-align: center; position: relative; }
.flow-step::after {
  content: ''; position: absolute; top: 36px; right: -12px;
  width: 24px; height: 1px; background: var(--border);
}
.flow-step:last-child::after { display: none; }
.flow-step__num {
  font-family: var(--en); font-size: 48px; font-weight: 400;
  color: var(--green-light); line-height: 1; margin-bottom: 12px;
}
.flow-step__title {
  font-family: var(--serif); font-size: 16px; font-weight: 700;
  margin-bottom: 8px; letter-spacing: 0.04em;
}
.flow-step__text { font-size: 13px; color: var(--text-light); line-height: 1.8; }
.flow-step__text a { color: var(--green); font-weight: 500; }

/* ========================================
   ACCESS: Split dark/map
   ======================================== */
.access-section { overflow: hidden; }
.access-split {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 500px;
}
.access-split__info {
  background: var(--dark); color: var(--white); padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
  min-width: 0;
}
.access-split__map { position: relative; }
.access-map-placeholder { width: 100%; height: 100%; min-height: 400px; }
.access-dl { margin-top: 8px; }
.access-dl dt {
  font-family: var(--en); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--green-accent); margin-bottom: 4px; margin-top: 16px;
}
.access-dl dt:first-child { margin-top: 0; }
.access-dl dd { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; }
.access-dl dd a { color: var(--green-accent); }

/* Schedule List (day-by-day cards) */
.schedule-list { margin-top: 32px; width: 100%; }
.schedule-list__title {
  font-family: var(--en); font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--green-accent); margin-bottom: 12px;
}
.schedule-day {
  display: flex; align-items: stretch;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.schedule-day:first-of-type { border-radius: 6px 6px 0 0; }
.schedule-day:last-of-type { border-radius: 0 0 6px 6px; border-bottom: none; }
.schedule-day__name {
  flex-shrink: 0; width: 76px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-size: 14px;
  color: var(--green-accent); padding: 12px 8px;
  background: rgba(74,125,92,0.12);
  border-right: 1px solid rgba(255,255,255,0.06);
  text-align: center; line-height: 1.3;
}
.schedule-day__shifts { flex: 1; min-width: 0; padding: 8px 14px; }
.schedule-shift {
  display: flex; align-items: baseline; gap: 12px;
  padding: 4px 0; font-size: 12px;
}
.schedule-shift + .schedule-shift {
  border-top: 1px dashed rgba(255,255,255,0.06);
}
.schedule-shift__label {
  flex-shrink: 0; width: 32px;
  font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,0.5); letter-spacing: 0.05em;
}
.schedule-shift__staff {
  color: rgba(255,255,255,0.9); line-height: 1.5;
}
.schedule-shift__off {
  color: rgba(255,255,255,0.35); font-size: 12px; padding: 4px 0;
}
.schedule-day--off .schedule-day__name { color: rgba(255,255,255,0.5); }
.schedule-list__note {
  font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 12px; line-height: 1.7;
}
@media (max-width: 480px) {
  .schedule-day__name { width: 64px; font-size: 13px; }
  .schedule-shift { font-size: 11px; gap: 8px; }
  .schedule-shift__label { width: 28px; font-size: 9px; }
}

/* Access Buttons */
.access-buttons { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.btn-directions {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; background: var(--green); color: var(--white);
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  border-radius: 4px; transition: background 0.3s; text-decoration: none; width: fit-content;
}
.btn-directions__icon { font-size: 10px; }
.btn-directions:hover { background: var(--green-accent); }
.btn-directions--full { width: 100%; justify-content: center; padding: 14px 24px; }
.btn-walkguide {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; background: transparent; color: var(--white);
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.25); border-radius: 4px;
  cursor: pointer; transition: all 0.3s; width: fit-content;
}
.btn-walkguide:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.btn-walkguide__icon { font-size: 16px; }

/* Walkguide Modal */
.walkguide-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.walkguide-overlay.active { opacity: 1; pointer-events: auto; }
.walkguide-modal {
  background: var(--white); border-radius: 8px; max-width: 640px; width: 100%;
  max-height: 85vh; overflow-y: auto; position: relative;
  transform: translateY(24px) scale(0.97); transition: transform 0.35s ease;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}
.walkguide-overlay.active .walkguide-modal { transform: translateY(0) scale(1); }
.walkguide-modal__close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 40px; height: 40px;
  background: var(--off-white); border: none; border-radius: 50%;
  font-size: 20px; cursor: pointer; color: var(--text); line-height: 40px; text-align: center;
  transition: background 0.2s;
}
.walkguide-modal__close:hover { background: var(--green-light); }
.walkguide-modal__header {
  padding: 32px 32px 0; text-align: center;
}
.walkguide-modal__title {
  font-family: var(--serif); font-size: 22px; font-weight: 700; margin-bottom: 4px;
}
.walkguide-modal__sub { font-size: 13px; color: var(--text-muted); }
.walkguide-modal__steps { padding: 24px 32px; }
.walkguide-step {
  display: flex; gap: 16px; padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.walkguide-step:last-child { border-bottom: none; }
.walkguide-step__num {
  width: 32px; height: 32px; min-width: 32px;
  background: var(--green); color: var(--white);
  border-radius: 50%; font-family: var(--en); font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.walkguide-step__title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.walkguide-step__text { font-size: 13px; color: var(--text-light); line-height: 1.7; }
.walkguide-step--photo { flex-direction: column; }
.walkguide-step__photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.walkguide-photo img { width: 100%; border-radius: 6px; aspect-ratio: 4/3; object-fit: cover; }
.walkguide-photo__caption { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 6px; }
.walkguide-modal__footer {
  padding: 0 32px 32px; border-top: 1px solid var(--border); margin-top: 0;
  padding-top: 20px;
}
.walkguide-modal__parking {
  font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px;
  padding: 12px 16px; background: var(--green-pale); border-radius: 6px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer { background: var(--green-dark); color: rgba(255,255,255,0.6); padding: 60px 0 28px; }
.footer__inner { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 36px; }
.footer__logo-img {
  display: block; height: 36px; width: auto; max-width: 260px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1); opacity: 0.9;
}
.footer__sub { font-family: var(--en); font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.12em; }
@media (max-width: 768px) {
  .footer__logo-img { height: 30px; max-width: 220px; }
}
.footer__info { font-size: 13px; margin-top: 12px; line-height: 1.8; }
.footer__info a { color: rgba(255,255,255,0.7); }
.footer__nav { display: flex; flex-wrap: wrap; gap: 16px; }
.footer__nav a { font-size: 12px; color: rgba(255,255,255,0.35); transition: color 0.3s; }
.footer__nav a:hover { color: var(--white); }
.footer__disclaimer {
  margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__disclaimer p {
  font-size: 10px; color: rgba(255,255,255,0.35); line-height: 1.8; margin-bottom: 4px;
}
.footer__meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; margin-top: 20px; border-top: 1px solid rgba(255,255,255,0.08);
  gap: 16px; flex-wrap: wrap;
}
.footer__copy { font-size: 10px; color: rgba(255,255,255,0.15); }
.footer__company-link {
  font-size: 10px; color: rgba(255,255,255,0.25); text-decoration: none;
  transition: color 0.2s;
}
.footer__company-link:hover { color: rgba(255,255,255,0.6); }

/* Contact Modal */
.contact-modal-overlay, .company-modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.contact-modal-overlay.active, .company-modal-overlay.active {
  opacity: 1; pointer-events: auto;
}
.contact-modal, .company-modal {
  background: var(--white); border-radius: 8px; max-width: 560px; width: 100%;
  max-height: 85vh; overflow-y: auto; position: relative;
  transform: translateY(24px) scale(0.97); transition: transform 0.35s ease;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}
.contact-modal-overlay.active .contact-modal,
.company-modal-overlay.active .company-modal {
  transform: translateY(0) scale(1);
}
.contact-modal__close, .company-modal__close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 40px; height: 40px;
  background: var(--off-white); border: none; border-radius: 50%;
  font-size: 20px; cursor: pointer; color: var(--text); line-height: 40px; text-align: center;
}
.contact-modal__close:hover, .company-modal__close:hover { background: var(--green-light); }
.contact-modal__header, .company-modal__header {
  padding: 32px 32px 0; text-align: center;
}
.contact-modal__title, .company-modal__title {
  font-family: var(--serif); font-size: 22px; font-weight: 700;
}
.contact-modal__sub {
  font-size: 13px; color: var(--text-muted); margin-top: 4px;
}
.contact-modal__body { padding: 24px 32px 32px; }

.contact-method {
  display: flex; gap: 16px; padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-method:first-child { padding-top: 4px; }
.contact-method:last-of-type { border-bottom: none; padding-bottom: 8px; }
.contact-method__icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--green-pale); color: var(--green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.contact-method__label {
  font-size: 11px; color: var(--text-muted); letter-spacing: 0.04em; margin-bottom: 4px;
}
.contact-method__value {
  display: block; font-family: var(--serif); font-size: 22px; font-weight: 700;
  color: var(--text); text-decoration: none; line-height: 1.2;
  word-break: break-all;
}
.contact-method__value:hover { color: var(--green); }
.contact-method__note {
  font-size: 11px; color: var(--text-muted); margin-top: 6px;
}

/* Phone Modal (PC fallback for tel: links) */
.phone-modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.phone-modal-overlay.active { opacity: 1; pointer-events: auto; }
.phone-modal {
  background: var(--white); border-radius: 12px;
  max-width: 420px; width: 100%;
  position: relative; padding: 40px 32px 32px;
  text-align: center;
  transform: translateY(24px) scale(0.97); transition: transform 0.35s ease;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}
.phone-modal-overlay.active .phone-modal { transform: translateY(0) scale(1); }
.phone-modal__close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: var(--off-white); border: none; border-radius: 50%;
  font-size: 18px; cursor: pointer; color: var(--text); line-height: 36px;
  transition: background 0.2s;
}
.phone-modal__close:hover { background: var(--green-light); }
.phone-modal__icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(168,135,82,0.3);
}
.phone-modal__title {
  font-family: var(--serif); font-size: 20px; font-weight: 700;
  color: var(--text); margin-bottom: 6px;
}
.phone-modal__sub {
  font-size: 13px; color: var(--text-light); margin-bottom: 20px;
}
.phone-modal__number {
  font-family: var(--serif); font-size: 32px; font-weight: 700;
  color: var(--gold-dark); letter-spacing: 0.04em;
  padding: 16px; background: var(--off-white);
  border: 2px solid var(--gold); border-radius: 8px;
  margin-bottom: 14px;
  user-select: all;
}
.phone-modal__copy {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; margin-bottom: 20px;
  background: var(--white); color: var(--gold-dark);
  border: 1px solid var(--gold); border-radius: 4px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  cursor: pointer; transition: all 0.2s;
}
.phone-modal__copy:hover {
  background: var(--gold); color: var(--white);
}
.phone-modal__copy.copied {
  background: var(--green); color: var(--white); border-color: var(--green);
}
.phone-modal__info {
  padding-top: 16px; border-top: 1px solid var(--border);
}
.phone-modal__info p {
  font-size: 12px; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 2px;
}

/* Inquiry Form CTA card (primary) */
.contact-form-card {
  margin-bottom: 16px;
  padding: 20px; border: 1px solid var(--border); border-radius: 8px;
  background: var(--off-white);
}
.contact-form-card--primary {
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--white) 100%);
  border: 2px solid var(--green);
  box-shadow: 0 4px 16px rgba(58,125,92,0.08);
}
.contact-form-card__head { margin-bottom: 14px; }
.contact-form-card__title {
  font-family: var(--serif); font-size: 16px; font-weight: 700; margin-bottom: 6px;
}
.contact-form-card__lead {
  font-size: 12px; color: var(--text-light); line-height: 1.7;
}
.contact-form-card__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px 20px;
  background: var(--green); color: var(--white);
  font-size: 14px; font-weight: 700; letter-spacing: 0.04em;
  border-radius: 4px; text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(58,125,92,0.2);
}
.contact-form-card__btn:hover {
  background: var(--green-dark);
  box-shadow: 0 4px 14px rgba(58,125,92,0.35);
  transform: translateY(-1px);
}
.contact-form-card__note {
  font-size: 11px; color: var(--text-muted);
  line-height: 1.7; margin-top: 12px;
}

.contact-note {
  margin-top: 20px; padding: 16px 20px;
  background: var(--green-pale); border-radius: 6px;
}
.contact-note__title {
  font-size: 13px; font-weight: 700; color: var(--green);
  margin-bottom: 10px; position: relative; padding-left: 20px;
}
.contact-note__title::before {
  content: '★'; position: absolute; left: 0; top: 0; color: var(--green-accent);
}
.contact-note p {
  font-size: 12px; color: var(--text-light); line-height: 1.8; margin-bottom: 8px;
}
.contact-note p:last-child { margin-bottom: 0; }

/* Reservation Link (low-prominence at bottom) */
.contact-reservation-link {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px dashed var(--border);
  text-align: center;
}
.contact-reservation-link__text {
  font-size: 11px; color: var(--text-muted); margin-bottom: 6px;
}
.contact-reservation-link__link {
  display: inline-block; font-size: 12px; font-weight: 700;
  color: var(--gold-dark); text-decoration: none;
  border-bottom: 1px solid rgba(168,135,82,0.4);
  padding-bottom: 1px; transition: all 0.2s;
}
.contact-reservation-link__link:hover {
  color: var(--gold); border-bottom-color: var(--gold);
}

/* Contact Form */
.contact-form-wrap {
  margin-top: 24px;
}
.contact-form__heading {
  font-family: var(--serif); font-size: 17px; font-weight: 700;
  text-align: center; margin-bottom: 8px;
}
.contact-form__lead {
  font-size: 12px; color: var(--text-muted); line-height: 1.7;
  text-align: center; margin-bottom: 20px;
}
.contact-form__field {
  margin-bottom: 16px;
}
.contact-form__field label {
  display: block; font-size: 12px; font-weight: 700;
  color: var(--text); margin-bottom: 6px;
}
.contact-form__req {
  display: inline-block; padding: 1px 6px; margin-left: 6px;
  background: var(--green); color: var(--white);
  font-size: 10px; font-weight: 400; border-radius: 2px;
  letter-spacing: 0.04em;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 10px 12px; font-size: 14px;
  font-family: inherit; color: var(--text);
  background: var(--white);
  border: 1px solid var(--border); border-radius: 4px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(58,125,92,0.1);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233A7D5C' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 32px;
}
.contact-form__actions {
  margin-top: 4px;
}
.contact-form__submit {
  width: 100%; padding: 12px 16px;
  background: var(--green); color: var(--white);
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  border: none; border-radius: 4px; cursor: pointer;
  transition: background 0.3s;
}
.contact-form__submit:hover { background: var(--green-accent); }
.contact-form__submit--alt {
  background: var(--white); color: var(--green); border: 1px solid var(--green);
}
.contact-form__submit--alt:hover { background: var(--green); color: var(--white); }
@media (max-width: 480px) {
  .contact-form__actions { grid-template-columns: 1fr; }
}
.contact-form__note {
  font-size: 11px; color: var(--text-muted);
  line-height: 1.7; margin-top: 12px;
}

/* Company Modal */
.company-modal__body { padding: 24px 32px 32px; }
.company-table {
  width: 100%; border-collapse: collapse; margin-bottom: 24px;
  font-size: 13px;
}
.company-table th, .company-table td {
  padding: 12px 10px; text-align: left; vertical-align: top;
  border-bottom: 1px solid var(--border); line-height: 1.7;
}
.company-table th {
  font-weight: 700; color: var(--text); width: 90px;
  background: var(--off-white);
}
.company-table td { color: var(--text-light); }
.company-table td a { color: var(--green); text-decoration: none; }
.company-table td a:hover { text-decoration: underline; }
.company-images {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.company-image img {
  width: 100%; border-radius: 4px; aspect-ratio: 1/1; object-fit: cover;
  background: var(--off-white);
}

@media (max-width: 768px) {
  .contact-modal-overlay, .company-modal-overlay { padding: 12px; }
  .contact-modal, .company-modal { max-height: 90vh; }
  .contact-modal__header, .company-modal__header { padding: 24px 20px 0; }
  .contact-modal__body, .company-modal__body { padding: 16px 20px 24px; }
  .contact-method__value { font-size: 18px; }
  .company-table th { width: 70px; }
  .company-images { grid-template-columns: 1fr; }
}

/* ========================================
   FIXED PHONE CTA (Mobile)
   ======================================== */
.fixed-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.fixed-cta__btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 12px; color: var(--white); flex: 1;
  font-size: 14px; font-weight: 700; letter-spacing: 0.05em;
}
.fixed-cta__btn--phone { background: var(--gold); }
.fixed-cta__btn--web { background: var(--green); }
.fixed-cta__btn svg { flex-shrink: 0; }
.fixed-cta__text { font-size: 14px; font-weight: 700; letter-spacing: 0.05em; }

/* Mobile Nav Backdrop */
.mobile-nav-backdrop {
  position: fixed; inset: 0; z-index: 104;
  background: rgba(0,0,0,0.4); opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-nav-backdrop.active { opacity: 1; pointer-events: auto; }

/* ========================================
   STAFF MODAL
   ======================================== */
.staff-modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.staff-modal-overlay.active { opacity: 1; pointer-events: auto; }
.staff-modal {
  background: var(--white); border-radius: 8px; max-width: 680px; width: 100%;
  max-height: 85vh; overflow-y: auto; position: relative;
  transform: translateY(24px) scale(0.97); transition: transform 0.35s ease;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}
.staff-modal-overlay.active .staff-modal { transform: translateY(0) scale(1); }
.staff-modal__close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 40px; height: 40px;
  background: var(--off-white); border: none; border-radius: 50%;
  font-size: 20px; cursor: pointer; color: var(--text); line-height: 40px; text-align: center;
  transition: background 0.2s;
}
.staff-modal__close:hover { background: var(--green-light); }
.staff-modal__header {
  display: flex; gap: 24px; padding: 32px 32px 0;
}
.staff-modal__photo {
  width: 160px; min-width: 160px; aspect-ratio: 3/4; border-radius: 6px;
  overflow: hidden; flex-shrink: 0;
}
.staff-modal__photo img { width: 100%; height: 100%; object-fit: cover; }
.staff-modal__intro { flex: 1; padding-top: 4px; }
.staff-modal__name {
  font-family: var(--serif); font-size: 22px; font-weight: 700; margin-bottom: 2px;
}
.staff-modal__name-en { font-size: 12px; color: var(--text-muted); letter-spacing: 0.05em; margin-bottom: 12px; }
.staff-modal__meta { font-size: 13px; color: var(--text-light); line-height: 1.8; }
.staff-modal__meta dt { display: inline; font-weight: 700; color: var(--text); }
.staff-modal__meta dt::after { content: '：'; }
.staff-modal__meta dd { display: inline; margin: 0; }
.staff-modal__meta dd::after { content: ''; display: block; }
.staff-modal__content { padding: 24px 32px 32px; }
.staff-modal__section-title {
  font-size: 13px; font-weight: 700; color: var(--green); letter-spacing: 0.08em;
  margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid var(--border);
}
.staff-modal__section-title:not(:first-child) { margin-top: 24px; }
.staff-modal__greeting {
  font-size: 14px; line-height: 1.9; color: var(--text-light); margin-bottom: 20px;
  padding: 16px; background: var(--green-pale); border-radius: 6px;
}
.staff-modal__career { list-style: none; padding: 0; }
.staff-modal__career li {
  font-size: 13px; line-height: 1.7; color: var(--text-light);
  padding: 4px 0 4px 16px; position: relative;
}
.staff-modal__career li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 6px; height: 6px; background: var(--green-accent); border-radius: 50%;
}
.staff-modal__books { list-style: none; padding: 0; }
.staff-modal__books li {
  font-size: 13px; line-height: 1.7; color: var(--text-light);
  padding: 3px 0 3px 20px; position: relative;
}
.staff-modal__books li::before {
  content: ''; position: absolute; left: 4px; top: 12px;
  width: 6px; height: 1px; background: var(--green-accent);
}
.staff-modal__more-note {
  font-size: 12px; color: var(--text-muted);
  text-align: right; margin-top: 8px;
  font-style: italic;
}
.staff-modal__papers {
  margin-top: 4px;
}
.staff-modal__papers summary {
  cursor: pointer; font-size: 12px; color: var(--green);
  padding: 8px 12px; background: var(--green-pale);
  border-radius: 4px; font-weight: 700;
  list-style: none; user-select: none;
  transition: background 0.2s;
}
.staff-modal__papers summary::-webkit-details-marker { display: none; }
.staff-modal__papers summary::after {
  content: '▼'; float: right; font-size: 10px;
  transition: transform 0.2s;
}
.staff-modal__papers[open] summary::after { transform: rotate(180deg); }
.staff-modal__papers summary:hover { background: var(--green-light); }
.staff-modal__papers-list {
  list-style: decimal inside; padding: 16px 8px 0;
  max-height: 320px; overflow-y: auto;
}
.staff-modal__papers-list li {
  font-size: 11px; line-height: 1.7; color: var(--text-light);
  padding: 4px 0; padding-left: 4px;
}
.staff-modal__qualifications {
  font-size: 13px; line-height: 1.8; color: var(--text-light);
}
.staff-modal__bio {
  font-size: 14px; line-height: 1.9; color: var(--text-light);
}

@media (max-width: 768px) {
  .staff-modal-overlay { padding: 12px; }
  .staff-modal { max-height: 90vh; }
  .staff-modal__header { flex-direction: column; align-items: center; text-align: center; padding: 24px 20px 0; gap: 16px; }
  .staff-modal__photo { width: 120px; min-width: 120px; }
  .staff-modal__content { padding: 20px 20px 24px; }
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .header { padding: 16px 24px; }
  .header__nav { display: none; }
  .header__hamburger { display: block; }
  .header__cta { display: none; }
  .header__logo-img { height: 26px; max-width: 180px; }
  .hero__content { left: 40px; bottom: 100px; }
  .hero__title { font-size: 34px; }
  .hero__split { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); opacity: 0.5; }
  .hero__bg-pc { display: none; }
  .hero__bg-sp { display: block; }
  .intro-section { padding: 60px 0 48px; }
  .feature-row, .feature-row--reverse { grid-template-columns: 1fr; }
  .feature-row--reverse .feature-row__img { order: 0; }
  .feature-row--reverse .feature-row__body { order: 0; }
  .feature-row__img { height: 280px; }
  .feature-row__img::after { display: none; }
  .menu-split { grid-template-columns: 1fr; }
  .menu-split__right { padding-left: 60px; }
  .director-section { clip-path: none; margin-top: 0; padding: 80px 0; }
  .director-block { grid-template-columns: 1fr; max-width: 100%; }
  .director-block__img { height: 400px; }
  .staff-section { padding-top: 80px; }
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
  .books-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .youtube-section { clip-path: none; margin: 0; padding: 80px 0; }
  .youtube-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .flow-step::after { display: none; }
  .access-split { grid-template-columns: 1fr; }
  .access-split__info { padding: 60px 40px; }
  .access-split__map iframe { min-height: 350px; }
  .section-header__en { font-size: 48px; }
  .fixed-cta { display: flex; }
  body { padding-bottom: 60px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .hero__title { font-size: 28px; }
  .hero__content { left: 24px; bottom: 80px; max-width: 90%; }
  .hero__bg-sp { object-position: 70% center; }
  .intro-section { padding: 48px 0 36px; }
  .intro-block__lead { font-size: 20px; }
  .intro-block__motto { margin-bottom: 28px; }
  .intro-block__body { padding-left: 16px; }
  .intro-block__body p { font-size: 14px; }
  .section-header__en { font-size: 36px; margin-bottom: -14px; }
  .section-header__ja { font-size: 22px; }
  .feature-row__num { font-size: 48px; }
  .menu-split__left, .menu-split__right { padding: 48px 24px; }
  .menu-split__price { font-size: 40px; }
  .director-block__body { padding: 40px 24px; }
  .director-block__name { font-size: 24px; }
  .staff-grid { gap: 16px; }
  .books-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .youtube-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 40px; }
  .flow-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .flow-step__num { font-size: 36px; }
  .footer__inner { flex-direction: column; gap: 20px; }
  .footer__nav { display: grid; grid-template-columns: auto auto; gap: 8px 24px; justify-content: start; }
  .scroll-indicator { display: none; }
  .access-split__info { padding: 48px 24px; }
  .access-buttons { flex-direction: column; }
  .btn-directions, .btn-walkguide { width: 100%; justify-content: center; }
  .walkguide-overlay { padding: 12px; }
  .walkguide-modal { max-height: 90vh; }
  .walkguide-modal__header { padding: 24px 20px 0; }
  .walkguide-modal__steps { padding: 16px 20px; }
  .walkguide-step__photos { grid-template-columns: 1fr; }
  .walkguide-modal__footer { padding: 16px 20px 24px; }
  .section { padding: 56px 0; }
  .menu-section { padding: 0 0 56px; }
  .feature-row__body { padding: 32px 20px; }
  .feature-row:last-child { margin-bottom: 0; }
}
