/* ============================================================
   MOOD — 분위기 좋은 강남맛집 바이탈바이브
   Design: 지중해 웜톤 / 테라코타 + 크림 + 와인
   ============================================================ */

/* ── 0. CSS Variables ───────────────────────────────────────── */
:root {
  --primary:        #B5541A;
  --primary-dark:   #8B3E12;
  --primary-light:  #CF7847;

  --accent:         #7B1D2E;
  --accent-light:   #A83248;

  --gold:           #C9985A;
  --gold-light:     #DEB882;

  --bg:             #FAF8F4;
  --bg-warm:        #F5EDE0;
  --bg-cream:       #EDE0CB;
  --bg-terracotta:  #3A1A0A;

  --text-dark:      #1E0E04;
  --text-body:      #3A2A1A;
  --text-muted:     #7A6555;
  --text-light:     #B09980;

  --border:         rgba(181,84,26,.1);
  --border-dark:    rgba(181,84,26,.2);

  --radius-sharp:   1px;
  --radius:         3px;
  --radius-lg:      6px;

  --shadow-sm:      0 1px 6px rgba(58,26,10,.05);
  --shadow:         0 4px 24px rgba(58,26,10,.08);
  --shadow-lg:      0 12px 48px rgba(58,26,10,.12);
  --shadow-xl:      0 24px 64px rgba(58,26,10,.16);

  --transition:     all .4s cubic-bezier(.4,0,.2,1);
  --transition-fast: all .25s cubic-bezier(.4,0,.2,1);

  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-heading:   'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  --font-body:      'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;

  --container:      1200px;
  --container-narrow: 800px;
  --header-h:       72px;
  --px:             clamp(1.25rem, 5vw, 3rem);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg);
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: -.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--primary); color: #fff; }

/* ── 2. Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }

p { line-height: 1.85; color: var(--text-body); }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .85rem;
}
.eyebrow--center { text-align: center; }
.eyebrow--gold   { color: var(--gold); }
.eyebrow--light  { color: rgba(255,255,255,.5); }

/* ── 3. Layout ──────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--px);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: var(--px);
}

.section {
  padding-block: clamp(4rem, 10vw, 7rem);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-title--center { text-align: center; margin-inline: auto; }

/* ── 4. Scroll Reveal ───────────────────────────────────────── */
.rv { opacity: 1; transform: none; }
.rv.in { opacity: 1; transform: none; }

/* ── 5. Buttons ─────────────────────────────────────────────── */
.btn-primary,
.btn-outline-terra,
.btn-hero-primary,
.btn-hero-ghost {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .04em;
  cursor: pointer;
  text-align: center;
  word-break: keep-all;
  line-height: 1.4;
  transition: var(--transition);
}

