:root {
  --main: #3f5e8c;
  --main-soft: #eaf0f8;
  --sub: #e2b16e;
  --sub-soft: #fbf1e3;
  --bg: #fafcff;
  --bg-soft: #f2f6fb;
  --text: #233049;
  --muted: #657089;
  --border: #dbe3f0;
  --shadow: 0 22px 56px rgba(63, 94, 140, 0.1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, var(--sub-soft) 0%, transparent 26%),
    radial-gradient(circle at 82% 10%, var(--main-soft) 0%, transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, #ffffff 100%);
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: var(--content-width);
  margin: 0 auto;
  padding: 34px 0 22px;
  background: transparent;
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.brand__eyebrow,
.kicker {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sub);
  font-size: 0.72rem;
  font-weight: 700;
}

.kicker {
  margin: 0 0 16px;
}

.brand strong {
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Segoe UI", sans-serif;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  font-weight: 800;
  color: var(--main);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 20px rgba(30, 40, 70, 0.05);
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.96rem;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-current {
  background: var(--main-soft);
  color: var(--main);
}

.nav-toggle {
  display: none;
  position: absolute;
  top: 50%;
  right: 0;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--main);
  transform: translateY(-50%);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

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

.section {
  width: var(--content-width);
  margin: 0 auto;
}

.page-main {
  padding-top: 18px;
  padding-bottom: 120px;
}

.home-clean {
  display: grid;
  gap: 26px;
  padding-top: 56px;
}

.home-clean__intro {
  max-width: 980px;
  margin: 0 auto;
  padding: 10px 0 0;
  text-align: center;
}

.home-clean__intro h1 {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Segoe UI", sans-serif;
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.home-clean__intro h1 span {
  color: var(--main);
}

.home-clean__intro .hero__actions {
  justify-content: center;
  margin-top: 28px;
}

.facility-slider {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
}

.facility-slider__viewport {
  position: relative;
  min-height: 620px;
}

.facility-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}

.facility-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.facility-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 28, 26, 0.08), rgba(20, 28, 26, 0.42));
}

.facility-slide figcaption {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  z-index: 1;
  color: #fff;
}

.facility-slide figcaption span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
}

.facility-slide figcaption strong {
  display: block;
  max-width: 560px;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.22;
}

.facility-slider__controls {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.facility-slider__arrow,
.facility-slider__dot {
  border: none;
  cursor: pointer;
}

.facility-slider__arrow {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--main);
  font-size: 1.5rem;
  line-height: 1;
}

.facility-slider__dots {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
}

.facility-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(77, 119, 97, 0.28);
}

.facility-slider__dot.is-active {
  width: 26px;
  border-radius: 999px;
  background: var(--main);
}

.page-hero {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: 42px 0 16px;
}

.page-hero--compact {
  min-height: auto;
  padding-top: 52px;
}

