/* ==========================================================================
   BODYNOX ACADEMY — style.css
   Premium wellness tone: warm ivory + BPM deep raspberry (#BE0A4C)
   Mobile first
   ========================================================================== */

/* ---------- Tokens ---------- */
/* 브랜드 컬러는 BPM 로고(딥 라즈베리 #BE0A4C)에서 추출했습니다. */
:root {
  /* color */
  --c-bg:        #FBF9F7;
  --c-bg-tint:   #F4EEE9;
  --c-surface:   #FFFFFF;
  --c-dark:      #2A171E;
  --c-dark-soft: #3A222A;
  --c-text:      #2B2024;
  --c-text-mid:  #6B5D5C;
  --c-text-weak: #9C8E8B;
  --c-line:      #E8DED6;
  --c-line-soft: #F1EAE4;
  --c-accent:    #BE0A4C;  /* BPM 브랜드 컬러 */
  --c-accent-dk: #98093D;
  --c-accent-lt: #E37FA0;  /* 어두운 배경 위에서 사용 */
  --c-accent-bg: #FAE6EC;  /* 아주 옅은 브랜드 틴트 */
  --c-kakao:     #FEE500;
  --c-kakao-txt: #191600;
  --c-line-green: #06C755;

  /* type */
  --font-sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
               "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", system-ui, sans-serif;

  /* layout */
  --maxw: 1160px;
  --gutter: 20px;
  --header-h: 64px;
  --radius: 4px;
  --radius-lg: 8px;

  /* motion */
  --ease: cubic-bezier(.22, .61, .36, 1);

  /* shadow */
  --shadow-sm: 0 1px 2px rgba(42, 23, 30, .04), 0 8px 24px rgba(42, 23, 30, .06);
  --shadow-md: 0 2px 4px rgba(42, 23, 30, .05), 0 18px 48px rgba(42, 23, 30, .10);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: -0.015em;
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4, p, figure, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }
[hidden] { display: none !important; }

:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--c-dark);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 14px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- Typography ---------- */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 14px;
}

/* 페이지 도입부의 한글 eyebrow — 영문 섹션 라벨보다 크게, 자간은 좁게 */
.eyebrow--lead {
  font-size: clamp(14px, 1.2vw, 16.5px);
  letter-spacing: 0.06em;
  text-transform: none;
  margin-bottom: 16px;
}

.section__title {
  font-size: clamp(26px, 5.4vw, 40px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.035em;
  color: var(--c-text);
}

.section__desc {
  margin-top: 16px;
  color: var(--c-text-mid);
  font-size: 15px;
  line-height: 1.85;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background-color .25s var(--ease),
              color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--c-accent);
  color: #fff;
  box-shadow: 0 10px 26px rgba(190, 10, 76, .22);
}
.btn--primary:hover { background: var(--c-accent-dk); }

.btn--ghost {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-line);
}
.btn--ghost:hover { border-color: var(--c-accent); color: var(--c-accent-dk); }

.btn--light {
  background: #fff;
  color: var(--c-accent-dk);
}
.btn--light:hover { background: var(--c-bg-tint); }

