/* ============================================================
   촉디태국마사지 — Cinematic Noir Luxe
   "한밤의 의식, 손끝으로 풀리는 하루"
   ============================================================ */

:root {
  /* palette — noir luxe */
  --black:    #0a0908;
  --char:     #14110d;
  --char-2:   #1d1812;
  --char-3:   #28221a;
  --line:     rgba(232, 196, 122, 0.12);

  --gold:     #e8c47a;
  --gold-deep:#c89e4d;
  --copper:   #c87f3f;
  --rose:     #d68b7d;

  --cream:    #f4ede0;
  --ivory:    #d4c9b3;
  --muted:    #877e6d;

  /* type */
  --display:  "Cormorant Garamond", "Noto Serif KR", serif;
  --serif-ko: "Noto Serif KR", "Nanum Myeongjo", serif;
  --sans:     "Inter", "Noto Sans KR", system-ui, sans-serif;
  --ko:       "Noto Sans KR", system-ui, sans-serif;
  --mono:     "JetBrains Mono", ui-monospace, monospace;

  --max:      1320px;
  --pad:      clamp(20px, 4vw, 56px);
  --r-card:   4px;
  --ease:     cubic-bezier(.22, 1, .36, 1);
}

/* reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  background: var(--black);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 400; line-height: 1.0; letter-spacing: -0.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ============================================================
   SPOTLIGHT — 마우스 위치를 따라가는 부드러운 빛
   ============================================================ */
.spotlight {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 90;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(232, 196, 122, 0.10),
    transparent 60%
  );
  transition: background 0.3s ease;
  mix-blend-mode: screen;
}
@media (hover: none) { .spotlight { display: none; } }

/* ============================================================
   FLOATING EMBERS — 황금색 빛 입자 페럴럭스
   ============================================================ */
.embers {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.ember {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(232, 196, 122, 0.7), 0 0 24px rgba(232, 196, 122, 0.3);
  will-change: transform, opacity;
  opacity: 0.6;
}
.ember--lg { width: 5px; height: 5px; }
.ember--md { width: 3px; height: 3px; opacity: 0.5; }
.ember--sm { width: 2px; height: 2px; opacity: 0.4; }

/* 거대 아우라 광원 — 페이지 깊은 곳에서 빛이 스며나오는 느낌 */
.aura {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}
.aura--gold {
  width: 60vmax; height: 60vmax;
  top: -25vmax; right: -20vmax;
  background: radial-gradient(circle, rgba(232, 196, 122, 0.18), transparent 70%);
}
.aura--copper {
  width: 50vmax; height: 50vmax;
  bottom: -25vmax; left: -15vmax;
  background: radial-gradient(circle, rgba(200, 127, 63, 0.15), transparent 70%);
}

/* film grain */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  opacity: 0.08;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* ============================================================
   CINEMATIC LETTERBOX — 상하 검정 바, 스크롤 시작 시 열림
   ============================================================ */
.letterbox {
  position: fixed;
  left: 0;
  right: 0;
  background: var(--black);
  z-index: 95;
  pointer-events: none;
  height: var(--lb-h, 0px);
  transition: height 0.5s var(--ease);
}
.letterbox--top { top: 0; border-bottom: 1px solid var(--line); }
.letterbox--bottom { bottom: 0; border-top: 1px solid var(--line); }

/* ============================================================
   PROGRESS — 우측 세로 진행 표시 (시간 카운터처럼)
   ============================================================ */
.timecode {
  position: fixed;
  top: 50%;
  right: 22px;
  z-index: 80;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  pointer-events: none;
}
.timecode__bar {
  width: 1px;
  height: 240px;
  background: var(--line);
  position: relative;
}
.timecode__bar::after {
  content: "";
  position: absolute;
  top: 0; left: -2px;
  width: 5px;
  height: var(--tc-h, 0%);
  background: var(--gold);
  box-shadow: 0 0 8px rgba(232, 196, 122, 0.6);
}
.timecode__num {
  writing-mode: vertical-rl;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.6;
  font-size: 9px;
}
@media (max-width: 900px) { .timecode { display: none; } }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  position: relative;
  z-index: 6;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  border-bottom: 1px solid var(--line);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  flex-wrap: wrap;
  gap: 14px;
}
.topbar__group { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(232, 196, 122, 0.7);
  animation: glow 2.4s ease-in-out infinite;
}
@keyframes glow {
  0%, 100% { opacity: 0.6; box-shadow: 0 0 8px rgba(232, 196, 122, 0.4); }
  50%      { opacity: 1; box-shadow: 0 0 16px rgba(232, 196, 122, 0.9); }
}
.k { color: var(--gold); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 9, 8, 0.6);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.header.scrolled {
  border-color: var(--line);
  background: rgba(10, 9, 8, 0.88);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand__mark {
  width: 46px; height: 46px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  position: relative;
}
.brand__mark::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.4;
}
.brand__name {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.01em;
}
.brand__sub {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 5px;
}
.nav {
  display: flex;
  gap: 36px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ivory);
}
.nav a {
  position: relative;
  padding: 4px 0;
  transition: color .25s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav a:hover { color: var(--gold); }
.nav a:hover::after { width: 100%; }

.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.cta:hover { background: var(--gold); color: var(--black); }
.cta svg { width: 12px; height: 12px; }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--gold);
  color: var(--gold);
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

