:root {
  --ink: #14213e;
  --deep: #173783;
  --blue: #234fc5;
  --cyan: #2db6c2;
  --orange: #ff6b19;
  --yellow: #ffd34e;
  --paper: #f7f8f3;
  --white: #ffffff;
  --muted: #687084;
  --line: rgba(20, 33, 62, 0.14);
  --max: 1240px;
  --shadow: 0 28px 80px rgba(20, 33, 62, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, p, blockquote, figure { margin: 0; }
ul, ol { margin: 0; padding: 0; }
em { color: var(--orange); font-style: normal; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  transform: translateY(-140%);
  transition: transform 0.2s;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background 0.25s, box-shadow 0.25s, backdrop-filter 0.25s;
}
.site-header.is-scrolled {
  background: rgba(247, 248, 243, 0.92);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(calc(100% - 48px), var(--max));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 186px; }
.brand-mark { position: relative; width: 31px; height: 31px; flex: 0 0 31px; }
.brand-mark i { position: absolute; display: block; border-radius: 2px; transform: rotate(-8deg); }
.brand-mark i:nth-child(1) { width: 12px; height: 21px; left: 0; top: 1px; background: var(--orange); }
.brand-mark i:nth-child(2) { width: 12px; height: 21px; right: 1px; top: 8px; background: var(--blue); }
.brand-mark i:nth-child(3) { width: 11px; height: 11px; left: 8px; bottom: 0; background: var(--cyan); }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 1.3rem; letter-spacing: -0.07em; }
.brand-copy small { margin-top: 5px; font-size: 0.64rem; font-weight: 800; letter-spacing: 0.13em; color: var(--orange); }
.primary-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); font-size: 0.92rem; font-weight: 700; }
.primary-nav a:not(.nav-cta) { position: relative; padding: 29px 0; }
.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 100%;
  bottom: 24px;
  background: var(--orange);
  transition: right 0.2s;
}
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { right: 0; }
.nav-cta { padding: 11px 18px; border-radius: 100px; background: var(--ink); color: white; }
.nav-cta:hover, .nav-cta:focus-visible { background: var(--orange); }
.menu-button { display: none; border: 0; background: none; padding: 10px; cursor: pointer; }
.menu-button i { display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--ink); transition: transform 0.2s, opacity 0.2s; }