.btn--kakao {
  background: var(--c-kakao);
  color: var(--c-kakao-txt);
  box-shadow: 0 10px 26px rgba(254, 229, 0, .3);
}
.btn--kakao:hover { background: #F5DC00; }

.btn--line {
  background: var(--c-line-green);
  color: #fff;
  box-shadow: 0 10px 26px rgba(6, 199, 85, .26);
}
.btn--line:hover { background: #05B34C; }

.btn--sm { padding: 11px 20px; font-size: 14px; }
.btn--block { display: flex; width: 100%; }
.btn__icon { width: 18px; height: 18px; flex: 0 0 auto; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(251, 249, 247, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--c-line-soft);
  background: rgba(251, 249, 247, .94);
}

.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo__img { width: auto; height: 30px; }
.logo__text { display: flex; align-items: baseline; gap: 7px; }
.logo__mark {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--c-text);
}
.logo__sub {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  color: var(--c-text-weak);
}

.nav__list { display: none; }
.nav__cta { display: none; }

.nav-toggle {
  width: 40px; height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  margin-right: -8px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), width .3s var(--ease);
}
.nav-toggle span:nth-child(1) { width: 22px; }
.nav-toggle span:nth-child(2) { width: 16px; }
.nav-toggle span:nth-child(3) { width: 22px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) { width: 22px; transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { width: 22px; transform: translateY(-6.5px) rotate(-45deg); }

/* mobile drawer */
.nav.is-open {
  position: fixed;
  inset: calc(var(--header-h) + env(safe-area-inset-top, 0px)) 0 0 0;
  background: var(--c-bg);
  padding: 32px var(--gutter) calc(40px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  animation: fadeIn .25s var(--ease);
}
.nav.is-open .nav__list {
  display: flex;
  flex-direction: column;
}
.nav.is-open .nav__list a {
  display: block;
  padding: 16px 4px;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.03em;
  border-bottom: 1px solid var(--c-line-soft);
}
.nav.is-open .nav__cta {
  display: inline-flex;
  margin-top: 24px;
  align-self: flex-start;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 56px);
  padding-bottom: 72px;
  background:
    radial-gradient(120% 90% at 85% 0%, #F7EDE7 0%, rgba(247, 237, 231, 0) 60%),
    linear-gradient(180deg, #FEFDFB 0%, var(--c-bg) 100%);
  overflow: hidden;
}

.hero__inner { display: grid; gap: 44px; }

.hero__title {
  position: relative;
  z-index: 0;
  font-size: clamp(28px, 6.6vw, 48px);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.04em;
}
.hero__title em,
.subhero__title em {
  font-style: normal;
  color: var(--c-accent-dk);
  position: relative;
}
.hero__title em::after,
.subhero__title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.32em;
  background: rgba(190, 10, 76, .09);
  z-index: -1;
}

.hero__lead {
  margin-top: 22px;
  max-width: 34em;
  color: var(--c-text-mid);
  font-size: 15.5px;
  line-height: 1.9;
}

.hero__actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__stats {
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid var(--c-line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.hero__stats strong {
  display: block;
  font-size: clamp(20px, 5vw, 26px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--c-text);
  line-height: 1.2;
}
.hero__stats span {
  display: block;
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--c-text-weak);
  line-height: 1.5;
}

.hero__visual { position: relative; }
.hero__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
/* 사진 위에 얹히는 로고 — 흰색 버전 + 그림자로 밝은 사진에서도 보이게 */
.hero__badge {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 3;
  filter: drop-shadow(0 1px 2px rgba(255, 255, 255, .95));
}
.hero__badge img { width: 124px; height: auto; }

/* ---------- Media placeholders ---------- */
.media-placeholder {
  position: relative;
  background:
    linear-gradient(135deg, #F1E9E2 0%, #E0D2C8 48%, #F7F1EB 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-placeholder::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, .5);
  pointer-events: none;
}
.media-placeholder__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(86, 64, 60, .5);
}
/* 히어로 사진 */
.hero__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 40%;
}

/* 히어로 슬라이더 */
.slider { position: relative; overflow: hidden; }
.slider__track {
  display: flex;
  will-change: transform;
  transition: transform .75s var(--ease);
}
.slider__slide { flex: 0 0 100%; margin: 0; min-width: 0; }

/* 사진 아래쪽을 밝게 풀어줌 — 컬러 로고가 어떤 사진 위에서도 읽히도록 */
.slider::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  z-index: 1;
  background: linear-gradient(to top, rgba(255, 252, 250, .94) 0%, rgba(255, 252, 250, .62) 42%, rgba(255, 252, 250, 0) 100%);
  pointer-events: none;
}

.slider__dots {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  display: flex;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(42, 23, 30, .42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.slider__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  transition: background-color .3s var(--ease), width .3s var(--ease);
}
.slider__dot.is-active { width: 18px; border-radius: 999px; background: #fff; }
.media-placeholder--portrait,
.instructor__photo {
  aspect-ratio: 4 / 5;
  max-height: 400px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.instructor__photo {
  width: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* ---------- Sections ---------- */
.section { padding-block: 72px; }
.section--tint { background: var(--c-bg-tint); }
.section--dark {
  background: var(--c-dark);
  color: #EBE0E2;
}
.section--dark .section__title { color: #FBF8F7; }
.section--dark .section__desc { color: #B5A6AA; }
.section--dark .section__desc strong { color: #FBF8F7; }
.section--dark .eyebrow { color: var(--c-accent-lt); }

.section__head {
  max-width: 640px;
  margin-bottom: 44px;
}
.section__head--left { max-width: 620px; }

.grid { display: grid; gap: 20px; }

/* ---------- About features ---------- */
.feature {
  background: var(--c-surface);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.feature__num {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--c-accent);
  margin-bottom: 16px;
}
.feature__title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.feature p { color: var(--c-text-mid); font-size: 14.5px; line-height: 1.85; }

/* ---------- Course cards ---------- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--c-surface);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius-lg);
  padding: 34px 28px 30px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-line);
}
.card--featured {
  border-color: var(--c-accent);
  box-shadow: var(--shadow-sm);
}
.card__ribbon {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--c-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 13px;
  border-radius: 999px;
}
.card__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--c-accent);
  margin-bottom: 10px;
}

/* 과정 카드 머리 영역 — 단계별로 톤을 다르게 */
.card { overflow: hidden; }
.card__top {
  margin: -34px -28px 24px;
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--c-line-soft);
}
.card__toprow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.card__step {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--c-accent);
}
.card__badge {
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid var(--c-line);
  background: rgba(255, 255, 255, .7);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-text-mid);
  white-space: nowrap;
}

/* STEP 01 — 사전 온라인 */
.card--online .card__top { background: #F4EFE9; }

/* STEP 02 — 입문 자격 */
.card--foundation .card__top {
  background: var(--c-accent-bg);
  border-bottom-color: #F0D5DF;
}
.card--foundation .card__badge {
  border-color: #EFCCD9;
  color: var(--c-accent-dk);
}

/* STEP 03 — 심화 자격 */
.card--intermediate .card__top {
  background: var(--c-dark);
  border-bottom-color: transparent;
}
.card--intermediate .card__title { color: #FBF8F7; }
.card--intermediate .card__step { color: var(--c-accent-lt); }
.card--intermediate .card__badge {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .22);
  color: #EBDFE3;
}
.card__title {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.35;
}
.card__sub {
  margin-top: 4px;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  color: var(--c-text-weak);
}
.card__desc {
  margin-top: 18px;
  color: var(--c-text-mid);
  font-size: 14.5px;
  line-height: 1.85;
}
.card__list {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--c-line-soft);
  display: grid;
  gap: 10px;
}
.card__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14.5px;
  color: var(--c-text);
  line-height: 1.6;
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 10px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--c-accent);
}
.card__note {
  display: block;
  margin-top: 4px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--c-text-weak);
  letter-spacing: -0.01em;
}
.card__meta {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--c-line-soft);
  display: grid;
  gap: 8px;
}
.card__meta > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}
.card__meta dt { color: var(--c-text-weak); }
.card__meta dd { font-weight: 600; letter-spacing: -0.02em; text-align: right; }
.card__link {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--c-line-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--c-accent-dk);
}
.card__link span { transition: transform .25s var(--ease); }
.card__link:hover span { transform: translateX(4px); }

