/* ════════════════════════════════════════════════
   PIVOT410 외대점 아이돌 전문반 1기 모집
   블랙 베이스 · 강한 대비 · Level 3 모션
   ════════════════════════════════════════════════ */

:root {
  --bg:           #0A0A0A;
  --bg-2:         #141414;
  --bg-3:         #1C1C1C;
  --bg-4:         #232323;
  --text:         #FAFAF7;
  --text-mute:    #B8B8B0;
  --text-dim:     #8A8A85;
  --accent:       #FF2D2D;
  --accent-deep:  #C71F1F;
  --accent-glow:  rgba(255, 45, 45, 0.4);
  --accent-soft:  rgba(255, 45, 45, 0.08);
  --line:         #2A2A2A;
  --line-2:       #3A3A3A;

  --font-kr: 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-en: 'Inter', 'Pretendard Variable', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  --gut: clamp(20px, 4vw, 56px);
  --maxw: 1440px;

  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-kr);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  cursor: default;
}

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

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }

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

.dash { color: var(--text-dim); margin: 0 .35em; font-weight: 400; }
.dot  { color: var(--text-mute); margin: 0 .25em; }
.hi   { color: var(--text); border-bottom: 1px solid var(--text-dim); padding-bottom: 2px; }
.hi-strong { color: var(--accent); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gut);
}

/* ─── 커서 라이트 ──────────────────────────────── */
.cursor-light {
  position: fixed;
  top: 0; left: 0;
  width: 600px; height: 600px;
  margin: -300px 0 0 -300px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 30%, transparent 60%);
  z-index: 1;
  mix-blend-mode: screen;
  transform: translate3d(50vw, 50vh, 0);
  transition: opacity .4s ease;
  opacity: 0;
}
body.cursor-active .cursor-light { opacity: 1; }
@media (hover: none) { .cursor-light { display: none; } }

/* ─── 헤더 ──────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(10,10,10,.95) 0%, rgba(10,10,10,.7) 70%, rgba(10,10,10,0) 100%);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  transform: translateY(-100%);
  animation: header-down .8s var(--ease-out) .1s forwards;
}
.site-header.scrolled {
  background: rgba(10,10,10,.92);
  border-bottom: 1px solid var(--line);
}
@keyframes header-down { to { transform: translateY(0); } }

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--gut);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; letter-spacing: 0.04em;
  font-weight: 700;
}
.brand-logo {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.55));
}
.brand-mark {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px;
  background: var(--accent); color: #fff;
  font-size: 11px;
  border-radius: 2px;
  transform: translateY(0);
}
.brand-name { font-family: var(--font-en); }
.brand-divider { color: var(--text-dim); }
.brand-branch { color: var(--text-mute); font-weight: 500; letter-spacing: 0.04em; }

.header-cta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 18px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all .25s var(--ease);
}
.header-cta:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.header-cta .arrow { transition: transform .25s var(--ease); display: inline-block; }
.header-cta:hover .arrow { transform: translateX(3px); }

/* ─── HERO ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px var(--gut) 80px;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255,45,45,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 50%),
    var(--bg);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(circle at 50% 40%, black 30%, transparent 80%);
}

.hero-grid {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

.hero-left { display: flex; flex-direction: column; gap: 28px; min-width: 0; }

/* 라벨 */
.hero-label, .sect-label {
  font-size: 13px;
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-mute);
  text-transform: uppercase;
}
.hero-label .dash, .sect-label .dash { margin-right: 8px; }

/* 카운트다운 */
.countdown {
  display: flex; flex-direction: column; gap: 12px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.015);
  border-radius: 4px;
  font-family: var(--font-mono);
  position: relative;
  overflow: hidden;
}
.countdown::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .3;
}
.countdown.urgent { border-color: var(--accent); box-shadow: 0 0 32px var(--accent-soft); }
.countdown.urgent .countdown-row .cd-num { animation: cd-pulse 1.5s ease-in-out infinite; }
@keyframes cd-pulse { 50% { color: var(--accent); } }

