:root {
  --ink: #111315;
  --muted: #5b626b;
  --line: #d9ddd6;
  --paper: #fbfbf7;
  --soft: #eef4ef;
  --teal: #0f766e;
  --teal-dark: #084e49;
  --amber: #e99720;
  --coral: #cf5f46;
  --steel: #426a7d;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(17, 19, 21, 0.14);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#why,
#schools,
#programs,
#system,
#location,
#tuition,
#consult {
  scroll-margin-top: 86px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Pretendard,
    "Noto Sans KR",
    "Apple SD Gothic Neo",
    "Malgun Gothic",
    system-ui,
    sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(217, 221, 214, 0.75);
  background: rgba(251, 251, 247, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 1.05rem;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #343a40;
  font-size: 0.95rem;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 24px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.btn,
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
}

.header-cta {
  padding: 0 16px;
  background: var(--teal);
  color: var(--white);
}

.header-cta svg,
.btn svg,
.nav-toggle svg,
.reason-card svg,
.proof-grid svg,
.contact-lines svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  stroke-width: 2.2;
}

.nav-toggle {
  display: inline-flex;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  background: var(--ink);
  color: var(--white);
}

.mobile-nav {
  position: fixed;
  inset: 72px 0 auto 0;
  z-index: 19;
  display: none;
  padding: 16px 5vw 22px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 16px 32px rgba(17, 19, 21, 0.12);
}

.mobile-nav a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

  .mobile-nav.is-open {
    display: block;
  }

@media (min-width: 981px) {
  .nav-toggle {
    display: none;
  }
}

.hero {
  position: relative;
  min-height: clamp(540px, 72svh, 720px);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(12, 14, 15, 0.84) 0%, rgba(12, 14, 15, 0.68) 34%, rgba(12, 14, 15, 0.16) 62%),
    url("assets/hero-classroom.png") center right / cover no-repeat;
  color: var(--white);
}

.hero::after {
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(12, 14, 15, 0), rgba(12, 14, 15, 0.62));
  content: "";
  z-index: -1;
}

.hero-inner {
  display: grid;
  align-content: center;
  gap: 36px;
  width: min(1120px, 90vw);
  min-height: inherit;
  margin: 0 auto;
  padding: 58px 0 42px;
}

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

.eyebrow,
.section-kicker,
.program-label {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 9vw, 7.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(1.45rem, 2.8vw, 2.35rem);
  font-weight: 850;
  line-height: 1.25;
}

.hero-subcopy {
  max-width: 600px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-width: 148px;
  padding: 13px 19px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(15, 118, 110, 0.28);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: var(--teal-dark);
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(680px, 100%);
}

.hero-notes span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 800;
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.signal-item {
  min-height: 132px;
  padding: 28px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.signal-item:last-child {
  border-right: 0;
}

.signal-item strong {
  display: block;
  color: #ffffff;
  font-size: 1.08rem;
}

.signal-item span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.section {
  width: min(1120px, 90vw);
  margin: 0 auto;
  padding: 96px 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.28fr);
  gap: 42px 64px;
}

.split-section .section-kicker {
  grid-column: 1 / -1;
}

h2,
h3,
p {
  overflow-wrap: break-word;
  word-break: keep-all;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.3;
}

.split-copy p,
.section-head p,
.system-copy p,
.consult-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.reason-card,
.program-card,
.proof-grid article,
.timeline article,
.consult-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.reason-card {
  min-height: 250px;
  padding: 26px;
}

.reason-card svg {
  width: 32px;
  height: 32px;
  margin-bottom: 28px;
  color: var(--teal);
}

.reason-card p,
.program-card p,
.program-card li,
.timeline p,
.proof-grid p {
  color: var(--muted);
}

.reason-card p {
  margin: 14px 0 0;
}

.schools-section {
  width: 100%;
  padding: 96px 5vw;
  background: var(--ink);
  color: var(--white);
}

.schools-head,
.exam-system,
.school-lists {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.schools-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 42px;
  align-items: end;
}

.schools-head h2 {
  max-width: 780px;
}

.schools-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.06rem;
}

.exam-system {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.exam-system article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.exam-system span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  font-weight: 900;
}

