:root {
  /* 컬러스킴: Givry #F9E1C3 · Mindaro #D0F97E · Geraldine #F69993 · Champagne #FBE7C8.
     4색 모두 밝은 파스텔이라(WCAG 대비 낮음, 특히 Mindaro·Champagne) 텍스트 색으로는 못 쓰고
     배경/서피스/포인트로만 사용. 대비가 필요한 텍스트·버튼용 진한 브라운(ink)과, 텍스트에 쓸
     수 있게 어둡힌 코랄(primary)을 별도로 파생시켰다. */
  --coral: #F69993;      /* Geraldine 원본 — 데코용 서피스·그라디언트 */
  --lime: #D0F97E;       /* Mindaro 원본 — 포인트 보더·닷 인디케이터 */
  --cream: #F9E1C3;      /* Givry 원본 — 페이지 배경 */
  --champagne: #FBE7C8;  /* Champagne 원본 — 대체 서피스(스테이트먼트 밴드 등) */

  --primary: #c85c50;    /* Geraldine을 텍스트/버튼에 쓸 수 있게 어둡힌 버전 */
  --primary-light: #e07268;
  --ink: #2a1710;        /* 팔레트에 어두운 색이 없어 별도 추가 — 푸터/내비/히어로 배경, 본문 텍스트 */
  --gold: #9db83a;       /* Mindaro를 텍스트/보더에 쓸 수 있게 어둡힌 버전 */
  --gold-soft: #FBE7C8;  /* Champagne — 어두운 배경 위 밝은 보조 텍스트 */
  --bg: #F9E1C3;
  --surface: #ffffff;
  --border: #f0d9b8;
  --border-gold: #D0F97E;
  --gold-tint: #FBE7C8;
  --body: #2a1710;
  --muted: #7a5c46;
  --font-display: 'Bodoni Moda', serif;
  --font-sub: 'Paperlogy', 'Noto Sans KR', sans-serif;
  --font-body: 'Paperlogy', 'Noto Sans KR', sans-serif;
  --section-py: clamp(4rem, 8vw, 8rem);
  --px: clamp(1.25rem, 5vw, 4rem);
}

* { box-sizing: border-box; }
body, p, h1, h2, h3, h4, h5, h6, li, td, th, a, span, div, button {
  word-break: keep-all;
  overflow-wrap: break-word;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background-color: var(--bg);
  background-image:
    radial-gradient(rgba(42,23,16,.05) 1px, transparent 1px),
    radial-gradient(rgba(42,23,16,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: 0 0, 14px 14px;
  line-height: 1.6;
  opacity: 0;
  animation: page-in .6s ease forwards;
}
@keyframes page-in { to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  body { animation: none; opacity: 1; }
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--primary); color: #fff; padding: .75rem 1.25rem;
}
.skip-link:focus { left: var(--px); }

/* Custom cursor (desktop only) */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 300;
  border-radius: 50%; transform: translate(-50%, -50%);
  transition: opacity .2s;
}
.cursor-dot { width: 6px; height: 6px; background: var(--gold); }
.cursor-ring { width: 32px; height: 32px; border: 1px solid var(--gold); transition: transform .15s ease-out, opacity .2s; }
@media (hover: none), (max-width: 900px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* Header — floating pill nav, overlays hero full-bleed */
.site-header {
  position: fixed; top: 1.1rem; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center; padding: 0 var(--px);
  pointer-events: none;
}
.site-header__inner {
  position: relative; width: 100%; max-width: 1100px; margin: 0 auto; padding: .7rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(42, 23, 16, .68);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  pointer-events: auto;
}
.site-header__logo {
  position: absolute; z-index: 1; left: 50%; top: 50%; transform: translate(-50%, -50%);
  max-width: min(52vw, 320px); overflow: hidden;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  text-decoration: none; color: #fff; white-space: nowrap;
  display: flex; align-items: baseline; gap: .5rem;
}
.site-header__logo span {
  font-family: var(--font-body); font-size: .78rem; color: var(--gold-soft); font-weight: 300; letter-spacing: .02em;
  overflow: hidden; text-overflow: ellipsis;
}
.site-header__book {
  position: relative; z-index: 2;
  text-decoration: none; font-size: .95rem; font-weight: 300; letter-spacing: .04em;
  color: var(--ink); background: var(--gold); border-radius: 999px; padding: .5rem 1.2rem;
}
.site-header__toggle {
  position: relative; z-index: 2;
  background: none; border: none; cursor: pointer; padding: .5rem; display: flex; flex-direction: column; gap: 5px;
}
@media (max-width: 700px) {
  .site-header__logo span { display: none; }
}
@media (min-width: 769px) {
  .site-header__inner { max-width: 760px; padding: .5rem 1.3rem; }
  .site-header__logo { font-size: 1.05rem; }
  .site-header__book { font-size: .72rem; padding: .42rem .95rem; }
  .site-header__toggle span { width: 18px; }
}
.site-header__toggle span { display: block; width: 22px; height: 2px; background: #fff; transition: transform .25s, opacity .25s; }

/* Non-hero pages: first section needs clearance for the fixed floating nav */
.page-top-space { padding-top: 6.5rem; }

/* Slide-out nav panel */
.nav-panel {
  position: fixed; inset: 0; z-index: 110;
  background: var(--ink); color: var(--gold-soft);
  transform: translateX(100%); transition: transform .45s cubic-bezier(.65,0,.35,1);
  visibility: hidden;
  pointer-events: auto;
}
.nav-panel.is-open { transform: translateX(0); visibility: visible; }
.nav-panel__inner {
  max-width: 1280px; margin: 0 auto; height: 100%; padding: var(--px);
  display: flex; align-items: center;
  position: relative;
}
.nav-panel__close {
  position: absolute; top: var(--px); right: var(--px);
  background: none; border: 1px solid var(--gold); color: var(--gold-soft);
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.4rem; cursor: pointer; line-height: 1;
}
.nav-panel__links { list-style: none; margin: 0; padding: 0; }
.nav-panel__links li { border-bottom: 1px solid rgba(255,255,255,.12); }
.nav-panel__links a {
  display: block; padding: 1rem 0; text-decoration: none; color: #fff;
  font-family: var(--font-body); font-weight: 700; font-size: clamp(1.6rem, 4vw, 2.6rem);
}
.nav-panel__links a:hover { color: var(--gold); }

/* Buttons */
.btn {
  display: inline-block; padding: .9rem 2.1rem; border-radius: 999px;
  text-decoration: none; font-weight: 700; letter-spacing: .02em;
}
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-light); }
.btn--gold { background: var(--gold); color: var(--ink); }

