@font-face {
  font-family: "GmarketSans";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GmarketSans";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-display: "GmarketSans", "Pretendard Variable", "Pretendard", "SUIT", sans-serif;
  --font-sans: "Pretendard Variable", "Pretendard", "SUIT", "Noto Sans KR", "Apple SD Gothic Neo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #123c34;
  --ink-soft: #2f4f48;
  --muted: #667872;
  --paper: #fafaf6;
  --paper-2: #e8f5ef;
  --white: #ffffff;
  --line: #d5e4dc;
  --line-dark: #123c34;
  --moss: #123c34;
  --teal: #2f9e6d;
  --clay: #c96f4a;
  --ochre: #a77f36;
  --sage: #d8efe5;
  --max: 1180px;
  --radius: 4px;
  --shadow: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  line-height: 1.68;
  letter-spacing: -0.012em;
  word-break: keep-all;
}

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

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

p,
h1,
h2,
h3,
dl,
dd,
ol,
ul,
figure {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(44px, 8vw, 132px);
  min-height: 74px;
  padding: 15px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 247, 242, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: clamp(190px, 22vw, 320px);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
}

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

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-size: 1rem;
  line-height: 1.2;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(22px, 3.8vw, 56px);
  flex: 1 1 auto;
  font-family: var(--font-display);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  content: "";
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links .nav-cta {
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--ink);
}

.nav-links .nav-cta::after {
  display: none;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  min-height: calc(100svh - 74px);
  padding: clamp(54px, 7vw, 94px) clamp(20px, 5vw, 72px) clamp(44px, 6vw, 82px);
  background:
    linear-gradient(90deg, rgba(18, 60, 52, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper), #ffffff 100%);
  background-size: 80px 80px, auto;
}

.hero-copy {
  width: min(680px, 100%);
}

.eyebrow,
.section-kicker {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

.home-hero h1,
.page-hero h1 {
  margin-bottom: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 7.8vw, 6.8rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-lead,
.page-hero p:not(.eyebrow) {
  width: min(680px, 100%);
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.75vw, 1.3rem);
  font-weight: 500;
}

.hero-actions,
.section-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  transition:
    transform 0.16s ease,
    background 0.16s ease,
    color 0.16s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--paper);
  background: var(--ink);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.34);
}

.button.light {
  color: var(--ink);
  background: var(--paper);
}

.hero-stage {
  position: relative;
  min-height: 550px;
}

.hero-photo {
  position: absolute;
  inset: 0 0 92px 54px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(18, 23, 22, 0.08), rgba(18, 23, 22, 0));
}

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

.hero-summary-panel {
  position: absolute;
  left: 0;
  right: 48px;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 146px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: none;
}

.hero-summary-panel article {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.hero-summary-panel article:last-child {
  border-right: 0;
}

.hero-summary-panel span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-summary-panel strong {
  font-family: var(--font-display);
  font-size: clamp(1.04rem, 1.9vw, 1.3rem);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip article {
  min-height: 148px;
  padding: 28px clamp(20px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-strip span {
  display: block;
  margin-bottom: 22px;
  color: var(--teal);
  font-weight: 800;
}

.trust-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.16rem, 2vw, 1.48rem);
}

.trust-strip p {
  margin: 7px 0 0;
  color: var(--muted);
}

.section {
  padding: clamp(76px, 9vw, 132px) clamp(20px, 5vw, 72px);
}

.split-section,
.partnership-preview,
.program-pathways,
.mou-section,
.contact-layout,
.future-form {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(34px, 6vw, 94px);
  align-items: start;
}

.section-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 38px;
}

h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 4.5vw, 3.9rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2vw, 1.38rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.copy-stack p,
.program-card p,
.partnership-preview p,
.feature-card p,
.process-list p,
.detail-list dd,
.network-steps p,
.mou-copy p,
.partner-types p,
.contact-card p,
.inquiry-guide p,
.future-form p,
.cta-band p {
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.1rem);
}

