@charset "utf-8";
/* ==========================================================================
   VisionHighway Partners — self-hosted static site
   원본(highway.ac / QUV 빌더)의 레이아웃·타이포그래피를 재현한 단일 스타일시트
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --navy:        #292f6b; /* 버튼 배경 */
  --navy-hover:  #424990;
  --navy-accent: #363e90; /* 소제목 / 강조 */
  --navy-deep:   #1d2257; /* 푸터 상단 */
  --ink:         #000000;
  --ink-soft:    #454545;
  --gray:        #777777;
  --gray-cap:    #676767; /* 팀 카드 캡션 배경 */
  --panel:       #f5f5f5;
  --panel-alt:   #f1f5f5;
  --panel-tab:   #e8e8e8; /* 홈 탭 우측 회색 박스 (원본 #fcfcfc 는 흰색과 구분이 안 됨) */
  --bar:         #eaeaea; /* 푸터 하단 바 */
  --label:       #d3d3d3;

  --font-en: "Montserrat", "Noto Sans KR", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-kr: "Noto Sans KR", "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-nav: "Barlow", "Noto Sans KR", sans-serif;

  /* 좌우 15px 패딩을 뺀 실제 콘텐츠 폭이 원본과 같은 1200px 이 되도록 1230px */
  --container: 1230px;
  --header-h: 120px;
  --header-h-m: 50px;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-en);
  font-weight: 400;
  color: var(--ink);
  background: #fff;
  line-height: 1.4;
  overflow-x: hidden;
}

img { max-width: 100%; border: 0; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

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

.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;
}

/* 스크롤 진입 애니메이션 (원본의 fade-in / t-to-b 재현) */
.reveal { opacity: 0; transform: translateY(24px); }
.reveal.is-visible { opacity: 1; transform: none; transition: opacity .8s ease, transform .8s ease; }

