:root {
  --navy-950: #061a2d;
  --navy-900: #08233d;
  --navy-800: #123451;
  --navy-600: #3c5a70;
  --cream-50: #fffdf8;
  --cream-100: #faf6ed;
  --cream-200: #f2eadb;
  --gold-500: #f2bb4b;
  --gold-400: #f7ca6e;
  --gold-200: #fbe6b2;
  --white: #ffffff;
  --ink: #0c253d;
  --muted: #617486;
  --line: rgba(8, 35, 61, .12);
  --shadow: 0 28px 70px rgba(6, 26, 45, .14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --container: 1180px;
  --font-display: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-50);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; }

.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; padding: 10px 16px; background: var(--white); border-radius: 8px; }
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 104px 0; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; transition: transform .25s ease; }
.site-header.scrolled { background: transparent; box-shadow: none; }
.nav-shell { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 12px; padding: 8px 10px 8px 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; background: rgba(6,26,45,.88); box-shadow: 0 14px 38px rgba(0,0,0,.16); backdrop-filter: blur(18px); transition: background .25s ease, border-color .25s ease, box-shadow .25s ease; }
.site-header.scrolled .nav-shell { border-color: var(--line); background: rgba(255,253,248,.97); box-shadow: 0 12px 32px rgba(6,26,45,.1); }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--white); min-width: max-content; }
.site-header.scrolled .brand { color: var(--navy-900); }
.brand-mark { width: 42px; height: 42px; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; overflow: hidden; border: 0; border-radius: 10px; background: transparent; box-shadow: none; }
.brand-mark img { width: auto; height: 100%; max-width: 100%; max-height: 100%; display: block; object-fit: contain; }
.brand-copy { display: grid; line-height: 1.04; }
.brand-copy strong { max-width: 220px; font: 800 12px/1.15 var(--font-display); letter-spacing: .025em; text-transform: uppercase; white-space: nowrap; }
.brand-copy small { margin-top: 4px; color: var(--gold-400); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 18px; list-style: none; margin: 0; padding: 0; color: rgba(255,255,255,.86); font-size: 12px; font-weight: 700; }
.site-header.scrolled .nav-links { color: var(--navy-800); }
.nav-links a { position: relative; padding: 12px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 5px; width: 100%; height: 2px; background: var(--gold-500); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; padding: 12px 16px; border: 1px solid var(--gold-500); border-radius: 9px; color: var(--navy-950); background: var(--gold-500); font-weight: 800; font-size: 13px; }
.site-header.scrolled .nav-cta { color: var(--navy-900); border-color: var(--line); background: var(--gold-500); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.3); border-radius: 14px; background: rgba(6,26,45,.42); color: var(--white); cursor: pointer; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 20px; height: 2px; margin: 4px auto; border-radius: 99px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.site-header.scrolled .menu-toggle { color: var(--navy-900); border-color: var(--line); background: var(--white); }
.mobile-nav { display: none; }

.hero-sequence { --hero-progress: 0; --hero-scene-scale: 1.035; --hero-scene-saturation: .88; --hero-scene-brightness: 1; --hero-shade-opacity: 1; --hero-copy-opacity: 1; --hero-copy-lift: 0px; --depth-x: 0px; --depth-y: 0px; position: relative; height: 145svh; background: var(--navy-950); }
.hero { position: sticky; top: 0; height: 100svh; min-height: 720px; display: grid; align-items: center; overflow: hidden; color: var(--white); background: var(--navy-950); isolation: isolate; }
.hero-scene { position: absolute; inset: -5%; z-index: -3; overflow: hidden; transform: perspective(1500px) translate3d(var(--scene-x, 0px), var(--scene-y, 0px), 0) rotateX(var(--scene-rx, 0deg)) rotateY(var(--scene-ry, 0deg)) scale(var(--hero-scene-scale)); transform-origin: 54% 42%; will-change: transform, filter; filter: saturate(var(--hero-scene-saturation)) brightness(var(--hero-scene-brightness)); transition: transform .12s linear; }
.hero-scene-base, .hero-depth-layer img { width: 100%; height: 100%; object-fit: cover; object-position: center 17%; }
.hero-depth-layer { position: absolute; inset: 0; overflow: hidden; opacity: .42; clip-path: polygon(0 56%, 100% 50%, 100% 100%, 0 100%); transform: translate3d(var(--depth-x), var(--depth-y), 34px) scale(1.018); filter: contrast(1.04) saturate(1.08); pointer-events: none; }
.hero-atmosphere { position: absolute; inset: 0; background: radial-gradient(circle at 74% 27%, rgba(242,187,75,.16), transparent 28%), linear-gradient(180deg, rgba(6,26,45,.12), transparent 42%, rgba(6,26,45,.2)); mix-blend-mode: screen; pointer-events: none; }
.hero-shade { position: absolute; inset: 0; z-index: -2; opacity: var(--hero-shade-opacity); background: linear-gradient(90deg, rgba(3,17,31,.92) 0%, rgba(3,17,31,.72) 42%, rgba(3,17,31,.18) 73%, rgba(3,17,31,.36) 100%), linear-gradient(0deg, rgba(3,17,31,.78), transparent 58%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; z-index: -1; height: 220px; background: linear-gradient(transparent, rgba(3,17,31,.9)); pointer-events: none; }
.hero-layout { position: relative; z-index: 2; display: flex; align-items: center; min-height: 100%; padding-top: 126px; padding-bottom: 116px; opacity: var(--hero-copy-opacity); transform: translateY(var(--hero-copy-lift)); will-change: opacity, transform; }
.hero-copy { width: min(720px, 58vw); }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--navy-600); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { width: 30px; height: 2px; background: var(--gold-500); }
.eyebrow-light { color: var(--gold-400); }
.hero h1, .page-hero h1, .section h2 { font-family: var(--font-display); letter-spacing: -.045em; }
.hero h1 { max-width: 720px; margin: 0; font-size: clamp(52px, 6.2vw, 88px); line-height: .98; font-weight: 800; text-wrap: balance; }
.hero h1 em, .section h2 em { color: var(--gold-500); font-style: normal; }
.hero-lede { max-width: 680px; margin: 28px 0 0; color: rgba(255,255,255,.79); font-size: clamp(17px, 1.6vw, 20px); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 23px; border: 1px solid transparent; border-radius: 9px; font-weight: 800; font-size: 14px; transition: transform .22s ease, box-shadow .22s ease, background .22s ease; }
.button:hover { transform: translateY(-3px); }
.button-gold { color: var(--navy-950); background: var(--gold-500); box-shadow: 0 12px 30px rgba(242,187,75,.25); }
.button-gold:hover { background: var(--gold-400); box-shadow: 0 18px 38px rgba(242,187,75,.32); }
.button-glass { color: var(--white); border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.button-glass:hover { background: rgba(255,255,255,.15); }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 680px; gap: 22px; margin-top: 38px; }
.hero-proof div { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 11px; border-top: 1px solid rgba(255,255,255,.22); padding-top: 16px; }
.hero-proof strong { color: var(--gold-500); font: 800 26px/1 var(--font-display); }
.hero-proof span { color: rgba(255,255,255,.69); font-size: 11px; line-height: 1.35; }

.hero-location { position: absolute; z-index: 3; right: max(30px, calc((100vw - var(--container)) / 2)); bottom: 48px; display: grid; grid-template-columns: auto auto auto; align-items: center; gap: 10px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.22); border-radius: 7px; color: rgba(255,255,255,.62); background: rgba(3,17,31,.45); backdrop-filter: blur(12px); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.hero-location strong { color: var(--gold-400); font: 800 10px/1 var(--font-display); letter-spacing: .12em; }

