@font-face {
  font-family: "Paperlogy";
  src: url("/assets/fonts/Paperlogy-9Black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --navy: #1b2a4a;
  --navy-deep: #101b32;
  --gold: #d4a94e;
  --gold-soft: #e7c879;
  --cream: #f6f1e8;
  --paper: #fffdf8;
  --ink: #171717;
  --muted: #68645d;
  --line: rgba(27, 42, 74, 0.18);
  --line-light: rgba(246, 241, 232, 0.18);
  --display: "Paperlogy", "Arial Black", "Malgun Gothic", sans-serif;
  --body: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
  --max: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --nav-h: 72px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  background: var(--navy-deep);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10001;
  padding: 10px 14px;
  color: var(--navy-deep);
  background: var(--cream);
  border-radius: 999px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

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

/* Loader is opt-in through the js class, so no-script and early JS failures never hide the document. */
.site-loader { display: none; }

.js .site-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--navy-deep);
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition: opacity 320ms ease, transform 320ms cubic-bezier(0.76, 0, 0.24, 1), visibility 0s linear 320ms;
}

.loader-force-release .site-loader,
.loader-skip .site-loader,
.site-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -100%, 0);
}

.site-loader__inner {
  width: min(560px, calc(100vw - 48px));
}

.site-loader__brand {
  margin: 0 0 clamp(38px, 8vh, 88px);
  font-family: var(--display);
  font-size: clamp(36px, 7vw, 78px);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.site-loader__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 12px;
}

.site-loader__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.62;
}

.site-loader__percent {
  font-family: var(--display);
  font-size: clamp(48px, 9vw, 92px);
  line-height: 0.8;
  letter-spacing: -0.06em;
}

.site-loader__track {
  height: 2px;
  overflow: hidden;
  background: rgba(246, 241, 232, 0.18);
}

.site-loader__fill {
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  color: var(--cream);
  background: rgba(16, 27, 50, 0.82);
  border-bottom: 1px solid rgba(246, 241, 232, 0.12);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  width: min(100%, calc(var(--max) + var(--gutter) * 2));
  height: 100%;
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  font-family: var(--display);
  font-size: 23px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.wordmark span { color: var(--gold); }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding-block: 22px;
  color: rgba(246, 241, 232, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-active { color: var(--cream); }

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

.header-cta,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.header-cta,
.button--gold {
  color: var(--navy-deep);
  background: var(--gold);
}

.button--outline {
  color: var(--cream);
  background: transparent;
  border-color: rgba(246, 241, 232, 0.36);
}

.button--dark {
  color: var(--cream);
  background: var(--navy);
}

.header-cta:hover,
.button:hover { transform: translateY(-2px); }

.header-cta:focus-visible,
.button:focus-visible,
.menu-toggle:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 4px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 auto;
  z-index: 99;
  display: grid;
  gap: 6px;
  padding: 20px var(--gutter) 28px;
  color: var(--cream);
  background: var(--navy-deep);
  border-bottom: 1px solid var(--line-light);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.mobile-menu a:not(.button) {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  font-weight: 700;
}

.hero {
  min-height: 100svh;
  padding: calc(var(--nav-h) + clamp(28px, 5vh, 62px)) var(--gutter) clamp(36px, 6vh, 76px);
  display: grid;
  align-items: center;
  color: var(--cream);
  background:
    radial-gradient(circle at 14% 20%, rgba(212, 169, 78, 0.16), transparent 31%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 68%, #24385e 100%);
}

.hero__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 55fr) minmax(360px, 45fr);
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
}

.kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.kicker::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-title,
.proof-card__number,
.timeline-card__year,
.path-card__number {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(48px, 5.8vw, 82px);
  line-height: 1.03;
}

.hero h1 em { color: var(--gold); font-style: normal; }

.hero__lede {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(246, 241, 232, 0.72);
  font-size: clamp(16px, 1.4vw, 20px);
}

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

.hero__mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(246, 241, 232, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.hero__mini-proof li { display: flex; align-items: center; gap: 8px; }
.hero__mini-proof li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.hero__visual {
  position: relative;
  min-width: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__frame {
  position: relative;
  width: min(100%, 490px);
  height: min(74svh, 720px);
  min-height: 520px;
  overflow: hidden;
  border-radius: 240px 240px 18px 18px;
  background: #d9d0c1;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.36);
}

.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(16, 27, 50, 0.72));
  pointer-events: none;
}

.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.hero__caption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  color: var(--cream);
}