.page-hero__copy h1 {
  margin: 0;
  color: var(--main);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Segoe UI", sans-serif;
  font-size: clamp(2.05rem, 5vw, 3.7rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-hero__copy h1 span {
  color: var(--sub);
}

.page-hero__copy--centered {
  text-align: center;
}

.director-page {
  padding-bottom: 120px;
}

.director-hero {
  padding-top: 56px;
  padding-bottom: 34px;
  text-align: center;
}

.director-hero__copy {
  max-width: 840px;
  margin: 0 auto;
}

.director-hero h1 {
  margin: 0;
  color: var(--main);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Segoe UI", sans-serif;
  font-size: clamp(2.3rem, 4.8vw, 3.8rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.director-feature,
.director-panel,
.director-story__image,
.director-highlight {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.director-feature {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  margin-top: 10px;
  padding: clamp(26px, 4vw, 44px);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #ffffff 0%, rgba(237, 245, 240, 0.45) 100%);
}

.director-feature__image {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
}

.director-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.director-feature__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 28px;
  padding-top: 10px;
}

.director-feature__eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--sub);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.director-feature__content h2 {
  margin: 0;
  color: var(--main);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Segoe UI", sans-serif;
  font-size: clamp(2.45rem, 5.2vw, 4rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.director-feature__role {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.14rem;
  font-weight: 500;
  line-height: 1.75;
}

.director-feature__quote {
  padding: 18px 22px;
  border: 1px solid rgba(216, 176, 124, 0.24);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(251, 242, 231, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.director-feature__quote p {
  margin: 0;
  color: var(--text);
  font-size: 1.03rem;
  line-height: 1.85;
  font-style: italic;
  font-weight: 500;
}

.director-feature__body {
  max-width: 560px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.director-feature__lead,
.director-panel p,
.director-story__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.9;
}

.director-feature__body p + p,
.director-panel p + p,
.director-story__copy p + p {
  margin-top: 16px;
}

.director-metric-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.director-metric {
  padding: 18px 18px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
}

.director-metric strong {
  display: block;
  margin-bottom: 8px;
  color: var(--main);
  font-size: 1.1rem;
  font-weight: 800;
}

.director-metric span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.director-bento {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 24px;
  align-items: start;
  padding-top: 110px;
}

.director-panel {
  min-height: auto;
  padding: clamp(24px, 4vw, 34px);
  border-radius: var(--radius-xl);
  background: #fff;
}

.director-panel--wide {
  grid-column: span 2;
  background: linear-gradient(180deg, #ffffff 0%, var(--main-soft) 140%);
}

.director-panel--career {
  grid-column: span 2;
}

.director-panel--accent {
  align-self: center;
  background: linear-gradient(180deg, var(--sub-soft) 0%, #ffffff 100%);
}

.director-panel--soft {
  position: relative;
  align-self: center;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-soft) 100%);
}

.director-panel--soft::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 176, 124, 0.18), rgba(216, 176, 124, 0));
}

.director-panel__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.director-panel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--main-soft);
  color: var(--main);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.director-panel h3 {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Segoe UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

.director-panel__note {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(77, 119, 97, 0.14);
}

.director-panel__note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--main);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.director-panel__note p {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.72;
}

.director-link-list,
.director-highlight ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.director-link-list {
  display: grid;
  gap: 18px;
}

.director-link-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(39, 54, 47, 0.08);
}

.director-link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  transition: color 160ms ease, transform 160ms ease;
}

.director-link-list a:hover,
.director-link-list a:focus-visible {
  color: var(--main);
  transform: translateX(2px);
}

.director-link-list a span:last-child {
  color: var(--main);
}

.director-career-list,
.director-curriculum-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.director-career-list li,
.director-curriculum-list li {
  position: relative;
  padding-left: 16px;
  color: var(--text);
  line-height: 1.72;
}

.director-career-list li::before,
.director-curriculum-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sub);
}

.director-career-list strong {
  margin-right: 10px;
  color: var(--main);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.director-career-list span {
  color: var(--text);
  line-height: 1.72;
}

.director-curriculum-list strong {
  margin-right: 10px;
  color: var(--main);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.director-curriculum-list span {
  color: var(--text);
  line-height: 1.72;
}

.director-story {
  display: block;
  padding-top: 110px;
}

.director-story__copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 40px;
  max-width: none;
  align-items: start;
}

.director-story__copy > .kicker,
.director-story__copy > h2,
.director-highlight,
.director-signoff {
  grid-column: 1 / -1;
}

.director-story__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 36px;
  grid-column: 1 / -1;
}

.director-story__copy h2 {
  margin: 0 0 22px;
  color: var(--main);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Segoe UI", sans-serif;
  font-size: clamp(1.9rem, 4.1vw, 3rem);
  line-height: 1.16;
  font-weight: 800;
}

.director-highlight {
  margin-top: 28px;
  padding: 26px 28px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  border-left: 4px solid var(--main);
  background: var(--main-soft);
}