.countdown-row {
  display: flex; align-items: flex-end; gap: 8px;
  font-variant-numeric: tabular-nums;
}
.cd-unit { display: flex; flex-direction: column; gap: 4px; min-width: 0; flex: 1; }
.cd-num {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
  display: flex;
  gap: 2px;
  position: relative;
  overflow: hidden;
}
.cd-num .digit {
  display: inline-block;
  min-width: 0.6em;
  text-align: center;
  position: relative;
  transition: transform .3s var(--ease-out);
}
.cd-num .digit.flip {
  animation: digit-flip .45s var(--ease-out);
}
@keyframes digit-flip {
  0%   { transform: translateY(-100%); opacity: 0; }
  60%  { transform: translateY(8%); opacity: 1; }
  100% { transform: translateY(0); }
}
.cd-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}
.cd-sep {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1;
  padding-bottom: 16px;
}
.countdown-deadline {
  font-size: 12px;
  font-family: var(--font-en);
  color: var(--text-mute);
  letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 10px;
  padding-top: 8px;
  border-top: 1px dashed var(--line);
}
.deadline-date { color: var(--text); font-weight: 600; }
.deadline-time { color: var(--text-mute); }
.deadline-tag {
  margin-left: auto;
  padding: 2px 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border-radius: 2px;
  font-size: 11px;
}

/* 헤드라인 */
.hero-headline {
  font-weight: 900;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 4px 0 8px;
  text-wrap: balance;
}
.hero-headline .line { display: block; overflow: visible; }
.hero-headline .word {
  display: inline-block;
}
.accent-word {
  color: var(--text);
  position: relative;
}
.hero-headline .accent-word::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0.08em;
  width: 100%; height: 0.08em;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .9s var(--ease-out) .3s;
}
.hero-headline.in .accent-word::after { transform: scaleX(1); }

/* 서브카피 */
.hero-sub {
  list-style: none;
  display: flex; flex-direction: column;
  font-size: clamp(13px, 1vw, 15px);
  color: var(--text-mute);
  line-height: 1.6;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-sub li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.hero-sub li:last-child { border-bottom: none; }

/* 혜택 박스 */
.benefit-box {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px 28px 24px;
  display: flex; flex-direction: column; gap: 20px;
}
.benefit-head {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mute);
  text-align: center;
  padding-bottom: 6px;
}
.benefit-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: start;
}
.benefit-num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  padding-top: 4px;
  letter-spacing: 0.02em;
}
.benefit-body { min-width: 0; }
.benefit-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.015em;
  margin-bottom: 6px;
  line-height: 1.4;
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
}
.benefit-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 2px 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--text-mute);
  font-weight: 500;
}
.benefit-desc {
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.7;
}
.benefit-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  font-size: 13px;
  color: var(--text-mute);
}
.benefit-list li {
  padding: 2px 0 2px 14px;
  position: relative;
}
.benefit-list li::before {
  content: "·";
  position: absolute;
  left: 4px; top: 0;
  color: var(--text-dim);
}
.benefit-arrow {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
}
.benefit-quote {
  margin-top: 10px;
  padding: 10px 12px;
  border-left: 2px solid var(--accent);
  background: var(--accent-soft);
  font-size: 12px;
  color: var(--text);
  line-height: 1.6;
}
.benefit-foot {
  text-align: center;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding-top: 8px;
  border-top: 1px dashed var(--line);
  font-weight: 600;
}

/* CTA */
.cta-button {
  display: block;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  padding: 22px 28px;
  text-align: left;
  position: relative;
  overflow: hidden;
  font-weight: 700;
  transition: all .3s var(--ease);
  box-shadow: 0 12px 40px -20px var(--accent-glow), 0 0 0 1px rgba(255,255,255,0.05) inset;
  width: 100%;
}
.cta-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 60%);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.cta-button:hover {
  transform: translateY(-3px) scale(1.005);
  box-shadow: 0 20px 60px -16px var(--accent-glow), 0 0 0 1px rgba(255,255,255,0.1) inset;
}
.cta-button:hover::before { opacity: 1; }
.cta-button:active { transform: translateY(-1px) scale(0.998); }

.cta-button .cta-top {
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 500;
  opacity: 0.85;
  margin-bottom: 4px;
  font-family: var(--font-en);
}
.cta-button .cta-bottom {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 800;
  letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 10px;
  line-height: 1.3;
}
.cta-arrow {
  margin-left: auto;
  font-size: 22px;
  font-weight: 400;
  transition: transform .3s var(--ease);
}
.cta-button:hover .cta-arrow { transform: translateX(6px); }