.btn-primary {
  padding: .85rem 2.2rem;
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  border-radius: var(--radius-sharp);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline-terra {
  padding: .85rem 2.2rem;
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: var(--radius-sharp);
}
.btn-outline-terra:hover {
  background: var(--primary);
  color: #fff;
}

.btn-hero-primary {
  padding: .9rem 2.4rem;
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  border-radius: var(--radius-sharp);
}
.btn-hero-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-hero-ghost {
  padding: .9rem 2.4rem;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: var(--radius-sharp);
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
}

/* ── 6. Header ──────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  height: var(--header-h);
  padding-inline: var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s, box-shadow .4s;
}

.site-header.scrolled {
  background: rgba(250,248,244,.97);
  box-shadow: 0 1px 0 rgba(181,84,26,.1);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: .04em;
  color: #fff;
  transition: color .4s;
}
.site-header.scrolled .logo-text { color: var(--primary); }

.nav-links {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  list-style: none;
}
.nav-links a {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  position: relative;
  padding-bottom: 2px;
  transition: color .3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s;
}
.nav-links a:hover::after { width: 100%; }
.site-header.scrolled .nav-links a { color: var(--text-body); }
.site-header.scrolled .nav-links a:hover { color: var(--primary); }

.btn-primary.header-cta {
  padding: .65rem 1.5rem;
  font-size: .88rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: rgba(255,255,255,.9);
  transition: var(--transition);
}
.site-header.scrolled .hamburger span { background: var(--primary); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-terracotta);
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700;
  color: rgba(255,255,255,.75);
  letter-spacing: -.02em;
  transition: color .3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── 7. Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
/* Hero slides — stacked, CSS transition controls opacity */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform-origin: center center;
  transition: opacity 1.5s ease-in-out;
}
.hero-slide:first-child { opacity: 1; }
.hero-slide.active { will-change: transform; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Ken Burns — 5 variants, applied per-slide via JS */
@keyframes kenburns-1 { 0% { transform: scale(1)    translate(0,0);     } 100% { transform: scale(1.15) translate(-2%,-1%);  } }
@keyframes kenburns-2 { 0% { transform: scale(1.05) translate(2%,0);    } 100% { transform: scale(1.18) translate(-1%, 2%);  } }
@keyframes kenburns-3 { 0% { transform: scale(1)    translate(-1%, 2%); } 100% { transform: scale(1.2)  translate(1%, -1%);  } }
@keyframes kenburns-4 { 0% { transform: scale(1.08) translate(0,-2%);   } 100% { transform: scale(1.15) translate(-2%, 1%);  } }
@keyframes kenburns-5 { 0% { transform: scale(1.02) translate(1%, 1%);  } 100% { transform: scale(1.18) translate(-1%, -2%); } }

/* Subtle top fade — nav/logo readability */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(30,14,4,.38), transparent);
  z-index: 1;
  pointer-events: none;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: clamp(2rem, 5vw, 3rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.hero-scroll-text {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.25);
  position: relative;
  overflow: hidden;
}
.scroll-line {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255,255,255,.85);
  animation: scrollLineFlow 1.8s ease-in-out infinite;
  animation-delay: .5s;
}
@keyframes scrollLineFlow {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ── 7-B. Hero Text Section ─────────────────────────────────── */
.hero-text-section {
  padding: clamp(5rem, 14vw, 9rem) var(--px) clamp(4rem, 9vw, 6.5rem);
  text-align: center;
  background: var(--bg);
}
.hero-brand-label {
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  display: block;
}
.hero-main-h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 11vw, 9rem);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -.04em;
  line-height: 1.0;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  word-break: keep-all;
}
/* Text reveal masks — overflow:hidden clips lines sliding up */
.line-mask {
  display: block;
  overflow: hidden;
  padding-bottom: .08em;
}
.hero-line-inner {
  display: block;
}

/* ── 7-C. Hero Text Reveal (GSAP 없이 CSS transition + IO) ──── */
/* Transitions — JS가 .is-pre-anim → .is-visible 클래스 전환 */
.hero-text-section .hero-brand-label  { transition: opacity .8s ease, transform .8s ease; }
.hero-text-section .hero-line-inner   { transition: transform 1.2s cubic-bezier(.16,1,.3,1); }
.hero-text-section .hero-main-sub     { transition: opacity 1s ease, transform 1s ease; }
.hero-text-section .hero-main-divider { transition: width 1.2s ease; }
.hero-text-section .hero-main-actions { transition: opacity .8s ease, transform .8s ease; }
.hero-text-section .hero-info-chips   { transition: opacity .7s ease, transform .7s ease; }

/* Initial hidden state (JS가 .is-pre-anim 추가) */
.hero-text-section.is-pre-anim .hero-brand-label  { opacity: 0; transform: translateY(30px); }
.hero-text-section.is-pre-anim .hero-line-inner   { transform: translateY(110%); }
.hero-text-section.is-pre-anim .hero-main-sub     { opacity: 0; transform: translateY(40px); }
.hero-text-section.is-pre-anim .hero-main-actions { opacity: 0; transform: translateY(20px); }
.hero-text-section.is-pre-anim .hero-info-chips   { opacity: 0; transform: translateY(16px); }

/* Visible state + stagger (IntersectionObserver가 .is-visible 추가) */
.hero-text-section.is-visible .hero-main-h1 .line-mask:nth-child(2) .hero-line-inner { transition-delay: .15s; }
.hero-text-section.is-visible .hero-main-sub     { transition-delay: .3s; }
.hero-text-section.is-visible .hero-main-divider { width: 48px; transition-delay: .5s; }
.hero-text-section.is-visible .hero-main-actions { transition-delay: .45s; }
.hero-text-section.is-visible .hero-info-chips   { transition-delay: .6s; }
.hero-main-sub {
  font-size: clamp(.76rem, 1.5vw, .92rem);
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: .14em;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  display: block;
}
.hero-main-divider {
  width: 0;
  height: 1px;
  background: var(--border-dark);
  margin: 0 auto clamp(2rem, 5vw, 3rem);
}
.hero-main-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}
.hero-info-chips {
  display: flex;
  gap: .5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.info-chip {
  padding: .3rem .9rem;
  border: 1px solid var(--border-dark);
  color: var(--text-muted);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .05em;
}

/* ── 8. Stats Strip ─────────────────────────────────────────── */
.stats-strip {
  background: var(--bg-cream);
  border-block: 1px solid var(--border);
}

.stats-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 3rem) var(--px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.stat-item {
  text-align: center;
  flex: 0 0 auto;
}
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 100;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: .3rem;
}
.stat-label {
  font-size: .72rem;
  letter-spacing: .06em;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-dark);
  flex-shrink: 0;
}
@media (max-width: 560px) {
  .stat-divider { display: none; }
  .stats-inner { gap: 1.5rem; }
}