.exam-system p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.school-lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.school-list {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.school-list h3 {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

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

.school-list li {
  position: relative;
  padding-left: 17px;
  color: #343a40;
  font-weight: 800;
}

.school-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.choice-section {
  width: min(1120px, 90vw);
  margin: 0 auto;
  padding: 96px 0 0;
}

.choice-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.choice-copy .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.choice-copy h2 {
  max-width: 760px;
}

.choice-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.choice-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.choice-grid h3 {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.choice-grid p {
  margin: 16px 0 0;
  color: var(--muted);
}

.decision-section {
  width: min(1120px, 90vw);
  margin: 0 auto;
  padding: 96px 0;
}

.decision-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.decision-copy h2 {
  grid-column: 1 / 2;
  max-width: 780px;
}

.decision-copy .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.decision-copy p {
  grid-column: 2 / 3;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.decision-grid article {
  min-height: 330px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.decision-grid svg {
  width: 32px;
  height: 32px;
  margin-bottom: 28px;
  color: var(--teal);
}

.decision-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

.programs-section {
  width: 100%;
  padding: 96px 5vw;
  background: var(--soft);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  width: min(1120px, 100%);
  margin: 0 auto 34px;
}

.section-head h2 {
  max-width: 740px;
}

.section-head p {
  max-width: 320px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.program-card {
  position: relative;
  min-height: 380px;
  padding: 26px;
  overflow: hidden;
}

.program-card::before {
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--steel);
  content: "";
}

.program-card.featured {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.program-card.featured::before {
  background: var(--amber);
}

.program-card.featured p,
.program-card.featured li {
  color: rgba(255, 255, 255, 0.76);
}

.program-card p {
  margin: 16px 0 20px;
}

.program-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.program-label {
  display: inline-block;
  color: var(--coral);
}

.system-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  gap: 54px;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 0 20px;
  min-height: 126px;
  padding: 24px;
  align-items: start;
}

.timeline span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--teal);
  font-weight: 900;
}

.timeline p {
  margin: 8px 0 0;
}

.proof-section {
  width: 100%;
  padding: 82px 5vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f7efe8;
}

.proof-copy,
.proof-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.proof-copy h2 {
  max-width: 780px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.proof-grid article {
  min-height: 230px;
  padding: 26px;
}

.proof-grid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 26px;
  color: var(--coral);
}

.proof-grid p {
  margin: 12px 0 0;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 38px;
  width: min(1120px, 90vw);
  margin: 0 auto;
  padding: 96px 0 0;
  align-items: start;
}

.location-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.location-details {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.location-details span,
.location-details a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.location-details svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.map-frame {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(17, 19, 21, 0.08);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.tuition-section {
  width: min(1120px, 90vw);
  margin: 0 auto;
  padding: 48px 0 0;
}

.tuition-details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(17, 19, 21, 0.08);
  overflow: hidden;
}

.tuition-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 82px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
}

.tuition-details summary::-webkit-details-marker {
  display: none;
}

.tuition-details summary span {
  display: grid;
  gap: 4px;
}

.tuition-details summary .section-kicker {
  margin: 0;
}

.tuition-details summary strong {
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.2;
}

.tuition-details summary > svg {
  width: 26px;
  height: 26px;
  color: var(--teal);
  transition: transform 180ms ease;
}

.tuition-details[open] summary {
  border-bottom: 1px solid var(--line);
}

.tuition-details[open] summary > svg {
  transform: rotate(180deg);
}

.tuition-content {
  display: grid;
  gap: 18px;
  padding: 24px 26px 26px;
}

.tuition-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tuition-meta span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: #343a40;
  font-size: 0.92rem;
  font-weight: 800;
}

.tuition-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.tuition-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.92rem;
}

.tuition-table th,
.tuition-table td {
  padding: 12px 11px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  white-space: nowrap;
}

.tuition-table th {
  background: var(--soft);
  color: var(--ink);
  font-weight: 900;
}

.tuition-table td:nth-child(4),
.tuition-table td:nth-child(8),
.tuition-table td:nth-child(10) {
  font-weight: 800;
}

.tuition-table tbody tr:last-child td {
  border-bottom: 0;
}

.tuition-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.consult-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 58px;
  width: min(1120px, 90vw);
  margin: 0 auto;
  padding: 96px 0;
  align-items: start;
}

