:root {
  --surface-neutral: #f7f8f4;
  --surface-green: #e8f2e6;
  --surface-gold: #f7e8c3;
  --qiyue: #0c8e82;
  --qiyue-deep: #08675f;
  --shiji: #c98922;
  --shiji-deep: #6f4709;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-smooth: cubic-bezier(.25, 1, .5, 1);
}

@view-transition { navigation: auto; }

::view-transition-old(root) {
  animation: page-old-out .34s var(--ease-smooth) both;
}

::view-transition-new(root) {
  animation: page-new-in .62s var(--ease-out) both;
}

.page-intro-wash {
  position: fixed;
  z-index: 120;
  inset: 0;
  pointer-events: none;
  background: var(--campus-accent, var(--forest));
  transform-origin: right;
  animation: page-wash-out .86s var(--ease-out) both;
}

@keyframes page-wash-out {
  0% { transform: scaleX(1); }
  100% { transform: scaleX(0); }
}

@keyframes page-old-out {
  to { opacity: .25; transform: scale(.988); filter: blur(3px); }
}

@keyframes page-new-in {
  from { opacity: .3; transform: translateY(12px); filter: blur(4px); }
}

body.home-page,
body.course-page { background: var(--surface-neutral); }

.scroll-progress {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
  transform: scaleX(var(--scroll-ratio, 0));
  transform-origin: left;
  background: var(--gold);
}

.motion-ready .reveal:not(.is-visible) {
  opacity: .76;
  filter: saturate(.84);
  transform: translateY(14px);
}

.motion-ready .reveal {
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out), filter .65s var(--ease-out);
}

.motion-ready [data-motion-item] {
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-out), filter .55s var(--ease-out);
  transition-delay: calc(var(--motion-index, 0) * 55ms);
}

.motion-ready .reveal:not(.is-visible) [data-motion-item] {
  opacity: .62;
  filter: saturate(.75);
  transform: translateY(20px) scale(.985);
}

.motion-ready .growth-route:not(.is-visible) .route-stages::before {
  clip-path: inset(0 100% 0 0);
}

.motion-ready .growth-route.is-visible .route-stages::before {
  clip-path: inset(0);
  transition: clip-path 1.35s var(--ease-smooth) .18s;
}

.motion-ready .course-programs:not(.is-visible) .course-program-grid::before {
  opacity: 0;
  transform: scale(.72);
}

.motion-ready .course-programs.is-visible .course-program-grid::before {
  opacity: 1;
  transform: scale(1);
  transition: opacity .8s var(--ease-out) .2s, transform 1.1s var(--ease-out) .2s;
}

.hero-copy > *,
.course-hero-copy > *,
.campus-hero-copy > * {
  animation: content-arrival .7s var(--ease-out) both;
}

.hero-copy > :nth-child(2),
.course-hero-copy > :nth-child(2),
.campus-hero-copy > :nth-child(2) { animation-delay: 80ms; }
.hero-copy > :nth-child(3),
.course-hero-copy > :nth-child(3),
.campus-hero-copy > :nth-child(3) { animation-delay: 150ms; }
.hero-copy > :nth-child(n+4),
.course-hero-copy > :nth-child(n+4),
.campus-hero-copy > :nth-child(n+4) { animation-delay: 220ms; }

.hero-visual img,
.course-hero-main img,
.campus-hero > figure > img {
  animation: media-arrival 1.05s var(--ease-out) both;
}