/* ---------- 과정 상세 페이지 ---------- */
.subhero {
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 56px;
  background:
    radial-gradient(120% 90% at 85% 0%, #F7EDE7 0%, rgba(247, 237, 231, 0) 60%),
    linear-gradient(180deg, #FEFDFB 0%, var(--c-bg) 100%);
}
.backlink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 28px;
  font-size: 14px;
  color: var(--c-text-mid);
  transition: color .25s var(--ease);
}
.backlink:hover { color: var(--c-accent-dk); }

.subhero__inner { display: grid; gap: 36px; }
.subhero__title {
  position: relative;
  z-index: 0;
  font-size: clamp(30px, 7vw, 52px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.04em;
}
.subhero__lead {
  margin-top: 18px;
  max-width: 34em;
  color: var(--c-text-mid);
  font-size: 15.5px;
  line-height: 1.9;
}
.subhero__actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.subhero__visual { margin: 0; }
.subhero__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.factlist {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--c-line);
  display: grid;
  gap: 16px;
}
.factlist__label {
  display: block;
  font-size: 13px;
  color: var(--c-text-weak);
}
.factlist__value {
  display: block;
  margin-top: 4px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.factlist__sub {
  display: block;
  margin-top: 3px;
  font-size: 13.5px;
  color: var(--c-text-weak);
}

/* 신청 페이지 상단 */
.subhero--narrow { padding-bottom: 20px; }
.subhero--narrow + .section { padding-top: 40px; }
.apply-head { max-width: 640px; }
.apply-head .subhero__lead { margin-top: 16px; }

/* 신청 절차 3단계 */
.steps {
  margin-top: 44px;
  display: grid;
  gap: 14px;
}
.step {
  position: relative;
  padding: 26px 24px;
  border-radius: var(--radius-lg);
  background: var(--c-surface);
  border: 1px solid var(--c-line-soft);
  box-shadow: var(--shadow-sm);
}
.step__num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--c-accent);
  margin-bottom: 10px;
}
.step__title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.step__desc {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--c-text-mid);
}
.step__desc strong { color: var(--c-accent-dk); font-weight: 600; }
.step__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-accent-dk);
}
.step__link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* 신청서 임베드 */
.form-embed { background: var(--c-surface); overflow: hidden; }
.form-embed iframe {
  display: block;
  width: 100%;
  border: 0;
  /* 구글폼은 외부 문서라 높이를 자동으로 맞출 수 없습니다.
     아래 두 값으로 조절하세요. 폼 아래 빈 공간이 남으면 줄이고,
     폼 안에 스크롤바가 생기면 늘리면 됩니다. */
  height: 2500px;
}

/* 신청서 런처 (버튼 → 폼 열림 → 제출 후 닫힘) */
.form-launcher { display: grid; }
.form-launcher__idle,
.form-done {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 48px 26px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--c-surface);
  border: 1px solid var(--c-line-soft);
  box-shadow: var(--shadow-sm);
}
.form-launcher__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--c-accent);
}
.form-launcher__desc {
  max-width: 32em;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--c-text-mid);
}

.form-launcher__panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-md);
}
.form-launcher__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: var(--c-bg-tint);
  border-bottom: 1px solid var(--c-line-soft);
}
.form-launcher__bar-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.form-launcher__close {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--c-line);
  background: var(--c-surface);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text-mid);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.form-launcher__close:hover { color: var(--c-accent-dk); border-color: var(--c-accent); }
.form-launcher__close span { font-size: 15px; line-height: 1; }

/* 제출 완료 안내 */
.form-done { border-color: var(--c-accent); }
.form-done__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--c-accent);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}
.form-done__title {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.form-done__desc {
  max-width: 32em;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--c-text-mid);
}
.form-done__desc strong { color: var(--c-accent-dk); font-weight: 600; }
.form-done__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}

/* 교육비 안내 박스 */
.feebox {
  margin-top: 32px;
  padding: 24px 26px;
  border-radius: var(--radius-lg);
  background: var(--c-dark);
  color: #EBE0E2;
  display: grid;
  gap: 18px;
}
.feebox__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.feebox__label {
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  font-size: 12px;
  font-weight: 600;
  color: #F3ECEE;
}
.feebox__amount {
  font-size: clamp(28px, 6.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #FBF8F7;
}
.feebox__amount span { font-size: 0.5em; font-weight: 500; margin-left: 2px; }
.feebox__unit { font-size: 15px; color: #AB9CA0; }
.feebox__list { display: grid; gap: 9px; }
.feebox__list li {
  position: relative;
  padding-left: 15px;
  font-size: 14px;
  line-height: 1.75;
  color: #C6B8BB;
}
.feebox__list li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--c-accent-lt);
}
.feebox__list strong { color: #FBF8F7; font-weight: 600; }

/* 폼 바로 아래 결제 유도 */
.cta-inline--pay { margin-top: 20px; }
.embed-slot {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 56px 26px;
  text-align: center;
  background: linear-gradient(135deg, #F7F1EB 0%, #F1E9E2 100%);
}
.embed-slot__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--c-accent);
}
.embed-slot__desc {
  max-width: 34em;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--c-text-mid);
}

.price__caption {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-weak);
}
.price__body .btn--block { margin-top: 22px; }

/* ---------- 결제 기수 선택 ---------- */
.paypick__head {
  margin: 26px 0 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-text);
}
.paypick { display: grid; gap: 10px; }
.paypick__item {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-line);
  background: var(--c-surface);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.paypick__item:hover {
  border-color: var(--c-accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.paypick__no {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--c-text);
}
.paypick__meta { font-size: 13.5px; color: var(--c-text-mid); }
.paypick__go {
  margin-top: 6px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--c-accent-dk);
}
.paypick__go span { margin-left: 6px; }
@media (min-width: 600px) {
  .paypick { grid-template-columns: 1fr 1fr; }
}

/* 약관 · 방침 본문 */
.legal { max-width: 760px; }
.legal h2 {
  margin-top: 40px;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--c-text);
}
.legal h2:first-child { margin-top: 0; }
.legal p {
  font-size: 15px;
  line-height: 1.95;
  color: var(--c-text-mid);
}
.legal ul { margin-top: 12px; display: grid; gap: 9px; }
.legal li {
  position: relative;
  padding-left: 16px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--c-text-mid);
}
.legal li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--c-accent);
}
.legal li strong { color: var(--c-text); font-weight: 600; }
.legal__notice {
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: var(--c-accent-bg);
  border: 1px solid #F0D5DF;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--c-accent-dk);
}
/* 강조 문단 안의 인라인 목록 */
.legal__inline {
  margin: 14px 0;
  display: grid;
  gap: 8px;
}
.legal__inline li {
  position: relative;
  padding-left: 15px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-text-mid);
}
.legal__inline li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-accent);
}
.legal__inline strong { color: var(--c-text); font-weight: 600; }