.hero {
  min-height: 830px;
  padding: 150px 24px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 42%, rgba(45, 182, 194, 0.14), transparent 23%),
    radial-gradient(circle at 86% 16%, rgba(255, 107, 25, 0.16), transparent 26%),
    var(--paper);
}
.hero-grid {
  width: min(100%, var(--max));
  min-height: 610px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.9fr);
  align-items: center;
  gap: 34px;
}
.eyebrow, .section-label { color: var(--blue); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.eyebrow span { width: 34px; height: 3px; background: var(--orange); }
.hero h1 { max-width: 700px; font-size: clamp(3.25rem, 5.9vw, 5.85rem); line-height: 1.06; letter-spacing: -0.075em; font-weight: 900; }
.hero h1 em { position: relative; }
.hero h1 em::after { content: ""; position: absolute; z-index: -1; left: 1%; right: -2%; bottom: 4px; height: 15px; background: var(--yellow); opacity: 0.7; transform: rotate(-1deg); }
.hero-lead { max-width: 630px; margin-top: 30px; color: #4f5970; font-size: 1.15rem; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 35px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 24px; min-height: 55px; padding: 0 25px; border: 1px solid transparent; border-radius: 5px; font-size: 0.96rem; font-weight: 800; transition: transform 0.2s, box-shadow 0.2s, background 0.2s; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: white; box-shadow: 0 13px 28px rgba(255, 107, 25, 0.25); }
.button-primary:hover, .button-primary:focus-visible { background: #e85408; box-shadow: 0 16px 34px rgba(255, 107, 25, 0.32); }
.button-outline { border-color: rgba(255,255,255,.55); color: white; }
.button-outline:hover, .button-outline:focus-visible { background: white; color: var(--deep); }
.text-link { font-weight: 800; border-bottom: 1px solid var(--ink); }
.hero-signature { display: flex; flex-direction: column; margin-top: 58px; padding-left: 17px; border-left: 3px solid var(--cyan); }
.hero-signature strong { color: var(--deep); font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.08em; }
.hero-signature span { color: var(--muted); font-size: 0.84rem; }

.hero-visual { position: relative; min-height: 620px; }
.cover-card { position: absolute; overflow: hidden; width: 276px; aspect-ratio: 595 / 842; background: white; box-shadow: var(--shadow); }
.cover-card img { width: 100%; height: 100%; object-fit: cover; }
.cover-card-est { top: 76px; left: 45px; transform: rotate(-8deg); }
.cover-card-cic { top: 20px; right: 30px; transform: rotate(7deg); }
.hero-badge {
  position: absolute;
  z-index: 3;
  right: 3px;
  bottom: 65px;
  width: 154px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  text-align: center;
  box-shadow: 0 18px 45px rgba(20,33,62,.14);
  transform: rotate(-7deg);
}
.hero-badge strong { font-size: 1.1rem; letter-spacing: .06em; }
.hero-badge span { width: 90px; margin-top: 5px; font-size: .7rem; line-height: 1.35; }
.orbit { position: absolute; border: 1px solid rgba(35,79,197,.14); border-radius: 50%; }
.orbit-one { width: 490px; height: 490px; right: 0; top: 20px; }
.orbit-two { width: 350px; height: 350px; left: 10px; bottom: 20px; }
.dot-field { position: absolute; top: 30px; left: 5px; width: 92px; height: 92px; background-image: radial-gradient(var(--orange) 2px, transparent 2px); background-size: 15px 15px; opacity: .55; }
.hero-footer { width: min(100%, var(--max)); height: 70px; margin: 0 auto; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; color: #8b91a0; font-size: .7rem; font-weight: 800; letter-spacing: .18em; }
.hero-footer i { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }

.section { padding: 130px 24px; }
.section-grid, .section-heading, .program-layout, .method-steps, .highfive, .classroom > *, .materials > *, .contact-card, .site-footer {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
}
.section-label { margin-bottom: 20px; }
.section-heading h2, .about-main h2, .highfive-intro h2, .materials-header h2, .contact-card h2 { font-size: clamp(2.45rem, 4.3vw, 4.35rem); line-height: 1.15; letter-spacing: -.065em; }
.section-heading > p:last-child { max-width: 650px; margin-top: 24px; color: var(--muted); font-size: 1.05rem; }
.section-heading.centered { text-align: center; }
.section-heading.centered > p:last-child { margin-left: auto; margin-right: auto; }

.about { background: white; }
.about-grid { display: grid; grid-template-columns: 150px minmax(0, 1.1fr) minmax(300px, .75fr); gap: clamp(30px, 5vw, 85px); align-items: start; }
.section-kicker { display: flex; gap: 13px; color: var(--blue); }
.section-kicker span { font-size: 1.1rem; font-weight: 900; }
.section-kicker p { padding-left: 13px; border-left: 1px solid var(--line); font-size: .69rem; font-weight: 900; letter-spacing: .12em; line-height: 1.55; }
.about-main h2 { max-width: 680px; }
.about-lead { max-width: 760px; margin-top: 32px; color: #3d465b; font-size: 1.15rem; line-height: 1.9; }
.about-main > p:last-child { max-width: 760px; margin-top: 18px; color: var(--muted); }
.about-aside { position: relative; margin-top: 35px; padding: 42px 30px 30px; background: var(--paper); border-top: 4px solid var(--orange); }
.quote-mark { position: absolute; top: -32px; right: 20px; color: var(--yellow); font-family: Georgia, serif; font-size: 7rem; line-height: 1; }
.about-aside blockquote { position: relative; font-size: 1.2rem; line-height: 1.75; }
.about-aside p { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: .75rem; line-height: 1.5; }

.section-ink { background: var(--ink); color: white; }
.section-heading.light .section-label { color: #6ee3e6; }
.section-heading.light > p:last-child { color: rgba(255,255,255,.63); }
.method { position: relative; overflow: hidden; }
.method::before { content: "05"; position: absolute; right: -30px; top: -100px; color: rgba(255,255,255,.025); font-size: 28rem; line-height: 1; font-weight: 900; }
.method-steps { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 75px; border-top: 1px solid rgba(255,255,255,.18); }
.method-steps li { list-style: none; position: relative; min-height: 340px; padding: 25px 26px 30px; border-right: 1px solid rgba(255,255,255,.18); }
.method-steps li:first-child { border-left: 1px solid rgba(255,255,255,.18); }
.method-steps li > span { color: #7c87a2; font-size: .75rem; font-weight: 900; letter-spacing: .12em; }
.step-symbol { width: 64px; height: 64px; margin: 48px 0 28px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: white; font-size: 1.05rem; font-weight: 900; }
.method-steps li:nth-child(2) .step-symbol { background: var(--yellow); color: var(--ink); }
.method-steps li:nth-child(3) .step-symbol { background: var(--cyan); }
.method-steps li:nth-child(4) .step-symbol { background: var(--blue); }
.method-steps li:nth-child(5) .step-symbol { background: white; color: var(--ink); }
.method-steps h3 { font-size: 1.17rem; }
.method-steps p { margin-top: 13px; color: rgba(255,255,255,.58); font-size: .9rem; line-height: 1.7; }

.program { background: #f0f2ec; }
.program-layout { margin-top: 75px; display: grid; grid-template-columns: minmax(0, 1fr) 345px; gap: 26px; align-items: stretch; }
.program-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.program-card { min-height: 550px; padding: 30px 28px; display: flex; flex-direction: column; border-radius: 4px; color: white; overflow: hidden; position: relative; }
.program-card::after { content: ""; position: absolute; width: 170px; height: 170px; right: -85px; bottom: -85px; border: 35px solid rgba(255,255,255,.09); border-radius: 50%; }
.program-est { background: var(--cyan); }
.program-cic { background: var(--orange); }
.program-aps { background: var(--deep); }
.program-topline { display: flex; justify-content: space-between; align-items: center; font-size: .69rem; font-weight: 900; letter-spacing: .08em; }
.program-topline b { padding: 6px 10px; border: 1px solid rgba(255,255,255,.45); border-radius: 50px; }
.program-code { margin-top: 53px; font-size: 4.5rem; line-height: 1; font-weight: 900; letter-spacing: -.08em; }
.program-card h3 { margin-top: 8px; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; opacity: .72; }
.program-card h4 { margin-top: 32px; font-size: 1.35rem; line-height: 1.35; }
.program-card > p:not(.program-code) { margin-top: 14px; color: rgba(255,255,255,.78); font-size: .88rem; }
.program-card ul { margin-top: auto; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.3); list-style: none; }
.program-card li { position: relative; margin-top: 7px; padding-left: 15px; font-size: .82rem; }
.program-card li::before { content: "+"; position: absolute; left: 0; font-weight: 900; }
.program-map { padding: 22px; background: white; display: flex; flex-direction: column; justify-content: center; }
.program-map img { width: 100%; object-fit: contain; }
.program-map figcaption { margin-top: 13px; padding-top: 13px; border-top: 1px solid var(--line); color: var(--muted); font-size: .72rem; text-align: center; }

.highfive { display: grid; grid-template-columns: 330px 1fr; gap: 75px; background: var(--yellow); }
.highfive.section { max-width: none; width: 100%; padding-left: max(24px, calc((100vw - var(--max)) / 2)); padding-right: max(24px, calc((100vw - var(--max)) / 2)); }
.highfive-intro .section-label { color: var(--deep); }
.highfive-intro h2 em { color: var(--deep); }
.highfive-intro > p:last-child { margin-top: 25px; color: #5d562f; }
.competency-list { display: grid; grid-template-columns: repeat(5, 1fr); border-left: 1px solid rgba(20,33,62,.2); }
.competency { min-width: 0; padding: 12px 18px 20px; border-right: 1px solid rgba(20,33,62,.2); }
.competency b { display: grid; place-items: center; width: 45px; height: 45px; margin-bottom: 40px; border-radius: 50%; background: var(--ink); color: white; }
.competency h3 { font-size: .87rem; overflow-wrap: anywhere; }
.competency p { margin-top: 3px; font-weight: 900; }
.competency span { display: block; margin-top: 28px; color: #6d653e; font-size: .78rem; line-height: 1.55; }

.classroom { background: white; }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 70px; }
.case-card { position: relative; min-height: 390px; padding: 34px; border: 1px solid var(--line); overflow: hidden; }
.case-card::before { content: ""; position: absolute; width: 190px; height: 190px; right: -105px; top: -105px; border-radius: 50%; background: currentColor; opacity: .07; }
.case-number { color: var(--orange); font-size: .78rem; font-weight: 900; letter-spacing: .14em; }
.case-grade { margin-top: 45px; color: var(--blue); font-size: .76rem; font-weight: 900; }
.case-card h3 { margin-top: 13px; font-size: 1.65rem; line-height: 1.4; letter-spacing: -.04em; }
.case-card ul { margin-top: 42px; padding-top: 20px; border-top: 1px solid var(--line); list-style: none; color: var(--muted); font-size: .87rem; }
.case-card li { margin-top: 7px; }
.case-card li::before { content: "·"; margin-right: 8px; color: var(--orange); font-weight: 900; }
.case-middle { background: #f3fbfa; }
.case-high { background: #f5f6fb; }
.case-note { margin-top: 18px; padding: 25px 30px; display: flex; justify-content: space-between; align-items: center; gap: 20px; background: var(--ink); color: white; font-size: .9rem; }
.case-note a { color: var(--yellow); font-weight: 900; white-space: nowrap; }

.materials { background: #eef1ec; overflow: hidden; }
.materials-header { display: flex; justify-content: space-between; align-items: end; gap: 35px; }
.book-filters { display: flex; gap: 6px; padding-bottom: 8px; }
.book-filters button { min-width: 68px; padding: 9px 14px; border: 1px solid var(--line); border-radius: 50px; background: transparent; color: var(--muted); cursor: pointer; font-size: .82rem; font-weight: 800; }
.book-filters button:hover, .book-filters button:focus-visible, .book-filters button.is-active { background: var(--ink); border-color: var(--ink); color: white; }
.book-shelf { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; margin-top: 65px; align-items: end; }
.book-item { min-width: 0; transition: opacity .2s, transform .2s; }
.book-item.is-hidden { display: none; }
.book-cover { position: relative; aspect-ratio: 595 / 842; box-shadow: 0 18px 36px rgba(20,33,62,.15); transition: transform .25s, box-shadow .25s; }
.book-cover::after { content: ""; position: absolute; inset: 0 auto 0 0; width: 6px; background: linear-gradient(90deg, rgba(0,0,0,.19), transparent); }
.book-item:hover .book-cover { transform: translateY(-9px) rotate(-1deg); box-shadow: 0 26px 48px rgba(20,33,62,.22); }
.book-cover img { width: 100%; height: 100%; object-fit: cover; }
.book-item > p { display: flex; flex-direction: column; margin-top: 18px; }
.book-item b { font-size: .88rem; }
.book-item span { color: var(--muted); font-size: .65rem; letter-spacing: .03em; overflow-wrap: anywhere; }

.contact { padding-top: 110px; padding-bottom: 110px; background: white; }
.contact-card { position: relative; overflow: hidden; padding: 80px clamp(28px, 7vw, 95px) 42px; background: var(--deep); color: white; }
.contact-card::before { content: ""; position: absolute; width: 460px; height: 460px; border: 90px solid rgba(255,255,255,.055); border-radius: 50%; right: -80px; top: -180px; }
.contact-card .section-label { color: #6ee3e6; }
.contact-card h2 { position: relative; }
.contact-card h2 em { color: var(--yellow); }
.contact-card > p:not(.section-label) { position: relative; max-width: 670px; margin-top: 25px; color: rgba(255,255,255,.7); font-size: 1.03rem; }
.contact-actions { position: relative; display: flex; gap: 12px; margin-top: 38px; }
.contact-meta { position: relative; display: flex; justify-content: space-between; margin-top: 70px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.55); font-size: .78rem; }
.contact-meta a { color: white; }
.contact-mark { position: absolute; right: 65px; bottom: 55px; width: 130px; height: 130px; opacity: .12; }
.contact-mark span { position: absolute; background: white; transform: rotate(-8deg); }
.contact-mark span:nth-child(1) { width: 52px; height: 88px; left: 0; top: 0; }
.contact-mark span:nth-child(2) { width: 52px; height: 88px; right: 0; top: 28px; }
.contact-mark span:nth-child(3) { width: 45px; height: 45px; left: 35px; bottom: 0; }

.site-footer { min-height: 140px; padding: 36px 24px; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 45px; color: var(--muted); font-size: .75rem; }
.footer-brand { color: var(--ink); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .primary-nav { gap: 14px; font-size: .82rem; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) 430px; }
  .cover-card { width: 235px; }
  .cover-card-est { left: 15px; top: 105px; }
  .cover-card-cic { right: 8px; }
  .hero-badge { width: 130px; }
  .about-grid { grid-template-columns: 110px 1fr; }
  .about-aside { grid-column: 2; margin-top: 0; }
  .method-steps { grid-template-columns: repeat(3, 1fr); border-top: 0; }
  .method-steps li { border-top: 1px solid rgba(255,255,255,.18); }
  .program-layout { grid-template-columns: 1fr; }
  .program-map { display: none; }
  .highfive { grid-template-columns: 1fr; }
  .competency-list { min-width: 0; }
  .book-shelf { grid-template-columns: repeat(3, 1fr); row-gap: 48px; }
}

@media (max-width: 1000px) {
  .header-inner { width: min(calc(100% - 32px), var(--max)); min-height: 72px; }
  .menu-button { display: block; position: relative; z-index: 2; }
  .menu-button[aria-expanded="true"] i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 0; padding: 85px 34px 30px; background: var(--paper); transform: translateX(100%); transition: transform .28s ease; }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav a:not(.nav-cta) { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 1.15rem; }
  .primary-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 25px; padding: 14px 20px; text-align: center; }
  .hero { min-height: auto; padding-top: 118px; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { position: relative; z-index: 2; }
  .hero h1 { font-size: clamp(3rem, 13vw, 5rem); }
  .hero-visual { min-height: 560px; margin-top: 25px; }
  .cover-card { width: min(48vw, 260px); }
  .cover-card-est { left: 9%; top: 85px; }
  .cover-card-cic { right: 8%; top: 30px; }
  .hero-footer { display: none; }
  .section { padding: 95px 20px; }
  .about-grid { grid-template-columns: 1fr; }
  .section-kicker { display: none; }
  .about-aside { grid-column: auto; }
  .method-steps { grid-template-columns: 1fr; }
  .method-steps li, .method-steps li:first-child { min-height: auto; padding: 24px 20px 28px 104px; border: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .method-steps li:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
  .step-symbol { position: absolute; left: 20px; top: 39px; width: 52px; height: 52px; margin: 0; }
  .method-steps h3 { margin-top: 15px; }
  .program-cards { grid-template-columns: 1fr; }
  .program-card { min-height: 500px; }
  .competency-list { grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(20,33,62,.2); }
  .competency { min-height: 210px; border-bottom: 1px solid rgba(20,33,62,.2); }
  .case-grid { grid-template-columns: 1fr; }
  .case-card { min-height: 340px; }
  .materials-header { align-items: start; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; gap: 14px; text-align: left; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .brand { min-width: auto; }
  .hero { padding-left: 18px; padding-right: 18px; }
  .hero h1 { letter-spacing: -.07em; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-signature { margin-top: 40px; }
  .hero-visual { min-height: 440px; }
  .cover-card { width: 50vw; }
  .cover-card-est { left: 3%; top: 92px; }
  .cover-card-cic { right: 2%; top: 28px; }
  .hero-badge { width: 105px; right: 4px; bottom: 35px; }
  .hero-badge strong { font-size: .86rem; }
  .hero-badge span { font-size: .61rem; }
  .orbit-one { width: 360px; height: 360px; }
  .section-heading h2, .about-main h2, .highfive-intro h2, .materials-header h2, .contact-card h2 { font-size: 2.4rem; }
  .about-lead { font-size: 1.03rem; }
  .about-aside { padding: 36px 24px 25px; }
  .program-card { min-height: 475px; }
  .program-code { font-size: 3.9rem; }
  .highfive.section { padding-top: 90px; padding-bottom: 90px; }
  .competency-list { grid-template-columns: 1fr; }
  .competency { min-height: 0; padding: 22px; display: grid; grid-template-columns: 45px 1fr; column-gap: 15px; align-items: center; }
  .competency b { grid-row: 1 / 3; margin: 0; }
  .competency p { grid-column: 2; }
  .competency span { grid-column: 1 / -1; margin-top: 15px; }
  .case-card { padding: 29px; }
  .case-note { align-items: flex-start; flex-direction: column; }
  .book-shelf { grid-template-columns: repeat(2, 1fr); gap: 38px 15px; }
  .contact { padding-left: 0; padding-right: 0; }
  .contact-card { padding-top: 65px; }
  .contact-actions { align-items: stretch; flex-direction: column; }
  .contact-meta { align-items: flex-start; flex-direction: column; gap: 7px; margin-top: 48px; }
}

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