.hero__caption strong { font-size: 15px; }
.hero__caption span { font-size: 11px; letter-spacing: 0.12em; opacity: 0.72; }

.hero__stamp {
  position: absolute;
  top: 13%;
  left: -34px;
  z-index: 3;
  width: 112px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--navy-deep);
  background: var(--gold);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  transform: rotate(-9deg);
}

.section {
  padding: clamp(84px, 10vw, 150px) var(--gutter);
}

.section__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  align-items: end;
  gap: 36px;
  margin-bottom: clamp(40px, 6vw, 76px);
}

.section-title {
  max-width: 900px;
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.06;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.proof-section {
  color: var(--cream);
  background: var(--navy-deep);
  border-top: 1px solid var(--line-light);
}

.proof-section .section-title { color: var(--cream); }
.proof-section .section-heading p { color: rgba(246, 241, 232, 0.66); }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.proof-card {
  min-height: 250px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line-light);
}

.proof-card:last-child { border-right: 0; }
.proof-card__index { color: rgba(246, 241, 232, 0.42); font-size: 11px; letter-spacing: 0.14em; }
.proof-card__number { color: var(--gold); font-size: clamp(58px, 6vw, 88px); line-height: 0.92; }
.proof-card__number small { margin-left: 3px; color: var(--cream); font-family: var(--body); font-size: 15px; letter-spacing: 0; }
.proof-card p { margin: 18px 0 0; color: rgba(246, 241, 232, 0.72); font-size: 13px; }

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

.timeline-card {
  grid-column: span 3;
  min-width: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(27, 42, 74, 0.14);
}

.timeline-card--wide { grid-column: span 6; }

.timeline-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.timeline-card--portrait img { object-position: center 20%; }

.timeline-card__body { padding: 24px; }
.timeline-card__year { color: var(--gold); font-size: 46px; line-height: 1; }
.timeline-card h3 { margin: 16px 0 8px; color: var(--navy-deep); font-size: 20px; line-height: 1.35; }
.timeline-card p { margin: 0; color: var(--muted); font-size: 14px; }

.program-section { background: #ebe4d8; }

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

.program-card {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  color: var(--cream);
  background: var(--navy);
  border-radius: 24px;
}

.program-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0, 1);
}

.program-card:hover img { transform: scale(1.035); }

.program-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 27, 50, 0.04) 24%, rgba(16, 27, 50, 0.94) 100%);
}

.program-card__body {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
}

.program-card__for { color: var(--gold-soft); font-size: 12px; font-weight: 800; letter-spacing: 0.1em; }
.program-card h3 { margin: 8px 0 10px; font-size: 27px; line-height: 1.25; }
.program-card p { margin: 0; color: rgba(246, 241, 232, 0.72); font-size: 14px; }
.program-card .text-link { margin-top: 20px; }

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 800;
}

.text-link::after { content: "↗"; font-size: 17px; transition: transform 200ms ease; }
.text-link:hover::after { transform: translate(3px, -3px); }

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

.business-grid { display: grid; gap: 28px; }

.business-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--cream);
}

.business-card:nth-child(even) { grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr); }
.business-card:nth-child(even) .business-card__media { order: 2; }