.director-highlight strong {
  display: block;
  margin-bottom: 14px;
  color: var(--main);
  font-size: 1rem;
  font-weight: 800;
}

.director-highlight li {
  color: var(--text);
  line-height: 1.7;
}

.director-highlight li + li {
  margin-top: 8px;
}

.director-signoff {
  color: var(--text) !important;
  font-weight: 500;
}

.page-hero--single {
  grid-template-columns: 1fr;
  justify-items: center;
  padding-bottom: 8px;
}

.page-hero--single .page-hero__copy {
  width: 100%;
  max-width: 920px;
}

.hero__lead,
.intro-strip p,
.page-link-card p,
.about-card p,
.program-card p,
.bullet-card p,
.campus p,
.contact p,
.detail-panel p,
.profile-card__copy p,
.page-hero__card p,
.timeline-row p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 1rem;
}

.hero__lead {
  max-width: 640px;
  margin-top: 22px;
}

.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--main);
  font-weight: 700;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(30, 40, 70, 0.08);
}

.button--primary {
  background: var(--main);
  color: #fff;
}

.button--ghost {
  background: #fff;
  border-color: var(--sub);
  color: var(--sub);
}

.page-hero__side {
  display: flex;
}

.page-hero__card,
.page-hero__image,
.intro-strip,
.feature-band__content,
.contact__panel,
.profile-card,
.page-link-card,
.detail-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
}

.page-hero__card {
  width: 100%;
  padding: clamp(24px, 4vw, 34px);
}

.page-hero__label {
  display: block;
  margin-bottom: 16px;
  color: var(--sub);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}

.page-hero__card strong {
  display: block;
  color: var(--main);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  line-height: 1.24;
  font-weight: 800;
}

.page-hero__facts {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.page-hero__facts div {
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.page-hero__facts span {
  display: block;
  margin-bottom: 8px;
  color: var(--sub);
  font-size: 0.84rem;
  font-weight: 700;
}

.page-hero__facts p {
  margin: 0;
  color: var(--text);
}

.page-hero__image {
  width: 100%;
  overflow: hidden;
}

.page-hero__image img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.intro-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: clamp(26px, 4vw, 40px);
  margin-top: 18px;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head h2,
.intro-strip h2,
.feature-band h2,
.campus h2,
.contact h2,
.profile h2,
.detail-section h2 {
  margin: 0;
  color: var(--main);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Segoe UI", sans-serif;
  font-size: clamp(1.75rem, 3.8vw, 2.7rem);
  line-height: 1.18;
  font-weight: 800;
}

.page-links,
.detail-section,
.about,
.programs,
.feature-band,
.campus,
.gallery,
.profile,
.contact {
  padding-top: 110px;
}

.page-link-grid,
.about-grid,
.program-grid,
.bullet-grid,
.detail-grid,
.step-grid,
.channel-grid,
.profile-facts,
.campus-points,
.contact__details {
  display: grid;
  gap: 20px;
}

.page-link-grid,
.about-grid,
.detail-grid,
.step-grid,
.channel-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.program-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-link-card,
.about-card,
.program-card,
.bullet-card {
  padding: 28px;
}

.program-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
}

.page-link-card__eyebrow,
.card-index,
.program-card__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--main-soft);
  color: var(--main);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.page-link-card h3,
.about-card h3,
.program-card h3,
.detail-panel h3 {
  margin: 18px 0 12px;
  color: var(--main);
  font-size: 1.32rem;
}

.program-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.program-card__actions {
  margin-top: 24px;
}

.program-card__actions .button {
  width: 100%;
}

.program-card__price {
  margin: 14px 0 0;
  color: var(--main);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.3;
}

.program-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.program-card li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sub);
}

.program-grid--lessons {
  align-items: stretch;
}

