@charset "UTF-8";

:root {
  --navy: #17294b;
  --navy-2: #223b68;
  --navy-3: #344b73;
  --gold: #c8a45f;
  --gold-2: #e2c985;
  --ivory: #fbf7ed;
  --warm: #f4ecdc;
  --stone: #d8cbb6;
  --ink: #1f2734;
  --muted: #6f6b63;
  --line: rgba(200, 164, 95, .34);
  --glass: rgba(255, 252, 244, .78);
  --dark-glass: rgba(23, 41, 75, .82);
  --shadow: 0 26px 70px rgba(38, 31, 19, .13);
  --soft-shadow: 0 16px 42px rgba(38, 31, 19, .1);
  --radius-lg: 34px;
  --radius-md: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(226, 201, 133, .2), transparent 26rem),
    linear-gradient(180deg, #fffdf8 0%, var(--ivory) 44%, #f0e6d4 100%);
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.72;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.24) 1px, transparent 1px),
    linear-gradient(180deg, rgba(200,164,95,.08) 1px, transparent 1px);
  background-size: 92px 92px;
  opacity: .32;
  z-index: -2;
}

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

.line { display: block; }
.line-inline { display: inline; }
.desktop-nowrap { white-space: nowrap; }
.nowrap { white-space: nowrap; }

.cursor-glow {
  position: fixed;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 99;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(226,201,133,.24), transparent 68%);
  transition: opacity .2s ease;
  mix-blend-mode: screen;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px clamp(22px, 4vw, 64px);
  background: rgba(255, 251, 242, .82);
  border-bottom: 1px solid rgba(200,164,95,.26);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: .02em;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 14px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.2vw, 22px);
  color: rgba(31,39,52,.72);
  font-size: 14px;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: transform .28s ease;
}

.site-nav a:hover,
.site-nav a.active { color: var(--navy); }
.site-nav a:hover::after,
.site-nav a.active::after { transform: scaleX(1); }

.nav-cta,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-cta,
.primary-action {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #b98f43, #d7bc75 42%, #a97d35);
  box-shadow: 0 16px 36px rgba(174, 132, 63, .28);
}

.nav-cta::before,
.primary-action::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -28%;
  width: 30%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.52), transparent);
  animation: metallicSweep 4.8s ease-in-out infinite;
}

.secondary-action {
  color: var(--navy);
  border: 1px solid rgba(200,164,95,.45);
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(14px);
}

.hero,
.sub-hero,
.image-band,
.story-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero {
  min-height: min(780px, calc(100vh - 78px));
  display: grid;
  align-items: center;
  padding: 64px clamp(24px, 5vw, 86px);
  color: #fff;
  background: #111f37;
}

.hero-bg,
.sub-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.05);
}

.hero::before,
.sub-hero::before,
.image-band::before,
.story-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(15,31,57,.9) 0%, rgba(23,41,75,.68) 45%, rgba(23,41,75,.18) 100%),
    radial-gradient(circle at 72% 18%, rgba(226,201,133,.22), transparent 24rem);
}

.hero::after,
.sub-hero::after,
.image-band::after,
.story-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.18));
}

.hero-inner {
  width: min(980px, 92vw);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 13px;
}

