/* ===================================
   Leshen Total Beauty Studio
   Luxury Rose Gold — Responsive
   =================================== */

:root {
  --gold: #B8976A;
  --gold-light: #C9A882;
  --gold-pale: #E8D5B7;
  --gold-bg: #F5EFE6;
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --text-dark: #2C2C2C;
  --text-mid: #6B6B6B;
  --text-light: #9B9B9B;
  --border: rgba(184, 151, 106, 0.25);
  --shadow: 0 4px 24px rgba(184, 151, 106, 0.12);
  --shadow-lg: 0 8px 40px rgba(184, 151, 106, 0.18);
  --radius: 12px;
  --nav-height: 72px;
}

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

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

body {
  background-color: var(--cream);
  color: var(--text-dark);
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ===== NAVIGATION ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(184, 151, 106, 0.12);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.5rem 1rem;
  letter-spacing: 0.06em;
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-reserve {
  background: var(--gold);
  color: var(--white);
  padding: 0.55rem 1.5rem;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: background 0.3s, transform 0.2s;
  margin-left: 0.5rem;
}

.nav-reserve::after {
  display: none;
}

.nav-reserve:hover {
  background: #A0835A;
  color: var(--white);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-dark);
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 0.5rem 0 1rem;
}

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

.mobile-nav .nav-link {
  padding: 0.9rem 2rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-dark);
}

.mobile-nav .nav-link::after {
  display: none;
}

.mobile-nav .nav-reserve {
  margin: 1rem 2rem 0;
  text-align: center;
  display: block;
  padding: 0.9rem;
  border-radius: 3px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.22) 50%,
      rgba(0, 0, 0, 0.52) 100%);
  z-index: 1;
}

.hero-content {
  position: absolute;
  z-index: 2;
  bottom: 13%;
  left: 8%;
  color: var(--white);
}

.hero-brand {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: var(--white);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.1rem;
  line-height: 1.2;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.28);
  animation: heroSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero-label {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(0.7rem, 1.4vw, 0.85rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-pale);
  display: block;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', 'Noto Serif JP', 'Georgia', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.28);
}

.hero-sub {
  font-size: clamp(0.8rem, 1.6vw, 0.95rem);
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  bottom: 5.5%;
  left: 8%;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}

.hero-dot.active {
  width: 42px;
  background: var(--gold-pale);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 0.9rem 2.5rem;
  border-radius: 3px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
  background: #A0835A;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  padding: 0.9rem 2.5rem;
  border-radius: 3px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: background 0.3s, border-color 0.3s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
}

.btn-gold-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.85rem 3rem;
  border-radius: 3px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  transition: background 0.3s, color 0.3s;
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-reserve {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 0.7rem 1.5rem;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: background 0.3s, transform 0.2s;
  white-space: nowrap;
}

.btn-reserve:hover {
  background: #A0835A;
  transform: translateY(-1px);
}

/* ===== SECTION COMMON ===== */
.section {
  padding: clamp(4rem, 8vw, 7rem) 2rem;
}

.section-white {
  background: var(--white);
}

.section-cream {
  background: var(--cream);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-label {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Cormorant Garamond', 'Noto Serif JP', 'Georgia', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.07em;
  line-height: 1.45;
  position: relative;
  padding-bottom: 1.2rem;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--gold);
}

/* ===== CONCEPT ===== */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.concept-item {
  text-align: center;
  padding: 2.5rem 3rem;
}

.concept-item+.concept-item {
  border-left: 1px solid var(--border);
}

.concept-number {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 3rem;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 1.2rem;
  display: block;
  font-weight: 400;
}

.concept-item h3 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.9rem;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.concept-item p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 2;
}

/* ===== MENU OVERVIEW ===== */
.menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.menu-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.menu-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-card-body {
  padding: 1.5rem;
}

.menu-card h3 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.7rem;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.menu-card p {
  font-size: 0.825rem;
  color: var(--text-mid);
  line-height: 1.9;
}

.menu-more {
  text-align: center;
}

/* ===== FIRST VISIT BANNER ===== */
.first-visit-section {
  background: var(--white);
}