/* ── 9. Intro / About Section ───────────────────────────────── */
.about {
  background: var(--bg-warm);
}

.about-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--px);
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}

/* Image container with parallax-ready styling */
.img-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.img-container img {
  width: 100%; height: 110%;
  object-fit: cover;
  position: absolute;
  top: -5%;
  display: block;
  transition: transform 1.2s cubic-bezier(.4,0,.2,1);
}
.img-container:hover img { transform: scale(1.03) translateY(1%); }

.about-body { }

.about-text {
  font-size: clamp(.88rem, 1.8vw, 1rem);
  color: var(--text-body);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1rem;
}

@media (max-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-img {
    order: -1;
  }
  .about-inner .img-container {
    aspect-ratio: 16/9;
  }
}

/* ── 10. Feature Rows (교차형) ──────────────────────────────── */
.features {
  background: var(--bg);
}

.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: var(--container);
  margin-inline: auto;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.feat-row--reverse { direction: rtl; }
.feat-row--reverse > * { direction: ltr; }

.feat-row-img {
  position: relative;
  overflow: hidden;
  min-height: clamp(280px, 40vw, 480px);
}
.feat-row-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.4,0,.2,1);
  display: block;
}
.feat-row:hover .feat-row-img img { transform: scale(1.05); }

.feat-row-label {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  z-index: 2;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary);
  padding: .32rem .85rem;
}

.feat-row-body {
  background: var(--bg-warm);
  padding: clamp(3rem, 7vw, 5rem) clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feat-row-h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -.03em;
  margin-bottom: 1.25rem;
}

.feat-row-desc {
  font-size: clamp(.86rem, 1.6vw, .96rem);
  color: var(--text-muted);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.75rem;
}

.feat-row-link {
  font-size: .82rem;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(181,84,26,.25);
  padding-bottom: .25rem;
  display: inline-block;
  width: fit-content;
  transition: color .3s, border-color .3s;
}
.feat-row-link:hover { color: var(--primary-dark); border-color: var(--primary-dark); }

@media (max-width: 768px) {
  .feat-row { grid-template-columns: 1fr; direction: ltr; }
  .feat-row--reverse { direction: ltr; }
  .feat-row-img { min-height: 260px; }
  .feat-row-body { padding: 2rem var(--px); }
}

/* ── 11. Gallery ────────────────────────────────────────────── */
.gallery {
  background: var(--bg-warm);
}

.gallery-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: .6rem;
}

.gal-item {
  overflow: hidden;
  border-radius: var(--radius-sharp);
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(10%);
  transition: transform .6s, filter .5s;
  display: block;
}
.gal-item:hover img { transform: scale(1.05); filter: grayscale(0%); }

.gal-item--tall { grid-row: span 2; }
.gal-item--wide { grid-column: span 2; }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gal-item--tall  { grid-row: span 1; }
  .gal-item--wide  { grid-column: span 2; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .gal-item--wide  { grid-column: span 2; }
}

/* ── 12. Mood Navigation Cards ──────────────────────────────── */
.mood-nav {
  background: var(--bg);
}

.mood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.mood-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-sharp);
  box-shadow: var(--shadow-sm);
  transition: transform .4s, box-shadow .4s;
  text-decoration: none;
  color: inherit;
}
.mood-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.mood-card-img {
  height: clamp(180px, 28vw, 240px);
  overflow: hidden;
}
.mood-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: transform .6s, filter .5s;
}
.mood-card:hover .mood-card-img img { transform: scale(1.06); filter: grayscale(0%); }

.mood-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mood-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -.02em;
  margin-bottom: .6rem;
}
.mood-card-desc {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
  margin-bottom: 1rem;
}
.mood-card-arrow {
  font-size: .85rem;
  color: var(--primary);
  font-weight: 500;
  transition: transform .3s;
  display: inline-block;
}
.mood-card:hover .mood-card-arrow { transform: translateX(5px); }

/* ── 13. Map Section ────────────────────────────────────────── */
.map-section {
  background: var(--bg);
}