.table-note--lead {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--c-text-mid);
}
.table-note--lead strong { color: var(--c-text); font-weight: 600; }

.legal__dl {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.legal__dl > div { display: flex; gap: 16px; font-size: 15px; }
.legal__dl dt { flex: 0 0 116px; color: var(--c-text-weak); }
.legal__dl dd { color: var(--c-text); }
/* 국외 이전 항목 카드 */
.xfer-list { margin-top: 16px; display: grid; gap: 14px; }
.xfer {
  padding: 20px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-line);
  background: var(--c-surface);
}
.xfer__name {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-text);
}
.xfer .legal__dl { margin-top: 12px; }
.xfer .legal__dl > div { font-size: 14.5px; align-items: baseline; }
.xfer .legal__dl dt { flex: 0 0 104px; }
@media (max-width: 599px) {
  .xfer .legal__dl > div { flex-direction: column; gap: 2px; }
  .xfer .legal__dl dt { flex: none; font-size: 13px; }
}

.legal__date {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--c-line-soft);
  font-size: 14px;
  color: var(--c-text-weak);
}

/* 모듈 목록 */
.modules {
  counter-reset: module;
  display: grid;
  gap: 14px;
}
.module {
  background: var(--c-surface);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: grid;
  gap: 14px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.module:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.module__step {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--c-accent);
  margin-bottom: 10px;
}
.module__title {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.module__sub {
  margin-top: 6px;
  font-size: 14.5px;
  color: var(--c-text-mid);
}
.module__body p { font-size: 14.5px; line-height: 1.85; color: var(--c-text-mid); }

.module__meta {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--c-line-soft);
  display: grid;
  gap: 10px;
}
.module__meta > div { display: flex; gap: 14px; }
.module__meta dt {
  flex: 0 0 38px;
  padding-top: 2px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--c-accent);
}
.module__meta dd {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-text);
}

/* 시험 항목은 색을 달리해 구분 */
.module--exam { background: var(--c-dark); border-color: transparent; }
.module--exam .module__title { color: #FBF8F7; }
.module--exam .module__step { color: var(--c-accent-lt); }
.module--exam .module__sub,
.module--exam .module__body p { color: #B5A6AA; }

/* 섹션 제목 아래 보조 라벨 */
.section__sup {
  margin-top: 10px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--c-accent-dk);
}
.module__todo {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--c-bg-tint);
  font-size: 14px;
  color: var(--c-text-weak);
}

/* 좌우 2단 구성 */
.split { display: grid; gap: 44px; }
.split .checklist,
.split .goals { margin-top: 24px; margin-bottom: 0; }

/* 번호가 붙는 목표 목록 */
.goals { counter-reset: goal; display: grid; gap: 14px; }
.goals li {
  counter-increment: goal;
  position: relative;
  padding-left: 40px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--c-text-mid);
}
.goals li::before {
  content: counter(goal);
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--c-accent-bg);
  color: var(--c-accent-dk);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 표 제목 */
.table-title {
  margin: 36px 0 14px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-accent-dk);
}
.section__head + .table-title { margin-top: 0; }

/* 계산 예시 소제목 */
.ex__title {
  margin: 30px 0 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-text);
}
.ex__title::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1px;
  margin-right: 9px;
  vertical-align: middle;
  background: var(--c-accent);
}
.table-title + .table-note--lead + .ex__title { margin-top: 24px; }

/* 강조 문단 */
.callout {
  margin-top: 32px;
  padding: 26px 28px;
  border-radius: var(--radius-lg);
  background: var(--c-surface);
  border: 1px solid var(--c-line-soft);
}
.callout p { font-size: 14.5px; line-height: 1.9; color: var(--c-text-mid); }
.callout p strong { color: var(--c-text); font-weight: 600; }
.callout--accent { background: var(--c-accent-bg); border-color: #F0D5DF; }
.callout__title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.callout__sub { display: block; margin-top: 8px; font-size: 14px; color: var(--c-text-weak); }

/* 필수 요구 조건 목록 (다크 섹션) */
.requirements { display: grid; gap: 16px; }
.requirements li {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.requirements li:last-child { border-bottom: 0; padding-bottom: 0; }
.requirements strong {
  display: block;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #FBF8F7;
}
.requirements span {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.7;
  color: #AB9CA0;
}

/* 교육비 */
.price { display: grid; gap: 24px; }
.price__main {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--c-dark);
  color: #fff;
  align-content: center;
}
.price__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--c-accent-lt);
}
.price__amount {
  margin-top: 10px;
  font-size: clamp(32px, 7vw, 42px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.price__amount span { font-size: 0.5em; font-weight: 500; margin-left: 4px; }
.price__note { margin-top: 6px; font-size: 14px; color: #B5A6AA; }
.price__body {
  padding: 30px 28px;
  border-radius: var(--radius-lg);
  background: var(--c-surface);
  border: 1px solid var(--c-line-soft);
}
.price__title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.price__body .checklist { margin-bottom: 0; }

/* FAQ 아코디언 */
.faq { display: grid; gap: 10px; }
.faq__item {
  background: var(--c-surface);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq__item summary {
  position: relative;
  padding: 20px 52px 20px 24px;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
  list-style: none;
  transition: color .25s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--c-accent-dk); }
.faq__item summary::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 50%;
  width: 9px;
  height: 9px;
  margin-top: -6px;
  border-right: 1.5px solid var(--c-accent);
  border-bottom: 1.5px solid var(--c-accent);
  transform: rotate(45deg);
  transition: transform .3s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq__body {
  padding: 0 24px 22px;
  border-top: 1px solid var(--c-line-soft);
  padding-top: 18px;
  margin-top: -1px;
}
.faq__body p { font-size: 14.5px; line-height: 1.9; color: var(--c-text-mid); }

/* 총액 안내 */
.totalbox {
  margin-top: 32px;
  padding: 26px 28px;
  border-radius: var(--radius-lg);
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 18px;
}
.totalbox__rows { display: grid; gap: 12px; }
.totalbox__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
}
.totalbox__row dt { color: var(--c-text-mid); }
.totalbox__row dd { font-weight: 600; letter-spacing: -0.02em; }
.totalbox__row--sum {
  padding-top: 12px;
  border-top: 1px solid var(--c-line-soft);
}
.totalbox__row--sum dt { color: var(--c-text); font-weight: 600; }
.totalbox__row--sum dd {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--c-accent-dk);
}
.totalbox__note {
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-text-weak);
}