main { position: relative; z-index: 3; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  padding: clamp(60px, 10vh, 120px) 0 clamp(80px, 12vh, 140px);
  display: flex;
  align-items: center;
}
.hero__inner { width: 100%; }
.hero__filenum {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero__filenum::before {
  content: "";
  width: 36px; height: 1px;
  background: var(--gold);
}
.hero__filenum::after {
  content: "/ ACT 01 — INVITATION";
  color: var(--ivory);
  opacity: 0.7;
  font-size: 10px;
  letter-spacing: 0.2em;
}
.hero__title {
  font-family: var(--display);
  font-size: clamp(56px, 10vw, 160px);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 40px;
  will-change: transform;
}
.hero__title .row { display: block; }
.hero__title .ko-row {
  font-family: var(--serif-ko);
  font-weight: 500;
  letter-spacing: -0.04em;
}
.hero__title .ital { font-style: italic; color: var(--gold); }
.hero__title .small {
  font-size: 0.4em;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.05em;
  display: block;
  margin-top: 12px;
}

.hero__under {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
  align-items: end;
}
.hero__sub {
  font-family: var(--serif-ko);
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ivory);
  line-height: 1.85;
  max-width: 540px;
  font-weight: 400;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-start;
  justify-content: flex-end;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: 1px solid var(--gold);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.btn--gold { background: var(--gold); color: var(--black); }
.btn--gold:hover { background: var(--cream); border-color: var(--cream); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--gold); }
.btn--ghost:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }
.btn svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translate(3px, -3px); }

/* ============================================================
   MARQUEE — 영화 크레딧 스타일
   ============================================================ */