.consult-copy h2 {
  max-width: 720px;
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-lines a,
.contact-lines span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.consult-panel {
  display: grid;
  gap: 16px;
  padding: 26px;
  box-shadow: 0 18px 46px rgba(17, 19, 21, 0.08);
}

.consult-panel > svg {
  width: 34px;
  height: 34px;
  color: var(--teal);
}

.consult-panel h3 {
  margin: 0;
}

.consult-panel p {
  margin: 0;
  color: var(--muted);
}

.consult-link {
  width: 100%;
  margin-top: 8px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 5vw;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.site-footer div {
  display: grid;
  gap: 2px;
}

.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    position: absolute;
    top: 50%;
    right: 5vw;
    display: inline-flex !important;
    transform: translateY(-50%);
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(12, 14, 15, 0.88) 0%, rgba(12, 14, 15, 0.68) 58%, rgba(12, 14, 15, 0.35) 100%),
      url("assets/hero-classroom.png") center right 28% / cover no-repeat;
  }

  .signal-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .signal-item:nth-child(2n) {
    border-right: 0;
  }

  .split-section,
  .schools-head,
  .choice-copy,
  .decision-copy,
  .system-section,
  .consult-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .reason-grid,
  .exam-system,
  .school-lists,
  .choice-grid,
  .decision-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
  }

  .section-head p {
    max-width: 720px;
  }

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

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
    padding: 0 18px;
  }

  .brand-copy small {
    display: none;
  }

  .mobile-nav {
    top: 66px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .nav-toggle {
    right: 18px;
  }

  .hero {
    min-height: 600px;
    background:
      linear-gradient(90deg, rgba(12, 14, 15, 0.92) 0%, rgba(12, 14, 15, 0.76) 62%, rgba(12, 14, 15, 0.46) 100%),
      url("assets/hero-classroom.png") center right 34% / cover no-repeat;
  }

  .hero-inner {
    width: calc(100% - 36px);
    padding: 44px 0 34px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.25rem);
  }

  .hero-lead {
    max-width: 21rem;
    font-size: clamp(1.32rem, 5.5vw, 1.45rem);
    overflow-wrap: break-word;
    word-break: keep-all;
  }

  .hero-subcopy {
    max-width: 21rem;
    font-size: 1rem;
    overflow-wrap: break-word;
    word-break: keep-all;
  }

  .hero-actions {
    max-width: 21rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-notes {
    max-width: 21rem;
  }

  .hero-notes span {
    padding: 8px 11px;
    font-size: 0.88rem;
  }

  .signal-band {
    grid-template-columns: 1fr;
  }

  .signal-item {
    min-height: auto;
    padding: 22px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section,
  .consult-section,
  .tuition-section,
  .location-section {
    width: calc(100% - 36px);
    padding: 68px 0;
  }

  .tuition-section {
    padding-bottom: 0;
  }

  .tuition-details summary {
    padding: 20px;
  }

  .tuition-content {
    padding: 20px;
  }

  .tuition-meta {
    display: grid;
  }

  .location-section {
    padding-bottom: 0;
  }

  .location-details span,
  .location-details a {
    width: 100%;
    align-items: flex-start;
    padding: 11px 13px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 340px;
    height: 340px;
  }

  .programs-section,
  .schools-section,
  .choice-section,
  .decision-section,
  .proof-section {
    padding: 68px 18px;
  }

  .schools-head p {
    margin-top: 0;
  }

  .exam-system article {
    min-height: auto;
  }

  .school-list {
    padding: 20px;
  }

  .school-list ul {
    grid-template-columns: 1fr;
  }

  .choice-section {
    width: 100%;
    padding-bottom: 0;
  }

  .choice-copy {
    gap: 18px;
  }

  .choice-copy .section-kicker,
  .choice-copy h2,
  .choice-copy p {
    grid-column: 1 / -1;
  }

  .choice-copy .section-kicker {
    margin-bottom: 0;
  }

  .choice-grid article {
    min-height: auto;
    padding: 20px;
  }

  .decision-section {
    width: 100%;
  }

  .decision-copy {
    gap: 18px;
  }

  .decision-copy .section-kicker,
  .decision-copy h2,
  .decision-copy p {
    grid-column: 1 / -1;
  }

  .decision-copy .section-kicker {
    margin-bottom: 0;
  }

  .decision-copy p {
    margin-top: 0;
  }

  .decision-grid article {
    min-height: auto;
    padding: 22px;
  }

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

  .program-card {
    min-height: auto;
  }

  .timeline article {
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 20px;
  }

  .timeline span {
    width: 42px;
    height: 42px;
  }

  .contact-lines {
    display: grid;
  }

  .consult-panel {
    padding: 20px;
  }

  .site-footer {
    display: grid;
  }
}