/* 450시간 구성 */
.hours { margin-top: 36px; }
.hours__title {
  font-size: clamp(20px, 4.4vw, 26px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.4;
}
.hours__desc {
  margin-top: 12px;
  max-width: 44em;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--c-text-mid);
}
.hours__bar {
  display: flex;
  height: 14px;
  margin-top: 26px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--c-line-soft);
}
.hours__seg { display: block; height: 100%; }
.hours__seg--face { background: var(--c-dark); }
.hours__seg--self { background: var(--c-accent); }
.hours__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 14px;
  font-size: 14.5px;
  color: var(--c-text-mid);
}
.hours__legend li { display: flex; align-items: center; gap: 8px; }
.hours__legend i {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex: 0 0 auto;
}
.hours__legend i.is-face { background: var(--c-dark); }
.hours__legend i.is-self { background: var(--c-accent); }
.hours__legend strong { color: var(--c-text); font-weight: 600; }

.hours__grid {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}
.hours__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: var(--c-surface);
  border: 1px solid var(--c-line-soft);
}
.hours__item dt { font-size: 14.5px; letter-spacing: -0.02em; }
.hours__item dd {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.hours__item--face { border-left: 3px solid var(--c-dark); }
.hours__item--self { border-left: 3px solid var(--c-accent); }

/* 본문 중간 등록 유도 밴드 */
.cta-inline {
  margin-top: 44px;
  padding: 24px 26px;
  border-radius: var(--radius-lg);
  background: var(--c-accent-bg);
  border: 1px solid #F0D5DF;
  display: grid;
  gap: 16px;
  align-items: center;
}
.cta-inline__text {
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: -0.02em;
  color: var(--c-text);
}
.cta-inline__text strong {
  display: block;
  margin-top: 2px;
  font-weight: 600;
  color: var(--c-accent-dk);
}
.cta-inline .btn { white-space: nowrap; }

/* 하단 CTA 밴드 */
.cta-band { display: grid; gap: 28px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 10px; align-content: start; }
.btn--outline-light {
  background: transparent;
  color: #F3ECEE;
  border-color: rgba(255, 255, 255, .3);
}
.btn--outline-light:hover { border-color: #fff; color: #fff; }

/* ---------- Schedule table ---------- */
.table-wrap {
  background: var(--c-surface);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.schedule-table th,
.schedule-table td {
  text-align: left;
  font-size: 14.5px;
}

.schedule-table thead { display: none; }

.schedule-table tbody tr {
  display: grid;
  gap: 8px;
  padding: 22px 20px;
  border-bottom: 1px solid var(--c-line-soft);
}
.schedule-table tbody tr:last-child { border-bottom: 0; }

.schedule-table tbody td {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  align-items: baseline;
  justify-items: start;
}
.schedule-table tbody td::before {
  content: attr(data-label);
  font-size: 13.5px;
  color: var(--c-text-weak);
  letter-spacing: -0.01em;
}
.schedule-table tbody td[data-label="과정"] {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.03em;
}

.status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.5;
}
.td-empty { color: var(--c-text-weak); }
.td-link {
  font-weight: 600;
  color: var(--c-accent-dk);
  border-bottom: 1px solid var(--c-line);
  padding-bottom: 1px;
  transition: border-color .25s var(--ease);
}
.td-link:hover { border-bottom-color: var(--c-accent); }

.status--open    { background: var(--c-accent-bg); color: var(--c-accent-dk); }
.status--soon    { background: #EFEAE3; color: #7A6B5D; }
.status--waiting { background: #EDE8F0; color: #63566E; }
.status--closed  { background: #F0ECE8; color: var(--c-text-weak); }

.table-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--c-text-weak);
}

/* ---------- 사진 자리 (추후 교체) ---------- */
.photo-slot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 16px;
  text-align: center;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #F1E9E2 0%, #E2D4CA 48%, #F7F1EB 100%);
}
.photo-slot::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 3px;
  pointer-events: none;
}
.photo-slot__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(86, 64, 60, .62);
}
.photo-slot__hint {
  font-size: 11.5px;
  letter-spacing: 0;
  color: rgba(86, 64, 60, .4);
  word-break: break-all;
}
/* 사진으로 교체했을 때 (img 에 같은 클래스를 붙이면 됩니다) */
img.photo-slot,
img.photo-slot--wide,
img.photo-slot--square,
img.photo-slot--portrait {
  display: block;
  width: 100%;
  object-fit: cover;
  background: none;
}
img.photo-slot::after,
img.photo-slot--wide::after { content: none; }

