/* =========================================================
   붕어브로우 자연눈썹 이벤트 랜딩 — 다크 + 레드 에디토리얼
   ========================================================= */

:root {
  --bg: #0c0c0c;
  --surface: #141414;
  --surface-2: #1c1c1c;
  --red: #ffe500;        /* 포인트 컬러 (옐로우) */
  --red-dark: #ecd400;   /* 호버 */
  --on-accent: #15140a;  /* 옐로우 위 텍스트(거의 검정) */
  --text: #ffffff;
  --muted: #a6a6a6;
  --line: rgba(255, 255, 255, 0.14);
  --maxw: 1200px;
  --radius: 12px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Pretendard", "Pretendard Variable", -apple-system, BlinkMacSystemFont,
    "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, dl, dd { margin: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 800px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--red); color: var(--on-accent); padding: 10px 16px;
}
.skip-link:focus { left: 16px; top: 16px; }

/* 영문 디스플레이 폰트 */
.display { font-family: "Anton", "Pretendard", sans-serif; }

[data-todo] { color: var(--red); font-style: normal; }

/* ===== 버튼 ===== */
.btn {
  --h: 54px;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; min-height: var(--h); padding: 0 26px;
  border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 700; font-size: 16px; letter-spacing: -0.01em;
  cursor: pointer; transition: transform 0.15s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--sm { --h: 42px; padding: 0 18px; font-size: 14px; }
.btn--lg { --h: 60px; padding: 0 34px; font-size: 18px; }
.btn--block { display: flex; width: 100%; }

.btn--primary { background: var(--red); color: var(--on-accent); }
.btn--primary:hover { background: var(--red-dark); }
.btn--primary:focus-visible { outline: 3px solid rgba(255, 229, 0, 0.55); outline-offset: 2px; }

.btn--light { background: #fff; color: #111; }
.btn--light:hover { background: #eaeaea; }

.btn--ghost { background: transparent; border-color: #111; color: #111; }
.btn--ghost:hover { background: #111; color: #fff; }
.btn--ghost-light { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn--ghost-light:hover { background: #fff; color: #111; }

/* ===== 헤더 ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(12, 12, 12, 0.7);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; gap: 24px; height: 68px; }
.logo { font-weight: 800; font-size: 21px; letter-spacing: -0.02em; }
.logo::after { content: "."; color: var(--red); }
.nav { display: flex; gap: 28px; margin-left: auto; }
.nav a { color: var(--muted); font-size: 15px; font-weight: 600; transition: color 0.2s; }
.nav a:hover { color: #fff; }
.header__cta { margin-left: 4px; }

.nav-toggle {
  display: none; margin-left: auto; width: 44px; height: 44px;
  background: none; border: none; cursor: pointer; flex-direction: column;
  justify-content: center; gap: 5px; padding: 0;
}
.nav-toggle span { display: block; height: 2px; width: 24px; background: #fff; margin: 0 auto; transition: transform 0.25s, opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: flex; flex-direction: column; gap: 4px; padding: 12px 24px 24px;
  border-top: 1px solid var(--line); background: rgba(12,12,12,0.96);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a { padding: 12px 0; font-size: 17px; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-nav .btn { margin-top: 12px; }

/* ===== 히어로 (노란 배경 + 우측 인물) ===== */
.hero {
  position: relative; min-height: 100svh; min-height: 100vh;
  display: flex; align-items: flex-end;
  background: var(--red); color: var(--on-accent);
  padding: 110px 0 0; overflow: hidden;
}
.hero__caption {
  position: absolute; top: 88px; left: 0; right: 0; z-index: 5;
  display: flex; justify-content: space-between;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(21,20,10,0.6);
}
.hero__display {
  position: absolute; top: 50%; left: 0; right: 0; z-index: 1;
  transform: translateY(-56%);
  font-family: "Anton", sans-serif; font-weight: 400;
  text-transform: uppercase; line-height: 0.82; letter-spacing: 0.01em;
  font-size: clamp(72px, 19vw, 280px); text-align: center;
  color: rgba(255,255,255,0.55); pointer-events: none; user-select: none;
}
.hero__display .line { display: block; }
.hero__display .line--ghost { color: rgba(21,20,10,0.08); }

.hero__inner {
  position: relative; z-index: 4;
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: end; gap: 24px;
  width: 100%;
}
.hero__text { max-width: 620px; align-self: center; padding-bottom: 6vh; }
.hero__kor {
  font-size: clamp(30px, 5.4vw, 58px); font-weight: 800; line-height: 1.16;
  letter-spacing: -0.03em; margin: 18px 0 18px; color: var(--on-accent);
}
.hero__sub { color: rgba(21,20,10,0.78); font-size: clamp(15px, 2vw, 18px); max-width: 540px; }

.hero__person {
  align-self: end; justify-self: end;
  width: min(100%, 460px); aspect-ratio: 3 / 4;
  border-radius: 20px; overflow: hidden; margin-bottom: 5vh;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
}
.hero__person img,
.hero__person video {
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}

.hero__footer {
  position: absolute; bottom: 22px; left: 0; right: 0; z-index: 5;
  display: flex; justify-content: space-between;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(21,20,10,0.6);
}

/* 노란 배경 위 히어로 요소 대비 보정 */
.hero .badge { background: var(--on-accent); color: var(--red); }
.hero .price__old { color: rgba(21,20,10,0.55); }
.hero .price__now strong { color: var(--on-accent); }
.hero .btn--primary { background: var(--on-accent); color: var(--red); }
.hero .btn--primary:hover { background: #000; }
.hero .btn--ghost-light { border-color: var(--on-accent); color: var(--on-accent); }
.hero .btn--ghost-light:hover { background: var(--on-accent); color: var(--red); }

.badge {
  display: inline-block; background: var(--red); color: var(--on-accent);
  font-size: 13px; font-weight: 700; padding: 7px 14px; border-radius: 999px;
  letter-spacing: -0.01em;
}
.badge--light { background: rgba(255,255,255,0.14); color: #fff; }

.price { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin: 26px 0; }
.price__old { color: var(--muted); text-decoration: line-through; font-size: 16px; }
.price__now { font-size: 20px; }
.price__now strong { font-size: 30px; color: var(--red); font-weight: 800; }

.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== 고민 공감: 영상 + 메시지 말풍선 ===== */
/* 위쪽(영상/얼굴)은 흰색, 아래로 갈수록 검정으로 떨어지는 그라데이션 */
.concern {
  position: relative; overflow: hidden;
  background: linear-gradient(to bottom,
    #ffffff 0%,
    #ffffff 30%,
    #f1efe9 42%,
    #2a2a2a 60%,
    #0c0c0c 78%,
    var(--bg) 100%);
}
.concern .section__title { color: #1a1a1a; margin-bottom: clamp(28px, 4vw, 44px); }

/* 배경 제거된 투명 인물 영상 — 다크 배경 위에 떠 있음 (프레임/레터박스 없음) */
.concern__media {
  position: relative; width: 100%; max-width: 560px; margin: 0 auto;
  aspect-ratio: 1440 / 1080;
}
.concern__video { width: 100%; height: 100%; object-fit: contain; }

/* 말풍선: 영상 '아래'에 배치 — 얼굴을 절대 가리지 않음 */
.concern__inner { position: relative; z-index: 2; }
.bubbles {
  display: flex; flex-direction: column; gap: 22px; max-width: 720px;
  margin: clamp(28px, 5vw, 56px) auto 0; width: 100%;
}
.bubble {
  position: relative; max-width: 80%; padding: 22px 26px;
  background: rgba(28,28,28,0.78); border: 1px solid var(--line);
  border-radius: 22px; backdrop-filter: blur(6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.bubble--left { align-self: flex-start; border-bottom-left-radius: 6px; }
.bubble--right { align-self: flex-end; border-bottom-right-radius: 6px; }
.bubble--left::after,
.bubble--right::after {
  content: ""; position: absolute; bottom: 0; width: 18px; height: 18px;
  background: inherit; border: inherit; border-top: none;
}
.bubble--left::after { left: 14px; border-right: none; border-bottom-left-radius: 4px; transform: translateY(50%) skewX(-12deg); }
.bubble--right::after { right: 14px; border-left: none; border-bottom-right-radius: 4px; transform: translateY(50%) skewX(12deg); }
.bubble__title { font-size: clamp(18px, 2.4vw, 22px); font-weight: 800; color: var(--red); margin-bottom: 8px; }
.bubble__text { color: #dcdcdc; font-size: 15.5px; line-height: 1.65; }

/* ===== 섹션 공통 ===== */
.section { padding: clamp(72px, 11vw, 140px) 0; }
.section--alt { background: var(--surface); }
.section__title {
  font-size: clamp(28px, 5vw, 46px); font-weight: 800; line-height: 1.18;
  letter-spacing: -0.03em; text-align: center; margin-bottom: 14px;
}
.section__title--left { text-align: left; }
.section__title--invert { color: #fff; }
.section__title::after {
  content: ""; display: block; width: 46px; height: 4px; background: var(--red);
  margin: 22px auto 0; border-radius: 2px;
}
.section__title--left::after { margin-left: 0; }
.section__desc { text-align: center; color: var(--muted); margin-bottom: 48px; }
.lead { color: #cfcfcf; font-size: clamp(16px, 2vw, 19px); line-height: 1.75; }
.center-text { text-align: center; }
.mobile-br { display: none; }

/* ===== 카드 ===== */
.cards { display: grid; gap: 20px; margin-top: 48px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; transition: transform 0.2s var(--ease), border-color 0.2s;
}
.section--alt .card { background: #0f0f0f; }
.card:hover { transform: translateY(-4px); border-color: rgba(255,229,0,0.55); }
.card__icon { font-size: 34px; display: block; margin-bottom: 14px; }
.card h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15.5px; }

/* ===== 상식 전환 비교 ===== */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 44px; }
.compare__col { border-radius: var(--radius); padding: 30px 26px; border: 1px solid var(--line); }
.compare__col h3 { font-size: 17px; font-weight: 700; margin-bottom: 18px; }
.compare__col ul { display: flex; flex-direction: column; gap: 12px; }
.compare__col li { padding-left: 26px; position: relative; color: #d4d4d4; }
.compare__col--bad { background: #121212; }
.compare__col--bad h3 { color: var(--muted); }
.compare__col--bad li::before { content: "✕"; position: absolute; left: 0; color: var(--muted); }
.compare__col--good { background: rgba(255,229,0,0.1); border-color: rgba(255,229,0,0.45); }
.compare__col--good h3 { color: var(--red); }
.compare__col--good li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 800; }

/* ===== split (이미지 + 텍스트) ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media::before {
  content: ""; position: absolute; z-index: 0;
  width: 78%; aspect-ratio: 1; border-radius: 50%; background: var(--red);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.split__media img {
  position: relative; z-index: 1; width: 100%; border-radius: var(--radius);
  object-fit: cover; aspect-ratio: 4/5;
}
.split__text .lead + .lead { margin-top: 16px; }
.split__text .badge { margin-bottom: 16px; }
.criteria { counter-reset: c; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 26px 0; }
.criteria li { counter-increment: c; position: relative; padding-left: 40px; font-weight: 600; }
.criteria li::before {
  content: counter(c, decimal-leading-zero); position: absolute; left: 0; top: -2px;
  color: var(--red); font-family: "Anton", sans-serif; font-size: 22px;
}
.emphasis {
  font-size: clamp(18px, 2.4vw, 24px); font-weight: 800; line-height: 1.4;
  letter-spacing: -0.02em; border-left: 4px solid var(--red); padding-left: 18px; margin-top: 8px;
}
.split__text .btn { margin-top: 26px; }

/* ===== 포트폴리오 자동 슬라이드 (무한 루프) ===== */
.marquee { width: 100%; overflow: hidden; margin-top: 48px; -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); }
.marquee__track { display: flex; gap: 16px; width: max-content; animation: marquee-scroll 50s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee figure { flex: 0 0 auto; width: 300px; margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--surface-2); }
.marquee img { width: 300px; aspect-ratio: 4/5; object-fit: cover; display: block; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); } /* 한 세트(9장) + gap의 절반 */
}

/* ===== 체크리스트 ===== */
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 44px 0 32px; }
.checklist li {
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px 18px 50px; position: relative; font-weight: 600;
}
.checklist li::before {
  content: "✓"; position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  color: var(--on-accent); background: var(--red); width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; font-size: 13px; font-weight: 800;
}

/* ===== 이벤트 ===== */
.section--event { background: var(--surface); }
.event-card {
  background: linear-gradient(160deg, #1a1a1a, #101010);
  border: 1px solid rgba(255,229,0,0.45); border-radius: 20px;
  padding: clamp(30px, 5vw, 52px); text-align: center; margin-top: 40px;
}
.event-card .badge { margin-bottom: 20px; }
.event-card__price { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.event-card__old { color: var(--muted); text-decoration: line-through; font-size: 24px; }
.event-card__arrow { color: var(--red); font-size: 26px; }
.event-card__now { font-family: "Anton", sans-serif; font-size: clamp(44px, 8vw, 68px); color: var(--red); line-height: 1; }
.event-card__save { display: inline-block; margin: 14px 0 26px; background: rgba(255,229,0,0.16); color: var(--red); font-weight: 700; padding: 6px 16px; border-radius: 999px; }
.event-card__meta { display: grid; gap: 14px; max-width: 460px; margin: 0 auto 24px; text-align: left; }
.event-card__meta > div { display: grid; grid-template-columns: 96px 1fr; gap: 10px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.event-card__meta dt { color: var(--muted); font-size: 14px; }
.event-card__meta dd { font-weight: 600; }
.event-card__note { color: var(--muted); font-size: 14px; max-width: 480px; margin: 0 auto 28px; }
.event-card .btn { max-width: 420px; margin: 0 auto; }

/* ===== 최고급: 헤어스트로크 ===== */
.premium { background: var(--bg); }
.premium__inner {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(24px, 4vw, 56px);
  align-items: center; overflow: hidden;
  background: linear-gradient(150deg, #1d1d1d, #0f0f0f);
  border: 1px solid rgba(255,229,0,0.35); border-radius: 24px;
}
.premium__media { align-self: stretch; }
.premium__media img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }

/* 비포/애프터 좌우 비교 */
.premium__media.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ba__item { position: relative; margin: 0; overflow: hidden; }
.ba__item img { width: 100%; height: 100%; min-height: 0; aspect-ratio: 3 / 4; object-fit: cover; object-position: center top; }
.ba__label {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,0.62); color: #fff; font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; padding: 5px 11px; border-radius: 999px;
}
.ba__label--after { background: var(--red); color: var(--on-accent); }
.premium__body { padding: clamp(30px, 4vw, 56px) clamp(30px, 4vw, 56px) clamp(30px, 4vw, 56px) 0; }
.premium__title {
  font-size: clamp(26px, 4vw, 42px); font-weight: 800; line-height: 1.2;
  letter-spacing: -0.03em; margin: 16px 0 18px;
}
.premium__title em { font-style: normal; color: var(--red); }
.premium__desc { color: #cfcfcf; font-size: clamp(15px, 2vw, 18px); line-height: 1.75; }
.premium__list { margin: 22px 0 30px; display: flex; flex-direction: column; gap: 11px; }
.premium__list li { position: relative; padding-left: 28px; color: #dcdcdc; }
.premium__list li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 800; }
.premium__price {
  display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px;
  padding-top: 20px; border-top: 1px solid var(--line);
}
.premium__price span { color: var(--muted); font-size: 15px; }
.premium__price strong { font-size: clamp(26px, 4vw, 34px); font-weight: 800; color: var(--red); }

/* ===== 진행 과정 ===== */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 52px; counter-reset: none; }
.steps li {
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 20px; position: relative;
}
.steps__num { font-family: "Anton", sans-serif; font-size: 30px; color: var(--red); display: block; margin-bottom: 12px; }
.steps h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.steps p { color: var(--muted); font-size: 14.5px; }

/* ===== FAQ ===== */
.faq { margin-top: 44px; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 4px; position: relative;
  font-size: 18px; font-weight: 700; transition: color 0.2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 26px; color: var(--red); font-weight: 400; transition: transform 0.25s;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item summary:hover { color: var(--red); }
.faq__answer { padding: 0 4px 24px; color: var(--muted); }

/* ===== 최종 CTA ===== */
.section--final {
  background: var(--red);
  background-image: radial-gradient(circle at 50% -20%, #fff36b, var(--red) 62%);
  color: var(--on-accent);
}
.section--final .section__title--invert { color: var(--on-accent); }
.section--final .section__title::after { background: var(--on-accent); }
.final__sub { font-size: clamp(16px, 2vw, 19px); margin: 22px 0 36px; color: rgba(21,20,10,0.85); }
.final__meta { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-top: 34px; font-size: 14px; color: rgba(21,20,10,0.85); }
.final__meta strong { font-weight: 800; }
.section--final [data-todo] { color: var(--on-accent); text-decoration: underline; }
/* 노랑 배경 위 최종 버튼은 검정 배경 + 노랑 글씨로 대비 */
.section--final .btn--light { background: var(--on-accent); color: var(--red); }
.section--final .btn--light:hover { background: #000; }

/* ===== 푸터 ===== */
.footer { background: #080808; padding: 64px 0 40px; border-top: 1px solid var(--line); }
.footer__inner { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 40px; }
.footer__logo { font-size: 24px; font-weight: 800; }
.footer__logo::after { content: "."; color: var(--red); }
.footer__tagline { color: var(--muted); margin-top: 6px; }
.footer__info { display: grid; gap: 8px; }
.footer__info > div { display: grid; grid-template-columns: 110px 1fr; font-size: 14px; }
.footer__info dt { color: var(--muted); }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { color: var(--muted); font-size: 14px; transition: color 0.2s; }
.footer__links a:hover { color: #fff; }
.footer__copy { text-align: center; color: #555; font-size: 13px; margin-top: 48px; }

/* ===== 모바일 하단 고정 CTA ===== */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: none; grid-template-columns: minmax(0, 1fr) 128px; align-items: center;
  gap: 12px; padding: 12px 16px;
  background: rgba(12,12,12,0.96); border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.mobile-bar__info { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; overflow: hidden; }
.mobile-bar__label { font-size: 12px; color: var(--muted); white-space: nowrap; }
.mobile-bar__price { font-size: 14px; font-weight: 600; white-space: nowrap; }
.mobile-bar__price strong { color: var(--red); }
.mobile-bar .btn { --h: 46px; padding: 0 10px; font-size: 14px; white-space: nowrap; width: 100%; }

/* ===== 반응형 ===== */
@media (max-width: 900px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: flex; }
  .cards--3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media { max-width: 460px; margin: 0 auto; }
  .gallery { grid-template-columns: repeat(2, 1fr); }

  .premium__inner { grid-template-columns: 1fr; }
  .premium__media img { min-height: 260px; max-height: 420px; }
  .premium__body { padding: clamp(26px, 6vw, 40px); }

  /* 히어로: 텍스트 위 / 인물 아래 */
  .hero { min-height: auto; padding: 104px 0 0; }
  .hero__inner { grid-template-columns: 1fr; gap: 0; }
  .hero__text { max-width: none; }
  .hero__person { justify-self: center; margin-top: 8px; }
  .hero__person img { max-height: 56vh; }
  .hero__footer { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .mobile-br { display: inline; }
  .compare { grid-template-columns: 1fr; }
  .criteria { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .hero__cta .btn { width: 100%; }
  .mobile-bar { display: grid; }
  body { padding-bottom: 76px; }
  .footer { padding-bottom: 96px; }
  .hero__caption { font-size: 10px; }
  .hero__caption span:last-child { display: none; }
  .event-card__meta > div { grid-template-columns: 84px 1fr; }
  .bubble { max-width: 94%; padding: 18px 20px; }
  .concern__media { height: 62%; }
}

/* 모션 감소 설정 존중 */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .concern__video { display: none; }
}
