:root {
  color-scheme: light;
  --bg: #faf9f5;
  --surface: #fffefa;
  --surface-strong: #f2eae0;
  --text: #292624;
  --muted: #6d6863;
  --line: rgba(75, 33, 28, 0.16);
  --accent: #e76550;
  --accent-dark: #b94635;
  --brown: #4b211c;
  --on-accent: #fffaf5;
  --shadow: rgba(49, 38, 34, 0.16);
  --radius: 14px;
  --content: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
summary,
a {
  outline-offset: 4px;
}

:focus-visible {
  outline: 3px solid var(--accent);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 76px;
  padding: 12px max(24px, calc((100vw - 1320px) / 2));
  color: #fffaf5;
  background: linear-gradient(to bottom, rgba(12, 17, 16, 0.7), transparent);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  filter: invert(1);
}

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

.brand strong {
  font-size: 18px;
  font-weight: 750;
}

.brand small {
  margin-top: 4px;
  font-size: 11px;
  opacity: 0.8;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.header-cta {
  min-height: 42px;
  color: var(--on-accent);
  background: var(--accent);
}

.header-cta:hover,
.button-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.header-cta:active,
.button:active {
  transform: scale(0.98);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 92dvh;
  overflow: hidden;
  color: #fffaf5;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 18%;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(8, 12, 12, 0.86) 0%, rgba(8, 12, 12, 0.47) 48%, rgba(8, 12, 12, 0.05) 80%),
    linear-gradient(0deg, rgba(8, 12, 12, 0.68) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--content);
  margin: 0 auto;
  padding: 0 0 clamp(72px, 10vh, 116px);
}

.hero-kicker,
.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.hero h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(42px, 5.3vw, 74px);
  line-height: 1.02;
  font-weight: 760;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 250, 245, 0.88);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  text-wrap: pretty;
}

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

.button-primary {
  color: var(--on-accent);
  background: var(--accent);
}

.button-ghost {
  color: #fffaf5;
  border: 1px solid rgba(255, 250, 245, 0.62);
  background: rgba(20, 24, 22, 0.28);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  color: var(--text);
  background: var(--surface);
  transform: translateY(-2px);
}

.fact-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: var(--content);
  margin: -28px auto 0;
  position: relative;
  z-index: 4;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 20px 50px var(--shadow);
}

.fact-band div {
  display: grid;
  gap: 3px;
  padding: 23px clamp(15px, 2vw, 30px);
}

.fact-band div + div {
  border-left: 1px solid var(--line);
}

.fact-band strong {
  color: var(--accent);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.15;
}

.fact-band span {
  color: var(--muted);
  font-size: 13px;
}