.photo-slot--square { aspect-ratio: 1 / 1; }
.photo-slot--portrait {
  aspect-ratio: 4 / 5;
  max-height: 400px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.photo-slot--wide { aspect-ratio: 16 / 10; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }

/* ---------- 브랜드 영상 ---------- */
.brandfilm__frame {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
}
.brandfilm__video {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;      /* 원본 레터박스를 잘라내는 비율 */
  object-fit: cover;
  background: #000;
}
.brandfilm__caption {
  margin-top: 14px;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  color: #9C8E92;
}

/* ---------- 모집 기수 카드 ---------- */
.intakes { align-items: stretch; }
.intake {
  display: flex;
  flex-direction: column;
  background: var(--c-surface);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.intake:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.intake--open { border-color: var(--c-accent); box-shadow: var(--shadow-sm); }
.intake__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 24px 26px;
}
.intake__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.intake__no {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.intake__course {
  margin-top: 4px;
  font-size: 14.5px;
  color: var(--c-text-mid);
}
.intake__meta {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--c-line-soft);
  display: grid;
  gap: 9px;
  margin-bottom: 22px;
}
.intake__meta > div { display: flex; gap: 12px; font-size: 14.5px; }
.intake__meta dt { flex: 0 0 66px; color: var(--c-text-weak); }
.intake__meta dd {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* 국가 국기 */
.flag {
  flex: 0 0 auto;
  width: 18px;
  height: 12px;
  border-radius: 1.5px;
  box-shadow: 0 0 0 1px rgba(42, 23, 30, .12);
}
.intake__body .btn { margin-top: auto; }

/* ---------- 히어로 가격 박스 ---------- */
.pricebox {
  margin-top: 26px;
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 12px;
}
.pricebox__main {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 10px;
}
.pricebox__label {
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--c-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.pricebox__amount {
  font-size: clamp(26px, 6vw, 34px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--c-text);
}
.pricebox__amount span { font-size: 0.55em; font-weight: 500; margin-left: 2px; }
.pricebox__note { font-size: 14px; color: var(--c-text-mid); }
.pricebox__desc {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--c-line-soft);
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-text-weak);
}
.pricebox__desc strong { color: var(--c-accent-dk); font-weight: 600; }

/* 조건 3가지 — 가운뎃점으로 이어지는 한 줄 */
.pricebox__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-text-mid);
}
.pricebox__facts li { position: relative; }
.pricebox__facts li + li::before {
  content: '\00b7';
  position: absolute;
  left: -8px;
  color: var(--c-line);
}
.pricebox__facts strong { color: var(--c-accent-dk); font-weight: 600; }

/* ---------- 숫자 ---------- */
.numbers {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, 1fr);
}
.numbers li {
  padding: 22px 18px;
  border-radius: var(--radius-lg);
  background: var(--c-dark-soft);
  border: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
}
.numbers strong {
  display: block;
  font-size: clamp(30px, 8vw, 42px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #FBF8F7;
}
.numbers strong span { font-size: 0.42em; font-weight: 500; margin-left: 3px; }
.numbers__label {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #AB9CA0;
}

/* ---------- 교육센터 카드 ---------- */
.center {
  display: block;
  color: inherit;
  transition: transform .35s var(--ease);
}
.center:hover { transform: translateY(-4px); }
.center .photo-slot,
.center img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .35s var(--ease);
}
.center:hover .photo-slot,
.center:hover img { box-shadow: var(--shadow-md); }
.center__name {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.center__note { margin-top: 5px; font-size: 14.5px; color: var(--c-text-weak); }
.center__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--c-accent-dk);
}
.center__more span { transition: transform .25s var(--ease); }
.center:hover .center__more span { transform: translateX(4px); }

/* 센터 상세 — 제목 옆 국기 */
.flag--title {
  width: 30px;
  height: 20px;
  margin-right: 10px;
  vertical-align: -2px;
}

/* 센터 상세 — 마스터 강사 박스 */
.mboxes { display: grid; gap: 20px; }
.mbox {
  background: var(--c-surface);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
}
.mbox__photo,
.mbox .photo-slot--portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.mbox__body { padding: 26px 24px 28px; }
.mbox__name {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.mbox__name--empty { color: var(--c-text-weak); }
.mbox__field {
  margin-top: 6px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--c-text-weak);
}
.mbox__career {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--c-line-soft);
  display: grid;
  gap: 8px;
}
.mbox__career li {
  position: relative;
  padding-left: 14px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-text-mid);
}
.mbox__career li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 1px;
  background: var(--c-accent);
}
.mbox__career li.mbox__todo { color: var(--c-text-weak); }
.mbox__career li.mbox__todo::before { background: var(--c-line); }
.mbox__intro {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--c-line-soft);
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--c-text-mid);
}
.mbox__intro--empty { color: var(--c-text-weak); }

/* 센터 상세 — 스튜디오 사진 슬라이더 */
.pslider { position: relative; }
.pslider__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--c-bg-tint);
}
.pslider__track {
  display: flex;
  will-change: transform;
  transition: transform .5s var(--ease);
}
.pslider__slide { flex: 0 0 100%; margin: 0; min-width: 0; }
.pslider__slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.pslider__slide .photo-slot--wide { aspect-ratio: 16 / 9; }

/* 세로 사진은 잘리지 않게 전체를 보여준다 */
.pslider__slide--portrait img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: var(--c-bg-tint);
}
.pslider__slide .photo-slot { border-radius: 0; }
.pslider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
  font-size: 24px;
  line-height: 1;
  color: var(--c-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.pslider__nav:hover { background: #fff; color: var(--c-accent-dk); }
.pslider__nav--prev { left: 12px; }
.pslider__nav--next { right: 12px; }
.pslider__nav span { margin-top: -3px; }
.pslider__dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}
.pslider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: var(--c-line);
  transition: background-color .3s var(--ease), width .3s var(--ease);
}
.pslider__dot.is-active { width: 22px; border-radius: 999px; background: var(--c-accent); }

/* 센터 상세 — 오시는 길 */
.cinfo { margin-top: 24px; display: grid; gap: 14px; }
.cinfo > div { display: flex; gap: 18px; }
.cinfo dt {
  flex: 0 0 60px;
  font-size: 14px;
  color: #AB9CA0;
}
.cinfo dd {
  font-size: 15px;
  line-height: 1.7;
  color: #EBE0E2;
}
.cinfo dd a { border-bottom: 1px solid rgba(255, 255, 255, .3); }
.cinfo dd a:hover { border-color: var(--c-accent-lt); }
.cinfo__sub {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(251, 248, 247, .62);
}
.cinfo__actions {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

/* ---------- 교육 현장 갤러리 ---------- */
.gallery__grid { display: grid; gap: 12px; }
.gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--c-bg-tint);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.gallery__item:hover img { transform: scale(1.03); }
.gallery__grid .photo-slot { height: 100%; border-radius: 0; }
.gallery__more { margin-top: 12px; }
.gallery__more .gallery__item img { aspect-ratio: 16 / 9; }