.business-card__media { min-width: 0; padding: 22px; }
.business-card__media img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.business-card__body { padding: clamp(32px, 5vw, 68px); display: flex; flex-direction: column; justify-content: center; }
.business-card__label { color: var(--gold); font-size: 11px; font-weight: 900; letter-spacing: 0.16em; }
.business-card h3 { margin: 14px 0 16px; color: var(--navy-deep); font-family: var(--display); font-size: clamp(34px, 4vw, 56px); line-height: 1.05; letter-spacing: -0.05em; }
.business-card p { margin: 0 0 26px; color: var(--muted); }
.business-card .button { align-self: flex-start; }

.record-section { background: var(--navy); color: var(--cream); }
.record-section .section-title { color: var(--cream); }
.record-section .section-heading p { color: rgba(246, 241, 232, 0.66); }

.record-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.record-card { margin: 0; border-top: 1px solid var(--line-light); padding-top: 14px; }
.record-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 18px; }
.record-card figcaption { padding: 18px 2px 0; }
.record-card strong { display: block; font-size: 18px; }
.record-card span { display: block; margin-top: 4px; color: rgba(246, 241, 232, 0.62); font-size: 13px; }

.direction-section {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background: var(--navy-deep);
}

.direction-section::before {
  content: "WHYBE";
  position: absolute;
  right: -0.04em;
  bottom: -0.2em;
  color: rgba(246, 241, 232, 0.035);
  font-family: var(--display);
  font-size: min(31vw, 430px);
  line-height: 1;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.direction-section .section-title { color: var(--cream); }
.direction-section .section-heading p { color: rgba(246, 241, 232, 0.66); }

.path-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.path-card {
  min-height: 330px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--cream);
  background: rgba(246, 241, 232, 0.06);
  border: 1px solid var(--line-light);
  border-radius: 22px;
  transition: background 240ms ease, transform 240ms ease;
}

.path-card:hover { background: rgba(246, 241, 232, 0.11); transform: translateY(-6px); }
.path-card__number { color: var(--gold); font-size: 54px; line-height: 1; }
.path-card h3 { margin: auto 0 10px; font-size: 24px; line-height: 1.3; }
.path-card p { margin: 0 0 20px; color: rgba(246, 241, 232, 0.66); font-size: 14px; }
.path-card .button { width: 100%; }

.privacy-note { position: relative; margin: 24px 0 0; color: rgba(246, 241, 232, 0.52); font-size: 12px; }

.faq-section { background: var(--cream); }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  min-height: 86px;
  padding: 24px 54px 24px 0;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--navy-deep);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 8px; color: var(--gold); font-size: 30px; font-weight: 400; transition: transform 200ms ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__answer { max-width: 820px; padding: 0 48px 28px 0; color: var(--muted); }

.site-footer {
  padding: 56px var(--gutter) 32px;
  color: var(--cream);
  background: #0b1324;
}

.site-footer__inner { width: min(100%, var(--max)); margin: 0 auto; }
.site-footer__top { display: grid; grid-template-columns: 1fr auto; gap: 36px; padding-bottom: 42px; border-bottom: 1px solid var(--line-light); }
.site-footer__tagline { max-width: 580px; margin: 18px 0 0; color: rgba(246, 241, 232, 0.58); }
.site-footer__links { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: flex-end; gap: 12px 24px; font-size: 13px; font-weight: 700; }
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 8px 22px; padding-top: 26px; color: rgba(246, 241, 232, 0.46); font-size: 11px; }

.js .reveal { opacity: 0; transform: translate3d(0, 28px, 0); }
.js .reveal.is-visible { opacity: 1; transform: translate3d(0, 0, 0); transition: opacity 520ms ease, transform 520ms cubic-bezier(0.2, 0.7, 0, 1); }
.js .reveal[data-delay="1"].is-visible { transition-delay: 80ms; }
.js .reveal[data-delay="2"].is-visible { transition-delay: 160ms; }