.first-visit-banner {
  max-width: 780px;
  margin: 0 auto;
  background: var(--gold-bg);
  border: 1px solid var(--gold-pale);
  border-radius: var(--radius);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.first-visit-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.first-visit-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 0.3rem 1.1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.first-visit-banner h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.first-visit-price {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
  line-height: 1;
  display: block;
}

.first-visit-price .price-unit {
  font-size: 0.45em;
  color: var(--text-mid);
  vertical-align: middle;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}

.first-visit-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}

/* ===== TESTIMONIALS ===== */
.voice-slider-wrap {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.voice-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.voice-card {
  flex: 0 0 100%;
  padding: 0 0.5rem;
}

.voice-card-inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3.5rem);
  position: relative;
}

.voice-quote {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 5rem;
  color: var(--gold-pale);
  position: absolute;
  top: 0.8rem;
  left: 2rem;
  line-height: 1;
  font-weight: 400;
  pointer-events: none;
  user-select: none;
}

.voice-text {
  font-size: 0.875rem;
  line-height: 2.1;
  color: var(--text-mid);
  padding-top: 2.5rem;
}

.voice-name {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.voice-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}

.voice-dot {
  width: 20px;
  height: 1px;
  background: var(--gold-pale);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 3px 0;
}

.voice-dot.active {
  width: 42px;
  background: var(--gold);
}

/* ===== GALLERY ===== */
.gallery-slider-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.gallery-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide {
  flex: 0 0 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}

.gallery-dot {
  width: 20px;
  height: 1px;
  background: var(--gold-pale);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 3px 0;
}

.gallery-dot.active {
  width: 42px;
  background: var(--gold);
}

/* ===== INFO (HOURS + ACCESS) ===== */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.info-block-title {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.hours-label {
  color: var(--text-mid);
}

.hours-value {
  color: var(--text-dark);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hours-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 1rem;
  line-height: 1.8;
}

.address-text {
  font-size: 0.875rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--gold-bg);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2.5rem;
  text-align: center;
}

.footer-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 1rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  transition: color 0.3s;
}

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

.footer-address {
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.9;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  height: 280px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  margin-top: var(--nav-height);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.58));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 8%;
  color: var(--white);
}

.page-hero-label {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-pale);
  display: block;
  margin-bottom: 0.5rem;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', 'Noto Serif JP', 'Georgia', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

/* ===== PAGE HERO: グラデーション variant ===== */
.page-hero--gradient {
  background: linear-gradient(135deg, #F5EFE6 0%, #EDE0CC 50%, #F5EFE6 100%);
}

.page-hero--gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(184, 151, 106, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(184, 151, 106, 0.15) 0%, transparent 60%);
}

.page-hero--gradient .page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero--gradient .page-hero-label {
  color: var(--gold);
}

.page-hero--gradient h1 {
  color: var(--text-dark);
}

/* ===== PAGE HERO: メニュー・料金 variant ===== */
.page-hero--menu {
  height: 420px;
  background-image: url('../images/header_bg4.jpg');
  background-size: cover;
  background-position: center 25%;
}

.page-hero--menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.55));
}

.page-hero--menu .page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero--menu .page-hero-label {
  color: var(--gold-pale);
}

.page-hero--menu h1 {
  color: var(--white);
}

/* ===== PAGE CONTENT WRAPPER ===== */
.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 2rem;
}

/* ===== MENU PAGE ===== */
.menu-category {
  margin-bottom: 4rem;
}

.menu-category-title {
  font-size: 1.1rem;
  color: var(--text-dark);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
  font-weight: 600;
  letter-spacing: 0.08em;
  position: relative;
}

.menu-category-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
  background: var(--gold);
}

.menu-item-row {
  display: grid;
  grid-template-columns: 220px 1fr 160px;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.menu-item-row:last-child {
  border-bottom: none;
}

.menu-item-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.menu-item-info h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}

.menu-item-info p {
  font-size: 0.825rem;
  color: var(--text-mid);
  line-height: 1.9;
}

.menu-item-action {
  text-align: right;
}

.menu-item-price {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.9rem;
  color: var(--gold);
  font-weight: 600;
  display: block;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.menu-item-price-note {
  font-size: 0.68rem;
  color: var(--text-light);
  display: block;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.menu-first-note {
  background: var(--gold-bg);
  border: 1px solid var(--gold-pale);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu-first-note-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  flex-shrink: 0;
}

.menu-first-note p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===== FAQ PAGE ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.4rem 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-q-mark {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  line-height: 1;
}

.faq-question-text {
  flex: 1;
  text-align: left;
}

.faq-chevron {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg) translateY(-3px);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(225deg) translateY(-3px);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0 0 2.4rem;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
  padding-left: 2.4rem;
}

.faq-answer p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 2;
}