.hero-cta { animation: cta-pulse 2.4s ease-in-out infinite; animation-delay: 3s; }
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 12px 40px -20px var(--accent-glow), 0 0 0 1px rgba(255,255,255,0.05) inset, 0 0 0 0 var(--accent-glow); }
  50% { box-shadow: 0 12px 40px -16px var(--accent-glow), 0 0 0 1px rgba(255,255,255,0.05) inset, 0 0 0 8px rgba(255,45,45,0); }
}

/* ─── HERO 우측 아티스트 슬라이더 ──────────────── */
.hero-right {
  position: sticky;
  top: 100px;
  display: flex; flex-direction: column; gap: 16px;
  align-self: start;
  min-width: 0;
  width: 100%;
}
.slider-label {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  text-transform: uppercase;
  padding: 0 4px;
}
.slider-label .dash { color: var(--text-dim); margin: 0 8px; }
.slider-label.bottom { text-align: right; }

.slider-wrap {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), transparent);
}
.slider-wrap::before,
.slider-wrap::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 3;
  pointer-events: none;
}
.slider-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.slider-wrap::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }

.slider-row {
  display: flex;
  gap: 12px;
  width: max-content;
  will-change: transform;
}
.slider-row.r1 { animation: scroll-right 60s linear infinite; }
.slider-row.r2 { animation: scroll-left 40s linear infinite; }
.slider-row.r3 { animation: scroll-right 75s linear infinite; }

@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.slider-wrap:hover .slider-row { animation-play-state: paused; }

.artist-tile {
  flex: 0 0 auto;
  width: 130px;
  height: 170px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-3);
  transition: transform .35s var(--ease);
  cursor: pointer;
}
.artist-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  transition: transform .8s var(--ease-out), filter .35s var(--ease);
}
.artist-tile .tile-name {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 10px 8px;
  font-size: 11px;
  font-weight: 600;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(6px);
  transition: all .3s var(--ease);
}
.artist-tile .tile-group {
  display: block;
  font-size: 9px;
  font-family: var(--font-en);
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 2px;
}
.artist-tile:hover { transform: scale(1.08); z-index: 4; }
.artist-tile:hover img { transform: scale(1.1); filter: saturate(1.15) contrast(1.05); }
.artist-tile:hover .tile-name { opacity: 1; transform: translateY(0); }

.artist-tile.placeholder {
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
}
.artist-tile.placeholder .ph-name {
  text-align: center;
  font-size: 11px;
  color: var(--text);
  line-height: 1.4;
  font-weight: 600;
  padding: 8px;
}
.artist-tile.placeholder .ph-group {
  display: block;
  font-size: 9px;
  font-family: var(--font-en);
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 4px;
}

/* ─── 섹션 공통 ──────────────────────────────────── */
.sect {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}
.sect-system { background: var(--bg); border-top: 1px solid var(--line); }
.sect-idols  { background: var(--bg-2); border-top: 1px solid var(--line); }
.sect-space  { background: var(--bg); border-top: 1px solid var(--line); }
.sect-consult{ background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); border-top: 1px solid var(--line); }

.sect-label {
  margin-bottom: 24px;
  display: inline-block;
}
.sect-headline {
  font-weight: 900;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 72px;
  text-wrap: balance;
}
.sect-headline .line { display: block; }
.sect-headline .word { display: inline-block; }
.sect-headline.final { margin-bottom: 24px; }

.sect-foot {
  margin-top: 64px;
  text-align: center;
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.8;
  font-weight: 500;
}

