:root {
  --ink: #101820;
  --navy: #0b1c29;
  --navy-2: #122a3a;
  --paper: #ffffff;
  --canvas: #f5f3ee;
  --soft: #f8f7f3;
  --gold: #c99a5b;
  --gold-light: #e8c38e;
  --orange: #d9793f;
  --text: #26343f;
  --muted: #707b83;
  --line: #deddd8;
  --line-dark: rgba(255, 255, 255, .16);
  --shadow: 0 24px 70px rgba(12, 28, 40, .10);
  --radius: 4px;
  --container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 116px; }
html, body { max-width: 100%; overflow-x: clip; }
body { margin: 0; color: var(--text); background: var(--paper); font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif; font-size: 15px; line-height: 1.75; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { overflow-wrap: anywhere; }
figure, dl, dd { margin: 0; }
.container { width: min(calc(100% - 56px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 16px; color: #fff; background: var(--ink); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.overline { display: inline-block; margin-bottom: 16px; color: #9a713f; font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.overline--light { color: var(--gold-light); }

.utility-bar { color: #c9d2d8; background: #07151f; font-size: 11px; letter-spacing: .06em; }
.utility-bar__inner { height: 32px; display: flex; align-items: center; justify-content: space-between; }
.utility-bar__inner > div { display: flex; align-items: center; gap: 14px; }
.utility-bar i { width: 1px; height: 10px; background: rgba(255,255,255,.24); }
.utility-bar a { transition: color .2s; }
.utility-bar a:hover { color: #fff; }

.site-header { position: sticky; z-index: 100; top: 0; height: 82px; border-bottom: 1px solid rgba(15, 29, 39, .08); background: rgba(255,255,255,.96); backdrop-filter: blur(16px); transition: box-shadow .25s; }
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(10, 25, 35, .08); }
.site-header__inner { height: 100%; display: flex; align-items: center; gap: 22px; }
.brand { flex: 0 0 auto; display: flex; align-items: center; gap: 11px; }
.brand__mark { flex: 0 0 auto; width: 44px; height: 50px; display: block; overflow: hidden; }
.brand__mark img { width: auto; max-width: none; height: 50px; }
.brand__name { color: var(--navy); font-size: 17px; font-weight: 800; line-height: 1.2; letter-spacing: .015em; white-space: nowrap; }
.site-nav { flex: 1 1 auto; display: flex; align-items: center; justify-content: center; gap: clamp(9px, 1.05vw, 19px); }
.site-nav a { position: relative; padding: 29px 0 27px; color: #3c4a54; font-size: 12px; white-space: nowrap; transition: color .2s; }
.site-nav a::after { content: ""; position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.site-nav a:hover, .site-nav a.active { color: var(--navy); }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.site-nav__mobile-contact { display: none; }
.header-phone { flex: 0 0 auto; min-width: 178px; display: grid; padding: 2px 0 2px 16px; border-left: 2px solid var(--gold); line-height: 1.1; }
.header-phone small { color: #7b858c; font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.header-phone strong { margin-top: 7px; color: var(--navy); font-family: Georgia, serif; font-size: 19px; letter-spacing: .025em; }
.nav-toggle { display: none; width: 42px; height: 42px; padding: 11px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--navy); transition: .25s; }

.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 20px; padding: 0 22px; border: 1px solid transparent; border-radius: 0; font-size: 13px; font-weight: 750; letter-spacing: .02em; transition: color .2s, background .2s, border-color .2s, transform .2s; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn--gold { color: #111b22; background: var(--gold-light); }
.btn--gold:hover { background: #f2d2a2; }
.btn--ghost { color: #fff; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.04); backdrop-filter: blur(6px); }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.btn--ink { color: #fff; background: var(--navy); }
.btn--ink:hover { background: #16364a; }
.btn--block { width: 100%; }
.text-arrow { display: inline-flex; align-items: center; gap: 30px; color: var(--navy); font-size: 13px; font-weight: 800; }
.text-arrow span { color: var(--gold); font-size: 20px; transition: transform .2s; }
.text-arrow:hover span { transform: translateX(5px); }

.hero { position: relative; height: min(690px, calc(100vh - 114px)); min-height: 600px; overflow: hidden; color: #fff; background: var(--navy); }
.hero__viewport, .hero-slide { position: absolute; inset: 0; }
.hero-slide { visibility: hidden; opacity: 0; transition: opacity .8s ease, visibility .8s; }
.hero-slide.is-active { visibility: visible; opacity: 1; }
.hero-slide__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.025); transition: transform 7s ease; }
.hero-slide.is-active .hero-slide__image { transform: scale(1); }
.hero-slide__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,16,25,.94) 0%, rgba(6,20,30,.78) 34%, rgba(7,22,31,.28) 63%, rgba(7,22,31,.1) 100%); }
.hero-slide__overlay::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,14,22,.5), transparent 34%); }
.hero-slide__inner { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.hero-slide__copy { width: min(640px, 56%); padding-bottom: 40px; }
.hero-kicker { display: inline-flex; align-items: center; gap: 14px; color: var(--gold-light); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.hero-kicker::before { content: ""; width: 38px; height: 1px; background: var(--gold-light); }
.hero-slide h1, .hero-slide h2 { max-width: 650px; margin: 24px 0 20px; color: #fff; font-size: clamp(44px, 4.45vw, 68px); line-height: 1.17; letter-spacing: -.045em; font-weight: 700; }
.hero-slide__copy > p { max-width: 600px; margin: 0; color: #d0d8dd; font-size: 16px; line-height: 1.9; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-controls { position: absolute; z-index: 5; right: 0; bottom: 36px; left: 0; display: flex; align-items: center; justify-content: flex-end; gap: 10px; pointer-events: none; }
.hero-controls > * { pointer-events: auto; }
.hero-count { display: flex; align-items: baseline; gap: 7px; margin-right: 14px; color: rgba(255,255,255,.55); font-size: 12px; }
.hero-count strong { color: #fff; font-size: 24px; font-weight: 500; }
.hero-dots { display: flex; align-items: center; gap: 6px; margin-right: 14px; }
.hero-dots button { width: 22px; height: 3px; padding: 0; border: 0; background: rgba(255,255,255,.35); cursor: pointer; transition: width .25s, background .25s; }
.hero-dots button.is-active { width: 42px; background: var(--gold-light); }
.hero-control { width: 39px; height: 39px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.32); color: #fff; background: rgba(5,17,25,.24); cursor: pointer; transition: .2s; }
.hero-control:hover { color: var(--navy); border-color: var(--gold-light); background: var(--gold-light); }
.hero-progress { position: absolute; z-index: 6; right: 0; bottom: 0; left: 0; height: 2px; background: rgba(255,255,255,.12); }
.hero-progress span { display: block; width: 0; height: 100%; background: var(--gold); }
.hero.is-playing .hero-progress span { animation: heroProgress 6s linear forwards; }
@keyframes heroProgress { to { width: 100%; } }

.business-jump { position: relative; z-index: 7; border-bottom: 1px solid var(--line); background: #fff; }
.business-jump__inner { min-height: 92px; display: grid; grid-template-columns: 110px repeat(4, 1fr); align-items: stretch; }
.business-jump__label { display: flex; align-items: center; color: #9a713f; font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.business-jump a { display: grid; grid-template-columns: 35px 1fr auto; align-items: center; gap: 11px; padding: 0 22px; border-left: 1px solid var(--line); transition: color .2s, background .2s; }
.business-jump a b { color: #a9a9a3; font-size: 11px; }
.business-jump a span { color: var(--navy); font-size: 13px; font-weight: 800; }
.business-jump a i { color: var(--gold); font-style: normal; transition: transform .2s; }
.business-jump a:hover { background: var(--soft); }
.business-jump a.active { background: var(--soft); box-shadow: inset 0 -3px var(--gold); }
.business-jump a.active b { color: #9a713f; }
.business-jump a:hover i { transform: translate(3px,3px); }

.section { padding: 112px 0; }
.section-head { display: grid; grid-template-columns: minmax(0, 1fr) 440px; align-items: end; gap: 70px; margin-bottom: 54px; }
.section-head--compact { margin-bottom: 42px; }
.section-head h2 { max-width: 760px; margin: 0; color: var(--navy); font-size: clamp(34px, 3.5vw, 52px); line-height: 1.25; letter-spacing: -.04em; }
.section-head > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.9; }

.business { background: var(--canvas); }
.business .section-head { grid-template-columns: minmax(0, 1fr) minmax(320px, 390px); gap: 50px; }
#business-title { max-width: none; font-size: clamp(36px, 3vw, 44px); white-space: nowrap; }
.business-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid #cfcec9; border-left: 1px solid #cfcec9; }
.business-card { min-height: 500px; display: flex; flex-direction: column; padding: 38px 42px; border-right: 1px solid #cfcec9; border-bottom: 1px solid #cfcec9; background: rgba(255,255,255,.4); transition: color .3s, background .3s; }
.business-card:hover { color: #fff; background: var(--navy-2); }
.business-card__top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.business-card__top span { color: var(--gold); font-family: Georgia, serif; font-size: 28px; }
.business-card__top small { color: #828b91; font-size: 11px; text-align: right; }
.business-card:hover .business-card__top small { color: #aebbc4; }
.business-card h3 { margin: 30px 0 10px; color: var(--navy); font-size: 27px; letter-spacing: -.03em; }
.business-card:hover h3 { color: #fff; }
.business-card > p { max-width: 520px; margin: 0 0 22px; color: #66727a; font-size: 13px; }
.business-card:hover > p { color: #b9c5cc; }
.business-card__scope { padding: 19px 0 14px; border-top: 1px solid rgba(111,120,127,.28); }
.business-card__scope > strong { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 14px; color: #9a713f; font-size: 11px; letter-spacing: .05em; }
.business-card__scope > strong em { flex: 0 0 auto; color: #949da2; font-size: 10px; font-style: normal; font-weight: 600; letter-spacing: 0; }
.business-card__training > strong { display: block; margin-bottom: 9px; color: #9a713f; font-size: 11px; letter-spacing: .08em; }
.business-card:hover .business-card__scope > strong, .business-card:hover .business-card__training > strong { color: var(--gold-light); }
.business-card__scope ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 18px; margin: 0; padding: 0; list-style: none; }
.business-card__scope li { position: relative; padding-left: 14px; color: #334852; font-size: 14px; line-height: 1.6; }
.business-card__scope li::before { content: ""; position: absolute; top: .62em; left: 0; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.business-card:hover .business-card__scope { border-color: rgba(255,255,255,.16); }
.business-card:hover .business-card__scope li { color: #e0e7ea; }
.business-card__scope-more { display: flex; align-items: center; justify-content: space-between; margin-top: 15px; padding-top: 12px; border-top: 1px solid rgba(111,120,127,.2); color: #465760; font-size: 11px; font-weight: 750; }
.business-card__scope-more b { color: var(--gold); font-size: 15px; }
.business-card:hover .business-card__scope-more { color: #fff; border-color: rgba(255,255,255,.13); }
.business-card__training { margin-bottom: 15px; padding-top: 13px; border-top: 1px solid rgba(111,120,127,.2); }
.business-card__training p { margin: 0; color: #66727a; font-size: 11px; line-height: 1.8; }
.business-card__training p span { color: var(--gold); }
.business-card:hover .business-card__training { border-color: rgba(255,255,255,.13); }
.business-card:hover .business-card__training p { color: #b9c5cc; }
.business-card__links { display: grid; gap: 0; margin-top: auto; }
.business-card__links a { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 0; border-top: 1px solid rgba(111,120,127,.3); color: var(--navy); font-size: 14px; font-weight: 750; }
.business-card:hover .business-card__links a { color: #fff; border-color: rgba(255,255,255,.16); }
.business-card__links b { color: var(--gold); transition: transform .2s; }
.business-card__links a:hover b { transform: translate(3px,-3px); }
.business-boundary { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; margin-top: 30px; padding: 20px 0; border-bottom: 1px solid #cfcec9; color: #66727a; }
.business-boundary > span { color: #9a713f; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.business-boundary p { margin: 0; font-size: 12px; }
.business-boundary a { color: var(--navy); font-size: 12px; font-weight: 800; white-space: nowrap; }

.story { min-height: 700px; display: grid; grid-template-columns: 1.08fr .92fr; background: #fff; }
.story__media { position: relative; min-height: 650px; overflow: hidden; }
.story__media img { width: 100%; height: 100%; object-fit: cover; }
.story__media > span { position: absolute; right: 0; bottom: 0; padding: 17px 25px; color: #fff; background: rgba(7,21,31,.88); font-size: 10px; letter-spacing: .2em; }
.story__content { align-self: center; max-width: 650px; padding: 90px clamp(45px, 6vw, 100px); }
.story__content h2 { margin: 0; color: var(--navy); font-size: clamp(36px, 3.6vw, 54px); line-height: 1.25; letter-spacing: -.045em; }
.story__lead { margin: 24px 0 36px; color: #5d6971; font-size: 15px; line-height: 2; }
.entity-facts { border-top: 1px solid var(--line); }
.entity-facts > div { display: grid; grid-template-columns: 95px 1fr; gap: 22px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.entity-facts dt { color: #9a713f; font-size: 11px; font-weight: 800; }
.entity-facts dd { color: var(--navy); font-size: 13px; font-weight: 700; }
.story__actions { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 30px; }
.story__actions small { color: #91999e; font-size: 10px; }

.campus { background: var(--paper); }
.campus-grid { height: 590px; display: grid; grid-template-columns: 1.55fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; }
.campus-photo { position: relative; overflow: hidden; background: var(--navy); }
.campus-photo--main { grid-row: 1 / 3; }
.campus-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s, opacity .6s; }
.campus-photo::after { content: ""; position: absolute; inset: 40% 0 0; background: linear-gradient(transparent, rgba(4,16,24,.82)); }
.campus-photo:hover img { transform: scale(1.025); opacity: .9; }
.campus-photo figcaption { position: absolute; z-index: 2; right: 26px; bottom: 22px; left: 26px; display: flex; align-items: end; gap: 16px; color: #fff; }
.campus-photo figcaption > span { color: var(--gold-light); font-family: Georgia, serif; font-size: 19px; }
.campus-photo figcaption div { display: grid; }
.campus-photo figcaption strong { font-size: 17px; }
.campus-photo figcaption small { color: #c2ccd2; font-size: 10px; }
.asset-caption { margin: 18px 0 0; color: #899096; font-size: 11px; text-align: right; }

.service { background: var(--canvas); }
.service-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.service-copy { position: sticky; top: 120px; align-self: start; }
.service-copy h2 { margin: 0; color: var(--navy); font-size: clamp(35px, 3.3vw, 50px); line-height: 1.27; letter-spacing: -.04em; }
.service-copy > p { max-width: 460px; margin: 22px 0 32px; color: var(--muted); font-size: 14px; }
.service-steps { margin: 0; padding: 0; border-top: 1px solid #cfcfc9; list-style: none; }
.service-steps li { display: grid; grid-template-columns: 80px 1fr; gap: 25px; padding: 28px 0; border-bottom: 1px solid #cfcfc9; }
.service-steps li > b { color: var(--gold); font-family: Georgia, serif; font-size: 22px; font-weight: 400; }
.service-steps h3 { margin: 0 0 6px; color: var(--navy); font-size: 19px; }
.service-steps p { margin: 0; color: var(--muted); font-size: 13px; }

.enterprise { position: relative; min-height: 570px; display: flex; align-items: stretch; overflow: hidden; color: #fff; background: var(--navy); }
.enterprise > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.enterprise__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,15,23,.95) 0%, rgba(5,18,28,.83) 47%, rgba(5,18,28,.42) 100%); }
.enterprise__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; padding-block: 90px; }
.enterprise__copy h2 { max-width: 660px; margin: 0; color: #fff; font-size: clamp(40px, 4.1vw, 60px); line-height: 1.18; letter-spacing: -.045em; }
.enterprise__copy p { max-width: 610px; margin: 24px 0 32px; color: #c7d1d7; }
.enterprise__flow { justify-self: end; width: min(100%, 500px); display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin: 0; padding: 1px; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.16); list-style: none; backdrop-filter: blur(8px); }
.enterprise__flow li { min-height: 118px; display: grid; align-content: center; gap: 8px; padding: 24px 26px; background: rgba(6,21,31,.82); }
.enterprise__flow b { color: var(--gold-light); font-family: Georgia, serif; font-size: 17px; font-weight: 400; }
.enterprise__flow span { color: #fff; font-size: 14px; font-weight: 750; }

.news-section { background: #fff; }
.news-section .section-head { align-items: center; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.news-card { min-height: 310px; display: flex; flex-direction: column; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .25s, background .25s; }
.news-card:hover { color: #fff; background: var(--navy); }
.news-card__meta { display: flex; align-items: center; justify-content: space-between; color: #8b9499; font-size: 10px; }
.news-card__meta span { color: #9a713f; font-weight: 800; }
.news-card:hover .news-card__meta, .news-card:hover .news-card__meta span { color: #c7d0d5; }
.news-card h3 { margin: 36px 0 12px; color: var(--navy); font-size: 20px; line-height: 1.55; }
.news-card:hover h3 { color: #fff; }
.news-card p { margin: 0; color: var(--muted); font-size: 12px; }
.news-card:hover p { color: #b8c3c9; }
.news-card > b { margin-top: auto; padding-top: 20px; color: var(--gold); font-size: 12px; }
.empty-state { grid-column: 1 / -1; padding: 50px; color: var(--muted); border: 1px solid var(--line); background: #fff; text-align: center; }

.contact { padding: 112px 0; color: #fff; background: var(--navy); }
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; align-items: start; }
.contact-copy h2 { margin: 0; font-size: clamp(39px, 4vw, 58px); line-height: 1.2; letter-spacing: -.045em; }
.contact-copy > p { max-width: 480px; margin: 22px 0 40px; color: #b9c5cc; }
.contact-direct { display: grid; gap: 7px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.18); }
.contact-direct span { color: var(--gold-light); font-size: 11px; }
.contact-direct a { font-family: Georgia, serif; font-size: 32px; letter-spacing: .03em; }
.contact-direct p { max-width: 480px; margin: 9px 0 0; color: #aebac1; font-size: 12px; }
.lead-form { padding: 38px; color: var(--text); background: #fff; box-shadow: var(--shadow); }
.lead-form__head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 26px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.lead-form__head h3 { margin: 0; color: var(--navy); font-size: 25px; }
.lead-form__head span { color: #8a9398; font-size: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form label { display: grid; gap: 7px; margin-bottom: 15px; color: #3b4b55; font-size: 11px; font-weight: 700; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; border: 1px solid #d8d9d6; border-radius: 0; outline: 0; color: var(--text); background: #fbfbf9; font-size: 13px; transition: border .2s, box-shadow .2s; }
.lead-form input, .lead-form select { height: 44px; padding: 0 13px; }
.lead-form textarea { min-height: 78px; padding: 11px 13px; resize: vertical; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,154,91,.12); }
.privacy-check { display: flex !important; grid-template-columns: none !important; align-items: flex-start; gap: 8px !important; color: #778188 !important; font-weight: 400 !important; }
.privacy-check input { flex: 0 0 auto; width: 15px; height: 15px; margin-top: 3px; }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-status { min-height: 20px; margin: 10px 0 0; font-size: 12px; text-align: center; }
.form-status.is-success { color: #22784e; }
.form-status.is-error { color: #b33e36; }

.faq-section { background: var(--soft); }
.faq-layout { display: grid; grid-template-columns: 330px 1fr; gap: 100px; }
.faq-title h2 { margin: 0; color: var(--navy); font-size: 38px; line-height: 1.3; }
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 24px 0; border: 0; color: var(--navy); background: transparent; font-size: 16px; font-weight: 750; text-align: left; cursor: pointer; }
.faq__q span { color: var(--gold); font-size: 24px; font-weight: 300; transition: transform .25s; }
.faq__item.is-open .faq__q span { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__a p { margin: -4px 40px 23px 0; color: var(--muted); font-size: 13px; }

.site-footer { padding: 76px 0 26px; color: #aeb9c0; background: #07151f; }
.footer-main { display: grid; grid-template-columns: 1.1fr .9fr .8fr; gap: 90px; padding-bottom: 55px; }
.brand--light .brand__name { color: #fff; }
.footer-brand p { max-width: 450px; margin: 22px 0 0; color: #8fa0aa; font-size: 12px; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 45px; }
.footer-nav > div { display: grid; align-content: start; gap: 10px; }
.footer-nav span, .footer-contact > span { margin-bottom: 8px; color: var(--gold-light); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.footer-nav a { color: #b7c2c8; font-size: 12px; }
.footer-nav a:hover { color: #fff; }
.footer-contact { display: grid; align-content: start; }
.footer-contact > a { color: #fff; font-family: Georgia, serif; font-size: 26px; }
.footer-contact p { margin: 14px 0 0; color: #899aa4; font-size: 11px; }
.footer-note { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: #748791; font-size: 9px; }
.footer-record { min-width: 150px; text-align: right; }
.footer-record a { color: #9cabb3; transition: color .2s; }
.footer-record a:hover { color: #fff; }
.floating-tools { position: fixed; z-index: 90; top: 50%; right: 18px; display: grid; border-top: 1px solid #d5d8d6; border-left: 1px solid #d5d8d6; background: #fff; box-shadow: 0 14px 36px rgba(7,21,31,.14); opacity: 0; visibility: hidden; pointer-events: none; transform: translate3d(20px, -50%, 0) scale(.97); transform-origin: right center; transition: opacity .32s ease, transform .46s cubic-bezier(.22, 1, .36, 1), visibility 0s linear .46s; will-change: opacity, transform; }
.floating-tools.is-visible { opacity: 1; visibility: visible; pointer-events: auto; transform: translate3d(0, -50%, 0) scale(1); transition-delay: 0s; }
.floating-tools > a, .floating-tools > button { position: relative; width: 64px; height: 68px; display: grid; place-items: center; align-content: center; gap: 5px; padding: 0; border: 0; border-right: 1px solid #d5d8d6; border-bottom: 1px solid #d5d8d6; color: var(--navy); background: #fff; cursor: pointer; opacity: 0; transform: translateX(8px); transition: color .2s, background .2s, opacity .28s ease, transform .42s cubic-bezier(.22, 1, .36, 1); }
.floating-tools.is-visible > a, .floating-tools.is-visible > button { opacity: 1; transform: none; }
.floating-tools.is-visible > :nth-child(1) { transition-delay: 0s, 0s, .04s, .04s; }
.floating-tools.is-visible > :nth-child(2) { transition-delay: 0s, 0s, .08s, .08s; }
.floating-tools.is-visible > :nth-child(3) { transition-delay: 0s, 0s, .12s, .12s; }
.tool-icon { width: 21px; height: 21px; display: grid; place-items: center; color: #a8783e; font-size: 20px; line-height: 1; }
.tool-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.tool-label { font-size: 12px; font-weight: 800; }
.floating-tools > a:hover, .floating-tools > button:hover { color: #fff; background: var(--navy); }
.floating-tools > a:hover .tool-icon, .floating-tools > button:hover .tool-icon { color: var(--gold-light); }
.tool-phone-panel { position: absolute; top: 0; right: calc(100% + 10px); width: 245px; min-height: 86px; display: grid; align-content: center; padding: 16px 20px; color: #fff; background: var(--navy); box-shadow: 0 15px 40px rgba(7,21,31,.2); text-align: left; opacity: 0; visibility: hidden; transform: translateX(8px); transition: opacity .2s, visibility .2s, transform .2s; pointer-events: none; }
.tool-phone-panel::after { content: ""; position: absolute; top: 26px; right: -7px; border-width: 7px 0 7px 7px; border-style: solid; border-color: transparent transparent transparent var(--navy); }
.tool-phone-panel small { color: #aebcc5; font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.tool-phone-panel strong { margin-top: 5px; color: #fff; font-family: Georgia, serif; font-size: 22px; letter-spacing: .02em; white-space: nowrap; }
.tool-phone-panel i { margin-top: 5px; color: #83959f; font-size: 9px; font-style: normal; }
.floating-tools__phone:hover .tool-phone-panel, .floating-tools__phone:focus-visible .tool-phone-panel, .floating-tools__phone.is-open .tool-phone-panel { opacity: 1; visibility: visible; transform: none; }
.floating-tools > button[data-back-to-top] { display: grid; }
.mobile-dock { display: none; }

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

@media (max-width: 1120px) {
  .site-header__inner { gap: 15px; }
  .brand__name { font-size: 15px; }
  .site-nav { gap: 9px; }
  .header-phone { min-width: 150px; padding-right: 9px; }
  .site-nav { justify-content: flex-end; }
  .story { grid-template-columns: 1fr 1fr; }
  .story__content { padding-inline: 50px; }
  .service-layout, .contact-layout { gap: 65px; }
  .footer-main { gap: 50px; }
  .business .section-head { grid-template-columns: 1fr; gap: 20px; }
  #business-title { font-size: clamp(34px, 4vw, 42px); }
}

@media (max-width: 900px) {
  .container { width: min(calc(100% - 40px), var(--container)); }
  .utility-bar { display: none; }
  .site-header, .site-header.is-scrolled { height: 72px; }
  .site-header__inner { justify-content: space-between; }
  .header-phone { display: none; }
  .nav-toggle { display: block; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  body.nav-open::before { content: ""; position: fixed; z-index: 95; inset: 72px 0 0; background: rgba(5,17,25,.48); backdrop-filter: blur(3px); }
  .site-nav { position: absolute; z-index: 120; top: 72px; right: 0; width: 100vw; height: calc(100dvh - 72px); display: block; padding: 18px 20px 100px; overflow-y: auto; background: #fff; box-shadow: 0 28px 60px rgba(7,21,31,.2); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .25s, visibility .25s, transform .25s; }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-nav > a, .site-header.is-scrolled .site-nav > a { display: flex; align-items: center; justify-content: space-between; min-height: 56px; padding: 14px 6px; border-bottom: 1px solid var(--line); color: var(--navy); font-size: 15px; font-weight: 750; }
  .site-nav { counter-reset: nav-item; }
  .site-nav > a { counter-increment: nav-item; }
  .site-nav > a::before { content: "0" counter(nav-item); color: #b58a55; font-family: Georgia, serif; font-size: 11px; }
  .site-nav > a.active { color: #9a672f; }
  .site-nav a::after { display: none; }
  .site-nav__mobile-contact { display: grid; margin-top: 22px; padding: 20px; color: #fff; background: var(--navy); }
  .site-nav__mobile-contact > span { color: var(--gold-light); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
  .site-nav__mobile-contact > a { margin-top: 7px; padding: 0; border: 0; color: #fff; font-family: Georgia, serif; font-size: 25px; }
  .hero { height: 630px; min-height: 0; }
  .hero-slide__copy { width: 72%; }
  .hero-slide h1, .hero-slide h2 { font-size: 50px; }
  .business-jump { overflow-x: auto; }
  .business-jump__inner { width: 900px; }
  .business-grid { grid-template-columns: 1fr 1fr; }
  .business-card { min-height: 370px; padding: 32px; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .story { grid-template-columns: 1fr; }
  .story__media { min-height: 500px; }
  .story__content { max-width: none; padding: 80px 40px; }
  .service-layout { grid-template-columns: 1fr; }
  .service-copy { position: static; }
  .enterprise__inner { grid-template-columns: 1fr; }
  .enterprise__flow { justify-self: start; }
  .contact-layout { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-note { align-items: flex-start; flex-direction: column; gap: 9px; }
  .footer-record { min-width: 0; text-align: left; }
  .floating-tools { top: auto; right: 12px; bottom: 72px; border: 0; box-shadow: none; background: transparent; transform: translate3d(0, 14px, 0) scale(.94); transform-origin: right bottom; }
  .floating-tools.is-visible { transform: translate3d(0, 0, 0) scale(1); }
  .floating-tools > a { display: none; }
  .floating-tools > button[data-floating-phone] { display: none; }
  .floating-tools > button { width: 44px; height: 44px; border: 1px solid #d5d8d6; box-shadow: 0 8px 24px rgba(7,21,31,.13); }
}

@media (max-width: 620px) {
  html { scroll-padding-top: 74px; }
  body { padding-bottom: 58px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .brand { gap: 8px; }
  .brand__mark { width: 37px; height: 43px; }
  .brand__mark img { height: 43px; }
  .brand__name { font-size: 15px; letter-spacing: 0; }
  .hero { height: 570px; }
  .hero-slide__image { object-position: 60% center; }
  .hero-slide__overlay { background: linear-gradient(90deg, rgba(4,16,25,.92), rgba(6,20,30,.56)), linear-gradient(0deg, rgba(3,14,22,.68), transparent 50%); }
  .hero-slide__inner { align-items: flex-end; padding-bottom: 112px; }
  .hero-slide__copy { width: 100%; padding: 0; }
  .hero-kicker { font-size: 10px; letter-spacing: .07em; }
  .hero-kicker::before { width: 24px; }
  .hero-slide h1, .hero-slide h2 { margin: 17px 0 13px; font-size: 38px; line-height: 1.2; }
  .hero-slide__copy > p { display: -webkit-box; overflow: hidden; font-size: 13px; line-height: 1.75; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
  .hero-actions { margin-top: 22px; }
  .hero-actions .btn { min-height: 43px; padding-inline: 16px; font-size: 11px; }
  .hero-controls { bottom: 20px; justify-content: flex-start; }
  .hero-count { margin-right: 5px; }
  .hero-dots { flex: 1; margin-right: 0; }
  .hero-dots button { width: 12px; }
  .hero-dots button.is-active { width: 27px; }
  .hero-control { width: 35px; height: 35px; }
  .business-jump { padding: 14px 0; overflow: visible; background: var(--soft); }
  .business-jump__inner { min-height: 0; width: min(calc(100% - 32px), var(--container)); grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .business-jump__label { grid-column: 1 / -1; min-height: 30px; padding: 0 4px; }
  .business-jump a { min-height: 56px; padding: 8px 12px; border: 1px solid var(--line); background: #fff; grid-template-columns: 20px 1fr; gap: 8px; }
  .business-jump a span { font-size: 12px; }
  .business-jump a i { display: none; }
  .section { padding: 78px 0; }
  .section-head { margin-bottom: 34px; }
  .section-head h2, .story__content h2, .service-copy h2 { font-size: 34px; }
  #business-title { white-space: normal; }
  .business-grid { grid-template-columns: 1fr; }
  .business-card { min-height: auto; padding: 30px 25px; }
  .business-card h3 { margin-top: 30px; font-size: 24px; }
  .business-card > p { margin-bottom: 23px; }
  .business-card__scope ul { grid-template-columns: 1fr; }
  .business-boundary { grid-template-columns: 1fr; gap: 9px; }
  .story { min-height: 0; }
  .story__media { min-height: 330px; }
  .story__content { padding: 70px 22px; }
  .entity-facts > div { grid-template-columns: 75px 1fr; }
  .story__actions { align-items: flex-start; flex-direction: column; }
  .campus-grid { height: auto; grid-template-columns: 1fr; grid-template-rows: none; }
  .campus-photo, .campus-photo--main { grid-row: auto; height: 245px; }
  .campus-photo--main { height: 320px; }
  .asset-caption { text-align: left; }
  .service-layout { gap: 50px; }
  .service-steps li { grid-template-columns: 50px 1fr; }
  .enterprise { min-height: 650px; }
  .enterprise__inner { gap: 50px; padding-block: 70px; }
  .enterprise__copy h2 { font-size: 39px; }
  .enterprise__flow { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card { min-height: 270px; }
  .contact { padding: 78px 0; }
  .contact-layout { gap: 50px; }
  .contact-copy h2 { font-size: 40px; }
  .lead-form { padding: 27px 22px; }
  .lead-form__head { align-items: flex-start; flex-direction: column; gap: 6px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .faq__q { font-size: 14px; }
  .site-footer { padding-top: 60px; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { grid-column: auto; }
  .footer-nav { gap: 30px; }
  .mobile-dock { position: fixed; z-index: 150; right: 0; bottom: 0; left: 0; height: 58px; display: grid; grid-template-columns: 1fr 1fr 1.25fr; padding-bottom: env(safe-area-inset-bottom); border-top: 1px solid var(--line); background: #fff; box-shadow: 0 -10px 30px rgba(7,21,31,.1); }
  .mobile-dock a { display: grid; place-items: center; border-right: 1px solid var(--line); color: var(--navy); font-size: 11px; font-weight: 750; }
  .mobile-dock__primary { color: #101820 !important; background: var(--gold-light); }
}

@media (max-width: 360px) {
  .brand__mark { width: 33px; height: 39px; }
  .brand__mark img { height: 39px; }
  .brand__name { font-size: 13px; }
  .site-header__inner { gap: 8px; }
}

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