.map-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.map-embed {
  border-radius: var(--radius-sharp);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-embed iframe { display: block; }

.map-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.map-info-row {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.map-info-row:last-of-type { border-bottom: none; }

.map-info-label {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--primary);
}
.map-info-value {
  font-size: .9rem;
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .map-layout { grid-template-columns: 1fr; }
  .map-embed iframe { height: 280px; }
}

/* ── 14. FAQ Section (다크 배경) ────────────────────────────── */
.faq-section {
  background: var(--bg-terracotta);
  padding-block: clamp(4rem, 10vw, 7rem);
}

.faq-grid {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--px);
  display: grid;
  grid-template-columns: 2fr 5fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.faq-intro { }

.faq-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 1rem;
}

.faq-sub {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 300;
}

.btn-faq-book {
  display: inline-block;
  font-size: .85rem;
  color: var(--gold-light);
  border: 1px solid rgba(201,152,90,.35);
  padding: .75rem 1.5rem;
  letter-spacing: .04em;
  border-radius: var(--radius-sharp);
  transition: background .3s, color .3s;
}
.btn-faq-book:hover {
  background: var(--gold);
  color: var(--bg-terracotta);
  border-color: var(--gold);
}

.faq-list {
  border-top: 1px solid rgba(255,255,255,.08);
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: clamp(.86rem, 1.8vw, .96rem);
  font-weight: 400;
  color: rgba(255,255,255,.75);
  background: none;
  border: none;
  cursor: pointer;
  gap: 1rem;
  transition: color .3s;
}
.faq-btn:hover { color: var(--gold-light); }

.faq-icon {
  flex-shrink: 0;
  width: 1.75rem; height: 1.75rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.35);
  font-style: normal;
  font-size: .9rem;
  transition: all .25s;
}
.faq-btn[aria-expanded="true"] .faq-icon {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,152,90,.12);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.faq-a.open { max-height: 400px; }

.faq-a-inner {
  padding-bottom: 1.25rem;
  color: rgba(255,255,255,.45);
  font-weight: 300;
  font-size: .88rem;
  line-height: 1.85;
}

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── 15. CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
}
.cta-banner-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(10%);
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(30,14,4,.6) 0%, rgba(58,26,10,.82) 100%);
}

.cta-banner-body {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 5rem var(--px) 4rem;
  max-width: 700px;
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.04em;
  margin-bottom: 1.25rem;
}

.cta-banner-sub {
  font-size: clamp(.88rem, 2vw, 1rem);
  color: rgba(255,255,255,.58);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.cta-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: center;
  list-style: none;
}
.cta-features li {
  font-size: .7rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .1em;
  position: relative;
  padding-left: .9rem;
}
.cta-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
}

@media (max-width: 480px) {
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .btn-hero-primary, .btn-hero-ghost { width: 100%; max-width: 280px; }
}