.hero h1,
.sub-hero h1 {
  margin: 0;
  font-size: clamp(44px, 4.7vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 950;
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero h1 .line {
  display: block;
  white-space: nowrap;
}

.hero-lede,
.sub-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.hero-proof {
  position: absolute;
  right: clamp(24px, 5vw, 86px);
  bottom: clamp(22px, 4vw, 54px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(760px, 58vw);
}

.proof-chip {
  min-height: 92px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(226,201,133,.34);
  border-radius: 22px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
}

.proof-chip strong {
  min-height: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(18px, 1.18vw, 23px);
  line-height: 1.12;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.proof-chip span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(74px, 8vw, 118px) 0;
}

.section-wide {
  width: min(1440px, calc(100% - 48px));
}

.section-title {
  display: grid;
  gap: 18px;
  margin-bottom: 42px;
}

.section-title.center {
  text-align: center;
  justify-items: center;
}

.section-title h2,
.split-copy h2,
.large-title {
  margin: 0;
  color: var(--navy);
  max-width: 1080px;
  font-size: clamp(40px, 4.2vw, 66px);
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 950;
  word-break: keep-all;
  overflow-wrap: normal;
}

.split-safe-title {
  max-width: 700px;
  font-size: clamp(40px, 3.2vw, 56px);
  line-height: 1.1;
}

.section-title p,
.split-copy p {
  max-width: 860px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 22px);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(520px, .94fr);
  gap: clamp(64px, 6vw, 112px);
  align-items: center;
}

.split-copy {
  display: grid;
  gap: 24px;
  min-width: 0;
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.split-copy p {
  max-width: 640px;
}

.editorial-image {
  position: relative;
  min-height: 540px;
  margin: 0;
  width: 100%;
  max-width: 700px;
  justify-self: end;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(200,164,95,.32);
  box-shadow: var(--shadow);
}

.editorial-image img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.editorial-image::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 26px;
  pointer-events: none;
}

.split-section-about {
  grid-template-columns: minmax(420px, 620px) minmax(520px, 660px);
  gap: clamp(64px, 6vw, 112px);
  align-items: center;
  justify-content: center;
}

.split-section-about .split-copy {
  max-width: 620px;
  min-width: 0;
}

.split-section-about .split-copy p {
  max-width: 560px;
}

.split-section-about .editorial-image {
  max-width: 660px;
  justify-self: end;
}

.split-section-about .split-safe-title {
  font-size: clamp(40px, 3.7vw, 62px);
}

.value-grid,
.method-grid,
.service-grid,
.resource-grid,
.case-grid,
.article-grid,
.team-grid,
.contact-grid {
  display: grid;
  gap: 22px;
}

.value-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.method-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.service-grid,
.case-grid,
.contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.resource-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.article-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.warm-card,
.method-card,
.service-card,
.resource-card,
.case-card,
.article-card,
.contact-card,
.process-card,
.team-card,
.profile-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200,164,95,.25);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,250,239,.72)),
    radial-gradient(circle at 0 0, rgba(226,201,133,.16), transparent 16rem);
  box-shadow: var(--soft-shadow);
}

.warm-card,
.method-card,
.resource-card,
.article-card,
.contact-card,
.process-card {
  padding: clamp(28px, 3vw, 42px);
}

.warm-card h3,
.method-card h3,
.service-card h3,
.resource-card h3,
.case-card h3,
.article-card h3,
.contact-card h3,
.process-card h3,
.team-card h3,
.profile-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(25px, 2.3vw, 34px);
  line-height: 1.22;
  font-weight: 950;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
}

.value-grid .warm-card h3 {
  min-height: 2.44em;
  word-break: normal;
  overflow-wrap: break-word;
}

.article-card h3 {
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.warm-card p,
.method-card p,
.service-card p,
.resource-card p,
.case-card p,
.article-card p,
.contact-card p,
.process-card p,
.team-card p,
.profile-card p,
.profile-card dd {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  word-break: normal;
  overflow-wrap: break-word;
  line-break: auto;
  text-wrap: pretty;
}

.warm-card p,
.method-card p,
.resource-card p,
.article-card p,
.contact-card p,
.process-card p { margin: 18px 0 0; }

.card-number,
.method-card span,
.process-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 950;
  letter-spacing: .08em;
}

.method-section {
  padding-top: 20px;
}

.method-card {
  min-height: 292px;
  padding: 28px 24px;
}

.method-card h3 {
  display: block;
  width: 100%;
  max-width: none;
  font-size: clamp(22px, 1.85vw, 28px);
  line-height: 1.16;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.method-card p {
  font-size: 14px;
  line-height: 1.66;
}

.service-card {
  min-height: 520px;
  display: grid;
  grid-template-rows: 260px 1fr;
}

.service-card figure,
.case-card figure,
.article-card figure {
  margin: 0;
  overflow: hidden;
}

.service-card img,
.case-card img,
.article-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.service-card:hover img,
.case-card:hover img,
.article-card:hover img {
  transform: scale(1.045);
}

.service-card > div,
.case-card > div,
.article-card > div {
  padding: clamp(26px, 3vw, 38px);
}

.service-card p,
.case-card p,
.article-card p {
  margin: 18px 0 0;
}

.qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 316px;
  padding-inline: 36px;
  text-align: center;
}

.qr-card img {
  width: 172px;
  height: 172px;
  object-fit: contain;
  margin: 0 auto;
  padding: 10px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(200,164,95,.26);
  box-shadow: 0 18px 42px rgba(23,41,75,.1);
}