.copy-stack p:last-child,
.program-card p:last-child,
.partnership-preview p:last-child,
.feature-card p:last-child,
.process-list p:last-child,
.network-steps p:last-child,
.mou-copy p:last-child,
.partner-types p:last-child,
.contact-card p:last-child,
.inquiry-guide p:last-child,
.future-form p:last-child,
.cta-band p:last-child {
  margin-bottom: 0;
}

.editorial-band,
.philosophy-section,
.network-section {
  background:
    linear-gradient(90deg, rgba(18, 60, 52, 0.045) 1px, transparent 1px),
    var(--paper-2);
  background-size: 80px 80px, auto;
}

.program-grid,
.feature-grid,
.partner-types {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--max), 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

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

.program-card,
.feature-card,
.partner-types article {
  min-height: 278px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.program-card {
  display: grid;
  align-content: space-between;
  gap: 30px;
}

.program-card.teal,
.program-card.sage,
.program-card.gold,
.program-card.coral {
  border-top: 0;
}

.card-index,
.feature-card span,
.partner-types strong {
  display: inline-block;
  color: var(--teal);
  font-weight: 800;
}

.program-card h3,
.feature-card h3,
.partner-types h3 {
  margin-bottom: 14px;
}

.feature-card.dark {
  color: var(--paper);
  background: var(--moss);
}

.feature-card.dark p,
.feature-card.dark span {
  color: rgba(246, 244, 238, 0.78);
}

.partnership-preview {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.photo-note-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: none;
}

.photo-note-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.photo-note-card figcaption {
  display: grid;
  gap: 6px;
  padding: 24px;
}

.photo-note-card strong {
  color: var(--ink);
  font-size: clamp(1.14rem, 2vw, 1.42rem);
}

.photo-note-card span {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  color: var(--ink);
  font-weight: 900;
  border-bottom: 2px solid var(--teal);
}

.text-link::after {
  margin-left: 10px;
  content: "→";
}

.cta-band {
  padding: clamp(70px, 9vw, 112px) clamp(20px, 5vw, 72px);
  color: var(--paper);
  background: var(--ink);
}

.quiet-cta {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    var(--ink);
  background-size: 80px 80px, auto;
}

.cta-band h2,
.cta-band p {
  width: min(930px, 100%);
}

.cta-band h2 {
  margin-bottom: 18px;
  color: var(--paper);
}

.cta-band p {
  color: rgba(246, 244, 238, 0.78);
}

.cta-band .button {
  margin-top: 18px;
  border-color: var(--paper);
}

.page-hero {
  min-height: 430px;
  padding: clamp(74px, 9vw, 128px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.page-hero h1 {
  width: min(1000px, 100%);
  font-size: clamp(2.9rem, 6.9vw, 6.4rem);
}

.trust-hero,
.contact-hero,
.network-hero,
.lab-hero {
  background: var(--paper);
}

.lab-hero {
  border-bottom-color: var(--line);
}

.process-section {
  color: var(--paper);
  background: var(--moss);
}

.process-section .section-kicker {
  color: #e0bd72;
}

.process-list,
.network-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(246, 244, 238, 0.24);
  border-left: 1px solid rgba(246, 244, 238, 0.24);
}

.process-list li,
.network-steps article {
  min-height: 236px;
  padding: 26px;
  border-right: 1px solid rgba(246, 244, 238, 0.24);
  border-bottom: 1px solid rgba(246, 244, 238, 0.24);
}

.process-list span,
.network-steps span {
  display: block;
  margin-bottom: 40px;
  color: #e0bd72;
  font-weight: 900;
}

.process-list p,
.network-steps p {
  margin-top: 12px;
}

.process-list p {
  color: rgba(246, 244, 238, 0.74);
}

.program-pathways {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
}

.program-intro h2 {
  font-size: clamp(2rem, 4.2vw, 3.7rem);
}

.program-tabs {
  display: grid;
  gap: 8px;
}

.program-tabs a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  font-weight: 900;
}

.program-tabs a::after {
  color: var(--clay);
  content: "↓";
}

.program-details {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto clamp(76px, 9vw, 132px);
}

.program-detail {
  display: grid;
  grid-template-columns: 86px minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: clamp(18px, 4vw, 52px);
  padding: clamp(34px, 5vw, 58px) 0;
  border-top: 1px solid var(--line);
}

.program-detail:last-child {
  border-bottom: 1px solid var(--line);
}

.program-detail.featured {
  margin-top: 16px;
  padding: clamp(28px, 4vw, 42px);
  border: 0;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--moss);
}