/* ── 16. Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-terracotta);
  color: rgba(255,255,255,.45);
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
  border-top: 2px solid rgba(201,152,90,.15);
}

.footer-inner {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--px);
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,.7);
  letter-spacing: .06em;
  margin-bottom: .6rem;
  display: block;
}

.footer-tagline {
  font-size: .78rem;
  color: rgba(255,255,255,.32);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.footer-biz {
  font-style: normal;
  font-size: .72rem;
  line-height: 1.9;
  font-weight: 300;
}

.footer-heading {
  font-size: .62rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,.32);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer-links a {
  font-size: .8rem;
  color: rgba(255,255,255,.42);
  font-weight: 300;
  transition: color .3s;
}
.footer-links a:hover { color: rgba(255,255,255,.8); }

.footer-ops {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .3rem 1rem;
  font-size: .78rem;
  font-weight: 300;
}
.footer-ops dt { color: rgba(255,255,255,.32); }
.footer-ops dd { color: rgba(255,255,255,.6); }

.footer-access {
  font-size: .75rem;
  color: rgba(255,255,255,.28);
  margin-top: .75rem;
  font-weight: 300;
}

.biz-row {
  display: block;
  font-size: .72rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,.38);
}
.biz-row strong {
  color: rgba(255,255,255,.4);
  font-weight: 400;
  margin-right: .4em;
}

.footer-bottom {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--px);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}

.footer-copy {
  font-size: .68rem;
  font-weight: 300;
  color: rgba(255,255,255,.22);
}
.footer-blueribon {
  font-size: .65rem;
  letter-spacing: .08em;
  color: rgba(201,152,90,.4);
}

@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── 17. Floating CTA ───────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: clamp(1.25rem, 3vw, 2rem);
  right: clamp(1.25rem, 3vw, 2rem);
  z-index: 800;
  display: none;
  align-items: center;
  gap: .5rem;
  height: 50px;
  padding: 0 1.3rem;
  background: var(--primary);
  border-radius: var(--radius-sharp);
  box-shadow: 0 6px 24px rgba(181,84,26,.35);
  color: #fff;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .03em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .3s, background .3s, box-shadow .3s;
}
.floating-cta.visible { display: flex; }
.floating-cta:hover {
  transform: translateY(-3px);
  background: var(--primary-dark);
  box-shadow: 0 10px 32px rgba(181,84,26,.4);
}

/* ── 18. Back to Top ────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: clamp(1.25rem, 3vw, 2rem);
  right: clamp(4.5rem, 8vw, 6rem);
  z-index: 800;
  width: 44px; height: 44px;
  background: rgba(250,248,244,.92);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sharp);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s, transform .35s;
  box-shadow: var(--shadow-sm);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-2px); border-color: var(--primary); }

/* ── 19. Page Hero (서브페이지) ──────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-terracotta);
}
.page-hero--sm { min-height: 36vh; }

.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  animation: pgHeroZoom 14s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes pgHeroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.05); }
}

.page-hero-dim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,14,4,.88) 0%, rgba(30,14,4,.35) 55%, rgba(30,14,4,.05) 100%);
  z-index: 1;
}

.page-hero-inner {
  position: relative; z-index: 2;
  padding: 2.5rem var(--px) 4rem;
  width: 100%;
}

.page-hero-crumb {
  font-size: .6rem; letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
  display: block; margin-bottom: 1rem;
}
.page-hero-crumb a { color: inherit; transition: color .2s; }
.page-hero-crumb a:hover { color: var(--gold); }

.page-hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -.04em;
  margin-bottom: .75rem;
}

.page-hero-sub {
  font-size: clamp(.8rem, 1.5vw, .92rem);
  color: rgba(255,255,255,.45);
  font-weight: 300;
  letter-spacing: .06em;
}

/* ── 20. Sub-page Layout ────────────────────────────────────── */
.pg-intro {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .pg-intro { grid-template-columns: 5fr 7fr; }
}
.pg-intro__img {
  position: relative; overflow: hidden;
  background: var(--bg-warm);
  aspect-ratio: 4/3;
}
@media (min-width: 768px) { .pg-intro__img { aspect-ratio: auto; } }
.pg-intro__img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16,1,0.3,1);
}
.pg-intro__img:hover img { transform: scale(1.04); }
.pg-intro__body {
  padding: 4rem 2.5rem;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--bg-warm);
}
@media (min-width: 768px)  { .pg-intro__body { padding: 5rem 4rem; } }
@media (min-width: 1200px) { .pg-intro__body { padding: 6rem 6rem; } }

.pg-intro__eyebrow {
  font-size: .6rem; letter-spacing: .4em;
  text-transform: uppercase; color: var(--primary);
  display: block; margin-bottom: 1rem;
}
.pg-intro__h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-weight: 700; letter-spacing: -.03em;
  color: var(--text-dark); line-height: 1.2;
  margin-bottom: 1.5rem;
}
.pg-intro__p {
  font-size: .875rem; color: var(--text-muted);
  line-height: 2.0; letter-spacing: .02em;
  word-break: keep-all; margin-bottom: 1rem;
}
.pg-intro__cta {
  margin-top: 1rem;
  font-size: .88rem; letter-spacing: .03em;
  color: var(--primary);
  border-bottom: 1px solid rgba(181,84,26,.25);
  padding-bottom: .25rem; display: inline-block;
  transition: color .3s, border-color .3s;
}
.pg-intro__cta:hover { color: var(--primary-dark); border-color: var(--primary-dark); }

/* §2.5 키포인트 스트립 (서브페이지) */
.pg-keypoints {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem var(--px);
}
.pg-keypoints__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  align-items: center;
}
.pg-keypoints__item {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.pg-keypoints__icon {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.pg-keypoints__label {
  font-size: .78rem;
  color: var(--text-dark);
  font-weight: 500;
  letter-spacing: .01em;
  white-space: nowrap;
}

/* §3.5 이용 안내 (서브페이지) */
.pg-info {
  background: var(--bg);
  padding: clamp(4rem,10vw,7rem) var(--px);
}
.pg-info__head { text-align: center; margin-bottom: 3rem; }
.pg-info__eyebrow {
  font-size: .6rem; letter-spacing: .4em;
  text-transform: uppercase; color: var(--primary);
  display: block; margin-bottom: .75rem;
}
.pg-info__h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700; letter-spacing: -.03em; color: var(--text-dark);
}
.pg-info__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: var(--container);
  margin-inline: auto;
}
@media (min-width: 600px)  { .pg-info__grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .pg-info__grid { grid-template-columns: repeat(4,1fr); } }
.pg-info__card {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  padding: 1.75rem;
}
.pg-info__title {
  font-family: var(--font-heading);
  font-size: .88rem; font-weight: 700;
  letter-spacing: -.01em; color: var(--primary);
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--border);
}
.pg-info__list {
  list-style: none; padding: 0; margin: 0 0 1rem;
  display: flex; flex-direction: column; gap: .55rem;
}
.pg-info__list li {
  display: flex; gap: .5rem;
  font-size: .78rem; line-height: 1.7;
}
.pg-info__list li span:first-child {
  color: var(--text-muted);
  flex-shrink: 0;
  width: 5.5rem;
}
.pg-info__list li span:last-child { color: var(--text-dark); font-weight: 500; }
.pg-info__map-link {
  display: inline-block;
  font-size: .7rem; letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  text-decoration: none;
  transition: opacity .2s;
}
.pg-info__map-link:hover { opacity: .7; }