.program-card--featured {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(220px, 0.82fr);
  gap: 30px;
  grid-column: span 2;
  padding: 34px;
  border-color: rgba(77, 119, 97, 0.2);
  background: linear-gradient(135deg, var(--main) 0%, #5b8b70 100%);
  color: #fff;
}

.program-card__eyebrow--featured {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.program-card--featured h3,
.program-card--featured p,
.program-card--featured li {
  color: #fff;
}

.program-card--featured h3 {
  margin-top: 20px;
  color: #fff;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

.program-card--featured__lead {
  max-width: 560px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82) !important;
  line-height: 1.86;
}

.program-checklist {
  display: grid;
  gap: 12px;
  margin-top: 24px !important;
}

.program-checklist li::before {
  top: 10px;
  background: rgba(255, 255, 255, 0.82);
}

.program-card--featured__aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
}

.program-card--featured__aside strong {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.program-card--featured__button {
  min-width: 200px;
  border-color: rgba(255, 255, 255, 0.2);
  background: #fff;
  color: var(--main);
}

.program-guide .feature-band__content {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
}

.program-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at right bottom, rgba(216, 176, 124, 0.14), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
  box-shadow: var(--shadow);
}

.program-cta__copy h2 {
  margin: 0;
  color: var(--main);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Segoe UI", sans-serif;
  font-size: clamp(1.75rem, 3.8vw, 2.7rem);
  line-height: 1.18;
  font-weight: 800;
}

.program-cta__copy p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.program-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.feature-band__content,
.contact__panel,
.profile-card {
  padding: clamp(24px, 4vw, 40px);
}

.bullet-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.bullet-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
}

.bullet-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--main);
  font-size: 1.1rem;
}

.campus {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 28px;
  align-items: center;
}

.campus__visual {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.campus__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campus-points,
.contact__details,
.profile-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.campus-points div,
.contact__details div,
.profile-facts div,
.timeline-row,
.tab-card {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-soft);
}

.campus-points strong,
.contact__details strong,
.profile-facts span,
.timeline-row span,
.tab-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--main);
  font-size: 1rem;
}