.program-detail.featured .detail-lead,
.program-detail.featured dd {
  color: rgba(246, 244, 238, 0.78);
}

.program-detail.featured dt,
.program-detail.featured .detail-number {
  color: #e0bd72;
}

.program-detail.teacher-featured {
  margin-top: 16px;
  padding: clamp(28px, 4vw, 42px);
  border: 0;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--moss);
}

.program-detail.teacher-featured .detail-lead,
.program-detail.teacher-featured dd {
  color: rgba(246, 244, 238, 0.78);
}

.program-detail.teacher-featured dt,
.program-detail.teacher-featured .detail-number {
  color: #e0bd72;
}

.detail-number {
  color: var(--clay);
  font-weight: 900;
}

.detail-main h2 {
  font-size: clamp(1.68rem, 3.2vw, 2.75rem);
}

.detail-lead {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.1rem);
}

.detail-list {
  display: grid;
  gap: 16px;
  margin-bottom: 0;
}

.detail-list div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(102, 114, 109, 0.18);
}

.detail-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.detail-list dt {
  color: var(--clay);
  font-weight: 900;
}

.detail-list dd {
  margin-bottom: 0;
}

.network-section {
  color: var(--ink);
}

.network-steps {
  border-color: rgba(18, 23, 22, 0.16);
}

.network-steps article {
  border-color: rgba(18, 23, 22, 0.16);
  background: transparent;
}

.network-steps span {
  color: var(--clay);
}

.mou-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.mou-placeholder {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 28px;
  border: 1px dashed rgba(49, 88, 75, 0.45);
  border-radius: var(--radius);
  background: transparent;
  text-align: center;
}

.mou-placeholder strong,
.mou-placeholder span {
  display: block;
}

.mou-placeholder strong {
  font-size: clamp(1.34rem, 3vw, 2.3rem);
}

.mou-placeholder span {
  color: var(--muted);
}

.partner-types {
  padding-top: 0;
}

.partner-types strong {
  margin-bottom: 44px;
  color: var(--clay);
}

.operation-section {
  background: var(--paper-2);
}

.operation-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: min(var(--max), 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.operation-grid article {
  min-height: 148px;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.28);
}

.operation-grid span,
.strength-list li::before {
  color: var(--clay);
}

.operation-grid span {
  display: block;
  margin-bottom: 18px;
  font-weight: 850;
}

.operation-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2vw, 1.42rem);
  line-height: 1.3;
}

.strengths-section {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding-top: clamp(40px, 6vw, 82px);
}

.strength-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.strength-list li {
  position: relative;
  min-height: 74px;
  padding: 22px 22px 22px 48px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-weight: 850;
}

.strength-list li::before {
  position: absolute;
  left: 22px;
  top: 22px;
  content: "✓";
  font-weight: 900;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(28px, 6vw, 86px);
}

.contact-layout-form {
  align-items: start;
}