/* Features grid (서브페이지) */
.pg-features {
  background: var(--bg);
  padding: clamp(4rem,10vw,7rem) var(--px);
}
.pg-features__head { text-align: center; margin-bottom: 3rem; }
.pg-features__eyebrow {
  font-size: .6rem; letter-spacing: .4em;
  text-transform: uppercase; color: var(--primary);
  display: block; margin-bottom: .75rem;
}
.pg-features__h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700; letter-spacing: -.03em; color: var(--text-dark);
}
.pg-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: var(--container);
  margin-inline: auto;
}
@media (min-width: 640px)  { .pg-features__grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .pg-features__grid { grid-template-columns: repeat(3,1fr); } }

.pg-feat-card {
  background: var(--bg-warm);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
  border: 1px solid var(--border);
}
.pg-feat-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.pg-feat-card__img { aspect-ratio: 4/3; overflow: hidden; }
.pg-feat-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s; }
.pg-feat-card:hover .pg-feat-card__img img { transform: scale(1.06); }
.pg-feat-card__body { padding: 1.5rem 1.75rem; }
.pg-feat-card__title {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 600; letter-spacing: -.02em;
  color: var(--text-dark); margin-bottom: .5rem;
}
.pg-feat-card__desc { font-size: .8rem; color: var(--text-muted); line-height: 1.8; }

/* FAQ dark (서브페이지) */
.pg-faq {
  background: var(--bg-terracotta);
  padding: clamp(4rem,10vw,7rem) var(--px);
}
.pg-faq__grid {
  display: grid; gap: 4rem;
  max-width: var(--container);
  margin-inline: auto;
}
@media (min-width: 900px) {
  .pg-faq__grid { grid-template-columns: 4fr 8fr; gap: 6rem; }
}
.pg-faq__eyebrow {
  font-size: .6rem; letter-spacing: .4em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 1rem;
}
.pg-faq__h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700; letter-spacing: -.03em;
  color: #fff; line-height: 1.2; margin-bottom: 1.25rem;
}
.pg-faq__sub { font-size: .8rem; color: rgba(255,255,255,.38); line-height: 1.8; margin-bottom: 2rem; }
.pg-faq__book {
  font-size: .88rem; letter-spacing: .03em;
  color: var(--gold-light);
  border: 1px solid rgba(201,152,90,.3);
  padding: .75rem 1.75rem; display: inline-block;
  transition: background .3s, color .3s;
}
.pg-faq__book:hover { background: var(--gold); color: var(--bg-terracotta); }
.pg-faq__list { border-top: 1px solid rgba(255,255,255,.08); }
.pg-faq__item { border-bottom: 1px solid rgba(255,255,255,.08); }
.pg-faq__q {
  width: 100%; text-align: left; background: none;
  padding: 1.25rem 0;
  font-size: .875rem; color: rgba(255,255,255,.72);
  letter-spacing: .02em; line-height: 1.6;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  cursor: pointer; transition: color .2s;
}
.pg-faq__q:hover { color: var(--gold-light); }
.pg-faq__icon {
  width: 1.75rem; height: 1.75rem; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: rgba(255,255,255,.35);
  transition: all .25s;
}
.pg-faq__item.open .pg-faq__icon { border-color: var(--gold); color: var(--gold); background: rgba(201,152,90,.1); }
.pg-faq__a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(0.16,1,0.3,1); }
.pg-faq__item.open .pg-faq__a { max-height: 360px; }
.pg-faq__a-inner { font-size: .84rem; color: rgba(255,255,255,.42); line-height: 2.0; padding: 0 0 1.5rem; word-break: keep-all; }