/* 이동 없는 순수 페이드 — 원본 QUV 의 .fade-in + .an-dr15 와 동일한 값 */
.reveal--fade { transform: none; }
.reveal--fade.is-visible {
  transition: none;
  animation: ani-fade 1.5s cubic-bezier(.445, .05, .55, .95) forwards;
}
@keyframes ani-fade {
  from { opacity: .1; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible { opacity: 1; transform: none; transition: none; }
  .reveal--fade.is-visible { animation: none; opacity: 1; }
}

/* --------------------------------------------------------------------------
   3. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

/* 정책 페이지처럼 배경이 밝은 페이지용 (원본은 흰 글씨가 흰 배경 위에 놓여 보이지 않음 → 배경 지정) */
.site-header.is-solid {
  position: relative;
  background: var(--navy-deep);
  border-bottom-color: rgba(255, 255, 255, .12);
}

.header-inner {
  max-width: var(--container);
  height: var(--header-h);
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img { height: 50px; width: auto; }
.site-logo .logo--mobile { display: none; }

.nav-pc { display: flex; align-items: center; gap: 38px; }
.nav-pc a {
  font-family: var(--font-nav);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  transition: opacity .2s ease;
}
.nav-pc a:hover { opacity: .65; }

/* 햄버거 */
.nav-toggle { display: none; width: 40px; height: 40px; position: relative; }
.nav-toggle span {
  position: absolute; left: 9px; right: 9px; height: 2px; background: #fff;
  transition: transform .28s ease, opacity .2s ease;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, .15);
}
.nav-mobile.is-open { display: block; }
.nav-mobile a {
  display: block;
  padding: 16px 20px;
  font-family: var(--font-nav);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

/* 히어로: 투명 + 흰 테두리 + 라운드 */
.btn--ghost {
  padding: 16px 60px;
  font-size: 14px;
  line-height: 21px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 30px;
}
.btn--ghost:hover { background: #fff; color: var(--navy); }

/* 솔리드 네이비 */
.btn--solid {
  background: var(--navy);
  color: #fff;
  border: 1px solid transparent;
  border-radius: 0;
}
.btn--solid:hover { background: var(--navy-hover); border-color: var(--navy-hover); }

.btn--lg { padding: 48px 27px; font-size: 15px; line-height: 22.5px; }
.btn--md { padding: 34px 16px; font-size: 13px; line-height: 19.5px; }

/* 점선 구분선 (원본 line_x_*.png 반복 배경) */
.dot-line {
  height: 15px;
  background: url("../img/line-dot-black.png") center center repeat-x;
}
.dot-line--gray { background-image: url("../img/line-dot-gray.png"); }

/* --------------------------------------------------------------------------
   5. Home — Hero (배경 동영상)
   -------------------------------------------------------------------------- */
.hero {
  --hero-h: 1000px;
  position: relative;
  height: var(--hero-h);
  overflow: hidden;
  /* 영상 로드 전/실패 시 대체 화면 (영상에서 뽑은 28KB 정지컷) */
  background: #101010 url("../img/hero-video-poster.jpg") center center / cover no-repeat;
}
.hero__video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
  /* 첫 프레임이 준비되기 전에는 .hero 의 배경(영상 첫 컷)이 그대로 보이도록 */
  opacity: 0;
  transition: opacity .35s ease;
}
.hero__video video.is-ready { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero__video video { transition: none; }
}
.hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-top: var(--header-h);
  padding-bottom: 82px;   /* 원본은 정중앙이 아니라 살짝 위쪽에 배치된다 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero__title {
  font-size: 64px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -1px;
  font-family: var(--font-kr);
}
.hero__title .en { font-family: var(--font-en); }
.hero__title .line { display: block; }
/* 원본과 동일한 검정 하이라이트 — 인라인 배경, 패딩 없음(높이는 폰트 메트릭이 결정) */
.hero .hl { background-color: #000; }
.hero__title .line + .line { margin-top: 23px; }
.hero__sub {
  margin-top: 42px;
  font-family: var(--font-kr);
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
}
.hero__cta { margin-top: 123px; }

/* --------------------------------------------------------------------------
   6. Home — ABOUT (고정 배경)
   -------------------------------------------------------------------------- */
/* 좌: 그라데이션 배경 + 텍스트 / 우: 전구 사진 — 화면을 절반씩 (원본과 동일) */
.home-about {
  min-height: 937px;
  display: flex;
  align-items: stretch;
  background: #fbf6f4 url("../img/home-about-bg.jpg") center center / cover no-repeat fixed;
}
.home-about__text {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-about__col {
  width: 50%;
  text-align: center;
}
.home-about__photo {
  flex: 1 1 50%;
  min-width: 0;
  background: url("../img/home-about-bg-m.jpg") 50% 50% / cover no-repeat;
}
.home-about__title {
  font-family: var(--font-en);
  font-size: 52px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -1px;
  color: var(--navy);
}
.home-about__body {
  margin-top: 80px;
  font-size: 20px;
  font-weight: 300;
  line-height: 32px;
  color: var(--ink);
}
.home-about__body b { font-weight: 700; }
.home-about__cta { margin-top: 120px; }

/* --------------------------------------------------------------------------
   7. Home — always be 카드 3종 (풀블리드)
   -------------------------------------------------------------------------- */
.value-cards { display: flex; flex-wrap: wrap; }
.value-card {
  position: relative;
  background-color: #33364a;   /* 이미지 로드 전 대체색 */
  flex: 1 1 33.3333%;
  height: 450px;
  overflow: hidden;
  display: block;
}
.value-card__bg {
  position: absolute;
  inset: 0;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform .6s ease;
}
.value-card:hover .value-card__bg { transform: scale(1.08); }
.value-card__caption {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.3;
  color: #fff;
  text-align: center;
}

/* --------------------------------------------------------------------------
   8. Home — 프로그램 탭
   -------------------------------------------------------------------------- */
.program-tabs { padding: 100px 0 160px; }

.tab-nav {
  display: flex;
  width: 100%;
}
.tab-nav__btn {
  flex: 1 1 0;
  padding: 10px 15px;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 400;
  color: rgba(40, 44, 42, .5);
  border-bottom: 2px solid rgba(40, 44, 42, .5);
  text-align: left;
  transition: color .2s ease, border-color .2s ease;
}
.tab-nav__btn[aria-selected="true"] {
  color: var(--navy-accent);
  border-bottom-color: var(--navy-accent);
}

.tab-panel { display: none; }
.tab-panel.is-active { display: flex; align-items: stretch; flex-wrap: wrap; }

.tab-visual {
  position: relative;
  background-color: #3c393b;   /* 이미지 로드 전 대체색 */
  flex: 0 0 58.3333%;
  max-width: 58.3333%;
  min-height: 510px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: 57% 52%;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  color: #fff;
  padding: 30px;
}
/* 사진을 어둡게 깔아 이메일 주소 가독성 확보 */
.tab-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .42);
  pointer-events: none;
}
.tab-visual dl { position: relative; z-index: 1; margin: 0; }
.tab-visual dt {
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
  color: var(--label);
}
.tab-visual dd {
  margin: 0 0 35px;
  font-size: 36px;
  font-weight: 300;
  line-height: 30px;
  color: #fff;
  word-break: break-all;
}
.tab-visual dd:last-child { margin-bottom: 0; }

.tab-info {
  flex: 0 0 41.6667%;
  max-width: 41.6667%;
  min-height: 510px;
  background: var(--panel-tab);
  display: flex;
  align-items: center;
}
.tab-info__inner {
  width: 66.6667%;
  margin: 0 auto;
  padding: 0 20px;
}
.tab-info .dot-line { margin-bottom: 35px; }
.tab-info__en {
  font-family: var(--font-en);
  font-size: 28px;
  line-height: 33px;
  font-weight: 300;
}
.tab-info__en b { font-weight: 700; }
.tab-info__desc {
  margin-top: 44px;
  font-size: 14px;
  font-weight: 300;
  line-height: 19px;
}
.tab-info__cta { margin-top: 68px; }

/* --------------------------------------------------------------------------
   9. 서브 페이지 히어로
   -------------------------------------------------------------------------- */
.page-hero {
  height: 574px;
  /* 이미지 디코드 전 흰 화면이 비치지 않도록 (해당 사진들의 평균색) */
  background-color: #1b181d;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}
.page-hero h1 {
  position: relative;
  z-index: 1;
  padding-top: var(--header-h);
  font-family: var(--font-en);
  font-size: 42px;
  font-weight: 700;
  color: #fff;
}

/* 밝은 부분이 있는 배너용 — 제목 뒤만 어둡게 해서 사진은 살리고 가독성은 확보 */
.page-hero--dim { position: relative; }
.page-hero--dim::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 45% 60% at 50% 58%,
              rgba(0, 0, 0, .66) 0%,
              rgba(0, 0, 0, .46) 55%,
              rgba(0, 0, 0, .22) 100%);
  pointer-events: none;
}

.section-title {
  font-family: var(--font-kr);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 36px;
  color: var(--ink-soft);
  padding: 70px 0 0 30px;
  margin-bottom: 94px;
}

.sub-title {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  color: var(--navy-accent);
}

/* --------------------------------------------------------------------------
   10. ABOUT 페이지
   -------------------------------------------------------------------------- */
.about-intro {
  min-height: 450px;
  display: flex;
  align-items: stretch;
  color: #fff;
  background: #727b7c url("../img/about-intro.jpg") 48% 53.5% / cover no-repeat;
}
/* 텍스트 뒤 반투명 검정 패널 (원본 rgba(0,0,0,.4), 폭 7/12) */
.about-intro__panel {
  flex: 0 0 58.3333%;
  max-width: 58.3333%;
  padding: 40px 50px;
  background: rgba(0, 0, 0, .4);
  display: flex;
  align-items: center;
}
.about-intro__lead {
  font-family: var(--font-kr);
  font-size: 28px;
  font-weight: 300;
  line-height: 33px;
}
.about-intro__lead b { font-weight: 700; }
.about-intro__body {
  margin-top: 44px;
  font-size: 14px;
  font-weight: 300;
  line-height: 19px;
}

.vision { padding: 143px 0 0; }
.vision__grid { display: flex; flex-wrap: wrap; margin-top: 33px; }
.vision__card {
  position: relative;
  background-color: #7d6f63;   /* 이미지 로드 전 대체색 */
  flex: 1 1 33.3333%;
  height: 280px;
  overflow: hidden;
}
.vision__bg {
  position: absolute; inset: 0;
  background-position: 50% 50%;
  background-size: cover;
  transition: transform .6s ease;
}
.vision__card:hover .vision__bg { transform: scale(1.08); }
.vision__cap {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff; text-align: center;
}
.vision__cap strong {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
}
.vision__cap span {
  margin-top: 10px;
  font-family: var(--font-kr);
  font-size: 16px;
  font-weight: 400;
}

.team { padding: 147px 0 0; }
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 39px;
}
/* 직함 줄 수가 달라도 회색 박스 높이가 어긋나지 않도록 */
.team__card { overflow: hidden; background: #fff; display: flex; flex-direction: column; }
.team__photo {
  flex: 0 0 auto;
  height: 360px;
  background-color: #eaeaea;   /* 이미지 로드 전 대체색 */
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform .6s ease;
}
.team__card:hover .team__photo { transform: scale(1.06); }
.team__meta {
  /* 사진이 hover 로 확대될 때 이 박스 뒤로 지나가도록 위에 쌓는다 */
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  background: var(--gray-cap);
  color: #fff;
  padding: 16px 14px 20px;
}
.team__meta strong {
  display: block;
  font-family: var(--font-kr);
  font-size: 20px;
  font-weight: 400;
}
.team__meta span {
  display: block;
  margin-top: 8px;
  font-family: var(--font-kr);
  font-size: 14px;
  font-weight: 400;
  white-space: pre-line;
}

.history { padding: 121px 0 63px; }
.history__row { display: flex; flex-wrap: wrap; }
.history__label { flex: 0 0 25%; max-width: 25%; text-align: center; }
.history__list { flex: 0 0 75%; max-width: 75%; }
.history__year {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 28px 0;
}
.history__year > dt {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 30px;
  font-family: var(--font-kr);
  font-size: 24px;
  font-weight: 300;
  line-height: 24px;
  color: var(--gray);
}
.history__year > dd {
  flex: 0 0 75%;
  max-width: 75%;
  margin: 0;
  font-family: var(--font-kr);
}
.history__year > dd p {
  font-size: 16px;
  font-weight: 300;
  line-height: 25px;
}
.history__year > dd b {
  display: inline-block;
  min-width: 34px;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-accent);
}