/* ---------- Instructors ---------- */
.instructor {
  background: var(--c-surface);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.instructor:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.instructor__body { padding: 26px 24px 28px; }
.instructor__name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.instructor__role {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-accent-dk);
  background: var(--c-accent-bg);
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: -0.01em;
}
.instructor__field {
  margin-top: 6px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--c-text-weak);
}
.instructor__pending {
  display: inline-block;
  margin-top: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--c-bg-tint);
  font-size: 14px;
  color: var(--c-text-weak);
}
.instructor__bio {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--c-line-soft);
  display: grid;
  gap: 8px;
}
.instructor__bio li {
  position: relative;
  padding-left: 14px;
  font-size: 14px;
  color: var(--c-text-mid);
  line-height: 1.65;
}
.instructor__bio li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 1px;
  background: var(--c-accent);
}

/* ---------- Career ---------- */
.career__layout { display: grid; gap: 24px; }

.career__list { display: grid; gap: 4px; }
.career__list li {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.career__list li:last-child { border-bottom: 1px solid rgba(255, 255, 255, .12); }
.career__list h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #FBF8F7;
}
.career__list p {
  margin-top: 8px;
  font-size: 14.5px;
  line-height: 1.8;
  color: #AB9CA0;
}

.career__aside {
  background: var(--c-dark-soft);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
}
.career__aside-mark {
  width: 42px;
  height: auto;
  opacity: .9;
  margin-bottom: 16px;
}
.career__aside-title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #FBF8F7;
  margin-bottom: 20px;
}
.checklist { display: grid; gap: 12px; margin-bottom: 28px; }
.checklist li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  line-height: 1.65;
  color: #D4C7CA;
}
.checklist--light li { color: var(--c-text-mid); }
.checklist li strong { color: var(--c-accent-dk); font-weight: 600; }
.section__desc strong { color: var(--c-text); font-weight: 600; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 2px; top: 6px;
  width: 11px; height: 6px;
  border-left: 1.5px solid var(--c-accent);
  border-bottom: 1.5px solid var(--c-accent);
  transform: rotate(-45deg);
}

/* ---------- Contact ---------- */
.contact {
  background: var(--c-surface);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius-lg);
  padding: 40px 26px;
  display: grid;
  gap: 36px;
  box-shadow: var(--shadow-sm);
}
.contact__actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact__note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--c-text-weak);
}
.contact__info {
  display: grid;
  gap: 18px;
  align-content: start;
  padding-top: 30px;
  border-top: 1px solid var(--c-line-soft);
}
.contact__info > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  align-items: baseline;
}
.contact__info dt {
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: var(--c-text-weak);
}
.contact__info dd {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.contact__info a { border-bottom: 1px solid var(--c-line); padding-bottom: 1px; }
.contact__info a.ig-link { border-bottom: 0; padding-bottom: 0; }
.contact__info a:hover { color: var(--c-accent-dk); border-color: var(--c-accent); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-bg-tint);
  border-top: 1px solid var(--c-line);
  padding-block: 44px calc(44px + env(safe-area-inset-bottom, 0px));
}
.footer__inner { display: grid; gap: 26px; }
.footer__logo { width: 148px; height: auto; margin-bottom: 18px; }
.footer__brand-name { display: flex; align-items: baseline; gap: 7px; }
.footer__brand .logo__mark { font-size: 16px; }
.footer__tagline {
  margin-top: 10px;
  font-size: 14px;
  color: var(--c-text-weak);
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 14px;
  color: var(--c-text-mid);
}
.footer__nav a:hover { color: var(--c-accent-dk); }

/* 인스타그램 링크 */
.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color .25s var(--ease);
}
.ig-link:hover { color: var(--c-accent-dk); }
.ig-icon { width: 17px; height: 17px; flex: 0 0 auto; }
.ig-link--footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  color: var(--c-text-mid);
  transition: color .25s var(--ease), border-color .25s var(--ease), background-color .25s var(--ease);
}
.ig-link--footer:hover {
  color: #fff;
  border-color: var(--c-accent);
  background: var(--c-accent);
}
.ig-link--footer .ig-icon { width: 18px; height: 18px; }
.footer__biz {
  padding-top: 22px;
  border-top: 1px solid var(--c-line);
  display: grid;
  gap: 6px;
}
.footer__biz p {
  display: flex;
  flex-wrap: wrap;
  gap: 3px 18px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--c-text-mid);
}
.footer__biz strong { font-weight: 600; color: var(--c-text); }
.footer__biz a {
  border-bottom: 1px solid var(--c-line);
  padding-bottom: 1px;
}
.footer__biz a:hover { color: var(--c-accent-dk); border-color: var(--c-accent); }

.footer__copy {
  font-size: 13px;
  color: var(--c-text-weak);
  letter-spacing: 0.01em;
}