/* ─── 섹션 2: 프로세스 박스 ─────────────────────── */
.process-box {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(28px, 4vw, 48px);
  margin-bottom: 56px;
}
.process-head {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  text-align: center;
  margin-bottom: 32px;
  font-weight: 500;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process-step {
  padding: 0 24px;
  border-right: 1px solid var(--line);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step:first-child { padding-left: 0; }
.process-step:last-child { padding-right: 0; }

.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 12px;
  font-weight: 700;
}
.process-step.accent .step-num { color: var(--accent); }
.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.step-desc {
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.6;
}
.process-foot {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
  text-align: center;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  line-height: 1.7;
}

/* 기본기 인용문 */
.basics-quote {
  text-align: center;
  margin: 80px auto 80px;
  max-width: 880px;
  padding: 0 var(--gut);
}
.basics-quote p {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: var(--text-mute);
}
.basics-quote p + p { margin-top: 32px; }
.basics-quote .quote-em {
  font-weight: 700;
  color: var(--text);
}

/* 4카드 */
.manage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 96px;
}
.manage-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px 24px 32px;
  display: flex; flex-direction: column; gap: 18px;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.manage-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 4px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px transparent;
  transition: box-shadow .3s var(--ease);
}
.manage-card:hover {
  transform: translateY(-6px);
  background: var(--bg-4);
}
.manage-card:hover::after {
  box-shadow: inset 0 0 0 1px var(--line-2), 0 0 32px rgba(255,255,255,0.04);
}
.manage-card .card-top {
  display: flex; align-items: center; justify-content: space-between;
}
.manage-card .card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  font-weight: 700;
  transition: color .3s var(--ease);
}
.manage-card:hover .card-num { color: var(--accent); }
.manage-card .card-arrow {
  color: var(--text-dim);
  font-size: 16px;
  opacity: 0;
  transform: translateX(-6px);
  transition: all .3s var(--ease);
}
.manage-card:hover .card-arrow {
  opacity: 1; transform: translateX(0);
  color: var(--accent);
}
.card-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
}
.manage-card p {
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.7;
}
.card-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-size: 12px !important;
  color: var(--text-dim) !important;
}
.manage-card.accent {
  background: linear-gradient(180deg, rgba(255,45,45,0.04) 0%, var(--bg-3) 100%);
  border-color: rgba(255,45,45,0.3);
}
.manage-card.accent .card-num { color: var(--accent); }
.card-foot-accent {
  color: var(--accent) !important;
  font-weight: 600;
}

/* 진단서 figure */
.diagnosis-figure {
  margin: 0 auto;
  max-width: 920px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.8), 0 0 0 1px var(--line);
  position: relative;
}
.diagnosis-frame {
  position: relative;
  background: #fff;
}
.diagnosis-frame img {
  width: 100%; height: auto; display: block;
}
.blur-overlay {
  position: absolute;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(245, 242, 235, 0.55);
  border-radius: 3px;
  pointer-events: none;
}
.blur-overlay.light {
  background: rgba(245, 242, 235, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.blur-overlay.dark {
  background: rgba(28, 33, 58, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* 진단서 잠금 모달 */
.diagnosis-lock {
  position: absolute;
  top: 67%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: min(86%, 360px);
  padding: 32px 28px 28px;
  background: rgba(28, 33, 58, 0.96);
  border: 1px solid rgba(214, 175, 84, 0.45);
  border-radius: 8px;
  box-shadow: 0 24px 60px -16px rgba(0,0,0,0.55),
              0 0 0 1px rgba(255,255,255,0.04) inset;
  text-align: center;
  pointer-events: none;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.diagnosis-lock .lock-ring {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 2px solid #D6AF54;
  display: grid;
  place-items: center;
  color: #D6AF54;
  background: rgba(214, 175, 84, 0.08);
}
.diagnosis-lock .lock-eyebrow {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.28em;
  color: #D6AF54;
  font-weight: 700;
  margin-bottom: 14px;
}
.diagnosis-lock .lock-title {
  font-size: 17px;
  font-weight: 600;
  color: #FAFAF7;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

/* 개인정보 동의 블록 */
.privacy-block {
  display: flex; flex-direction: column;
  gap: 12px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.privacy-block .checkbox-row {
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}
.privacy-detail {
  display: flex; flex-direction: column;
  gap: 8px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 12px;
  line-height: 1.6;
}
.privacy-row {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  align-items: start;
}
.privacy-row .privacy-key {
  font-family: var(--font-en);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-transform: uppercase;
  font-weight: 700;
  padding-top: 1px;
  letter-spacing: 0.04em;
  font-family: var(--font-kr);
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
}
.privacy-row .privacy-val {
  color: var(--text-mute);
  font-size: 12px;
}
.privacy-row.highlight .privacy-val {
  color: var(--text);
}
.privacy-row.highlight strong {
  color: var(--accent);
  font-weight: 700;
}
.privacy-foot {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  color: var(--text-dim);
  font-size: 11.5px;
  line-height: 1.6;
}
.diagnosis-figure figcaption {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  padding: 18px;
  background: var(--bg);
  border-top: 1px solid var(--line);
  letter-spacing: 0.02em;
}

/* ─── 섹션 3: 34명 그리드 ───────────────────────── */
.idol-meta {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.idol-count {
  font-family: var(--font-en);
  font-size: 14px;
  color: var(--text);
  letter-spacing: 0.08em;
  font-weight: 700;
}
.idol-count .num {
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
  margin-right: 8px;
  letter-spacing: -0.02em;
}
.idol-meta-sep {
  flex: 1; height: 1px; background: var(--line); min-width: 40px;
}
.idol-meta-txt {
  font-family: var(--font-en);
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}

.idol-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 64px;
}
.idol-card {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--bg-3);
  border-radius: 3px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
  cursor: pointer;
}
.idol-card.in { opacity: 1; transform: translateY(0); }
.idol-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out), filter .3s var(--ease);
  filter: saturate(1.05);
}
.idol-card:hover img { transform: scale(1.08); filter: saturate(1.2) contrast(1.05); }
.idol-card .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 10px 8px;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
  z-index: 2;
}
.idol-card .cap-group {
  display: block;
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 2px;
  line-height: 1.2;
}
.idol-card .cap-name {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.idol-card.placeholder {
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
}
.idol-card.placeholder .cap {
  position: static;
  background: none;
  padding: 0;
  text-align: center;
}
.idol-card.placeholder .cap-name { color: var(--text); }

/* 신뢰 박스 */
.trust-box {
  margin: 0 auto;
  max-width: 720px;
  background: rgba(255,45,45,0.04);
  border: 1px solid rgba(255,45,45,0.25);
  border-radius: 4px;
  padding: 28px 32px;
  text-align: center;
}
.trust-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}
.dot-red {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  animation: dot-blink 1.5s ease-in-out infinite;
}
@keyframes dot-blink { 50% { opacity: 0.4; transform: scale(0.7); } }
.trust-box p {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text);
  line-height: 1.7;
  font-weight: 500;
}

/* ─── 섹션 4: 공간 ──────────────────────────────── */
.space-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  margin-bottom: 64px;
}
.space-shot {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: var(--bg-3);
  aspect-ratio: 3 / 2;
}
.space-shot.wide {
  grid-column: 1;
  grid-row: 1 / 3;
  aspect-ratio: auto;
}
.space-shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.78) contrast(1.05) saturate(0.95);
  transition: filter .4s var(--ease), transform .8s var(--ease-out);
}
.space-shot:hover img { filter: brightness(0.95) contrast(1.05) saturate(1); transform: scale(1.03); }
.space-shot figcaption {
  position: absolute;
  left: 16px; bottom: 14px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text);
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  backdrop-filter: blur(6px);
}