/* Related (서브페이지) */
.pg-related {
  background: var(--bg);
  padding: clamp(3rem,7vw,5rem) var(--px);
  border-top: 1px solid var(--border);
}
.pg-related__inner { max-width: var(--container); margin-inline: auto; }
.pg-related__eyebrow { font-size: .6rem; letter-spacing: .4em; text-transform: uppercase; color: var(--primary); display: block; margin-bottom: 1rem; }
.pg-related__h2 { font-family: var(--font-heading); font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 700; letter-spacing: -.02em; color: var(--text-dark); margin-bottom: 1.75rem; }
.pg-related__list { display: flex; flex-wrap: wrap; gap: .5rem; }
.pg-related__link {
  font-size: .78rem;
  border: 1px solid var(--border-dark);
  padding: .5rem 1.2rem;
  color: var(--text-body); background: var(--bg);
  transition: border-color .2s, color .2s;
  border-radius: var(--radius-sharp);
}
.pg-related__link:hover { border-color: var(--primary); color: var(--primary); }

/* CTA section (서브페이지) */
.pg-cta {
  background: var(--primary);
  padding: clamp(4rem,10vw,7rem) var(--px);
  text-align: center;
}
.pg-cta__eyebrow { font-size: .6rem; letter-spacing: .4em; text-transform: uppercase; color: rgba(255,255,255,.55); display: block; margin-bottom: 1rem; }
.pg-cta__h2 { font-family: var(--font-heading); font-size: clamp(1.75rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: -.04em; color: #fff; line-height: 1.1; margin-bottom: 1.25rem; }
.pg-cta__sub { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 2.5rem; }
.pg-cta__btn {
  display: inline-block;
  padding: 1rem 3rem;
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.45);
  font-size: .9rem; letter-spacing: .04em;
  transition: background .3s, border-color .3s;
}
.pg-cta__btn:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); }

/* ── 21. Filter / Sitemap ───────────────────────────────────── */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}
.filter-btn {
  padding: .45rem 1.2rem;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sharp);
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 500; letter-spacing: .03em;
  color: var(--text-muted); background: var(--bg);
  cursor: pointer; transition: var(--transition-fast);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.sm-search-wrap { margin-bottom: 1.5rem; }
.sm-search-input {
  width: 100%; max-width: 400px;
  padding: .72rem 1.25rem;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sharp);
  font-family: var(--font-body);
  font-size: .87rem; font-weight: 300;
  color: var(--text-dark); background: var(--bg);
  outline: none; transition: border-color .3s;
}
.sm-search-input:focus { border-color: var(--primary); }

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .75rem;
}
.sitemap-card {
  display: flex; flex-direction: column; gap: .3rem;
  padding: 1rem 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sharp);
  transition: border-color .3s, background .3s;
}
.sitemap-card:hover { border-color: var(--primary); background: var(--bg-warm); }
.sitemap-card-cat {
  font-size: .62rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--primary); font-weight: 500;
}
.sitemap-card-title { font-size: .87rem; color: var(--text-dark); font-weight: 400; }