/* Small circular arrow-link (in-page secondary CTA) */
.arrow-link {
  display: inline-flex; align-items: center; gap: .6rem; margin-top: 1.25rem;
  text-decoration: none; font-weight: 700; font-size: .9rem; letter-spacing: .04em; color: var(--primary);
}
.arrow-link__icon {
  width: 34px; height: 34px; border-radius: 50%; background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center; flex: none;
  transition: transform .2s;
}
.arrow-link:hover .arrow-link__icon { transform: translateX(3px); }
.arrow-link--on-dark { color: #fff; }
.arrow-link--on-dark .arrow-link__icon { background: var(--gold); color: var(--ink); }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Hero — full-bleed, edge-to-edge, nav floats on top, no box/scrim over the photo */
.hero {
  position: relative; height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 0 var(--px); margin: 0; color: #fff; overflow: hidden; text-align: center;
  background: var(--ink);
}
@media (max-width: 700px) { .hero { height: 68vh; min-height: 480px; } }
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hero__inner {
  position: relative; z-index: 2; max-width: 680px;
  text-shadow: 0 2px 20px rgba(0,0,0,.45), 0 1px 4px rgba(0,0,0,.35);
}
.hero__eyebrow { color: var(--gold-soft); font-weight: 700; letter-spacing: .18em; text-transform: uppercase; font-size: .8rem; }
.hero__title {
  font-family: var(--font-body); font-weight: 600; word-break: keep-all; overflow-wrap: normal;
  font-size: clamp(1.9rem, 6vw, 4.2rem); line-height: 1.05; margin: 1rem 0; color: #fff;
}
.hero__sub { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--gold-soft); max-width: 46ch; margin: 0 0 2rem; }