.qr-card > div {
  width: 100%;
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.qr-card h3 {
  font-size: clamp(24px, 2vw, 32px);
  white-space: nowrap;
}

.qr-card p {
  max-width: 260px;
  margin-inline: auto;
  text-align: center;
}

.case-card h3 {
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.case-card h3 .line {
  display: block;
}

.dark-band {
  width: min(1440px, calc(100% - 48px));
  margin: clamp(58px, 7vw, 96px) auto;
  min-height: 700px;
  border-radius: 42px;
  overflow: hidden;
  position: relative;
  background: var(--navy);
  box-shadow: 0 34px 90px rgba(23,41,75,.28);
}

.dark-band-bg {
  position: absolute;
  inset: 0;
  background-image: var(--band-image);
  background-size: cover;
  background-position: center;
  opacity: .72;
}

.dark-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13,27,50,.94), rgba(23,41,75,.65), rgba(23,41,75,.22)),
    radial-gradient(circle at 75% 28%, rgba(226,201,133,.18), transparent 26rem);
}

.dark-band-content {
  position: relative;
  z-index: 1;
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(420px, .92fr) minmax(480px, 1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 86px);
  padding: clamp(46px, 6vw, 86px);
  color: #fff;
}

.dark-panel {
  padding: clamp(34px, 4vw, 54px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 32px;
  background: rgba(23,41,75,.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
}

.dark-panel h2,
.dark-title {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 1.08;
  font-weight: 950;
}

.dark-panel p {
  margin: 28px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 20px;
  line-height: 1.75;
}

.trust-stack {
  display: grid;
  gap: 18px;
  align-self: center;
}

.trust-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 20px;
  align-items: center;
}

.trust-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 28%, #fff6c6, var(--gold) 62%, #8c6a30);
  box-shadow: 0 0 24px rgba(226,201,133,.45);
}

.trust-box {
  padding: 24px 28px;
  border: 1px solid rgba(226,201,133,.36);
  border-radius: 20px;
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(16px);
}

.trust-box h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 24px;
}

.trust-box p {
  margin: 0;
  color: rgba(255,255,255,.76);
}

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

.growth-path::before {
  content: "";
  position: absolute;
  top: 76px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(200,164,95,.58), transparent);
}

.path-card {
  position: relative;
  padding: 34px 22px 28px;
  border: 1px solid rgba(200,164,95,.28);
  border-radius: 26px;
  background: rgba(255,255,255,.74);
  box-shadow: var(--soft-shadow);
}

.path-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 999px;
  color: var(--navy);
  background: linear-gradient(135deg, #fff7df, #f2dfab);
  border: 1px solid rgba(200,164,95,.44);
  font-size: 30px;
  font-weight: 950;
}

.path-card strong {
  display: block;
  color: var(--gold);
  font-size: 16px;
}

.path-card h3 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
}

.path-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.path-card.is-core {
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  color: #fff;
  transform: translateY(-18px);
}

.path-card.is-core h3,
.path-card.is-core p { color: #fff; }

.teacher-section .section-title {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.teacher-section .section-title h2 {
  max-width: 940px;
  font-size: clamp(38px, 3.9vw, 60px);
}

.teacher-section .section-title p {
  max-width: 980px;
}

.teacher-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.profile-card {
  min-height: 438px;
  display: grid;
  grid-template-columns: minmax(248px, 280px) minmax(0, 1fr);
  align-items: stretch;
}

.profile-image-frame {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 100%;
  padding: 10px 0;
  box-sizing: border-box;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,.92), transparent 42%),
    linear-gradient(180deg, #fbf8f0, #e8ddc5);
}

.profile-image-frame img {
  width: 94%;
  height: 96%;
  object-fit: contain;
  object-position: center center;
  transform: translate(var(--image-x, 0), var(--image-y, 0)) scale(var(--image-scale, 1));
  transform-origin: center center;
}

.profile-image-frame-full {
  padding: 0;
}

.profile-image-frame-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.profile-card > div {
  min-width: 0;
  padding: 28px 32px 26px;
}

.profile-label {
  margin: 0 0 8px;
  color: var(--gold);
  font-weight: 900;
}

.profile-card dl {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 9px 12px;
  margin: 18px 0 0;
}

.profile-card dt {
  color: var(--navy);
  font-weight: 900;
}

.profile-card dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.68;
}

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

.portrait-card {
  padding: 34px;
  text-align: center;
}