.marquee {
  position: relative;
  z-index: 4;
  overflow: hidden;
  background: var(--char);
  color: var(--cream);
  padding: 24px 0;
  border-block: 1px solid var(--line);
}
.marquee__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.01em;
  will-change: transform;
}
.marquee__track > span {
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.m-sep {
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section {
  padding: clamp(100px, 16vh, 180px) 0;
  position: relative;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
}
.section__title {
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 100px);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1.0;
}
.section__title .ital { font-style: italic; color: var(--gold); }
.section__title .ko-row {
  font-family: var(--serif-ko);
  font-weight: 500;
  letter-spacing: -0.04em;
}
.section__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
.section__intro {
  font-family: var(--serif-ko);
  font-size: 17px;
  color: var(--ivory);
  line-height: 1.85;
  max-width: 520px;
}

/* ============================================================
   ABOUT — 듀얼 컬럼: 좌측 sticky 거대 이탤릭 + 우측 크레딧 리스트
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: start;
}
.about__sticky {
  position: sticky;
  top: 120px;
}
.about__big {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(80px, 13vw, 200px);
  color: var(--cream);
  line-height: 0.9;
  letter-spacing: -0.04em;
  will-change: transform;
}
.about__big .gold { color: var(--gold); }
.about__big-cap {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.about__big-cap::before {
  content: "";
  width: 40px; height: 1px;
  background: var(--gold);
}

/* 크레딧 리스트 — 영화 엔딩 크레딧처럼 */
.credits {
  display: grid;
  gap: 0;
}
.credit {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.credit:first-child { border-top: 1px solid var(--line); }
.credit__role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 6px;
}
.credit__name {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.credit__name .ital { font-style: italic; color: var(--gold); }
.credit__desc {
  font-family: var(--serif-ko);
  font-size: 14px;
  color: var(--ivory);
  line-height: 1.85;
  opacity: 0.85;
}

/* ============================================================
   PROGRAMS — 가로 풀폭 세션 카드 (한 줄에 한 개씩)
   ============================================================ */
.programs__list {
  display: grid;
  gap: 0;
}
.session {
  display: grid;
  grid-template-columns: 80px 1.4fr 2fr 1fr 1fr;
  gap: 40px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  align-items: center;
  transition: background .35s var(--ease);
  position: relative;
}
.session:last-child { border-bottom: 1px solid var(--line); }
.session:hover {
  background: linear-gradient(90deg, transparent, rgba(232, 196, 122, 0.05), transparent);
}
.session__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
}
.session__name {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1;
}
.session__name .ital { font-style: italic; color: var(--gold); }
.session__name-ko {
  font-family: var(--serif-ko);
  font-weight: 500;
  font-size: 16px;
  color: var(--ivory);
  margin-top: 8px;
  letter-spacing: -0.02em;
}
.session__desc {
  font-family: var(--serif-ko);
  font-size: 14px;
  color: var(--ivory);
  line-height: 1.85;
  opacity: 0.78;
}
.session__time {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ivory);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.session__price {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--gold);
  text-align: right;
  letter-spacing: -0.01em;
}
.session__price small {
  font-size: 0.5em;
  color: var(--ivory);
  letter-spacing: 0.1em;
  font-style: normal;
  margin-left: 3px;
  opacity: 0.7;
}

/* ============================================================
   CREDITS REEL — sticky 세로 스크롤 크레딧 (영화 엔딩 같은)
   ============================================================ */
.reel {
  height: 220vh;
  position: relative;
  background: var(--char);
  border-block: 1px solid var(--line);
  overflow: hidden;
}
.reel__viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: sticky;
}
.reel__viewport::before,
.reel__viewport::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 30%;
  z-index: 2;
  pointer-events: none;
}
.reel__viewport::before {
  top: 0;
  background: linear-gradient(180deg, var(--char), transparent);
}
.reel__viewport::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--char), transparent);
}
.reel__inner {
  text-align: center;
  will-change: transform;
}
.reel__act {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 90px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.reel__act::before, .reel__act::after {
  content: "";
  width: 40px; height: 1px;
  background: var(--gold);
}
.reel__step {
  margin-bottom: 100px;
}
.reel__role {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ivory);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 16px;
}
.reel__title {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.reel__title .gold { color: var(--gold); }
.reel__desc {
  font-family: var(--serif-ko);
  font-size: 16px;
  color: var(--ivory);
  line-height: 1.85;
  max-width: 520px;
  margin: 0 auto;
  opacity: 0.85;
}

/* ============================================================
   QUOTE
   ============================================================ */
.quote {
  padding: clamp(120px, 18vh, 200px) 0;
  position: relative;
}
.quote__inner {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.quote__mark {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 140px;
  line-height: 0.4;
  color: var(--gold);
  margin-bottom: 50px;
  opacity: 0.5;
}
.quote__text {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}
.quote__text .gold { color: var(--gold); }
.quote__attr {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.75;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: clamp(100px, 14vh, 160px) 0; }
.contact__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
}
.contact__copy h2 {
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 100px);
  color: var(--cream);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  line-height: 1;
  font-weight: 400;
}
.contact__copy h2 .ital { font-style: italic; color: var(--gold); }
.contact__copy h2 .ko-row {
  font-family: var(--serif-ko);
  font-weight: 500;
}
.contact__copy p {
  font-family: var(--serif-ko);
  font-size: 17px;
  color: var(--ivory);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 460px;
}

.contact__list { display: grid; gap: 0; }
.contact__item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.contact__item:first-child { border-top: 1px solid var(--line); }
.contact__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact__value {
  font-family: var(--display);
  font-size: 22px;
  color: var(--cream);
  font-weight: 400;
}
.contact__value .ital { font-style: italic; color: var(--gold); }
.contact__value a:hover { color: var(--gold); }