/* ---------- Floating CTA (mobile) ---------- */
.float-cta {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  background: var(--c-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(190, 10, 76, .30);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.float-cta.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   Breakpoints
   ========================================================================== */

@media (max-width: 479px) {
  /* 좁은 화면에서는 문의 버튼을 한 줄씩 꽉 차게 */
  .contact__actions .btn { flex: 1 1 100%; }

  /* 지표 3열이 좁아지므로 한 줄로 유지 */
  .hero__stats { gap: 10px; }
  .hero__stats strong { font-size: 17px; white-space: nowrap; }
  .hero__stats span { font-size: 13px; }
}

@media (min-width: 600px) {
  :root { --gutter: 28px; }
  .section { padding-block: 88px; }
  .grid--2,
  .grid--3,
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .numbers { gap: 12px; }
  .photo-slot--portrait { aspect-ratio: 3 / 4; max-height: none; }
  .media-placeholder--portrait,
  .instructor__photo { aspect-ratio: 3 / 4; max-height: none; }
  .contact { padding: 48px 40px; }
  .career__list li { padding: 28px 0; }
}

@media (min-width: 900px) {
  :root { --header-h: 76px; --gutter: 32px; }

  .section { padding-block: 112px; }
  .section__head { margin-bottom: 56px; }

  /* nav */
  .nav { display: flex; align-items: center; gap: 30px; }
  .nav__list {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14.5px;
    color: var(--c-text-mid);
  }
  .nav__list a {
    position: relative;
    padding-block: 6px;
    letter-spacing: -0.02em;
    transition: color .25s var(--ease);
  }
  .nav__list a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: var(--c-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
  }
  .nav__list a:hover { color: var(--c-text); }
  .nav__list a:hover::after,
  .nav__list a.is-active::after { transform: scaleX(1); }
  .nav__list a.is-active { color: var(--c-text); }
  .nav__cta { display: inline-flex; }
  .nav-toggle { display: none; }

  /* hero */
  .hero { padding-top: calc(var(--header-h) + 84px); padding-bottom: 110px; }
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 56px;
  }
  .hero__lead { font-size: 16.5px; }
  .hero__stats { gap: 24px; }
  .hero__photo { aspect-ratio: 4 / 5; }
  .hero__badge { left: 26px; bottom: 22px; }
  .hero__badge img { width: 150px; }

  /* 과정 상세 페이지 */
  .subhero { padding-top: calc(var(--header-h) + 64px); padding-bottom: 88px; }
  .subhero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 64px;
  }
  .factlist { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .step { padding: 30px 28px; }

  .module {
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
    padding: 32px 36px;
  }
  .module__meta { grid-template-columns: repeat(2, 1fr); gap: 10px 32px; }
  .price { grid-template-columns: 0.8fr 1.2fr; gap: 24px; align-items: stretch; }
  .price__main { padding: 40px 36px; }
  .price__body { padding: 36px 40px; }
  .price__body .checklist { grid-template-columns: repeat(2, 1fr); gap: 12px 28px; }
  .compare-table tbody td:first-child { font-weight: 600; }

  .form-embed iframe { height: 2100px; }
  .feebox { grid-template-columns: auto 1fr; gap: 32px; align-items: center; padding: 28px 32px; }

  .totalbox { padding: 28px 34px; }
  .hours__grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  .cta-inline {
    grid-template-columns: 1fr auto;
    gap: 32px;
    padding: 26px 34px;
  }
  .cta-band {
    grid-template-columns: 1.3fr 0.7fr;
    gap: 48px;
    align-items: center;
  }
  .cta-band__actions { justify-content: flex-end; }

  /* grids */
  .grid--3 { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .grid--4 { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  /* 큰 사진 1장 + 작은 사진 2장 */
  .gallery__grid {
    grid-template-columns: 1.55fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: clamp(400px, 40vw, 540px);
  }
  .gallery__item--lg { grid-row: span 2; }
  .gallery__item img { aspect-ratio: auto; }
  .gallery__grid .photo-slot { aspect-ratio: auto; }

  .mboxes--2 { grid-template-columns: repeat(2, 1fr); }
  .mboxes--3 { grid-template-columns: repeat(3, 1fr); }
  .mbox--wide { grid-template-columns: 340px 1fr; }
  .mboxes--1 .mbox { grid-template-columns: 340px 1fr; }
  .mboxes--1 .mbox__photo,
  .mboxes--1 .mbox .photo-slot--portrait {
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  }
  .cinfo__actions { grid-template-columns: repeat(3, 1fr); }

  .numbers { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .numbers li { padding: 32px 20px; }
  .pricebox { padding: 24px 26px; gap: 13px; }
  .split { grid-template-columns: 1fr 1fr; gap: 64px; }

  /* table -> real table */
  .schedule-table thead { display: table-header-group; }
  .schedule-table thead th {
    padding: 18px 22px;
    background: #FBF5F0;
    border-bottom: 1px solid var(--c-line);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--c-text-mid);
    white-space: nowrap;
  }
  .schedule-table tbody tr {
    display: table-row;
    padding: 0;
    transition: background-color .25s var(--ease);
  }
  .schedule-table tbody tr:hover { background: #FDF9F6; }
  .schedule-table tbody td {
    display: table-cell;
    padding: 20px 22px;
    border-bottom: 1px solid var(--c-line-soft);
    vertical-align: middle;
    white-space: nowrap;
  }
  .schedule-table tbody tr:last-child td { border-bottom: 0; }
  .schedule-table tbody td::before { content: none; }
  .schedule-table tbody td[data-label="과정"] { font-size: 15px; }
  .table-wrap { overflow-x: auto; }

  /* career */
  .career__layout {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 56px;
    align-items: start;
  }
  .career__aside { padding: 36px 32px; }

  /* contact */
  .contact {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    padding: 64px 56px;
    align-items: start;
  }
  .contact__info {
    padding-top: 0;
    padding-left: 40px;
    border-top: 0;
    border-left: 1px solid var(--c-line-soft);
    margin-top: 40px;
  }

  /* footer */
  .footer__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    row-gap: 24px;
  }
  .footer__biz,
  .footer__copy { grid-column: 1 / -1; }

  /* float CTA hidden on desktop (header CTA is visible) */
  .float-cta { display: none; }
}

@media (min-width: 1120px) {
  /* 사진 칸을 조금 넓히고 세로로 키워 왼쪽 글 높이에 맞춘다 */
  .hero__inner { grid-template-columns: 1fr 1.02fr; gap: 72px; }
  .hero__photo { aspect-ratio: 4 / 5; }
  .hero__badge { left: 30px; bottom: 26px; }
  .hero__badge img { width: 164px; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .float-cta, .hero__actions, .contact__actions { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  body { background: #fff; }
}