/* Sections */
.section { padding: var(--section-py) var(--px); }
.section--muted {
  background-color: var(--surface);
  background-image:
    radial-gradient(rgba(42,23,16,.04) 1px, transparent 1px),
    radial-gradient(rgba(42,23,16,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: 0 0, 14px 14px;
}
.section__inner { max-width: 1140px; margin: 0 auto; }
.section__inner--narrow { max-width: 640px; }
.eyebrow { color: var(--gold); font-weight: 700; letter-spacing: .12em; font-size: .8rem; text-transform: uppercase; }
.section__title {
  font-family: var(--font-body); font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.2rem); margin: .5rem 0 1.5rem; color: var(--primary);
}
.section__body { color: var(--muted); max-width: 68ch; margin: 0 0 1rem; font-size: 1.05rem; }

/* Full-bleed intro band — heading top-left, short body + arrow-link bottom-right */
.intro-bleed {
  position: relative; height: 92vh; min-height: 560px;
  overflow: hidden; color: #fff;
}
.intro-bleed__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.intro-bleed__top {
  position: absolute; z-index: 2; top: 6.5rem; left: var(--px); max-width: 560px;
  background: rgba(42,23,16,.82); backdrop-filter: blur(6px); border-radius: 8px;
  padding: clamp(1.25rem, 3vw, 2rem);
}
.intro-bleed .eyebrow { color: var(--gold-soft); }
.intro-bleed h2 {
  font-family: var(--font-body); font-weight: 600; line-height: 1.08;
  font-size: clamp(1.6rem, 4vw, 2.6rem); margin: .5rem 0 0; color: #fff;
}
.intro-bleed__bottom {
  position: absolute; z-index: 2; right: var(--px); bottom: 2.5rem; max-width: 32ch; text-align: right;
  background: rgba(42,23,16,.82); backdrop-filter: blur(6px); border-radius: 8px; padding: 1.25rem 1.5rem;
}
.intro-bleed__bottom p { margin: 0 0 .75rem; color: #f2e6d8; font-size: .95rem; }
.intro-bleed__bottom .arrow-link { justify-content: flex-end; margin-top: 0; color: #fff; }
.intro-bleed__bottom .arrow-link__icon { background: var(--gold); color: var(--ink); }
@media (max-width: 700px) {
  .intro-bleed__bottom { left: var(--px); right: var(--px); max-width: none; text-align: left; }
  .intro-bleed__bottom .arrow-link { justify-content: flex-start; }
}

/* Alternating image-text block — generous whitespace, tight heading leading */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center;
}
.split--reverse .split__media { order: 2; }
/* Labeled variant — narrow label column + image + text (3-col at desktop) */
.split--labeled { grid-template-columns: 140px 1fr 1.1fr; align-items: start; }
.split--labeled .split__label { color: var(--gold); font-weight: 700; letter-spacing: .1em; font-size: .8rem; text-transform: uppercase; padding-top: .3rem; }
.split--labeled .split__media { aspect-ratio: 3 / 4; }
.split--labeled.split--no-media { grid-template-columns: 140px 1fr; max-width: 780px; }
@media (max-width: 900px) { .split--labeled { grid-template-columns: 1fr; } }
.split__media {
  aspect-ratio: 4 / 5; border-radius: 6px; overflow: hidden;
  background: linear-gradient(150deg, var(--primary) 0%, var(--gold) 140%);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split .section__title { line-height: 1.15; font-weight: 500; }
@media (max-width: 820px) {
  .split, .split--reverse .split__media { grid-template-columns: 1fr; order: 0; }
}

/* Color-block split — photo half + solid accent-color half (heading/body/arrow-link) */
.split-color { display: grid; grid-template-columns: 1fr 1fr; min-height: 70vh; }
.split-color__media { background: var(--ink); overflow: hidden; }
.split-color__media img { width: 100%; height: 100%; object-fit: cover; }
.split-color__body {
  background: var(--gold-tint); padding: clamp(2.5rem, 6vw, 5rem) var(--px);
  display: flex; flex-direction: column; justify-content: center;
}
.split-color__body .eyebrow { color: var(--primary-light); }
.split-color__body h2 {
  font-family: var(--font-body); font-weight: 600; line-height: 1.1;
  font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--ink); margin: .5rem 0 1.25rem;
}
.split-color__body p { color: #6b5a3d; font-size: 1.05rem; margin: 0 0 1rem; max-width: 42ch; }
.split-color__body .arrow-link { color: var(--ink); }
.split-color__body .arrow-link__icon { background: var(--primary); color: #fff; }
@media (max-width: 820px) { .split-color { grid-template-columns: 1fr; } .split-color__media { height: 360px; } }

/* Content-intro — narrow label column + heading column, leads into a card grid */
.content-intro { display: grid; grid-template-columns: 200px 1fr; gap: 2rem; }
.content-intro__label { color: var(--gold); font-weight: 700; letter-spacing: .1em; font-size: .8rem; text-transform: uppercase; }
.content-intro__body h2 {
  font-family: var(--font-body); font-weight: 600; line-height: 1.15;
  font-size: clamp(1.6rem, 4vw, 2.6rem); color: var(--ink); margin: 0 0 1.25rem;
}
.content-intro__body p { color: var(--muted); max-width: 60ch; margin: 0 0 1rem; }
@media (max-width: 700px) { .content-intro { grid-template-columns: 1fr; } }

/* Full-bleed parallax photo section */
.parallax { position: relative; height: clamp(320px, 55vw, 640px); overflow: hidden; }
.parallax__img {
  position: absolute; left: 0; top: -15%; width: 100%; height: 130%; object-fit: cover;
  will-change: transform;
}

/* Floor grid — 1F/2F/3F. Text sits inside the photo itself (top zone: label+title, bottom zone:
   description) — no scrim/box, legibility comes from text-shadow only so the photo stays vivid. */
.floor-grid { display: grid; gap: 1.5rem; margin-top: 2.5rem; grid-template-columns: repeat(3, 1fr); }
.floor-card {
  position: relative; aspect-ratio: 3 / 4; border-radius: 8px; overflow: hidden; background: var(--border);
  color: #fff; text-shadow: 0 1px 10px rgba(0,0,0,.5), 0 1px 3px rgba(0,0,0,.4);
}
.floor-card__media { position: absolute; inset: 0; }
.floor-card__media img { width: 100%; height: 100%; object-fit: cover; }
.floor-card__top { position: absolute; z-index: 2; top: 1.1rem; left: 1.1rem; right: 1.1rem; }
.floor-card__label { color: var(--gold-soft); font-weight: 700; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 .3rem; }
.floor-card h3 { margin: 0; font-size: 1.1rem; font-weight: 600; color: #fff; }
.floor-card__desc {
  position: absolute; z-index: 2; left: 1.1rem; right: 1.1rem; bottom: 1.1rem;
  margin: 0; color: #f2e6d8; font-size: .85rem; line-height: 1.5;
}
@media (max-width: 720px) { .floor-grid { grid-template-columns: 1fr; } }

/* Feature grid */
.feature-grid { display: grid; gap: 1.25rem; margin-top: 2.5rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 1.75rem; }
.feature-card h3 { margin: 0 0 .5rem; font-family: var(--font-sub); color: var(--primary); }
.feature-card p { margin: 0; color: var(--muted); font-size: .95rem; }

/* Class grid — full-bleed photo cards, no box on the photo — legibility via wide soft text-shadow only */
.classes-grid { margin-top: 2.5rem; display: grid; gap: 1rem; grid-template-columns: repeat(3, 1fr); }
.class-card {
  position: relative; aspect-ratio: 3 / 4; border-radius: 6px; overflow: hidden;
  background: linear-gradient(145deg, var(--gold-soft), var(--primary));
  color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,.55), 0 1px 4px rgba(0,0,0,.4);
}
.class-card__media { position: absolute; inset: 0; }
.class-card__media img { width: 100%; height: 100%; object-fit: cover; }
.class-card__body {
  position: absolute; z-index: 2; left: 1.1rem; right: 1.1rem; bottom: 1.1rem;
}
.class-card h3 { margin: 0 0 .3rem; color: #fff; font-family: var(--font-body); font-weight: 700; font-size: .95rem; letter-spacing: .02em; }
.class-card p { margin: 0 0 .6rem; color: #f2e6d8; font-size: .85rem; }
.class-card .arrow-link { color: #fff; margin-top: 0; }
.class-card .arrow-link__icon { width: 26px; height: 26px; background: var(--gold); color: var(--ink); }
@media (max-width: 900px) { .classes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .classes-grid { grid-template-columns: 1fr; } }

/* Gallery */
.gallery-grid {
  display: grid; gap: .5rem; margin-top: 2.5rem;
  grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px;
}
.gallery-grid__slot:nth-child(3n+1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid__slot { border-radius: 6px; overflow: hidden; background: var(--border); }
.gallery-grid__slot img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-grid__slot:nth-child(3n+1) { grid-column: span 2; grid-row: span 1; }
}

/* FAQ — numbered, accent-colored, no boxes */
.faq-list { margin-top: 2.5rem; counter-reset: faq; }
.faq-item { counter-increment: faq; border-bottom: 1px solid var(--border); padding: 1.75rem 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer; list-style: none; display: grid; grid-template-columns: 2.5rem 1fr 2rem; align-items: start; gap: 1rem;
  font-weight: 500; color: var(--ink); font-family: var(--font-body); font-size: 1.2rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: counter(faq, decimal-leading-zero); color: var(--coral); font-weight: 700; font-size: 1.3rem; line-height: 1;
}
.faq-item summary::after {
  content: "+"; flex: none; font-size: 1.6rem; font-weight: 300; color: var(--primary); transition: transform .25s; text-align: right;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 1rem 0 0; padding-left: 2.5rem; color: var(--muted); max-width: 62ch; line-height: 1.8; font-size: .98rem;
}

/* Contact — primary CTA + channel list */
.contact-cta {
  display: block; width: 100%; text-align: center; margin-top: 2rem;
  font-size: 1.05rem; padding: 1.1rem 2rem;
}
.contact-cta__note { margin: .75rem 0 0; color: var(--muted); font-size: .85rem; }
.contact-list { list-style: none; margin: 2.5rem 0 0; padding: 0; }
.contact-list li { border-bottom: 1px solid var(--border); }
.contact-list a {
  display: flex; align-items: center; gap: 1.1rem; padding: 1.15rem 0;
  text-decoration: none; color: var(--body); transition: color .2s;
}
.contact-list a:hover { color: var(--primary); }
.contact-list a:hover .arrow-link__icon { background: var(--primary); color: #fff; transform: translateX(3px); }
.contact-list__badge {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-tint); border: 1px solid var(--border-gold);
  color: var(--primary); font-family: var(--font-sub); font-weight: 700; font-size: .72rem; letter-spacing: .02em;
}
.contact-list__text { flex: 1; display: flex; flex-direction: column; gap: .15rem; }
.contact-list__text strong { font-family: var(--font-sub); font-weight: 700; font-size: 1.05rem; }
.contact-list__text span { color: var(--muted); font-size: .88rem; }
.contact-list .arrow-link__icon { flex: none; width: 34px; height: 34px; background: var(--surface); border: 1px solid var(--border); color: var(--primary); }
@media (max-width: 640px) {
  .contact-list__badge { width: 42px; height: 42px; font-size: .66rem; }
  .contact-list__text strong { font-size: 1rem; }
}

/* Sitemap list */
.sitemap-group { margin-top: 2.5rem; }
.sitemap-group:first-of-type { margin-top: 2rem; }
.sitemap-group__label { color: var(--gold); font-weight: 700; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 .75rem; }
.sitemap-list { list-style: none; padding: 0; margin: 0; }
.sitemap-list li { border-bottom: 1px solid var(--border); }
.sitemap-list a {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 0; text-decoration: none; color: var(--ink); font-weight: 500; font-size: 1.05rem;
  transition: color .2s;
}
.sitemap-list a:hover { color: var(--primary); }
.sitemap-list .arrow-link__icon {
  width: 30px; height: 30px; font-size: .8rem; background: var(--gold-tint); color: var(--primary);
  transition: background .2s, transform .2s;
}
.sitemap-list a:hover .arrow-link__icon { background: var(--primary); color: #fff; transform: translateX(3px); }

/* Info band — 오시는 길 (directions), informational only, no CTA button (kept separate from video-cta) */
.info-band { padding: var(--section-py) var(--px); background: var(--surface); }
.info-band__inner { max-width: 1140px; margin: 0 auto; }
.info-band__inner--split { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.info-band h2 {
  font-family: var(--font-body); font-weight: 600; line-height: 1.15;
  font-size: clamp(1.6rem, 4vw, 2.6rem); margin: .5rem 0 2rem; color: var(--primary);
}
.info-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.info-grid__label { color: var(--gold); font-weight: 700; font-size: .8rem; letter-spacing: .04em; margin: 0 0 .4rem; }
.info-grid__item p { margin: 0 0 .3rem; color: var(--muted); font-size: .92rem; line-height: 1.55; }
.info-grid__item p:last-child { margin-bottom: 0; }
@media (max-width: 900px) {
  .info-band__inner--split { grid-template-columns: 1fr; }
  .map-block__frame { aspect-ratio: 16 / 9; }
}
@media (max-width: 560px) { .info-grid { grid-template-columns: 1fr; } }

/* Wave 세부 페이지 — 인트로 문단을 카드형 fact-sheet로 (info-grid 변형, 홈페이지 기본형과 별개) */
.info-grid--cards { gap: 1.25rem; }
.info-grid--cards .info-grid__item {
  background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 1.5rem 1.75rem;
}
@media (min-width: 700px) { .info-grid--cards { grid-template-columns: 1fr 1fr; } }

/* Final section — full-bleed photo (video placeholder for later) + card overlapping its bottom edge.
   Single closing moment: directions + hours + map + CTA, no duplicate CTAs elsewhere. */
.video-cta { position: relative; height: clamp(520px, 75vw, 760px); overflow: hidden; background: var(--ink); }
.video-cta__media {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  background: linear-gradient(135deg, var(--primary) 0%, var(--ink) 60%, var(--gold) 140%);
}
.video-cta__media video, .video-cta__media img { width: 100%; height: 100%; object-fit: cover; }
.video-cta__card {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 2rem; margin: 0 auto;
  width: calc(100% - 2 * var(--px)); max-width: 560px; background: rgba(201,161,90,.92); border-radius: 6px;
  padding: clamp(1.5rem, 4vw, 2.5rem); text-align: center;
}
.video-cta__card .eyebrow { color: var(--ink); opacity: .75; }
.video-cta__card h2 {
  font-family: var(--font-body); font-weight: 600; line-height: 1.1;
  font-size: clamp(1.3rem, 3vw, 2rem); margin: .4rem 0 1.25rem; color: var(--ink);
}
.video-cta__card__details p { margin: 0 0 .4rem; color: var(--ink); font-size: .9rem; }
.video-cta__card .btn { margin-top: .5rem; }

/* Compact map block — sits right before the final photo+card section */
.map-block { max-width: 1140px; margin: 0 auto; padding: 3.5rem var(--px); }
.map-block__frame { border-radius: 6px; overflow: hidden; aspect-ratio: 21 / 9; min-height: 260px; }
.map-block__frame iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 700px) { .map-block__frame { aspect-ratio: 4 / 3; min-height: 220px; } }

/* Footer — light theme: brand block + nav columns, giant wordmark, bottom copyright bar */
.site-footer { background: var(--bg); color: var(--body); padding: 5rem var(--px) 0; }
.site-footer__top {
  max-width: 1140px; margin: 0 auto; padding-bottom: 3rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
}
.site-footer__biz-name { font-family: var(--font-body); font-weight: 700; font-size: 1.15rem; margin: 0 0 .5rem; color: var(--ink); }
.site-footer__desc { color: var(--muted); font-size: .9rem; line-height: 1.7; max-width: 42ch; margin: 0 0 1rem; }
.site-footer__cols { display: flex; gap: 3rem; flex-wrap: wrap; justify-content: flex-end; }
.site-footer__col-title { color: var(--gold); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 .9rem; }
.site-footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .6rem; }
.site-footer__links a { text-decoration: none; color: var(--body); font-size: .9rem; }
.site-footer__links a:hover { color: var(--primary); }
.site-footer__giant {
  border-top: 1px solid var(--border); padding: 2rem 0 1.5rem; max-width: 1140px; margin: 0 auto;
  font-family: var(--font-display); font-weight: 700; text-transform: lowercase;
  font-size: clamp(4rem, 18vw, 13rem); line-height: .8; text-align: center; color: var(--ink);
}
.site-footer__bottom {
  max-width: 1140px; margin: 0 auto; padding: 1rem 0 2rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
}
.site-footer__biz { color: var(--muted); font-size: .62rem; font-weight: 300; margin: 0; opacity: .55; letter-spacing: .01em; }

/* Wave 세부 페이지 — 관련 페이지 목록 */
.related-links { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-direction: column; gap: .9rem; }

/* Wave 세부 페이지 — 대관 유형 테이블 */
.table-wrap { overflow-x: auto; margin-top: 2rem; }
.detail-table { width: 100%; min-width: 480px; border-collapse: collapse; }
.detail-table th, .detail-table td { text-align: left; padding: .9rem 1.1rem; border-bottom: 1px solid var(--border); font-size: .92rem; }
.detail-table th { color: var(--gold); font-weight: 700; letter-spacing: .04em; font-size: .78rem; text-transform: uppercase; }
.detail-table td { color: var(--muted); }
.detail-table td:first-child { color: var(--ink); font-weight: 600; }
