/* ─────────────────────────────────────────────────────────────
   인타임필름 (in time film) - 디자인 토큰
   팔레트 D (2026-09-22 렌더 비교 후 확정)
   바탕 #F2F1EE · 먹빛 #191919 · 포인트 더스티로즈 #A8595E
   ★액센트는 하나다. 로즈는 '선택됨' 상태와 구역 표시에만 쓰고
     주버튼은 언제나 먹빛이다(대비 최대). 섹션마다 색을 바꾸지 않는다.
   ★모서리 반경은 한 벌이다: 카드 2px · 버튼 2px · 입력 2px (전부 각진 계열)
   ───────────────────────────────────────────────────────────── */

@font-face {
  font-family: 'PretendardLocal';
  src: local('Pretendard Variable'), local('Pretendard');
  font-display: swap;
}

:root {
  color-scheme: light dark;

  /* 바탕 */
  --ground:        #F2F1EE;
  --ground-sunk:   #E7E4DC;
  --ground-raised: #FBFAF8;
  --line:          #D9D6CF;
  --line-soft:     #E4E1DA;

  /* 글자 */
  --ink:           #191919;
  --ink-soft:      #4D4B46;
  --ink-faint:     #6B6862;   /* 2026-09-27 대비 올림 (≈4.0 → 5.2:1) */

  /* 포인트 - 선택 상태·구역 표시 전용 */
  --rose:          #A8595E;
  --rose-sunk:     #F0E6E5;

  /* 기능색 */
  --warn-ink:      #7A5B12;
  --warn-ground:   #F6EFDC;

  --radius:        2px;
  --pad-x:         clamp(20px, 5vw, 64px);
  --maxw:          1180px;
  --ease:          cubic-bezier(.16, 1, .3, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --ground:        #171614;
    --ground-sunk:   #100F0E;
    --ground-raised: #201E1B;
    --line:          #35322D;
    --line-soft:     #2A2824;

    --ink:           #EDEBE6;
    --ink-soft:      #A29E96;
    --ink-faint:     #79756D;

    --rose:          #D69298;
    --rose-sunk:     #2E2122;

    --warn-ink:      #E4C878;
    --warn-ground:   #2B2517;
  }
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: 'Pretendard Variable', Pretendard, PretendardLocal,
               -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo',
               'Malgun Gothic', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: -0.011em;
  word-break: keep-all;          /* 한국어 줄바꿈: 어절 단위 */
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad-x); }

/* ── 타이포 스케일 ───────────────────────────────────────── */
h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -0.03em; line-height: 1.24; }
h1 { font-size: clamp(30px, 6.2vw, 54px); }
h2 { font-size: clamp(24px, 4.2vw, 38px); }
h3 { font-size: clamp(17px, 2.2vw, 20px); letter-spacing: -0.02em; }
p  { margin: 0; }

.lede   { font-size: clamp(16px, 2.1vw, 18px); color: var(--ink-soft); max-width: min(46ch, 100%); }
.small  { font-size: 14px; color: var(--ink-soft); line-height: 1.66; }
.tiny   { font-size: 13px; color: var(--ink-faint); line-height: 1.62; }
.num    { font-variant-numeric: tabular-nums; }

section { padding-block: clamp(56px, 9vw, 108px); scroll-margin-top: 78px; }
@media (max-width: 860px) { section { scroll-margin-top: 68px; } }
.sec-head { max-width: min(52ch, 100%); margin-bottom: clamp(28px, 4.5vw, 52px); }
.sec-head p { margin-top: 14px; }