/* --------------------------------------------------------------------------
   11. PROGRAM 페이지
   -------------------------------------------------------------------------- */
.prog-list { padding-bottom: 100px; }

.prog-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 145px;
}
.prog-row:last-child { margin-bottom: 0; }
.prog-row--reverse { flex-direction: row-reverse; }

.prog-row__img {
  flex: 0 0 41.6667%;
  background-color: #8a7669;   /* 이미지 로드 전 대체색 */
  max-width: 41.6667%;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 430px;
}
.prog-row__panel {
  flex: 0 0 58.3333%;
  max-width: 58.3333%;
  margin-top: 74px;
  min-height: 356px;
  padding: 100px 30px;
  background: var(--panel);
}
.prog-row--reverse .prog-row__panel {
  background: var(--panel-alt);
  text-align: right;
}

/* 행마다 이미지 높이가 달라 패널 아래 끝을 이미지와 맞춘다 (원본과 동일) */
.prog-row--r2 .prog-row__img { min-height: 337px; }
.prog-row--r2 .prog-row__panel { margin-top: 63px; min-height: 274px; padding: 68px 30px; }
.prog-row--r3 .prog-row__img { min-height: 406px; }
.prog-row--r3 .prog-row__panel { margin-top: 50px; }
.prog-row__en {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}
.prog-row__kr {
  margin-top: 4px;
  font-family: var(--font-kr);
  font-size: 28px;
  font-weight: 300;
  line-height: 33px;
}
.prog-row__desc {
  margin-top: 44px;
  font-size: 14px;
  font-weight: 300;
  line-height: 19px;
}