@keyframes content-arrival {
  from { opacity: 0; transform: translateY(24px); filter: blur(7px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes media-arrival {
  from { opacity: .45; transform: scale(1.08); clip-path: inset(0 0 100% 0); }
  to { opacity: 1; transform: scale(1); clip-path: inset(0); }
}

/* Campus team entry: real people will replace the restrained portrait fields. */
.campus-team-preview {
  display: grid;
  grid-template-columns: minmax(480px, 1.08fr) minmax(340px, .92fr);
  gap: clamp(52px, 8vw, 124px);
  align-items: center;
  overflow: hidden;
  background: var(--campus-surface);
}

.team-preview-stage {
  position: relative;
  min-height: 440px;
  isolation: isolate;
}

.team-preview-stage::before,
.team-preview-stage::after {
  position: absolute;
  z-index: -1;
  content: "";
}

.team-preview-portrait {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 33%;
  aspect-ratio: 3 / 4;
  padding: 22px;
  overflow: hidden;
  color: color-mix(in srgb, var(--campus-accent-dark) 74%, transparent);
  background: linear-gradient(145deg, color-mix(in srgb, var(--campus-soft) 72%, white), color-mix(in srgb, var(--campus-accent) 18%, white));
  text-align: left;
  transition: transform .5s var(--ease-out), filter .5s var(--ease-out);
}

.team-preview-portrait i {
  position: absolute;
  top: 16%;
  left: 50%;
  width: 42%;
  aspect-ratio: 1;
  background: color-mix(in srgb, var(--campus-accent-dark) 13%, white);
  border: 1px solid color-mix(in srgb, var(--campus-accent-dark) 18%, transparent);
  border-radius: 50%;
  transform: translateX(-50%);
}

.team-preview-portrait i::after {
  position: absolute;
  top: 78%;
  left: 50%;
  width: 170%;
  height: 130%;
  content: "";
  background: color-mix(in srgb, var(--campus-accent-dark) 10%, white);
  border: 1px solid color-mix(in srgb, var(--campus-accent-dark) 14%, transparent);
  border-radius: 52% 52% 14px 14px;
  transform: translateX(-50%);
}

.team-preview-portrait b,
.team-preview-portrait small {
  position: relative;
  z-index: 2;
}

.team-preview-portrait b {
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 23px);
  line-height: 1.1;
}

.team-preview-portrait small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.team-preview-portrait::after,
.team-photo-placeholder::after {
  position: absolute;
  right: -22%;
  bottom: -15%;
  width: 80%;
  aspect-ratio: 1;
  content: "";
  background: color-mix(in srgb, var(--campus-pop) 35%, transparent);
  border-radius: 50%;
}

.team-preview-portrait-main { z-index: 2; top: 0; left: 15%; width: 42%; }
.team-preview-portrait:nth-child(2) { z-index: 1; top: 21%; right: 8%; }
.team-preview-portrait:nth-child(3) { bottom: -2%; left: 0; width: 27%; }
.team-preview-stage:hover .team-preview-portrait-main { transform: translateY(-8px); }
.team-preview-stage:hover .team-preview-portrait:nth-child(2) { transform: translate(7px, 4px); }
.team-preview-copy h2,
.team-section-heading h2 { max-width: 680px; color: var(--forest-deep); font-size: clamp(36px, 3.7vw, 56px); line-height: 1.15; letter-spacing: -.025em; }
.team-preview-copy > p:not(.section-label),
.team-section-heading > p:not(.section-label) { max-width: 580px; color: var(--muted); font-size: 17px; }
.team-coming {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 12px;
  padding: 10px 14px;
  color: var(--forest-deep);
  background: rgba(255, 255, 255, .68);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: default;
}
.campus-page-qiyue .team-coming { color: #087469; background: rgba(255, 255, 255, .74); }
.campus-page-shiji .team-coming { color: #7a4d0a; background: rgba(255, 247, 229, .9); }
.team-coming > span { transition: transform .3s var(--ease-out); }
.campus-team-preview:hover .team-coming > span { transform: translateX(3px); }

.campus-page-qiyue .campus-team-preview { background: linear-gradient(115deg, #effaf6, #fffefa); }
.campus-page-qiyue .team-preview-stage::before { top: 4%; left: 0; width: 78%; aspect-ratio: 1; border: 1px solid rgba(12, 142, 130, .24); border-radius: 50%; }
.campus-page-qiyue .team-preview-stage::after { right: 3%; bottom: 5%; width: 42%; aspect-ratio: 1; background: #f4d36f; border-radius: 50%; opacity: .52; }
.campus-page-qiyue .team-preview-portrait { border-radius: 56px 16px 56px 16px; }
.campus-page-shiji .campus-team-preview { grid-template-columns: minmax(340px, .82fr) minmax(480px, 1.18fr); background: linear-gradient(115deg, #fffefa, #f8f1e4); border-top: 1px solid rgba(201, 137, 34, .28); border-bottom: 1px solid rgba(201, 137, 34, .28); }
.campus-page-shiji .team-preview-stage { order: 2; }
.campus-page-shiji .team-preview-stage::before { inset: 10% 7% 2% 14%; border: 1px solid rgba(201, 137, 34, .38); }
.campus-page-shiji .team-preview-stage::after { top: 0; right: 0; width: 34%; height: 12px; background: var(--campus-accent); }
.campus-page-shiji .team-preview-portrait { border-radius: 7px; box-shadow: 12px 12px 0 rgba(201, 137, 34, .12); }

@media (hover: hover) {
  .campus-programs-refined .campus-program-card,
  .campus-signals li,
  .campus-visit li,
  .course-map-actions a,
  .consult-campus-grid article {
    transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .45s var(--ease-out), background-color .45s var(--ease-out);
  }

  .campus-programs-refined .campus-program-card:hover,
  .course-map-actions a:hover,
  .consult-campus-grid article:hover {
    z-index: 2;
    transform: translateY(-8px);
    box-shadow: 0 8px 8px rgba(10, 63, 42, .12);
  }

  .campus-programs-refined .campus-program-card figure img,
  .campus-environment-grid figure img {
    transition: transform .8s var(--ease-out), filter .6s var(--ease-out);
  }

  .campus-programs-refined .campus-program-card:hover figure img,
  .campus-environment-grid figure:hover img {
    transform: scale(1.045);
  }

  .campus-signals li:hover,
  .campus-visit li:hover {
    transform: translateY(-5px);
  }

  .campus-page-qiyue .campus-signals li:hover,
  .campus-page-qiyue .campus-visit li:hover {
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 8px rgba(12, 142, 130, .1);
  }

  .campus-page-shiji .campus-signals li:hover {
    background: #fffaf0;
    box-shadow: 0 8px 8px rgba(151, 101, 18, .1);
  }
}

.team-page main { overflow: hidden; }
.team-hero {
  display: grid;
  grid-template-columns: minmax(430px, .86fr) minmax(560px, 1.14fr);
  min-height: 720px;
  background: var(--campus-surface);
}
.team-hero-copy { align-self: center; padding: 110px 58px 100px max(32px, calc((100vw - var(--content)) / 2)); }
.team-hero-copy > * { animation: content-arrival .72s var(--ease-out) both; }
.team-hero-copy > :nth-child(2) { animation-delay: 90ms; }
.team-hero-copy > :nth-child(3) { animation-delay: 160ms; }
.team-hero-copy > :nth-child(4) { animation-delay: 230ms; }
.team-hero h1 { max-width: 680px; color: var(--forest-deep); font-size: clamp(46px, 4.9vw, 76px); line-height: 1.08; letter-spacing: -.03em; }
.team-hero-copy > p:not(.hero-kicker) { max-width: 560px; color: var(--muted); font-size: 17px; }
.team-hero-visual { position: relative; min-height: 720px; isolation: isolate; animation: team-stage-arrival 1.05s var(--ease-out) both; }
.team-photo-frame { position: absolute; margin: 0; }
.team-photo-frame-main { z-index: 2; top: 72px; left: 10%; width: 52%; }
.team-photo-frame-small { right: 7%; width: 27%; }
.team-photo-frame-small:nth-child(2) { top: 128px; }
.team-photo-frame-small:nth-child(3) { right: 13%; bottom: 56px; }
.team-photo-frame .team-photo-placeholder { aspect-ratio: 3 / 4; }
.team-photo-frame p { display: grid; gap: 4px; margin: 15px 0 0; color: var(--campus-accent-dark); }
.team-photo-frame p strong { font-family: var(--serif); font-size: 25px; }
.team-photo-frame p span { color: var(--muted); font-size: 12px; }
.team-photo-placeholder {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 5px;
  overflow: hidden;
  color: var(--campus-accent-dark);
  background: linear-gradient(145deg, color-mix(in srgb, var(--campus-soft) 72%, white), color-mix(in srgb, var(--campus-accent) 20%, white));
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
}
.team-photo-placeholder span,
.team-photo-placeholder small { position: relative; z-index: 1; }
.team-photo-placeholder small { font-size: 9px; font-weight: 600; letter-spacing: .06em; }
.team-page-qiyue .team-hero { background: linear-gradient(125deg, #fffefa 0 42%, #e6f6f0 42%); }
.team-page-qiyue .team-hero-visual::before { position: absolute; top: 5%; left: 0; width: 80%; aspect-ratio: 1; content: ""; border: 1px solid rgba(12, 142, 130, .22); border-radius: 50%; }
.team-page-qiyue .team-photo-placeholder { border-radius: 62px 16px 62px 16px; }
.team-page-qiyue .team-photo-frame-small .team-photo-placeholder { border-radius: 38px 10px 38px 10px; }
.team-page-shiji .team-hero { grid-template-areas: "visual copy"; grid-template-columns: minmax(560px, 1.12fr) minmax(430px, .88fr); background: linear-gradient(105deg, #f6eee1 0 56%, #fffefa 56%); }
.team-page-shiji .team-hero-copy { grid-area: copy; padding-right: max(32px, calc((100vw - var(--content)) / 2)); padding-left: 70px; }
.team-page-shiji .team-hero-visual { grid-area: visual; }
.team-page-shiji .team-hero-visual::before { position: absolute; inset: 58px 4% 54px 9%; content: ""; border: 1px solid rgba(201, 137, 34, .36); }
.team-page-shiji .team-hero-visual::after { position: absolute; z-index: -1; top: 58px; right: 4%; width: 13px; height: 48%; content: ""; background: var(--campus-accent); }
.team-page-shiji .team-photo-placeholder { border-radius: 7px; box-shadow: 14px 14px 0 rgba(201, 137, 34, .12); }

@keyframes team-stage-arrival {
  from { opacity: .35; transform: translateX(32px); filter: blur(7px); }
  to { opacity: 1; transform: translateX(0); filter: blur(0); }
}

.team-principles,
.team-roster-section,
.team-photo-guide { padding-right: max(30px, calc((100vw - var(--content)) / 2)); padding-left: max(30px, calc((100vw - var(--content)) / 2)); }
.team-principles { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(52px, 8vw, 118px); background: #fffefa; }
.team-principle-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid color-mix(in srgb, var(--campus-accent) 35%, transparent); }
.team-principle-list article { min-height: 170px; padding: 26px 24px 25px 0; border-bottom: 1px solid color-mix(in srgb, var(--campus-accent) 24%, transparent); }
.team-principle-list article:nth-child(odd) { border-right: 1px solid color-mix(in srgb, var(--campus-accent) 24%, transparent); }
.team-principle-list article:nth-child(even) { padding-left: 24px; }
.team-principle-list span { color: var(--campus-accent-dark); font-family: var(--serif); font-size: 23px; }
.team-principle-list p { max-width: 28ch; margin-bottom: 0; color: var(--muted); font-size: 14px; }
.team-roster-section { scroll-margin-top: 172px; background: var(--campus-surface); }
.team-roster-section .team-section-heading { display: grid; grid-template-columns: minmax(320px, .8fr) minmax(440px, 1.2fr); gap: 40px 80px; align-items: end; }
.team-roster-section .team-section-heading .section-label { grid-column: 1 / -1; margin-bottom: -20px; }
.team-roster-section .team-section-heading > p:last-child { margin: 0; }
.team-roster { margin-top: 64px; }
.team-roster-organic { display: grid; grid-template-columns: 1.35fr .8fr .8fr; gap: 34px 22px; align-items: start; }
.team-member { color: var(--ink); }
.team-member .team-photo-placeholder { width: 100%; aspect-ratio: 3 / 4; }
.team-member > div:last-child { padding-top: 20px; }
.team-member b { color: var(--campus-accent-dark); font-size: 10px; letter-spacing: .14em; }
.team-member h3 { margin: 9px 0 5px; color: var(--forest-deep); font-size: 27px; }
.team-member p { margin: 5px 0 0; color: var(--muted); font-size: 14px; }
.team-member .team-role { color: var(--campus-accent-dark); font-weight: 700; }
.team-member-lead { grid-row: span 2; }
.team-member-lead h3 { font-size: 36px; }
.team-page-qiyue .team-roster-organic .team-member:nth-child(2),
.team-page-qiyue .team-roster-organic .team-member:nth-child(5) { margin-top: 54px; }
.team-page-qiyue .team-member .team-photo-placeholder { border-radius: 48px 12px 48px 12px; }
.team-page-qiyue .team-member-lead .team-photo-placeholder { border-radius: 78px 18px 78px 18px; }
.team-roster-editorial { border-top: 2px solid var(--campus-accent-dark); }
.team-roster-editorial .team-member { display: grid; grid-template-columns: minmax(190px, 28%) 1fr; gap: 32px; align-items: center; padding: 28px 0; border-bottom: 1px solid rgba(139, 90, 11, .24); }
.team-roster-editorial .team-member .team-photo-placeholder { aspect-ratio: 4 / 3; border-radius: 5px; box-shadow: none; }
.team-roster-editorial .team-member-lead { grid-template-columns: minmax(300px, 42%) 1fr; padding-top: 44px; padding-bottom: 44px; }
.team-roster-editorial .team-member-lead .team-photo-placeholder { aspect-ratio: 4 / 3; }
.team-photo-guide { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(50px, 9vw, 150px); color: white; background: var(--forest-deep); }
.team-photo-guide h2 { max-width: 650px; color: white; font-size: clamp(34px, 3.6vw, 54px); }
.team-photo-guide .section-label { color: color-mix(in srgb, var(--campus-pop) 76%, white); }
.team-photo-guide ul { padding: 0; margin: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.32); }
.team-photo-guide li { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.88); }

.motion-ready .reveal:not(.is-visible) .campus-section-heading,
.motion-ready .reveal:not(.is-visible) .team-section-heading,
.motion-ready .reveal:not(.is-visible) .team-preview-copy { opacity: .5; transform: translateY(22px); filter: blur(4px); }
.campus-section-heading,
.team-section-heading,
.team-preview-copy { transition: opacity .75s var(--ease-out), transform .75s var(--ease-out), filter .75s var(--ease-out); }
.motion-ready .campus-environment.reveal:not(.is-visible) figure,
.motion-ready .team-roster-section.reveal:not(.is-visible) .team-photo-placeholder { clip-path: inset(0 0 18% 0); transform: translateY(16px) scale(1.025); }
.campus-environment-grid figure,
.team-member .team-photo-placeholder { clip-path: inset(0); transition: clip-path .9s var(--ease-out), transform .9s var(--ease-out), filter .7s var(--ease-out); }

@media (max-width: 1120px) and (min-width: 721px) {
  .campus-team-preview { grid-template-columns: 1fr 1fr; gap: 48px; }
  .team-hero,
  .team-page-shiji .team-hero { grid-template-columns: 1fr 1fr; }
  .team-hero-copy,
  .team-page-shiji .team-hero-copy { padding: 82px 38px 80px 42px; }
  .team-roster-organic { grid-template-columns: 1.2fr 1fr; }
  .team-member-lead { grid-row: span 2; }
}

@media (max-width: 720px) {
  .campus-team-preview,
  .campus-page-shiji .campus-team-preview { grid-template-columns: 1fr; gap: 36px; }
  .campus-page-shiji .team-preview-stage { order: initial; }
  .team-preview-stage { min-height: 370px; }
  .team-preview-portrait-main { left: 12%; width: 48%; }
  .team-preview-portrait:nth-child(2) { right: 4%; width: 36%; }
  .team-preview-portrait:nth-child(3) { width: 30%; }
  .team-hero,
  .team-page-shiji .team-hero { display: flex; flex-direction: column; min-height: 0; }
  .team-hero-copy,
  .team-page-shiji .team-hero-copy { order: 1; padding: 66px 22px 52px; }
  .team-hero h1 { font-size: clamp(43px, 12vw, 58px); }
  .team-hero-visual,
  .team-page-shiji .team-hero-visual { order: 2; min-height: 520px; }
  .team-photo-frame-main { top: 32px; left: 7%; width: 55%; }
  .team-photo-frame-small { right: 4%; width: 31%; }
  .team-photo-frame-small:nth-child(2) { top: 80px; }
  .team-photo-frame-small:nth-child(3) { right: 10%; bottom: 26px; }
  .team-principles,
  .team-photo-guide { grid-template-columns: 1fr; gap: 36px; }
  .team-principle-list { grid-template-columns: 1fr; }
  .team-principle-list article,
  .team-principle-list article:nth-child(even) { min-height: 0; padding: 22px 0; border-right: 0; }
  .team-roster-section .team-section-heading { grid-template-columns: 1fr; gap: 22px; }
  .team-roster-section .team-section-heading .section-label { grid-column: auto; margin-bottom: 0; }
  .team-roster { margin-top: 44px; }
  .team-roster-organic { grid-template-columns: 1fr 1fr; gap: 36px 14px; }
  .team-roster-organic .team-member-lead { grid-column: 1 / -1; grid-row: auto; }
  .team-page-qiyue .team-roster-organic .team-member:nth-child(n) { margin-top: 0; }
  .team-member h3 { font-size: 23px; }
  .team-roster-editorial .team-member,
  .team-roster-editorial .team-member-lead { grid-template-columns: 42% 1fr; gap: 18px; padding: 22px 0; }
}

/* Homepage: a gallery rather than a stack of repeated cards. */
.home-page .hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  overflow: hidden;
  background: #fffefa;
}

.home-page .hero::before {
  position: absolute;
  z-index: -1;
  top: -310px;
  left: 28%;
  width: 720px;
  height: 720px;
  content: "";
  border: 1px solid rgba(13, 92, 58, .14);
  border-radius: 50%;
}

.home-page .hero::after {
  position: absolute;
  z-index: -1;
  bottom: -190px;
  left: -170px;
  width: 460px;
  height: 460px;
  content: "";
  background: #e6f0d5;
  border-radius: 50%;
}

.home-page .hero-copy { padding-top: 110px; }
.home-page .brand-hero-title span { letter-spacing: -.035em; }
.home-page .hero-visual {
  min-height: 660px;
  margin: 30px 30px 30px 0;
  border-radius: 12px 12px 88px 12px;
  box-shadow: 0 24px 60px rgba(13, 92, 58, .14);
}

.home-page .hero-visual img { min-height: 660px; }

.home-page .answer { background: #fffefa; }
.home-page .answer-photo-main { border-radius: 12px 72px 12px 12px; }
.home-page .answer-photo-small { border-radius: 12px; }
.home-page .answer-photo-stack > b {
  color: #fff;
  background: var(--forest);
  box-shadow: 10px 10px 0 var(--gold);
}

.home-page .guide-links a {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: none;
}

.home-page .guide-links a:hover figure { transform: scale(.98); }
.home-page .guide-links figure { transition: transform .3s var(--ease-smooth); }

.home-page .services {
  overflow: hidden;
  background: #083f2d;
}

.home-page .services-heading {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  column-gap: 80px;
  align-items: end;
}

.home-page .services-heading .section-label,
.home-page .services-heading h2 { color: #fff; }
.home-page .services-heading p { color: #c8d9d1; }

.home-page .service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 210px;
  gap: 14px;
  margin-top: 58px;
}

.home-page .service-grid article,
.home-page .service-grid article:nth-child(n+3) {
  position: relative;
  grid-column: span 4;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #0d5c3a;
  border: 0;
  border-radius: 10px;
  box-shadow: none;
}

.home-page .service-grid article:first-child { grid-column: span 5; grid-row: span 2; }
.home-page .service-grid article:nth-child(2) { grid-column: span 3; }
.home-page .service-grid article:nth-child(3) { grid-column: span 4; }
.home-page .service-grid article:nth-child(4) { grid-column: span 4; }
.home-page .service-grid article:nth-child(5) { grid-column: span 3; }

.home-page .service-grid a,
.home-page .service-grid article:nth-child(n+3) a {
  position: relative;
  display: flex;
  min-height: 100%;
  padding: 24px;
  justify-content: flex-end;
  color: #fff;
}

.home-page .service-grid figure,
.home-page .service-grid article:nth-child(n+3) figure {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

.home-page .service-grid figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(5, 36, 24, .02) 30%, rgba(5, 36, 24, .86) 100%);
}

.home-page .service-grid img { height: 100%; }
.home-page .service-grid span,
.home-page .service-grid h3,
.home-page .service-grid p,
.home-page .service-grid b {
  position: relative;
  z-index: 1;
  margin-right: 0;
  margin-left: 0;
}

.home-page .service-grid span { margin-top: auto; color: #e7d28e; }
.home-page .service-grid h3 { margin-bottom: 5px; color: #fff; font-size: clamp(24px, 2.2vw, 34px); }
.home-page .service-grid p { margin-bottom: 0; color: #e4ece8; }
.home-page .service-grid b { padding: 12px 0 0; color: #fff; }
.home-page .service-more { color: #fff; }

.home-page .story-photo {
  background: #e4f0df;
}

.home-page .story-photo figure {
  border-radius: 72px 12px 12px 12px;
  box-shadow: none;
}

.home-page .story-photo figure::after { display: none; }

.home-page .growth-route { background: #fffefa; }
.home-page .route-scene {
  min-height: 430px;
  margin-top: 55px;
  padding: 34px 4px 18px;
}

.home-page .route-line {
  display: block;
  top: 82px;
  height: 245px;
}

.home-page .route-line path {
  stroke: #8caf5c;
  stroke-width: 2.4;
}

.home-page .route-stages {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.home-page .route-stage,
.home-page .route-stage:nth-child(even) {
  grid-column: auto;
  margin-top: 0;
}

.home-page .route-stage:nth-child(even) { padding-top: 118px; }
.home-page .route-stage a {
  padding: 0;
  color: var(--ink);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.home-page .route-stage figure {
  width: min(100%, 154px);
  height: 154px;
  margin: 0 auto 18px;
  border: 8px solid #eef5e8;
  border-radius: 50%;
  box-shadow: none;
}

.home-page .route-stage:nth-child(2n) figure { border-color: #f7e8c3; }
.home-page .route-stage strong,
.home-page .route-stage small { text-align: center; }
.home-page .route-stage .stage-index {
  display: grid;
  width: 30px;
  height: 30px;
  margin: -34px auto 10px;
  color: #fff;
  background: var(--forest);
  border-radius: 50%;
  place-items: center;
}

.home-page .founder {
  color: #fff;
  background: #073d2a;
}

.home-page .founder figure {
  border-radius: 12px 86px 12px 12px;
  box-shadow: none;
}
.home-page .founder h2,
.home-page .founder p { color: #fff; }
.home-page .founder .section-label,
.home-page .founder .founder-caption { color: #e7d28e; }
.home-page .founder .text-link { color: #fff; }
.home-page .founder .button { color: var(--forest-deep); background: #f5db94; }

.home-page .online-preview { background: #f6e7bf; }
.home-page .online-preview-feature { border-radius: 12px 70px 12px 12px; }
.home-page .online-preview-list article {
  background: transparent;
  border-bottom: 1px solid rgba(111, 71, 9, .22);
  border-radius: 0;
  box-shadow: none;
}

.home-page .campuses { background: #fffefa; }
.home-page .campus-grid {
  grid-template-columns: 1.14fr .86fr;
  gap: 16px;
}

.home-page .campus-select-card,
.home-page .campus-select-card:nth-child(2) {
  min-height: 650px;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  box-shadow: none;
}

.home-page .campus-select-main,
.home-page .campus-select-main figure {
  min-height: 650px;
  height: 650px;
}

.home-page .campus-select-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 150px 38px 88px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(4, 48, 35, .94));
}

.home-page .campus-select-shiji .campus-select-copy {
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(83, 52, 5, .94));
}

.home-page .campus-select-copy span,
.home-page .campus-select-copy h3,
.home-page .campus-select-copy p,
.home-page .campus-select-copy b,
.home-page .campus-select-copy li { color: #fff; }
.home-page .campus-select-copy span::before { background: #90dfd4; }
.home-page .campus-select-shiji .campus-select-copy span::before { background: #f1c35f; }
.home-page .campus-select-copy h3 { font-size: clamp(38px, 4vw, 58px); }
.home-page .campus-select-card .campus-phone { z-index: 3; }

.home-page .geo-articles { background: var(--surface-neutral); }
.home-page .geo-articles-strip { gap: 0; border-top: 1px solid var(--line); }
.home-page .geo-articles-strip a,
.home-page .geo-articles-strip a:nth-child(2),
.home-page .geo-articles-strip a:nth-child(3) {
  min-height: 250px;
  padding: 28px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}
.home-page .geo-articles-strip a:last-child { border-right: 0; }
.home-page .geo-articles-strip a::after { display: none; }
.home-page .geo-articles-strip strong { margin-top: 48px; }

/* Courses: one visual system instead of six repeated rectangles. */
.course-page .course-hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  overflow: hidden;
  background: #e8f2e6;
}

.course-page .course-hero::before {
  position: absolute;
  z-index: -1;
  right: -70px;
  bottom: -220px;
  width: 620px;
  height: 620px;
  content: "";
  border: 1px solid rgba(13, 92, 58, .17);
  border-radius: 50%;
}

.course-page .course-hero::after {
  position: absolute;
  z-index: -1;
  top: 64px;
  left: 43%;
  content: "06";
  color: rgba(13, 92, 58, .07);
  font-family: var(--serif);
  font-size: clamp(180px, 24vw, 360px);
  line-height: .8;
}

.course-page .course-hero-copy { padding-top: 118px; }
.course-page .course-hero h1 { max-width: 690px; font-size: clamp(52px, 5.2vw, 78px); letter-spacing: -.035em; }
.course-page .course-hero-media { align-self: center; min-height: 620px; }
.course-page .course-hero-main {
  height: 590px;
  border-radius: 220px 220px 12px 12px;
}
.course-page .course-hero-small { border-radius: 50%; }
.course-page .course-hero-media > span {
  display: grid;
  width: 92px;
  height: 92px;
  color: #fff;
  background: var(--forest);
  border-radius: 50%;
  place-items: center;
}

.course-page .course-programs {
  color: #fff;
  background: #073d2a;
}
.course-page .course-section-heading h2,
.course-page .course-section-heading p,
.course-page .course-section-heading .section-label { color: #fff; }
.course-page .course-section-heading > p { color: #c7d9d0; }

.course-page .course-program-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto 190px auto;
  gap: 42px 54px;
  max-width: 1120px;
  margin: 76px auto 0;
  padding: 18px 0;
}

.course-page .course-program-grid::before {
  position: absolute;
  inset: 17% 12%;
  content: "";
  border: 1px solid rgba(231, 210, 142, .38);
  border-radius: 50%;
}

.course-program-core {
  position: relative;
  z-index: 2;
  display: grid;
  grid-column: 2;
  grid-row: 2;
  width: 190px;
  height: 190px;
  margin: auto;
  color: var(--forest-deep);
  background: #f3d98c;
  border-radius: 50%;
  place-content: center;
  text-align: center;
  box-shadow: 0 0 0 18px rgba(243, 217, 140, .1);
}
.course-program-core span,
.course-program-core strong,
.course-program-core small { display: block; }
.course-program-core span { font-size: 13px; font-weight: 800; letter-spacing: .12em; }
.course-program-core strong { margin-top: 8px; font-family: var(--serif); font-size: 27px; }
.course-program-core small { margin-top: 7px; color: #6f5a22; }

.course-page .course-program-card {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  min-height: 0;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.course-page .course-program-card:nth-of-type(-n+3) { grid-row: 1; }
.course-page .course-program-card:nth-of-type(1) { grid-column: 1; }
.course-page .course-program-card:nth-of-type(2) { grid-column: 2; }
.course-page .course-program-card:nth-of-type(3) { grid-column: 3; }
.course-page .course-program-card:nth-of-type(n+4) { grid-row: 3; }
.course-page .course-program-card:nth-of-type(4) { grid-column: 1; }
.course-page .course-program-card:nth-of-type(5) { grid-column: 3; }

.course-page .course-program-card figure {
  width: 148px;
  height: 148px;
  margin: 0 0 18px;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  transition: transform .3s var(--ease-smooth), border-color .3s var(--ease-smooth);
}
.course-page .course-program-card:hover figure { border-color: #f3d98c; transform: translateY(-7px) scale(1.03); }
.course-page .course-program-card span,
.course-page .course-program-card h3,
.course-page .course-program-card p,
.course-page .course-program-card b { margin-right: 0; margin-left: 0; }
.course-page .course-program-card span { color: #e6cb7d; }
.course-page .course-program-card h3 { margin: 9px 0 4px; color: #fff; font-size: 27px; }
.course-page .course-program-card p { margin: 0; color: #c8d9d1; }
.course-page .course-program-card b { margin-top: 10px; color: #fff; }
.course-page .course-program-card.course-qiyue figure { border-color: rgba(91, 213, 193, .38); }
.course-page .course-program-card.course-shiji figure { border-color: rgba(243, 217, 140, .34); }

.course-direct-answers {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: clamp(48px, 8vw, 130px);
  color: #fff;
  background: radial-gradient(circle at 12% 20%, rgba(243, 217, 140, .16), transparent 26%), linear-gradient(135deg, #083f2d, #0c5c3d);
}
.course-direct-answers h2 { max-width: 430px; color: #fff; font-size: clamp(38px, 4vw, 58px); }
.course-direct-answers .section-label { color: #f3d98c; }
.course-direct-answers dl { margin: 0; border-top: 1px solid rgba(255,255,255,.22); }
.course-direct-answers dl > div { display: grid; grid-template-columns: .88fr 1.12fr; gap: 30px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.course-direct-answers dt { font-family: var(--serif); font-size: 21px; line-height: 1.45; }
.course-direct-answers dd { margin: 0; color: #d7e6df; line-height: 1.8; }
.course-direct-answers dd strong { color: #f3d98c; }

.course-page .course-campus-matrix { background: #fffefa; }
.course-page .course-campus-visual figure { border-radius: 12px 82px 12px 12px; }
.course-page .course-campus-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
.course-page .course-campus-list a {
  min-height: 210px;
  padding: 30px;
  background: #e8f4ef;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}
.course-page .course-campus-list a:last-child { color: var(--shiji-deep); background: #fbefd2; border-right: 0; }

.course-page .course-selection { background: var(--surface-neutral); }
.course-page .course-selection ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.course-page .course-selection li {
  min-height: 250px;
  padding: 32px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}
.course-page .course-selection li:last-child { border-right: 0; }
.course-page .course-selection li > span { font-family: var(--serif); font-size: 56px; }

.course-page .course-questions { background: #e8f2e6; }

/* Campus pages continue their identity below the first screen. */
.campus-page-qiyue .campus-programs {
  position: relative;
  overflow: hidden;
  background: #fffefa;
}
.campus-page-qiyue .campus-programs::before {
  position: absolute;
  top: 110px;
  right: -190px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(12, 142, 130, .17);
  border-radius: 50%;
}
.campus-page-qiyue .campus-program-grid { gap: 46px; align-items: start; }
.campus-page-qiyue .campus-program-card,
.campus-page-qiyue .campus-program-card:nth-child(2),
.campus-page-qiyue .campus-program-card:nth-child(3) {
  min-height: 0;
  margin-top: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.campus-page-qiyue .campus-program-card:nth-child(2) { margin-top: 72px; }
.campus-page-qiyue .campus-program-card figure {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  margin: 0 0 24px;
  border: 10px solid #dff4ed;
  border-radius: 50%;
}
.campus-page-qiyue .campus-program-card:nth-child(2) figure { border-color: #f8e5b5; }
.campus-page-qiyue .campus-program-card:nth-child(3) figure { border-color: #dceef5; }
.campus-page-qiyue .campus-program-card span,
.campus-page-qiyue .campus-program-card h3,
.campus-page-qiyue .campus-program-card p { margin-right: 12px; margin-left: 12px; }
.campus-page-qiyue .campus-program-card h3 { font-size: 27px; }

.campus-page-qiyue .campus-visit { background: #dff4ed; }
.campus-page-qiyue .campus-visit ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  border: 0;
}
.campus-page-qiyue .campus-visit li {
  display: block;
  padding: 25px;
  background: rgba(255, 254, 250, .7);
  border: 0;
  border-radius: 14px;
}
.campus-page-qiyue .campus-visit li > span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: #fff;
  background: var(--qiyue);
  border-radius: 50%;
  place-items: center;
}

.campus-page-shiji .campus-programs { background: #f8f3e9; }
.campus-page-shiji .campus-program-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  border-top: 1px solid #d9c79f;
}
.campus-page-shiji .campus-program-card,
.campus-page-shiji .campus-program-card:nth-child(2),
.campus-page-shiji .campus-program-card:nth-child(3) {
  display: grid;
  grid-template-columns: 260px 1fr;
  grid-template-rows: auto auto 1fr;
  column-gap: 38px;
  min-height: 260px;
  padding: 28px 0;
  margin: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d9c79f;
  border-radius: 0;
  box-shadow: none;
}
.campus-page-shiji .campus-program-card figure {
  grid-row: 1 / 4;
  width: 260px;
  height: 205px;
  margin: 0;
  border-radius: 6px 56px 6px 6px;
}
.campus-page-shiji .campus-program-card:nth-child(2) figure { border-radius: 6px; }
.campus-page-shiji .campus-program-card:nth-child(3) figure { border-radius: 56px 6px 6px 6px; }
.campus-page-shiji .campus-program-card span,
.campus-page-shiji .campus-program-card h3,
.campus-page-shiji .campus-program-card p { margin-right: 0; margin-left: 0; }
.campus-page-shiji .campus-program-card span { align-self: end; color: var(--shiji); }
.campus-page-shiji .campus-program-card h3 { margin: 13px 0 10px; font-size: 31px; }

.campus-direct-answer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 28px;
}
.campus-direct-answer > p { margin: 0; font-size: 11px; font-weight: 900; letter-spacing: .16em; }
.campus-direct-answer > div { display: grid; grid-template-columns: .95fr 1.05fr; gap: 26px; align-items: center; }
.campus-direct-answer strong { font-family: var(--serif); font-size: 22px; line-height: 1.45; }
.campus-direct-answer span { opacity: .8; line-height: 1.75; }
.campus-direct-answer > a { padding: 11px 17px; color: inherit; border: 1px solid currentColor; border-radius: 999px; font-weight: 900; }
.campus-direct-answer-qiyue { color: #fff; background: linear-gradient(90deg, #08736a, #11968a); }
.campus-direct-answer-shiji { color: #52350a; background: linear-gradient(90deg, #f6dda0, #efbf5c); }

.campus-page-shiji .campus-visit {
  color: #fff;
  background: #0b4935;
}
.campus-page-shiji .campus-visit h2,
.campus-page-shiji .campus-visit p,
.campus-page-shiji .campus-visit strong { color: #fff; }
.campus-page-shiji .campus-visit .section-label,
.campus-page-shiji .campus-visit li > span { color: #f0ca78; }
.campus-page-shiji .campus-visit ol { border-color: rgba(255,255,255,.22); }
.campus-page-shiji .campus-visit li { border-color: rgba(255,255,255,.22); }

@media (max-width: 1120px) {
  .home-page .service-grid { grid-auto-rows: 190px; }
  .home-page .route-stages { gap: 10px; }
  .home-page .route-stage figure { width: 128px; height: 128px; }
  .course-page .course-program-grid { gap: 34px 24px; }
}

@media (max-width: 720px) {
  .home-page .hero-copy { padding-top: 72px; }
  .home-page .hero-visual,
  .home-page .hero-visual img { min-height: 420px; }
  .home-page .hero-visual { margin: 0; border-radius: 0 0 58px 0; }
  .home-page .services-heading { grid-template-columns: 1fr; }
  .home-page .service-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 250px; }
  .home-page .service-grid article,
  .home-page .service-grid article:nth-child(n+3),
  .home-page .service-grid article:first-child,
  .home-page .service-grid article:nth-child(2),
  .home-page .service-grid article:nth-child(3),
  .home-page .service-grid article:nth-child(4),
  .home-page .service-grid article:nth-child(5) { grid-column: auto; grid-row: auto; }
  .home-page .service-grid article:first-child { grid-column: 1 / 3; }
  .home-page .service-grid a,
  .home-page .service-grid article:nth-child(n+3) a { min-height: 250px; padding: 18px; }
  .home-page .growth-route { overflow: hidden; }
  .home-page .route-line { display: none; }
  .home-page .route-stages { display: flex; gap: 22px; padding-bottom: 18px; overflow-x: auto; scroll-snap-type: x mandatory; }
  .home-page .route-stage,
  .home-page .route-stage:nth-child(even) { flex: 0 0 170px; padding-top: 0; scroll-snap-align: start; }
  .home-page .route-stage figure { width: 142px; height: 142px; }
  .home-page .campus-grid { grid-template-columns: 1fr; }
  .home-page .campus-select-card,
  .home-page .campus-select-card:nth-child(2),
  .home-page .campus-select-main,
  .home-page .campus-select-main figure { min-height: 540px; height: 540px; }
  .home-page .campus-select-copy { padding: 120px 24px 78px; }
  .home-page .geo-articles-strip { display: block; }
  .home-page .geo-articles-strip a,
  .home-page .geo-articles-strip a:nth-child(2),
  .home-page .geo-articles-strip a:nth-child(3) { border-right: 0; border-bottom: 1px solid var(--line); }

  .course-page .course-hero { min-height: 0; }
  .course-page .course-hero::after { top: 110px; left: 8px; font-size: 170px; }
  .course-page .course-hero-copy { padding: 72px 22px 50px; }
  .course-page .course-hero h1 { font-size: clamp(43px, 12vw, 58px); }
  .course-page .course-hero-media { min-height: 430px; }
  .course-page .course-hero-main { height: 430px; border-radius: 160px 160px 0 0; }
  .course-page .course-program-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 34px 18px;
    margin-top: 48px;
  }
  .course-page .course-program-grid::before { display: none; }
  .course-program-core { grid-column: 1 / 3; grid-row: auto; width: 166px; height: 166px; }
  .course-page .course-program-card,
  .course-page .course-program-card:nth-of-type(n) { grid-column: auto; grid-row: auto; }
  .course-page .course-program-card figure { width: 128px; height: 128px; }
  .course-page .course-program-card h3 { font-size: 22px; }
  .course-page .course-campus-list,
  .course-page .course-selection ol { grid-template-columns: 1fr; }
  .course-page .course-campus-list a,
  .course-page .course-selection li { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }

  .campus-page-qiyue .campus-program-grid { grid-template-columns: 1fr; gap: 44px; }
  .campus-page-qiyue .campus-program-card:nth-child(2) { margin-top: 0; }
  .campus-page-qiyue .campus-program-card figure { max-width: 320px; margin-right: auto; margin-left: auto; }
  .campus-page-qiyue .campus-visit ol { grid-template-columns: 1fr; }

  .campus-page-shiji .campus-program-card,
  .campus-page-shiji .campus-program-card:nth-child(2),
  .campus-page-shiji .campus-program-card:nth-child(3) {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
  }
  .campus-page-shiji .campus-program-card figure {
    grid-row: auto;
    width: 100%;
    height: 240px;
    margin-bottom: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-intro-wash { display: none; }
  ::view-transition-old(root),
  ::view-transition-new(root) { animation: none; }
  .motion-ready .growth-route .route-stages::before,
  .motion-ready .course-programs .course-program-grid::before {
    clip-path: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-copy > *,
  .course-hero-copy > *,
  .campus-hero-copy > *,
  .hero-visual img,
  .course-hero-main img,
  .campus-hero > figure > img { animation: none !important; }
  .motion-ready .reveal:not(.is-visible) { opacity: 1; filter: none; transform: none; }
  .team-hero-copy > *,
  .team-hero-visual { animation: none !important; }
  .motion-ready .reveal:not(.is-visible) .campus-section-heading,
  .motion-ready .reveal:not(.is-visible) .team-section-heading,
  .motion-ready .reveal:not(.is-visible) .team-preview-copy,
  .motion-ready .campus-environment.reveal:not(.is-visible) figure,
  .motion-ready .team-roster-section.reveal:not(.is-visible) .team-photo-placeholder { opacity: 1; clip-path: none; filter: none; transform: none; }
}

/* Mobile conversion dock: stays out of the reading flow on desktop and gives
   parents one unambiguous, campus-aware action on small screens. */
.mobile-contact-dock { display: none; }

@media (max-width: 720px) {
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .mobile-contact-dock {
    position: fixed;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 10px;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    background: rgba(255, 254, 250, .94);
    border: 1px solid rgba(13, 92, 58, .14);
    border-radius: 16px;
    box-shadow: 0 18px 48px rgba(8, 68, 44, .2);
    backdrop-filter: blur(16px);
  }
  .mobile-contact-dock a {
    display: flex;
    min-width: 0;
    min-height: 50px;
    padding: 9px 12px;
    color: #fff;
    background: var(--forest);
    border-radius: 11px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .mobile-contact-dock a[data-campus="shiji"] { background: #9a6816; }
  .mobile-contact-dock span { overflow: hidden; font-size: 10px; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; opacity: .76; }
  .mobile-contact-dock strong { margin-top: 3px; font-size: 14px; line-height: 1.1; }
}

/* 2026-07 visual refinement: wider editorial rhythm and campus-specific diagrams. */

html {
  scroll-padding-top: 156px;
}

[id] {
  scroll-margin-top: 156px;
}
.brand-era-showcase {
  display: grid;
  grid-template-columns: minmax(520px, .92fr) minmax(520px, 1.08fr);
  gap: clamp(58px, 7vw, 110px);
  align-items: center;
  margin-top: 42px;
}
.brand-era-copy { max-width: 690px; }
.brand-era-years { display: flex; align-items: center; gap: 20px; margin-bottom: 26px; color: var(--forest); }
.brand-era-years b { font-family: var(--serif); font-size: clamp(30px, 3vw, 46px); font-weight: 700; }
.brand-era-years i { width: 78px; height: 1px; background: var(--gold); }
.brand-era-copy h2 { max-width: 690px; margin: 0; color: var(--forest-deep); font-size: clamp(36px, 3.5vw, 54px); line-height: 1.12; letter-spacing: -.04em; }
.brand-era-copy > p { display: none; }
.brand-era-copy > p { max-width: 610px; margin: 28px 0; color: var(--muted); font-size: 18px; }
.brand-era-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 34px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.brand-era-facts div { padding: 20px 18px; border-right: 1px solid var(--line); }
.brand-era-facts div:first-child { padding-left: 0; }
.brand-era-facts div:last-child { border-right: 0; }
.brand-era-facts dt { color: var(--forest); font-family: var(--serif); font-size: 42px; font-weight: 700; line-height: 1; }
.brand-era-facts dd { margin: 5px 0 0; color: var(--muted); font-size: 13px; }
.brand-era-gallery { position: relative; min-height: 590px; }
.brand-era-gallery figure { position: absolute; margin: 0; overflow: hidden; box-shadow: var(--shadow); }
.brand-era-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s var(--ease-out); }
.brand-era-gallery:hover img { transform: scale(1.025); }
.brand-era-main { inset: 0 80px 72px 0; border-radius: 80px 16px 80px 16px; }
.brand-era-gallery figure:nth-child(2) { right: 0; bottom: 0; width: 42%; height: 230px; border: 10px solid #fffefa; border-radius: 50%; }
.brand-era-gallery > span { position: absolute; top: 34px; right: 22px; padding: 17px 19px; color: #fff; background: var(--forest); border-radius: 18px; font-size: 13px; font-weight: 700; line-height: 1.55; }

.course-map-section { background: linear-gradient(180deg, #f3f8ef, #fffefa); }
.course-map-section .route-heading { align-items: end; }
.course-map-panel { margin: 52px 0 0; overflow: hidden; border: 1px solid rgba(13,92,58,.12); border-radius: 30px; box-shadow: var(--shadow-soft); }
.course-map-panel img { display: block; width: 100%; height: auto; }
.course-map-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px; }
.course-map-actions a { display: grid; grid-template-columns: 44px 1fr auto; grid-template-rows: auto auto; gap: 4px 18px; padding: 23px 26px; color: var(--forest-deep); background: #eaf7f3; border: 1px solid #c8e4dc; border-radius: 14px; transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out); }
.course-map-actions a:last-child { color: #593b0a; background: #fff4dd; border-color: #efd29a; }
.course-map-actions a:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.course-map-actions span { grid-row: 1/3; display: grid; width: 44px; height: 44px; color: #fff; background: var(--qiyue); border-radius: 50%; font-weight: 800; place-items: center; }
.course-map-actions a:last-child span { background: var(--shiji); }
.course-map-actions strong { font-family: var(--serif); font-size: 24px; }
.course-map-actions small { color: var(--muted); }
.course-map-actions b { grid-column: 3; grid-row: 1/3; align-self: center; font-size: 13px; }

.home-page .founder { grid-template-columns: minmax(500px, .95fr) minmax(520px, 1.05fr); gap: clamp(70px, 8vw, 130px); }
.home-page .founder > div { max-width: 680px; }
.home-page .founder h2 { max-width: 620px; font-size: clamp(45px, 4.2vw, 64px); line-height: 1.08; }
.home-page .founder p { max-width: 650px; color: rgba(255,255,255,.82); }
.founder-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin: 32px 0 6px; border-top: 1px solid rgba(255,255,255,.24); border-bottom: 1px solid rgba(255,255,255,.24); }
.founder-facts div { padding: 19px 16px; border-right: 1px solid rgba(255,255,255,.2); }
.founder-facts div:first-child { padding-left: 0; }
.founder-facts div:last-child { border-right: 0; }
.founder-facts dt { color: #f0d58f; font-family: var(--serif); font-size: 26px; font-weight: 700; }
.founder-facts dd { margin: 6px 0 0; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.55; }

/* Verifiable brand archive: public records and selected campus evidence. */
.trust-archive {
  position: relative;
  display: grid;
  grid-template-columns: minmax(460px, .86fr) minmax(600px, 1.14fr);
  gap: clamp(58px, 7vw, 112px);
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 8% 12%, rgba(241,207,124,.18), transparent 27%),
    linear-gradient(135deg, #073b2d 0%, #0b533b 58%, #0d6848 100%);
}
.trust-archive::before {
  position: absolute;
  right: -180px;
  bottom: -340px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  content: "";
}
.trust-archive-copy { position: relative; z-index: 2; }
.trust-archive .section-label { color: #f1d486; }
.trust-archive h2 {
  max-width: 650px;
  margin: 13px 0 24px;
  color: #fff;
  font-size: clamp(44px, 4vw, 64px);
  line-height: 1.08;
}
.trust-archive-copy > p:not(.section-label) {
  max-width: 590px;
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 17px;
}
.trust-archive-links { margin-top: 38px; border-top: 1px solid rgba(255,255,255,.22); }
.trust-archive-links a {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.22);
  transition: color .3s ease, padding-left .45s var(--ease-out);
}
.trust-archive-links span { color: #f1d486; font-family: var(--serif); font-size: 24px; }
.trust-archive-links strong { font-size: 16px; }
.trust-archive-links small { color: rgba(255,255,255,.62); font-size: 12px; }
.trust-archive-links a:hover { padding-left: 10px; color: #fff2c8; }
.trust-archive-gallery { position: relative; min-height: 610px; }
.trust-archive-gallery figure { position: absolute; margin: 0; overflow: hidden; background: #123f32; }
.trust-archive-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out), filter .9s var(--ease-out); }
.trust-archive-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 44px 22px 18px;
  color: #fff;
  background: linear-gradient(transparent, rgba(3,27,20,.82));
  font-size: 12px;
}
.trust-archive-main { inset: 0 96px 60px 0; border-radius: 72px 12px 72px 12px; }
.trust-archive-gallery figure:nth-child(2) {
  right: 0;
  bottom: 0;
  width: 44%;
  height: 245px;
  border: 8px solid #0c5a40;
  border-radius: 50%;
}
.trust-archive-gallery > span {
  position: absolute;
  z-index: 3;
  top: 24px;
  right: 28px;
  display: grid;
  width: 118px;
  height: 118px;
  color: #183f2e;
  background: #f1d486;
  border-radius: 50%;
  font-size: 12px;
  text-align: center;
  place-content: center;
}
.trust-archive-gallery > span b { display: block; font-family: var(--serif); font-size: 30px; line-height: 1; }
.trust-archive-gallery:hover img { transform: scale(1.035); filter: saturate(1.08); }

/* Founder public record uses editorial rows instead of marketing cards. */
.founder-public-record {
  display: grid;
  grid-template-columns: minmax(390px, .78fr) minmax(640px, 1.22fr);
  gap: clamp(60px, 8vw, 140px);
  align-items: start;
  background: #fffefa;
}
.founder-record-heading { position: sticky; top: 130px; }
.founder-record-heading h2 {
  max-width: 560px;
  margin: 14px 0 24px;
  color: var(--forest-deep);
  font-size: clamp(42px, 3.8vw, 58px);
  line-height: 1.1;
}
.founder-record-heading > p:last-child { max-width: 520px; margin: 0; color: var(--muted); font-size: 16px; }
.founder-record-list { border-top: 1px solid var(--line); }
.founder-record-list a {
  position: relative;
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 8px 28px;
  padding: 34px 52px 34px 0;
  color: var(--forest-deep);
  border-bottom: 1px solid var(--line);
  transition: background .35s ease, padding-left .45s var(--ease-out);
}
.founder-record-list a::after { position: absolute; top: 34px; right: 6px; color: var(--gold-deep); content: "↗"; font-size: 22px; }
.founder-record-list a:hover { padding-left: 18px; background: linear-gradient(90deg, #f1f7ed, transparent); }
.founder-record-list span { grid-row: 1 / 4; color: var(--gold-deep); font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.founder-record-list strong { font-family: var(--serif); font-size: 25px; line-height: 1.35; }
.founder-record-list p { max-width: 690px; margin: 8px 0 0; color: var(--muted); }
.founder-record-list b { margin-top: 12px; color: var(--forest); font-size: 12px; }

/* Campus beliefs distilled from the two campus principals' supplied materials. */
.campus-beliefs {
  display: grid;
  grid-template-columns: minmax(360px, .72fr) minmax(700px, 1.28fr);
  gap: clamp(56px, 8vw, 132px);
  align-items: end;
  overflow: hidden;
}
.campus-beliefs-qiyue { background: linear-gradient(135deg, #0b6d63, #0d8f82); }
.campus-beliefs-shiji { background: linear-gradient(135deg, #173f32 0 55%, #b97818 55% 100%); }
.campus-beliefs header h2 {
  max-width: 650px;
  margin: 14px 0 22px;
  color: #fff;
  font-size: clamp(40px, 3.7vw, 58px);
  line-height: 1.1;
  letter-spacing: -.025em;
}
.campus-beliefs header > p:last-child { max-width: 560px; margin: 0; color: rgba(255,255,255,.76); font-size: 16px; }
.campus-beliefs .section-label { color: #f8dda0; }
.campus-belief-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.3); }
.campus-belief-grid article { min-height: 290px; padding: 30px 28px; border-right: 1px solid rgba(255,255,255,.24); }
.campus-belief-grid article:last-child { border-right: 0; }
.campus-belief-grid span { display: block; color: #f8dda0; font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.campus-belief-grid h3 { margin: 78px 0 14px; color: #fff; font-family: var(--serif); font-size: 25px; line-height: 1.2; }
.campus-belief-grid p { margin: 0; color: rgba(255,255,255,.72); font-size: 14px; }
.campus-page-qiyue .campus-hero > figure > img { object-position: center; }
.campus-page-shiji .campus-hero > figure > img { object-position: center; }

/* Qiyue: a soft, domestic low-age world with organic image framing. */
.campus-life-proof {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, .78fr) minmax(660px, 1.22fr);
  gap: clamp(60px, 8vw, 140px);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(255,255,255,.95), transparent 30%),
    linear-gradient(135deg, #dff5ee, #f3fbf5 62%, #fff9e9);
}
.campus-life-proof::after {
  position: absolute;
  top: -210px;
  left: -150px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(12,142,130,.18);
  border-radius: 50%;
  content: "";
}
.campus-life-copy { position: relative; z-index: 2; }
.campus-life-copy > span { color: var(--qiyue); font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.campus-life-copy h2 {
  max-width: 600px;
  margin: 15px 0 24px;
  color: #07584f;
  font-size: clamp(44px, 4vw, 62px);
  line-height: 1.08;
}
.campus-life-copy > p { max-width: 580px; margin: 0; color: #526e68; font-size: 17px; }
.campus-life-copy ul { margin: 36px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(12,142,130,.2); }
.campus-life-copy li { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 19px 0; border-bottom: 1px solid rgba(12,142,130,.2); }
.campus-life-copy li b { color: var(--qiyue-deep); font-family: var(--serif); font-size: 20px; }
.campus-life-copy li small { color: #617873; font-size: 13px; }
.campus-life-gallery { position: relative; min-height: 610px; }
.campus-life-gallery figure { position: absolute; margin: 0; overflow: hidden; box-shadow: 0 26px 70px rgba(8,103,95,.14); }
.campus-life-gallery figure:first-child { inset: 0 130px 60px 0; border-radius: 52% 48% 14% 28% / 34% 38% 18% 42%; }
.campus-life-gallery figure:last-child { right: 0; bottom: 0; width: 47%; height: 290px; border: 8px solid #effaf6; border-radius: 46% 54% 42% 58% / 52% 38% 62% 48%; }
.campus-life-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .85s var(--ease-out); }
.campus-life-gallery figcaption { position: absolute; right: 18px; bottom: 14px; padding: 8px 12px; color: #fff; background: rgba(5,81,73,.76); border-radius: 999px; font-size: 11px; backdrop-filter: blur(8px); }
.campus-life-gallery figure:hover img { transform: scale(1.045); }

/* Shiji: a structured learning axis, deliberately distinct from Qiyue. */
.campus-learning-proof {
  position: relative;
  display: grid;
  grid-template-columns: minmax(620px, 1.05fr) minmax(490px, .95fr);
  gap: clamp(58px, 7vw, 112px);
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(112deg, #153e32 0 53%, #b87617 53% 100%);
}
.campus-learning-proof::before {
  position: absolute;
  top: 34px;
  right: 5vw;
  color: rgba(255,255,255,.08);
  content: "LEARNING";
  font-family: var(--serif);
  font-size: clamp(72px, 9vw, 152px);
  line-height: 1;
}
.campus-learning-proof > figure { position: relative; z-index: 2; margin: 0; overflow: hidden; border-radius: 8px; box-shadow: 0 34px 90px rgba(0,0,0,.25); }
.campus-learning-proof > figure::after { position: absolute; inset: 0; background: linear-gradient(transparent 58%, rgba(6,35,27,.75)); content: ""; }
.campus-learning-proof figure img { display: block; width: 100%; height: 560px; object-fit: cover; transition: transform .9s var(--ease-out); }
.campus-learning-proof figure:hover img { transform: scale(1.035); }
.campus-learning-proof figcaption { position: absolute; z-index: 2; right: 22px; bottom: 18px; left: 22px; color: rgba(255,255,255,.82); font-size: 12px; }
.campus-learning-proof > div { position: relative; z-index: 2; }
.campus-proof-number { display: block; margin-bottom: 36px; color: #f6d792; font-family: var(--serif); font-size: 42px; }
.campus-learning-proof .section-label { color: #f6d792; }
.campus-learning-proof h2 { max-width: 620px; margin: 14px 0 22px; color: #fff; font-size: clamp(40px, 3.5vw, 56px); line-height: 1.1; }
.campus-learning-proof > div > p:not(.section-label) { max-width: 570px; margin: 0; color: rgba(255,255,255,.76); font-size: 16px; }
.campus-learning-proof dl { margin: 34px 0 0; border-top: 1px solid rgba(255,255,255,.26); }
.campus-learning-proof dl > div { display: grid; grid-template-columns: 120px 1fr; gap: 18px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.26); }
.campus-learning-proof dt { color: #fff; font-family: var(--serif); font-size: 19px; }
.campus-learning-proof dd { margin: 0; color: rgba(255,255,255,.68); font-size: 13px; }

.home-page .campus-select-main,
.home-page .campus-select-main figure { min-height: 620px; height: 620px; }
.home-page .campus-select-copy { padding: 120px 46px 64px; }
.home-page .campus-select-copy h3 { max-width: 560px; font-size: clamp(42px, 4vw, 60px); line-height: 1.04; }
.home-page .campus-select-copy ul { max-width: 600px; }

.consult-campus { display: block; color: #fff; background: linear-gradient(120deg, #0b4a36, #0e6548); }
.consult-campus-head { display: grid; grid-template-columns: 1fr .7fr; gap: 60px; align-items: end; }
.consult-campus-head h2 { margin: 12px 0 0; color: #fff; font-size: clamp(42px, 4vw, 62px); }
.consult-campus-head > p { max-width: 460px; margin: 0; color: rgba(255,255,255,.72); font-size: 17px; }
.consult-campus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 48px; }
.consult-campus-grid article { display: grid; grid-template-columns: 156px minmax(0, 1fr); gap: 22px; align-items: center; padding: 30px; color: var(--forest-deep); background: #f3fbf6; border-radius: 18px; }
.consult-campus-grid article:last-child { background: #fff3d8; }
.campus-qr-frame { position: relative; display: block; width: 156px; height: 156px; overflow: hidden; flex: 0 0 auto; background: #fff; border-radius: 16px; box-shadow: 0 14px 30px rgba(13,92,58,.14); }
.campus-qr-frame > img { position: absolute; display: block; max-width: none !important; height: auto !important; object-fit: initial; transform: none; }
.campus-qr-frame > img[src*="qiyue-wechat-qr"] { width: 194px !important; left: -19px; top: -56px; }
.campus-qr-frame > img[src*="shiji-wechat-qr"] { width: 201px !important; left: -22px; top: -83px; }
.consult-campus-grid .campus-qr-frame { width: 156px; height: 156px; }
.consult-campus-copy { min-width: 0; }
.consult-campus-grid span { color: var(--forest); font-size: 13px; font-weight: 800; }
.consult-campus-grid strong { display: block; margin: 12px 0 10px; font-family: var(--serif); font-size: 26px; line-height: 1.18; }
.consult-campus-grid p { margin: 0 0 16px; color: var(--muted); }
.consult-campus-phones { display: grid; gap: 8px; }
.consult-campus-phones a { display: inline-flex; align-items: baseline; gap: 10px; width: fit-content; color: var(--forest); font-family: var(--serif); font-size: 28px; font-weight: 700; line-height: 1.05; }
.consult-campus-phones em { min-width: 36px; color: var(--muted); font-family: var(--sans); font-size: 13px; font-style: normal; font-weight: 800; }
.consult-contact-note { margin: 22px 0 0; color: rgba(255,255,255,.7); font-size: 13px; }

.course-page .course-hero { grid-template-columns: minmax(600px, .95fr) minmax(620px, 1.05fr); min-height: 690px; }
.course-page .course-hero-copy { max-width: 800px; padding-top: 96px; padding-right: 70px; }
.course-page .course-hero h1 { max-width: 780px; font-size: clamp(54px, 5vw, 76px); line-height: 1.07; }
.course-page .course-hero-copy > p:not(.hero-kicker) { max-width: 700px; }
.course-page .course-hero-media { min-height: 690px; }
.course-page .course-hero-main { height: 620px; }
.course-fee-framework { background: #fffefa; }
.course-fee-framework > header { display: grid; grid-template-columns: 1fr .78fr; gap: 70px; align-items: end; }
.course-fee-framework h2 { max-width: 650px; margin: 12px 0 0; color: var(--forest-deep); font-size: clamp(40px, 3.8vw, 58px); line-height: 1.12; }
.course-fee-framework header > p { max-width: 560px; margin: 0; color: var(--muted); font-size: 17px; }
.fee-framework-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 46px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fee-framework-grid article { min-height: 220px; padding: 28px; border-right: 1px solid var(--line); }
.fee-framework-grid article:last-child { border-right: 0; }
.fee-framework-grid span { color: var(--forest); font-size: 12px; font-weight: 800; }
.fee-framework-grid strong { display: block; margin: 45px 0 12px; color: var(--forest-deep); font-family: var(--serif); font-size: 28px; }
.fee-framework-grid p { margin: 0; color: var(--muted); }

.learning-page .learning-hero { grid-template-columns: minmax(620px, .94fr) minmax(620px, 1.06fr); min-height: 720px; background: linear-gradient(110deg,#fffefa 0 47%,#edf5e7 47% 100%); }
.learning-page .learning-hero-copy { max-width: 820px; padding-right: 78px; }
.learning-page .learning-hero h1 { max-width: 760px; font-size: clamp(54px, 5vw, 78px); line-height: 1.06; }
.learning-page .learning-hero-copy > p:not(.hero-kicker) { max-width: 690px; }
.learning-page .learning-hero-media,
.learning-page .learning-hero-media > img { min-height: 720px; }
.learning-page .learning-hero-media > img { object-position: 22% center; }

.campus-reading-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 max(30px, calc((100vw - 1240px) / 2));
  background: #fffefa;
  border-top: 1px solid rgba(13, 92, 58, .1);
  border-bottom: 1px solid rgba(13, 92, 58, .14);
}
.campus-reading-path a {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 4px 14px;
  min-height: 118px;
  padding: 27px 22px;
  color: var(--ink);
  border-right: 1px solid rgba(13, 92, 58, .12);
  transition: color .25s ease, background .25s ease;
}
.campus-reading-path a:first-child { border-left: 1px solid rgba(13, 92, 58, .12); }
.campus-reading-path span {
  grid-row: 1 / 3;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
}
.campus-reading-path b { align-self: end; font-family: var(--serif); font-size: 19px; }
.campus-reading-path small { color: var(--muted); font-size: 12px; }
.campus-reading-path a:hover { color: var(--forest-deep); background: #f2f8ed; }
.campus-reading-path-shiji { background: #fbf5e9; border-color: rgba(201, 137, 34, .24); }
.campus-reading-path-shiji a { border-color: rgba(201, 137, 34, .24); }
.campus-reading-path-shiji span { color: #a96813; }
.campus-reading-path-shiji a:hover { color: #173f32; background: #f4e5c8; }
.campus-reading-path + .campus-introduction { border-top: 0; }
#fit, #programs, #class-method, #visit { scroll-margin-top: 96px; }
.campus-page .consult-address { margin: 24px 0 0; color: rgba(13, 45, 35, .72); line-height: 1.8; }
.campus-page-shiji .consult-address { color: rgba(255,255,255,.72); }

.campus-programs-refined .campus-program-grid { gap: 20px; align-items: stretch; }
.campus-programs-refined .campus-program-card,
.campus-page-qiyue .campus-programs-refined .campus-program-card,
.campus-page-shiji .campus-programs-refined .campus-program-card { display: grid; grid-template-columns: minmax(180px, .78fr) minmax(230px, 1.22fr); grid-template-rows: auto; gap: 0; min-height: 360px; margin: 0; padding: 0; overflow: hidden; text-align: left; background: #fff; border: 1px solid rgba(13,92,58,.12); border-radius: 18px; box-shadow: var(--shadow-soft); }
.campus-page-qiyue .campus-programs-refined .campus-program-grid,
.campus-page-shiji .campus-programs-refined .campus-program-grid { grid-template-columns: repeat(3, 1fr); max-width: none; border: 0; }
.campus-programs-refined .campus-program-card figure,
.campus-page-qiyue .campus-programs-refined .campus-program-card figure,
.campus-page-shiji .campus-programs-refined .campus-program-card figure { grid-row: auto; width: 100%; height: 100%; min-height: 360px; margin: 0; border: 0; border-radius: 0; }
.campus-programs-refined .campus-program-card > div { display: flex; flex-direction: column; padding: 30px 26px; }
.campus-programs-refined .campus-program-card span,
.campus-programs-refined .campus-program-card h3,
.campus-programs-refined .campus-program-card p { margin-right: 0; margin-left: 0; }
.campus-programs-refined .campus-program-card h3 { margin: 46px 0 12px; font-size: 27px; line-height: 1.18; }
.campus-programs-refined .campus-program-card .campus-program-highlight { display: block; margin-top: 24px; color: var(--forest); font-family: var(--serif); font-size: 20px; line-height: 1.2; }
.campus-programs-refined .campus-program-card .campus-program-proof { margin-top: 10px; color: var(--forest-deep); font-size: 14px; font-weight: 800; line-height: 1.7; }
.campus-programs-refined .campus-program-age-list { display: grid; gap: 0; margin: 14px 0 0; border-top: 1px solid rgba(12, 142, 130, .22); }
.campus-programs-refined .campus-program-age-list > div { display: grid; grid-template-columns: 72px 1fr; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(12, 142, 130, .16); }
.campus-programs-refined .campus-program-age-list dt { color: var(--forest); font-size: 13px; font-weight: 900; }
.campus-programs-refined .campus-program-age-list dd { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.campus-programs-refined .campus-program-card p { margin: 0; }
.campus-programs-refined .campus-program-card b { margin-top: auto; padding-top: 24px; color: var(--forest); font-size: 13px; }
.campus-page-qiyue .campus-programs-refined { background: #effaf6; }
.campus-page-qiyue .campus-programs-refined .campus-program-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 1040px; }
.campus-page-shiji .campus-programs-refined { background: #fbf5e9; }
.campus-page-shiji .campus-programs-refined .campus-program-card { border-color: rgba(201,137,34,.22); border-radius: 8px; }

.campus-process { background: #fffefa; }
.campus-process > header { display: grid; grid-template-columns: 1fr .72fr; gap: 70px; align-items: end; }
.campus-process h2 { margin: 12px 0 0; color: var(--forest-deep); font-size: clamp(40px, 3.8vw, 58px); }
.campus-process header > p { max-width: 520px; margin: 0; color: var(--muted); font-size: 17px; }
.campus-process figure { margin: 44px 0 0; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow-soft); }
.campus-process img { display: block; width: 100%; height: auto; }
.campus-process-shiji { background: #f7efe0; }
.campus-fee-note { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(60px, 8vw, 130px); align-items: center; background: #f4f7ee; }
.campus-page-shiji .campus-fee-note { background: #113f31; }
.campus-course-support { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(44px, 8vw, 120px); align-items: center; background: #fffefa; }
.campus-page-shiji .campus-course-support { background: #f5ead6; }
.campus-course-support h2 { margin: 10px 0 0; color: var(--forest-deep); font-size: clamp(36px, 3.4vw, 52px); line-height: 1.12; }
.campus-course-support p { margin: 0; color: #52685d; font-size: 17px; line-height: 1.8; }
.campus-course-support ul { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 24px 0 0; list-style: none; }
.campus-course-support li { padding: 10px 15px; color: var(--forest); font-weight: 750; background: #e8f4ed; border: 1px solid rgba(13,92,58,.14); border-radius: 999px; }
.campus-page-shiji .campus-course-support li { color: #7f531c; background: #fffaf0; border-color: rgba(144,94,29,.18); }
.campus-course-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; max-width: 980px; padding: 22px 26px; margin: 24px 0 42px; background: #fffefa; border: 1px solid rgba(13,92,58,.14); border-radius: 14px; box-shadow: var(--shadow-soft); }
.campus-course-summary p { margin: 0; color: #456156; line-height: 1.7; }
.campus-course-summary strong { color: var(--forest); }
.campus-course-summary small { grid-column: 1 / -1; color: #76867d; line-height: 1.6; }
.campus-primary-callout { display: inline-block; margin: 18px 0 0; padding: 10px 14px; color: #365e4c; background: #e4f3e8; border-radius: 999px; }
.campus-primary-callout strong { color: var(--forest); }
.course-current-offerings { color: #fff; background: linear-gradient(135deg, #083f2d, #0f6650); }
.course-current-offerings > header { display: flex; align-items: end; justify-content: space-between; gap: 32px; }
.course-current-offerings h2 { max-width: 720px; margin: 8px 0 0; color: #fff; font-size: clamp(36px, 4vw, 56px); line-height: 1.12; }
.course-current-offerings .section-label { color: #f3d98c; }
.course-current-offerings > div { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 34px; }
.course-current-offerings article { padding: 24px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 12px; }
.course-current-offerings article span { display: block; color: #f3d98c; font-size: 12px; font-weight: 750; letter-spacing: .08em; }
.course-current-offerings article strong { display: block; margin-top: 12px; font-family: var(--serif); font-size: 25px; line-height: 1.35; }
.course-current-offerings article p { margin: 12px 0 0; color: #d7e6df; line-height: 1.65; }
.course-current-offerings > small { display: block; margin-top: 18px; color: #c8dacf; }
.qiyue-program-details { background: #effaf6; }
.qiyue-program-details > header { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 7vw, 100px); align-items: end; }
.qiyue-program-details h2 { margin: 10px 0 0; color: var(--forest-deep); font-size: clamp(38px, 4vw, 58px); line-height: 1.12; }
.qiyue-program-details > header > p:last-child { max-width: 520px; margin: 0; color: #52685d; font-size: 17px; line-height: 1.8; }
.qiyue-program-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; }
.qiyue-program-detail-grid article { padding: 30px; background: #fffefa; border: 1px solid rgba(13,92,58,.14); border-radius: 16px; box-shadow: var(--shadow-soft); }
.qiyue-program-detail-grid article.qiyue-program-detail-primary { color: #fff; background: linear-gradient(145deg, #08736a, #0b4b3c); border-color: transparent; }
.qiyue-program-detail-grid span { display: block; color: #08736a; font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.qiyue-program-detail-grid .qiyue-program-detail-primary span { color: #e4f5c7; }
.qiyue-program-detail-grid h3 { margin: 18px 0; color: var(--forest-deep); font-family: var(--serif); font-size: 28px; line-height: 1.25; }
.qiyue-program-detail-grid .qiyue-program-detail-primary h3 { color: #fff; }
.qiyue-program-detail-grid p { margin: 0 0 15px; color: #5a6e64; line-height: 1.78; }
.qiyue-program-detail-grid .qiyue-program-detail-primary p { color: rgba(255,255,255,.82); }
.qiyue-program-detail-grid ul { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 20px 0 0; list-style: none; }
.qiyue-program-detail-grid li { padding: 7px 10px; color: #e6f7d6; font-size: 12px; font-weight: 750; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; }
.qiyue-program-disclaimer { margin: 22px 0 0; color: #718379; font-size: 13px; }
@media (max-width: 980px) {
  .qiyue-program-details > header, .qiyue-program-detail-grid { grid-template-columns: 1fr; }
}
.campus-fee-note h2 { margin: 12px 0 0; color: var(--forest-deep); font-size: clamp(38px, 3.5vw, 54px); }
.campus-page-shiji .campus-fee-note h2 { color: #fff; }
.campus-page-shiji .campus-fee-note .section-label { color: #efcd7f; }
.campus-fee-facts { border-top: 1px solid var(--line); }
.campus-page-shiji .campus-fee-facts { border-color: rgba(255,255,255,.2); }
.campus-fee-facts p { display: grid; grid-template-columns: 110px 1fr; gap: 24px; margin: 0; padding: 22px 0; border-bottom: 1px solid var(--line); }
.campus-page-shiji .campus-fee-facts p { border-color: rgba(255,255,255,.2); }
.campus-fee-facts span { color: var(--muted); font-size: 13px; }
.campus-fee-facts strong { color: var(--forest-deep); }
.campus-fee-facts a { color: var(--forest); font-family: var(--serif); font-size: 27px; font-weight: 700; }
.campus-page-shiji .campus-fee-facts span { color: rgba(255,255,255,.56); }
.campus-page-shiji .campus-fee-facts strong,
.campus-page-shiji .campus-fee-facts a { color: #fff; }

.motion-ready .course-map-panel,
.motion-ready .campus-process figure { transform-origin: center top; transition: opacity .75s var(--ease-out), transform .9s var(--ease-out), clip-path .9s var(--ease-out); }
.motion-ready .reveal:not(.is-visible) .course-map-panel,
.motion-ready .reveal:not(.is-visible).campus-process figure { opacity: .3; clip-path: inset(0 100% 0 0 round 24px); transform: translateY(18px); }
.motion-ready .reveal.is-visible .course-map-actions a:nth-child(2) { transition-delay: 100ms; }

.motion-ready .trust-archive-gallery figure,
.motion-ready .campus-life-gallery figure,
.motion-ready .campus-learning-proof > figure {
  transition: opacity .8s var(--ease-out), transform 1s var(--ease-out), clip-path 1s var(--ease-out);
}
.motion-ready .trust-archive:not(.is-visible) .trust-archive-gallery figure,
.motion-ready .campus-life-proof:not(.is-visible) .campus-life-gallery figure,
.motion-ready .campus-learning-proof:not(.is-visible) > figure {
  opacity: .35;
  clip-path: inset(0 0 100% 0);
  transform: translateY(28px) scale(.98);
}
.motion-ready .trust-archive.is-visible .trust-archive-gallery figure:nth-child(2),
.motion-ready .campus-life-proof.is-visible .campus-life-gallery figure:nth-child(2) { transition-delay: 140ms; }
@media (max-width: 1120px) {
  .brand-era-showcase { grid-template-columns: 1fr 1fr; }
  .brand-era-gallery { min-height: 500px; }
  .home-page .founder { grid-template-columns: 1fr 1fr; }
  .course-page .course-hero,
  .learning-page .learning-hero { grid-template-columns: 1fr 1fr; }
  .campus-page-qiyue .campus-programs-refined .campus-program-grid,
  .campus-page-shiji .campus-programs-refined .campus-program-grid { grid-template-columns: 1fr; }
  .campus-programs-refined .campus-program-card,
  .campus-page-qiyue .campus-programs-refined .campus-program-card,
  .campus-page-shiji .campus-programs-refined .campus-program-card { min-height: 300px; }
  .campus-programs-refined .campus-program-card figure,
  .campus-page-qiyue .campus-programs-refined .campus-program-card figure,
  .campus-page-shiji .campus-programs-refined .campus-program-card figure { min-height: 300px; }
  .trust-archive,
  .founder-public-record,
  .campus-beliefs,
  .campus-life-proof,
  .campus-learning-proof { grid-template-columns: 1fr 1fr; gap: 48px; }
  .campus-belief-grid { grid-template-columns: 1fr; }
  .campus-belief-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.24); }
  .campus-belief-grid article:last-child { border-bottom: 0; }
  .campus-belief-grid h3 { margin-top: 34px; }
  .trust-archive-gallery,
  .campus-life-gallery { min-height: 500px; }
  .founder-record-heading { position: static; }
  .campus-learning-proof figure img { height: 480px; }
}

@media (max-width: 720px) {
  .campus-reading-path { grid-template-columns: 1fr 1fr; padding: 0 14px; }
  .campus-reading-path a { grid-template-columns: 28px 1fr; min-height: 108px; padding: 20px 12px; }
  .campus-reading-path a:nth-child(2) { border-right: 0; }
  .campus-reading-path a:nth-child(-n+2) { border-bottom: 1px solid rgba(13, 92, 58, .12); }
  .campus-reading-path-shiji a:nth-child(-n+2) { border-bottom-color: rgba(201, 137, 34, .24); }
  .campus-reading-path b { font-size: 16px; }
  .campus-reading-path small { font-size: 11px; line-height: 1.45; }
  .brand-era-showcase,
  .consult-campus-head,
  .consult-campus-grid,
  .course-fee-framework > header,
  .campus-process > header,
  .campus-fee-note { grid-template-columns: 1fr; gap: 30px; }
  .brand-era-copy h2 { font-size: clamp(39px, 11vw, 52px); }
  .brand-era-years { gap: 12px; }
  .brand-era-years i { width: 44px; }
  .brand-era-facts div { padding: 16px 9px; }
  .brand-era-facts dt { font-size: 28px; }
  .brand-era-gallery { min-height: 390px; }
  .brand-era-main { inset: 0 34px 54px 0; border-radius: 48px 12px 48px 12px; }
  .brand-era-gallery figure:nth-child(2) { width: 45%; height: 150px; border-width: 6px; }
  .brand-era-gallery > span { top: 18px; right: 0; padding: 12px; font-size: 11px; }
  .course-map-panel { margin-right: -14px; margin-left: -14px; overflow-x: auto; border-radius: 16px; }
  .course-map-panel img { width: 900px; max-width: none; }
  .course-map-actions { grid-template-columns: 1fr; }
  .course-map-actions a { grid-template-columns: 40px 1fr; }
  .course-map-actions b { grid-column: 2; grid-row: 3; margin-top: 9px; }
  .home-page .founder { grid-template-columns: 1fr; }
  .founder-facts { grid-template-columns: 1fr; }
  .founder-facts div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .founder-facts div:first-child { padding-left: 16px; }
  .founder-facts div:last-child { border-bottom: 0; }
  .home-page .campus-select-main,
  .home-page .campus-select-main figure { min-height: 540px; height: 540px; }
  .home-page .campus-select-copy { padding: 94px 24px 58px; }
  .home-page .campus-select-copy h3 { font-size: 40px; }
  .consult-campus-grid article { grid-template-columns: 124px minmax(0, 1fr); gap: 14px; padding: 20px; }
  .consult-campus-grid .campus-qr-frame { width: 124px; height: 124px; border-radius: 12px; }
  .consult-campus-grid .campus-qr-frame > img[src*="qiyue-wechat-qr"] { width: 153px !important; left: -15px; top: -44px; }
  .consult-campus-grid .campus-qr-frame > img[src*="shiji-wechat-qr"] { width: 158px !important; left: -17px; top: -65px; }
  .consult-campus-grid strong { font-size: 20px; }
  .consult-campus-grid p { margin-bottom: 12px; font-size: 13px; }
  .consult-campus-phones { gap: 6px; }
  .consult-campus-phones a { gap: 8px; font-size: 20px; }
  .consult-campus-phones em { min-width: 30px; font-size: 11px; }
  .course-page .course-hero { display: flex; flex-direction: column; min-height: 0; }
  .course-page .course-hero-copy { padding: 64px 22px 44px; }
  .course-page .course-hero h1 { font-size: clamp(42px, 11vw, 56px); }
  .course-page .course-hero-media { min-height: 390px; }
  .course-page .course-hero-main { height: 390px; }
  .fee-framework-grid { grid-template-columns: 1fr; }
  .course-direct-answers,
  .course-direct-answers dl > div,
  .campus-direct-answer,
  .campus-direct-answer > div { grid-template-columns: 1fr; gap: 18px; }
  .campus-direct-answer > a { justify-self: start; }
  .fee-framework-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .fee-framework-grid article:last-child { border-bottom: 0; }
  .fee-framework-grid strong { margin-top: 24px; }
  .learning-page .learning-hero { display: flex; flex-direction: column; }
  .learning-page .learning-hero-copy { padding: 64px 22px 48px; }
  .learning-page .learning-hero h1 { font-size: clamp(43px, 11vw, 56px); }
  .learning-page .learning-hero-media,
  .learning-page .learning-hero-media > img { min-height: 450px; }
  .learning-page .learning-hero-media > img { object-position: 28% center; }
  .campus-programs-refined .campus-program-card,
  .campus-page-qiyue .campus-programs-refined .campus-program-card,
  .campus-page-shiji .campus-programs-refined .campus-program-card { grid-template-columns: 1fr; }
  .campus-programs-refined .campus-program-card figure,
  .campus-page-qiyue .campus-programs-refined .campus-program-card figure,
  .campus-page-shiji .campus-programs-refined .campus-program-card figure { min-height: 230px; height: 230px; }
  .campus-programs-refined .campus-program-card h3 { margin-top: 28px; }
  .campus-process figure { margin-right: -12px; margin-left: -12px; overflow-x: auto; border-radius: 14px; }
  .campus-process img { width: 900px; max-width: none; }
  .campus-fee-facts p { grid-template-columns: 90px 1fr; gap: 16px; }
  .trust-archive,
  .founder-public-record,
  .campus-beliefs,
  .campus-life-proof,
  .campus-learning-proof { grid-template-columns: 1fr; gap: 42px; }
  .campus-beliefs-shiji { background: linear-gradient(164deg, #173f32 0 47%, #a96813 47% 100%); }
  .campus-beliefs header h2 { font-size: clamp(38px, 10.5vw, 50px); }
  .campus-belief-grid article { padding: 26px 4px; }
  .trust-archive h2,
  .campus-life-copy h2,
  .campus-learning-proof h2 { font-size: clamp(38px, 10.5vw, 50px); }
  .trust-archive-links a { grid-template-columns: 58px 1fr; gap: 10px 14px; }
  .trust-archive-links small { grid-column: 2; }
  .trust-archive-gallery,
  .campus-life-gallery { min-height: 420px; }
  .trust-archive-main { inset: 0 38px 54px 0; border-radius: 46px 10px 46px 10px; }
  .trust-archive-gallery figure:nth-child(2) { width: 47%; height: 170px; border-width: 5px; }
  .trust-archive-gallery > span { top: 12px; right: 0; width: 88px; height: 88px; }
  .trust-archive-gallery > span b { font-size: 24px; }
  .founder-record-heading h2 { font-size: clamp(38px, 10.5vw, 50px); }
  .founder-record-list a { grid-template-columns: 1fr; padding: 26px 40px 26px 0; }
  .founder-record-list span { grid-row: auto; }
  .founder-record-list strong { font-size: 22px; }
  .founder-record-list a:hover { padding-left: 10px; }
  .campus-life-copy li { grid-template-columns: 1fr; gap: 4px; }
  .campus-life-gallery figure:first-child { inset: 0 42px 52px 0; }
  .campus-life-gallery figure:last-child { width: 50%; height: 175px; border-width: 5px; }
  .campus-learning-proof { background: linear-gradient(164deg, #153e32 0 63%, #a96813 63% 100%); }
  .campus-learning-proof::before { top: auto; right: -20px; bottom: 20px; font-size: 64px; }
  .campus-learning-proof figure img { height: 360px; }
  .campus-proof-number { margin-bottom: 22px; }
  .campus-learning-proof dl > div { grid-template-columns: 92px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .team-coming > span { transition: none; }
  .campus-team-preview:hover .team-coming > span { transform: none; }
  .motion-ready .reveal:not(.is-visible) .course-map-panel,
  .motion-ready .reveal:not(.is-visible).campus-process figure { opacity: 1; clip-path: none; transform: none; }
  .motion-ready .trust-archive:not(.is-visible) .trust-archive-gallery figure,
  .motion-ready .campus-life-proof:not(.is-visible) .campus-life-gallery figure,
  .motion-ready .campus-learning-proof:not(.is-visible) > figure { opacity: 1; clip-path: none; transform: none; }
  .motion-ready .trust-archive-gallery > span { animation: none; }
}

/* Homepage final pass: fewer visual tricks, more editorial presence. */
.home-page .hero {
  min-height: max(730px, calc(100vh - 78px));
  background: linear-gradient(112deg, #fffefa 0 46%, #edf3e8 46% 100%);
}
.home-page .hero::before { top: -380px; left: 31%; width: 860px; height: 860px; border-color: rgba(13, 92, 58, .12); }
.home-page .hero::after { bottom: -260px; left: -220px; width: 570px; height: 570px; background: #dcebcf; }
.home-page .hero-copy { position: relative; z-index: 1; max-width: 650px; padding-top: 92px; padding-bottom: 82px; }
.home-page .hero-copy::before {
  position: absolute; top: 96px; left: -32px; width: 4px; height: 94px; content: "";
  background: linear-gradient(#e8bd55, rgba(232,189,85,0));
}
.home-page .hero-kicker { margin-bottom: 28px; color: #165d43; font-size: 13px; letter-spacing: .18em; }
.home-page .brand-hero-title { gap: 19px; }
.home-page .brand-hero-title span { font-size: clamp(62px, 5.65vw, 92px); line-height: .98; letter-spacing: -.065em; }
.home-page .brand-hero-title em { color: #a06b12; font-size: clamp(19px, 1.38vw, 25px); letter-spacing: .16em; }
.home-page .hero-text { max-width: 530px; margin-top: 31px; color: #4f6258; font-size: 17px; line-height: 1.95; }
.home-page .hero-actions { margin-top: 34px; }
.home-page .hero-actions .button { color: #193b2e; background: #f2bb46; box-shadow: 0 16px 30px rgba(155, 98, 12, .22); }
.home-page .hero-actions .button:hover { color: #fff; background: var(--forest); }
.home-page .fine-print { gap: 0; margin-top: 44px; border-top: 1px solid rgba(13, 92, 58, .16); }
.home-page .fine-print span { padding: 15px 20px 0 0; margin-right: 20px; background: transparent; border: 0; border-right: 1px solid rgba(13, 92, 58, .14); border-radius: 0; color: #567065; font-size: 11px; letter-spacing: .06em; }
.home-page .fine-print span:last-child { border-right: 0; }
.home-page .hero-visual { position: relative; min-height: calc(max(730px, 100vh - 78px) - 58px); margin: 29px 30px 29px 0; border-radius: 36px 8px 36px 8px; box-shadow: 0 32px 80px rgba(10, 63, 42, .18); }
.home-page .hero-visual::before { position: absolute; z-index: 1; top: 28px; left: 28px; padding: 10px 13px; content: "淄博 · 2006"; color: #fff9e7; background: rgba(7, 58, 39, .78); border: 1px solid rgba(255,255,255,.3); border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.home-page .hero-visual::after { position: absolute; z-index: 1; right: -1px; bottom: 28px; width: 9px; height: 160px; content: ""; background: #efbc4f; }
.home-page .hero-visual img { min-height: calc(max(730px, 100vh - 78px) - 58px); object-position: 58% center; }

.home-page .answer { position: relative; overflow: hidden; padding-top: 148px; padding-bottom: 138px; }
.home-page .answer::after { position: absolute; right: -100px; bottom: -120px; width: 340px; height: 340px; content: ""; border: 1px solid rgba(13,92,58,.13); border-radius: 50%; }
.home-page .brand-era-showcase { position: relative; z-index: 1; grid-template-columns: minmax(0, .88fr) minmax(470px, 1.12fr); gap: clamp(56px, 8vw, 132px); }
.home-page .brand-era-copy h2 { max-width: 600px; font-size: clamp(46px, 4.25vw, 68px); line-height: 1.07; }
.home-page .brand-era-facts { border-top-color: rgba(13,92,58,.18); border-bottom-color: rgba(13,92,58,.18); }
.home-page .brand-era-gallery { box-shadow: 24px 24px 0 rgba(235, 211, 150, .35); }
.home-page .guide-links { position: relative; z-index: 1; margin-top: 82px; gap: 1px; background: rgba(13, 92, 58, .12); border: 1px solid rgba(13, 92, 58, .12); }
.home-page .guide-links a { min-height: 300px; border-radius: 0; box-shadow: none; }
.home-page .guide-links a:nth-child(2), .home-page .guide-links a:nth-child(4) { margin-top: 0; }

.home-page .services { position: relative; background: linear-gradient(128deg, #063d2b, #0c6045); }
.home-page .services::before { position: absolute; top: 0; right: max(30px, calc((100vw - var(--content)) / 2)); width: 25%; height: 4px; content: ""; background: #efbc4f; }
.home-page .services-heading h2 { font-size: clamp(46px, 4.2vw, 66px); line-height: 1.07; }
.home-page .service-grid { gap: 16px; }
.home-page .service-grid article { border: 1px solid rgba(255,255,255,.12); border-radius: 3px; }
.home-page .service-grid article:hover { transform: translateY(-6px); box-shadow: 0 24px 40px rgba(0,0,0,.2); }
.home-page .service-grid span { letter-spacing: .12em; }

.home-page .story-photo { background: linear-gradient(105deg, #eaf3e3 0 51%, #fffefa 51% 100%); }
.home-page .story-photo h2 { max-width: 560px; font-size: clamp(44px, 4vw, 62px); line-height: 1.08; }
.home-page .growth-route { padding-top: 142px; padding-bottom: 142px; }
.home-page .course-map-panel { margin-top: 50px; padding: 14px; background: #fff; border: 1px solid rgba(13,92,58,.1); border-radius: 4px; box-shadow: 0 24px 60px rgba(13,92,58,.08); }
.home-page .course-map-actions a { border-radius: 4px; }

.home-page .founder { background: linear-gradient(116deg, #073d2a 0 55%, #0d6045 55% 100%); }
.home-page .founder h2 { font-size: clamp(46px, 4.15vw, 66px); line-height: 1.04; }
.home-page .online-preview { background: linear-gradient(115deg, #f7e6ba, #fbf5e6); }
.home-page .campuses { padding-top: 144px; padding-bottom: 144px; }
.home-page .campuses h2 { font-size: clamp(48px, 4.4vw, 70px); line-height: 1.04; }
.home-page .campus-grid { margin-top: 58px; gap: 22px; }
.home-page .campus-select-card, .home-page .campus-select-card:nth-child(2) { border-radius: 6px; box-shadow: 0 26px 62px rgba(13,92,58,.12); }
.home-page .campus-select-copy { padding-right: 46px; padding-left: 46px; }
.home-page .geo-articles { background: #f2f5ec; }

@media (max-width: 720px) {
  .home-page .hero { min-height: 0; background: #fffefa; }
  .home-page .hero-copy { padding-top: 72px; padding-bottom: 54px; }
  .home-page .hero-copy::before { top: 73px; left: 0; width: 3px; height: 58px; }
  .home-page .brand-hero-title span { font-size: clamp(50px, 13vw, 64px); }
  .home-page .hero-text { margin-top: 25px; font-size: 16px; }
  .home-page .fine-print { margin-top: 32px; }
  .home-page .fine-print span { padding-top: 11px; margin-right: 12px; padding-right: 12px; font-size: 10px; }
  .home-page .hero-visual, .home-page .hero-visual img { min-height: 420px; }
  .home-page .hero-visual { margin: 0; border-radius: 0 0 40px 0; }
  .home-page .hero-visual::before { top: 18px; left: 18px; }
  .home-page .hero-visual::after { bottom: 20px; width: 6px; height: 90px; }
  .home-page .answer, .home-page .growth-route, .home-page .campuses { padding-top: 86px; padding-bottom: 86px; }
  .home-page .brand-era-showcase { grid-template-columns: 1fr; gap: 38px; }
  .home-page .guide-links { margin-top: 50px; gap: 1px; }
  .home-page .guide-links a { min-height: 230px; }
  .home-page .services-heading h2, .home-page .campuses h2 { font-size: clamp(40px, 11vw, 54px); }
  .home-page .campus-grid { margin-top: 38px; gap: 14px; }
  .home-page .campus-select-copy { padding-right: 24px; padding-left: 24px; }
}

/* Homepage hero: dark editorial stage, not a collection of floating widgets. */
.home-page .hero {
  min-height: max(740px, calc(100vh - 78px));
  background: #083d2c;
}
.home-page .hero::before,
.home-page .hero::after { display: none; }
.home-page .hero-copy {
  align-self: center;
  max-width: 610px;
  margin-left: max(42px, calc((100vw - var(--content)) / 2));
  padding: 78px 74px 74px 0;
}
.home-page .hero-copy::before { top: 79px; left: -22px; width: 2px; height: 74px; background: #e4b24a; }
.home-page .hero-kicker { margin-bottom: 34px; color: #f3d994; font-size: 12px; letter-spacing: .2em; }
.home-page .brand-hero-title { gap: 20px; }
.home-page .brand-hero-title span { color: #fffdf4; font-size: clamp(58px, 5.1vw, 84px); line-height: 1; letter-spacing: -.055em; }
.home-page .brand-hero-title em { max-width: 420px; color: #e8bd54; font-size: clamp(23px, 1.85vw, 33px); font-style: normal; font-weight: 500; letter-spacing: .055em; line-height: 1.2; }
.home-page .hero-text { max-width: 510px; margin-top: 32px; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.95; }
.home-page .hero-actions { margin-top: 38px; }
.home-page .hero-actions .button { color: #123426; background: #e8b849; box-shadow: none; }
.home-page .hero-actions .button:hover { color: #fff; background: #1b7050; }
.home-page .hero-actions .text-link { color: #fffdf4; }
.home-page .hero-actions .text-link::after { background: #e8b849; }
.home-page .hero-proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; max-width: 490px; padding: 28px 0 0; margin: 52px 0 0; border-top: 1px solid rgba(255,255,255,.2); }
.home-page .hero-proof > div { padding-right: 18px; border-right: 1px solid rgba(255,255,255,.14); }
.home-page .hero-proof > div + div { padding-left: 18px; }
.home-page .hero-proof > div:last-child { border-right: 0; }
.home-page .hero-proof dt { color: #f5ca66; font-family: var(--serif); font-size: 29px; line-height: 1; }
.home-page .hero-proof dd { margin: 8px 0 0; color: rgba(255,255,255,.62); font-size: 11px; letter-spacing: .06em; }
.home-page .fine-print { display: none; }
.home-page .hero-visual { min-height: max(740px, calc(100vh - 78px)); margin: 0; border-radius: 0; box-shadow: none; }
.home-page .hero-visual::before { top: 34px; left: 34px; padding: 9px 12px; content: "淄博 · 创办于 2006 年"; color: #fff8e7; background: rgba(7,53,38,.82); border-color: rgba(255,255,255,.36); border-radius: 2px; font-size: 10px; letter-spacing: .14em; }
.home-page .hero-visual::after { top: 0; right: auto; bottom: 0; left: 0; width: 9px; height: auto; background: #e8b849; }
.home-page .hero-visual img { min-height: max(740px, calc(100vh - 78px)); object-position: 58% center; }
.home-page .hero-visual { background: #d6d1bd; }
.home-page .hero-visual::marker { display: none; }

/* The conversion action should feel like a service tab, not a pop-up ad. */
.global-contact-panel { top: 50%; right: 20px; }
.global-contact-toggle { min-height: 48px; padding: 0 18px; color: #173b2c; background: #e8b849; border: 1px solid rgba(255,255,255,.78); box-shadow: 0 10px 24px rgba(7,53,38,.22); font-size: 15px; letter-spacing: .04em; animation-duration: 2.8s; }
.global-contact-toggle::before { inset: -4px; border-width: 1px; border-color: rgba(232,184,73,.78); animation-duration: 2.8s; }
.global-contact-toggle span { font-size: 17px; }

@media (max-width: 720px) {
  .home-page .hero { min-height: 0; background: #083d2c; }
  .home-page .hero-copy { margin: 0; padding: 72px 22px 58px; }
  .home-page .hero-copy::before { top: 72px; left: 0; height: 54px; }
  .home-page .hero-kicker { margin-bottom: 25px; }
  .home-page .brand-hero-title span { font-size: clamp(48px, 12.5vw, 60px); }
  .home-page .brand-hero-title em { font-size: 22px; }
  .home-page .hero-text { font-size: 15px; }
  .home-page .hero-proof { max-width: none; padding-top: 22px; margin-top: 36px; }
  .home-page .hero-proof dt { font-size: 24px; }
  .home-page .hero-proof > div { padding-right: 10px; }
  .home-page .hero-proof > div + div { padding-left: 10px; }
  .home-page .hero-visual, .home-page .hero-visual img { min-height: 430px; }
  .home-page .hero-visual::before { top: 18px; left: 18px; }
  .home-page .hero-visual::after { width: 6px; }
  .global-contact-panel { right: 12px; }
  .global-contact-toggle { min-height: 44px; padding: 0 15px; font-size: 13px; }
}

/* Small screens already have a campus-aware phone dock. Keeping a second
   floating booking tab here covered course copy and made the first screen
   feel like a pop-up, so the dock is the single mobile action. */
@media (max-width: 720px) {
  .global-contact-panel { display: none; }
}

/* Real people and real places carry more trust than certificate collages. */
.home-page .hero-visual img { object-position: center center; }
.home-page .founder {
  grid-template-columns: minmax(430px, .82fr) minmax(560px, 1.18fr);
  align-items: stretch;
  background: #073d2a;
}
.home-page .founder figure {
  min-height: 680px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 2px;
  box-shadow: none;
}
.home-page .founder figure::before { display: none; }
.home-page .founder figure img { min-height: 680px; object-position: 13% center; }
.home-page .founder > div { align-self: center; padding-right: 34px; }
.home-page .founder h2 { max-width: 560px; font-size: clamp(44px, 3.85vw, 62px); }
.home-page .founder-facts { max-width: 620px; }
.home-page .founder-caption { display: inline-flex; padding: 0; margin-top: 24px; background: transparent; border-radius: 0; }

@media (max-width: 720px) {
  .home-page .founder { grid-template-columns: 1fr; }
  .home-page .founder figure, .home-page .founder figure img { min-height: 440px; }
  .home-page .founder figure img { object-position: 12% center; }
  .home-page .founder > div { padding-right: 0; }
}

/* Campus photos supplied for the site are 1448px wide. Keep them at a native-feeling
   scale instead of stretching a WeChat export across a retina-width hero. */
@media (min-width: 721px) {
  .home-page .hero {
    grid-template-columns: minmax(0, 1fr) minmax(560px, 760px);
    justify-content: space-between;
  }
  .home-page .hero-visual {
    align-self: center;
    min-height: 0;
    aspect-ratio: 4 / 3;
    height: auto;
    max-height: 548px;
    margin: 0 42px 0 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 2px;
    box-shadow: 24px 28px 0 rgba(232,184,73,.18);
  }
  .home-page .hero-visual img {
    min-height: 0;
    height: 100%;
    object-fit: cover;
  }
  .home-page .hero-visual::after { width: 6px; }
}

/* Homepage keeps an editorial visual language. Actual campus photos belong to
   their detail pages; the two campus choices are intentionally typographic. */
.home-page .campus-select-main { grid-template-rows: 300px auto; min-height: 0; }
.home-page .campus-select-main .campus-card-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 300px;
  height: 300px;
  padding: 32px 36px;
  margin: 0;
  overflow: hidden;
  color: #fffdf4;
  background: linear-gradient(138deg, #063d2b 0 66%, #176449 66% 100%);
}
.home-page .campus-select-shiji .campus-card-mark { color: #173b2c; background: linear-gradient(138deg, #f7e8bb 0 65%, #e8b849 65% 100%); }
.home-page .campus-card-mark span { color: #f4c864; font-family: var(--serif); font-size: 76px; line-height: .8; }
.home-page .campus-select-shiji .campus-card-mark span { color: #8d5b0d; }
.home-page .campus-card-mark b { max-width: 220px; font-family: var(--serif); font-size: 31px; font-weight: 500; letter-spacing: .04em; }
@media (max-width: 720px) {
  .home-page .campus-select-main { grid-template-rows: 210px auto; }
  .home-page .campus-select-main .campus-card-mark { min-height: 210px; height: 210px; padding: 24px; }
  .home-page .campus-card-mark span { font-size: 56px; }
  .home-page .campus-card-mark b { font-size: 26px; }
}

/* The homepage opens in warm paper, not an oversized dark-green block. */
.home-page .hero {
  background: linear-gradient(112deg, #fffdf8 0 52%, #f3ead5 52% 100%);
}
.home-page .hero-copy::before { background: #c99327; }
.home-page .hero-kicker { color: #176046; }
.home-page .brand-hero-title span { color: #0b4b35; }
.home-page .brand-hero-title em { max-width: 650px; color: var(--muted); font-size: clamp(16px, 1.25vw, 19px); font-style: normal; font-weight: 500; letter-spacing: .01em; line-height: 1.85; }
.home-page .hero-text { color: #52685d; }
.home-page .hero-actions .button { color: #173b2c; background: #eab94b; }
.home-page .hero-actions .text-link { color: #0b4b35; }
.home-page .hero-proof { border-top-color: rgba(11,75,53,.18); }
.home-page .hero-proof > div { border-right-color: rgba(11,75,53,.16); }
.home-page .hero-proof dt { color: #176046; }
.home-page .hero-proof dd { color: #63766b; }
.home-page .hero-visual {
  border-color: rgba(11,75,53,.14);
  border-radius: 26px 4px 26px 4px;
  box-shadow: 24px 28px 0 rgba(201,147,39,.18);
}
.home-page .hero-visual::before { color: #fffdf8; background: rgba(11,75,53,.9); }
@media (max-width: 720px) {
  .home-page .hero { background: #fffdf8; }
}

/* Satir-informed family education lens: a visible path from behaviour to relationship. */
.home-page .satir-lens {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(540px, 1.08fr);
  gap: clamp(54px, 9vw, 142px);
  align-items: center;
  background: #f2ece0;
}
.satir-lens-copy h2 { max-width: 580px; margin: 18px 0 28px; color: #0b4b35; font-size: clamp(42px, 4vw, 64px); line-height: 1.08; }
.satir-lens-copy > p:not(.section-label):not(.satir-lens-note) { max-width: 560px; color: #52685d; font-size: 17px; line-height: 1.9; }
.satir-lens-note { max-width: 520px; padding-top: 18px; margin: 28px 0 0; color: #76837c; border-top: 1px solid rgba(11,75,53,.18); font-size: 12px; line-height: 1.7; }
.satir-map { display: grid; grid-template-columns: minmax(190px, .7fr) 1.3fr; gap: 32px; align-items: stretch; padding: 28px; background: #fffdf8; border: 1px solid rgba(11,75,53,.12); border-radius: 30px 6px 30px 6px; box-shadow: 18px 22px 0 rgba(201,147,39,.16); }
.satir-surface { display: flex; flex-direction: column; justify-content: space-between; min-height: 440px; padding: 30px; color: #fffdf8; background: linear-gradient(160deg, #0b4b35 0 68%, #196348 68% 100%); border-radius: 20px 3px 20px 3px; }
.satir-surface span { font-family: var(--serif); font-size: clamp(30px, 2.4vw, 40px); line-height: 1.15; }
.satir-surface small { color: #f2d797; font-size: 12px; line-height: 1.65; }
.satir-steps { position: relative; display: grid; gap: 0; }
.satir-steps::before { position: absolute; top: 39px; bottom: 39px; left: 12px; width: 1px; content: ""; background: #d9cda9; }
.satir-steps article { position: relative; display: grid; grid-template-columns: 48px 1fr; column-gap: 14px; align-content: center; min-height: 110px; padding: 15px 0; border-bottom: 1px solid rgba(11,75,53,.12); }
.satir-steps article:last-child { border-bottom: 0; }
.satir-steps b { position: relative; z-index: 1; align-self: start; color: #a46d12; background: #fffdf8; font-size: 11px; line-height: 24px; letter-spacing: .08em; }
.satir-steps strong { color: #0b4b35; font-family: var(--serif); font-size: 23px; font-weight: 600; }
.satir-steps span { grid-column: 2; margin-top: 5px; color: #61736a; font-size: 13px; line-height: 1.6; }
@media (max-width: 900px) {
  .home-page .satir-lens { grid-template-columns: 1fr; }
  .satir-lens-copy > p:not(.section-label):not(.satir-lens-note) { max-width: none; }
}
@media (max-width: 720px) {
  .home-page .satir-lens { gap: 38px; }
  .satir-map { grid-template-columns: 1fr; gap: 18px; padding: 16px; border-radius: 20px 3px 20px 3px; }
  .satir-surface { min-height: 165px; padding: 24px; }
  .satir-surface span { font-size: 31px; }
  .satir-steps article { min-height: 95px; }
}

/* Courses: let families recognise a child's life before they meet a course name. */
.course-page .course-hero {
  min-height: 720px;
  background: linear-gradient(116deg, #fffdf8 0 51%, #efe5cf 51% 100%);
}
.course-page .course-hero::before { right: -130px; bottom: -170px; width: 610px; height: 610px; border-color: rgba(11,75,53,.16); }
.course-page .course-hero::after { top: 82px; left: 46%; content: "05"; color: rgba(166,109,18,.09); font-size: clamp(160px,20vw,300px); }
.course-page .course-hero-copy { max-width: 780px; padding-top: 108px; padding-right: 70px; }
.course-page .course-hero h1 { max-width: 790px; color: #0b4b35; font-size: clamp(52px,5vw,76px); line-height: 1.08; }
.course-page .course-hero-copy > p:not(.hero-kicker) { max-width: 650px; color: #52685d; font-size: 18px; line-height: 1.9; }
.course-page .course-hero .button { color: #173b2c; background: #eab94b; }
.course-page .course-hero-media.course-hero-map {
  display: grid;
  grid-template-columns: minmax(180px,.82fr) 1.18fr;
  gap: 25px;
  align-items: stretch;
  min-height: 500px;
  padding: 28px;
  margin: 72px max(32px,calc((100vw - var(--content))/2)) 56px 0;
  background: #fffdf8;
  border: 1px solid rgba(11,75,53,.12);
  border-radius: 32px 5px 32px 5px;
  box-shadow: 22px 26px 0 rgba(201,147,39,.2);
}
.course-map-title { display:flex; flex-direction:column; justify-content:space-between; min-height: 100%; padding: 28px; color:#fffdf8; background:linear-gradient(158deg,#0b4b35 0 68%,#196348 68%); border-radius: 19px 2px 19px 2px; }
.course-map-title span { color:#f2d797; font-size:11px; font-weight:800; letter-spacing:.13em; }
.course-map-title strong { font-family:var(--serif); font-size:clamp(28px,2.5vw,42px); font-weight:600; line-height:1.14; }
.course-hero-map ol { position:relative; display:grid; align-content:center; padding:0; margin:0; list-style:none; }
.course-hero-map ol::before { position:absolute; top:13%; bottom:13%; left:12px; width:1px; content:""; background:#dfcea5; }
.course-hero-map li { position:relative; display:grid; grid-template-columns:48px 1fr; column-gap:12px; align-content:center; min-height:84px; padding:10px 0; border-bottom:1px solid rgba(11,75,53,.12); }
.course-hero-map li:last-child { border-bottom:0; }
.course-hero-map li b { position:relative; z-index:1; align-self:start; color:#a46d12; background:#fffdf8; font-size:11px; line-height:22px; letter-spacing:.08em; }
.course-hero-map li span { color:#0b4b35; font-family:var(--serif); font-size:20px; line-height:1.25; }
.course-hero-map li small { grid-column:2; margin-top:4px; color:#6e7c75; font-size:12px; }

.course-page .course-programs { background:#073d2a; }
.course-page .course-section-heading { display:grid; grid-template-columns:minmax(0,1fr) minmax(330px,.72fr); gap:70px; align-items:end; }
.course-page .course-section-heading h2 { max-width:760px; font-size:clamp(42px,4.15vw,64px); line-height:1.1; }
.course-page .course-section-heading > p { max-width:480px; margin:0; font-size:17px; line-height:1.9; }
.course-page .course-program-grid { grid-template-columns:repeat(12,minmax(0,1fr)); grid-template-rows:none; gap:18px; max-width:none; margin:56px 0 0; padding:0; }
.course-page .course-program-grid::before { display:none; }
.course-page .course-program-card,
.course-page .course-program-card:nth-of-type(n) { display:flex; grid-column:span 4; grid-row:auto; flex-direction:column; align-items:flex-start; min-height:470px; padding:0 0 26px; overflow:hidden; color:#fff; background:rgba(255,255,255,.045); border:1px solid rgba(255,255,255,.13); border-radius:16px 4px 16px 4px; text-align:left; }
.course-page .course-program-card:nth-of-type(-n+2) { grid-column:span 6; min-height:500px; }
.course-page .course-program-card figure { width:100%; height:220px; margin:0 0 22px; border:0; border-radius:0; }
.course-page .course-program-card:nth-of-type(-n+2) figure { height:260px; }
.course-page .course-program-card:hover figure { border:0; transform:none; }
.course-page .course-program-card:hover { border-color:#efd183; transform:translateY(-5px); transition:transform .3s var(--ease-smooth),border-color .3s var(--ease-smooth); }
.course-page .course-program-card span,
.course-page .course-program-card h3,
.course-page .course-program-card p,
.course-page .course-program-card b { margin-right:26px; margin-left:26px; }
.course-page .course-program-card span { color:#ead184; font-size:12px; letter-spacing:.06em; }
.course-page .course-program-card h3 { margin-top:10px; margin-bottom:9px; font-size:30px; }
.course-page .course-program-card h3 small { color:#f0d789; font-family:var(--sans); font-size:13px; font-weight:700; }
.course-page .course-program-card p { min-height:3.5em; color:#d5e2dc; font-size:15px; line-height:1.75; }
.course-page .course-program-card b { margin-top:auto; color:#fff; font-size:14px; }
.course-page .course-program-card.course-qiyue figure { border:0; }
.course-page .course-program-card.course-shiji figure { border:0; }

.course-page .course-campus-matrix { align-items:center; padding-top:120px; padding-bottom:120px; background:#f5efe3; }
.course-campus-compass { position:relative; display:grid; grid-template-columns:1fr 1fr; min-height:440px; padding:30px; overflow:hidden; color:#fffdf8; background:linear-gradient(140deg,#0b4b35 0 63%,#196348 63%); border-radius:30px 5px 30px 5px; box-shadow:18px 22px 0 rgba(201,147,39,.18); }
.course-campus-compass::before { position:absolute; top:24%; bottom:24%; left:50%; width:1px; content:""; background:rgba(255,255,255,.3); }
.course-campus-compass::after { position:absolute; top:50%; right:18%; left:18%; height:1px; content:""; background:rgba(255,255,255,.3); }
.course-campus-compass > span { grid-column:1/-1; color:#efd184; font-size:12px; font-weight:800; letter-spacing:.16em; }
.course-campus-compass strong { grid-column:1/-1; align-self:center; max-width:9ch; font-family:var(--serif); font-size:clamp(36px,3.2vw,51px); font-weight:600; line-height:1.05; }
.course-campus-compass i { align-self:end; color:#efd184; font-family:var(--serif); font-size:27px; font-style:normal; }
.course-campus-compass i:last-child { justify-self:end; }
.course-page .course-campus-matrix h2 { max-width:600px; font-size:clamp(40px,3.7vw,58px); line-height:1.1; }
.course-page .course-campus-list { margin-top:42px; }
.course-page .course-campus-list a { display:flex; min-height:260px; flex-direction:column; justify-content:flex-start; }
.course-page .course-campus-list a strong { color:inherit; font-family:var(--serif); font-size:29px; }
.course-page .course-campus-list a span { display:block; margin-top:16px; color:inherit; font-size:16px; font-weight:800; line-height:1.7; }
.course-page .course-campus-list a p { margin:16px 0 0; color:#5e7369; font-size:14px; line-height:1.75; }
.course-page .course-campus-list a i { margin-top:auto; color:inherit; font-style:normal; font-weight:800; }

.course-page .course-fee-framework { background:#fffdf8; }
.course-page .course-fee-framework h2 { max-width:700px; }
.fee-framework-grid article { min-height:240px; padding:32px; }
.fee-framework-grid span { color:#a46d12; letter-spacing:.08em; }
.fee-framework-grid strong { margin-top:52px; font-size:29px; }
.course-page .course-selection { background:#edf3e8; }
.course-page .course-selection h2 { max-width:680px; font-size:clamp(40px,3.7vw,58px); line-height:1.1; }
.course-page .course-questions { background:#fffdf8; }
.course-page .course-questions h2 { font-size:clamp(40px,3.7vw,58px); line-height:1.1; }

@media (max-width: 980px) {
  .course-page .course-hero-media.course-hero-map { grid-template-columns:1fr; min-height:0; margin-right:34px; }
  .course-map-title { min-height:160px; }
  .course-page .course-program-card,
  .course-page .course-program-card:nth-of-type(n) { grid-column:span 6; min-height:440px; }
  .course-page .course-program-card:last-child { grid-column:3 / span 8; }
}
@media (max-width: 720px) {
  .course-page .course-hero { background:#fffdf8; }
  .course-page .course-hero::after { top:30px; left:auto; right:12px; font-size:132px; }
  .course-page .course-hero-copy { padding:66px 22px 40px; }
  .course-page .course-hero h1 { font-size:clamp(42px,11vw,56px); }
  .course-page .course-hero-copy > p:not(.hero-kicker) { font-size:16px; }
  .course-page .course-hero-media.course-hero-map { margin:0 22px 40px; padding:16px; border-radius:22px 3px 22px 3px; box-shadow:12px 14px 0 rgba(201,147,39,.17); }
  .course-map-title { min-height:144px; padding:22px; }
  .course-map-title strong { font-size:30px; }
  .course-hero-map li { min-height:72px; }
  .course-page .course-section-heading { grid-template-columns:1fr; gap:22px; }
  .course-page .course-program-grid { grid-template-columns:1fr; gap:14px; margin-top:36px; }
  .course-page .course-program-card,
  .course-page .course-program-card:nth-of-type(n),
  .course-page .course-program-card:last-child { grid-column:auto; min-height:0; }
  .course-page .course-program-card figure,
  .course-page .course-program-card:nth-of-type(-n+2) figure { height:210px; }
  .course-page .course-campus-matrix { padding-top:72px; padding-bottom:72px; }
  .course-campus-compass { min-height:310px; }
  .course-page .course-campus-list a { min-height:0; }
  .fee-framework-grid article { padding:26px 0; }
}

/* Qiyue is a low-age campus: the page makes care, connection and daily rhythm tangible. */
.campus-page-qiyue .campus-program-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.campus-page-qiyue .campus-programs-refined .campus-program-card { min-height: 620px; }
.campus-page-qiyue .campus-programs-refined .campus-program-card > div { padding: 30px 30px 28px; }
.campus-page-qiyue .campus-programs-refined .campus-program-card h3 { margin-top: 30px; }
.campus-page-qiyue .campus-program-lead { margin-bottom: 18px !important; color: var(--forest-deep) !important; font-family: var(--serif); font-size: 17px !important; line-height: 1.65; }
.campus-program-value { display: grid; gap: 0; padding: 0; margin: 0; border-top: 1px solid rgba(12,142,130,.22); }
.campus-program-value > div { padding: 10px 0; border-bottom: 1px solid rgba(12,142,130,.16); }
.campus-program-value dt { color: #08736a; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.campus-program-value dd { margin: 5px 0 0; color: #61736a; font-size: 13px; line-height: 1.68; }
.campus-page-qiyue .campus-programs-refined .campus-program-card b { margin-top: auto; }
.qiyue-program-detail { position: relative; overflow: hidden; color: #fff; background: radial-gradient(circle at 86% 8%, rgba(192, 230, 165, .22), transparent 26%), linear-gradient(135deg, #064c42, #08736a); }
.qiyue-program-detail::after { position: absolute; right: -90px; bottom: -120px; width: 340px; height: 340px; content: ""; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }
.qiyue-program-detail > header { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .78fr; gap: clamp(34px, 7vw, 110px); align-items: end; }
.qiyue-program-detail .section-label { color: #d9f0b6; }
.qiyue-program-detail h2 { max-width: 650px; margin: 10px 0 0; color: #fff; font-size: clamp(40px, 4.3vw, 62px); line-height: 1.08; }
.qiyue-program-detail > header > p { margin: 0; color: #d9eee6; font-size: 17px; line-height: 1.85; }
.qiyue-program-detail-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; }
.qiyue-program-detail-card { display: flex; flex-direction: column; min-height: 410px; padding: 28px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18); border-radius: 18px; backdrop-filter: blur(4px); }
.qiyue-program-detail-card.qiyue-program-detail-primary { background: #eaf6cc; color: #0b4b3f; border-color: #eaf6cc; }
.qiyue-program-detail-card > span { color: #d9f0b6; font-size: 12px; font-weight: 800; letter-spacing: .11em; }
.qiyue-program-detail-primary > span { color: #08736a; }
.qiyue-program-detail-card h3 { margin: 28px 0 14px; color: inherit; font-family: var(--serif); font-size: 30px; line-height: 1.16; }
.qiyue-program-detail-card > p { margin: 0; color: #e1f0eb; font-size: 15px; line-height: 1.8; }
.qiyue-program-detail-primary > p { color: #315d4f; }
.qiyue-program-detail-card ul { display: grid; gap: 10px; padding: 18px 0 0; margin: auto 0 0; list-style: none; border-top: 1px solid rgba(255,255,255,.22); }
.qiyue-program-detail-primary ul { border-color: rgba(8,115,106,.22); }
.qiyue-program-detail-card li { position: relative; padding-left: 16px; color: #d8ebe4; font-size: 13px; line-height: 1.65; }
.qiyue-program-detail-primary li { color: #315d4f; }
.qiyue-program-detail-card li::before { position: absolute; top: .72em; left: 0; width: 5px; height: 5px; content: ""; background: #d9f0b6; border-radius: 50%; }
.qiyue-program-detail-primary li::before { background: #08736a; }

.campus-page-qiyue .qiyue-visit-studio { grid-template-columns: minmax(320px,.92fr) 1.08fr; min-height: 510px; background: #e3f3ec; }
.qiyue-visit-studio .qiyue-visit-mark { position: relative; display: flex; flex-direction: column; justify-content: space-between; min-height: 440px; padding: 42px; overflow: hidden; color: #fffdf8; background: linear-gradient(145deg, #08736a 0 64%, #0c5045 64%); border-radius: 72px 12px 72px 12px; box-shadow: 16px 18px 0 rgba(12,142,130,.16); }
.qiyue-visit-mark::before { position: absolute; top: -86px; right: -54px; width: 280px; height: 280px; content: ""; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; }
.qiyue-visit-mark span { position: relative; color: #d7f3e8; font-size: 13px; font-weight: 800; letter-spacing: .12em; }
.qiyue-visit-mark strong { position: relative; max-width: 9ch; font-family: var(--serif); font-size: clamp(32px,3vw,47px); font-weight: 600; line-height: 1.1; }
.qiyue-visit-mark i { position: relative; align-self: flex-end; color: #eaf7cf; font-family: var(--serif); font-size: 48px; font-style: normal; letter-spacing: .08em; }
.campus-page-qiyue .qiyue-visit-studio > div:last-child { padding: 32px 0; }
@media (max-width: 720px) {
  .campus-page-qiyue .campus-program-grid { grid-template-columns: 1fr; gap: 16px; }
  .campus-page-qiyue .campus-programs-refined .campus-program-card { min-height: 0; }
  .campus-page-qiyue .campus-programs-refined .campus-program-card > div { padding: 26px 22px; }
  .campus-page-qiyue .qiyue-visit-studio { grid-template-columns: 1fr; min-height: 0; }
  .qiyue-visit-studio .qiyue-visit-mark { min-height: 270px; padding: 30px; }
  .campus-page-qiyue .qiyue-visit-studio > div:last-child { padding: 0; }
}

/* The course card earns its space by answering why, how, and what families can observe. */
.course-page .course-program-card,
.course-page .course-program-card:nth-of-type(n) { min-height: 720px; }
.course-page .course-program-card:nth-of-type(-n+2) { min-height: 740px; }
.course-page .course-program-card .course-card-lead { min-height: 0; margin-bottom: 18px; color: #fff; font-family: var(--serif); font-size: 18px; line-height: 1.58; }
.course-card-value { display: grid; gap: 0; width: calc(100% - 52px); padding: 0; margin: 0 26px 22px; border-top: 1px solid rgba(255,255,255,.2); }
.course-card-value > div { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.course-card-value dt { color: #e8cf83; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.course-card-value dd { margin: 5px 0 0; color: #d4e3dc; font-size: 13px; line-height: 1.65; }
.course-page .course-program-card b { margin-top: auto; }
@media (max-width: 980px) {
  .course-page .course-program-card,
  .course-page .course-program-card:nth-of-type(n) { min-height: 690px; }
}
@media (max-width: 720px) {
  .course-page .course-program-card,
  .course-page .course-program-card:nth-of-type(n),
  .course-page .course-program-card:nth-of-type(-n+2) { min-height: 0; }
  .course-page .course-program-card .course-card-lead { font-size: 17px; }
}

/* Motion system: a quiet hierarchy for reading, choosing and contacting. */
:root {
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-smooth: cubic-bezier(.77, 0, .175, 1);
}

::view-transition-old(root) { animation: page-old-out 220ms var(--ease-smooth) both; }
::view-transition-new(root) { animation: page-new-in 360ms var(--ease-out) both; }
.page-intro-wash { animation-duration: 520ms; }
@keyframes page-old-out { to { opacity: .42; transform: scale(.992); } }
@keyframes page-new-in { from { opacity: .35; transform: translateY(8px); } }

.motion-ready .reveal:not(.is-visible) {
  opacity: 0;
  filter: none;
  transform: translateY(12px);
}
.motion-ready .reveal,
.motion-ready [data-motion-item] {
  transition-property: opacity, transform;
  transition-timing-function: var(--ease-out);
}
.motion-ready .reveal { transition-duration: 520ms; }
.motion-ready [data-motion-item] { transition-duration: 440ms; transition-delay: calc(var(--motion-index, 0) * 45ms); }
.motion-ready .reveal:not(.is-visible) [data-motion-item] {
  opacity: .01;
  filter: none;
  transform: translateY(12px);
}

.hero-copy > *,
.course-hero-copy > *,
.campus-hero-copy > * { animation-duration: 560ms; }
.hero-visual img,
.course-hero-main img,
.campus-hero > figure > img { animation-duration: 720ms; }
@keyframes content-arrival {
  from { opacity: 0; transform: translateY(16px); filter: none; }
  to { opacity: 1; transform: translateY(0); filter: none; }
}
@keyframes media-arrival {
  from { opacity: .01; transform: scale(1.018); clip-path: none; }
  to { opacity: 1; transform: scale(1); clip-path: none; }
}

.motion-ready .course-map-panel,
.motion-ready .campus-process figure,
.motion-ready .trust-archive-gallery figure,
.motion-ready .campus-life-gallery figure,
.motion-ready .campus-learning-proof > figure {
  transition-property: opacity, transform;
  transition-timing-function: var(--ease-out);
  clip-path: none;
}
.motion-ready .reveal:not(.is-visible) .course-map-panel,
.motion-ready .reveal:not(.is-visible).campus-process figure,
.motion-ready .trust-archive:not(.is-visible) .trust-archive-gallery figure,
.motion-ready .campus-life-proof:not(.is-visible) .campus-life-gallery figure,
.motion-ready .campus-learning-proof:not(.is-visible) > figure {
  opacity: .01;
  clip-path: none;
  transform: translateY(12px);
}
.motion-ready .trust-archive-gallery > span { animation: none; }

.global-contact-toggle {
  animation: booking-arrive 520ms var(--ease-out) 320ms both;
  transition: transform 140ms var(--ease-out), box-shadow 180ms var(--ease-out), background-color 180ms var(--ease-out);
}
.global-contact-toggle::before { animation: booking-halo 680ms var(--ease-out) 520ms both; }
@keyframes booking-arrive {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes booking-halo {
  0% { opacity: .72; transform: scale(.94); }
  100% { opacity: 0; transform: scale(1.1); }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover { transform: translateY(-2px); }
  .text-link:hover { gap: 10px; }
  .global-contact-toggle:hover { background: #ffca4e; box-shadow: 0 18px 36px rgba(138, 86, 6, .37); transform: translateY(-2px); }
  .campus-programs-refined .campus-program-card:hover,
  .course-page .course-program-card:hover,
  .course-map-actions a:hover { transform: translateY(-4px); }
}

@media (prefers-reduced-motion: reduce) {
  .global-contact-toggle,
  .global-contact-toggle::before { animation: none; }
  .motion-ready .reveal:not(.is-visible),
  .motion-ready .reveal:not(.is-visible) [data-motion-item],
  .motion-ready .reveal:not(.is-visible) .course-map-panel,
  .motion-ready .reveal:not(.is-visible).campus-process figure,
  .motion-ready .trust-archive:not(.is-visible) .trust-archive-gallery figure,
  .motion-ready .campus-life-proof:not(.is-visible) .campus-life-gallery figure,
  .motion-ready .campus-learning-proof:not(.is-visible) > figure {
    opacity: 1;
    transform: none;
  }
}

/* A campus page is already a qualified visit: its last section must close with
   one complete booking choice, not a tiny contact footnote. */
.campus-page .campus-consult-card {
  grid-template-columns: minmax(0, 1fr) minmax(430px, .94fr);
  gap: clamp(44px, 7vw, 110px);
  padding-top: 82px;
  padding-bottom: 82px;
}
.campus-page .campus-consult-card .consult-actions {
  display: grid;
  justify-items: end;
  gap: 18px;
  min-width: 0;
}
.campus-page .campus-consult-card .campus-call { min-width: 258px; }
.campus-booking-card {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 22px;
  width: min(100%, 520px);
  padding: 22px;
  color: var(--forest-deep);
  background: rgba(255, 254, 250, .96);
  border: 1px solid rgba(13, 92, 58, .16);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(9, 67, 43, .12);
  text-align: left;
}
.campus-booking-card .campus-qr-frame { width: 156px; height: 156px; border-radius: 12px; }
.campus-booking-card p { margin: 1px 0 9px; color: var(--forest); font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.campus-booking-card h3 { margin: 0 0 7px; color: var(--forest-deep); font-family: var(--serif); font-size: 25px; line-height: 1.12; }
.campus-booking-card small { display: block; color: var(--muted); font-size: 12px; line-height: 1.45; }
.campus-booking-phones { display: grid; gap: 7px; margin-top: 16px; }
.campus-booking-phones a { color: var(--forest); font-family: var(--serif); font-size: 20px; font-weight: 700; line-height: 1.1; text-decoration: none; }
.campus-booking-phones em { display: inline-block; min-width: 32px; margin-right: 8px; color: var(--muted); font-family: var(--sans); font-size: 11px; font-style: normal; font-weight: 800; }
.campus-booking-phones a:hover { color: #9a6816; }

/* A campus route is a conversion route: place one complete booking choice
   directly after the opening, then repeat it when the visitor finishes reading. */
.campus-page .campus-quick-booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, .94fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
  padding: 76px max(30px, calc((100vw - 1240px) / 2));
  background: #eff6ec;
}
.campus-quick-booking > div:first-child { max-width: 590px; }
.campus-quick-booking h2 { margin: 10px 0 18px; color: var(--forest-deep); font-size: clamp(46px, 4.8vw, 72px); line-height: 1.05; }
.campus-quick-booking > div:first-child > p:not(.section-label) { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.78; }
.campus-quick-booking .campus-call { margin-top: 26px; }
.campus-quick-booking .campus-booking-card { justify-self: end; }

@media (max-width: 720px) {
  .campus-page .campus-consult-card { grid-template-columns: 1fr; gap: 34px; padding-top: 66px; padding-bottom: 86px; }
  .campus-page .campus-consult-card .consult-actions { justify-items: stretch; }
  .campus-page .campus-consult-card .campus-call { width: 100%; min-width: 0; }
  .campus-page .campus-quick-booking { grid-template-columns: 1fr; gap: 32px; padding: 62px 26px; }
  .campus-quick-booking h2 { font-size: clamp(42px, 12vw, 58px); }
  .campus-quick-booking .campus-booking-card { justify-self: stretch; }
  .campus-quick-booking .campus-call { width: 100%; }
  .campus-booking-card { grid-template-columns: 142px minmax(0, 1fr); gap: 16px; width: 100%; padding: 16px; border-radius: 14px; }
  .campus-booking-card .campus-qr-frame { width: 142px; height: 142px; }
  .campus-booking-card .campus-qr-frame > img[src*="qiyue-wechat-qr"] { width: 176px !important; left: -14px; top: -48px; }
  .campus-booking-card .campus-qr-frame > img[src*="shiji-wechat-qr"] { width: 183px !important; left: -20px; top: -75px; }
  .campus-booking-card h3 { font-size: 20px; }
  .campus-booking-phones { margin-top: 11px; }
  .campus-booking-phones a { font-size: 16px; }
}

/* Readability corrections: let the founder and course route breathe at every width. */
.home-page .founder { grid-template-columns: minmax(360px, .76fr) minmax(0, 1.24fr); gap: clamp(44px, 5.8vw, 92px); }
.home-page .founder > div { max-width: 690px; padding-right: 0; }
.home-page .founder h2 { max-width: none; margin-bottom: 10px; font-size: clamp(48px, 4.05vw, 64px); line-height: 1.02; }
.home-page .founder .founder-role { margin: 0 0 30px; color: #e8cf7a; font-family: var(--serif); font-size: clamp(19px, 1.65vw, 25px); letter-spacing: .04em; }
.home-page .founder > div > p:not(.section-label):not(.founder-role):not(.founder-caption) { color: rgba(255, 255, 255, .84); font-size: 17px; line-height: 1.78; }
.home-page .founder .founder-caption { color: #e8cf7a; }

.course-page .course-hero { grid-template-columns: minmax(0, 1.04fr) minmax(410px, .96fr); }
.course-page .course-hero-media.course-hero-map { display: block; min-width: 0; min-height: 620px; margin: 32px 34px 32px 0; padding: 0; overflow: hidden; border-radius: 24px 3px 24px 3px; box-shadow: 14px 16px 0 rgba(201, 147, 39, .17); }
.course-page .course-hero-media.course-hero-map .course-map-title { min-height: 154px; padding: 24px 28px; border-radius: 0; }
.course-page .course-hero-media.course-hero-map .course-map-title strong { display: block; max-width: 12em; font-size: clamp(28px, 2.35vw, 40px); line-height: 1.12; }
.course-page .course-hero-media.course-hero-map ol { display: block; padding: 6px 28px 14px; }
.course-page .course-hero-media.course-hero-map ol::before { display: none; }
.course-page .course-hero-media.course-hero-map li { grid-template-columns: 34px minmax(0, 1fr); column-gap: 12px; min-height: 76px; padding: 12px 0; }
.course-page .course-hero-media.course-hero-map li b { line-height: 20px; }
.course-page .course-hero-media.course-hero-map li span { min-width: 0; font-size: clamp(18px, 1.65vw, 23px); line-height: 1.28; word-break: normal; overflow-wrap: normal; }
.course-page .course-hero-media.course-hero-map li small { min-width: 0; font-size: 12px; line-height: 1.45; }

@media (max-width: 1120px) and (min-width: 721px) {
  .home-page .founder { grid-template-columns: minmax(330px, .72fr) minmax(0, 1.28fr); gap: 38px; }
  .home-page .founder h2 { font-size: clamp(43px, 5vw, 57px); }
  .course-page .course-hero { grid-template-columns: minmax(0, 1fr) minmax(340px, .84fr); }
  .course-page .course-hero-media.course-hero-map { margin-right: 26px; }
}

@media (max-width: 720px) {
  .home-page .founder { gap: 30px; }
  .home-page .founder h2 { font-size: clamp(43px, 12vw, 56px); }
  .home-page .founder .founder-role { margin-bottom: 24px; font-size: 20px; }
  .home-page .founder > div > p:not(.section-label):not(.founder-role):not(.founder-caption) { font-size: 16px; }
  .course-page .course-hero-media.course-hero-map { min-height: 0; margin: 0 22px 40px; border-radius: 20px 3px 20px 3px; }
  .course-page .course-hero-media.course-hero-map .course-map-title { min-height: 132px; padding: 22px; }
  .course-page .course-hero-media.course-hero-map ol { padding: 4px 22px 12px; }
  .course-page .course-hero-media.course-hero-map li { min-height: 68px; }
}

/* Final hero corrections: lighter green stages, a deliberate focal crop, and a
   course map that keeps Chinese text in a comfortably wide reading measure. */
.home-page .services { background: linear-gradient(128deg, #0e5b43, #23765a); }
.home-page .founder { background: linear-gradient(116deg, #0e5b43 0 55%, #23765a 55% 100%); }
.course-page .course-programs { background: #0e5b43; }
.satir-surface,
.course-map-title,
.course-campus-compass { background: linear-gradient(150deg, #0e5b43 0 66%, #23765a 66% 100%); }

@media (min-width: 1121px) {
  .home-page .hero-visual img { object-position: right center; }

  .course-page .course-hero {
    grid-template-columns: minmax(0, .9fr) minmax(600px, 1.1fr);
  }

  .course-page .course-hero-copy {
    max-width: 720px;
    padding-right: clamp(36px, 3.5vw, 64px);
  }

  .course-page .course-hero h1 {
    max-width: 680px;
    font-size: clamp(48px, 3.8vw, 68px);
    line-height: 1.12;
    letter-spacing: -.035em;
    overflow-wrap: normal;
  }

  .course-page .course-hero-media.course-hero-map {
    min-height: 580px;
    margin: 36px clamp(34px, 3.4vw, 64px) 36px 0;
  }

  .course-page .course-hero-media.course-hero-map .course-map-title {
    display: grid;
    grid-template-columns: 1fr;
    align-content: space-between;
    min-height: 168px;
    padding: 28px 34px;
  }

  .course-page .course-hero-media.course-hero-map .course-map-title strong {
    max-width: none;
    font-size: clamp(32px, 2.3vw, 42px);
    line-height: 1.18;
    letter-spacing: -.02em;
  }

  .course-page .course-hero-media.course-hero-map ol { padding: 8px 34px 16px; }
  .course-page .course-hero-media.course-hero-map li {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 76px;
    column-gap: 16px;
  }
  .course-page .course-hero-media.course-hero-map li span { font-size: clamp(20px, 1.55vw, 24px); }
}

@media (max-width: 720px) {
  .home-page .services,
  .home-page .founder,
  .course-page .course-programs { background: #0e5b43; }
}

/* Source teacher cards include each teacher's name and profile. */
.campus-teacher-gallery { background: var(--campus-surface); }
.campus-teacher-gallery-qiyue { background: linear-gradient(135deg, #f5fbf8, #fffdf6); }
.campus-teacher-gallery-shiji { background: #fbf4e7; }
.campus-teacher-heading { display: grid; grid-template-columns: 1fr minmax(300px, .72fr); gap: clamp(32px, 7vw, 110px); align-items: end; margin-bottom: 48px; }
.campus-teacher-heading h2 { margin-bottom: 0; }
.campus-teacher-heading > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.9; }
.teacher-card-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.teacher-card-grid figure { margin: 0; overflow: hidden; background: #fff; border: 1px solid rgba(24, 89, 69, .12); box-shadow: 0 14px 30px rgba(28, 63, 49, .08); transition: transform .28s ease, box-shadow .28s ease; }
.teacher-card-grid img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; }
.teacher-card-grid figure:hover { box-shadow: 0 22px 38px rgba(28, 63, 49, .16); transform: translateY(-5px); }
.campus-teacher-gallery-qiyue .teacher-card-grid figure { border-radius: 18px 6px 18px 6px; }
.campus-teacher-gallery-shiji .teacher-card-grid figure { border-color: rgba(122, 82, 20, .16); border-radius: 5px; box-shadow: 0 14px 30px rgba(91, 57, 8, .09); }

@media (max-width: 1120px) { .teacher-card-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 720px) { .campus-teacher-heading { grid-template-columns: 1fr; gap: 14px; margin-bottom: 32px; } .teacher-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } .teacher-card-grid figure:hover { transform: none; } }
@media (max-width: 860px) {
  .campus-course-support { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 980px) {
  .qiyue-program-detail > header { grid-template-columns: 1fr; }
  .qiyue-program-detail-grid { grid-template-columns: 1fr; }
  .qiyue-program-detail-card { min-height: 0; }
}

/* Keep Qiyue's course detail in the page's airy, family-facing visual language. */
.qiyue-program-details { display: none; }
.qiyue-program-detail { color: var(--forest-deep); background: #f3f8f2; }
.qiyue-program-detail::after { display: none; }
.qiyue-program-detail > header { grid-template-columns: 1.08fr .92fr; padding-bottom: 30px; border-bottom: 1px solid rgba(13,92,58,.16); }
.qiyue-program-detail .section-label { color: #08736a; }
.qiyue-program-detail h2 { color: var(--forest-deep); font-size: clamp(38px, 4vw, 56px); line-height: 1.14; }
.qiyue-program-detail > header > p { color: #587064; font-size: 16px; line-height: 1.8; }
.qiyue-program-detail-grid { gap: 0; margin-top: 0; border-bottom: 1px solid rgba(13,92,58,.16); }
.qiyue-program-detail-card,
.qiyue-program-detail-card.qiyue-program-detail-primary { min-height: 360px; padding: 30px 26px 34px; color: var(--forest-deep); background: transparent; border: 0; border-right: 1px solid rgba(13,92,58,.16); border-radius: 0; backdrop-filter: none; box-shadow: none; }
.qiyue-program-detail-card:last-child { border-right: 0; }
.qiyue-program-detail-card > span,
.qiyue-program-detail-primary > span { color: #08736a; }
.qiyue-program-detail-card h3 { margin: 18px 0 14px; color: var(--forest-deep); font-size: 27px; }
.qiyue-program-detail-card > p,
.qiyue-program-detail-primary > p { color: #587064; font-size: 15px; line-height: 1.8; }
.qiyue-program-detail-card ul,
.qiyue-program-detail-primary ul { border-color: rgba(13,92,58,.16); }
.qiyue-program-detail-card li,
.qiyue-program-detail-primary li { color: #587064; }
.qiyue-program-detail-card li::before,
.qiyue-program-detail-primary li::before { background: #85b448; }
@media (max-width: 980px) {
  .qiyue-program-detail > header { grid-template-columns: 1fr; }
  .qiyue-program-detail-card,
  .qiyue-program-detail-card.qiyue-program-detail-primary { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(13,92,58,.16); }
.qiyue-program-detail-card:last-child { border-bottom: 0; }
}

/* The three Qiyue programmes use the existing image-led course-card language. */
.campus-page-qiyue .campus-programs-refined .qiyue-course-cards {
  grid-template-columns: 1fr;
  max-width: none;
}
.campus-page-qiyue .campus-programs-refined .qiyue-course-cards .campus-program-card {
  min-height: 420px;
}

/* Final mobile conversion guard: the bottom campus phone dock is the only
   fixed action on a phone. This stays last so page-specific layouts cannot
   reintroduce the floating booking pill over copy. */
@media (max-width: 720px) {
  body .global-contact-panel { display: none !important; }
}

/* Founder profile polish: make the principal identity read as a deliberate brand signature. */
.home-page .founder {
  position: relative;
  isolation: isolate;
  grid-template-columns: minmax(380px, .78fr) minmax(0, 1.22fr);
  gap: clamp(50px, 7vw, 112px);
  padding-top: clamp(92px, 10vw, 150px);
  padding-bottom: clamp(92px, 10vw, 150px);
  background: linear-gradient(118deg, #0a4c35 0 54%, #1c7458 54% 100%);
}
.home-page .founder::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 32px 32px auto auto;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(243, 217, 136, .28);
  border-radius: 50%;
  opacity: .75;
}
.home-page .founder figure {
  min-height: 700px;
  border-radius: 4px 76px 4px 4px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
  background: #d9c1a6;
}
.home-page .founder figure img { min-height: 700px; object-position: 13% center; }
.home-page .founder > div { align-self: center; max-width: 720px; }
.home-page .founder .section-label { color: #f3d988; }
.home-page .founder h2 {
  margin: 10px 0 3px;
  color: #fff;
  font-size: clamp(58px, 6.3vw, 94px);
  line-height: .98;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.home-page .founder .founder-role {
  display: block;
  margin: 0 0 28px;
  color: #f3d988 !important;
  font-family: var(--serif);
  font-size: clamp(21px, 1.8vw, 28px);
  font-weight: 600;
  letter-spacing: .02em;
}
.home-page .founder .founder-motto {
  max-width: 620px;
  margin: 0 0 22px;
  color: #fff !important;
  font-family: var(--serif);
  font-size: clamp(27px, 2.4vw, 39px);
  line-height: 1.3;
  letter-spacing: -.02em;
}
.home-page .founder .founder-lead {
  max-width: 670px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .94) !important;
  font-size: 18px;
  line-height: 1.85;
  font-weight: 600;
}
.home-page .founder .founder-context {
  max-width: 670px;
  margin: 0;
  color: rgba(255, 255, 255, .78) !important;
  font-size: 16px;
  line-height: 1.85;
}
.home-page .founder-facts { margin-top: 36px; }
.home-page .founder-facts dt { color: #f3d988; font-size: 30px; }
.home-page .founder-facts dd { color: rgba(255, 255, 255, .78); }
.home-page .founder-actions { margin-top: 32px; }
.home-page .founder-actions .button { color: var(--forest-deep); background: #f3d988; }
.home-page .founder-caption { color: #f3d988 !important; font-size: 16px; letter-spacing: .04em; }

@media (max-width: 1120px) and (min-width: 721px) {
  .home-page .founder { grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr); gap: 48px; }
  .home-page .founder figure,
  .home-page .founder figure img { min-height: 620px; }
  .home-page .founder h2 { font-size: clamp(54px, 6vw, 74px); }
}
@media (max-width: 720px) {
  .home-page .founder { grid-template-columns: 1fr; gap: 36px; padding-top: 72px; padding-bottom: 72px; }
  .home-page .founder::after { inset: 22px 22px auto auto; width: 110px; height: 110px; }
  .home-page .founder figure,
  .home-page .founder figure img { min-height: 440px; }
  .home-page .founder h2 { font-size: 58px; }
  .home-page .founder .founder-motto { font-size: 28px; }
}

/* Final logo-color pass: remove the old deep forest/teal treatment. */
:root {
  --qiyue: #078a52;
  --qiyue-deep: #07563a;
  --shiji: #f39000;
  --shiji-deep: #cf3e10;
}
.home-page .services,
.home-page .founder,
.course-page .course-programs,
.course-campus-compass { background: linear-gradient(118deg, #075f40 0 55%, #078a52 55% 100%); }
.home-page .founder { background: linear-gradient(118deg, #075f40 0 54%, #078a52 54% 100%); }
.founder-page .founder-profile-hero { background: linear-gradient(118deg, #075f40 0 56%, #078a52 56% 100%); }
.founder-profile-kicker,
.founder-profile-role,
.founder-profile-stats dt { color: #abce07 !important; }
.founder-profile-actions .button { color: #17482b; background: #abce07; }
.home-page .founder .section-label,
.home-page .founder .founder-role,
.home-page .founder .founder-caption,
.home-page .founder-facts dt { color: #abce07 !important; }
.home-page .founder-actions .button { background: #abce07; }
.campus-direct-answer-qiyue { background: linear-gradient(90deg, #075f40, #078a52); }
.qiyue-program-detail,
.qiyue-visit-studio .qiyue-visit-mark { background: linear-gradient(145deg, #075f40, #078a52); }
.qiyue-program-detail-grid article.qiyue-program-detail-primary { background: linear-gradient(145deg, #075f40, #078a52); }
.campus-page-qiyue .campus-context-strip { background: linear-gradient(90deg, #075f40, #078a52); }
.campus-page-qiyue .campus-hero-identity > span { background: #078a52; box-shadow: 9px 9px 0 #abce07; }
.campus-page-shiji .campus-context-strip { background: linear-gradient(90deg, #f39000, #cf3e10); }
.campus-page-shiji .campus-address-banner { border-left-color: #f39000; }
.campus-page-shiji .campus-program-card { border-color: #f39000; }

/* Homepage closing consultation: keep the final section in the bright official logo palette. */
.home-page .consult-campus {
  color: #fff;
  background: linear-gradient(118deg, #075f40 0 55%, #078a52 55% 100%);
}
.home-page .consult-campus-head h2,
.home-page .consult-campus-head > p,
.home-page .consult-campus .consult-contact-note { color: rgba(255, 255, 255, .94); }

/* The founder role is already stated directly beneath the name; remove the duplicate kicker. */
.founder-page .founder-profile-kicker { display: none; }

/* Keep the public-record timeline in chronological order: 2018 → 2020 → 2022 → 2024 → 2025. */
.founder-record-list { display: flex; flex-direction: column; }
.founder-record-list a:nth-child(5) { order: 1; }
.founder-record-list a:nth-child(1) { order: 2; }
.founder-record-list a:nth-child(2) { order: 3; }
.founder-record-list a:nth-child(4) { order: 4; }
.founder-record-list a:nth-child(3) { order: 5; }

/* Brighter, more saturated brand greens for large color fields. */
:root { --forest: #0b9858; --forest-deep: #086b47; }
.home-page .founder { background: #0d6245; }
.home-page .services { background: #0a5238; }
.trust-archive {
  background:
    radial-gradient(circle at 8% 12%, rgba(241,207,124,.18), transparent 27%),
    linear-gradient(135deg, #084936 0%, #0d6344 58%, #148052 100%);
}

/* 齐悦课程介绍：以“定位—说明—能力点”层级呈现四类课程 */
.qiyue-course-story{background:linear-gradient(180deg,#f2faf5 0%,#fbfdf9 100%)}
.qiyue-course-story-heading{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(300px,.7fr);align-items:end;gap:32px;margin-bottom:34px}
.qiyue-course-story-heading .section-label{margin-bottom:12px}
.qiyue-course-story-heading h2{margin:0;color:var(--forest-deep);font-family:var(--serif);font-size:clamp(32px,3.2vw,50px);line-height:1.18;letter-spacing:-.045em}
.qiyue-course-story-heading>p{margin:0;padding-bottom:5px;color:var(--ink-soft);font-size:16px;line-height:1.85}
.qiyue-course-story-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}
.qiyue-course-card{position:relative;display:grid;grid-template-columns:1fr;grid-template-rows:auto 1fr;overflow:hidden;color:var(--ink);background:#fff;border:1px solid rgba(6,108,71,.12);border-radius:24px;box-shadow:0 12px 36px rgba(18,76,53,.08);text-decoration:none;transition:transform 180ms ease,box-shadow 180ms ease}
.qiyue-course-card:hover{transform:translateY(-4px);box-shadow:0 18px 42px rgba(18,76,53,.14)}
.qiyue-course-card figure{min-height:0;margin:0;overflow:hidden;aspect-ratio:2 / 1}.qiyue-course-card figure img{display:block;width:100%;height:100%;min-height:0;object-fit:cover}
.qiyue-course-card:nth-child(3) figure img{object-position:center 72%}
.qiyue-course-card>span{position:absolute;top:16px;left:16px;display:grid;width:42px;height:42px;place-items:center;color:#fff;background:var(--forest);border:1px solid rgba(255,255,255,.65);border-radius:50%;font-family:var(--serif);font-size:18px;line-height:1}
.qiyue-course-card>div{display:flex;min-width:0;flex-direction:column;padding:30px 28px 26px}
.qiyue-course-card .program-name{margin:0 0 16px;color:var(--forest);font-size:13px;font-weight:800;line-height:1.45;letter-spacing:.04em}
.qiyue-course-card h3{margin:0 0 15px;color:var(--forest-deep);font-family:var(--serif);font-size:clamp(28px,2.3vw,38px);line-height:1.08;letter-spacing:-.045em}
.qiyue-course-card>div>p:not(.program-name){margin:0;color:var(--ink-soft);font-size:15px;line-height:1.8}
.qiyue-course-card ul{display:grid;gap:0;margin:20px 0 0;padding:0;border-top:1px solid rgba(6,108,71,.14);list-style:none}
.qiyue-course-card li{display:grid;grid-template-columns:72px minmax(0,1fr);gap:10px;padding:11px 0;border-bottom:1px solid rgba(6,108,71,.14);font-size:13px;line-height:1.65}
.qiyue-course-card li b{color:var(--forest);font-size:14px}.qiyue-course-card li span{color:var(--ink-soft)}
.qiyue-course-card em{margin-top:auto;padding-top:20px;color:var(--forest);font-size:14px;font-style:normal;font-weight:800}
.qiyue-course-card-wide{grid-column:span 2}.qiyue-course-card-wide figure img{min-height:0}
@media (max-width:900px){.qiyue-course-story-heading{grid-template-columns:1fr;gap:16px}.qiyue-course-story-grid{grid-template-columns:1fr}.qiyue-course-card,.qiyue-course-card-wide{grid-column:auto;grid-template-columns:1fr}}
@media (max-width:620px){.qiyue-course-card,.qiyue-course-card-wide{grid-template-columns:1fr}.qiyue-course-card figure,.qiyue-course-card figure img,.qiyue-course-card-wide figure img{min-height:220px}.qiyue-course-card>div{padding:25px 22px 23px}}

/* 课程体系：从“堆课程”改成“先理解孩子、再选择校区与课堂”。 */
.course-page{background:#f7fbf5}
.course-page .course-hero{min-height:650px;background:linear-gradient(118deg,#fffdf7 0%,#f5faef 55%,#e1f0de 100%)}
.course-page .course-hero-copy{padding-block:110px 76px}.course-page .course-hero h1{max-width:780px;color:#075f42;font-size:clamp(46px,5vw,76px);line-height:1.08}.course-page .course-hero-copy>p:not(.hero-kicker){max-width:670px;color:#466458;font-size:18px;line-height:1.9}
.course-page .course-hero-map{min-height:530px;margin-block:44px;padding:28px;background:linear-gradient(145deg,#0b7b50,#0a5b42);box-shadow:0 24px 60px rgba(9,92,62,.2)}
.course-page .course-current-offerings{color:#164b35;background:#edf6e8;padding-block:92px}
.course-page .course-current-offerings>header{display:grid;grid-template-columns:minmax(0,1fr) minmax(280px,.62fr);column-gap:56px;align-items:end;max-width:1320px;margin-inline:auto}.course-page .course-current-offerings h2{margin:0;color:#075f42;font-family:var(--serif);font-size:clamp(36px,4vw,60px);line-height:1.14;letter-spacing:-.045em}.course-page .course-current-offerings>header>p:last-child{margin:0 0 5px;color:#557064;font-size:17px;line-height:1.85}
.course-page .course-current-offerings>div{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px;max-width:1320px;margin:42px auto 0}.course-page .course-campus-choice{display:flex;min-height:270px;flex-direction:column;justify-content:flex-start;padding:32px;color:#164b35;background:#fff;border:1px solid rgba(6,100,67,.14);border-radius:22px;box-shadow:0 14px 34px rgba(9,88,57,.08);text-decoration:none;transition:transform .18s ease,box-shadow .18s ease}.course-page .course-campus-choice:hover{transform:translateY(-4px);box-shadow:0 20px 42px rgba(9,88,57,.15)}.course-page .course-campus-choice-shiji{background:linear-gradient(135deg,#fffdf7,#fff7e9)}.course-page .course-campus-choice span{color:#0b9858;font-size:13px;font-weight:800;letter-spacing:.08em}.course-page .course-campus-choice strong{margin-top:20px;color:#075f42;font-family:var(--serif);font-size:clamp(26px,2.5vw,38px);line-height:1.18}.course-page .course-campus-choice p{margin:15px 0 0;color:#526d60;font-size:16px;line-height:1.8}.course-page .course-campus-choice b{margin-top:auto;padding-top:20px;color:#0b9858;font-size:15px}.course-page .course-current-offerings>small{display:block;max-width:1320px;margin:18px auto 0;color:#6b8075}
.course-page .course-programs{color:#164b35;background:#fffdf8;padding-block:100px}.course-page .course-section-heading{max-width:1320px;margin-inline:auto}.course-page .course-section-heading h2{color:#075f42;font-size:clamp(38px,4.2vw,64px);line-height:1.15}.course-page .course-section-heading>p{color:#536c60;font-size:17px;line-height:1.9}.course-page .course-program-grid{max-width:1320px;gap:24px;margin:48px auto 0}.course-page .course-program-card{min-height:0;color:#164b35;background:#fff;border:1px solid rgba(5,96,66,.13);border-radius:22px;box-shadow:0 12px 32px rgba(9,88,57,.08)}.course-page .course-program-card figure{height:285px}.course-page .course-program-card:nth-child(-n+2) figure{height:330px}.course-page .course-program-card h3{color:#075f42}.course-page .course-program-card .course-card-lead{color:#4e695d;font-size:16px;line-height:1.85}.course-page .course-program-card .course-card-value{margin-top:22px}.course-page .course-program-card b{color:#0b9858}
@media (max-width:900px){.course-page .course-hero{min-height:auto}.course-page .course-hero-copy{padding-block:72px 36px}.course-page .course-hero-map{min-height:420px;margin:0 24px 48px}.course-page .course-current-offerings>header{grid-template-columns:1fr;gap:18px}.course-page .course-current-offerings>div{grid-template-columns:1fr}.course-page .course-program-card figure,.course-page .course-program-card:nth-child(-n+2) figure{height:240px}}
@media (max-width:620px){.course-page .course-hero-copy{padding-block:58px 28px}.course-page .course-hero-copy>p:not(.hero-kicker){font-size:16px}.course-page .course-hero-map{min-height:360px;margin-inline:16px;padding:22px}.course-page .course-current-offerings,.course-page .course-programs{padding-block:64px}.course-page .course-campus-choice{min-height:230px;padding:25px}.course-page .course-current-offerings>small{font-size:12px}.course-page .course-program-card figure,.course-page .course-program-card:nth-child(-n+2) figure{height:220px}}

/* 课程页补足真实课堂，让家长在选择前能先看到真实环境。 */
.course-page .course-real-scenes{padding-block:100px;background:linear-gradient(135deg,#edf7ef,#fffaf0)}
.course-page .course-real-scenes>header{display:grid;grid-template-columns:minmax(0,1fr) minmax(300px,.62fr);gap:48px;align-items:end;max-width:1320px;margin-inline:auto}.course-page .course-real-scenes h2{margin:0;color:#075f42;font-family:var(--serif);font-size:clamp(38px,4.2vw,62px);line-height:1.14;letter-spacing:-.045em}.course-page .course-real-scenes header>p:last-child{margin:0;color:#526d60;font-size:16px;line-height:1.9}.course-page .course-real-scenes-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;max-width:1320px;margin:44px auto 0}.course-page .course-real-scenes figure{position:relative;min-height:320px;margin:0;overflow:hidden;border-radius:24px 8px 24px 8px;box-shadow:0 14px 32px rgba(9,88,57,.12)}.course-page .course-real-scenes img{display:block;width:100%;height:100%;object-fit:cover;transition:transform .28s ease}.course-page .course-real-scenes figure:hover img{transform:scale(1.035)}.course-page .course-real-scenes figcaption{position:absolute;right:0;bottom:0;left:0;display:flex;flex-direction:column;gap:5px;padding:18px;color:#fff;background:linear-gradient(transparent,rgba(5,56,39,.82));font-size:13px}.course-page .course-real-scenes figcaption b{font-size:14px}.course-page .course-real-scenes figcaption span{opacity:.88}
@media (max-width:980px){.course-page .course-real-scenes>header{grid-template-columns:1fr;gap:16px}.course-page .course-real-scenes-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.course-page .course-real-scenes figure{min-height:280px}}
@media (max-width:620px){.course-page .course-real-scenes{padding-block:64px}.course-page .course-real-scenes-grid{gap:12px;margin-top:28px}.course-page .course-real-scenes figure{min-height:210px;border-radius:18px 6px 18px 6px}.course-page .course-real-scenes figcaption{padding:13px;font-size:12px}.course-page .course-real-scenes figcaption b{font-size:13px}}

/* 浅底课程卡片必须保持足够文字对比，不能把正文做成“看不见”的装饰。 */
.course-page .course-program-card .course-card-value{width:calc(100% - 52px);padding:0;margin:22px 26px 24px;border-top:1px solid rgba(5,96,66,.18)}
.course-page .course-program-card .course-card-value>div{padding:12px 0;border-bottom:1px solid rgba(5,96,66,.15)}
.course-page .course-program-card .course-card-value dt{color:#a77416;font-size:12px;font-weight:800;letter-spacing:.08em}
.course-page .course-program-card .course-card-value dd{margin:6px 0 0;color:#3f5f51;font-size:14px;line-height:1.75}

/* 课程体系改为在本页讲透，避免家长在多个“了解课程”页面之间反复跳转。 */
.course-page .course-programs{display:none}
.course-page .course-depth{padding:92px 0 104px;background:linear-gradient(180deg,#fffdf9 0%,#f5fbf5 100%)}
.course-page .course-depth>header{max-width:1320px;margin:0 auto;padding:0 32px;display:grid;grid-template-columns:minmax(0,1fr) minmax(260px,.62fr);gap:42px;align-items:end}
.course-page .course-depth .eyebrow{margin:0 0 14px;color:#bd8121;font-size:14px;font-weight:800;letter-spacing:.12em}
.course-page .course-depth h2{margin:0;color:#075e42;font-size:clamp(38px,4.3vw,64px);line-height:1.1;letter-spacing:-.06em}
.course-page .course-depth>header>p{margin:0;color:#49695c;font-size:17px;line-height:1.9}
.course-page .course-depth-list{max-width:1320px;margin:46px auto 0;padding:0 32px;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}
.course-page .course-depth-item{position:relative;overflow:hidden;padding:34px 36px 32px;border:1px solid rgba(6,96,66,.14);border-radius:26px;background:rgba(255,255,255,.92);box-shadow:0 18px 44px rgba(21,83,55,.07)}
.course-page .course-depth-item::before{content:"";position:absolute;top:0;left:36px;right:36px;height:5px;border-radius:0 0 6px 6px;background:#079459}
.course-page .course-depth-item:nth-child(3)::before,.course-page .course-depth-item:nth-child(5)::before{background:#d8a637}
.course-page .course-depth-item:nth-child(5){grid-column:span 2;background:linear-gradient(118deg,#fffef9 0%,#fdf6e6 100%)}
.course-page .course-depth-item>span{display:block;margin:12px 0 14px;color:#078e57;font-size:14px;font-weight:800;letter-spacing:.08em}
.course-page .course-depth-item:nth-child(3)>span,.course-page .course-depth-item:nth-child(5)>span{color:#ad7618}
.course-page .course-depth-item h3{margin:0;color:#075e42;font-size:clamp(30px,3.1vw,44px);line-height:1.15;letter-spacing:-.045em}
.course-page .course-depth-item h3 small{font-size:.54em;font-weight:700;letter-spacing:0}
.course-page .course-depth-item>.lead{margin:18px 0 26px;color:#345548;font-size:17px;line-height:1.9}
.course-page .course-depth-item dl{margin:0;border-top:1px solid rgba(6,96,66,.14)}
.course-page .course-depth-item dl>div{display:grid;grid-template-columns:108px minmax(0,1fr);gap:18px;padding:15px 0;border-bottom:1px solid rgba(6,96,66,.12)}
.course-page .course-depth-item dt{color:#087f50;font-size:15px;font-weight:800}
.course-page .course-depth-item dd{margin:0;color:#426054;font-size:15px;line-height:1.8}
.course-page .course-depth-item:nth-child(3) dt,.course-page .course-depth-item:nth-child(5) dt{color:#a66e17}
@media (max-width:900px){
  .course-page .course-depth{padding:66px 0 76px}
  .course-page .course-depth>header{grid-template-columns:1fr;gap:18px;padding:0 22px}
  .course-page .course-depth-list{grid-template-columns:1fr;margin-top:30px;padding:0 22px}
  .course-page .course-depth-item:nth-child(5){grid-column:auto}
}
@media (max-width:620px){
  .course-page .course-depth h2{font-size:38px}
  .course-page .course-depth>header>p{font-size:15px}
  .course-page .course-depth-item{padding:27px 22px 24px;border-radius:20px}
  .course-page .course-depth-item::before{left:22px;right:22px}
  .course-page .course-depth-item h3{font-size:31px}
  .course-page .course-depth-item>.lead{font-size:15px;line-height:1.8}
  .course-page .course-depth-item dl>div{grid-template-columns:1fr;gap:5px;padding:13px 0}
  .course-page .course-depth-item dd{font-size:14px;line-height:1.72}
}

/* 课程详情直接在课程体系页展开：一门课一整段实景与内容，不再藏进二级页。 */
.course-page .course-depth-list{display:flex;flex-direction:column;gap:32px}
.course-page .course-depth-item{display:grid;grid-template-columns:minmax(330px,.82fr) minmax(0,1.18fr);padding:0;min-height:510px;border-radius:28px}
.course-page .course-depth-item::before{display:none}
.course-page .course-depth-item:nth-child(5){grid-column:auto}
.course-page .course-depth-item:nth-child(even) .course-depth-photo{order:2}
.course-page .course-depth-photo{margin:0;min-height:100%;overflow:hidden;background:#e5f0e9}
.course-page .course-depth-photo img{display:block;width:100%;height:100%;min-height:510px;object-fit:cover;object-position:center}
.course-page .course-depth-item:nth-child(1) .course-depth-photo img{object-position:center 55%}
.course-page .course-depth-item:nth-child(2) .course-depth-photo img{object-position:center 45%}
.course-page .course-depth-item:nth-child(4) .course-depth-photo img{object-position:center 64%}
.course-page .course-depth-copy{padding:42px 46px 38px}
.course-page .course-depth-item> .course-depth-copy>span{margin:0 0 14px}
.course-page .course-depth-item .course-depth-lead{margin:18px 0;color:#345548;font-size:17px;line-height:1.9}
.course-page .course-depth-story{margin:0 0 24px;padding:18px 20px;border-left:4px solid #0b9860;background:#f2faf3}
.course-page .course-depth-item:nth-child(3) .course-depth-story,.course-page .course-depth-item:nth-child(5) .course-depth-story{border-left-color:#d6a538;background:#fff8e8}
.course-page .course-depth-story h4{margin:0 0 7px;color:#075e42;font-size:18px;line-height:1.45}
.course-page .course-depth-story p{margin:0;color:#476357;font-size:15px;line-height:1.8}
.course-page .course-depth-item dl>div{grid-template-columns:125px minmax(0,1fr)}
@media (max-width:900px){
  .course-page .course-depth-item{grid-template-columns:minmax(240px,.74fr) minmax(0,1.26fr);min-height:0}
  .course-page .course-depth-photo img{min-height:520px}
  .course-page .course-depth-copy{padding:34px 30px}
}
@media (max-width:700px){
  .course-page .course-depth-item{display:flex;flex-direction:column;border-radius:22px}
  .course-page .course-depth-item:nth-child(even) .course-depth-photo{order:0}
  .course-page .course-depth-photo{height:270px;min-height:270px}
  .course-page .course-depth-photo img{min-height:270px;height:270px}
  .course-page .course-depth-copy{padding:28px 22px 25px}
  .course-page .course-depth-item .course-depth-lead{font-size:15px;line-height:1.82}
  .course-page .course-depth-story{padding:15px 16px}
  .course-page .course-depth-story h4{font-size:16px}
  .course-page .course-depth-story p{font-size:14px}
}

/* 课程体系优先展示两个校区真实实景，替换此前的示意图视觉。 */
.course-page .course-depth-item:nth-child(1) .course-depth-photo{background:url("qiyue-early-playroom.png") center 55%/cover no-repeat}
.course-page .course-depth-item:nth-child(2) .course-depth-photo{background:url("qiyue-childcare-class-activity.png") center 45%/cover no-repeat}
.course-page .course-depth-item:nth-child(3) .course-depth-photo{background:url("shiji-emotional-room.webp") center/cover no-repeat}
.course-page .course-depth-item:nth-child(4) .course-depth-photo{background:url("shiji-sensory-training.webp") center 64%/cover no-repeat}
.course-page .course-depth-item:nth-child(5) .course-depth-photo{background:url("shiji-learning-classroom.webp") center/cover no-repeat}
.course-page .course-depth-photo img{opacity:0}

/* 中文大标题按词组平衡换行，桌面端不再出现一个字单独挂在最后一行。 */
main h1,main h2{text-wrap:balance}
@media (min-width:701px){
  main h1,main h2{word-break:keep-all;overflow-wrap:normal}
  .campus-hero h1,.course-page .course-hero h1,.learning-page .learning-hero h1,.team-hero h1{max-width:min(100%,900px)}
}
@media (max-width:700px){
  main h1,main h2{text-wrap:balance;word-break:normal;overflow-wrap:normal}
}

/* 中文标题不允许留下一个字单独占行。 */
:where(h1, h2, h3, h4) {
  line-break: strict;
  text-wrap: balance;
}

/* 中等屏幕先让标题获得完整行宽，不能为了维持双栏而把标题挤成碎行。 */
@media (max-width: 1280px) {
  .campus-course-support {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