/* ── 버튼 ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; white-space: nowrap;
  padding: 14px 26px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform .16s var(--ease), background-color .16s var(--ease),
              border-color .16s var(--ease);
}
.btn-primary { background: var(--ink); color: var(--ground); }         /* 대비 최대 */
.btn-primary:hover { background: #2E2C29; }
.btn-ghost   { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn:active { transform: translateY(1px) scale(.995); }
.btn:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, select:focus-visible {
  outline: 2px solid var(--rose); outline-offset: 3px; border-radius: var(--radius);
}
@media (prefers-color-scheme: dark) { .btn-primary:hover { background: #D8D5CF; } }

/* ── 상단 바 ─────────────────────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--ground) 88%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
@supports not (backdrop-filter: blur(1px)) { .topbar { background: var(--ground); } }
.topbar .wrap {
  height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { font-size: 17px; font-weight: 600; letter-spacing: -0.02em; text-decoration: none; flex: none; }
.navlinks { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 30px); }
.navlinks a { font-size: 14.5px; color: var(--ink-soft); text-decoration: none; white-space: nowrap; }
.navlinks a:hover { color: var(--ink); }
.navlinks a.cta { color: var(--ink); font-weight: 600; }
@media (max-width: 860px) {
  .navlinks a:not(.cta) { display: none; }
  .topbar .wrap { height: 58px; }
}

/* ── 히어로 ──────────────────────────────────────────────── */
.hero { padding-top: clamp(28px, 4vw, 52px); padding-bottom: clamp(36px, 5vw, 60px); }
.hero .wrap {
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: clamp(28px, 4.5vw, 64px); align-items: center;
}
.hero .wrap > * { min-width: 0; }
.hero h1 { margin-bottom: 20px; }
.hero .lede { margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; }
.eyebrow {
  font-size: 12.5px; font-weight: 600; letter-spacing: .13em;
  color: var(--rose); margin-bottom: 18px; text-transform: none;
}
@media (max-width: 880px) {
  .hero .wrap { grid-template-columns: 1fr; }
  /* 자리표시자를 위에 두면 첫 화면이 빈 상자로 채워진다. 글이 먼저 온다. */
  .moment { margin-top: 8px; }
  .moment .slot span { display: none; }
}

/* ── 미디어 자리 (PREVIEW: 실물 없음을 드러낸다) ──────────── */
.slot {
  position: relative; display: grid; place-items: center; text-align: center;
  background: var(--ground-sunk); border: 1px dashed var(--line);
  border-radius: var(--radius); color: var(--ink-faint);
  padding: 18px; gap: 6px;
}
.slot b { display: block; font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.slot span { font-size: 11.5px; }
.slot-16x9 { aspect-ratio: 16 / 9; }
.slot-9x16 { aspect-ratio: 9 / 16; }
.slot-1x1  { aspect-ratio: 1 / 1; }

/* ── 범위 띠 ─────────────────────────────────────────────── */
.scope { background: var(--ground-sunk); border-block: 1px solid var(--line-soft); }
.scope .wrap { padding-block: 26px; display: grid; gap: 18px; }
.scope-note {
  font-size: 15px; font-weight: 600; line-height: 1.6; max-width: 62ch;
}
.scope-list { display: flex; flex-wrap: wrap; gap: 8px 28px; }
.scope-list li { list-style: none; font-size: 14px; color: var(--ink-soft); }
.scope-list { margin: 0; padding: 0; }


/* ── 첫 화면 그림: 같은 순간, 다른 자리 (실제 제작물로 교체될 자리) ── */
.moment { margin: 0; }
.moment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.moment-grid .moment-main { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
.moment-grid .slot:not(.moment-main) { aspect-ratio: 3 / 4; padding: 10px; }
.moment-grid .slot:not(.moment-main) b { font-size: 12px; }
.moment figcaption { margin-top: 10px; }

/* ── 바탕만 한 단 낮춘 구역 ──────────────────────────────── */
.sunk { background: var(--ground-sunk); border-block: 1px solid var(--line-soft); }

/* ── 한 문장 띠 ──────────────────────────────────────────── */
.band { background: var(--ground-sunk); border-block: 1px solid var(--line-soft); padding-block: clamp(40px, 6vw, 72px); }
.band .wrap { display: grid; gap: 16px; }
.band-core {
  font-size: clamp(21px, 3.4vw, 32px); font-weight: 600; line-height: 1.42;
  letter-spacing: -0.03em; max-width: 32ch;
}
.band .small { max-width: 62ch; }

/* ── 1순위: 여러 시선 ─────────────────────────────────────── */
.story { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.story > * { min-width: 0; }
@media (max-width: 900px) { .story { grid-template-columns: 1fr; } }
.story h2 { margin-bottom: 22px; }
.story-lines {
  font-size: clamp(17px, 2.3vw, 20px); line-height: 1.9; color: var(--ink);
  padding-left: 16px; border-left: 2px solid var(--rose); margin-bottom: 22px;
}

.sync { margin: 0; display: grid; gap: 10px; }
.sync-row { display: grid; grid-template-columns: 7.5rem 1fr; gap: 14px; align-items: center; }
@media (max-width: 520px) { .sync-row { grid-template-columns: 5.4rem 1fr; gap: 10px; } }
.who { font-size: 13.5px; color: var(--ink-soft); display: flex; gap: 8px; align-items: center; white-space: nowrap; }
.who b {
  flex: none; min-width: 22px; height: 22px; padding-inline: 5px; display: grid; place-items: center;
  font-size: 11.5px; font-weight: 700; border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--ink); background: var(--ground-raised);
}
.track {
  position: relative; display: block; height: 30px;
  background: var(--ground-sunk); border-radius: var(--radius); overflow: hidden;
}
.clip, .pick, .seg { position: absolute; top: 0; bottom: 0; left: calc(var(--s) * 1%); width: calc((var(--e) - var(--s)) * 1%); }
.clip { top: 9px; bottom: 9px; background: color-mix(in srgb, var(--ink) 16%, transparent); border-radius: 1px; }
.pick { background: var(--rose); opacity: .9; }
.sync-out { margin-top: 8px; }
.sync-out .who b { background: var(--ink); color: var(--ground); border-color: var(--ink); }
.sync-out .track { background: transparent; border: 1px solid var(--line); }
.seg {
  display: grid; place-items: center; font-size: 11.5px; font-weight: 700; color: var(--ground);
  background: var(--rose); border-right: 2px solid var(--ground);
}
.sync-axis {
  margin-left: calc(7.5rem + 14px); display: flex; justify-content: space-between;
  font-size: 12px; color: var(--ink-faint);
}
@media (max-width: 520px) { .sync-axis { margin-left: calc(5.4rem + 10px); font-size: 11px; } }
.sync figcaption { margin-top: 6px; }
/* 고르는 동작이 보이도록: 구역이 들어오면 고른 구간이 차례로 채워진다 */
@media (prefers-reduced-motion: no-preference) {
  .sync.reveal .pick, .sync.reveal .seg { transform: scaleX(0); transform-origin: left center; }
  .sync.reveal.in .pick, .sync.reveal.in .seg { transform: none; transition: transform .7s var(--ease); }
  .sync.reveal.in .sync-row:nth-child(2) .pick { transition-delay: .12s; }
  .sync.reveal.in .sync-row:nth-child(3) .pick { transition-delay: .24s; }
  .sync.reveal.in .sync-row:nth-child(4) .pick { transition-delay: .36s; }
  .sync.reveal.in .sync-out .seg { transition-delay: .6s; }
}

/* ── 2순위: 제작 기간 ─────────────────────────────────────── */
.time { display: grid; grid-template-columns: auto 1fr; gap: clamp(32px, 7vw, 110px); align-items: center; }
.time > * { min-width: 0; }
@media (max-width: 760px) { .time { grid-template-columns: 1fr; } }
.time-fig { display: grid; grid-template-columns: auto auto; align-items: end; justify-content: start; column-gap: 6px; }
.time-num { font-size: clamp(96px, 16vw, 180px); font-weight: 600; line-height: .86; letter-spacing: -0.06em; }
.time-unit { font-size: clamp(24px, 3.4vw, 36px); font-weight: 600; padding-bottom: 6px; }
.time-fig .provisional { grid-column: 1 / -1; justify-self: start; margin: 16px 0 0; }
.time-text h2 { margin-bottom: 14px; }
.time-rule {
  margin-top: 22px; font-size: clamp(16px, 2vw, 18px); font-weight: 600; line-height: 1.6; max-width: 40ch;
}
.time-terms { margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.time-terms li { font-size: 14px; color: var(--ink-soft); padding-left: 16px; position: relative; }
.time-terms li::before { content: ''; position: absolute; left: 0; top: 11px; width: 7px; height: 1.5px; background: currentColor; opacity: .55; }

/* ── 카테고리 분리 ────────────────────────────────────────── */
.compare { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.compare > * { min-width: 0; padding: clamp(22px, 3vw, 34px) clamp(0px, 2.4vw, 30px) 0 0; }
.compare > * + * { padding-left: clamp(0px, 2.4vw, 30px); border-left: 1px solid var(--line); }
@media (max-width: 700px) {
  .compare { grid-template-columns: 1fr; }
  .compare > * + * { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); margin-top: 22px; }
}
.compare-k { font-size: 13px; font-weight: 600; color: var(--ink-faint); margin-bottom: 8px; }
.compare-us .compare-k { color: var(--rose); }
.compare-v { font-size: clamp(19px, 2.6vw, 24px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.4; margin-bottom: 10px; }

/* ── 허브: 행사 고르기 ────────────────────────────────────── */
.event-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.ev-card {
  display: grid; gap: 6px; align-content: start; min-width: 0; text-decoration: none; color: inherit;
  background: var(--ground-raised); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 22px 20px; transition: border-color .16s var(--ease), transform .16s var(--ease);
}
.ev-card:hover { border-color: var(--ink-faint); }
.ev-card:active { transform: translateY(1px) scale(.995); }
.ev-card.ev-open { border-color: var(--rose); }
.ev-card h3 { font-size: clamp(20px, 2.6vw, 24px); margin-top: 8px; }
.ev-sub { font-size: 13.5px; color: var(--ink-faint); }
.ev-go { margin-top: 10px; font-size: 14px; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.badge {
  justify-self: start; font-size: 12px; font-weight: 700; padding: 3px 9px; border-radius: var(--radius);
  color: var(--warn-ink); background: var(--warn-ground);
}
.badge-open { color: var(--rose); background: var(--rose-sunk); }
.navlinks a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.mood-k { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.mood-fams { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.tracks-row { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); max-width: 900px; }

/* ── 샘플 ────────────────────────────────────────────────── */
.samples { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 26px); }
@media (max-width: 880px) { .samples { grid-template-columns: 1fr; } }
.sample h3 { margin: 16px 0 8px; }
.sample dl {
  margin: 14px 0 0; padding-top: 14px; border-top: 1px solid var(--line-soft);
  display: grid; grid-template-columns: auto 1fr; gap: 4px 16px; font-size: 13.5px;
}
.sample dt { color: var(--ink-faint); }
.sample dd { margin: 0; color: var(--ink-soft); }

/* ── 대비 2열 (서비스 설명) ──────────────────────────────── */
.contrast { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); }
.contrast > *, .prep > *, .plans > *, .samples > *, .incl > * { min-width: 0; }
@media (max-width: 760px) { .contrast { grid-template-columns: 1fr; } }
.contrast h3 { margin-bottom: 16px; }
.contrast ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.contrast li { padding-left: 22px; position: relative; font-size: 15.5px; color: var(--ink); line-height: 1.7; }
.contrast li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 10px; height: 2px; background: var(--rose);
}
.contrast .not li::before { background: var(--ink-faint); }

/* ── 제작 과정 ───────────────────────────────────────────── */
.flow { display: grid; gap: 0; counter-reset: step; }
.flow-item {
  display: grid; grid-template-columns: 58px 1fr; gap: 20px;
  padding-block: 22px; border-top: 1px solid var(--line-soft);
}
.flow-item:last-child { border-bottom: 1px solid var(--line-soft); }
.flow-item .k {
  font-size: 15px; font-weight: 700; color: var(--rose);
  font-variant-numeric: tabular-nums; padding-top: 2px; letter-spacing: 0;
}
.flow-item h3 { margin-bottom: 6px; }
.flow-item p { font-size: 15px; color: var(--ink-soft); max-width: 62ch; }
.flow-who {
  display: inline-block; margin-top: 10px; font-size: 12.5px; font-weight: 600;
  padding: 3px 10px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--ground-raised); color: var(--ink-soft);
}

/* ── 취향 선택 ───────────────────────────────────────────── */
.picker { display: grid; gap: clamp(28px, 4vw, 44px); }
.pick-group > h3 { margin-bottom: 4px; }
.pick-group > .small { margin-bottom: 16px; }
.opts { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.opt {
  text-align: left; cursor: pointer; padding: 16px 18px;
  background: var(--ground-raised); border: 1px solid var(--line);
  border-radius: var(--radius); font: inherit; color: inherit;
  transition: border-color .16s var(--ease), background-color .16s var(--ease), transform .16s var(--ease);
}
.opt:hover { border-color: var(--ink-faint); }
.opt:active { transform: translateY(1px) scale(.995); }
.opt b { display: block; font-size: 15px; font-weight: 600; margin-bottom: 5px; }
.opt span { display: block; font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }
.opt[aria-pressed='true'] {
  border-color: var(--rose); background: var(--rose-sunk);
}
.opt[aria-pressed='true'] b { color: var(--rose); }

.pick-summary {
  background: var(--ground-sunk); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 24px;
}
.pick-summary h3 { margin-bottom: 14px; }
.pick-summary dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 8px 20px; font-size: 14.5px; }
.pick-summary dt { color: var(--ink-faint); }
.pick-summary dd { margin: 0; font-weight: 600; }
.pick-summary .tiny { margin-top: 16px; }

/* ── 음악 취향: 가족 카드 + 30초 미리듣기 ─────────────────── */
.fams { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px; }
.fam { display: grid; gap: 8px; align-content: start; min-width: 0; }
.fam .opt b { font-size: 17px; letter-spacing: -0.02em; }
.fam-auto { align-content: stretch; }
.fam-auto .opt { height: 100%; }
.tracks { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.play {
  width: 100%; display: grid; grid-template-columns: 30px 1fr; grid-template-rows: auto auto;
  column-gap: 10px; align-items: center; text-align: left; cursor: pointer;
  padding: 9px 12px; font: inherit; color: var(--ink);
  background: transparent; border: 1px solid var(--line-soft); border-radius: var(--radius);
  transition: border-color .16s var(--ease), background-color .16s var(--ease), transform .16s var(--ease);
}
.play:hover { border-color: var(--ink-faint); }
.play:active { transform: translateY(1px) scale(.995); }
.play-ico {
  grid-row: 1 / span 2; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center; position: relative;
}
.play-ico::before {                                      /* 재생: 삼각형 */
  content: ''; margin-left: 3px; width: 0; height: 0;
  border-left: 9px solid var(--ink); border-top: 6px solid transparent; border-bottom: 6px solid transparent;
}
.play[aria-pressed='true'] { border-color: var(--rose); background: var(--rose-sunk); }
.play[aria-pressed='true'] .play-ico { border-color: var(--rose); }
.play[aria-pressed='true'] .play-ico::before {           /* 멈춤: 두 막대 */
  margin-left: 0; width: 10px; height: 11px; border: 0;
  background: linear-gradient(to right, var(--rose) 0 35%, transparent 35% 65%, var(--rose) 65% 100%);
}
.play-t { font-size: 14px; font-weight: 600; }
.play-d { font-size: 12.5px; color: var(--ink-faint); }
.play[aria-busy='true'] .play-d::after { content: ' · 불러오는 중'; }
.btn-text {
  background: none; border: 0; padding: 14px 6px; font: inherit; font-size: 14px;
  color: var(--ink-soft); text-decoration: underline; text-underline-offset: 3px; cursor: pointer;
}
.btn-text:disabled { color: var(--ink-faint); text-decoration: none; cursor: default; }

/* ── 가격 ────────────────────────────────────────────────── */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.4vw, 24px); align-items: start; }
@media (max-width: 760px) { .plans { grid-template-columns: 1fr; } }
.plan {
  background: var(--ground-raised); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(22px, 3vw, 32px);
}
.plan h3 { margin-bottom: 6px; }
.plan .price { font-size: 30px; font-weight: 600; letter-spacing: -0.03em; margin-block: 12px 4px; }
.plan .price small { font-size: 14px; font-weight: 500; color: var(--ink-faint); letter-spacing: 0; }
.plan table { width: 100%; border-collapse: collapse; margin-top: 20px; font-size: 14.5px; }
.plan th, .plan td { text-align: left; padding: 9px 0; vertical-align: top; }
.plan tbody tr + tr { border-top: 1px solid var(--line-soft); }
.plan th { font-weight: 500; color: var(--ink-faint); width: 44%; }
.plan td { color: var(--ink); }

.provisional {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: -0.005em;
  color: var(--warn-ink); background: var(--warn-ground);
  border-radius: var(--radius); padding: 3px 9px; margin-bottom: 10px;
}
.price-note {
  margin-top: 22px; padding: 18px 20px; font-size: 14px; line-height: 1.7;
  background: var(--warn-ground); color: var(--warn-ink);
  border-radius: var(--radius);
}
.incl { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); margin-top: clamp(28px, 4vw, 44px); }
@media (max-width: 680px) { .incl { grid-template-columns: 1fr; } }
.incl ul { margin: 12px 0 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.incl li { font-size: 14.5px; color: var(--ink-soft); padding-left: 20px; position: relative; }
.incl li::before { content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 1.5px; background: currentColor; opacity: .5; }

.promo-note { margin-top: 18px; padding: 18px 20px; border: 1px solid var(--rose); border-radius: var(--radius); background: var(--rose-sunk); }
.promo-note b { display: block; font-size: 15.5px; margin-bottom: 6px; }
.promo-note p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; max-width: 70ch; }

/* ── 원본 준비 ───────────────────────────────────────────── */
.prep { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 820px) { .prep { grid-template-columns: 1fr; } }
.prep ol { margin: 0; padding: 0; list-style: none; display: grid; gap: 20px; counter-reset: p; }
.prep ol li { counter-increment: p; padding-left: 34px; position: relative; }
.prep ol li::before {
  content: counter(p); position: absolute; left: 0; top: 2px;
  width: 22px; height: 22px; display: grid; place-items: center;
  border: 1px solid var(--rose); color: var(--rose); border-radius: 50%;
  font-size: 11.5px; font-weight: 600;
}
.prep ol b { display: block; font-size: 15.5px; margin-bottom: 4px; }
.prep ol p { font-size: 14.5px; color: var(--ink-soft); }
.limits { background: var(--ground-sunk); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; }
.limits table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.limits th, .limits td { padding: 9px 0; text-align: left; }
.limits tbody tr + tr { border-top: 1px solid var(--line-soft); }
.limits th { font-weight: 500; color: var(--ink-faint); }
.limits td { text-align: right; font-variant-numeric: tabular-nums; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { max-width: min(74ch, 100%); }
.faq details { border-top: 1px solid var(--line-soft); }
.faq details:last-of-type { border-bottom: 1px solid var(--line-soft); }
.faq summary {
  cursor: pointer; padding: 19px 36px 19px 0; position: relative;
  font-size: 16px; font-weight: 600; list-style: none; letter-spacing: -0.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 6px; top: 50%;
  width: 9px; height: 9px; margin-top: -6px;
  border-right: 1.5px solid var(--ink-faint); border-bottom: 1.5px solid var(--ink-faint);
  transform: rotate(45deg); transition: transform .2s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq .a { padding: 0 0 22px; font-size: 15px; color: var(--ink-soft); max-width: 64ch; }
.faq .a p + p { margin-top: 10px; }

/* ── 신청 띠 ─────────────────────────────────────────────── */
.apply { background: var(--ink); color: var(--ground); }
.apply h2 { color: var(--ground); }
.apply .lede { color: color-mix(in srgb, var(--ground) 72%, transparent); }
.apply .btn-primary { background: var(--ground); color: var(--ink); }
.apply .btn-primary:hover { background: #fff; }
.apply .btn-ghost { color: var(--ground); border-color: color-mix(in srgb, var(--ground) 38%, transparent); }
.apply .btn-ghost:hover { border-color: var(--ground); }
.apply .tiny { color: color-mix(in srgb, var(--ground) 55%, transparent); }
.apply-inner { display: grid; gap: 26px; max-width: min(62ch, 100%); }

/* ── 푸터 ────────────────────────────────────────────────── */
footer { border-top: 1px solid var(--line-soft); padding-block: 44px 56px; }
.foot { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; }
@media (max-width: 760px) { .foot { grid-template-columns: 1fr; gap: 26px; } }
.foot h4 { margin: 0 0 12px; font-size: 13px; font-weight: 600; color: var(--ink-faint); letter-spacing: 0; }
.foot ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.foot a { font-size: 14px; color: var(--ink-soft); text-decoration: none; }
.foot a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.foot-legal { margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line-soft); }

/* ── PREVIEW 배너 (정식 판매 전까지 유지) ────────────────── */
.preview-bar {
  background: var(--warn-ground); color: var(--warn-ink);
  border-bottom: 1px solid color-mix(in srgb, var(--warn-ink) 22%, transparent);
  font-size: 13.5px; line-height: 1.6;
}
.preview-bar .wrap { padding-block: 11px; display: flex; gap: 10px; align-items: baseline; }
.preview-bar b { flex: none; font-weight: 700; }

/* ── 본문 페이지 (이용안내·개인정보) ─────────────────────── */
.doc { max-width: min(74ch, 100%); padding-block: clamp(40px, 6vw, 72px); }
.doc h2 { margin-top: 44px; margin-bottom: 14px; font-size: clamp(20px, 3vw, 26px); }
.doc h2:first-of-type { margin-top: 28px; }
.doc h3 { margin-top: 26px; margin-bottom: 8px; }
.doc p, .doc li { font-size: 15px; color: var(--ink-soft); }
.doc p + p, .doc p + ul, .doc ul + p { margin-top: 12px; }
.doc ul, .doc ol { padding-left: 20px; display: grid; gap: 8px; margin: 0; }
.doc table { width: 100%; border-collapse: collapse; margin-top: 14px; font-size: 14.5px; }
.doc th, .doc td { text-align: left; padding: 10px 12px 10px 0; vertical-align: top; border-bottom: 1px solid var(--line-soft); }
.doc th { color: var(--ink-faint); font-weight: 500; white-space: nowrap; }
.review {
  background: var(--warn-ground); color: var(--warn-ink);
  border-radius: var(--radius); padding: 14px 16px; font-size: 14px; line-height: 1.66;
  margin-top: 12px;
}
.review b { font-weight: 700; }
.backlink { font-size: 14px; color: var(--ink-soft); text-decoration: none; }

/* ── 진입 모션 (MOTION_INTENSITY 3: 절제) ───────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(14px); }
  .reveal.in { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); }
}

/* 하객 촬영 안내 (2026-09-27) — 단톡방에 붙여 넣을 네 줄 */
.guide { margin-top: 40px; padding: 28px; background: var(--ground-raised); border: 1px solid var(--line); border-radius: var(--radius); }
.guide-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 8px; }
.guide ol { margin: 18px 0 14px; padding-left: 1.3em; display: grid; gap: 10px; color: var(--ink); line-height: 1.6; }
.guide-copy { font-size: 14px; padding: 8px 14px; }
@media (max-width: 560px) { .guide { padding: 20px 16px; } }

/* 2026-09-27 판매 페이지 보강 — 신뢰 줄 · 진행 5단계 · 모바일 고정 버튼 · 가독성 */
.trust { margin-top: 18px; font-size: 14px; color: var(--ink-soft); letter-spacing: -.005em; }
.flow5 { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.flow5 li { background: var(--ground-raised); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 18px; display: grid; gap: 10px; align-content: start; }
.flow5 .k { font-size: 13px; color: var(--rose); font-weight: 600; }
.flow5 h3 { font-size: 16px; margin-bottom: 6px; }
@media (max-width: 960px) { .flow5 { grid-template-columns: 1fr; } .flow5 li { grid-template-columns: 34px 1fr; } }
.sticky-cta { display: none; }
@media (max-width: 720px) {
  .sticky-cta { display: flex; position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 60;
    justify-content: center; box-shadow: 0 6px 24px rgba(0,0,0,.18); transition: opacity .2s var(--ease), transform .2s var(--ease); }
  .sticky-cta.hide { opacity: 0; transform: translateY(12px); pointer-events: none; }
  body.has-sticky footer { padding-bottom: 96px; }
  .small { font-size: 16px; }
  .tiny  { font-size: 14px; }
}
section { padding-block: clamp(48px, 7.6vw, 92px); }   /* 세로 여백 약 15% 줄임 (108 → 92) */