/* --------------------------------------------------------------------------
   12. APPLY 페이지
   -------------------------------------------------------------------------- */
.apply-block {
  padding: 120px 0 271px;
  text-align: center;
}
.apply-block h2 {
  font-family: var(--font-kr);
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
}
.apply-block p {
  margin-top: 46px;
  font-size: 18px;
  font-weight: 400;
  line-height: 31px;
}
.apply-block p + p { margin-top: 19px; }
.apply-block .email {
  font-weight: 700;
  color: #0000ff;
}

/* --------------------------------------------------------------------------
   13. 약관 / 개인정보 페이지
   -------------------------------------------------------------------------- */
.policy-page { background: #f9f9f9; padding: 40px 0 80px; }
.policy-page__inner { max-width: 800px; margin: 0 auto; padding: 0 15px; }
.policy-page h1 {
  font-family: var(--font-kr);
  font-size: 24px;
  font-weight: 400;
  padding: 10px 5px 20px;
}
.policy-page__body {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 24px;
  max-height: 900px;
  overflow-y: auto;
  font-family: var(--font-kr);
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-wrap;
  word-break: keep-all;
}

/* --------------------------------------------------------------------------
   14. 404
   -------------------------------------------------------------------------- */
.notfound {
  min-height: 70vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 160px 20px 100px;
}
.notfound h1 { font-family: var(--font-en); font-size: 72px; font-weight: 700; color: var(--navy-accent); }
.notfound p { margin: 20px 0 40px; font-family: var(--font-kr); font-size: 16px; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.site-footer__top { background: var(--navy-deep); }
.site-footer__top .container {
  /* 원본은 1200px 콘텐츠를 0.89 배로 축소해 렌더링한다 → 같은 결과를 직접 지정 */
  max-width: 1099px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.site-footer__info {
  font-family: var(--font-kr);
  font-size: 14.25px;
  line-height: 22.3px;
  color: #fff;
}
.site-footer__info b { font-weight: 700; }
.site-footer__mark img { width: 178px; height: auto; }

.site-footer__bottom { background: var(--bar); }
/* 원본은 여기 아래에 60px 짜리 빈 스페이서가 있었다 → 제거하고 글자 높이에만 맞춘다 */
.site-footer__bottom .container {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-family: var(--font-kr);
  font-size: 12px;
}
.site-footer__links { font-weight: 700; }
.site-footer__links a:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   16. 반응형
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero__title { font-size: 52px; line-height: 52px; }
  .home-about__col { width: 76%; }
  .home-about__title { font-size: 44px; }
  .value-card__caption { font-size: 38px; }
  .tab-visual dd { font-size: 28px; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .prog-row__panel { padding: 60px 30px; }
}

@media (max-width: 767px) {
  :root { --header-h: 50px; }

  /* ---- 헤더 ---- */
  .site-header { position: relative; background: #000; border-bottom: 0; }
  .site-header.is-solid { background: #000; }
  .header-inner { height: var(--header-h-m); }
  .site-logo img { height: 27px; }
  .site-logo .logo--pc { display: none; }
  .site-logo .logo--mobile { display: block; }
  .nav-pc { display: none; }
  .nav-toggle { display: block; }

  /* ---- 히어로 (모바일에서도 동영상 재생) ---- */
  .hero { --hero-h: 700px; }
  .hero__inner { padding-top: 0; padding-bottom: 0; }
  .hero__title { font-size: 34px; line-height: 40px; }
  .hero__title .line + .line { margin-top: 12px; }
  .hero__sub { margin-top: 40px; font-size: 15px; }
  .hero__cta { margin-top: 60px; }
  .btn--ghost { padding: 14px 40px; }

  /* ---- 홈 ABOUT ---- */
  .home-about {
    display: block;
    min-height: 0;
    padding: 0;
    background-attachment: scroll;
    background-position: 60% 50%;
  }
  .home-about__text { display: block; padding: 70px 15px; }
  .home-about__col { width: 100%; }
  .home-about__photo { height: 420px; }
  .home-about__title { font-size: 34px; line-height: 34px; }
  .home-about__body { margin-top: 40px; font-size: 15px; line-height: 26px; }
  .home-about__cta { margin-top: 55px; }
  .btn--lg { padding: 24px 22px; font-size: 13px; }

  /* ---- 카드 ---- */
  .value-card { flex: 1 1 100%; height: 400px; }
  .value-card__caption { font-size: 40px; }

  /* ---- 탭 ---- */
  .program-tabs { padding: 60px 0 80px; }
  .tab-nav__btn { padding: 10px 6px; font-size: 13px; text-align: center; }
  .tab-visual,
  .tab-info { flex: 0 0 100%; max-width: 100%; }
  .tab-visual { min-height: 510px; }
  .tab-info { min-height: 0; padding: 20px 0; }
  .tab-info__inner { width: 100%; padding: 0 25px; }
  .tab-info__cta { margin-top: 40px; }
  .tab-visual dt { font-size: 16px; }
  .tab-visual dd { font-size: 24px; margin-bottom: 26px; }

  /* ---- 서브 히어로 ---- */
  .page-hero { height: 320px; }
  .page-hero h1 { padding-top: 0; font-size: 32px; }
  .section-title { font-size: 26px; line-height: 30px; padding: 50px 0 0; margin-bottom: 40px; }
  .history__label { text-align: left; }

  /* ---- ABOUT ---- */
  .about-intro { min-height: 0; }
  .about-intro__panel { flex: 0 0 100%; max-width: 100%; padding: 60px 25px; }
  .about-intro__lead { font-size: 21px; line-height: 30px; }
  .about-intro__body { margin-top: 30px; }
  .vision, .team { padding-top: 65px; }
  .vision__grid, .team__grid { margin-top: 35px; }
  .vision__card { flex: 1 1 100%; height: 240px; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .team__photo { height: 260px; }
  .team__meta strong { font-size: 16px; }
  .team__meta span { font-size: 12px; }
  .history { padding: 65px 0 80px; }
  .history__label, .history__list { flex: 0 0 100%; max-width: 100%; }
  .history__label { margin-bottom: 20px; }
  .history__year { padding: 20px 0; }
  .history__year > dt { flex: 0 0 100%; max-width: 100%; padding: 0 0 10px; }
  .history__year > dd { flex: 0 0 100%; max-width: 100%; }

  /* ---- PROGRAM ---- */
  .prog-list { padding-bottom: 70px; }
  .prog-row, .prog-row--reverse { flex-direction: column; margin-bottom: 45px; }
  .prog-row__img,
  .prog-row--r2 .prog-row__img,
  .prog-row--r3 .prog-row__img { flex: 0 0 auto; max-width: 100%; width: 100%; min-height: 260px; }
  .prog-row__panel,
  .prog-row--r2 .prog-row__panel,
  .prog-row--r3 .prog-row__panel {
    flex: 0 0 auto; max-width: 100%; width: 100%;
    margin-top: 0; min-height: 0; padding: 45px 25px; text-align: left;
  }
  .prog-row--reverse .prog-row__panel { text-align: left; }
  .prog-row__kr { font-size: 22px; }
  .prog-row__desc { margin-top: 28px; }

  /* ---- APPLY ---- */
  .apply-block { padding: 65px 0 80px; }
  .apply-block h2 { font-size: 24px; line-height: 34px; }
  .apply-block p { margin-top: 30px; font-size: 15px; line-height: 27px; }

  /* ---- 푸터 ---- */
  .site-footer__top .container {
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
    padding-top: 35px;
    padding-bottom: 35px;
    gap: 20px;
  }
  .site-footer__info { font-size: 13px; line-height: 22px; }
  .site-footer__mark img { width: 150px; }
  .site-footer__bottom .container {
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
    gap: 8px;
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 11px;
  }

  .notfound { padding: 90px 20px 70px; }
  .notfound h1 { font-size: 54px; }
}

@media (max-width: 479px) {
  .hero__title { font-size: 28px; line-height: 34px; }
  .value-card__caption { font-size: 32px; }
  .team__grid { grid-template-columns: 1fr; }
  .team__photo { height: 300px; }
}