.route-reveal { position: relative; z-index: 6; margin-top: -18svh; padding-top: clamp(82px, 8vw, 122px); overflow: hidden; border-radius: 30px 30px 0 0; background: var(--cream-50); box-shadow: 0 -34px 90px rgba(3,17,31,.28); scroll-margin-top: 72px; }
.route-reveal-grid { display: grid; grid-template-columns: minmax(0, .86fr) minmax(390px, .74fr); gap: clamp(58px, 8vw, 104px); align-items: center; padding-bottom: clamp(82px, 8vw, 118px); }
.route-reveal-copy h2 { max-width: 640px; margin: 0; color: var(--navy-900); font: 800 clamp(43px, 4.8vw, 66px)/1.05 var(--font-display); letter-spacing: -.05em; }
.route-reveal-copy h2 em { color: var(--gold-500); font-style: normal; }
.route-reveal-copy > p:last-of-type { max-width: 620px; margin: 24px 0 0; color: var(--muted); font-size: 18px; }
.route-reveal-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 40px 0 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.route-reveal-facts div { padding: 18px 14px 18px 0; }
.route-reveal-facts div + div { padding-left: 17px; border-left: 1px solid var(--line); }
.route-reveal-facts dt { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.route-reveal-facts dd { margin: 5px 0 0; color: var(--navy-900); font: 800 13px/1.35 var(--font-display); }

.route-console { position: relative; min-height: 520px; padding: 28px; border: 1px solid rgba(242,187,75,.85); border-top: 6px solid var(--gold-500); border-radius: 16px; color: var(--navy-900); background: rgba(255,253,248,.98); box-shadow: 0 28px 70px rgba(6,26,45,.17); }
.route-console::before { content: none; }
.console-topline { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 15px; border-bottom: 1px solid rgba(8,35,61,.12); color: var(--navy-600); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.console-intro { padding: 24px 0 18px; }
.console-kicker { margin: 0 0 8px; color: #a66f06; font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.console-intro h2 { margin: 0; color: var(--navy-900); font: 800 28px/1.16 var(--font-display); letter-spacing: -.035em; }
.console-intro > p:last-child { margin: 12px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.console-step-list { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.console-step-list li { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 13px; min-height: 54px; padding: 8px 10px; border: 1px solid rgba(8,35,61,.1); border-left: 3px solid var(--gold-500); border-radius: 8px; background: var(--white); }
.console-step-list li > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 7px; color: var(--navy-950); background: var(--gold-500); font: 800 10px/1 var(--font-display); }
.console-step-list strong { display: block; color: var(--navy-900); font: 800 13px/1.25 var(--font-display); }
.console-step-list small { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; line-height: 1.2; }
.console-link { display: flex; justify-content: space-between; gap: 16px; margin-top: 15px; padding-top: 14px; border-top: 1px solid rgba(8,35,61,.12); color: var(--navy-900); font-size: 12px; font-weight: 800; }
.scroll-cue { position: absolute; z-index: 3; left: 50%; bottom: 24px; display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.64); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue span { width: 24px; height: 36px; border: 1px solid rgba(255,255,255,.4); border-radius: 99px; }
.scroll-cue span::after { content: ""; display: block; width: 3px; height: 7px; margin: 7px auto; border-radius: 99px; background: var(--gold-500); animation: scrollDot 1.7s ease infinite; }

.trust-ribbon { position: relative; z-index: 4; color: var(--navy-900); background: var(--gold-500); }
.trust-ribbon-grid { min-height: 92px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.trust-ribbon p { margin: 0; padding: 0 20px; border-right: 1px solid rgba(8,35,61,.17); font-size: 13px; font-weight: 700; text-align: center; }
.trust-ribbon p:last-child { border-right: 0; }
.trust-ribbon span { display: inline-block; margin-right: 8px; color: rgba(8,35,61,.55); font: 800 10px/1 var(--font-display); }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .58fr); gap: 80px; align-items: end; }
.section h2 { max-width: 800px; margin: 0; color: var(--navy-900); font-size: clamp(36px, 4vw, 56px); line-height: 1.08; }
.split-heading > p { margin: 0 0 8px; color: var(--muted); font-size: 18px; }

.section-tight-top { padding-top: 30px; }
.section-heading { max-width: 860px; margin-bottom: 48px; }
.section-heading > p:last-child { max-width: 720px; margin: 22px 0 0; color: var(--muted); font-size: 18px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 18px; }
.feature-card { position: relative; min-height: 300px; height: 100%; padding: 28px 25px 26px; overflow: hidden; border: 1px solid var(--line); border-top: 4px solid var(--gold-500); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 12px 34px rgba(6,26,45,.06); }
.feature-card::after { content: none; }
.card-index { display: block; color: rgba(8,35,61,.36); font: 800 10px/1 var(--font-display); letter-spacing: .12em; }
.icon-tile { width: 52px; height: 52px; display: grid; place-items: center; margin: 34px 0 24px; border: 1px solid var(--gold-200); border-radius: 9px; color: var(--navy-900); background: var(--gold-500); box-shadow: 5px 5px 0 var(--cream-200); font: 800 16px/1 var(--font-display); }
.feature-card h3 { position: relative; z-index: 2; margin: 0; color: var(--navy-900); font: 800 20px/1.25 var(--font-display); letter-spacing: -.025em; }
.feature-card p { position: relative; z-index: 2; margin: 13px 0 0; color: var(--muted); font-size: 14px; line-height: 1.62; }

.pathway-section { color: var(--white); background: var(--navy-950); }
.pathway-shell { display: grid; grid-template-columns: .62fr 1fr; gap: 70px; align-items: center; }
.pathway-intro h2 { color: var(--white); font-size: clamp(40px, 4.5vw, 62px); }
.pathway-intro > p:not(.eyebrow) { margin: 24px 0 0; color: rgba(255,255,255,.64); }
.tab-list { display: inline-grid; grid-template-columns: 1fr 1fr; gap: 5px; margin-top: 34px; padding: 5px; border: 1px solid rgba(255,255,255,.13); border-radius: 10px; background: rgba(255,255,255,.06); }
.tab-button { min-width: 132px; min-height: 45px; border: 0; border-radius: 6px; color: rgba(255,255,255,.6); background: transparent; cursor: pointer; font-weight: 800; }
.tab-button.active { color: var(--navy-950); background: var(--gold-500); }
.pathway-panels { perspective: 1200px; }
.pathway-panel { animation: panelIn .42s ease both; }
.institution-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 1fr; gap: 12px; }
.institution-grid a { min-height: 126px; height: 100%; display: grid; grid-template-columns: 64px 1fr; align-items: center; gap: 17px; padding: 20px; border: 1px solid rgba(255,255,255,.15); border-radius: 12px; background: rgba(255,255,255,.07); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.institution-grid a:hover { transform: translateZ(24px) translateX(4px); border-color: rgba(242,187,75,.55); background: rgba(255,255,255,.12); }
.institution-grid strong { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 9px; color: var(--navy-950); background: var(--gold-500); font: 800 13px/1 var(--font-display); }
.institution-grid span { color: rgba(255,255,255,.73); font-size: 14px; line-height: 1.45; }
.institution-grid-five a:last-child { grid-column: 1 / -1; }
@keyframes panelIn { from { opacity: 0; transform: translateY(10px) rotateX(-3deg); } to { opacity: 1; transform: none; } }

.journey-section { background: var(--cream-100); }
.journey-track { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); margin: 64px 0 0; padding: 0; list-style: none; }
.journey-track::before { content: ""; position: absolute; top: 31px; left: 9%; right: 9%; height: 2px; background: linear-gradient(90deg, var(--gold-500), var(--navy-900), var(--gold-500)); opacity: .34; }
.journey-track li { position: relative; padding: 0 20px; text-align: center; }
.journey-track span { position: relative; z-index: 2; width: 62px; height: 62px; display: grid; place-items: center; margin: 0 auto 22px; border: 8px solid var(--cream-100); border-radius: 18px; color: var(--navy-900); background: var(--gold-500); box-shadow: 0 8px 28px rgba(6,26,45,.12); font: 800 13px/1 var(--font-display); }
.journey-track h3 { margin: 0; color: var(--navy-900); font: 800 18px/1.3 var(--font-display); }
.journey-track p { margin: 9px 0 0; color: var(--muted); font-size: 13px; }
.center-action { display: flex; justify-content: center; margin-top: 52px; }
.button-navy { color: var(--white); background: var(--navy-900); box-shadow: 0 16px 34px rgba(8,35,61,.18); }
.button-navy:hover { background: var(--navy-800); }

.mentor-band { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(118deg, var(--navy-950), var(--navy-900)); }
.mentor-band::before { content: ""; position: absolute; inset: 0; opacity: .08; background-image: radial-gradient(rgba(255,255,255,.9) 1px, transparent 1px); background-size: 24px 24px; mask-image: linear-gradient(90deg, black, transparent 70%); }
.mentor-layout { min-height: 700px; display: grid; grid-template-columns: .72fr 1fr; gap: 70px; align-items: center; }
.mentor-visual { position: relative; align-self: end; height: 650px; }
.mentor-visual img { position: absolute; z-index: 2; left: 50%; bottom: 0; width: min(590px, 117%); max-width: none; max-height: 640px; object-fit: contain; object-position: bottom; transform: translateX(-50%); filter: drop-shadow(0 28px 34px rgba(0,0,0,.25)); }
.portrait-halo { position: absolute; left: 50%; bottom: 36px; width: 82%; height: 78%; border-top: 4px solid var(--gold-500); border-left: 1px solid rgba(242,187,75,.34); border-radius: 0; background: linear-gradient(180deg, rgba(242,187,75,.08), transparent 72%); transform: translateX(-50%); box-shadow: none; }
.mentor-copy { position: relative; z-index: 2; padding: 88px 0; }
.mentor-copy h2 { max-width: 760px; margin: 0; color: var(--white); font: 800 clamp(39px, 4.5vw, 62px)/1.08 var(--font-display); letter-spacing: -.045em; }
.mentor-copy h2 em { color: var(--gold-500); font-style: normal; }
.mentor-copy > p:not(.eyebrow):not(.mentor-name) { max-width: 680px; color: rgba(255,255,255,.66); font-size: 17px; }
.mentor-name { display: grid; gap: 4px; margin: 26px 0 20px; }
.mentor-name strong { color: var(--white); font: 800 20px/1.2 var(--font-display); }
.mentor-name span { color: var(--gold-400); font-size: 13px; }
.credential-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 28px 0 31px; }
.credential-row span { padding: 14px; border: 1px solid rgba(255,255,255,.11); border-top: 3px solid var(--gold-500); border-radius: 8px; color: var(--gold-400); font: 800 12px/1.2 var(--font-display); background: rgba(255,255,255,.045); }
.credential-row small { display: block; margin-top: 7px; color: rgba(255,255,255,.62); font: 500 11px/1.35 var(--font-body); }

.funding-layout { display: grid; grid-template-columns: .72fr 1fr; gap: 80px; align-items: center; }
.funding-image { position: relative; height: 690px; }
.funding-image::before { content: ""; position: absolute; inset: 24px -16px -16px 24px; z-index: -1; border-radius: 14px; background: var(--gold-500); }
.funding-image img { width: 100%; height: 100%; border-radius: 14px; object-fit: cover; box-shadow: var(--shadow); }
.image-note { position: absolute; left: 18px; right: 18px; bottom: 18px; display: grid; gap: 4px; padding: 17px 19px; border: 1px solid rgba(255,255,255,.23); border-left: 4px solid var(--gold-500); border-radius: 9px; color: var(--white); background: rgba(6,26,45,.9); }
.image-note strong { font: 800 15px/1.2 var(--font-display); }
.image-note span { color: rgba(255,255,255,.67); font-size: 12px; }
.funding-copy h2 { font-size: clamp(40px, 4.6vw, 64px); }
.fact-stack { display: grid; gap: 13px; margin-top: 34px; }
.fact-stack article { display: grid; grid-template-columns: 47px 1fr; gap: 18px; padding: 20px; border: 1px solid var(--line); border-top: 3px solid var(--gold-500); border-radius: 10px; background: var(--white); transition: transform .2s ease, border-color .2s ease; }
.fact-stack article:hover { transform: translateX(6px); border-color: rgba(242,187,75,.75); }
.fact-stack article > span { width: 47px; height: 47px; display: grid; place-items: center; border-radius: 8px; color: var(--navy-950); background: var(--gold-500); font: 800 11px/1 var(--font-display); }
.fact-stack h3 { margin: 1px 0 7px; color: var(--navy-900); font: 800 18px/1.25 var(--font-display); }
.fact-stack p { margin: 0; color: var(--muted); font-size: 14px; }
.fact-stack a { display: inline-flex; margin-top: 9px; color: var(--navy-900); font-size: 12px; font-weight: 800; text-decoration: underline; text-decoration-color: var(--gold-500); text-underline-offset: 3px; }

.resources-preview { background: var(--cream-100); }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 18px; margin-top: 46px; }
.article-card { min-height: 310px; height: 100%; display: flex; flex-direction: column; padding: 29px; border: 1px solid var(--line); border-top: 4px solid var(--gold-500); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 12px 40px rgba(6,26,45,.06); transition: transform .25s ease, box-shadow .25s ease; }
.article-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.article-card > span { color: var(--navy-600); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-card h3 { margin: 24px 0 15px; color: var(--navy-900); font: 800 23px/1.25 var(--font-display); letter-spacing: -.03em; }
.article-card p { margin: 0; color: var(--muted); font-size: 14px; }
.article-card b { margin-top: auto; padding-top: 25px; color: var(--navy-900); font-size: 13px; }

.closing-cta { padding: 100px 0; color: var(--white); background: linear-gradient(110deg, var(--navy-950), var(--navy-800)); }
.closing-cta-layout { display: grid; grid-template-columns: 1.25fr .5fr; gap: 70px; align-items: end; }
.closing-cta h2 { max-width: 780px; margin: 0; font: 800 clamp(36px, 4vw, 56px)/1.08 var(--font-display); letter-spacing: -.045em; }
.closing-cta h2 em { color: var(--gold-500); font-style: normal; }
.closing-cta p:not(.eyebrow) { max-width: 700px; color: rgba(255,255,255,.63); font-size: 17px; }
.closing-actions { display: grid; justify-items: start; gap: 20px; }
.closing-actions > a:last-child { color: var(--gold-400); font-size: 13px; font-weight: 800; }

/* Inner pages */
.inner-page { padding-top: 86px; }
.inner-page .site-header { background: transparent; box-shadow: none; }
.inner-page .nav-shell { border-color: var(--line); background: rgba(255,253,248,.97); box-shadow: 0 12px 32px rgba(6,26,45,.09); }
.inner-page .brand, .inner-page .nav-links, .inner-page .nav-cta { color: var(--navy-900); }
.inner-page .nav-cta { border-color: var(--line); background: var(--gold-500); }
.inner-page .menu-toggle { color: var(--navy-900); border-color: var(--line); background: var(--white); }
.scroll-progress { position: absolute; left: 0; bottom: 0; width: 100%; height: 3px; background: var(--gold-500); transform: scaleX(0); transform-origin: left; }
.page-hero { position: relative; overflow: hidden; padding: 115px 0 90px; background: var(--cream-100); }
.page-hero::before { content: none; }
.page-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .7fr; gap: 70px; align-items: end; }
.mentor-page-hero-grid { grid-template-columns: 1fr; }
.mentor-page-hero-grid .page-hero-copy { max-width: 900px; }
.page-hero h1 { max-width: 830px; margin: 0; color: var(--navy-900); font-size: clamp(44px, 5.4vw, 68px); line-height: 1.02; font-weight: 800; }
.page-hero h1 em { color: var(--gold-500); font-style: normal; }
.page-hero-copy > p:last-child { max-width: 760px; margin: 24px 0 0; color: var(--muted); font-size: 19px; }
.page-hero-card { position: relative; min-height: 280px; padding: 28px; border: 1px solid var(--line); border-top: 5px solid var(--gold-500); border-radius: 14px; background: var(--white); box-shadow: var(--shadow); transform: none; }
.page-hero-card::before { content: none; }
.page-hero-card > * { position: relative; }
.page-hero-card span { color: var(--navy-600); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.page-hero-card strong { display: block; margin-top: 46px; color: var(--navy-900); font: 800 30px/1.18 var(--font-display); letter-spacing: -.035em; }
.page-hero-card p { color: var(--muted); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 18px; }
.service-card { position: relative; min-height: 340px; height: 100%; display: flex; flex-direction: column; padding: 29px; overflow: hidden; border: 1px solid var(--line); border-top: 4px solid var(--gold-500); border-radius: 14px; background: var(--white); box-shadow: 0 12px 36px rgba(6,26,45,.06); }
.service-card::before { content: attr(data-number); position: absolute; right: 18px; top: 6px; color: rgba(8,35,61,.045); font: 800 92px/1 var(--font-display); }
.service-card .icon-tile { margin: 4px 0 48px; }
.service-card h2, .service-card h3 { position: relative; margin: 0; color: var(--navy-900); font: 800 23px/1.2 var(--font-display); letter-spacing: -.03em; }
.service-card p { position: relative; margin: 14px 0 0; color: var(--muted); font-size: 14px; }
.service-card a { position: relative; margin-top: auto; padding-top: 24px; color: var(--navy-900); font-size: 13px; font-weight: 800; }
.service-card.featured { color: var(--white); background: var(--navy-900); }
.service-card.featured h2, .service-card.featured h3, .service-card.featured a { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,.66); }
.service-card.featured::before { color: rgba(255,255,255,.045); }
.support-scope { display: grid; grid-template-columns: .82fr 1fr; gap: 80px; align-items: start; }
.sticky-copy { position: sticky; top: 130px; }
.sticky-copy p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.scope-list { display: grid; gap: 12px; }
.scope-list article { display: grid; grid-template-columns: 60px 1fr; gap: 18px; padding: 22px; border: 1px solid var(--line); border-top: 3px solid var(--gold-500); border-radius: 12px; background: var(--white); }
.scope-list article > span { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 8px; color: var(--navy-900); background: var(--gold-500); font-weight: 800; }
.scope-list h3 { margin: 0 0 7px; font: 800 18px/1.25 var(--font-display); }
.scope-list p { margin: 0; color: var(--muted); font-size: 14px; }

.about-hero-card { min-height: 360px; overflow: hidden; padding: 0; background: var(--navy-900); transform: none; }
.about-hero-card img { position: absolute; z-index: 2; inset: auto 0 0; width: 100%; height: 97%; object-fit: contain; object-position: bottom; }
.about-hero-card .about-badge { position: absolute; z-index: 3; left: 20px; bottom: 18px; padding: 11px 14px; border-radius: 12px; color: var(--navy-950); background: var(--gold-500); font-weight: 800; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.mission-panel { min-height: 380px; padding: 38px; border-top: 5px solid var(--gold-500); border-radius: 14px; background: var(--cream-100); }
.mission-panel.dark { color: var(--white); background: var(--navy-900); }
.mission-panel span { color: var(--gold-500); font: 800 12px/1 var(--font-display); }
.mission-panel h2 { margin-top: 42px; font-size: clamp(35px, 4vw, 54px); }
.mission-panel.dark h2 { color: var(--white); }
.mission-panel p { max-width: 560px; color: var(--muted); }
.mission-panel.dark p { color: rgba(255,255,255,.67); }
.bio-layout { display: grid; grid-template-columns: .72fr 1fr; gap: 80px; align-items: center; }
.bio-portrait { position: relative; min-height: 650px; overflow: hidden; border-top: 6px solid var(--gold-500); border-radius: 14px; background: var(--navy-900); }
.bio-portrait::after { content: none; }
.bio-portrait img { position: absolute; z-index: 2; left: 50%; bottom: 0; width: 120%; max-width: none; height: 95%; object-fit: contain; object-position: bottom; transform: translateX(-50%); }
.timeline-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 32px; }
.timeline-column > h3 { display: inline-flex; padding: 9px 15px; border-radius: 7px; color: var(--navy-950); background: var(--gold-500); font: 800 12px/1.2 var(--font-display); text-transform: uppercase; }
.timeline-list { display: grid; gap: 6px; margin: 18px 0 0; padding: 0; list-style: none; }
.timeline-list li { position: relative; padding: 12px 0 17px 22px; border-left: 1px solid var(--gold-500); }
.timeline-list li::before { content: ""; position: absolute; top: 18px; left: -5px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold-500); box-shadow: 0 0 0 5px var(--cream-50); }
.timeline-list strong { display: block; color: var(--navy-900); font: 800 15px/1.3 var(--font-display); }
.timeline-list span { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; }
.internship-list { display: grid; gap: 8px; margin: 11px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 12px; }
.timeline-list .internship-list li { position: relative; margin: 0; padding: 0 0 0 16px; border: 0; }
.timeline-list .internship-list li::before { content: ""; top: .55em; left: 0; width: 6px; height: 6px; border-radius: 2px; box-shadow: none; }