/* ── 22. Reservation page ───────────────────────────────────── */
.res-hero {
  min-height: 100svh;
  background: var(--bg-terracotta);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem var(--px) 5rem;
  position: relative; overflow: hidden;
}
.res-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('/assets/img/atmosphere-05.webp') center/cover no-repeat;
  opacity: 0.15;
}
.res-hero__inner { position: relative; z-index: 1; }
.res-hero__eyebrow { font-size: .7rem; letter-spacing: 5px; text-transform: uppercase; color: rgba(255,255,255,.38); display: block; margin-bottom: 1.5rem; }
.res-hero__heading { font-family: var(--font-body); font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 200; letter-spacing: .08em; color: rgba(255,255,255,.42); margin-bottom: .75rem; }
.res-hero__phone { font-family: var(--font-heading); font-size: clamp(2.5rem, 8vw, 5.5rem); font-weight: 200; color: #fff; line-height: 1; display: block; margin-bottom: .4rem; text-decoration: none; letter-spacing: -.04em; transition: opacity .3s; }
.res-hero__phone:hover { opacity: .72; }
.res-hero__alt { font-size: .76rem; color: rgba(255,255,255,.28); margin-bottom: 2.5rem; display: block; }
.res-hero__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }
.res-hero__btn-main { display: inline-block; font-size: .74rem; letter-spacing: 3px; text-transform: uppercase; color: #fff; background: var(--primary); padding: 1rem 2.5rem; border: 1px solid var(--primary); transition: background .3s; }
.res-hero__btn-main:hover { background: var(--primary-dark); }
.res-hero__btn-sub { display: inline-block; font-size: .74rem; letter-spacing: 3px; text-transform: uppercase; color: #fff; border: 1px solid rgba(255,255,255,.28); padding: 1rem 2.5rem; transition: border-color .3s; }
.res-hero__btn-sub:hover { border-color: rgba(255,255,255,.7); }
.res-hero__hours { display: inline-flex; gap: 2rem; flex-wrap: wrap; justify-content: center; font-size: .72rem; color: rgba(255,255,255,.3); letter-spacing: .05em; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.08); }
.res-hero__hours strong { color: rgba(255,255,255,.55); }

.res-channels-wrap { padding: 3.5rem var(--px) 1.5rem; max-width: var(--container); margin: 0 auto; }
.res-channels-eyebrow { font-size: .65rem; letter-spacing: 4px; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: .75rem; }
.res-channels-heading { font-family: var(--font-heading); font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; letter-spacing: -.03em; color: var(--primary); margin-bottom: 2rem; }
.res-ch-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); }
@media (min-width: 640px)  { .res-ch-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .res-ch-grid { grid-template-columns: repeat(5, 1fr); } }
.res-ch { background: var(--bg); padding: 2.25rem 1.5rem; display: flex; flex-direction: column; align-items: flex-start; gap: .6rem; text-decoration: none; color: inherit; transition: background .25s; }
.res-ch:hover { background: var(--bg-warm); }
.res-ch__icon { width: 28px; height: 28px; color: var(--primary); flex-shrink: 0; }
.res-ch__name { font-size: .88rem; font-weight: 500; color: var(--text-dark); letter-spacing: .02em; }
.res-ch__desc { font-size: .75rem; color: var(--text-muted); line-height: 1.6; }
.res-ch__arrow { font-size: .72rem; color: var(--primary); margin-top: auto; transition: transform .25s; font-style: normal; }
.res-ch:hover .res-ch__arrow { transform: translateX(4px); }

.res-info-section { background: var(--bg-terracotta); padding: clamp(3rem,7vw,5rem) var(--px); }
.res-info-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 3.5rem; }
@media (min-width: 768px) { .res-info-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.res-info-label { font-size: .65rem; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,.32); display: block; margin-bottom: 1rem; }
.res-info-title { font-family: var(--font-heading); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; letter-spacing: -.03em; color: rgba(255,255,255,.82); margin-bottom: 1.5rem; }
.res-hours-table { width: 100%; border-collapse: collapse; }
.res-hours-table td { padding: .65rem 0; border-bottom: 1px solid rgba(255,255,255,.07); font-size: .84rem; vertical-align: top; }
.res-hours-table td:first-child { color: rgba(255,255,255,.35); width: 8rem; }
.res-hours-table td:last-child { color: rgba(255,255,255,.7); font-weight: 500; }
.res-notice-list { display: flex; flex-direction: column; gap: .75rem; list-style: none; padding: 0; margin: 0; }
.res-notice-list li { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.85; display: flex; gap: .75rem; }
.res-notice-list li::before { content: '—'; color: rgba(255,255,255,.18); flex-shrink: 0; }
.res-location { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.08); }
.res-location p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.9; }
.res-location small { font-size: .76rem; color: rgba(255,255,255,.28); }
.res-location a { display: inline-block; margin-top: 1rem; font-size: .7rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.5); border-bottom: 1px solid rgba(255,255,255,.14); padding-bottom: 2px; text-decoration: none; transition: color .25s, border-color .25s; }
.res-location a:hover { color: #fff; border-color: rgba(255,255,255,.4); }

.res-biz-wrap { max-width: var(--container); margin: 0 auto; padding: 2.5rem var(--px); border-top: 1px solid var(--border); }
.res-biz-table { width: 100%; border-collapse: collapse; font-size: .82rem; }
.res-biz-table th, .res-biz-table td { padding: .5rem .5rem .5rem 0; border-bottom: 1px solid var(--border); text-align: left; font-weight: 300; vertical-align: top; }
.res-biz-table th { color: var(--text-dark); font-weight: 500; width: 7rem; }
.res-biz-table td { color: var(--text-muted); }

/* ── 23. Print ──────────────────────────────────────────────── */
@media print {
  .site-header, .floating-cta, .back-to-top, .mobile-menu { display: none !important; }
  body { font-size: 12pt; color: #000; }
}

/* ── 24. Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links, .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero-h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-scroll { bottom: 1rem; }

  .section-title { margin-bottom: clamp(1.5rem, 4vw, 2.5rem); }
}
@media (max-width: 480px) {
  .mood-grid { grid-template-columns: 1fr; }
  .hero-tags { flex-direction: column; align-items: center; }
  .hero-tag { font-size: .68rem; }
}