.portrait-card figure {
  width: 188px;
  height: 228px;
  margin: 0 auto 24px;
  padding: 7px;
  border-radius: 28px;
  background: linear-gradient(135deg, #f6e7af, #b89143);
  box-shadow: 0 18px 44px rgba(174,132,63,.22);
}

.portrait-card img {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: cover;
  object-position: center center;
  background: #fbf8f0;
}

.tag-list,
.material-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-list span,
.material-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(200,164,95,.26);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255,255,255,.68);
  font-weight: 800;
}

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

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .75fr);
  gap: 48px;
  align-items: start;
}

.contact-section.contact-only {
  grid-template-columns: 1fr;
  justify-items: center;
}

.contact-copy {
  width: min(980px, 100%);
  display: grid;
  gap: 24px;
  justify-items: center;
  text-align: center;
}

.contact-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 950;
  word-break: keep-all;
}

.contact-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.72;
}

.contact-grid-public {
  width: min(1040px, 100%);
  justify-content: center;
}

.contact-grid-public .contact-card {
  min-height: 238px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.contact-grid-public .contact-card p {
  max-width: 320px;
}

.appointment-form {
  padding: 38px;
  border-radius: 30px;
  border: 1px solid rgba(200,164,95,.32);
  background: rgba(255,255,255,.8);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 18px;
}

.appointment-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.appointment-form input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(200,164,95,.28);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.appointment-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,164,95,.16);
}

.appointment-form button {
  width: 100%;
  margin-top: 24px;
  border: 0;
  cursor: pointer;
}