/* 정보 + 지도 */
.info-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
  margin-bottom: 0;
}
.info-col { display: flex; flex-direction: column; gap: 16px; }
.info-block {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px;
}
.info-head {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600;
}
.info-body p { font-size: 16px; color: var(--text); line-height: 1.55; font-weight: 500; }
.info-sub { margin-top: 12px !important; color: var(--text-mute) !important; font-size: 13px !important; font-weight: 400 !important; }
.info-phone {
  font-family: var(--font-mono);
  font-size: 22px !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em;
}
.info-kakao {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: all .25s var(--ease);
}
.info-kakao:hover { background: var(--text); color: var(--bg); border-color: var(--text); }
.info-kakao .arrow { transition: transform .25s var(--ease); }
.info-kakao:hover .arrow { transform: translateX(3px); }

.map-col { position: relative; }
.map-link {
  position: relative;
  display: block;
  height: 100%;
  min-height: 320px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-3);
}
.map-link img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: filter .4s var(--ease);
}
.map-link:hover img { filter: brightness(1.04) saturate(1.05); }

.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  pointer-events: none;
}
.map-pin-dot {
  width: 14px; height: 14px;
  background: var(--accent);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255,45,45,0.2), 0 0 24px var(--accent-glow);
  animation: pin-pulse 2s ease-in-out infinite;
  position: relative;
}
.map-pin-dot::after {
  content: "";
  position: absolute;
  top: 100%; left: 50%;
  transform: translate(-50%, -2px);
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid var(--accent);
}
@keyframes pin-pulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(255,45,45,0.2), 0 0 24px var(--accent-glow); }
  50%      { box-shadow: 0 0 0 16px rgba(255,45,45,0.0), 0 0 24px var(--accent-glow); }
}
.map-pin-label {
  background: var(--bg);
  border: 1px solid var(--line-2);
  padding: 4px 10px;
  border-radius: 2px;
  font-size: 11px;
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: -0.01em;
  margin-top: 14px;
}
.map-cta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 20px;
  background: linear-gradient(to top, rgba(10,10,10,0.92), rgba(10,10,10,0.55) 60%, transparent);
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.map-link:hover .map-cta .arrow { transform: translateX(4px); }
.map-cta .arrow { transition: transform .25s var(--ease); }