.contact__card {
  background: var(--char-2);
  border: 1px solid var(--line);
  padding: 56px 48px;
  border-radius: var(--r-card);
  position: relative;
  overflow: hidden;
}
.contact__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.contact__card::after {
  content: "";
  position: absolute;
  bottom: -100px; right: -100px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(232, 196, 122, 0.18), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.contact__card-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.contact__card-eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--gold);
}
.contact__card h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--cream);
  margin-bottom: 24px;
  font-weight: 400;
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
}
.contact__card h3 .ital { font-style: italic; color: var(--gold); }
.contact__card p {
  font-family: var(--serif-ko);
  color: var(--ivory);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
  opacity: 0.85;
}
.contact__card .btn {
  position: relative;
  z-index: 2;
}

/* ============================================================
   FOOTER — 영화 엔딩 크레딧 느낌
   ============================================================ */
.footer {
  background: var(--black);
  color: var(--ivory);
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 4;
}
.footer__giant {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(80px, 16vw, 220px);
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin-bottom: 60px;
  opacity: 0.85;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.footer__brand .brand__name { color: var(--cream); }
.footer__brand .brand__sub { color: var(--gold); }
.footer__brand p {
  font-family: var(--serif-ko);
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.85;
  max-width: 360px;
  color: var(--ivory);
  opacity: 0.75;
}
.footer__col h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 400;
}
.footer__col ul { display: grid; gap: 10px; font-size: 13px; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-family: var(--mono);
  letter-spacing: 0.2em;
  flex-wrap: wrap;
  gap: 12px;
  text-transform: uppercase;
}
.footer__biz { color: var(--muted); }

/* ============================================================
   reveal animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

.reveal--d1 { transition-delay: .08s; }
.reveal--d2 { transition-delay: .16s; }
.reveal--d3 { transition-delay: .24s; }
.reveal--d4 { transition-delay: .32s; }

/* split-line text reveal */
.split-line {
  display: block;
  overflow: hidden;
}
.split-line__inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease);
}
.split-line.in .split-line__inner { transform: translateY(0); }
.split-line--d1 .split-line__inner { transition-delay: .1s; }
.split-line--d2 .split-line__inner { transition-delay: .2s; }
.split-line--d3 .split-line__inner { transition-delay: .3s; }

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 1000px) {
  .nav { display: none; }
  .menu-toggle { display: inline-grid; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: var(--pad);
    background: var(--char-2);
    border: 1px solid var(--line);
    padding: 22px 26px;
    border-radius: 4px;
    gap: 18px;
  }
  .header__inner > .cta { display: none; }
  .hero__under { grid-template-columns: 1fr; gap: 30px; }
  .hero__cta { justify-content: flex-start; }
  .section__head { grid-template-columns: 1fr; gap: 24px; }
  .about__grid { grid-template-columns: 1fr; gap: 60px; }
  .about__sticky { position: relative; top: auto; }
  .session {
    grid-template-columns: 60px 1fr;
    grid-template-areas:
      "num name"
      "num desc"
      ".   meta";
    gap: 14px 20px;
  }
  .session__num { grid-area: num; }
  .session__name { grid-area: name; }
  .session__desc { grid-area: desc; }
  .session__time, .session__price {
    grid-area: meta;
    display: inline-block;
  }
  .session__price { text-align: left; margin-top: 8px; }
  .session__time { margin-right: 30px; }
  .contact__grid { grid-template-columns: 1fr; gap: 50px; }
  .footer__top { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 600px) {
  .reel { height: 280vh; }
  .footer__bottom { justify-content: flex-start; }
  .topbar__group { gap: 14px; }
  .topbar__inner { font-size: 9px; }
  .contact__card { padding: 40px 32px; }
}

@media (prefers-reduced-motion: reduce) {
  .ember, .aura, .marquee__track, .reel__inner, .about__big,
  .hero__title { transition: none !important; transform: none !important; }
  .letterbox { display: none; }
  .reel { height: auto; }
  .reel__viewport { position: relative; height: auto; padding: 80px 0; }
  html { scroll-behavior: auto; }
  .dot { animation: none; }
}