.form-note,
.form-message {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.form-message.error { color: #9b2f2f; }

.sub-hero {
  min-height: 540px;
  display: grid;
  align-items: center;
  padding: 96px clamp(24px, 5vw, 86px);
  color: #fff;
  background: var(--navy);
}

.sub-hero-content {
  width: min(820px, 92vw);
}

.sub-hero-content.sub-hero-wide {
  width: min(1180px, calc(100vw - 140px));
}

.sub-hero-content.sub-hero-wide p {
  max-width: none;
  font-size: clamp(17px, 1.35vw, 20px);
}

.sub-hero-content h1 {
  font-size: clamp(46px, 5vw, 76px);
  word-break: keep-all;
  overflow-wrap: normal;
}

.image-band {
  width: min(1440px, calc(100% - 48px));
  min-height: 520px;
  margin: clamp(56px, 7vw, 100px) auto;
  border-radius: 42px;
  color: #fff;
  background-image: var(--band-image);
  background-size: cover;
  background-position: center;
  box-shadow: 0 34px 90px rgba(23,41,75,.28);
}

.image-band-inner {
  position: relative;
  z-index: 1;
  width: min(760px, 92%);
  padding: clamp(44px, 6vw, 84px);
}

.image-band h2 {
  margin: 0;
  font-size: clamp(42px, 4.2vw, 66px);
  line-height: 1.08;
  word-break: keep-all;
  overflow-wrap: normal;
}

.image-band p {
  margin: 24px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 21px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 44px clamp(24px, 5vw, 72px);
  color: rgba(255,255,255,.82);
  background: var(--navy);
}

.site-footer > div:first-child {
  min-width: 0;
}

.site-footer strong {
  display: block;
  color: #fff;
  font-size: 24px;
}

.site-footer p {
  max-width: none;
  margin: 10px 0 0;
}

.site-footer .footer-tagline {
  white-space: nowrap !important;
  font-size: clamp(12px, 1.02vw, 16px);
  line-height: 1.35;
  max-width: 100%;
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: start;
  white-space: nowrap;
}

.icp {
  grid-column: 1 / -1;
  color: rgba(255,255,255,.54);
  font-size: 13px;
}

.motion-ready .reveal {
  opacity: 1;
  transform: translateY(10px);
  transition:
    transform .7s ease var(--delay, 0ms);
}

.reveal,
.motion-ready .reveal.in-view {
  opacity: 1;
  transform: none;
}

.float-image { animation: floatImage 7s ease-in-out infinite; }

@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes metallicSweep {
  0%, 52% { left: -32%; opacity: 0; }
  62% { opacity: .9; }
  82%, 100% { left: 112%; opacity: 0; }
}

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

.geo-hero {
  background: #15110d;
}

.geo-hero .sub-hero-bg {
  background:
    linear-gradient(120deg, rgba(24, 18, 12, .8), rgba(24, 18, 12, .32)),
    url("assets/campus-library-arches.png") center / cover;
}

.geo-index-band {
  border-top: 1px solid rgba(176, 139, 83, .22);
  border-bottom: 1px solid rgba(176, 139, 83, .22);
}

.geo-article-grid .article-card h3 a {
  color: inherit;
  text-decoration: none;
}

.geo-article-grid .article-card h3 a:hover {
  color: #8f6a38;
}

.geo-article {
  background: #f8f5ef;
}

.geo-article-header {
  width: min(980px, calc(100% - 44px));
  margin: 0 auto;
  padding: 132px 0 52px;
}

.geo-article-header h1 {
  margin: 14px 0 22px;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.08;
  color: #241b13;
}

.geo-summary {
  max-width: 920px;
  color: #5f5448;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.9;
}

.geo-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.geo-keywords span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(176, 139, 83, .26);
  color: #6e5738;
  background: rgba(255, 255, 255, .52);
  font-size: 13px;
}

.geo-answer-pack {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.geo-section,
.geo-cta {
  border: 1px solid rgba(176, 139, 83, .2);
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 18px 42px rgba(56, 42, 28, .08);
  padding: clamp(24px, 4vw, 40px);
}

.geo-section h2,
.geo-cta h2 {
  margin: 0 0 16px;
  font-family: "Noto Serif SC", "Songti SC", serif;
  color: #2f241a;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
}

.geo-section ul {
  margin: 0;
  padding-left: 1.2em;
  color: #5c5147;
  line-height: 1.9;
}

.geo-section li + li {
  margin-top: 8px;
}

.geo-boundary {
  margin: 18px 0 0;
  color: #7a5b31;
  line-height: 1.85;
}

.geo-faq details {
  border-top: 1px solid rgba(176, 139, 83, .18);
  padding: 16px 0;
}

.geo-faq summary {
  cursor: pointer;
  color: #2f241a;
  font-weight: 700;
}

.geo-faq p {
  margin: 10px 0 0;
  color: #5c5147;
  line-height: 1.85;
}

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

.geo-distribution-grid article {
  border: 1px solid rgba(176, 139, 83, .18);
  background: rgba(248, 245, 239, .72);
  padding: 18px;
}

.geo-distribution-grid strong {
  color: #2f241a;
}

.geo-distribution-grid p {
  margin: 10px 0 0;
  color: #62584f;
  line-height: 1.75;
}

.geo-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.geo-cta p {
  color: #5c5147;
  line-height: 1.85;
}

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .hero-proof { position: static; width: min(680px, 100%); margin-top: 46px; }
  .method-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .growth-path { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .dark-band-content,
  .split-layout,
  .contact-section { grid-template-columns: 1fr; }
  .editorial-image { justify-self: stretch; max-width: none; }
  .teacher-section .section-title { grid-template-columns: 1fr; }
  .teacher-profile-grid { grid-template-columns: 1fr; }
  .geo-distribution-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .geo-cta { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .hero h1 .line {
    white-space: normal;
  }

  .desktop-nowrap {
    white-space: normal;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .cursor-glow {
    display: none;
  }

  .site-header {
    position: static;
    width: calc(100% - 24px);
    margin: 10px auto 0;
    padding: 12px 14px;
    box-sizing: border-box;
  }

  .site-nav {
    max-width: 100%;
    min-width: 0;
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
  }

  .nav-cta { display: none; }

  .hero,
  .sub-hero {
    overflow: hidden;
    min-height: auto;
    padding: 78px 22px;
  }

  .hero-bg,
  .sub-hero-bg {
    inset: 0;
    transform: none;
  }

  .hero h1,
  .sub-hero-content h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .hero-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .hero-lede,
  .sub-hero p,
  .section-title,
  .section-title.center,
  .section-title h2,
  .section-title p,
  .section-title .eyebrow,
  .split-copy,
  .split-copy h2,
  .split-copy p,
  .teacher-section .section-title,
  .teacher-section .section-title > div,
  .teacher-section .section-title h2,
  .teacher-section .section-title p {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .section-title h2,
  .split-copy h2,
  .large-title,
  .teacher-section .section-title h2 {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .hero-proof,
  .value-grid,
  .method-grid,
  .service-grid,
  .resource-grid,
  .case-grid,
  .article-grid,
  .team-grid,
  .portrait-grid,
  .process-grid,
  .growth-path {
    grid-template-columns: 1fr;
  }
  .section,
  .section-wide,
  .dark-band,
  .image-band {
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }

  .split-layout,
  .contact-section {
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
    overflow: hidden;
    box-sizing: border-box;
  }

  .editorial-image {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }

  .editorial-image img {
    min-height: 360px;
  }

  .dark-band-content {
    padding: 26px;
  }

  .profile-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .profile-image-frame {
    height: 360px;
    min-height: 360px;
    padding: 20px 0;
  }

  .profile-image-frame img {
    width: auto;
    max-width: 88%;
    height: 326px;
    object-fit: contain;
  }

  .profile-image-frame-full {
    padding: 0;
  }

  .profile-image-frame-full img {
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
  }

  .secondary-action,
  .primary-action {
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .case-card h3,
  .value-grid .warm-card h3,
  .method-card h3 {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-tagline {
    white-space: nowrap !important;
    font-size: 11px;
  }

  .footer-links {
    flex-wrap: wrap;
    white-space: normal;
  }

  .geo-article-header {
    width: calc(100% - 32px);
    padding: 64px 0 24px;
  }

  .geo-distribution-grid {
    grid-template-columns: 1fr;
  }

  .geo-section,
  .geo-cta {
    padding: 22px;
  }
}

.appointment-widget {
  position: relative;
  z-index: 120;
}

.appointment-widget [hidden] {
  display: none !important;
}

.appointment-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 122;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 156px;
  min-height: 82px;
  padding: 15px 22px 16px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #29416f);
  box-shadow: 0 18px 42px rgba(13,25,54,.26);
  cursor: pointer;
  text-align: center;
}

.appointment-float span {
  font-size: 13px;
  opacity: .82;
}

.appointment-float strong {
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 0;
}

.appointment-open .appointment-float {
  opacity: 0;
  pointer-events: none;
}

.appointment-overlay {
  position: fixed;
  inset: 0;
  z-index: 121;
  background: rgba(13,25,54,.34);
  backdrop-filter: blur(4px);
}

.appointment-panel {
  position: fixed;
  right: 28px;
  bottom: 104px;
  z-index: 123;
  width: min(520px, calc(100vw - 40px));
  max-height: calc(100vh - 132px);
  overflow: auto;
  padding: 30px;
  border: 1px solid rgba(200,164,95,.28);
  border-radius: 28px;
  background: rgba(255,252,246,.98);
  box-shadow: 0 28px 70px rgba(13,25,54,.28);
}

.appointment-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(13,25,54,.08);
  color: var(--navy);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.appointment-panel h2 {
  margin: 6px 44px 10px 0;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.08;
  letter-spacing: 0;
}

.appointment-panel-lede {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.8;
}

.appointment-form-floating {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

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

.appointment-form-floating .form-wide {
  grid-column: 1 / -1;
}

.appointment-form select,
.appointment-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(200,164,95,.28);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  outline: none;
  font: inherit;
}

.appointment-form select {
  height: 54px;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%) calc(100% - 18px) 50% / 7px 7px no-repeat,
    linear-gradient(135deg, var(--muted) 50%, transparent 50%) calc(100% - 13px) 50% / 7px 7px no-repeat,
    #fff;
}

.appointment-form textarea {
  resize: vertical;
  min-height: 96px;
}

.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,164,95,.16);
}

@media (max-width: 760px) {
  .appointment-float {
    right: 16px;
    bottom: 16px;
    min-width: 136px;
    min-height: 74px;
    padding: 12px 16px 13px;
  }

  .appointment-float strong {
    font-size: 16px;
  }

  .appointment-panel {
    right: 10px;
    bottom: 82px;
    width: calc(100vw - 20px);
    max-height: calc(100vh - 102px);
    padding: 20px;
    border-radius: 24px;
  }

  .appointment-panel h2 {
    margin-bottom: 8px;
    font-size: 31px;
  }

  .appointment-panel-lede {
    margin-bottom: 16px;
    line-height: 1.65;
  }

  .appointment-form-floating .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .appointment-form label {
    gap: 6px;
  }

  .appointment-form input,
  .appointment-form select {
    height: 50px;
  }

  .appointment-form textarea {
    min-height: 82px;
  }

  .appointment-form button {
    margin-top: 16px;
  }

  .form-note,
  .form-message {
    margin-top: 12px;
  }
}