@media (max-width: 1080px) {
  :root { --nav-h: 66px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .site-header__inner { gap: 14px; }
  .header-cta { margin-left: auto; }
  .hero__inner { grid-template-columns: minmax(0, 52fr) minmax(300px, 48fr); gap: 34px; }
  .hero h1 { font-size: clamp(42px, 6vw, 66px); }
  .hero__frame { min-height: 500px; height: min(68svh, 650px); }
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
  .proof-card:nth-child(3) { border-right: 0; }
  .proof-card:nth-child(n + 4) { border-top: 1px solid var(--line-light); }
  .timeline-card { grid-column: span 6; }
  .program-card { min-height: 520px; }
}

@media (max-width: 780px) {
  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 38px); }
  .hero__inner { grid-template-columns: minmax(0, 1fr) minmax(250px, 0.62fr); gap: 24px; }
  .hero h1 { font-size: clamp(38px, 7vw, 54px); }
  .hero__lede { font-size: 15px; }
  .hero__frame { min-height: 460px; height: 64svh; border-radius: 180px 180px 16px 16px; }
  .hero__stamp { left: -18px; width: 92px; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .program-grid,
  .record-grid,
  .path-grid { grid-template-columns: 1fr; }
  .program-card { min-height: 520px; }
  .business-card,
  .business-card:nth-child(even) { grid-template-columns: 1fr; }
  .business-card:nth-child(even) .business-card__media { order: 0; }
  .business-card__media { min-height: 280px; }
  .path-card { min-height: 270px; }
}

@media (max-width: 560px) {
  :root { --nav-h: 58px; --gutter: 18px; }
  .header-cta { display: none; }
  .wordmark { font-size: 20px; }
  .hero {
    min-height: 100svh;
    padding-top: calc(var(--nav-h) + 18px);
    padding-bottom: 18px;
    align-items: stretch;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(260px, 1fr);
    gap: 16px;
  }
  .kicker { margin-bottom: 10px; font-size: 9px; }
  .hero h1 { font-size: clamp(32px, 9.8vw, 40px); line-height: 1.04; }
  .hero__lede { display: none; }
  .hero__actions { margin-top: 16px; }
  .hero__actions .button { width: 100%; }
  .hero__actions .button--outline { display: none; }
  .hero__mini-proof { margin-top: 12px; }
  .hero__mini-proof li:not(:first-child) { display: none; }
  .hero__visual { min-height: 0; }
  .hero__frame { width: 100%; height: 100%; min-height: 260px; max-height: 39svh; border-radius: 150px 150px 14px 14px; }
  .hero__frame img { object-position: center 29%; }
  .hero__caption { right: 16px; bottom: 14px; left: 16px; }
  .hero__caption strong { font-size: 12px; }
  .hero__caption span { font-size: 9px; }
  .hero__stamp { top: 8%; left: -8px; width: 72px; padding: 10px; font-size: 8px; }
  .section { padding-block: 78px; }
  .section-title { font-size: clamp(36px, 12vw, 50px); }
  .section-heading { margin-bottom: 34px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-card { min-height: 190px; padding: 22px 16px; border-top: 1px solid var(--line-light); }
  .proof-card:first-child,
  .proof-card:nth-child(2) { border-top: 0; }
  .proof-card:nth-child(2n) { border-right: 0; }
  .proof-card:nth-child(3) { border-right: 1px solid var(--line-light); }
  .proof-card:last-child { grid-column: 1 / -1; border-right: 0; }
  .proof-card__number { font-size: 58px; }
  .timeline-grid { grid-template-columns: 1fr; }
  .timeline-card,
  .timeline-card--wide { grid-column: auto; }
  .timeline-card__body { padding: 20px; }
  .program-card { min-height: 470px; }
  .program-card__body { padding: 24px; }
  .business-card__body { padding: 28px 22px 34px; }
  .business-card__media { min-height: 220px; padding: 14px; }
  .record-card img { border-radius: 14px; }
  .faq-item summary { min-height: 74px; padding-block: 20px; font-size: 17px; }
  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__links { justify-content: flex-start; }
  .site-loader__brand { font-size: 42px; }
}

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