.story-spotlight { display: grid; grid-template-columns: 1fr 1fr; gap: 0; overflow: hidden; border-top: 6px solid var(--gold-500); border-radius: 14px; color: var(--white); background: var(--navy-900); box-shadow: var(--shadow); }
.story-visual { position: relative; min-height: 610px; overflow: hidden; background: linear-gradient(145deg, #123858 0%, var(--navy-900) 72%); }
.story-visual::after { content: "AARY AJAY ANKAIKAR"; position: absolute; left: 34px; bottom: 26px; z-index: 2; padding: 10px 13px; border-radius: 6px; color: var(--navy-950); background: var(--gold-500); font: 800 10px/1 var(--font-display); letter-spacing: .12em; }
.story-visual img { position: absolute; left: 50%; bottom: 0; width: 108%; max-width: none; height: 94%; object-fit: contain; object-position: bottom; transform: translateX(-50%); }
.story-copy { padding: 55px; }
.story-copy .eyebrow { color: var(--gold-400); }
.story-copy h2 { color: var(--white); font-size: clamp(38px, 4vw, 56px); }
.story-copy > p { color: rgba(255,255,255,.65); }
.outcome-list { display: grid; gap: 12px; margin-top: 30px; }
.outcome-list article { display: grid; grid-template-columns: 38px 1fr; gap: 13px; padding: 14px; border: 1px solid rgba(255,255,255,.1); border-radius: 15px; background: rgba(255,255,255,.04); }
.outcome-list span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; color: var(--navy-950); background: var(--gold-500); font-size: 11px; font-weight: 800; }
.outcome-list strong { display: block; color: var(--white); font-size: 14px; }
.outcome-list small { color: rgba(255,255,255,.58); }
.path-example-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 18px; }
.path-example { height: 100%; padding: 28px; border: 1px solid var(--line); border-top: 4px solid var(--gold-500); border-radius: 14px; background: var(--white); }
.path-example > span { color: var(--navy-600); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.path-example h3 { margin: 22px 0 13px; color: var(--navy-900); font: 800 23px/1.25 var(--font-display); }
.path-example p { color: var(--muted); font-size: 14px; }
.pathway-chain { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.pathway-chain span { padding: 7px 10px; border-radius: 9px; color: var(--navy-900); background: var(--cream-100); font-size: 11px; font-weight: 700; }
.pathway-chain i { align-self: center; color: var(--gold-500); font-style: normal; }
.integrity-note { padding: 32px; border: 1px solid var(--gold-200); border-left: 5px solid var(--gold-500); border-radius: 12px; background: #fff9ea; }
.integrity-note h2 { font-size: clamp(32px, 4vw, 50px); }
.integrity-note p { color: var(--muted); }
.testimonial-section { background: #fffdf8; }
.testimonial-marquee { width: 100vw; margin: 42px calc(50% - 50vw) 0; overflow: hidden; padding: 12px 0 24px; mask-image: linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent); }
.testimonial-track { width: max-content; display: flex; gap: 16px; padding-right: 16px; animation: testimonialMarquee 40s linear infinite; will-change: transform; }
.testimonial-marquee:hover .testimonial-track { animation-play-state: paused; }
.testimonial-marquee.is-paused .testimonial-track { animation-play-state: paused; }
.motion-toggle { margin-top: 18px; padding: 9px 14px; border: 1px solid rgba(142,98,12,.35); border-radius: 999px; color: #76520d; background: rgba(255,255,255,.72); font: 700 12px/1.2 var(--font-display); cursor: pointer; }
.motion-toggle:hover { border-color: var(--gold-500); background: var(--gold-100); }
.testimonial-card { width: 274px; min-height: 188px; flex: 0 0 274px; display: flex; flex-direction: column; padding: 22px; border: 1px solid var(--line); border-top: 4px solid var(--gold-500); border-radius: 13px; background: var(--white); box-shadow: 0 12px 28px rgba(62,45,15,.06); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.testimonial-card:hover { transform: translateY(-5px); border-color: rgba(217,169,54,.58); box-shadow: 0 22px 46px rgba(62,45,15,.11); }
.testimonial-initials { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: var(--navy-950); background: var(--gold-500); font: 800 11px/1 var(--font-display); }
.testimonial-card p { flex: 1; margin: 19px 0 17px; color: var(--navy-800); font-size: 15px; line-height: 1.5; }
.testimonial-card strong { color: var(--navy-900); font: 800 14px/1.3 var(--font-display); }
.testimonial-card small { margin-top: 4px; color: #a47313; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
@keyframes testimonialMarquee { to { transform: translate3d(calc(-50% - 8px),0,0); } }

.resource-toolbar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.filter-button { padding: 10px 15px; border: 1px solid var(--line); border-radius: 7px; color: var(--navy-800); background: var(--white); cursor: pointer; font-weight: 700; font-size: 13px; }
.filter-button.active { color: var(--navy-950); border-color: var(--gold-500); background: var(--gold-500); }
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 18px; }
.resource-card { min-height: 370px; height: 100%; display: flex; flex-direction: column; padding: 29px; border: 1px solid var(--line); border-top: 4px solid var(--gold-500); border-radius: 14px; background: var(--white); box-shadow: 0 12px 34px rgba(6,26,45,.05); }
.resource-card[hidden] { display: none; }
.resource-card .resource-meta { display: flex; justify-content: space-between; gap: 12px; color: var(--navy-600); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.resource-card h2 { margin: 38px 0 15px; font-size: 25px; }
.resource-card p { color: var(--muted); font-size: 14px; }
.resource-card .resource-links { display: grid; gap: 8px; margin-top: auto; padding-top: 25px; }
.resource-card a { color: var(--navy-900); font-size: 13px; font-weight: 800; }
.resource-card a.official { color: var(--navy-600); font-size: 11px; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.guide-section { scroll-margin-top: 110px; }
.guide-layout { display: grid; grid-template-columns: .62fr 1fr; gap: 70px; }
.guide-layout aside { position: sticky; top: 120px; align-self: start; padding: 24px; border-top: 4px solid var(--gold-500); border-radius: 12px; color: var(--white); background: var(--navy-900); }
.guide-layout aside strong { display: block; font: 800 18px/1.3 var(--font-display); }
.guide-layout aside span { display: block; margin-top: 8px; color: rgba(255,255,255,.62); font-size: 13px; }
.guide-content h2 { font-size: clamp(36px, 4vw, 54px); }
.guide-content h3 { margin-top: 35px; color: var(--navy-900); font: 800 22px/1.3 var(--font-display); }
.guide-content p, .guide-content li { color: var(--muted); }
.guide-content .official-source { margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13px; }
.guide-content .official-source a { color: #76520d; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

.contact-layout { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: start; }
.contact-side { position: static; display: grid; grid-template-columns: minmax(280px,.62fr) minmax(0,1.38fr); gap: 44px; align-items: center; padding: 28px; border: 1px solid var(--line); border-top: 4px solid var(--gold-500); border-radius: 18px; background: linear-gradient(135deg,#fffdfa,#faf1df); box-shadow: 0 20px 52px rgba(65,46,15,.08); }
.contact-side h2 { font-size: clamp(38px, 4vw, 56px); }
.contact-intro > p:last-child { color: var(--muted); }
.contact-methods { width: 100%; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; margin: 0; align-self: center; justify-self: center; }
.contact-method { min-height: 104px; display: grid; grid-template-columns: 38px minmax(0,1fr) 20px; align-items: center; gap: 8px; padding: 12px; border: 1px solid rgba(112,82,26,.16); border-left: 3px solid var(--gold-500); border-radius: 13px; background: rgba(255,255,255,.8); box-shadow: 0 10px 26px rgba(61,43,13,.05); }
.contact-method > span:first-child { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: var(--navy-900); background: var(--gold-500); font-weight: 800; }
.contact-method strong { display: block; color: var(--navy-900); font-size: 14px; }
.contact-method small { display: block; overflow-wrap: anywhere; color: var(--muted); font-size: 12px; }
.contact-method[href^="mailto:"] small { white-space: nowrap; overflow-wrap: normal; font-size: 10.5px; letter-spacing: -.15px; }
.contact-method b { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; color: var(--navy-900); background: var(--cream-100); transition: color .25s ease, background .25s ease, transform .25s ease; }
.contact-method:hover { transform: translateY(-4px); }
.contact-method:hover b { color: var(--white); background: var(--navy-900); transform: translate(2px,-2px); }
.consultation-card { width: min(100%,1000px); margin-inline: auto; padding: clamp(25px, 4vw, 48px); border: 1px solid var(--line); border-top: 6px solid var(--gold-500); border-radius: 14px; background: var(--white); box-shadow: var(--shadow); }
.consultation-card h2 { font-size: clamp(36px, 4vw, 53px); }
.consultation-card > p { color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; margin-top: 30px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy-800); font-size: 12px; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 8px; color: var(--navy-900); background: var(--cream-50); padding: 13px 14px; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-500); outline: 3px solid rgba(242,187,75,.16); }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.consent-field { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; margin-top: 20px; color: var(--muted); font-size: 12px; line-height: 1.5; cursor: pointer; }
.consent-field input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--gold-500); }
.consent-field a { color: #76520d; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.form-actions { display: flex; align-items: center; gap: 15px; margin-top: 22px; }
.form-actions .button { min-width: 270px; border: 0; cursor: pointer; }
.form-actions .button:disabled { cursor: wait; opacity: .66; transform: none; }
.form-note { margin: 0; color: var(--muted); font-size: 12px; }
.form-status { min-height: 24px; margin-top: 12px; color: var(--navy-900); font-size: 13px; font-weight: 700; }
.form-status a { color: var(--navy-900); border-bottom: 1px solid var(--gold-500); }
.faq-grid { display: grid; grid-template-columns: .62fr 1fr; gap: 80px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 21px 42px 21px 0; color: var(--navy-900); cursor: pointer; list-style: none; font: 800 17px/1.4 var(--font-display); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; top: 18px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; color: var(--navy-900); background: var(--gold-500); }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { margin: 0; padding: 0 42px 22px 0; color: var(--muted); }

@media (max-width: 1100px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .mentor-layout { grid-template-columns: .78fr 1fr; gap: 30px; }
  .service-grid, .resource-grid { grid-template-columns: repeat(2, 1fr); }
}

.site-footer { padding: 70px 0 26px; color: rgba(255,255,255,.72); background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .7fr .7fr 1fr; gap: 54px; }
.footer-brand .brand { margin-bottom: 21px; }
.footer-brand p { max-width: 360px; margin: 0; }
.footer-col h2 { margin: 4px 0 17px; color: var(--white); font: 800 13px/1.2 var(--font-display); letter-spacing: .1em; text-transform: uppercase; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li + li { margin-top: 10px; }
.footer-col a:hover { color: var(--gold-400); }
.footer-cta { padding: 23px; border: 1px solid rgba(255,255,255,.12); border-top: 3px solid var(--gold-500); border-radius: 10px; background: rgba(255,255,255,.05); }
.footer-cta strong { display: block; margin-bottom: 8px; color: var(--white); font: 800 19px/1.25 var(--font-display); }
.footer-cta a { display: inline-flex; margin-top: 14px; color: var(--gold-400); font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.11); font-size: 12px; }
.whatsapp-float { position: fixed; z-index: 90; right: 22px; bottom: 22px; display: inline-flex; align-items: center; gap: 10px; padding: 13px 17px; color: var(--navy-950); background: var(--gold-500); border: 1px solid rgba(8,35,61,.18); border-radius: 10px; box-shadow: 0 18px 44px rgba(6,26,45,.28); font-weight: 800; font-size: 13px; }
.whatsapp-float span:first-child { width: 26px; height: 26px; display: grid; place-items: center; border: 2px solid var(--navy-900); border-radius: 50%; font-size: 11px; }

.reveal { opacity: 1; transform: none; }
.reveal.is-visible { opacity: 1; transform: none; }
[data-tilt] { will-change: transform; transition: transform .18s ease-out; }
@keyframes scrollDot { 0%,100% { transform: translateY(0); opacity: .5; } 50% { transform: translateY(11px); opacity: 1; } }

@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav { position: fixed; inset: 0; z-index: 99; display: grid; align-content: center; padding: 80px 30px 40px; color: var(--white); background: rgba(6,26,45,.98); transform: translateY(-102%); transition: transform .35s cubic-bezier(.2,.7,.2,1); }
  .mobile-nav.open { transform: translateY(0); }
  .mobile-nav ul { list-style: none; margin: 0; padding: 0; }
  .mobile-nav li { border-bottom: 1px solid rgba(255,255,255,.12); }
  .mobile-nav a { display: flex; justify-content: space-between; padding: 17px 0; font: 700 26px/1.2 var(--font-display); }
  .hero-sequence { height: 142svh; }
  .hero { min-height: 720px; }
  .hero-layout { padding-top: 136px; padding-bottom: 102px; }
  .hero-copy { width: min(760px, 86vw); }
  .hero-scene-base, .hero-depth-layer img { object-position: center 27%; }
  .hero-location { display: none; }
  .route-reveal { margin-top: -15svh; border-radius: 24px 24px 0 0; }
  .route-reveal-grid { grid-template-columns: 1fr; gap: 52px; }
  .route-reveal-copy { max-width: 760px; }
  .route-console { max-width: 680px; width: 100%; min-height: 430px; }
  .trust-ribbon-grid { grid-template-columns: repeat(2, 1fr); padding: 18px 0; }
  .trust-ribbon p { padding: 12px; }
  .trust-ribbon p:nth-child(2) { border-right: 0; }
  .split-heading { grid-template-columns: 1fr; gap: 26px; }
  .pathway-shell, .funding-layout, .page-hero-grid, .support-scope, .bio-layout, .guide-layout, .contact-layout, .faq-grid { grid-template-columns: 1fr; }
  .journey-track { grid-template-columns: 1fr; gap: 0; }
  .journey-track::before { top: 0; bottom: 0; left: 31px; right: auto; width: 2px; height: auto; }
  .journey-track li { display: grid; grid-template-columns: 62px 1fr; gap: 22px; padding: 16px 0; text-align: left; }
  .journey-track span { grid-row: 1 / span 2; margin: 0; }
  .journey-track h3 { align-self: end; }
  .journey-track p { margin: 0; }
  .mentor-layout { grid-template-columns: 1fr; }
  .mentor-visual { order: 2; height: 570px; }
  .mentor-copy { padding-bottom: 0; }
  .closing-cta-layout { grid-template-columns: 1fr; }
  .funding-image { height: 580px; }
  .sticky-copy, .guide-layout aside, .contact-side { position: static; }
  .story-spotlight { grid-template-columns: 1fr; }
  .story-visual { min-height: 520px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-cta { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .nav-shell { min-height: 74px; }
  .brand-copy strong { font-size: 13px; }
  .brand-copy small { font-size: 8px; }
  .hero-sequence { height: 134svh; }
  .hero { height: 100svh; min-height: 720px; }
  .hero-scene { inset: -3%; }
  .hero-scene-base, .hero-depth-layer img { object-position: center 36%; }
  .hero-shade { background: linear-gradient(180deg, rgba(3,17,31,.54) 0%, rgba(3,17,31,.52) 35%, rgba(3,17,31,.9) 100%), linear-gradient(90deg, rgba(3,17,31,.42), rgba(3,17,31,.08)); }
  .hero-layout { align-items: end; padding-top: 112px; padding-bottom: 58px; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(43px, 14.5vw, 62px); }
  .hero-lede { font-size: 17px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; gap: 10px; }
  .hero-proof div { grid-template-columns: 44px 1fr; }
  .route-reveal { margin-top: -10svh; padding-top: 72px; border-radius: 19px 19px 0 0; }
  .route-reveal-grid { gap: 42px; padding-bottom: 72px; }
  .route-reveal-copy h2 { font-size: clamp(38px, 11.5vw, 51px); }
  .route-reveal-copy > p:last-of-type { font-size: 16px; }
  .route-reveal-facts { grid-template-columns: 1fr; }
  .route-reveal-facts div { padding: 14px 0; }
  .route-reveal-facts div + div { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .route-console { min-height: 420px; padding: 18px; border-radius: 12px; }
  .console-intro h2 { font-size: 25px; }
  .scroll-cue { display: none; }
  .trust-ribbon-grid { grid-template-columns: 1fr; }
  .trust-ribbon p { border-right: 0; border-bottom: 1px solid rgba(8,35,61,.15); }
  .trust-ribbon p:last-child { border-bottom: 0; }
  .section h2 { font-size: clamp(34px, 11vw, 48px); }
  .feature-grid, .institution-grid, .article-grid, .service-grid, .mission-grid, .timeline-columns, .path-example-grid, .resource-grid, .form-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 270px; }
  .institution-grid { transform: none; }
  .institution-grid-five a:last-child { grid-column: auto; }
  .pathway-shell { gap: 42px; }
  .tab-list { width: 100%; }
  .tab-button { min-width: 0; }
  .mentor-visual { height: 500px; }
  .mentor-visual img { height: 500px; width: 130%; }
  .portrait-halo { width: 310px; height: 310px; }
  .credential-row { grid-template-columns: 1fr; }
  .funding-image { height: 500px; }
  .funding-image::before { inset: 18px -8px -8px 18px; }
  .fact-stack article { grid-template-columns: 42px 1fr; padding: 15px; }
  .fact-stack article > span { width: 42px; height: 42px; }
  .page-hero { padding: 86px 0 72px; }
  .page-hero h1 { font-size: clamp(44px, 14vw, 62px); }
  .page-hero-card { min-height: 240px; }
  .service-card { min-height: 310px; }
  .about-hero-card { min-height: 420px; }
  .mission-panel { min-height: 320px; padding: 28px; }
  .bio-portrait { min-height: 560px; }
  .story-copy { padding: 32px 24px; }
  .story-visual { min-height: 430px; }
  .contact-layout { gap: 42px; }
  .consultation-card { border-radius: 24px; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .form-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .footer-brand, .footer-cta { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { right: 14px; bottom: 14px; padding: 12px; }
  .whatsapp-float span:last-child { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-sequence { height: auto; }
  .hero { position: relative; }
  .hero-scene, .hero-layout { transform: none; opacity: 1; filter: none; }
  .route-reveal { margin-top: 0; }
}

/* Singapore cinematic scroll story */
.sg-cinema {
  --sg-progress: 0;
  --sg-back-x: 0px;
  --sg-back-y: 0px;
  --sg-back-scale: 1.08;
  --sg-mid-x: 0px;
  --sg-mid-y: 0px;
  --sg-mid-scale: 1.02;
  --sg-front-x: 0px;
  --sg-front-y: 0px;
  --sg-front-scale: 1.06;
  --sg-title-y: 0px;
  --sg-title-scale: 1;
  --sg-title-opacity: 1;
  --sg-intro-y: 0px;
  --sg-intro-opacity: 1;
  --sg-fit-y: 70px;
  --sg-fit-opacity: 0;
  --sg-guide-y: 70px;
  --sg-guide-opacity: 0;
  --sg-cards-x: 150vw;
  --sg-cards-opacity: 0;
  --sg-shade: .22;
  position: relative;
  height: calc(100svh + 3900px);
  min-height: 4700px;
  color: var(--white);
  background: var(--navy-950);
}
.sg-stage { position: sticky; top: 0; height: 100svh; min-height: 680px; overflow: hidden; isolation: isolate; background: #08233d; }
.sg-world, .sg-scene, .sg-light, .sg-vignette, .sg-orbit, .sg-title, .sg-intro, .sg-story, .sg-clarity, .sg-location, .sg-kicker, .sg-scroll-cue, .sg-progress { position: absolute; }
.sg-world { inset: 0; z-index: 0; overflow: hidden; perspective: 1400px; background: #08233d; }
.sg-scene { inset: -5%; width: 110%; height: 110%; max-width: none; object-fit: cover; object-position: center 43%; user-select: none; pointer-events: none; will-change: transform, opacity, filter; }
.sg-sky { z-index: 0; transform: translate3d(var(--sg-back-x), var(--sg-back-y), -50px) scale(var(--sg-back-scale)); filter: saturate(.84) contrast(1.04) brightness(.84) blur(1px); }
.sg-city-back { z-index: 1; opacity: .38; transform: translate3d(var(--sg-back-x), var(--sg-back-y), 0) scale(calc(var(--sg-back-scale) + .025)); filter: saturate(1.15) contrast(1.07); mix-blend-mode: screen; }
.sg-city-mid { z-index: 2; clip-path: polygon(0 24%, 100% 18%, 100% 100%, 0 100%); transform: translate3d(var(--sg-mid-x), var(--sg-mid-y), 55px) scale(var(--sg-mid-scale)); filter: saturate(1.04) contrast(1.06) brightness(.95); }
.sg-city-front { z-index: 3; clip-path: polygon(0 58%, 100% 48%, 100% 100%, 0 100%); transform: translate3d(var(--sg-front-x), var(--sg-front-y), 115px) scale(var(--sg-front-scale)); filter: saturate(1.12) contrast(1.07) brightness(.9); }
.sg-light { inset: 0; z-index: 4; opacity: .9; pointer-events: none; background: radial-gradient(circle at 73% 19%, rgba(247,202,110,.33), transparent 28%), linear-gradient(105deg, rgba(6,26,45,.58), transparent 48%, rgba(6,26,45,.16)); mix-blend-mode: screen; }
.sg-vignette { inset: 0; z-index: 5; pointer-events: none; background: linear-gradient(90deg, rgba(3,17,31,.82) 0%, rgba(3,17,31,.3) 47%, rgba(3,17,31,.36) 100%), linear-gradient(180deg, rgba(3,17,31,.35), transparent 35%, rgba(3,17,31,.84) 100%); opacity: calc(.62 + var(--sg-shade)); }
.sg-orbit { inset: 0; z-index: 6; width: 100%; height: 100%; overflow: visible; opacity: calc(var(--sg-title-opacity) * .72); pointer-events: none; }
.sg-orbit path { fill: none; stroke: rgba(255,255,255,.74); stroke-width: 1.6; stroke-linecap: round; stroke-dasharray: 8 9; }
.sg-orbit circle { fill: var(--gold-500); filter: drop-shadow(0 0 14px rgba(242,187,75,.9)); }
.sg-location { z-index: 12; left: max(28px, calc((100vw - var(--container)) / 2)); bottom: 34px; display: flex; align-items: center; gap: 11px; color: rgba(255,255,255,.7); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; opacity: var(--sg-title-opacity); }
.sg-location i { width: 70px; height: 1px; background: rgba(255,255,255,.46); }
.sg-location strong { color: var(--gold-400); }
.sg-kicker { z-index: 12; top: 112px; left: 50%; display: flex; align-items: center; gap: 20px; transform: translateX(-50%); color: rgba(255,255,255,.86); text-transform: uppercase; opacity: var(--sg-title-opacity); }
.sg-kicker span { font: 700 13px/1 var(--font-body); letter-spacing: .28em; }
.sg-kicker strong { padding-left: 20px; border-left: 1px solid rgba(255,255,255,.45); font-size: 9px; letter-spacing: .16em; }
.sg-title { z-index: 8; top: clamp(140px, 18vh, 190px); left: 50%; width: min(96vw, 1520px); transform: translate3d(-50%, var(--sg-title-y), 0) scale(var(--sg-title-scale)); opacity: var(--sg-title-opacity); color: rgba(255,253,248,.96); font: 800 clamp(112px, 16.5vw, 245px)/.7 var(--font-display); letter-spacing: -.095em; text-align: center; text-shadow: 0 24px 55px rgba(2,16,29,.22); will-change: transform, opacity; }
.sg-title span { display: block; white-space: nowrap; }
.sg-title span:first-child { transform: translateX(-6vw); }
.sg-title span:last-child { transform: translateX(7vw); }
.sg-intro { z-index: 14; left: max(28px, calc((100vw - var(--container)) / 2)); bottom: 80px; width: min(650px, calc(100vw - 56px)); transform: translate3d(0, var(--sg-intro-y), 0); opacity: var(--sg-intro-opacity); will-change: transform, opacity; }
.sg-eyebrow, .sg-story-label { margin: 0 0 14px; color: var(--gold-400); font-size: 11px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.sg-intro h1 { margin: 0; max-width: 650px; color: var(--white); font: 800 clamp(31px, 3.25vw, 50px)/1.02 var(--font-display); letter-spacing: -.05em; text-wrap: balance; }
.sg-intro > p:not(.sg-eyebrow) { max-width: 620px; margin: 18px 0 0; color: rgba(255,255,255,.78); font-size: clamp(15px, 1.25vw, 18px); line-height: 1.55; }
.sg-primary-cta { width: min(380px, 100%); min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 24px; padding: 9px 10px 9px 22px; border: 1px solid rgba(255,255,255,.46); color: var(--white); background: rgba(6,26,45,.72); box-shadow: 0 22px 50px rgba(2,15,27,.24); backdrop-filter: blur(16px); transition: transform .24s ease, background .24s ease; }
.sg-primary-cta:hover { color: var(--navy-950); background: var(--gold-500); transform: translateY(-4px); }
.sg-primary-cta > span { display: grid; font: 800 15px/1.2 var(--font-display); }
.sg-primary-cta small { margin-bottom: 7px; color: var(--gold-400); font: 800 9px/1 var(--font-body); letter-spacing: .15em; text-transform: uppercase; }
.sg-primary-cta:hover small { color: var(--navy-800); }
.sg-primary-cta b { width: 52px; height: 52px; flex: 0 0 52px; display: grid; place-items: center; border-radius: 50%; color: var(--navy-950); background: var(--gold-500); }
.sg-primary-cta:hover b { color: var(--white); background: var(--navy-950); }
.sg-story { z-index: 15; left: 50%; width: min(760px, calc(100vw - 48px)); text-align: center; pointer-events: none; will-change: transform, opacity; }
.sg-story h2 { margin: 0; color: var(--white); font: 800 clamp(52px, 6vw, 86px)/.95 var(--font-display); letter-spacing: -.06em; text-shadow: 0 20px 48px rgba(3,17,31,.44); text-wrap: balance; }
.sg-story h2 em { color: var(--gold-400); font-style: normal; }
.sg-story > p:not(.sg-story-label) { width: min(600px, 100%); margin: 25px auto 0; color: rgba(255,255,255,.84); font-size: 18px; line-height: 1.55; text-shadow: 0 6px 24px rgba(3,17,31,.5); }
.sg-story-fit { top: 51%; transform: translate3d(-50%, calc(-50% + var(--sg-fit-y)), 0); opacity: var(--sg-fit-opacity); }
.sg-story-guide { top: 46%; transform: translate3d(-50%, calc(-50% + var(--sg-guide-y)), 0); opacity: var(--sg-guide-opacity); }
.sg-story-guide a { pointer-events: auto; min-height: 50px; display: inline-flex; align-items: center; gap: 18px; margin-top: 28px; padding: 0 24px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; color: var(--navy-950); background: var(--cream-50); font-size: 14px; font-weight: 800; box-shadow: 0 18px 42px rgba(3,17,31,.28); }
.sg-facts { width: min(520px, 100%); display: grid; grid-template-columns: repeat(2, 1fr); gap: 70px; margin: 52px auto 0; }
.sg-facts span { display: grid; color: rgba(255,255,255,.74); font-size: 12px; line-height: 1.35; }
.sg-facts strong { margin-bottom: 10px; color: var(--white); font: 800 42px/1 var(--font-display); letter-spacing: -.04em; }
.sg-clarity { z-index: 16; top: 126px; left: 0; right: 0; visibility: hidden; transform: translate3d(var(--sg-cards-x), 0, 0); opacity: var(--sg-cards-opacity); will-change: transform, opacity; }
.sg-clarity.is-visible { visibility: visible; }
.sg-clarity-heading { width: min(calc(100% - 96px), 1340px); display: flex; justify-content: space-between; gap: 30px; margin: 0 auto 30px; color: var(--white); }
.sg-clarity-heading span { color: var(--gold-400); font-size: 11px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.sg-clarity-heading strong { font: 700 20px/1.2 var(--font-display); }
.sg-clarity-track { display: flex; gap: 18px; width: max-content; padding: 0 48px; }
.sg-clarity article { position: relative; width: clamp(320px, 23vw, 400px); height: 250px; padding: 27px; overflow: hidden; border: 1px solid rgba(255,255,255,.5); border-radius: 22px; color: var(--navy-950); background: rgba(255,253,248,.96); box-shadow: 0 26px 70px rgba(3,17,31,.24); backdrop-filter: blur(18px); }
.sg-clarity article > span { position: absolute; top: 25px; right: 25px; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(8,35,61,.15); border-radius: 50%; color: #a66f06; font: 800 11px/1 var(--font-body); }
.sg-clarity h3 { max-width: 230px; margin: 76px 0 0; font: 800 30px/1 var(--font-display); letter-spacing: -.04em; }
.sg-clarity p { margin: 13px 0 0; color: var(--muted); font-size: 15px; line-height: 1.45; }
.sg-clarity-action { color: var(--white) !important; background: rgba(8,35,61,.94) !important; }
.sg-clarity-action h3 { color: var(--white); }
.sg-clarity-action p { color: rgba(255,255,255,.7); }
.sg-clarity-action > span { color: var(--gold-400) !important; border-color: rgba(255,255,255,.2) !important; }
.sg-clarity-action a { position: absolute; left: 27px; bottom: 23px; color: var(--gold-400); font-size: 13px; font-weight: 800; }
.sg-scroll-cue { z-index: 17; right: max(28px, calc((100vw - var(--container)) / 2)); bottom: 34px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.74); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; opacity: var(--sg-title-opacity); }
.sg-scroll-cue i { width: 54px; height: 1px; background: rgba(255,255,255,.42); }
.sg-scroll-cue b { color: var(--gold-400); font-size: 14px; }
.sg-progress { z-index: 17; left: 50%; bottom: 28px; display: flex; align-items: center; gap: 10px; transform: translateX(-50%); color: rgba(255,255,255,.6); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.sg-progress i { position: absolute; left: 25px; width: 120px; height: 1px; background: rgba(255,255,255,.28); }
.sg-progress i::after { content: ""; display: block; width: calc(120px * var(--sg-progress)); height: 1px; background: var(--gold-500); }
.sg-progress span:last-child { margin-left: 120px; }

@media (max-width: 900px) {
  .sg-title { top: 18vh; font-size: clamp(88px, 19vw, 150px); }
  .sg-intro { bottom: 76px; }
  .sg-intro h1 { font-size: clamp(32px, 5vw, 46px); }
  .sg-clarity-heading { width: calc(100% - 48px); }
  .sg-clarity-track { padding-inline: 24px; }
  .sg-story h2 { font-size: clamp(48px, 8vw, 72px); }
}

@media (max-width: 640px) {
  .sg-cinema { height: calc(100svh + 3900px); min-height: 4700px; }
  .sg-stage { min-height: 640px; }
  .sg-scene { object-position: center center; }
  .sg-city-front { clip-path: polygon(0 61%, 100% 54%, 100% 100%, 0 100%); }
  .sg-kicker { top: 104px; width: 100%; justify-content: center; }
  .sg-kicker span { font-size: 10px; letter-spacing: .2em; }
  .sg-kicker strong { display: none; }
  .sg-title { top: 18%; width: 100%; font-size: clamp(76px, 25vw, 104px); line-height: .72; }
  .sg-title span:first-child { transform: translateX(-3vw); }
  .sg-title span:last-child { transform: translateX(5vw); }
  .sg-orbit { width: 170%; transform: translateX(-35%); }
  .sg-intro { left: 15px; bottom: 34px; width: calc(100% - 30px); padding: 18px; border: 1px solid rgba(255,255,255,.25); background: linear-gradient(135deg, rgba(6,26,45,.78), rgba(6,26,45,.42)); backdrop-filter: blur(14px); }
  .sg-intro h1 { font-size: clamp(27px, 8.1vw, 34px); line-height: 1.04; }
  .sg-intro > p:not(.sg-eyebrow) { margin-top: 12px; font-size: 14px; line-height: 1.45; }
  .sg-primary-cta { min-height: 66px; margin-top: 17px; }
  .sg-location, .sg-scroll-cue, .sg-progress { display: none; }
  .sg-story { width: calc(100% - 34px); }
  .sg-story h2 { font-size: clamp(39px, 12vw, 52px); }
  .sg-story > p:not(.sg-story-label) { margin-top: 20px; font-size: 15px; line-height: 1.5; }
  .sg-facts { gap: 18px; margin-top: 36px; }
  .sg-facts strong { font-size: 31px; }
  .sg-clarity { top: 120px; }
  .sg-clarity-heading { width: calc(100% - 32px); display: grid; gap: 8px; margin-bottom: 20px; }
  .sg-clarity-heading strong { font-size: 18px; }
  .sg-clarity-track { gap: 12px; padding-inline: 16px; }
  .sg-clarity article { width: min(82vw, 330px); height: 244px; padding: 23px; }
  .sg-clarity article > span { top: 21px; right: 21px; }
  .sg-clarity h3 { margin-top: 76px; font-size: 27px; }
  .route-editorial { margin-top: -9svh; }
}

@media (prefers-reduced-motion: reduce) {
  .sg-scene, .sg-title, .sg-intro, .sg-story, .sg-clarity { transition: none !important; }
}

/* Premium destination-poster homepage */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.home-page .nav-shell {
  width: 100%;
  min-height: 82px;
  margin-top: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.25);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.home-page .site-header.scrolled .nav-shell {
  width: min(calc(100% - 40px), var(--container));
  min-height: 68px;
  margin-top: 12px;
  padding: 0 10px 0 14px;
  border: 1px solid rgba(8,35,61,.12);
  border-radius: 14px;
  background: rgba(255,253,248,.94);
  box-shadow: 0 16px 42px rgba(3,17,31,.13);
  backdrop-filter: blur(18px);
}
.home-page .site-header:not(.scrolled) .nav-cta {
  color: var(--white);
  border-color: rgba(255,255,255,.62);
  background: transparent;
}
.home-page .site-header:not(.scrolled) .nav-cta:hover { color: var(--navy-950); background: var(--white); }

.poster-sequence {
  --poster-opacity: 1;
  --poster-top: 0px;
  --poster-bottom: 0px;
  --poster-detail-opacity: 1;
  height: 168svh;
  background: #041627;
}
.poster-hero {
  min-height: 740px;
  align-items: initial;
  background: #041627;
}
.poster-scene {
  inset: -4%;
  z-index: -5;
  filter: saturate(calc(var(--hero-scene-saturation) * 1.16)) contrast(1.08) brightness(calc(var(--hero-scene-brightness) * .9));
  transform-origin: 53% 34%;
}
.poster-scene .hero-scene-base {
  object-position: center 14%;
}
.poster-color-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 71% 26%, rgba(244,190,70,.35), transparent 31%),
    linear-gradient(135deg, rgba(0,125,175,.45), rgba(4,22,39,.08) 43%, rgba(4,22,39,.3));
  mix-blend-mode: color;
}
.poster-shade {
  z-index: -4;
  opacity: var(--hero-shade-opacity);
  background:
    linear-gradient(180deg, rgba(3,17,31,.38), rgba(3,17,31,.02) 38%, rgba(3,17,31,.76) 100%),
    linear-gradient(90deg, rgba(3,17,31,.2), transparent 48%, rgba(3,17,31,.14));
}
.poster-hero::after {
  z-index: 1;
  height: 42%;
  background: linear-gradient(transparent, rgba(3,17,31,.2) 28%, rgba(3,17,31,.9));
}
.poster-word {
  position: absolute;
  z-index: -2;
  inset: 18% 0 auto;
  display: grid;
  justify-items: center;
  color: #fffdf7;
  font: 800 clamp(150px, 18.6vw, 310px)/.69 var(--font-display);
  letter-spacing: -.105em;
  text-transform: uppercase;
  opacity: var(--poster-opacity);
  pointer-events: none;
  text-shadow: 0 9px 42px rgba(3,17,31,.12);
}
.poster-word span { display: block; white-space: nowrap; }
.poster-word-top { transform: translate3d(-5.3vw, var(--poster-top), 0); }
.poster-word-bottom { transform: translate3d(8.4vw, var(--poster-bottom), 0); }
.poster-foreground {
  position: absolute;
  z-index: -1;
  inset: -4%;
  overflow: hidden;
  pointer-events: none;
  opacity: .92;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 29%, rgba(0,0,0,.18) 37%, #000 58%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, transparent 29%, rgba(0,0,0,.18) 37%, #000 58%, #000 100%);
  transform: translate3d(var(--depth-x), var(--depth-y), 0) scale(1.08);
  will-change: transform;
}
.poster-foreground img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
  filter: saturate(1.08) contrast(1.08) brightness(.89);
}
.poster-orbit {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  opacity: calc(var(--poster-detail-opacity) * .75);
}
.poster-orbit path { fill: none; stroke: rgba(255,255,255,.92); stroke-width: 2.2; stroke-linecap: round; stroke-dasharray: 9 8; }
.poster-orbit circle { fill: var(--gold-500); filter: drop-shadow(0 0 12px rgba(242,187,75,.8)); }
.poster-kicker {
  position: absolute;
  z-index: 3;
  top: 116px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
  opacity: var(--poster-detail-opacity);
  transform: translateX(-50%);
  text-transform: uppercase;
  white-space: nowrap;
}
.poster-kicker span { font: 500 clamp(15px, 1.3vw, 20px)/1 var(--font-body); letter-spacing: .24em; }
.poster-kicker strong { padding-left: 20px; border-left: 1px solid rgba(255,255,255,.55); font-size: 10px; letter-spacing: .16em; }
.poster-content {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: clamp(54px, 7vh, 82px);
  width: min(calc(100% - 80px), var(--container));
  display: grid;
  grid-template-columns: .82fr 1.12fr 1.04fr;
  gap: clamp(34px, 5vw, 82px);
  align-items: end;
  color: var(--white);
  opacity: var(--poster-detail-opacity);
  transform: translateX(-50%);
}
.poster-tagline {
  margin: 0;
  color: var(--gold-400);
  font: 800 clamp(21px, 2vw, 29px)/1.08 var(--font-display);
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.poster-intro {
  max-width: 420px;
  margin: 0;
  padding-left: 22px;
  border-left: 1px solid rgba(255,255,255,.48);
  color: rgba(255,255,255,.83);
  font-size: 15px;
  line-height: 1.55;
}
.poster-cta {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr 52px;
  align-items: center;
  gap: 22px;
  padding: 16px 18px 16px 22px;
  border: 1px solid rgba(255,255,255,.56);
  color: var(--white);
  background: rgba(3,17,31,.36);
  backdrop-filter: blur(14px);
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.poster-cta:hover { color: var(--navy-950); background: var(--gold-500); transform: translateY(-4px); }
.poster-cta > span { display: grid; font: 800 15px/1.2 var(--font-display); }
.poster-cta small { margin-bottom: 7px; color: var(--gold-400); font: 800 9px/1 var(--font-body); letter-spacing: .15em; text-transform: uppercase; }
.poster-cta:hover small { color: var(--navy-800); }
.poster-cta b { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; color: var(--navy-950); background: var(--gold-500); font-size: 18px; }
.poster-cta:hover b { color: var(--white); background: var(--navy-950); }
.poster-index {
  position: absolute;
  z-index: 4;
  left: 28px;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255,255,255,.66);
  opacity: var(--poster-detail-opacity);
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.poster-index i { width: 72px; height: 1px; background: rgba(255,255,255,.52); }
.poster-index strong { color: var(--gold-400); }
.poster-scroll {
  position: absolute;
  z-index: 4;
  right: 30px;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.68);
  opacity: var(--poster-detail-opacity);
  transform: translateY(-50%) rotate(90deg);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.poster-scroll i { width: 54px; height: 1px; background: rgba(255,255,255,.55); }
.poster-scroll b { color: var(--gold-400); font-size: 14px; }
.home-page .whatsapp-float { transition: opacity .25s ease, transform .25s ease, background .25s ease; }
.home-page.hero-active .whatsapp-float,
.home-page.hero-transitioning .whatsapp-float { opacity: 0; pointer-events: none; transform: translateY(18px); }

.route-editorial {
  margin-top: -16svh;
  padding-top: 0;
  border-radius: 0;
  background: var(--cream-50);
  box-shadow: 0 -28px 90px rgba(3,17,31,.32);
}
.route-marquee {
  min-height: clamp(160px, 19vw, 250px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 54px);
  overflow: hidden;
  color: var(--navy-950);
  background: var(--gold-500);
  font: 800 clamp(52px, 5.1vw, 76px)/.86 var(--font-display);
  letter-spacing: -.08em;
  white-space: nowrap;
}
.route-marquee b { color: rgba(8,35,61,.36); font-size: .5em; }
.route-editorial-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(80px, 10vw, 150px);
  align-items: start;
  padding-top: clamp(92px, 10vw, 146px);
  padding-bottom: clamp(90px, 10vw, 140px);
}
.route-editorial-intro { position: sticky; top: 124px; }
.route-editorial-intro h2 {
  max-width: 560px;
  margin: 0;
  color: var(--navy-950);
  font: 800 clamp(50px, 5.2vw, 75px)/.99 var(--font-display);
  letter-spacing: -.06em;
}
.route-editorial-intro h2 em { color: var(--gold-500); font-style: normal; }
.route-editorial-intro > p:not(.eyebrow) { max-width: 520px; margin: 28px 0 0; color: var(--muted); font-size: 18px; }
.editorial-link { display: inline-flex; align-items: center; gap: 48px; margin-top: 36px; padding-bottom: 8px; border-bottom: 2px solid var(--navy-950); color: var(--navy-950); font-size: 13px; font-weight: 800; }
.route-axis { position: relative; margin: 0; padding: 0; list-style: none; counter-reset: route; }
.route-axis::before { content: ""; position: absolute; left: 36px; top: 58px; bottom: 58px; width: 1px; background: rgba(8,35,61,.2); }
.route-axis li {
  position: relative;
  min-height: 124px;
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 26px;
  padding: 22px 0;
  border-top: 1px solid rgba(8,35,61,.16);
}
.route-axis li:last-child { border-bottom: 1px solid rgba(8,35,61,.16); }
.route-axis > li > span {
  position: relative;
  z-index: 2;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8,35,61,.22);
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--cream-50);
  font: 800 12px/1 var(--font-display);
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.route-axis li:hover > span { color: var(--white); background: var(--navy-950); transform: scale(1.08); }
.route-axis strong { display: block; color: var(--navy-950); font: 800 clamp(27px, 2.7vw, 40px)/1 var(--font-display); letter-spacing: -.045em; }
.route-axis small { display: block; margin-top: 9px; color: var(--muted); font-size: 14px; }
.route-proof { color: var(--white); background: var(--navy-950); }
.route-proof .container { min-height: 126px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.route-proof p { min-height: 60px; display: flex; align-items: center; gap: 14px; margin: 0; padding: 0 26px; border-right: 1px solid rgba(255,255,255,.17); }
.route-proof p:first-child { padding-left: 0; }
.route-proof p:last-child { border-right: 0; }
.route-proof strong { color: var(--gold-500); font: 800 30px/1 var(--font-display); }
.route-proof span { color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.35; }

@media (max-width: 980px) {
  .poster-sequence { height: 156svh; }
  .poster-word { top: 24%; font-size: clamp(130px, 21vw, 210px); }
  .poster-content { grid-template-columns: .72fr 1fr; }
  .poster-intro { display: none; }
  .poster-cta { max-width: 360px; justify-self: end; }
  .route-marquee { justify-content: center; padding-inline: 24px; font-size: clamp(44px, 6.6vw, 62px); }
  .route-editorial-grid { grid-template-columns: 1fr; gap: 70px; }
  .route-editorial-intro { position: static; max-width: 780px; }
}

@media (max-width: 640px) {
  .home-page .nav-shell {
    width: calc(100% - 28px);
    min-height: 72px;
    margin: 12px auto 0;
    padding: 0 8px 0 12px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 13px;
    background: rgba(3,17,31,.42);
    backdrop-filter: blur(12px);
  }
  .home-page .site-header.scrolled .nav-shell { width: calc(100% - 28px); min-height: 72px; }
  .poster-sequence { height: 150svh; }
  .poster-hero { min-height: 720px; }
  .poster-scene { inset: -2%; }
  .poster-scene .hero-scene-base,
  .poster-foreground img { object-position: center center; }
  .poster-word {
    top: 21%;
    font-size: clamp(86px, 27vw, 116px);
    line-height: .75;
    letter-spacing: -.105em;
  }
  .poster-word-top { transform: translate3d(-3vw, var(--poster-top), 0); }
  .poster-word-bottom { transform: translate3d(8vw, var(--poster-bottom), 0); }
  .poster-foreground { inset: -2%; opacity: .84; -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 24%, #000 49%); mask-image: linear-gradient(to bottom, transparent 0%, transparent 24%, #000 49%); }
  .poster-kicker { top: 106px; gap: 10px; }
  .poster-kicker span { font-size: 11px; letter-spacing: .18em; }
  .poster-kicker strong { display: none; }
  .poster-orbit { width: 170%; transform: translateX(-35%); }
  .poster-content {
    bottom: 88px;
    width: calc(100% - 28px);
    display: block;
  }
  .poster-tagline { font-size: 18px; }
  .poster-intro { display: block; max-width: 330px; margin-top: 14px; padding-left: 0; border-left: 0; font-size: 14px; }
  .poster-cta { width: 100%; min-height: 72px; margin-top: 20px; }
  .poster-index, .poster-scroll { display: none; }
  .route-editorial { margin-top: -12svh; }
  .route-marquee { min-height: 156px; flex-direction: column; padding: 24px 14px; gap: 8px; font-size: 38px; line-height: .9; }
  .route-marquee b { transform: rotate(90deg); }
  .route-editorial-grid { gap: 52px; padding-top: 72px; padding-bottom: 76px; }
  .route-editorial-intro h2 { font-size: clamp(44px, 13vw, 56px); }
  .route-editorial-intro > p:not(.eyebrow) { font-size: 16px; }
  .route-axis::before { left: 28px; }
  .route-axis li { min-height: 108px; grid-template-columns: 58px 1fr; gap: 18px; }
  .route-axis > li > span { width: 58px; height: 58px; }
  .route-axis strong { font-size: 27px; }
  .route-axis small { font-size: 12px; }
  .route-proof .container { grid-template-columns: repeat(2, 1fr); padding-block: 18px; }
  .route-proof p { min-height: 74px; padding: 0 12px; border-bottom: 1px solid rgba(255,255,255,.14); }
  .route-proof p:first-child { padding-left: 12px; }
  .route-proof p:nth-child(2) { border-right: 0; }
  .route-proof p:nth-child(3), .route-proof p:nth-child(4) { border-bottom: 0; }
  .route-proof strong { font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .poster-word-top, .poster-word-bottom, .poster-foreground { transform: none; }
  .poster-sequence { height: auto; }
  .route-editorial { margin-top: 0; }
}

/* Elite Light release — warm ivory, champagne gold, transform-only motion */
:root {
  --cream-50: #fffdf8;
  --cream-100: #fbf6e9;
  --cream-200: #f3e7cf;
  --gold-500: #d9a936;
  --gold-400: #e8c66f;
  --gold-200: #f3dfac;
  --line: rgba(75, 58, 29, .14);
  --shadow: 0 26px 68px rgba(72, 52, 20, .12);
}
body { background: #fffdf8; }
.section, .page-hero, .journey-section, .resources-preview { background-color: #fffdf8; }
.section:nth-of-type(even) { background-image: linear-gradient(135deg, rgba(232,198,111,.07), transparent 42%); }

/* Navigation stays light in every state. */
.nav-shell,
.site-header.scrolled .nav-shell,
.inner-page .nav-shell {
  border-color: rgba(122,91,26,.16);
  color: var(--navy-900);
  background: rgba(255,253,248,.94);
  box-shadow: 0 14px 42px rgba(79,57,20,.1);
  backdrop-filter: none;
}
.home-page .nav-shell,
.home-page .site-header.scrolled .nav-shell {
  width: min(calc(100% - 40px), var(--container));
  min-height: 68px;
  margin-top: 12px;
  padding: 0 10px 0 14px;
  border: 1px solid rgba(122,91,26,.16);
  border-radius: 14px;
  background: rgba(255,253,248,.94);
  box-shadow: 0 14px 42px rgba(79,57,20,.1);
  backdrop-filter: none;
}
.home-page .site-header:not(.scrolled) .nav-cta {
  color: var(--navy-900);
  border-color: #c9972d;
  background: linear-gradient(135deg, #edcd7d, #d8a633);
}
.home-page .site-header:not(.scrolled) .nav-cta:hover { color: var(--navy-900); background: linear-gradient(135deg, #f4dda7, #e1b64e); }
.brand, .site-header.scrolled .brand,
.nav-links, .site-header.scrolled .nav-links { color: var(--navy-900); }
.brand-copy small { color: #8e620c; }
.menu-toggle, .site-header.scrolled .menu-toggle {
  color: var(--navy-900);
  border-color: rgba(122,91,26,.16);
  background: #fffaf0;
}
.brand-mark { border-color: rgba(217,169,54,.74); background: #2e281d; }
.nav-cta, .site-header.scrolled .nav-cta { border-color: #c9972d; background: linear-gradient(135deg, #edcd7d, #d8a633); box-shadow: 0 10px 24px rgba(190,139,29,.2); }
.mobile-nav { color: var(--navy-900) !important; background: rgba(255,251,241,.99) !important; }
.mobile-nav li { border-color: rgba(122,91,26,.14) !important; }

/* Faster cinematic compositor: three transform-only layers, no blur/blend/backdrop. */
.sg-stage, .sg-world { contain: layout paint; }
.sg-scene { inset: -2%; width: 104%; height: 104%; filter: none; will-change: auto; }
.home-page.hero-active .sg-sky,
.home-page.hero-active .sg-city-mid,
.home-page.hero-active .sg-city-front,
.home-page.hero-active .sg-title,
.home-page.hero-active .sg-intro,
.home-page.hero-active .sg-story,
.home-page.hero-active .sg-clarity { will-change: transform, opacity; }
.sg-city-back { display: none; }
.sg-sky { opacity: .94; filter: brightness(1.05) saturate(.9) contrast(.96); }
.sg-city-mid { opacity: .72; filter: none; }
.sg-city-front { opacity: .92; filter: none; }
.sg-light { opacity: .72; mix-blend-mode: normal; background: radial-gradient(circle at 72% 18%, rgba(255,235,181,.44), transparent 32%), linear-gradient(100deg, rgba(255,250,238,.24), transparent 48%); }
.sg-vignette { background: linear-gradient(90deg, rgba(39,31,19,.28), rgba(39,31,19,.04) 48%, rgba(39,31,19,.12)), linear-gradient(180deg, rgba(255,248,230,.08), transparent 42%, rgba(37,28,14,.36)); opacity: calc(.35 + var(--sg-shade)); }
.sg-orbit circle { filter: none; }

.sg-intro,
.sg-story {
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid rgba(217,169,54,.42);
  border-top: 4px solid var(--gold-500);
  border-radius: 26px;
  color: var(--navy-900);
  background: rgba(255,253,248,.92);
  box-shadow: 0 28px 80px rgba(60,43,15,.16);
  backdrop-filter: none;
}
.sg-intro { bottom: 54px; width: min(680px, calc(100vw - 56px)); }
.sg-intro h1, .sg-story h2, .sg-facts strong { color: var(--navy-900); text-shadow: none; }
.sg-intro > p:not(.sg-eyebrow), .sg-story > p:not(.sg-story-label), .sg-facts span { color: var(--muted); text-shadow: none; }
.sg-eyebrow, .sg-story-label { color: #9a6d12; }
.sg-primary-cta { color: var(--navy-900); border-color: rgba(122,91,26,.18); background: linear-gradient(135deg, #fff9ea, #f6e7c5); box-shadow: 0 14px 32px rgba(91,65,19,.1); backdrop-filter: none; }
.sg-primary-cta:hover { color: var(--navy-900); background: linear-gradient(135deg, #f2d58d, #dba93c); }
.sg-story-guide a { color: var(--navy-900); border-color: rgba(122,91,26,.16); background: #fffaf0; box-shadow: 0 16px 36px rgba(73,52,16,.13); }
.sg-title { color: rgba(255,253,248,.95); text-shadow: 0 20px 54px rgba(60,42,13,.18); }
.sg-clarity-heading { color: #fffdf8; text-shadow: 0 3px 18px rgba(37,28,14,.35); }
.sg-clarity article { border-color: rgba(217,169,54,.4); background: rgba(255,253,248,.96); box-shadow: 0 24px 64px rgba(60,43,15,.14); backdrop-filter: none; }
.sg-clarity-action { color: var(--navy-900) !important; border-color: #d1a13a !important; background: linear-gradient(145deg, #f6dfaa, #e7bd60) !important; }
.sg-clarity-action h3 { color: var(--navy-900); }
.sg-clarity-action p { color: rgba(12,37,61,.72); }
.sg-clarity-action > span { color: #79530b !important; border-color: rgba(71,50,15,.18) !important; }
.sg-clarity-action a { color: var(--navy-900); }

/* Replace every dark content panel with ivory and champagne gold. */
.pathway-section,
.mentor-band,
.closing-cta,
.site-footer,
.service-card.featured,
.mission-panel.dark,
.story-spotlight,
.guide-layout aside {
  color: var(--navy-900);
  background: linear-gradient(145deg, #fffdf8, #f8edda);
}
.pathway-section { border-block: 1px solid rgba(217,169,54,.24); }
.pathway-intro h2, .mentor-copy h2, .closing-cta h2,
.service-card.featured h2, .service-card.featured h3, .service-card.featured a,
.mission-panel.dark h2, .story-copy h2, .outcome-list strong,
.footer-col h2, .footer-cta strong { color: var(--navy-900); }
.pathway-intro > p:not(.eyebrow),
.mentor-copy > p:not(.eyebrow):not(.mentor-name),
.closing-cta p:not(.eyebrow),
.service-card.featured p,
.mission-panel.dark p,
.story-copy > p,
.guide-layout aside span,
.site-footer,
.footer-brand p { color: var(--muted); }
.tab-list { border-color: rgba(122,91,26,.17); background: #f8edd8; }
.tab-button { color: var(--navy-600); }
.tab-button.active { color: var(--navy-900); background: linear-gradient(135deg, #f0d28b, #dbac42); }
.institution-grid a { border-color: rgba(122,91,26,.15); background: rgba(255,255,255,.72); box-shadow: 0 12px 34px rgba(73,52,16,.05); }
.institution-grid a:hover { border-color: rgba(217,169,54,.7); background: #fffdf8; }
.institution-grid span { color: var(--muted); }
.mentor-band::before { opacity: .34; background-image: radial-gradient(rgba(217,169,54,.34) 1px, transparent 1px); }
.mentor-name strong { color: var(--navy-900); }
.mentor-name span { color: #986a10; }
.credential-row span { color: #79530b; border-color: rgba(217,169,54,.28); border-top-color: var(--gold-500); background: rgba(255,255,255,.72); }
.credential-row small { color: var(--muted); }
.portrait-halo { border-color: rgba(217,169,54,.55); background: linear-gradient(180deg, rgba(243,223,172,.65), transparent 78%); }
.button-navy { color: var(--navy-900); border: 1px solid rgba(122,91,26,.16); background: linear-gradient(135deg, #edcd7d, #d8a633); box-shadow: 0 14px 34px rgba(177,126,23,.18); }
.button-navy:hover { background: linear-gradient(135deg, #f4dda7, #e1b64e); }
.closing-actions > a:last-child, .footer-cta a { color: #8e620c; }
.footer-cta { border-color: rgba(217,169,54,.28); border-top-color: var(--gold-500); background: rgba(255,255,255,.72); }
.footer-bottom { border-color: rgba(122,91,26,.14); }
.site-footer .brand { color: var(--navy-900); }

.service-card.featured::before { color: rgba(122,91,26,.05); }
.about-hero-card, .bio-portrait, .story-visual { background: linear-gradient(145deg, #f7e8c7, #e2bc65); }
.story-copy { background: rgba(255,253,248,.76); }
.outcome-list article { border-color: rgba(122,91,26,.13); background: rgba(255,255,255,.72); }
.outcome-list small { color: var(--muted); }
.guide-layout aside { border: 1px solid rgba(122,91,26,.14); border-top: 4px solid var(--gold-500); }
.image-note { color: var(--navy-900); border-color: rgba(122,91,26,.16); border-left-color: var(--gold-500); background: rgba(255,253,248,.94); }
.image-note span { color: var(--muted); }

/* Accessible gold text on ivory surfaces; brighter gold remains on dark imagery. */
.inner-page .page-hero h1 em,
.inner-page .section h2 em,
.inner-page .closing-cta h2 em,
.inner-page .sg-hero-copy h1 em,
.inner-page .sg-experience-heading h2 em,
.inner-page .sg-ai h2 em,
.inner-page .sg-family h2 em { color: #a47313; }
.inner-page .sg-family-points span,
.testimonial-card small { color: #8e620c; }

/* Lightweight motion system: entry reveals, card lift and gold sweep. */
.js-enabled .reveal { opacity: 0; transform: translate3d(0, 30px, 0) scale(.988); transition: opacity .72s ease, transform .78s cubic-bezier(.2,.78,.24,1); }
.js-enabled .reveal.is-visible { opacity: 1; transform: none; }
.js-enabled .reveal.is-visible.reveal-immediate { transition: none; }
.feature-grid .reveal:nth-child(2), .service-grid .reveal:nth-child(2), .resource-grid .reveal:nth-child(2) { transition-delay: .07s; }
.feature-grid .reveal:nth-child(3), .service-grid .reveal:nth-child(3), .resource-grid .reveal:nth-child(3) { transition-delay: .14s; }
.feature-grid .reveal:nth-child(4), .service-grid .reveal:nth-child(4) { transition-delay: .21s; }
.feature-card, .service-card, .article-card, .resource-card, .scope-list article, .fact-stack article, .contact-method, .institution-grid a { transition: transform .35s cubic-bezier(.2,.78,.24,1), box-shadow .35s ease, border-color .35s ease; }
.feature-card:hover, .service-card:hover, .resource-card:hover, .contact-method:hover { transform: translateY(-7px); border-color: rgba(217,169,54,.62); box-shadow: 0 24px 55px rgba(77,55,18,.12); }
.button, .nav-cta, .sg-primary-cta { position: relative; overflow: hidden; }
.button::after, .nav-cta::after, .sg-primary-cta::after { content: ""; position: absolute; inset: -80% auto -80% -45%; width: 32%; transform: rotate(18deg); background: linear-gradient(90deg, transparent, rgba(255,255,255,.52), transparent); transition: left .62s ease; pointer-events: none; }
.button:hover::after, .nav-cta:hover::after, .sg-primary-cta:hover::after { left: 120%; }
.section:not(.pathway-section) { content-visibility: auto; contain-intrinsic-size: 900px; }

@media (max-width: 640px) {
  .sg-intro { left: 14px; bottom: 24px; width: calc(100% - 28px); padding: 20px; background: rgba(255,253,248,.95); }
  .sg-story { padding: 26px 20px; border-radius: 20px; }
  .sg-story h2 { font-size: clamp(35px, 10.8vw, 46px); }
  .sg-sky { filter: brightness(1.04) saturate(.9); }
  .sg-city-mid { opacity: .58; }
  .sg-clarity-heading { color: #fffdf8; }
}

@media (prefers-reduced-motion: reduce) {
  .js-enabled .reveal, .js-enabled .reveal.is-visible { opacity: 1; transform: none; transition: none; }
  .button::after, .nav-cta::after, .sg-primary-cta::after { display: none; }
}

/* Rebuilt premium Singapore experience */
.premium-home .site-header { padding-inline: 20px; }
.premium-home .nav-shell,
.premium-home .site-header.scrolled .nav-shell {
  width: min(calc(100% - 24px), 1240px);
  min-height: 62px;
  margin-top: 14px;
  padding: 0 8px 0 11px;
  border: 1px solid rgba(110,82,25,.16);
  border-radius: 16px;
  background: rgba(255,253,248,.82);
  box-shadow: 0 12px 36px rgba(54,38,12,.08);
  backdrop-filter: blur(15px) saturate(1.08);
}
.premium-home .brand-mark { width: 32px; height: 48px; border-radius: 10px; font-size: 12px; }
.premium-home .brand-copy strong { font-size: 11.5px; letter-spacing: .025em; }
.premium-home .brand-copy small { font-size: 8px; letter-spacing: .16em; }
.premium-home .nav-links { gap: 18px; font-size: 12.5px; }
.premium-home .nav-cta { min-height: 40px; padding: 0 13px; font-size: 12px; border-radius: 8px; }

.dream-hero {
  --dream-back-x: 0px;
  --dream-back-y: 0px;
  --dream-back-scale: 1.01;
  --dream-city-x: 0px;
  --dream-city-y: 0px;
  --dream-city-scale: 1.02;
  --dream-water-x: 0px;
  --dream-water-y: 0px;
  --dream-water-scale: 1.035;
  --dream-copy-y: 0px;
  --dream-copy-opacity: 1;
  --dream-note-y: 0px;
  --dream-note-opacity: 1;
  --dream-proof-y: 0px;
  position: relative;
  height: 152svh;
  min-height: 1080px;
  background: #eecb8d;
}
.dream-stage { position: sticky; top: 0; height: 100svh; min-height: 700px; overflow: hidden; isolation: isolate; background: #f1d7a5; contain: layout paint; }
.dream-world { position: absolute; inset: 0; z-index: 0; overflow: hidden; perspective: 1300px; }
.dream-scene { position: absolute; inset: -2%; width: 104%; height: 104%; max-width: none; object-fit: cover; object-position: center center; user-select: none; pointer-events: none; }
.dream-sky { z-index: 0; transform: translate3d(var(--dream-back-x), var(--dream-back-y), -30px) scale(var(--dream-back-scale)); }
.dream-city, .dream-water { display: none; }
.home-page.hero-active .dream-sky, .home-page.hero-active .dream-city, .home-page.hero-active .dream-water, .home-page.hero-active .dream-copy, .home-page.hero-active .dream-note { will-change: transform, opacity; }
.dream-sunwash { position: absolute; inset: 0; z-index: 3; pointer-events: none; background: radial-gradient(circle at 83% 25%, rgba(255,231,173,.28), transparent 28%); }
.dream-shade { position: absolute; inset: 0; z-index: 4; pointer-events: none; background: linear-gradient(90deg, rgba(12,23,31,.72) 0%, rgba(12,23,31,.38) 45%, rgba(12,23,31,.05) 77%), linear-gradient(180deg, rgba(12,23,31,.12), transparent 42%, rgba(12,23,31,.47)); }
.dream-copy { position: absolute; z-index: 8; left: max(32px, calc((100vw - 1240px) / 2)); bottom: 125px; width: min(760px, calc(100vw - 64px)); transform: translate3d(0, var(--dream-copy-y), 0); opacity: var(--dream-copy-opacity); }
.dream-kicker { margin: 0 0 17px; color: #f3cc71; font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.dream-copy h1 { margin: 0; color: #fffdf8; font: 700 clamp(52px, 5.4vw, 78px)/.98 var(--font-display); letter-spacing: -.055em; text-wrap: balance; text-shadow: 0 18px 46px rgba(5,15,23,.22); }
.dream-copy h1 em { color: #f0c35f; font-style: normal; }
.dream-copy > p:not(.dream-kicker) { max-width: 670px; margin: 22px 0 0; color: rgba(255,255,255,.84); font-size: 17px; line-height: 1.6; }
.dream-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 28px; }
.dream-button { min-height: 56px; padding: 0 22px; color: #1b2b38; border: 1px solid #d5a737; border-radius: 12px; background: linear-gradient(135deg, #f5d78c, #dba83a); box-shadow: 0 18px 40px rgba(56,37,7,.2); }
.dream-button:hover { background: linear-gradient(135deg, #f9e3ae, #e5ba55); }
.dream-text-link { color: rgba(255,255,255,.86); font-size: 13px; font-weight: 700; }
.dream-text-link span { display: inline-block; margin-left: 8px; color: #f0c35f; transition: transform .25s ease; }
.dream-text-link:hover span { transform: translateY(4px); }
.dream-note { position: absolute; z-index: 8; right: max(32px, calc((100vw - 1240px) / 2)); bottom: 160px; width: min(300px, 24vw); padding: 22px; border: 1px solid rgba(255,255,255,.35); border-top: 3px solid #e4b64b; border-radius: 16px; color: #172938; background: rgba(255,252,244,.9); box-shadow: 0 24px 60px rgba(10,20,28,.14); transform: translate3d(0, var(--dream-note-y), 0); opacity: var(--dream-note-opacity); }
.dream-note span { display: block; margin-bottom: 12px; color: #91640c; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.dream-note strong { font: 700 18px/1.35 var(--font-display); }
.dream-proof { position: absolute; z-index: 9; left: 0; right: 0; bottom: 0; min-height: 84px; display: grid; grid-template-columns: repeat(4, 1fr); padding-inline: max(32px, calc((100vw - 1240px) / 2)); border-top: 1px solid rgba(255,255,255,.32); background: rgba(255,252,244,.94); transform: translate3d(0, var(--dream-proof-y), 0); }
.dream-proof span { display: flex; align-items: center; gap: 12px; padding: 0 24px; color: #526777; font-size: 12px; font-weight: 700; }
.dream-proof span + span { border-left: 1px solid rgba(103,80,34,.13); }
.dream-proof b { color: #a67513; font-size: 9px; letter-spacing: .08em; }
.dream-coordinate { position: absolute; z-index: 8; top: 112px; right: max(32px, calc((100vw - 1240px) / 2)); display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.7); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.dream-coordinate i { width: 58px; height: 1px; background: rgba(255,255,255,.45); }
.dream-coordinate strong { color: #f0c35f; }
.dream-scroll { position: absolute; z-index: 8; right: max(32px, calc((100vw - 1240px) / 2)); bottom: 104px; display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.72); font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.dream-scroll i { width: 42px; height: 1px; background: rgba(255,255,255,.43); }
.dream-scroll b { color: #f0c35f; }

.dream-statement, .dream-outcomes, .dream-services, .dream-mentor, .dream-process, .dream-trust, .dream-final { position: relative; padding: clamp(92px, 9vw, 150px) 0; overflow: hidden; }
.dream-statement { background: #fffdf8; }
.dream-statement-grid { display: grid; grid-template-columns: .35fr 1fr; gap: 70px; align-items: start; }
.section-number { margin: 0; color: #986b14; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.dream-statement h2, .dream-outcomes h2, .dream-section-head h2, .dream-mentor-copy h2, .process-intro h2, .dream-trust h2, .dream-final h2 { margin: 0; color: #122d43; font: 700 clamp(44px, 5.1vw, 72px)/1.04 var(--font-display); letter-spacing: -.055em; text-wrap: balance; }
.dream-statement h2 em, .dream-outcomes h2 em, .dream-section-head h2 em, .dream-mentor-copy h2 em, .process-intro h2 em, .dream-trust h2 em, .dream-final h2 em { color: #d2a13a; font-style: normal; }
.dream-statement-grid > div > p { max-width: 690px; margin: 26px 0 0; color: #677989; font-size: 18px; }

.dream-outcomes { background: linear-gradient(145deg, #fbf4e7, #fffdf8 62%); }
.dream-outcomes-grid { display: grid; grid-template-columns: .82fr 1fr; gap: clamp(60px, 8vw, 110px); align-items: center; }
.dream-life-visual { position: relative; min-height: 660px; margin: 0; overflow: hidden; border-radius: 34px; background: #edcc84; box-shadow: 0 34px 80px rgba(65,45,14,.13); }
.dream-life-visual::before { content: "A NEW CHAPTER"; position: absolute; z-index: 3; top: 26px; left: 28px; color: #8a5d09; font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.dream-life-visual img { width: 100%; height: 100%; min-height: 660px; object-fit: cover; object-position: center; transition: transform 1.2s cubic-bezier(.2,.75,.2,1); }
.dream-life-visual:hover img { transform: scale(1.035); }
.dream-life-visual figcaption { position: absolute; z-index: 4; left: 20px; right: 20px; bottom: 20px; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 15px; border: 1px solid rgba(255,255,255,.4); border-radius: 13px; color: #172d3e; background: rgba(255,253,248,.92); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.dream-life-visual figcaption i { width: 22px; height: 1px; background: #d0a03a; }
.dream-outcomes-copy > h2 { margin-top: 18px; }
.outcome-stack { display: grid; gap: 2px; margin-top: 38px; border-top: 1px solid rgba(71,56,28,.15); }
.outcome-stack article { display: grid; grid-template-columns: 48px 1fr; gap: 22px; padding: 24px 0; border-bottom: 1px solid rgba(71,56,28,.15); }
.outcome-stack article > span { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid #dfbf78; border-radius: 50%; color: #8d610d; font-size: 10px; font-weight: 800; }
.outcome-stack h3 { margin: 0; color: #173047; font: 700 20px/1.25 var(--font-display); }
.outcome-stack p { margin: 8px 0 0; color: #6b7c89; font-size: 14px; }

.dream-services { background: #fffdf8; }
.dream-section-head { display: grid; grid-template-columns: 1.3fr .55fr; gap: 70px; align-items: end; }
.dream-section-head h2 { margin-top: 18px; }
.dream-section-head > p { margin: 0 0 8px; color: #6a7c89; font-size: 17px; }
.service-rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 62px; }
.premium-service { position: relative; min-height: 390px; display: flex; flex-direction: column; padding: 25px; border: 1px solid rgba(93,72,32,.15); border-top: 3px solid #d4a43a; border-radius: 18px; background: linear-gradient(155deg, #fffdfa, #f8efde); box-shadow: 0 16px 42px rgba(70,50,17,.06); }
.premium-service:nth-child(even) { transform: translateY(28px); }
.premium-service > span { position: absolute; top: 22px; right: 22px; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(99,73,21,.16); border-radius: 50%; color: #9b6e13; font-size: 9px; font-weight: 800; }
.premium-service small { margin-top: 88px; color: #9a6c12; font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.premium-service h3 { margin: 15px 0 0; color: #142e43; font: 700 27px/1.06 var(--font-display); letter-spacing: -.04em; }
.premium-service p { margin: auto 0 0; color: #697b89; font-size: 14px; }
.premium-inline-link { display: inline-flex; align-items: center; gap: 14px; margin-top: 65px; color: #163148; border-bottom: 1px solid #d4a43a; padding-bottom: 5px; font-size: 13px; font-weight: 800; }

.dream-mentor { background: linear-gradient(145deg, #fbf3e3, #fffdf8); }
.dream-mentor-grid { display: grid; grid-template-columns: .78fr 1fr; gap: clamp(60px, 8vw, 105px); align-items: center; }
.mentor-stage { position: relative; min-height: 690px; overflow: hidden; border-radius: 36px; background: radial-gradient(circle at 50% 35%, #f7dfaa, #e7bd60 68%, #d6a439); box-shadow: 0 34px 80px rgba(75,52,12,.15); }
.mentor-stage-label { position: absolute; z-index: 4; top: 27px; left: 28px; color: #7f570c; font-size: 9px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.mentor-orbit { position: absolute; z-index: 1; left: 50%; top: 50%; width: 470px; height: 470px; border: 1px solid rgba(255,255,255,.48); border-radius: 50%; transform: translate(-50%,-50%); }
.mentor-orbit::after { content: ""; position: absolute; inset: 42px; border: 1px dashed rgba(88,61,13,.23); border-radius: 50%; animation: mentorOrbit 24s linear infinite; }
.mentor-stage img { position: absolute; z-index: 2; left: 50%; bottom: 0; width: 112%; max-width: none; height: 90%; object-fit: contain; object-position: bottom; transform: translateX(-50%); }
.mentor-stage-caption { position: absolute; z-index: 4; left: 20px; right: 20px; bottom: 20px; display: grid; gap: 4px; padding: 16px 18px; border-radius: 13px; color: #142e43; background: rgba(255,253,248,.93); }
.mentor-stage-caption strong { font: 700 16px/1.2 var(--font-display); }
.mentor-stage-caption span { color: #778590; font-size: 11px; }
.dream-mentor-copy h2 { margin-top: 18px; }
.mentor-lede { margin: 27px 0 0; color: #687a88; font-size: 17px; }
.mentor-path { display: flex; align-items: center; gap: 12px; margin-top: 34px; padding: 20px 0; border-block: 1px solid rgba(75,59,29,.15); }
.mentor-path span { display: grid; color: #6d7e8b; font-size: 11px; }
.mentor-path b { margin-bottom: 4px; color: #94660f; font-size: 12px; }
.mentor-path i { color: #c89831; font-style: normal; }
.dream-mentor blockquote { margin: 30px 0 0; color: #173047; font: 600 23px/1.4 var(--font-display); letter-spacing: -.025em; }

.dream-process { background: #fffdf8; }
.dream-process-grid { display: grid; grid-template-columns: .65fr 1fr; gap: 100px; align-items: start; }
.process-intro { position: sticky; top: 130px; }
.process-intro h2 { margin-top: 18px; }
.process-intro > p:not(.section-number) { margin: 25px 0 0; color: #6b7d8a; font-size: 17px; }
.process-intro .button { margin-top: 30px; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(76,59,28,.16); }
.process-list li { display: grid; grid-template-columns: 70px 1fr; gap: 28px; padding: 34px 0; border-bottom: 1px solid rgba(76,59,28,.16); }
.process-list li > span { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid #dfbf76; border-radius: 50%; color: #96670e; font-size: 10px; font-weight: 800; transition: color .25s ease, background .25s ease, transform .25s ease; }
.process-list li:hover > span { color: #fff; background: #d2a039; transform: scale(1.07); }
.process-list small { color: #9a6c12; font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.process-list h3 { margin: 8px 0 0; color: #153047; font: 700 27px/1.15 var(--font-display); letter-spacing: -.035em; }
.process-list p { margin: 9px 0 0; color: #6b7d8a; font-size: 14px; }

.dream-trust { background: linear-gradient(145deg, #faf1df, #fffdf8); }
.dream-trust h2 { max-width: 850px; margin-top: 18px; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 60px; }
.trust-grid article { min-height: 300px; padding: 28px; border: 1px solid rgba(91,69,29,.14); border-top: 3px solid #d3a33a; border-radius: 18px; background: rgba(255,255,255,.7); }
.trust-grid article > span { color: #9a6c12; font-size: 9px; font-weight: 800; }
.trust-grid h3 { margin: 80px 0 0; color: #153047; font: 700 24px/1.18 var(--font-display); letter-spacing: -.035em; }
.trust-grid p { margin: 14px 0 0; color: #6c7d89; font-size: 14px; }

.dream-final { background: linear-gradient(135deg, #f3d998, #dca83a); }
.dream-final-grid { display: grid; grid-template-columns: 1.15fr .55fr; gap: 100px; align-items: end; }
.dream-final h2 { margin-top: 18px; }
.dream-final-grid > div:last-child > p { margin: 0 0 27px; color: rgba(20,46,67,.74); font-size: 17px; }
.dream-final .dream-button { border-color: rgba(50,36,10,.16); background: #fffdf8; box-shadow: 0 18px 40px rgba(87,58,7,.13); }

@media (hover: hover) and (pointer: fine) {
  .whatsapp-float {
    width: 58px;
    height: 58px;
    justify-content: flex-start;
    gap: 12px;
    padding: 0 15px;
    overflow: hidden;
    border-radius: 29px;
    white-space: nowrap;
    transition: width .3s cubic-bezier(.2,.75,.2,1), opacity .25s ease, transform .25s ease, background .25s ease;
  }
  .whatsapp-float span:first-child { flex: 0 0 26px; }
  .whatsapp-float span:last-child { opacity: 0; transition: opacity .18s ease .04s; }
  .whatsapp-float:hover { width: 190px; }
  .whatsapp-float:hover span:last-child { opacity: 1; }
}

@keyframes mentorOrbit { to { transform: rotate(360deg); } }

@media (max-width: 980px) {
  .dream-note { display: none; }
  .dream-copy { width: min(760px, calc(100vw - 64px)); }
  .dream-proof span { padding-inline: 13px; }
  .dream-outcomes-grid, .dream-mentor-grid { grid-template-columns: 1fr 1fr; gap: 45px; }
  .service-rail { grid-template-columns: repeat(2, 1fr); }
  .premium-service:nth-child(even) { transform: none; }
  .dream-process-grid { gap: 55px; }
}

@media (max-width: 640px) {
  .premium-home .site-header { padding-inline: 0; }
  .premium-home .nav-shell, .premium-home .site-header.scrolled .nav-shell { width: calc(100% - 24px); min-height: 58px; margin-top: 10px; }
  .dream-hero { height: 138svh; min-height: 980px; }
  .dream-stage { min-height: 680px; }
  .dream-sky { content: url("assets/marina-bay-front.jpg"); object-position: center center; }
  .dream-scene { inset: 0; width: 100%; height: 100%; object-position: 42% center; }
  .dream-city { clip-path: polygon(0 30%,100% 28%,100% 82%,0 82%); }
  .dream-copy { left: 16px; right: 16px; bottom: 102px; width: auto; padding: 22px; border: 1px solid rgba(255,255,255,.32); border-radius: 20px; background: rgba(12,27,39,.72); }
  .dream-copy h1 { font-size: clamp(38px, 11vw, 49px); }
  .dream-copy > p:not(.dream-kicker) { margin-top: 16px; font-size: 14px; line-height: 1.5; }
  .dream-actions { gap: 14px; margin-top: 20px; }
  .dream-button { width: 100%; }
  .dream-text-link { width: 100%; }
  .dream-coordinate, .dream-scroll { display: none; }
  .dream-proof { min-height: 74px; grid-template-columns: repeat(2, 1fr); padding-inline: 10px; }
  .dream-proof span { padding: 9px; font-size: 10px; }
  .dream-proof span:nth-child(3) { border-left: 0; }
  .dream-statement, .dream-outcomes, .dream-services, .dream-mentor, .dream-process, .dream-trust, .dream-final { padding: 82px 0; }
  .dream-statement-grid, .dream-outcomes-grid, .dream-section-head, .dream-mentor-grid, .dream-process-grid, .dream-final-grid { grid-template-columns: 1fr; gap: 34px; }
  .dream-statement h2, .dream-outcomes h2, .dream-section-head h2, .dream-mentor-copy h2, .process-intro h2, .dream-trust h2, .dream-final h2 { font-size: clamp(39px, 11.5vw, 50px); }
  .dream-life-visual, .dream-life-visual img { min-height: 500px; }
  .service-rail, .trust-grid { grid-template-columns: 1fr; }
  .premium-service { min-height: 300px; }
  .mentor-stage { min-height: 570px; }
  .mentor-path { align-items: flex-start; overflow-x: auto; }
  .mentor-path span { min-width: 110px; }
  .process-intro { position: static; }
  .process-list li { grid-template-columns: 55px 1fr; gap: 16px; }
  .process-list li > span { width: 50px; height: 50px; }
  .dream-final-grid { gap: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  .mentor-orbit::after { animation: none; }
  .dream-scene, .dream-copy, .dream-note, .dream-proof { transform: none !important; opacity: 1 !important; }
}

/* Cinematic, low-copy homepage */
.cinema-home { background: #fffaf0; }
.footer-grid { grid-template-columns: 1.15fr .6fr 1fr; }
.site-footer { padding-top: 62px; }
.footer-grid {
  grid-template-columns: minmax(320px, 1.25fr) minmax(170px, .55fr) minmax(300px, .9fr);
  align-items: start;
  gap: clamp(46px, 7vw, 108px);
}
.footer-invite {
  position: relative;
  min-height: 0;
  padding: 4px 0 4px 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.footer-invite::before {
  content: "";
  position: absolute;
  inset: 2px auto 2px 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-500), rgba(217,169,54,.12));
}
.footer-invite strong { display: block; margin-bottom: 11px; color: var(--navy-900); font: 800 22px/1.25 var(--font-display); }
.footer-invite span { display: block; max-width: 300px; color: var(--muted); line-height: 1.65; }
.footer-invite a { display: inline-flex; margin-top: 19px; padding-bottom: 4px; color: #8e620c; border-bottom: 1px solid rgba(142,98,12,.3); font-weight: 800; }
.footer-bottom { margin-top: 58px; }

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1.2fr .8fr; gap: 42px 54px; }
  .footer-invite { grid-column: 1 / -1; padding: 27px 0 0; border-top: 1px solid rgba(122,91,26,.14); }
  .footer-invite::before { inset: 0 auto auto 0; width: 86px; height: 2px; }
}

@media (max-width: 640px) {
  .site-footer { padding-top: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand, .footer-invite { grid-column: auto; }
  .footer-invite { padding-top: 25px; }
  .footer-bottom { margin-top: 42px; }
}
.cinema-hero {
  --dream-back-x: 0px;
  --dream-back-y: 0px;
  --dream-back-scale: 1.01;
  --dream-city-x: 0px;
  --dream-city-y: 0px;
  --dream-city-scale: 1.02;
  --dream-copy-y: 0px;
  --dream-copy-opacity: 1;
  position: relative;
  height: 164svh;
  min-height: 1080px;
  background: #162736;
}
.cinema-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 700px;
  overflow: hidden;
  isolation: isolate;
  background: #25364a;
  perspective: 1400px;
}
.cinema-atmosphere { position: absolute; inset: 0; z-index: 0; overflow: hidden; transform: translate3d(var(--dream-back-x),var(--dream-back-y),0) scale(var(--dream-back-scale)); }
.cinema-atmosphere > img { width: 100%; height: 100%; object-fit: cover; object-position: center 56%; filter: saturate(.98) brightness(.78); opacity: 1; }
.cinema-atmosphere::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(8,20,29,.58) 0%,rgba(8,20,29,.13) 45%,rgba(8,20,29,.2) 100%),linear-gradient(180deg,rgba(7,17,25,.08),transparent 52%,rgba(7,17,25,.52)); }
.cinema-halo { position: absolute; z-index: 2; inset: 0; background: radial-gradient(circle at 67% 27%,rgba(255,196,91,.36),transparent 28%); }
.cinema-grid { position: absolute; z-index: 3; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.18) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.18) 1px,transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom,transparent,black 30%,transparent 84%); }
.cinema-monument { display: none; }
.cinema-monument img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.cinema-word { position: absolute; left: 50%; top: 39%; width: 100%; text-align: center; white-space: nowrap; font: 800 clamp(72px,8.4vw,124px)/.88 var(--font-display); letter-spacing: -.05em; pointer-events: none; user-select: none; }
.cinema-word-back { z-index: 2; color: rgba(255,253,247,.96); transform: translate3d(calc(-50% + var(--dream-back-x)),calc(-50% + var(--dream-back-y)),0); text-shadow: 0 7px 0 rgba(211,159,46,.48),0 24px 48px rgba(5,15,22,.32); }
.cinema-word-front { display: none; }
.cinema-copy { position: absolute; z-index: 7; left: max(34px,calc((100vw - 1240px)/2)); bottom: 48px; width: min(520px,calc(100vw - 68px)); color: #fff; transform: translate3d(0,var(--dream-copy-y),0); opacity: var(--dream-copy-opacity); }
.cinema-kicker { display: flex; align-items: center; gap: 12px; margin: 0 0 13px; color: #f5c95f; font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.cinema-kicker i { width: 38px; height: 1px; background: rgba(245,201,95,.65); }
.cinema-copy h1 { margin: 0; color: #fffdf7; font: 700 clamp(38px,3.5vw,54px)/1 var(--font-display); letter-spacing: -.05em; text-wrap: balance; }
.cinema-copy h1 em { color: #efbf50; font-style: normal; }
.cinema-copy > p:not(.cinema-kicker) { margin: 16px 0 0; color: rgba(255,255,255,.78); font-size: 15px; }
.cinema-cta { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 28px; margin-top: 24px; padding: 0 20px; border: 1px solid rgba(255,240,197,.58); border-radius: 999px; color: #182b39; background: linear-gradient(135deg,#f7dda0,#dba83b); box-shadow: 0 20px 48px rgba(7,18,25,.22); font-size: 13px; font-weight: 800; transition: transform .25s ease,box-shadow .25s ease,background .25s ease; }
.cinema-cta:hover { transform: translateY(-3px); box-shadow: 0 25px 58px rgba(7,18,25,.3); background: linear-gradient(135deg,#ffe9b6,#e4b852); }
.cinema-scroll { position: absolute; z-index: 7; right: max(34px,calc((100vw - 1240px)/2)); bottom: 62px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.62); font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.cinema-scroll i { width: 54px; height: 1px; background: rgba(255,255,255,.36); }
.cinema-scroll b { color: #efbf50; }

.life-dream,.mentor-dream,.route-dream { position: relative; padding: clamp(100px,9vw,150px) 0; overflow: hidden; }
.life-dream { background: #fffdf8; }
.life-dream { padding-bottom: clamp(72px,6vw,100px); }
.life-heading { display: grid; grid-template-columns: .35fr 1fr; gap: 60px; align-items: start; }
.life-heading h2,.mentor-dream-copy h2,.route-heading h2,.cinema-final h2 { margin: 0; color: #153047; font: 700 clamp(40px,4.7vw,64px)/1.02 var(--font-display); letter-spacing: -.045em; text-wrap: balance; }
.life-heading h2 em,.mentor-dream-copy h2 em,.route-heading h2 em,.cinema-final h2 em { color: #d6a439; font-style: normal; }
.life-gallery { width: min(1040px,calc(100% - 96px)); display: grid; grid-template-columns: .9fr 1.04fr .9fr; gap: 14px; margin: 50px auto 0; }
.life-frame { position: relative; min-height: 380px; margin-top: 38px; overflow: hidden; border-radius: 21px; background: #d9b263; box-shadow: 0 22px 52px rgba(65,46,15,.09); }
.life-frame-main { min-height: 460px; margin-top: 0; }
.life-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.75,.2,1),filter .5s ease; }
.life-frame:nth-child(3) img { object-position: center 50%; }
.life-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 44%,rgba(9,22,31,.83)); }
.life-frame:hover img { transform: scale(1.025); filter: saturate(1.04); }
.life-frame > div { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 28px; color: #fff; }
.life-frame span { color: #f2c65e; font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.life-frame h3 { margin: 10px 0 0; font: 700 clamp(24px,2.4vw,36px)/1.04 var(--font-display); letter-spacing: -.045em; }
.life-frame p { margin: 10px 0 0; color: rgba(255,255,255,.7); font-size: 13px; }

.mentor-dream { background: linear-gradient(145deg,#f9efd9,#fffdf8 70%); }
.mentor-dream { padding-top: clamp(88px,7vw,116px); }
.mentor-dream-grid { display: grid; grid-template-columns: .9fr 1fr; gap: clamp(65px,9vw,125px); align-items: center; }
.mentor-dream-visual { position: relative; min-height: 590px; overflow: hidden; border-radius: 34px; background: radial-gradient(circle at 50% 34%,#f9e4b8,#ddb04f 72%,#ca9328); box-shadow: 0 30px 70px rgba(78,54,12,.13); }
.mentor-ring { position: absolute; inset: 13% 10%; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; }
.mentor-ring::after { content: ""; position: absolute; inset: 42px; border: 1px dashed rgba(84,58,11,.27); border-radius: 50%; }
.mentor-dream-visual img { position: absolute; left: 50%; bottom: 0; width: 108%; height: 92%; max-width: none; object-fit: contain; object-position: bottom; transform: translateX(-50%); filter: drop-shadow(0 26px 32px rgba(42,28,5,.17)); }
.mentor-stamp { position: absolute; z-index: 3; left: 22px; right: 22px; bottom: 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 17px 19px; border: 1px solid rgba(255,255,255,.55); border-radius: 14px; color: #183146; background: rgba(255,253,247,.93); }
.mentor-stamp strong { font: 700 14px/1.2 var(--font-display); }
.mentor-stamp span { color: #9a6d15; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.mentor-dream-copy h2 { margin-top: 19px; }
.mentor-dream-copy > p:not(.section-number) { max-width: 610px; margin: 26px 0 0; color: #687b89; font-size: 18px; }
.mentor-proof { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 38px; border-block: 1px solid rgba(77,58,26,.15); }
.mentor-proof span { display: grid; gap: 8px; padding: 21px 12px; color: #153047; font-weight: 700; }
.mentor-proof span + span { border-left: 1px solid rgba(77,58,26,.15); }
.mentor-proof b { color: #a47313; font-size: 9px; letter-spacing: .12em; }
.cinema-text-link { display: inline-flex; gap: 13px; margin-top: 34px; padding-bottom: 6px; border-bottom: 1px solid #d2a13a; color: #163047; font-size: 13px; font-weight: 800; }

.route-dream { background: #fffdf8; }
.route-heading { display: grid; grid-template-columns: .35fr 1fr; gap: 60px; align-items: start; }
.route-line { display: grid; grid-template-columns: repeat(3,1fr); margin: 74px 0 0; padding: 0; border-block: 1px solid rgba(77,58,26,.16); list-style: none; }
.route-line li { position: relative; min-height: 180px; display: flex; flex-direction: column; justify-content: flex-start; gap: 26px; padding: 28px 30px; transition: background .3s ease,transform .3s ease; }
.route-line li + li { border-left: 1px solid rgba(77,58,26,.16); }
.route-line li:hover { background: #fbf2de; transform: translateY(-5px); }
.route-line span { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid #dfbd70; border-radius: 50%; color: #9b6d11; font-size: 9px; font-weight: 800; }
.route-line h3 { max-width: 270px; margin: 0; color: #163047; font: 700 29px/1.08 var(--font-display); letter-spacing: -.045em; }

.cinema-final { position: relative; min-height: 84svh; display: flex; align-items: center; overflow: hidden; background: #172a3a; }
.cinema-final-image { position: absolute; inset: 0; }
.cinema-final-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.cinema-final-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(8,20,29,.82),rgba(8,20,29,.32) 58%,rgba(8,20,29,.12)); }
.cinema-final-copy { position: relative; z-index: 2; color: #fff; }
.cinema-final .section-number { color: #f0c25b; }
.cinema-final h2 { max-width: 880px; margin-top: 19px; color: #fffdf7; }

@media (max-width: 900px) {
  .cinema-monument { width: min(80vw,760px); }
  .cinema-word { font-size: 14vw; }
  .life-heading,.route-heading { grid-template-columns: 1fr; gap: 22px; }
  .life-gallery { grid-template-columns: 1fr 1fr; }
  .life-frame:last-child { grid-column: 1/-1; min-height: 430px; margin-top: 0; }
  .mentor-dream-grid { grid-template-columns: 1fr 1fr; gap: 42px; }
}

@media (max-width: 640px) {
  .cinema-hero { height: 132svh; min-height: 930px; }
  .cinema-stage { min-height: 680px; }
  .cinema-atmosphere { inset: 0; }
  .cinema-atmosphere > img { content: url("assets/gardens-by-the-bay-hero.webp"); object-position: center 58%; filter: saturate(.94) brightness(.72); }
  .cinema-word { top: 34%; font-size: 13.5vw; letter-spacing: -.05em; }
  .cinema-word-back { color: rgba(255,250,238,.92); }
  .cinema-copy { left: 18px; right: 18px; bottom: 82px; width: auto; padding: 0; }
  .cinema-copy h1 { max-width: 350px; font-size: clamp(37px,11vw,48px); }
  .cinema-copy > p:not(.cinema-kicker) { max-width: 330px; font-size: 13px; }
  .cinema-cta { width: 100%; }
  .cinema-scroll { display: none; }
  .life-dream,.mentor-dream,.route-dream { padding: 82px 0; }
  .life-heading h2,.mentor-dream-copy h2,.route-heading h2,.cinema-final h2 { font-size: clamp(34px,9.8vw,44px); }
  .life-gallery { width: calc(100% - 28px); grid-template-columns: 1fr; margin-top: 44px; }
  .life-frame,.life-frame-main,.life-frame:last-child { grid-column: auto; min-height: 440px; margin-top: 0; }
  .mentor-dream-grid { grid-template-columns: 1fr; gap: 44px; }
  .mentor-dream-visual { min-height: 500px; }
  .mentor-dream-copy > p:not(.section-number) { font-size: 16px; }
  .mentor-proof { grid-template-columns: 1fr; }
  .mentor-proof span { grid-template-columns: 34px 1fr; align-items: center; }
  .mentor-proof span + span { border-left: 0; border-top: 1px solid rgba(77,58,26,.15); }
  .route-line { grid-template-columns: 1fr; margin-top: 44px; }
  .route-line li { min-height: 180px; }
  .route-line li + li { border-left: 0; border-top: 1px solid rgba(77,58,26,.16); }
  .cinema-final { min-height: 78svh; }
  .cinema-final-image img { object-position: 58% center; }
  .cinema-final-image::after { background: linear-gradient(180deg,rgba(8,20,29,.28),rgba(8,20,29,.82)); }
}

@media (prefers-reduced-motion: reduce) {
  .cinema-atmosphere,.cinema-monument,.cinema-word,.cinema-copy { transform: none !important; opacity: 1 !important; }
  .mentor-ring::after { animation: none; }
  .testimonial-marquee { overflow-x: auto; mask-image: none; }
  .testimonial-track { animation: none; }
  .testimonial-duplicate { display: none; }
  .motion-toggle { display: none; }
}

/* Final alignment refinements */
.mentor-route { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin: 17px 0 0; color: var(--navy-900); font-size: 12px; font-weight: 800; }
.mentor-route span { padding: 7px 10px; border: 1px solid rgba(143,101,18,.17); border-radius: 8px; background: var(--cream-100); }
.mentor-route i { color: #c18e26; font-style: normal; }
.journey-client-page .split-heading { grid-template-columns: 1fr; gap: 20px; align-items: start; }
.journey-client-page .split-heading > p { max-width: 760px; margin: 0; padding-left: 18px; border-left: 3px solid var(--gold-500); font-size: 16px; line-height: 1.65; }
.journey-client-page .journey-section .split-heading { max-width: 1050px; gap: 14px; margin: 0 auto 34px; }
.journey-client-page .journey-section .split-heading h2 { max-width: none; font-size: clamp(34px,3.2vw,46px); line-height: 1.06; }
.journey-client-page .journey-section .split-heading > p { max-width: 850px; padding-left: 16px; font-size: 15px; line-height: 1.55; }
.journey-client-page .path-example-grid { max-width: 1050px; gap: 16px; margin-inline: auto; }
.journey-client-page .path-example { height: auto; min-height: 352px; display: flex; flex-direction: column; padding: 22px 24px; }
.journey-client-page .path-example > span { min-height: 30px; display: flex; align-items: center; font-size: 10px; }
.journey-client-page .path-example h3 { min-height: 52px; display: flex; align-items: flex-start; margin: 15px 0 10px; font-size: 20px; line-height: 1.22; }
.journey-client-page .path-example p { min-height: 110px; margin: 0; font-size: 13px; line-height: 1.55; }
.journey-client-page .pathway-chain { min-height: 74px; align-content: flex-start; gap: 6px; margin-top: auto; padding-top: 16px; }
.journey-client-page .pathway-chain span { padding: 6px 8px; border-radius: 8px; font-size: 10px; }
.contact-method:hover { transform: translateY(-4px); border-color: rgba(217,169,54,.66); box-shadow: 0 18px 38px rgba(77,55,18,.1); }

@media (max-width: 900px) {
  .contact-side { grid-template-columns: 1fr; gap: 26px; }
  .contact-methods { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .contact-side { padding: 20px; }
  .testimonial-card { width: 244px; min-height: 176px; flex-basis: 244px; padding: 19px; }
  .journey-client-page .journey-section .split-heading { margin-bottom: 26px; }
  .journey-client-page .journey-section .split-heading h2 { font-size: clamp(32px,10vw,42px); }
  .journey-client-page .path-example { min-height: 0; padding: 21px; }
  .journey-client-page .path-example > span,
  .journey-client-page .path-example h3,
  .journey-client-page .path-example p,
  .journey-client-page .pathway-chain { min-height: 0; }
  .life-gallery { width: calc(100% - 40px); }
  .route-line li { min-height: 150px; gap: 20px; padding: 24px; }
  .closing-cta h2 { font-size: clamp(34px,9.6vw,44px); }
}

/* Why Singapore */
.why-singapore-page { background: #fffdf8; }
.sg-hero { padding: 160px 0 80px; overflow: hidden; background: radial-gradient(circle at 86% 12%,rgba(234,185,77,.18),transparent 28%),#fffdf8; }
.sg-hero-copy { display: grid; grid-template-columns: 1fr; gap: 0; align-items: start; }
.sg-hero-copy .eyebrow { grid-column: auto; }
.sg-hero-copy h1 { max-width: 920px; margin: 0; color: var(--navy-900); font: 700 clamp(48px,6.2vw,88px)/.98 var(--font-display); letter-spacing: -.055em; text-wrap: balance; }
.sg-hero-copy h1 em { color: var(--gold-500); font-style: normal; }
.sg-hero-copy > p:last-child { max-width: 760px; margin: 26px 0 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.sg-landscape { position: relative; width: 100%; height: 100svh; min-height: 680px; margin-top: 58px; overflow: hidden; border-radius: 0; box-shadow: none; }
.sg-landscape img { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.sg-landscape::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 42%,rgba(7,25,39,.72)); }
.sg-landscape > div { position: absolute; z-index: 2; inset: 0; display: grid; place-items: center; padding: 32px; color: #fff; text-align: center; }
.sg-landscape strong { max-width: 820px; text-align: center; font: 700 clamp(28px,4vw,54px)/1.06 var(--font-display); letter-spacing: -.04em; text-wrap: balance; text-shadow: 0 8px 28px rgba(5,20,30,.46); }
.sg-benefits { background: #faf4e8; }
.sg-benefits .split-heading { grid-template-columns: 1fr; gap: 18px; align-items: start; }
.sg-benefits .split-heading > p { max-width: 780px; margin: 0; }
.sg-benefit-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; margin-top: 48px; }
.sg-benefit-card { min-height: 190px; display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 30px; border: 1px solid rgba(32,57,74,.14); border-top: 4px solid var(--gold-500); border-radius: 20px; background: rgba(255,255,255,.84); box-shadow: 0 14px 36px rgba(65,46,15,.05); transition: transform .3s ease,box-shadow .3s ease; }
.sg-benefit-card:hover { transform: translateY(-5px); box-shadow: 0 22px 46px rgba(65,46,15,.1); }
.sg-benefit-card > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--gold-500); font-size: 10px; font-weight: 800; }
.sg-benefit-card h3 { margin: 3px 0 10px; color: var(--navy-900); font: 700 22px/1.15 var(--font-display); letter-spacing: -.03em; }
.sg-benefit-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.sg-experience { background: #fffdf8; }
.sg-experience-heading { max-width: 760px; }
.sg-experience-heading h2,.sg-ai h2,.sg-family h2 { margin: 18px 0 0; color: var(--navy-900); font: 700 clamp(40px,4.8vw,66px)/1.02 var(--font-display); letter-spacing: -.05em; text-wrap: balance; }
.sg-experience-heading h2 em,.sg-ai h2 em,.sg-family h2 em { color: var(--gold-500); font-style: normal; }
.sg-experience-heading > p:last-child { max-width: 640px; margin: 22px 0 0; color: var(--muted); font-size: 17px; }
.sg-experience-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); margin-top: 48px; border-block: 1px solid var(--line); }
.sg-experience-grid article { min-height: 240px; padding: 30px 25px; }
.sg-experience-grid article + article { border-left: 1px solid var(--line); }
.sg-experience-grid b { display: block; color: var(--navy-900); font: 700 21px/1.2 var(--font-display); }
.sg-experience-grid p { margin: 18px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.sg-note { margin: 20px 0 0; color: var(--muted); font-size: 12px; }
.sg-ai { padding-top: 0; background: #fffdf8; }
.sg-ai-panel { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(50px,8vw,120px); padding: clamp(42px,6vw,78px); border-radius: 28px; color: #fff; background: radial-gradient(circle at 82% 20%,rgba(229,176,61,.24),transparent 30%),#102b40; box-shadow: 0 28px 64px rgba(12,37,55,.16); }
.sg-ai .eyebrow { color: #f2c45b; }
.sg-ai h2 { color: #fff; }
.sg-ai-copy > p { margin: 5px 0 24px; color: rgba(255,255,255,.76); font-size: 17px; line-height: 1.7; }
.sg-ai-copy ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.sg-ai-copy li { position: relative; padding-left: 25px; color: #fff; font-weight: 600; }
.sg-ai-copy li::before { content: "↗"; position: absolute; left: 0; color: #f2c45b; }
.sg-ai-copy small { display: block; margin-top: 28px; color: rgba(255,255,255,.55); line-height: 1.5; }
.sg-family { background: #faf4e8; }
.sg-family-layout { display: grid; grid-template-columns: .8fr 1fr; gap: 40px 90px; align-items: start; }
.sg-family-points { display: grid; }
.sg-family-points p { display: grid; grid-template-columns: 42px 1fr; gap: 4px 16px; margin: 0; padding: 22px 0; border-bottom: 1px solid var(--line); }
.sg-family-points span { grid-row: 1/3; color: var(--gold-500); font-size: 11px; font-weight: 800; }
.sg-family-points strong { color: var(--navy-900); font: 700 18px/1.2 var(--font-display); }
.sg-family-points small { color: var(--muted); font-size: 14px; line-height: 1.6; }
.sg-family .button { grid-column: 1/-1; justify-self: center; margin-top: 8px; }

@media (max-width: 900px) {
  .sg-hero-copy,.sg-ai-panel,.sg-family-layout { grid-template-columns: 1fr; }
  .sg-hero-copy > p:last-child { max-width: 680px; }
  .sg-experience-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .sg-experience-grid article:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .sg-experience-grid article:nth-child(4) { border-top: 1px solid var(--line); }
  .sg-family .button { grid-column: 1; justify-self: center; }
}

@media (max-width: 1100px) and (min-width: 901px) {
  .contact-side { grid-template-columns: 1fr; gap: 28px; }
  .contact-intro { max-width: 650px; }
}

@media (max-width: 640px) {
  .brand-copy strong { max-width: 185px; font-size: 10px; white-space: normal; }
  .sg-hero { padding: 120px 0 62px; }
  .sg-hero-copy { gap: 22px; }
  .sg-hero-copy h1 { font-size: clamp(40px,12vw,56px); }
  .sg-hero-copy > p:last-child { font-size: 16px; }
  .sg-landscape { height: 100svh; min-height: 620px; margin-top: 38px; border-radius: 0; }
  .sg-landscape img { object-position: 52% center; }
  .sg-landscape > div { inset: 0; padding: 24px; }
  .sg-landscape strong { text-align: center; font-size: clamp(30px,9vw,42px); }
  .sg-benefit-grid { grid-template-columns: 1fr; margin-top: 34px; }
  .sg-benefit-card { min-height: 0; padding: 23px 20px; }
  .sg-experience-grid { grid-template-columns: 1fr; }
  .sg-experience-grid article { min-height: 0; padding: 25px 8px; }
  .sg-experience-grid article + article,.sg-experience-grid article:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .sg-ai-panel { padding: 30px 22px; }
  .sg-family-layout { gap: 32px; }
}