/* ===== ACCESS PAGE ===== */
.access-info-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
}

.access-info-row {
  display: flex;
  gap: 1.5rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  align-items: baseline;
}

.access-info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.access-info-label {
  font-weight: 600;
  color: var(--gold);
  min-width: 70px;
  flex-shrink: 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.access-info-value {
  color: var(--text-mid);
  line-height: 1.7;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.route-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: flex-start;
}

.route-step-num {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 2.2rem;
  color: var(--gold-pale);
  line-height: 1;
  flex-shrink: 0;
  font-weight: 600;
  min-width: 2rem;
}

.route-card-img {
  width: 110px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.route-card p {
  font-size: 0.825rem;
  color: var(--text-mid);
  line-height: 1.9;
}

/* ===== CONTACT PAGE ===== */
.contact-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 680px;
  margin: 0 auto;
}

.contact-option {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: var(--white);
}

.contact-option:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.contact-option-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.contact-option h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.06em;
}

.contact-option p {
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.btn-contact {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 0.8rem 2rem;
  border-radius: 3px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: background 0.3s;
}

.btn-contact:hover {
  background: #A0835A;
}

/* ===== FADE IN ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ===== HERO ENTRANCE ===== */
@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-label {
  animation: heroSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.hero-title {
  animation: heroSlideUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.65s both;
}

.hero-sub {
  animation: heroSlideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.95s both;
}

.hero-cta {
  animation: heroSlideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.15s both;
}

/* ===== SECTION TITLE LINE REVEAL ===== */
.fade-in .section-title::after {
  width: 0;
  transition: width 0.7s ease 0.45s;
}

.fade-in.visible .section-title::after {
  width: 40px;
}

/* ===== GOLD SHIMMER ON PRICE ===== */
@keyframes goldShimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.first-visit-price {
  background: linear-gradient(90deg, var(--gold) 20%, #F0D898 50%, var(--gold) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 4s linear infinite;
}

/* ===== STAGGER CHILDREN ===== */
.stagger>* {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger.visible>* {
  opacity: 1;
  transform: none;
}

.stagger.visible>*:nth-child(1) {
  transition-delay: 0.08s;
}

.stagger.visible>*:nth-child(2) {
  transition-delay: 0.20s;
}

.stagger.visible>*:nth-child(3) {
  transition-delay: 0.32s;
}

.stagger.visible>*:nth-child(4) {
  transition-delay: 0.44s;
}

.stagger.visible>*:nth-child(5) {
  transition-delay: 0.56s;
}

.stagger.visible>*:nth-child(6) {
  transition-delay: 0.68s;
}

/* ===== HERO PARALLAX ===== */
.hero-slide img {
  transform: scale(1.08);
  transform-origin: center;
  will-change: transform;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .concept-grid {
    grid-template-columns: 1fr;
  }

  .concept-item+.concept-item {
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .concept-item {
    padding: 2rem 1rem;
  }

  .menu-cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .menu-item-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .menu-item-img {
    width: 100%;
    height: 180px;
  }

  .menu-item-action {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .menu-item-price {
    display: inline;
    margin-bottom: 0;
    margin-right: 0.5rem;
  }

  .menu-item-price-note {
    display: inline;
    margin-bottom: 0;
    margin-right: 1rem;
  }

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

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .site-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    left: 5%;
    right: 5%;
    bottom: 14%;
  }

  .hero-cta {
    gap: 0.75rem;
  }

  .btn-primary,
  .btn-outline {
    padding: 0.8rem 1.8rem;
    font-size: 0.8rem;
  }

  .first-visit-note {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    text-align: center;
  }

  .page-hero {
    height: 220px;
  }

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

  .contact-options {
    grid-template-columns: 1fr;
  }

  .menu-first-note {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
}

@media (max-width: 480px) {
  .footer-nav {
    gap: 0.6rem;
  }

  .footer-nav a {
    font-size: 0.65rem;
    letter-spacing: 0.02em;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }
}