.contact-card,
.inquiry-guide,
.future-form,
.inquiry-form {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.contact-card,
.inquiry-guide,
.inquiry-form {
  padding: clamp(24px, 4vw, 36px) 0 0;
}

.contact-card h2,
.inquiry-guide h2,
.future-form h2 {
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
}

.contact-list {
  display: grid;
  gap: 0;
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

.contact-list div {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.contact-list strong {
  font-size: 1.1rem;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 18px;
}

.form-heading,
.form-full,
.form-submit,
.form-note,
.hidden-field {
  grid-column: 1 / -1;
}

.hidden-field {
  display: none;
}

.form-heading {
  margin-bottom: 8px;
}

.form-heading h2 {
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
}

.form-heading p {
  color: var(--muted);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  letter-spacing: inherit;
}

.inquiry-form input,
.inquiry-form select {
  min-height: 46px;
  padding: 0;
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 150px;
  padding: 12px 0;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: 0;
  border-bottom-color: var(--teal);
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: #9aa7a1;
}

.privacy-check {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  padding-top: 4px;
  color: var(--muted) !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--teal);
}

.form-submit {
  width: fit-content;
  min-width: 160px;
  margin-top: 4px;
  cursor: pointer;
}

.form-note {
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 48px;
  padding: 12px 14px 12px 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  font-weight: 850;
}

.check-list li::before {
  position: absolute;
  left: 14px;
  top: 13px;
  color: var(--clay);
  content: "✓";
  font-weight: 900;
}

.future-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: clamp(76px, 9vw, 132px);
  padding: clamp(26px, 4vw, 42px) 0 0;
}

.site-footer {
  display: grid;
  gap: 28px;
  padding: clamp(42px, 6vw, 72px) clamp(20px, 5vw, 72px) 28px;
  border-top: 1px solid var(--line);
  color: rgba(250, 250, 246, 0.72);
  background: var(--ink);
  font-size: 0.92rem;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 28px;
  align-items: start;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(250, 250, 246, 0.18);
}

.footer-brand {
  display: block;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.12;
}

.footer-main p {
  margin: 12px 0 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
  color: var(--paper);
  font-weight: 700;
}

.footer-nav a {
  border-bottom: 1px solid transparent;
}

.footer-nav a:hover {
  border-bottom-color: var(--paper);
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(250, 250, 246, 0.18);
  border-left: 1px solid rgba(250, 250, 246, 0.18);
}

.footer-info p {
  min-height: 86px;
  margin: 0;
  padding: 18px;
  border-right: 1px solid rgba(250, 250, 246, 0.18);
  border-bottom: 1px solid rgba(250, 250, 246, 0.18);
}

.footer-info span {
  display: block;
  margin-bottom: 8px;
  color: rgba(250, 250, 246, 0.48);
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(250, 250, 246, 0.54);
  font-size: 0.86rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 1040px) {
  .home-hero,
  .split-section,
  .partnership-preview,
  .program-pathways,
  .mou-section,
  .contact-layout,
  .future-form,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
  }

  .hero-stage {
    min-height: 500px;
  }

  .trust-strip,
  .program-grid,
  .process-list,
  .network-steps,
  .operation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-detail {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .detail-list {
    grid-column: 2;
  }

  .feature-grid,
  .partner-types {
    grid-template-columns: 1fr;
  }

  .future-form .button {
    width: fit-content;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-links .nav-cta {
    min-height: auto;
    padding: 8px 12px;
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: clamp(2.68rem, 14vw, 4.5rem);
  }

  .home-hero,
  .page-hero,
  .section,
  .cta-band {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-stage {
    min-height: auto;
  }

  .hero-photo {
    position: relative;
    inset: auto;
    height: 310px;
  }

  .hero-summary-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    margin-top: 12px;
    min-height: auto;
  }

  .hero-summary-panel article,
  .hero-summary-panel article:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-summary-panel article:last-child {
    border-bottom: 0;
  }

  .trust-strip,
  .program-grid,
  .process-list,
  .network-steps,
  .operation-grid,
  .check-list,
  .strength-list {
    grid-template-columns: 1fr;
  }

  .trust-strip article,
  .trust-strip article:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip article:last-child {
    border-bottom: 0;
  }

  .program-card,
  .feature-card,
  .partner-types article,
  .process-list li,
  .network-steps article {
    min-height: auto;
  }

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

  .detail-list {
    grid-column: auto;
  }

  .detail-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero-actions,
  .section-action,
  .button,
  .future-form .button,
  .form-submit {
    width: 100%;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-info {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .brand-text small {
    display: none;
  }

  .nav-links {
    font-size: 0.84rem;
  }

  .hero-summary-panel article {
    padding: 20px;
  }
}