.story,
.founder {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.story {
  padding-top: clamp(64px, 7vw, 84px);
  padding-bottom: clamp(64px, 7vw, 84px);
}

.story h2,
.founder h2 {
  max-width: 18ch;
  margin: 0 0 22px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.12;
}

.story-copy > p:not(.eyebrow),
.founder-copy > p:not(.eyebrow) { max-width: 700px; color: var(--muted); line-height: 1.8; }

.timeline { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.timeline li { display: grid; grid-template-columns: 88px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.timeline strong { color: var(--accent); font-size: 25px; }
.timeline span { align-self: center; }

.founder > img { width: 100%; min-height: 520px; object-fit: cover; border-radius: 8px; }

.guarantees { padding: clamp(68px, 7vw, 96px) max(24px, calc((100vw - 1180px) / 2)); color: #fffefa; background: #4b211c; }
.guarantee-intro { max-width: 880px; margin-bottom: 42px; }
.guarantees h2 { max-width: 17ch; margin: 0 0 18px; font-size: clamp(36px, 3.8vw, 48px); line-height: 1.14; text-wrap: balance; }
.guarantee-intro > p:last-child { color: rgba(255,254,250,.68); }
.guarantee-list { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid rgba(255,255,255,.25); }
.guarantee-list div { display: grid; gap: 10px; min-height: 145px; padding: 25px 20px; border-bottom: 1px solid rgba(255,255,255,.25); }
.guarantee-list div:first-child { grid-column: 1 / -1; grid-template-columns: 220px 1fr; align-items: center; min-height: 0; background: rgba(255,255,255,.08); }
.guarantee-list div:not(:first-child):not(:nth-child(5n+2)) { border-left: 1px solid rgba(255,255,255,.25); }
.guarantee-list strong { font-size: 19px; text-wrap: balance; }
.guarantee-list span { color: rgba(255,254,250,.72); font-size: 14px; }
.guarantee-note { margin: 18px 0 0; color: rgba(255,254,250,.58); font-size: 12px; }

@media (max-width: 900px) {
  .story, .founder { grid-template-columns: 1fr; }
  .guarantee-list { grid-template-columns: 1fr 1fr; }
  .guarantee-list div:not(:first-child):not(:nth-child(5n+2)) { border-left: 0; }
  .guarantee-list div:nth-child(odd):not(:first-child) { border-left: 1px solid rgba(255,255,255,.25); }
}

@media (max-width: 600px) {
  .guarantee-list { grid-template-columns: 1fr; }
  .guarantee-list div:first-child { grid-template-columns: 1fr; }
  .course-content ul { grid-template-columns: 1fr; }
  .guarantee-list div:nth-child(odd):not(:first-child) { border-left: 0; }
  .founder > img { min-height: 360px; }
}

.section {
  width: var(--content);
  margin: 0 auto;
  padding: clamp(72px, 8vw, 104px) 0;
}

.section-wide {
  width: 100%;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
}

.title-lines span {
  display: block;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2,
.campus-intro h2,
.teacher-copy h2,
.credential-copy h2,
.contact h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading > p:not(.eyebrow),
.campus-intro p,
.teacher-copy p,
.credential-copy p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.advantages {
  margin-top: 0;
  padding-top: clamp(72px, 8vw, 104px);
  padding-bottom: clamp(72px, 8vw, 104px);
  background: var(--surface);
}

.advantage-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: 300px 300px;
  gap: 16px;
}

.advantage {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.advantage-main {
  grid-row: 1 / 3;
  color: #fffaf5;
}

.advantage-main::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(14, 18, 17, 0.8), transparent 66%);
}

.advantage-main img,
.advantage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advantage-main div {
  position: absolute;
  right: 34px;
  bottom: 32px;
  left: 34px;
  z-index: 2;
}

.advantage h3 {
  margin: 0;
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.2;
}

.advantage p {
  max-width: 530px;
  margin: 12px 0 0;
}

.advantage-text {
  padding: 30px;
  background: var(--accent);
  color: var(--on-accent);
}

.large-mark {
  display: block;
  margin: -20px 0 -18px;
  font-size: 108px;
  font-weight: 800;
  line-height: 1;
  opacity: 0.18;
}

.advantage-image {
  display: none;
}

.advantage-support {
  padding: 32px;
  color: var(--text);
  background: var(--surface-strong);
}

.advantage-support a,
.text-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--accent);
  font-weight: 800;
}

.advantage-support a::after,
.text-link::after {
  content: " →";
}

.level-path { padding: clamp(72px, 8vw, 108px) max(24px, calc((100vw - 1320px) / 2)); background: var(--surface-strong); }
.level-heading { max-width: 780px; margin-bottom: 48px; }
.level-heading h2 { max-width: 16ch; margin: 0 0 20px; font-size: clamp(36px, 4.5vw, 56px); line-height: 1.12; text-wrap: balance; }
.level-heading > p:last-child { color: var(--muted); }
.level-flow { display: grid; grid-template-columns: 1fr 52px 1fr 52px 1fr; align-items: stretch; }
.level-card { display: flex; flex-direction: column; min-width: 0; padding: clamp(24px, 3vw, 38px); border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
.level-top { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.level-top strong { color: var(--accent); font-size: 36px; }
.level-top span { color: var(--muted); font-size: 13px; }
.level-card h3 { min-height: 84px; margin: 24px 0 18px; font-size: clamp(20px, 2vw, 27px); line-height: 1.35; }
.level-card ul { display: grid; gap: 8px; margin: 0 0 26px; padding: 0; list-style: none; color: var(--muted); font-size: 14px; }
.level-card li { position: relative; padding-left: 14px; }
.level-card li::before { position: absolute; top: .7em; left: 0; width: 5px; height: 5px; border-radius: 50%; content: ""; background: var(--accent); }
.level-card p { display: grid; gap: 4px; margin: auto 0 22px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 14px; }
.level-card p b { color: var(--muted); font-size: 12px; }
.level-card a { color: var(--accent); font-size: 14px; font-weight: 800; }
.level-card a::after { content: " →"; }
.level-arrow { display: grid; place-items: center; color: var(--accent); font-size: 28px; }
.level-note { max-width: 1000px; margin: 26px 0 0; color: var(--muted); font-size: 13px; }

.courses {
  padding-top: 80px;
}

.course-browser {
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 24px 70px var(--shadow);
  overflow: hidden;
}

.course-tabs {
  display: flex;
  gap: 7px;
  padding: 14px;
  overflow-x: auto;
  scrollbar-width: thin;
  border-bottom: 1px solid var(--line);
}

.course-tabs button {
  min-height: 42px;
  padding: 0 17px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.course-tabs button[aria-selected="true"] {
  color: var(--on-accent);
  background: var(--accent);
}

.course-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 470px;
}

.course-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(32px, 5vw, 70px);
}

.course-for {
  margin: 0 0 18px;
  color: var(--accent);
  font-weight: 750;
}

.course-copy h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
}

.course-copy > p:not(.course-for) {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.course-content {
  grid-column: 1 / -1;
  padding: 34px clamp(32px, 5vw, 70px) 50px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.course-content-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 22px;
}

.course-content-heading div {
  display: grid;
  gap: 4px;
}

.course-content-heading span {
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
}

.course-content-heading strong {
  font-size: 25px;
  line-height: 1.25;
}

.course-content-heading p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

.course-detail-groups {
  display: grid;
  gap: 12px;
}

.course-detail-group {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.course-detail-group[open] {
  border-color: rgba(213, 70, 45, 0.28);
}

.course-detail-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 54px;
  padding: 14px 18px;
  cursor: pointer;
  list-style: none;
}

.course-detail-group summary::-webkit-details-marker {
  display: none;
}

.course-detail-group summary span {
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
}

.course-detail-group summary b {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 13px;
}

.course-content ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 34px;
  margin: 0;
  padding: 0 18px 22px;
  list-style: none;
}

.course-content li {
  position: relative;
  padding-left: 17px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.course-content li::before { position: absolute; top: .7em; left: 0; width: 5px; height: 5px; border-radius: 50%; content: ""; background: var(--accent); }

.course-panel.is-special .course-content ul { gap: 12px 28px; }
.course-panel.is-special .course-content li { color: var(--text); font-weight: 650; }
.course-panel.is-special .course-outcomes { display: none; }
.course-panel.is-special .course-meta { margin-top: 26px; }

.course-outcomes { display: grid; gap: 0; margin-top: 22px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.course-outcomes div { display: grid; grid-template-columns: 76px 1fr; gap: 12px; padding: 11px 0; }
.course-outcomes div + div { border-top: 1px solid var(--line); }
.course-outcomes span { color: var(--muted); font-size: 12px; }
.course-outcomes strong { font-size: 13px; font-weight: 650; line-height: 1.55; }

.course-meta {
  display: flex;
  gap: 34px;
  margin-top: 30px;
}

.course-meta span {
  display: grid;
  color: var(--muted);
  font-size: 13px;
}

.course-meta strong {
  color: var(--text);
  font-size: 24px;
}

.course-meta s {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.course-meta em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.course-meta s:not([hidden]) + em {
  color: var(--accent);
  font-weight: 800;
}

.course-panel > img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  align-self: stretch;
  object-fit: cover;
  object-position: center top;
}

.course-panel > img[data-course-fit="contain"] {
  object-fit: contain;
  object-position: center;
  background: #171513;
}

.course-panel.is-changing .course-copy {
  opacity: 0;
  transform: translateY(8px);
}

.course-copy {
  transition: opacity 180ms ease, transform 180ms ease;
}

.course-note {
  margin: 0;
  padding: 14px 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.specialty-band { display: grid; grid-template-columns: 1fr 1fr auto; gap: 0; align-items: stretch; margin-top: 22px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.specialty-band article { padding: 26px 26px 24px 0; }
.specialty-band article + article { padding-left: 26px; border-left: 1px solid var(--line); }
.specialty-band span { color: var(--accent); font-size: 13px; font-weight: 800; }
.specialty-band h3 { margin: 7px 0 8px; font-size: 20px; }
.specialty-band p { margin: 0; color: var(--muted); font-size: 14px; }
.specialty-band > a { display: grid; min-width: 168px; padding: 24px; place-items: center; color: #fffefa; text-align: center; background: var(--brown); font-size: 14px; font-weight: 800; }

.campus {
  background: var(--surface-strong);
}

.campus-intro {
  max-width: 730px;
  margin-bottom: 48px;
}

.campus-gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: repeat(2, 280px);
  gap: 15px;
}

.campus-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.campus-gallery .gallery-main {
  grid-row: 1 / 3;
}

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

.gallery-main img {
  object-position: center 18%;
}

.campus-gallery .gallery-wash img { object-position: center 42%; }

.campus-gallery figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  color: #fffaf5;
  background: rgba(18, 23, 21, 0.72);
  font-size: 13px;
  backdrop-filter: blur(8px);
}

.training-evidence { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 14px; }
.training-evidence figure { position: relative; height: 230px; margin: 0; overflow: hidden; border-radius: 8px; }
.training-evidence img { width: 100%; height: 100%; object-fit: cover; }
.training-evidence figcaption { position: absolute; right: 10px; bottom: 10px; left: 10px; padding: 9px 10px; color: #fffefa; background: rgba(41,38,36,.76); font-size: 12px; }

.alumni { display: grid; grid-template-columns: .68fr 1.32fr; gap: clamp(40px, 7vw, 88px); align-items: center; }
.alumni-copy h2 { margin: 0 0 20px; font-size: clamp(34px, 4vw, 50px); line-height: 1.12; text-wrap: balance; }
.alumni-copy > p:not(.eyebrow) { color: var(--muted); }
.alumni-controls { display: flex; align-items: center; gap: 12px; margin-top: 26px; }
.alumni-controls button { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--text); background: var(--surface); font-size: 20px; cursor: pointer; }
.alumni-controls span { min-width: 62px; color: var(--muted); text-align: center; font-size: 13px; }
.alumni-results { display: grid; grid-template-columns: repeat(3, 1fr); margin: 28px 0 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.alumni-results span { display: grid; gap: 3px; padding: 15px 10px; color: var(--muted); font-size: 12px; text-align: center; }
.alumni-results span + span { border-left: 1px solid var(--line); }
.alumni-results b { color: var(--text); font-size: 15px; }
.alumni-rail { display: flex; min-width: 0; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.alumni-rail::-webkit-scrollbar { display: none; }
.alumni-rail figure { position: relative; min-width: 100%; aspect-ratio: 4 / 3; margin: 0; overflow: hidden; border-radius: 8px; background: var(--surface-strong); scroll-snap-align: start; }
.alumni-rail img { width: 100%; height: 100%; object-fit: cover; }
.alumni-rail figure:nth-child(-n+4) img { object-fit: contain; }
.alumni-rail figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 18px; color: #fffefa; background: linear-gradient(transparent, rgba(41,38,36,.9)); font-size: 13px; }

.teachers {
  display: grid;
  grid-template-columns: 0.64fr 1.36fr;
  align-items: start;
  gap: clamp(38px, 7vw, 90px);
}

.teacher-copy {
  position: sticky;
  top: 40px;
}

.teacher-carousel { min-width: 0; }
.teacher-controls { display: flex; align-items: center; justify-content: flex-end; gap: 12px; margin-bottom: 14px; }
.teacher-controls button { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--text); background: var(--surface); font-size: 20px; cursor: pointer; }
.teacher-controls button:hover { color: var(--on-accent); background: var(--accent); }
.teacher-controls span { min-width: 62px; color: var(--muted); text-align: center; font-size: 13px; }
.teacher-rail { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.teacher-rail::-webkit-scrollbar { display: none; }
.teacher-rail img { width: 100%; min-width: 100%; aspect-ratio: 1.42 / 1; object-fit: cover; border-radius: 8px; scroll-snap-align: start; box-shadow: 0 18px 55px var(--shadow); }

.teacher-showcase { padding: clamp(76px, 8vw, 112px) max(24px, calc((100vw - 1320px) / 2)); overflow: hidden; background: var(--surface); }
.teacher-heading { max-width: 820px; margin-bottom: 46px; }
.teacher-heading h2 { max-width: 18ch; margin: 0 0 20px; font-size: clamp(38px, 4.5vw, 56px); line-height: 1.1; text-wrap: balance; }
.teacher-heading > p:last-child { max-width: 680px; color: var(--muted); }
.teacher-workspace { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(330px, .75fr); min-height: 570px; overflow: hidden; border-radius: 8px; box-shadow: 0 18px 55px var(--shadow); }
.teacher-stage { position: relative; height: 570px; overflow: hidden; border-radius: 0; background: linear-gradient(135deg, #f2eae0 0%, #faf9f5 48%, #e9f7fa 100%); }
.teacher-stage::before { position: absolute; inset: 50% auto auto 50%; width: 440px; height: 440px; content: ""; border: 1px solid rgba(231,101,80,.28); border-radius: 50%; transform: translate(-50%,-46%); }
.teacher-person { position: absolute; top: 8px; left: 50%; width: 420px; height: 510px; padding: 0; overflow: visible; border: 0; color: var(--text); background: transparent; opacity: 0; pointer-events: none; transform: translateX(-50%) scale(.68); transition: transform 520ms cubic-bezier(.22,.8,.25,1), opacity 320ms ease, filter 320ms ease; cursor: pointer; }
.teacher-person img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 24px 24px rgba(75,33,28,.16)); }
.teacher-person span { position: absolute; right: 28px; bottom: 12px; left: 28px; display: grid; gap: 2px; padding: 12px 14px; border-radius: 6px; text-align: center; background: rgba(255,254,250,.9); backdrop-filter: blur(8px); }
.teacher-person b { font-size: 19px; }
.teacher-person small { color: var(--muted); font-size: 11px; }
.teacher-person.is-current { z-index: 3; opacity: 1; pointer-events: auto; transform: translateX(-50%) scale(1); }
.teacher-person.is-prev { z-index: 2; opacity: .5; pointer-events: auto; filter: saturate(.65); transform: translateX(calc(-50% - 390px)) scale(.64); }
.teacher-person.is-next { z-index: 2; opacity: .5; pointer-events: auto; filter: saturate(.65); transform: translateX(calc(-50% + 390px)) scale(.64); }
.teacher-stage-controls { position: absolute; right: 24px; bottom: 20px; z-index: 6; display: flex; align-items: center; gap: 10px; }
.teacher-stage-controls button, .teacher-close { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--text); background: var(--surface); font-size: 20px; cursor: pointer; }
.teacher-stage-controls span { min-width: 62px; color: var(--muted); text-align: center; font-size: 13px; }
.teacher-profile { position: relative; display: flex; min-width: 0; height: 570px; padding: 44px 34px 34px; overflow: hidden; flex-direction: column; justify-content: center; border-radius: 0; background: var(--brown); color: #fffefa; text-align: center; opacity: 1; transform: none; }
.teacher-profile.is-open { max-height: none; margin-top: 0; padding: 44px 34px 34px; opacity: 1; transform: none; }
.teacher-profile h3 { margin: 0; font-size: clamp(38px, 4vw, 54px); line-height: 1; }
.teacher-role { margin: 0 0 10px; color: #f09a87; font-weight: 800; }
.teacher-summary { max-width: 760px; margin: 18px auto 24px; color: rgba(255,254,250,.78); font-size: 14px; }
.teacher-profile dl { display: grid; grid-template-columns: 1fr; width: 100%; margin: 0; border-top: 1px solid rgba(255,255,255,.2); }
.teacher-profile dl div { display: grid; gap: 5px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.teacher-profile dl div + div { border-left: 0; }
.teacher-profile dt { color: rgba(255,254,250,.58); font-size: 12px; }
.teacher-profile dd { margin: 0; font-size: 14px; text-align: center; }
.teacher-close { position: absolute; top: 18px; right: 18px; color: #fffefa; border-color: rgba(255,255,255,.28); background: transparent; }
.teacher-index { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 26px; border-top: 1px solid var(--line); }
.teacher-index button { display: grid; gap: 4px; padding: 17px 14px; border: 0; border-bottom: 1px solid var(--line); color: var(--text); text-align: center; background: transparent; cursor: pointer; }
.teacher-index button:not(:nth-child(3n+1)) { border-left: 1px solid var(--line); }
.teacher-index b { font-size: 16px; }
.teacher-index span { color: var(--muted); font-size: 12px; }

.credentials { padding: clamp(72px, 8vw, 108px) max(24px, calc((100vw - 1320px) / 2)); background: var(--surface-strong); }
.credentials-heading { max-width: 760px; margin-bottom: 32px; }
.credentials-heading h2 { margin: 0 0 20px; font-size: clamp(36px, 4.2vw, 52px); line-height: 1.12; text-wrap: balance; }
.certificate-copy h2, .starter-support-copy h2 { max-width: 11ch; margin: 0 0 18px; font-size: clamp(34px, 3.7vw, 46px); line-height: 1.14; text-wrap: balance; }
.credentials-heading > p:last-child { color: var(--muted); }
.credential-gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.credential-gallery figure, .certificate-images figure { position: relative; margin: 0; overflow: hidden; border-radius: 8px; background: var(--surface); }
.credential-gallery figure { display: grid; grid-column: span 4; grid-template-rows: minmax(0, 1fr) auto; height: 330px; }
.credential-zoom { display: grid; width: 100%; min-width: 0; min-height: 0; padding: 0; overflow: hidden; border: 0; background: #f7f4ed; cursor: zoom-in; }
.credential-gallery img { display: block; width: 100%; height: 100%; min-height: 0; padding: 12px; object-fit: contain; background: #f7f4ed; transition: transform 260ms ease; }
.credential-zoom:hover img { transform: scale(1.025); }
.credential-zoom:focus-visible { outline: 3px solid var(--accent); outline-offset: -3px; }
.credential-gallery figcaption, .certificate-images figcaption { position: absolute; right: 0; bottom: 0; left: 0; display: grid; gap: 2px; padding: 16px 18px; color: #fffefa; background: linear-gradient(transparent, rgba(41,38,36,.88)); }
.credential-gallery figcaption { position: static; min-height: 66px; background: var(--brown); }
.credential-gallery figcaption strong, .certificate-images figcaption strong { font-size: 15px; }
.credential-gallery figcaption span, .certificate-images figcaption span { color: rgba(255,254,250,.75); font-size: 11px; }

.credential-lightbox { width: min(94vw, 1120px); height: min(92vh, 840px); padding: 0; overflow: hidden; border: 0; border-radius: 8px; color: #fffefa; background: #191817; box-shadow: 0 30px 90px rgba(0,0,0,.42); }
.credential-lightbox::backdrop { background: rgba(12,11,10,.84); backdrop-filter: blur(5px); }
.credential-lightbox figure { display: grid; grid-template-rows: minmax(0,1fr) auto; width: 100%; height: 100%; margin: 0; }
.credential-lightbox figure > img { display: block; width: 100%; height: 100%; min-height: 0; padding: 34px 76px 18px; object-fit: contain; }
.credential-lightbox figcaption { display: grid; gap: 3px; padding: 16px 72px 20px; text-align: center; background: rgba(255,255,255,.05); }
.credential-lightbox figcaption strong { font-size: 17px; }
.credential-lightbox figcaption span { color: rgba(255,254,250,.68); font-size: 12px; }
.credential-lightbox-close, .credential-lightbox-nav { position: absolute; z-index: 2; display: grid; place-items: center; width: 44px; height: 44px; padding: 0; color: #fff; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: rgba(18,17,16,.72); cursor: pointer; }
.credential-lightbox-close { top: 16px; right: 16px; font-size: 28px; line-height: 1; }
.credential-lightbox-nav { top: 50%; font-size: 22px; transform: translateY(-50%); }
.credential-lightbox-prev { left: 18px; }
.credential-lightbox-next { right: 18px; }
.credential-lightbox-close:hover, .credential-lightbox-nav:hover { border-color: #fff; background: rgba(18,17,16,.92); }

.certificate-path { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 5vw, 68px); align-items: center; padding-top: clamp(68px, 7vw, 88px); padding-bottom: clamp(68px, 7vw, 88px); }
.certificate-copy ol { display: grid; gap: 0; margin: 24px 0; padding: 0; list-style: none; counter-reset: certificate-step; border-top: 1px solid var(--line); }
.certificate-copy li { display: grid; grid-template-columns: 150px 1fr; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line); counter-increment: certificate-step; }
.certificate-copy li b::before { margin-right: 8px; color: var(--accent); content: "0" counter(certificate-step); }
.certificate-copy li span, .certificate-note { color: var(--muted); font-size: 14px; }
.certificate-images { position: relative; left: 26px; display: grid; grid-template-columns: 1fr 52px 1fr; align-items: center; }
.certificate-images figure { aspect-ratio: 4 / 3; background: #f7f4ed; box-shadow: 0 18px 55px var(--shadow); }
.certificate-images img { width: 100%; height: 100%; object-fit: contain; }
.certificate-arrow { color: var(--accent); text-align: center; font-size: 28px; }

.starter-support {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: clamp(32px, 4vw, 48px);
  align-items: center;
  padding-top: clamp(68px, 7vw, 88px);
  padding-bottom: clamp(68px, 7vw, 88px);
  background: var(--surface-strong);
  box-shadow: 0 0 0 100vmax var(--surface-strong);
  clip-path: inset(0 -100vmax);
}

.starter-support-copy h2 {
  max-width: none;
}

.starter-support-copy h2 span {
  display: block;
}

.starter-support-points {
  display: grid;
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

.starter-support-points div {
  display: grid;
  gap: 6px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.starter-support-points b {
  font-size: 18px;
}

.starter-support-points span {
  color: var(--muted);
  font-size: 14px;
}

.starter-support-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.starter-support-images figure {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 55px var(--shadow);
}

.starter-support-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.starter-support-images figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  color: #fffefa;
  background: linear-gradient(transparent, rgba(41,38,36,.88));
}

.starter-support-images figcaption strong {
  font-size: 15px;
}

.starter-support-images figcaption span {
  color: rgba(255,254,250,.75);
  font-size: 11px;
}

.faq {
  padding-top: 70px;
  background: var(--surface);
  box-shadow: 0 0 0 100vmax var(--surface);
  clip-path: inset(0 -100vmax);
}

.faq-list {
  max-width: 900px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 23px 52px 23px 0;
  list-style: none;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 720;
  cursor: pointer;
}

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

.faq-list summary::after {
  position: absolute;
  top: 21px;
  right: 8px;
  content: "+";
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  margin: -5px 0 24px;
  color: var(--muted);
}

.contact {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 620px;
  padding: 70px max(24px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  color: #fffaf5;
}

.contact > img,
.contact-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact > img {
  object-fit: cover;
  object-position: center 24%;
}

.contact-overlay {
  background: linear-gradient(90deg, rgba(13, 17, 16, 0.88), rgba(13, 17, 16, 0.36) 65%, rgba(13, 17, 16, 0.08));
}

.contact-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.contact h2 {
  max-width: 13ch;
  font-size: clamp(38px, 4vw, 50px);
  line-height: 1.14;
}

.contact-content p {
  margin: 22px 0 30px;
  font-size: 18px;
}

.contact-address {
  color: inherit;
  border-bottom: 1px solid rgba(255, 250, 245, 0.55);
}

.contact-address:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.contact-content span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 250, 245, 0.78);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr .9fr .7fr 1.3fr 280px;
  gap: 24px;
  align-items: start;
  padding: 48px max(24px, calc((100vw - 1180px) / 2));
  color: var(--muted);
  background: var(--surface);
  font-size: 13px;
}

.site-footer strong,
.site-footer a {
  color: var(--text);
  font-size: 16px;
}

.site-footer p {
  margin: 5px 0 0;
}

.site-footer .footer-address {
  display: inline-grid;
  gap: 1px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  border-bottom: 1px solid transparent;
}

.site-footer .footer-address span {
  white-space: nowrap;
}

.site-footer .footer-address:hover {
  color: var(--accent);
  border-bottom-color: currentColor;
}

.footer-socials p { margin-top: 7px; font-size: 13px; line-height: 1.55; }

.footer-qrs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.footer-qrs figure {
  display: grid;
  gap: 8px;
  justify-items: center;
  margin: 0;
}

.footer-qrs img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  border: 8px solid #fff;
  background: #fff;
}

.footer-qrs figcaption { display: grid; gap: 3px; text-align: center; }
.footer-qrs figcaption strong { color: var(--text); font-size: 14px; }
.footer-qrs figcaption span { color: var(--muted); font-size: 12px; }
.footer-record { grid-column: 1 / -1; padding-top: 22px; border-top: 1px solid var(--line); text-align: center; }
.footer-record a { color: var(--muted); font-size: 13px; }
.footer-record a:hover { color: var(--accent); }

@media (max-width: 1100px) {
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-qrs { grid-column: 1 / -1; width: min(100%, 280px); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (max-width: 980px) {
  :root {
    --content: min(100% - 36px, 1180px);
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 12px 18px;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(255, 250, 245, 0.55);
    border-radius: 999px;
    color: #fffaf5;
    background: rgba(20, 24, 22, 0.28);
    font: inherit;
    font-weight: 700;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    right: 18px;
    left: 18px;
    display: none;
    gap: 0;
    padding: 12px;
    border-radius: var(--radius);
    color: var(--text);
    background: var(--surface);
    box-shadow: 0 18px 45px var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 12px;
  }

  .main-nav a::after,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: 88dvh;
  }

  .hero h1 {
    max-width: 650px;
  }

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

  .fact-band div:nth-child(3) {
    border-left: 0;
  }

  .fact-band div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .advantage-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 460px 280px;
  }

  .advantage-main {
    grid-column: 1 / 3;
    grid-row: 1;
  }

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

  .teacher-copy {
    position: static;
    max-width: 680px;
  }
}

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

  .hero {
    min-height: 82dvh;
  }

  .hero-image {
    object-position: 42% top;
  }

  .hero-scrim {
    background: linear-gradient(0deg, rgba(8, 12, 12, 0.9) 0%, rgba(8, 12, 12, 0.32) 76%, rgba(8, 12, 12, 0.2));
  }

  .hero-content {
    padding-bottom: 56px;
  }

  .hero h1 {
    max-width: 11em;
    font-size: clamp(38px, 11vw, 55px);
  }

  .hero-lead {
    max-width: 19em;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
  }

  .button {
    min-height: 44px;
    padding: 0 18px;
  }

  .fact-band {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  .fact-band div {
    padding: 18px;
  }

  .section {
    width: 100%;
    padding: 76px 18px;
  }

  .section-wide {
    padding-right: 18px;
    padding-left: 18px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .campus-intro h2,
  .teacher-copy h2,
  .credential-copy h2,
  .contact h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .section-heading > p:not(.eyebrow),
  .campus-intro p,
  .teacher-copy p,
  .credential-copy p {
    font-size: 16px;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .advantage-main {
    grid-column: auto;
    grid-row: auto;
    min-height: 480px;
  }

  .advantage-main div {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .advantage-text,
  .advantage-support {
    min-height: 270px;
  }

  .course-panel {
    grid-template-columns: 1fr;
  }

  .course-copy {
    padding: 36px 24px;
  }

  .course-panel > img {
    height: 330px;
  }

  .course-content {
    grid-column: auto;
    padding: 28px 24px 38px;
  }

  .course-content-heading {
    display: grid;
    gap: 12px;
  }

  .course-content-heading p {
    text-align: left;
  }

  .course-content ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .course-meta {
    gap: 25px;
  }

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

  .campus-gallery .gallery-main {
    grid-row: auto;
  }

  .campus-gallery figure {
    height: 310px;
  }

  .campus-gallery .gallery-main img {
    object-position: center 42%;
  }

  .campus-gallery .gallery-theory img {
    object-position: center 26%;
  }

  .teachers {
    gap: 34px;
  }

  .teacher-rail {
    grid-auto-flow: column;
    grid-auto-columns: 88%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .teacher-rail img {
    scroll-snap-align: start;
  }

  .credential {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .credential-image {
    transform: none;
  }

  .contact {
    min-height: 540px;
    padding: 60px 18px;
  }

  .contact > img {
    object-position: 58% 24%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 18px;
  }

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

@media (max-width: 980px) {
  .level-flow { grid-template-columns: 1fr; gap: 14px; }
  .level-arrow { height: 28px; transform: rotate(90deg); }
  .level-card h3 { min-height: 0; }
  .credential-gallery { grid-template-columns: 1fr 1fr; }
  .credential-gallery figure { grid-column: auto; height: 340px; }
  .certificate-path, .starter-support { grid-template-columns: 1fr; }
  .certificate-images { left: 0; }
  .fact-band div:last-child { grid-column: 1 / 3; border-top: 1px solid var(--line); border-left: 0; text-align: center; }
  .training-evidence { grid-template-columns: repeat(2, 1fr); }
  .alumni { grid-template-columns: 1fr; }
  .teacher-person.is-prev { transform: translateX(calc(-50% - 270px)) scale(.62); }
  .teacher-person.is-next { transform: translateX(calc(-50% + 270px)) scale(.62); }
  .teacher-workspace { grid-template-columns: 1fr; }
  .teacher-profile { height: auto; min-height: 0; }
  .teacher-profile.is-open { padding: 34px; }
}

@media (max-width: 767px) {
  .hero-kicker, .eyebrow { font-size: 16px; }
  .guarantees h2, .certificate-copy h2, .starter-support-copy h2, .contact h2 { max-width: none; font-size: 36px; line-height: 1.16; }
  .level-path { padding-right: 18px; padding-left: 18px; }
  .level-heading h2 { font-size: clamp(34px, 10vw, 46px); }
  .level-card { padding: 24px 20px; }
  .course-outcomes div { grid-template-columns: 68px 1fr; }
  .specialty-band { grid-template-columns: 1fr; }
  .specialty-band article { padding: 22px 0; }
  .specialty-band article + article { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .specialty-band > a { min-height: 58px; }
  .credentials { padding-right: 18px; padding-left: 18px; }
  .credential-gallery { grid-template-columns: 1fr; grid-template-rows: none; }
  .credential-gallery figure { grid-column: auto; min-height: 0; height: 330px; }
  .credential-lightbox { position: fixed; inset: 10px; width: auto; max-width: none; height: auto; max-height: none; margin: 0; }
  .credential-lightbox figure > img { padding: 58px 18px 12px; }
  .credential-lightbox figcaption { padding: 14px 52px 18px; }
  .credential-lightbox-close, .credential-lightbox-nav { top: auto; bottom: 12px; width: 40px; height: 40px; }
  .credential-lightbox-close { right: 50%; transform: translateX(50%); }
  .credential-lightbox-nav { transform: none; }
  .credential-lightbox-prev { left: 12px; }
  .credential-lightbox-next { right: 12px; }
  .certificate-images { grid-template-columns: 1fr; gap: 14px; }
  .certificate-images figure { aspect-ratio: 4 / 3; }
  .certificate-arrow { height: 28px; transform: rotate(90deg); }
  .certificate-copy li { grid-template-columns: 1fr; gap: 6px; }
  .starter-support-images { grid-template-columns: 1fr; }
  .training-evidence { grid-template-columns: 1fr; }
  .training-evidence figure { height: 280px; }
  .alumni-rail figure { aspect-ratio: 4 / 3; }
  .teacher-showcase { padding-right: 18px; padding-left: 18px; }
  .teacher-heading h2 { font-size: clamp(36px, 10vw, 48px); }
  .teacher-workspace { min-height: 0; box-shadow: none; }
  .teacher-stage { height: 360px; border-radius: 8px 8px 0 0; }
  .teacher-stage::before { width: 290px; height: 290px; }
  .teacher-person { top: 8px; width: 270px; height: 320px; }
  .teacher-person.is-prev { opacity: .25; transform: translateX(calc(-50% - 205px)) scale(.5); }
  .teacher-person.is-next { opacity: .25; transform: translateX(calc(-50% + 205px)) scale(.5); }
  .teacher-stage-controls { right: 50%; bottom: 8px; transform: translateX(50%); }
  .teacher-profile { border-radius: 0 0 8px 8px; }
  .teacher-profile.is-open { padding: 24px 20px 20px; }
  .teacher-profile h3 { font-size: 36px; }
  .teacher-role { margin-bottom: 7px; }
  .teacher-summary { margin: 12px auto 14px; font-size: 13px; }
  .teacher-profile dl { grid-template-columns: 1fr; }
  .teacher-profile dl div { grid-template-columns: 1fr; gap: 4px; padding: 10px 0; }
  .teacher-profile dd { font-size: 13px; }
  .teacher-profile dl div + div { border-left: 0; }
  .teacher-index { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .button-ghost,
  .campus-gallery figcaption {
    backdrop-filter: none;
    background: rgba(18, 23, 21, 0.9);
  }
}

@media (max-width: 600px) {
  .footer-qrs {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .footer-qrs figure {
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
  }

  .footer-qrs img {
    width: 104px;
    height: 104px;
  }

  .footer-qrs figcaption {
    width: 100%;
  }

  .footer-qrs figcaption strong,
  .footer-qrs figcaption span {
    word-break: keep-all;
  }
}