.campus-points span,
.contact__details span,
.profile-facts p,
.timeline-row p,
.tab-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-channel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.contact-channel-list a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--main);
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.contact-channel-list a:hover,
.contact-channel-list a:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(77, 119, 97, 0.08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  min-height: 250px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.gallery-item--large {
  grid-row: span 2;
  min-height: 520px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-card {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(26px, 4vw, 40px);
}

.profile-top {
  max-width: 760px;
  margin: 0 auto 28px;
}

.profile-card__visual {
  display: flex;
}

.profile-emblem {
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: 100%;
  min-height: 100%;
  padding: clamp(28px, 5vw, 42px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, var(--main-soft) 0%, #ffffff 100%);
  border: 1px solid var(--border);
}

.profile-emblem__kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--sub);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.profile-emblem strong {
  display: block;
  color: var(--main);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Segoe UI", sans-serif;
  font-size: clamp(1.95rem, 4.2vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
}

.profile-emblem p {
  max-width: 280px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.profile-emblem__photo {
  width: min(100%, 300px);
  margin: 24px auto 0;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 22px 44px rgba(30, 40, 70, 0.12);
}

.profile-emblem--featured {
  min-height: auto;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.profile-emblem--featured p {
  max-width: none;
}

.contact {
  padding-bottom: 20px;
}

.products-page {
  padding-bottom: 120px;
}

.products-hero {
  padding-top: 56px;
  text-align: center;
}

.products-hero__copy {
  max-width: 900px;
  margin: 0 auto;
}

.products-hero h1 {
  margin: 0;
  color: var(--main);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Segoe UI", sans-serif;
  font-size: clamp(2.3rem, 4.9vw, 3.9rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.products-hero__lead {
  max-width: 760px;
  margin: 22px auto 0;
}

.products-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.products-summary__card {
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.products-summary__card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--main);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  line-height: 1.2;
  font-weight: 800;
}

.products-summary__card span {
  display: block;
  color: var(--muted);
  line-height: 1.7;
}

.products-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.products-filter__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--main);
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.products-filter__link strong {
  color: var(--sub);
  font-size: 0.86rem;
  font-weight: 800;
}

.products-filter__link:hover,
.products-filter__link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(77, 119, 97, 0.24);
  box-shadow: 0 14px 28px rgba(77, 119, 97, 0.08);
}

.products-filter__button {
  display: inline-flex;
  appearance: none;
  -webkit-appearance: none;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(238, 238, 234, 0.96);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.products-filter__button:focus {
  outline: none;
}

.products-filter__button:hover,
.products-filter__button:focus-visible {
  transform: translateY(-1px);
  background: rgba(232, 232, 228, 1);
  color: var(--main);
}

.products-filter__button.is-active {
  background: var(--main);
  color: #fff;
  border-color: var(--main);
  box-shadow: 0 14px 28px rgba(77, 119, 97, 0.14);
}

.products-shell {
  padding-top: 86px;
}

.products-group.is-hidden {
  display: none;
}

.products-group + .products-group {
  margin-top: 82px;
}

.products-group__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.products-group__eyebrow {
  margin: 0 0 8px;
  color: var(--sub);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.products-group__head h2 {
  margin: 0;
  color: var(--main);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Segoe UI", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.16;
  font-weight: 800;
}

.products-group__head span {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
}

.products-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.products-pagination__numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.products-pagination__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.products-pagination__button:hover,
.products-pagination__button:focus-visible {
  transform: translateY(-1px);
  background: rgba(238, 238, 234, 0.96);
  color: var(--main);
  box-shadow: 0 12px 24px rgba(77, 119, 97, 0.08);
}

.products-pagination__button.is-active {
  background: var(--main);
  color: #fff;
  border-color: var(--main);
  box-shadow: 0 14px 28px rgba(77, 119, 97, 0.14);
}

.products-pagination__button:disabled {
  opacity: 0.42;
  cursor: default;
  pointer-events: none;
  box-shadow: none;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-card__visual {
  display: block;
  aspect-ratio: 1 / 0.74;
  overflow: hidden;
  background: var(--bg-soft);
}

.product-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.product-card:hover .product-card__visual img,
.product-card:focus-within .product-card__visual img {
  transform: scale(1.03);
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 9px;
  padding: 14px;
}

.product-card__category {
  margin: 0;
  color: var(--sub);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.38;
  font-weight: 800;
}

.product-card__summary {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.58;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.product-card__price {
  color: var(--main);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 800;
}

.product-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--main);
  font-size: 0.8rem;
  font-weight: 700;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.product-card__button:hover,
.product-card__button:focus-visible {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 12px 22px rgba(77, 119, 97, 0.08);
}

.contact__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.site-footer {
  width: var(--content-width);
  margin: 0 auto;
  padding: 42px 0 34px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
  align-items: start;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.site-footer__column {
  min-height: 188px;
  padding: 34px 32px 34px;
}

.site-footer__column--brand {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
}

.site-footer__column + .site-footer__column {
  border-left: 1px solid var(--border);
}

.site-footer__brand {
  margin: 0;
  color: var(--main);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: clamp(1.12rem, 1.7vw, 1.48rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 310px;
}

.site-footer__description {
  max-width: 330px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 0.98rem;
}

.site-footer__label {
  display: block;
  margin-bottom: 18px;
  color: var(--sub);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-footer__info {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  max-width: 560px;
}

.site-footer__info span,
.site-footer__info a {
  color: var(--muted);
  line-height: 1.9;
  font-size: 0.98rem;
}

.site-footer__info a {
  width: fit-content;
}

.site-footer__address-break {
  display: none;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-start;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--main);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.site-footer__social-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(77, 119, 97, 0.1);
  background: var(--main);
  color: #fff;
}

.site-footer__bottom {
  padding-top: 20px;
  text-align: center;
}

.site-footer__bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .page-hero,
  .intro-strip,
  .campus,
  .profile-card,
  .contact__panel,
  .director-feature {
    grid-template-columns: 1fr;
  }

  .director-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .director-metric-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .director-panel--wide {
    grid-column: span 2;
  }

  .director-panel--career {
    grid-column: auto;
  }

  .director-panel--accent,
  .director-panel--soft {
    align-self: stretch;
  }

  .director-story__copy,
  .director-story__body {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__column {
    min-height: auto;
    padding: 28px 0;
  }

  .site-footer__column + .site-footer__column {
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .site-footer__address-break {
    display: block;
  }

  .page-link-grid,
  .about-grid,
  .program-grid,
  .detail-grid,
  .step-grid,
  .channel-grid,
  .bullet-grid,
  .products-grid,
  .campus-points,
  .contact__details,
  .profile-facts {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .program-card--featured {
    grid-template-columns: 1fr;
    grid-column: span 1;
  }

  .program-card--featured__aside {
    align-items: flex-start;
  }

  .program-cta {
    grid-template-columns: 1fr;
  }

  .program-cta__actions {
    justify-content: flex-start;
  }

  .products-summary {
    grid-template-columns: 1fr;
  }

  .products-group__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .products-pagination {
    justify-content: flex-start;
  }

  .gallery-item--large {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 360px;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
    padding-top: 12px;
    padding-bottom: 6px;
  }

  .nav-toggle {
    display: inline-block;
    top: 50%;
    right: 0;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    min-width: 220px;
    border-radius: 24px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-card {
    border-radius: 24px;
  }

  .product-card__visual {
    aspect-ratio: 1 / 0.72;
  }

  .product-card__body {
    gap: 8px;
    padding: 13px;
  }

  .product-card__category {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .product-card h3 {
    font-size: 0.88rem;
    line-height: 1.34;
  }

  .product-card__summary {
    display: none;
  }

  .product-card__footer {
    gap: 10px;
    padding-top: 10px;
  }

  .product-card__price {
    font-size: 0.94rem;
  }

  .product-card__button {
    width: 100%;
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.78rem;
  }
}

@media (max-width: 560px) {
  :root {
    --content-width: min(100vw - 24px, 1180px);
  }

  .director-hero {
    padding-top: 18px;
    padding-bottom: 22px;
  }

  .director-bento {
    grid-template-columns: 1fr;
  }

  .products-pagination {
    gap: 10px;
  }

  .products-pagination__numbers {
    gap: 8px;
  }

  .products-pagination__button {
    min-width: 42px;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .product-card__visual {
    aspect-ratio: 1 / 0.68;
  }

  .product-card__body {
    padding: 12px;
  }

  .product-card h3 {
    font-size: 0.82rem;
  }

  .product-card__price {
    font-size: 0.9rem;
  }

  .product-card__button {
    min-height: 32px;
    font-size: 0.74rem;
  }
}

@media (max-width: 390px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .director-metric-list {
    grid-template-columns: 1fr;
  }

  .director-panel--career {
    grid-column: auto;
  }

  .director-panel--wide {
    grid-column: auto;
  }

  .director-feature__image {
    min-height: 320px;
  }

  .hero__actions .button,
  .contact__actions .button {
    width: 100%;
  }

  .facility-slider__viewport {
    min-height: 440px;
  }

  .facility-slide figcaption {
    left: 20px;
    right: 20px;
    bottom: 80px;
  }

  .facility-slider__controls {
    right: 18px;
    left: 18px;
    justify-content: space-between;
    bottom: 18px;
  }

  .page-links,
  .detail-section,
  .about,
  .programs,
  .feature-band,
  .products-shell,
  .campus,
  .gallery,
  .profile,
  .contact {
    padding-top: 86px;
  }

  .page-link-card,
  .about-card,
  .program-card,
  .bullet-card,
  .feature-band__content,
  .contact__panel,
  .profile-card,
  .detail-panel,
  .intro-strip,
  .page-hero__card {
    padding: 22px;
  }

  .page-main {
    padding-top: 0;
  }

  .home-clean {
    padding-top: 10px;
  }
}