/* ─── 섹션 5: 신청 폼 ───────────────────────────── */
.consult-sub {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--text-mute);
  line-height: 1.7;
  margin-bottom: 56px;
  max-width: 640px;
}

.consult-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: start;
  position: relative;
}

.benefit-box.compact {
  position: sticky;
  top: 100px;
}
.benefit-box.compact .benefit-item { gap: 16px; }
.benefit-box.compact .benefit-title { font-size: 15px; }
.benefit-box.compact .benefit-desc { font-size: 12px; }

.mini-countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.mini-unit {
  display: flex; flex-direction: column; align-items: center;
  padding: 10px 4px;
  background: rgba(255,45,45,0.06);
  border: 1px solid rgba(255,45,45,0.2);
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
  line-height: 1;
}
.mini-label {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  margin-top: 4px;
  font-weight: 500;
}

.consult-form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(28px, 4vw, 48px);
  display: flex; flex-direction: column; gap: 22px;
}
.form-row { display: flex; flex-direction: column; gap: 0; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mute);
  letter-spacing: 0.02em;
}
.field-label .req { color: var(--accent); }
.field-label .opt { color: var(--text-dim); font-weight: 400; }

.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  font-weight: 500;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); font-weight: 400; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  background: rgba(255,45,45,0.04);
}
.field input:invalid:not(:placeholder-shown) {
  border-color: rgba(255,45,45,0.4);
}
.field textarea { resize: vertical; min-height: 100px; line-height: 1.6; font-family: inherit; }

.select-wrap { position: relative; }
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
}
.select-arrow {
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-mute);
  font-size: 14px;
}

.checkbox-row {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-mute);
  user-select: none;
}
.checkbox-row input { position: absolute; opacity: 0; pointer-events: none; }
.check-vis {
  width: 18px; height: 18px;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  background: var(--bg);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: all .2s var(--ease);
  position: relative;
}
.check-vis::after {
  content: "";
  width: 10px; height: 5px;
  border: 2px solid #fff;
  border-top: none; border-right: none;
  transform: rotate(-45deg) scale(0);
  transition: transform .2s var(--ease);
  margin-top: -2px;
}
.checkbox-row input:checked + .check-vis {
  background: var(--accent);
  border-color: var(--accent);
}
.checkbox-row input:checked + .check-vis::after { transform: rotate(-45deg) scale(1); }

.submit-button {
  margin-top: 8px;
  animation: cta-pulse 2.4s ease-in-out infinite;
}

.form-foot {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: -4px;
}

.consult-success {
  background: var(--bg-2);
  border: 1px solid rgba(255,45,45,0.3);
  border-radius: 4px;
  padding: 64px 32px;
  text-align: center;
  grid-column: 1 / -1;
}
.success-mark {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  font-size: 32px;
  font-weight: 700;
  box-shadow: 0 0 0 8px rgba(255,45,45,0.15);
}
.consult-success h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.consult-success p { color: var(--text-mute); line-height: 1.7; }
.success-sub {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent) !important;
}

/* ─── 푸터 ──────────────────────────────────────── */
.site-footer {
  background: var(--bg);
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 48px;
}
.footer-left { display: flex; flex-direction: column; gap: 16px; }
.footer-brand {
  display: flex; align-items: center; gap: 14px;
}
.footer-logo {
  height: 96px;
  width: auto;
  display: block;
}
.footer-mark {
  width: 40px; height: 40px;
  background: #fff;
  color: var(--bg);
  display: grid; place-items: center;
  font-size: 18px;
  border-radius: 3px;
  font-weight: 900;
}
.footer-wordmark {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
}
.footer-wordmark span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--text-mute);
  margin-left: 6px;
  vertical-align: middle;
}
.footer-branch {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.005em;
}
.footer-addr {
  font-size: 13px;
  color: var(--text-mute);
}

.footer-right {
  display: flex; flex-direction: column; gap: 4px;
  text-align: right;
}
.footer-ig {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
  transition: opacity .2s ease;
}
.footer-ig:hover { opacity: 0.8; }
.footer-web {
  font-size: 13px;
  font-family: var(--font-en);
  color: var(--text-mute);
  letter-spacing: 0.02em;
  transition: color .2s ease;
}
.footer-web:hover { color: var(--text); }

.footer-divider {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gut);
  height: 1px;
  background: var(--line);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-dim);
  padding-top: 24px;
  font-family: var(--font-en);
  letter-spacing: 0.04em;
}

/* ─── 플로팅 CTA ────────────────────────────────── */
.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  background: var(--accent);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 20px 40px -16px var(--accent-glow), 0 0 0 1px rgba(255,255,255,0.06) inset;
  transform: translateY(40px);
  opacity: 0;
  pointer-events: none;
  transition: transform .4s var(--ease-out), opacity .4s var(--ease-out), box-shadow .25s var(--ease);
}
.floating-cta.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.floating-cta:hover {
  box-shadow: 0 24px 50px -16px var(--accent-glow), 0 0 0 1px rgba(255,255,255,0.1) inset;
}
.floating-cta:hover .arrow { transform: translateX(3px); }
.floating-cta .arrow { transition: transform .25s var(--ease); }


/* ─── 스크롤 리빌 모션 ─────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal[data-anim="slide-in-left"] { transform: translateX(-32px); }
.reveal[data-anim="word-up"] { transform: translateY(0.5em); opacity: 0; transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal[data-anim="fade-in"] { transform: none; }
.reveal.in { opacity: 1; transform: translate(0, 0); }

/* ─── 반응형: 태블릿 ──────────────────────────── */
@media (max-width: 1100px) {
  .hero { padding: 100px var(--gut) 60px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hero-right {
    position: relative;
    top: 0;
    margin: 0 calc(-1 * var(--gut));
  }
  .slider-wrap { padding-left: 0; padding-right: 0; }

  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-step { border-right: none; padding: 0; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
  .process-step:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--line); padding-bottom: 16px; }
  .process-step:nth-child(even) { padding-left: 24px; }
  .process-step:nth-last-child(-n+2) { border-bottom: none; }

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

  .idol-grid { grid-template-columns: repeat(5, 1fr); }

  .space-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .space-shot.wide { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 16 / 9; }

  .info-row { grid-template-columns: 1fr; }
  .map-link { min-height: 360px; }

  .consult-grid { grid-template-columns: 1fr; }
  .benefit-box.compact { position: relative; top: 0; }
}

/* ─── 반응형: 모바일 ──────────────────────────── */
@media (max-width: 640px) {
  .hero { padding: 90px var(--gut) 48px; }
  .hero-grid { gap: 40px; }
  .hero-left { gap: 24px; }
  .header-inner { padding: 14px var(--gut); }
  .header-cta { padding: 8px 14px; font-size: 12px; }
  .brand-name { font-size: 12px; }
  .brand-branch { display: none; }
  .brand-divider { display: none; }

  .hero-headline { font-size: clamp(42px, 11vw, 64px); }
  .sect-headline { font-size: clamp(34px, 9vw, 60px); margin-bottom: 48px; }

  .countdown { padding: 18px 16px; }
  .countdown-row { gap: 4px; }
  .cd-sep { padding-bottom: 14px; }
  .cd-num { font-size: 32px; }

  .benefit-box { padding: 24px 20px 20px; }
  .benefit-item { grid-template-columns: 32px 1fr; gap: 12px; }
  .benefit-title { font-size: 15px; }

  .cta-button { padding: 18px 22px; }
  .cta-button .cta-bottom { font-size: 14px; }

  .process-box { padding: 24px 20px; }
  .process-grid { grid-template-columns: 1fr; gap: 0; }
  .process-step { padding: 16px 0 !important; border: none !important; border-bottom: 1px solid var(--line) !important; }
  .process-step:last-child { border-bottom: none !important; }

  .basics-quote { margin: 56px auto; }
  .basics-quote p { font-size: 22px; }

  .manage-grid { grid-template-columns: 1fr; gap: 12px; margin-bottom: 64px; }

  .idol-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }

  .space-gallery { grid-template-columns: 1fr; gap: 8px; }
  .space-shot, .space-shot.wide { aspect-ratio: 16 / 10; }

  .info-block { padding: 22px; }
  .form-row.two { grid-template-columns: 1fr; gap: 22px; }
  .consult-form { padding: 24px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-right { text-align: left; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  .floating-cta { right: 16px; bottom: 16px; padding: 12px 18px; font-size: 13px; }

  .artist-tile { width: 110px; height: 144px; }
}

/* ─── 모션 감소 환경 ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .slider-row { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
