/* =========================================================
   Safe Care Trust International: site styles
   ========================================================= */

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/fraunces-latin-opsz-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/fraunces-latin-opsz-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/plus-jakarta-sans-latin-wght-normal.woff2") format("woff2");
}


:root {
  --bg: #ffffff;
  --bg-2: #f3f7fc;
  --surface: #ffffff;
  --ink: #0c1f33;
  --ink-2: #44566b;
  --ink-3: #6c7d90;
  /* SCTI brand blue: #039be5 (buttons and logo on the official website) */
  --brand-950: #0288d1;
  --brand-900: #039be5;
  --brand-800: #0288d1;
  --brand-700: #0277bd;
  --brand-500: #039be5;
  --accent: #81d4fa;
  --accent-soft: #e1f5fe;
  --sand: #e9dcc6;
  --coral: #f2765a;
  --wa: #25d366;
  --line: rgba(12, 31, 51, .1);
  --line-light: rgba(255, 255, 255, .12);

  --f-display: "Fraunces", Georgia, "Times New Roman", serif;
  --f-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --r-sm: 12px;
  --r: 22px;
  --r-lg: 32px;
  --shadow-sm: 0 6px 20px -10px rgba(1, 70, 127, .25);
  --shadow: 0 30px 60px -30px rgba(1, 70, 127, .38);
  --shadow-lg: 0 50px 100px -40px rgba(1, 50, 92, .5);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --header-h: 76px;
  --gutter: 20px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
::selection { background: var(--accent); color: var(--brand-950); }
:focus-visible { outline: 2px solid var(--brand-500); outline-offset: 3px; border-radius: 6px; }

svg {
  width: 1.25em; height: 1.25em;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

main { overflow-x: clip; }
.container { width: 100%; max-width: 1240px; margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(80px, 11vw, 140px); position: relative; }

/* ---------- Type ---------- */
.h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  font-variation-settings: "opsz" 144;
  text-wrap: balance;
}
.h2 em, .hero__title em, .footer__cta em {
  font-style: italic;
  font-weight: 400;
  color: var(--brand-500);
}
.h2--light { color: #fff; }
.h2--light em { color: var(--accent); }

.kicker {
  display: inline-block;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-700);
  margin-bottom: 16px;
}
.kicker--light { color: var(--accent); }

.section-head {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px 64px; align-items: end;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.section-head__aside { color: var(--ink-2); max-width: 46ch; }
.section-head--center { grid-template-columns: 1fr; text-align: center; justify-items: center; }
.section-head--center .h2 { max-width: 20ch; }

/* ---------- Buttons ---------- */
.btn {
  --bg-btn: var(--brand-900); --fg-btn: #fff;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 22px; min-height: 46px;
  border-radius: 999px;
  background: var(--bg-btn); color: var(--fg-btn);
  font-weight: 600; font-size: .95rem; line-height: 1.2;
  white-space: nowrap;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease), background-color .3s, color .3s;
  isolation: isolate; overflow: hidden;
}
.btn svg { width: 18px; height: 18px; transition: transform .35s var(--ease-out); }
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(120px circle at var(--bx, 50%) var(--by, 50%), rgba(255, 255, 255, .28), transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.btn:hover::after { opacity: 1; }
.btn:hover svg:last-child:not(:first-child) { transform: translateX(4px); }
.btn:active { transform: scale(.97); }
.btn--lg { padding: 16px 28px; min-height: 56px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--primary { --bg-btn: var(--brand-500); box-shadow: 0 14px 30px -14px rgba(3, 155, 229, .75); }
.btn--primary:hover { --bg-btn: var(--brand-800); box-shadow: 0 20px 40px -16px rgba(3, 155, 229, .85); }
.btn--accent { --bg-btn: #ffffff; --fg-btn: var(--brand-700); box-shadow: 0 14px 34px -14px rgba(1, 50, 92, .45); }
.btn--accent:hover { --bg-btn: var(--accent-soft); }
.btn--outline { --bg-btn: transparent; --fg-btn: var(--brand-700); box-shadow: inset 0 0 0 1.5px rgba(3, 155, 229, .45); }
.btn--outline:hover { box-shadow: inset 0 0 0 1.5px var(--brand-500); --bg-btn: var(--accent-soft); }
.btn--ghost { --bg-btn: transparent; --fg-btn: var(--brand-700); }
.btn--ghost:hover { --bg-btn: rgba(1, 70, 127, .06); }
.btn--light { --bg-btn: #fff; --fg-btn: var(--brand-700); box-shadow: inset 0 0 0 1px var(--line); }
.btn--glass { --bg-btn: rgba(255, 255, 255, .08); --fg-btn: #fff; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22); }
.btn--glass:hover { --bg-btn: rgba(255, 255, 255, .16); }

/* ---------- Preloader ---------- */
.preloader { display: none; }
.js .preloader {
  display: grid; place-items: center;
  position: fixed; inset: 0; z-index: 200;
  background: #fff;
  transition: opacity .45s var(--ease), visibility .45s;
}
.js.is-loaded .preloader { opacity: 0; visibility: hidden; }
.preloader__mark { position: relative; display: grid; place-items: center; width: 132px; height: 132px; }
.preloader__mark::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 3px solid rgba(3, 155, 229, .15); border-top-color: var(--brand-500); animation: spin 1s linear infinite; }
.preloader__mark img { width: 96px; height: 96px; border-radius: 50%; animation: pop .7s var(--ease-out) both; }
@keyframes pop { from { opacity: 0; transform: scale(.7); } to { opacity: 1; transform: none; } }

/* ---------- Scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 120; pointer-events: none; }
.scroll-progress span {
  display: block; height: 100%; transform-origin: 0 50%; transform: scaleX(var(--sp, 0));
  background: linear-gradient(90deg, var(--brand-700), var(--accent));
}

/* ---------- Top bar ---------- */
.topbar { background: var(--brand-500); color: #fff; font-size: .82rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.topbar__msg { display: flex; align-items: center; gap: 10px; }
.topbar__links { display: flex; align-items: center; gap: 22px; }
.topbar__links a { display: inline-flex; align-items: center; gap: 7px; transition: color .2s; }
.topbar__links a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.topbar__links svg { width: 14px; height: 14px; }
.topbar__social { display: inline-flex; gap: 14px; padding-left: 20px; border-left: 1px solid rgba(255, 255, 255, .35); }
.dot-live { position: relative; width: 8px; height: 8px; border-radius: 50%; background: #fff; }
.dot-live::after, .eyebrow__dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: inherit; animation: live 2s ease-out infinite; }
@keyframes live { from { transform: scale(1); opacity: .7; } 70%, to { transform: scale(2.6); opacity: 0; } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  transition: background-color .3s, box-shadow .3s;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: var(--header-h); }
.header.is-scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -20px rgba(1, 70, 127, .35);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark {
  display: grid; place-items: center;
  width: 50px; height: 50px; border-radius: 50%;
  background: #fff; box-shadow: 0 6px 16px -8px rgba(1, 70, 127, .5);
  transition: transform .5s var(--ease-out);
}
.brand__mark img { width: 100%; height: 100%; border-radius: 50%; }
.brand:hover .brand__mark { transform: rotate(-12deg) scale(1.05); }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__text strong { font-family: var(--f-display); font-weight: 600; font-size: 1.22rem; letter-spacing: -.01em; }
.brand__text small { font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.brand--light .brand__mark { box-shadow: 0 0 0 3px rgba(255, 255, 255, .15); }
.brand--light .brand__text strong { color: #fff; }
.brand--light .brand__text small { color: rgba(255, 255, 255, .55); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > a {
  position: relative; padding: 8px 13px; border-radius: 999px; white-space: nowrap;
  font-size: .92rem; font-weight: 500; color: var(--ink-2);
  transition: color .25s, background-color .25s;
}
.nav > a::after {
  content: ""; position: absolute; left: 50%; bottom: 2px; width: 5px; height: 5px; border-radius: 50%;
  background: var(--brand-500); transform: translateX(-50%) scale(0); transition: transform .35s var(--ease-out);
}
.nav > a:hover { color: var(--brand-700); background: rgba(1, 70, 127, .05); }
.nav > a[aria-current="page"] { color: var(--brand-700); }
.nav > a[aria-current="page"]::after, .nav__group.is-current > .nav__toggle::after { transform: translateX(-50%) scale(1); }

.nav__group { position: relative; }
.nav__toggle {
  position: relative; display: inline-flex; align-items: center; gap: 4px;
  padding: 8px 10px 8px 13px; border-radius: 999px; white-space: nowrap;
  font-size: .92rem; font-weight: 500; color: var(--ink-2);
  transition: color .25s, background-color .25s;
}
.nav__toggle::after {
  content: ""; position: absolute; left: 50%; bottom: 2px; width: 5px; height: 5px; border-radius: 50%;
  background: var(--brand-500); transform: translateX(-50%) scale(0); transition: transform .35s var(--ease-out);
}
.nav__toggle svg { width: 16px; height: 16px; transition: transform .35s var(--ease-out); }
.nav__group.is-current > .nav__toggle { color: var(--brand-700); }
.nav__menu {
  position: absolute; top: calc(100% + 10px); left: 50%; min-width: 290px;
  display: grid; gap: 2px; padding: 10px; border-radius: 20px;
  background: var(--surface); box-shadow: var(--shadow-lg), inset 0 0 0 1px var(--line);
  opacity: 0; visibility: hidden; transform: translate(-50%, 8px);
  transition: opacity .25s, visibility .25s, transform .35s var(--ease-out);
}
.nav__menu::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.nav__menu a {
  display: flex; align-items: center; gap: 14px; padding: 10px 12px; border-radius: 14px;
  font-weight: 600; font-size: .93rem; line-height: 1.3; color: var(--ink);
  transition: background-color .2s;
}
.nav__menu a > svg { width: 40px; height: 40px; padding: 10px; border-radius: 12px; background: var(--accent-soft); color: var(--brand-700); transition: background-color .25s, color .25s; }
.nav__menu a span { display: flex; flex-direction: column; }
.nav__menu small { font-weight: 500; font-size: .78rem; color: var(--ink-3); }
.nav__menu a:hover, .nav__menu a[aria-current="page"] { background: var(--bg-2); }
.nav__menu a:hover > svg, .nav__menu a[aria-current="page"] > svg { background: var(--brand-900); color: #fff; }
@media (hover: hover) and (min-width: 1141px) {
  .nav__group:hover > .nav__menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
  .nav__group:hover > .nav__toggle { color: var(--brand-700); background: rgba(1, 70, 127, .05); }
  .nav__group:hover > .nav__toggle svg { transform: rotate(180deg); }
}
@media (min-width: 1141px) {
  .nav__group.is-open > .nav__menu, .nav__group:focus-within > .nav__menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
  .nav__group.is-open > .nav__toggle svg { transform: rotate(180deg); }
}
.nav__mobile-cta { display: none; }
.header__actions { display: flex; align-items: center; gap: 8px; }
.burger { display: none; width: 46px; height: 46px; border-radius: 50%; place-items: center; background: var(--brand-900); color: #fff; }
.burger svg { width: 22px; height: 22px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h) - 40px);
  display: flex; align-items: center;
  padding-block: clamp(40px, 6vw, 80px) clamp(90px, 10vw, 130px);
  margin-top: calc(var(--header-h) * -1);
  padding-top: calc(var(--header-h) + clamp(30px, 5vw, 70px));
  isolation: isolate; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .22; }
.blob--1 { width: 520px; height: 520px; background: #d4effd; top: -140px; right: -80px; }
.blob--2 { width: 440px; height: 440px; background: #e1f5fe; bottom: -160px; left: -120px; }
.blob--3 { width: 300px; height: 300px; background: #b3e5fc; top: 40%; left: 38%; opacity: .35; }
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-30px, 30px) scale(.95); }
}
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  opacity: .35;
}
.hero__inner { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(40px, 6vw, 80px); align-items: center; }

.eyebrow {
  display: flex; width: fit-content; align-items: center; gap: 10px;
  font-family: var(--f-body); letter-spacing: 0; line-height: 1.4;
  padding: 8px 16px 8px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, .7); box-shadow: inset 0 0 0 1px var(--line), var(--shadow-sm);
  font-size: .8rem; font-weight: 600; color: var(--ink-2);
  margin-bottom: 26px;
}
.eyebrow__dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--brand-500); }

.hero__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  line-height: 1;
  letter-spacing: -.025em;
  font-variation-settings: "opsz" 144;
  margin-bottom: 22px;
  text-wrap: balance;
}
.hero__title .split { display: block; }
.hero__title em { position: relative; display: inline-block; }
.hero__title em::after {
  content: ""; position: absolute; left: 2%; right: 2%; bottom: .06em; height: .09em; border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), var(--brand-500));
  transform-origin: 0 50%; transform: scaleX(0);
  transition: transform .9s .75s var(--ease-out);
}
.is-loaded .hero__title em::after { transform: scaleX(1); }

/* split words */
.split .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }
.split .w > span { display: inline-block; transform: translateY(105%); transition: transform 1s var(--ease-out); transition-delay: calc(var(--i) * 60ms + 120ms); }
.is-loaded .split .w > span { transform: none; }
html:not(.js) .split .w > span { transform: none; }

.hero__rotator { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 500; color: var(--ink-2); margin-bottom: 18px; }
.rotator { position: relative; display: inline-grid; vertical-align: bottom; color: var(--brand-700); font-weight: 700; }
.rotator__word {
  grid-area: 1 / 1; white-space: nowrap;
  opacity: 0; transform: translate3d(0, 70%, 0);
  transition: opacity .45s var(--ease), transform .55s var(--ease-out);
}
.rotator__word.is-active { opacity: 1; transform: none; }
.rotator__word.is-leaving { opacity: 0; transform: translate3d(0, -70%, 0); }
html:not(.js) .rotator__word:not(.is-active) { display: none; }

.hero__lead { color: var(--ink-2); font-size: clamp(1rem, 1.3vw, 1.08rem); max-width: 56ch; margin-bottom: 32px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: .86rem; color: var(--ink-2); font-weight: 500; }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust svg { width: 18px; height: 18px; color: var(--brand-700); }

.hero__visual { position: relative; padding: 30px 30px 40px; }
.media {
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, #eaf7fe, #c8ebfb);
}
.media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; transition: transform 1.2s var(--ease-out); }

.hero__frame {
  aspect-ratio: 4 / 4.8;
  border-radius: 260px 260px var(--r-lg) var(--r-lg);
  box-shadow: var(--shadow-lg);
}

.float-card {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px 12px 12px; border-radius: 18px;
  background: rgba(255, 255, 255, .96); -webkit-
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, .6);
  line-height: 1.25;
}
.float-card > * { animation: bob 6s ease-in-out infinite; }
.float-card strong { display: block; font-size: .95rem; }
.float-card small { color: var(--ink-3); font-size: .78rem; }
.float-card__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--brand-700); }
.float-card__icon--sand { background: #f5ead8; color: #9a6b2c; }
.float-card__icon svg { width: 22px; height: 22px; }
.float-card--a { top: 18%; left: -6%; }
.float-card--b { top: 46%; right: -4%; }
.float-card--c { bottom: 6%; left: 4%; }
.float-card--b > * { animation-delay: -2s; }
.float-card--c > * { animation-delay: -4s; }
@keyframes bob { 50% { transform: translateY(-8px); } }

.ring { position: relative; width: 48px; height: 48px; display: grid; place-items: center; }
.ring svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.ring circle { fill: none; stroke: var(--accent-soft); stroke-width: 4; }
.ring .ring__bar { stroke: var(--brand-500); stroke-dasharray: 113; stroke-dashoffset: 113; transition: stroke-dashoffset 2s 1.2s var(--ease-out); }
.is-loaded .ring .ring__bar { stroke-dashoffset: 0; }
.ring span { font-family: var(--f-display); font-weight: 600; font-size: .95rem; color: var(--brand-700); }

.hero__scroll {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  width: 28px; height: 46px; border-radius: 99px; box-shadow: inset 0 0 0 2px rgba(1, 70, 127, .25);
}
.hero__scroll span { position: absolute; left: 50%; top: 10px; width: 4px; height: 9px; margin-left: -2px; border-radius: 4px; background: var(--brand-700); animation: wheel 1.8s ease-in-out infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 80%, 100% { opacity: 0; transform: translateY(14px); } }

/* ---------- Stats ---------- */
.stats { position: relative; z-index: 2; margin-top: -56px; }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--surface); border-radius: var(--r-lg); box-shadow: var(--shadow), inset 0 0 0 1px var(--line);
  padding-block: 10px;
}
.stat { padding: 26px 28px; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 24%; bottom: 24%; width: 1px; background: var(--line); }
.stat__num {
  display: flex; align-items: baseline; gap: 4px;
  font-family: var(--f-display); font-weight: 500; font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -.03em;
  color: var(--brand-700); margin-bottom: 8px;
}
.stat sup { font-family: var(--f-body); font-size: .9rem; font-weight: 600; color: var(--brand-700); top: 0; letter-spacing: 0; }
.stat > p:last-child { color: var(--ink-2); font-size: .9rem; }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(48px, 7vw, 100px); align-items: center; }
.about__media { position: relative; padding: 0 12% 14% 0; }
.media--tall { aspect-ratio: 4 / 5; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.media--small {
  position: absolute; right: 0; bottom: 0; width: 48%; aspect-ratio: 1;
  border-radius: var(--r); border: 8px solid var(--bg); box-shadow: var(--shadow);
}
.about__badge {
  position: absolute; z-index: 3; left: -26px; bottom: 18%;
  width: 124px; height: 124px; border-radius: 50%;
  background: var(--brand-500); color: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow);
}
.about__badge-text { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 18s linear infinite; stroke: none; }
.about__badge-text text { fill: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: 2.4px; font-family: var(--f-body); }
.about__badge-core { font-family: var(--f-display); font-size: 1.4rem; font-weight: 600; }
@keyframes spin { to { transform: rotate(360deg); } }

.about__copy .h2 { margin-bottom: 24px; }
.about__copy > p { color: var(--ink-2); margin-bottom: 16px; }
.mission {
  position: relative; margin: 30px 0; padding: 26px 28px 26px 30px;
  background: var(--surface); border-radius: var(--r); box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line);
}
.mission::before { content: ""; position: absolute; left: 0; top: 22px; bottom: 22px; width: 4px; border-radius: 0 4px 4px 0; background: linear-gradient(var(--accent), var(--brand-700)); }
.mission__label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--brand-700); margin-bottom: 8px; }
.mission p { font-family: var(--f-display); font-size: 1.2rem; line-height: 1.45; font-style: italic; color: var(--brand-700); }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.checks li { display: flex; gap: 10px; align-items: flex-start; font-weight: 500; font-size: .94rem; }
.checks svg { width: 22px; height: 22px; padding: 4px; border-radius: 50%; background: var(--accent-soft); color: var(--brand-700); stroke-width: 3; margin-top: 1px; }

/* ---------- Marquee ---------- */
.marquee { background: var(--brand-500); color: #fff; overflow: hidden; padding-block: 26px; transform: rotate(-1.2deg) scale(1.02); margin-block: 10px; }
.marquee__track { display: flex; align-items: center; gap: 36px; padding-right: 36px; width: max-content; animation: marquee 38s linear infinite; }
.marquee span { font-family: var(--f-display); font-style: italic; font-size: clamp(1.5rem, 3vw, 2.4rem); white-space: nowrap; color: #fff; text-shadow: 0 1px 2px rgba(1, 50, 92, .25); }
.marquee span:nth-of-type(even) { color: #fff; font-style: normal; font-weight: 500; }
.marquee i { width: 14px; height: 14px; background: var(--accent); clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%); flex-shrink: 0; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }


/* ---------- Services ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  --mx: 50%; --my: 0%;
  position: relative; display: flex; flex-direction: column;
  padding: 30px 26px 26px; border-radius: var(--r);
  background: var(--surface); box-shadow: inset 0 0 0 1px var(--line);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease);
  isolation: isolate; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(360px circle at var(--mx) var(--my), rgba(129, 212, 250, .22), transparent 55%);
  opacity: 0; transition: opacity .4s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow), inset 0 0 0 1px rgba(3, 155, 229, .35); }
.card:hover::before { opacity: 1; }
.card__icon {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; margin-bottom: 22px;
  background: var(--accent-soft); color: var(--brand-700);
  transition: transform .6s var(--ease-out), background-color .4s, color .4s;
}
.card__icon svg { width: 26px; height: 26px; }
.card:hover .card__icon { transform: rotate(-10deg) scale(1.08); background: var(--brand-900); color: #fff; }
.card h3 { font-family: var(--f-display); font-weight: 500; font-size: 1.32rem; line-height: 1.2; margin-bottom: 10px; letter-spacing: -.01em; }
.card p { color: var(--ink-2); font-size: .93rem; margin-bottom: 20px; }
.card__tag { margin-top: auto; align-self: flex-start; padding: 5px 12px; border-radius: 99px; background: var(--bg-2); font-size: .74rem; font-weight: 600; color: var(--ink-2); }

/* ---------- Program ---------- */
.program { background: var(--brand-950); color: rgba(255, 255, 255, .78); overflow: clip; }
.program::before {
  content: ""; position: absolute; width: 700px; height: 700px; border-radius: 50%; top: -260px; left: -240px;
  background: radial-gradient(circle, rgba(129, 212, 250, .16), transparent 65%); pointer-events: none;
}
.program__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(48px, 7vw, 110px); position: relative; }
.program__sticky { position: sticky; top: calc(var(--header-h) + 40px); }
.program__sticky .h2 { margin-bottom: 22px; }
.program__sticky > p { margin-bottom: 34px; max-width: 46ch; }
.program__meter { margin-bottom: 34px; }
.program__meter-bar { height: 8px; border-radius: 99px; background: rgba(255, 255, 255, .08); overflow: hidden; margin-bottom: 10px; }
.program__meter-bar span { display: block; height: 100%; width: 100%; transform-origin: 0 50%; transform: scaleX(var(--p, 0)); border-radius: inherit; background: linear-gradient(90deg, var(--brand-500), var(--accent)); transition: transform .2s linear; }
.program__meter-labels { display: flex; justify-content: space-between; font-size: .75rem; font-weight: 600; color: rgba(255, 255, 255, .45); letter-spacing: .04em; }

.timeline { position: relative; display: grid; gap: 22px; --progress: 0; }
.timeline::before, .timeline::after {
  content: ""; position: absolute; left: 31px; top: 36px; bottom: 36px; width: 2px; border-radius: 2px;
}
.timeline::before { background: rgba(255, 255, 255, .1); }
.timeline::after { background: linear-gradient(var(--accent), var(--brand-500)); transform-origin: 0 0; transform: scaleY(var(--progress)); }
.stage { position: relative; display: grid; grid-template-columns: 64px 1fr; gap: 22px; }
.stage__num {
  position: relative; z-index: 1;
  display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%;
  background: var(--brand-950); box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .14);
  font-family: var(--f-display); font-weight: 600; font-size: 1.2rem; color: rgba(255, 255, 255, .6);
  transition: background-color .5s, color .5s, box-shadow .5s, transform .6s var(--ease-out);
}
.stage__num svg { width: 24px; height: 24px; }
.stage.is-active .stage__num { background: var(--accent); color: var(--brand-950); box-shadow: 0 0 0 8px rgba(129, 212, 250, .14); transform: scale(1.05); }
.stage__body {
  padding: 28px 30px; border-radius: var(--r);
  background: rgba(255, 255, 255, .035); box-shadow: inset 0 0 0 1px var(--line-light);
  transition: background-color .5s, box-shadow .5s, transform .6s var(--ease-out);
}
.stage.is-active .stage__body { background: rgba(255, 255, 255, .07); box-shadow: inset 0 0 0 1px rgba(129, 212, 250, .3); }
.stage__days { font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.stage h3 { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.4rem, 2.2vw, 1.8rem); color: #fff; line-height: 1.15; margin-bottom: 12px; }
.stage p { font-size: .95rem; }
.stage strong { color: #fff; font-weight: 600; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.pills li { padding: 6px 14px; border-radius: 99px; font-size: .78rem; font-weight: 600; color: var(--accent); background: rgba(129, 212, 250, .08); box-shadow: inset 0 0 0 1px rgba(129, 212, 250, .22); }
.stage--after .stage__body { background: linear-gradient(135deg, rgba(129, 212, 250, .12), rgba(255, 255, 255, .02)); }

/* ---------- Approach ---------- */
.approach__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 100px); align-items: center; }
.approach__copy .h2 { margin-bottom: 22px; }
.approach__copy > p { color: var(--ink-2); margin-bottom: 30px; }
.modalities { display: flex; flex-wrap: wrap; gap: 10px; }
.modalities span {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 99px;
  background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); font-size: .88rem; font-weight: 600;
  transition: transform .35s var(--ease-out), box-shadow .35s, background-color .35s;
}
.modalities span:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(3, 155, 229, .4); }
.modalities svg { width: 18px; height: 18px; color: var(--brand-700); }

.orbit { --size: min(480px, 88vw); --r: calc(var(--size) / 2); position: relative; width: var(--size); aspect-ratio: 1; margin-inline: auto; }
.orbit__ring { position: absolute; border-radius: 50%; }
.orbit__ring--outer { inset: 0; border: 1.5px dashed rgba(2, 119, 189, .3); }
.orbit__ring--inner { inset: 22%; background: radial-gradient(circle, var(--accent-soft), transparent 70%); border: 1px solid rgba(2, 119, 189, .15); }
.orbit__core {
  position: absolute; inset: 32%; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  background: var(--brand-900); color: #fff; box-shadow: var(--shadow-lg), 0 0 0 12px rgba(129, 212, 250, .15);
}
.orbit__core svg { width: 30px; height: 30px; color: var(--accent); margin-bottom: 6px; }
.orbit__core strong { font-family: var(--f-display); font-weight: 500; font-size: 1.15rem; line-height: 1.1; }
.orbit__core small { font-size: .74rem; font-weight: 500; color: rgba(255, 255, 255, .92); }
.orbit__core::after { content: ""; position: absolute; inset: -12px; border-radius: 50%; border: 2px solid rgba(3, 155, 229, .25); animation: core-ring 3.2s ease-out infinite; }
@keyframes core-ring { from { transform: scale(.92); opacity: 1; } to { transform: scale(1.25); opacity: 0; } }
.orbit__spinner { position: absolute; inset: 0; animation: spin 48s linear infinite; }
.orbit:hover .orbit__spinner, .orbit:hover .orbit__node > div { animation-play-state: paused; }
.orbit__node { position: absolute; inset: 0; transform: rotate(var(--a)); pointer-events: none; }
.orbit__node > div {
  position: absolute; top: 0; left: 50%;
  translate: -50% -50%; rotate: calc(-1 * var(--a));
  animation: spin 48s linear infinite reverse;
  display: flex; align-items: center; gap: 8px; max-width: 190px;
  padding: 10px 16px 10px 10px; border-radius: 99px;
  background: var(--surface); box-shadow: var(--shadow), inset 0 0 0 1px var(--line);
  font-size: .84rem; font-weight: 600; line-height: 1.2; pointer-events: auto;
}
.orbit__node svg { width: 34px; height: 34px; padding: 8px; border-radius: 50%; background: var(--accent-soft); color: var(--brand-700); }

/* ---------- Facilities ---------- */
.facilities { background: var(--bg); border-top: 1px solid var(--line); }
.gallery { display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-template-rows: 240px 240px; gap: 16px; margin-bottom: 40px; }
.gallery .media { border-radius: var(--r); }
.media--g1 { grid-row: span 2; }
.media--g4 { grid-column: span 2; }
.gallery .media:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  padding: 8px 16px; border-radius: 99px; background: rgba(255, 255, 255, .95);
  font-size: .84rem; font-weight: 600; color: var(--brand-700);
  transition: transform .5s var(--ease-out);
}
.gallery .media:hover figcaption { transform: translateY(-4px); }




.amenities { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.amenity {
  display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-radius: 16px;
  background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); font-size: .88rem; font-weight: 600; line-height: 1.3;
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.amenity:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(3, 155, 229, .35); }
.amenity svg { width: 38px; height: 38px; padding: 9px; border-radius: 12px; background: var(--accent-soft); color: var(--brand-700); }

/* ---------- Steps ---------- */
.steps__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; counter-reset: s; }
.steps__list::before {
  content: ""; position: absolute; top: 64px; left: 12%; right: 12%; height: 2px;
  background-image: linear-gradient(90deg, rgba(2, 119, 189, .35) 50%, transparent 0); background-size: 12px 2px;
}
.step { position: relative; text-align: center; padding: 30px 22px; border-radius: var(--r); transition: background-color .4s, box-shadow .4s, transform .5s var(--ease-out); }
.step:hover { background: var(--surface); box-shadow: var(--shadow); transform: translateY(-6px); }
.step > svg {
  position: relative; width: 70px; height: 70px; padding: 20px; border-radius: 50%;
  background: var(--surface); color: var(--brand-700); box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line); margin: 0 auto 20px;
  transition: background-color .4s, color .4s;
}
.step:hover > svg { background: var(--brand-900); color: #fff; }
.step__n {
  position: absolute; top: 22px; left: calc(50% + 18px); z-index: 1;
  display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%;
  background: var(--brand-500); color: #fff; font-weight: 700; font-size: .8rem; box-shadow: 0 0 0 4px var(--bg);
}
.step h3 { font-family: var(--f-display); font-weight: 500; font-size: 1.3rem; margin-bottom: 8px; }
.step p { color: var(--ink-2); font-size: .92rem; }

/* ---------- Team ---------- */
.team { background: var(--bg); border-top: 1px solid var(--line); }
.team__leads { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.lead {
  display: grid; grid-template-columns: 180px 1fr; gap: 26px; align-items: center;
  padding: 18px; border-radius: var(--r-lg); background: var(--surface); box-shadow: inset 0 0 0 1px var(--line);
  transition: box-shadow .5s, transform .5s var(--ease-out);
}
.lead:hover { box-shadow: var(--shadow), inset 0 0 0 1px rgba(3, 155, 229, .3); transform: translateY(-4px); }
.lead__photo { aspect-ratio: 4 / 5; border-radius: var(--r); display: grid; place-items: center; }
.lead:hover .lead__photo img { transform: scale(1.05); }
.lead__initials { font-family: var(--f-display); font-size: 2.6rem; font-weight: 500; color: var(--brand-500); letter-spacing: -.02em; }
.lead__body { padding-right: 10px; }
.lead__role { font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-700); margin-bottom: 6px; }
.lead h3 { font-family: var(--f-display); font-weight: 500; font-size: 1.5rem; line-height: 1.15; margin-bottom: 4px; }
.lead__quals { font-size: .85rem; font-weight: 600; color: var(--ink-3); margin-bottom: 12px; }
.lead__body > p:last-child { color: var(--ink-2); font-size: .92rem; }

.roles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.role {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 16px;
  background: rgba(255, 255, 255, .6); box-shadow: inset 0 0 0 1px var(--line); font-weight: 600; font-size: .9rem;
  transition: background-color .3s, transform .4s var(--ease-out);
}
.role:hover { background: var(--surface); transform: translateY(-3px); }
.role svg { width: 36px; height: 36px; padding: 8px; border-radius: 50%; background: var(--brand-900); color: #fff; }

/* ---------- Goals ---------- */
.goals { background: linear-gradient(160deg, var(--brand-900), var(--brand-950)); color: rgba(255, 255, 255, .78); overflow: hidden; }
.goals::after {
  content: ""; position: absolute; right: -200px; bottom: -200px; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(129, 212, 250, .14), transparent 65%);
}
.goals__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 6vw, 90px); align-items: start; position: relative; z-index: 1; }
.goals__grid .h2 { margin-bottom: 22px; }
.goals__lead { max-width: 44ch; }
.goals__list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
.goals__list li {
  display: flex; gap: 16px; align-items: baseline; padding: 20px 0; border-bottom: 1px solid var(--line-light);
  color: #fff; font-size: 1.02rem; font-weight: 500; line-height: 1.4;
  transition: padding-left .4s var(--ease-out), color .3s;
}
.goals__list li:hover { padding-left: 8px; color: var(--accent); }
.goals__list span { font-family: var(--f-display); font-style: italic; color: var(--accent); font-size: .95rem; }

/* ---------- Media / video ---------- */
.media-sec__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.video { position: relative; aspect-ratio: 16 / 10; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: linear-gradient(145deg, var(--brand-500), var(--brand-800)); }
.video__poster { position: absolute; inset: 0; }
.video__poster::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(2, 136, 209, 0) 38%, rgba(1, 45, 80, .6) 66%, rgba(1, 38, 68, .94)); }
.video__play {
  position: absolute; z-index: 3; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: grid; place-items: center; width: 92px; height: 92px; border-radius: 50%;
  background: #fff; color: var(--brand-500); transition: transform .5s var(--ease-out);
}
.video__play:hover { transform: translate(-50%, -50%) scale(1.08); }
.video__play svg { width: 30px; height: 30px; margin-left: 4px; }
.video__pulse, .video__pulse::after { position: absolute; inset: 0; border-radius: 50%; border: 2px solid #fff; animation: ripple 2.4s ease-out infinite; }
.video__pulse::after { content: ""; animation-delay: 1.2s; }
@keyframes ripple { from { transform: scale(1); opacity: .8; } to { transform: scale(1.9); opacity: 0; } }
.video__caption { position: absolute; z-index: 3; left: 26px; right: 26px; bottom: 22px; color: #fff; line-height: 1.3; text-shadow: 0 1px 3px rgba(1, 40, 70, .45); }
.video__caption strong { display: block; font-family: var(--f-display); font-weight: 500; font-size: 1.3rem; }
.video__caption small { color: #fff; font-weight: 500; opacity: .95; }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 5; }
.video.is-playing .video__play, .video.is-playing .video__caption { display: none; }

.media-sec__copy .h2 { margin-bottom: 18px; }
.media-sec__copy > p { color: var(--ink-2); margin-bottom: 28px; }
.socials { display: grid; gap: 12px; }
.social {
  display: flex; align-items: center; gap: 16px; padding: 14px 18px 14px 14px; border-radius: 18px;
  background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); transition: transform .4s var(--ease-out), box-shadow .4s;
}
.social:hover { transform: translateX(6px); box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(3, 155, 229, .35); }
.social > svg:first-child { width: 48px; height: 48px; padding: 12px; border-radius: 14px; color: #fff; }
.social--yt > svg:first-child { background: #ff0033; }
.social--ig > svg:first-child { background: linear-gradient(45deg, #f9ce34, #ee2a7b 50%, #6228d7); }
.social--fb > svg:first-child { background: #1877f2; }
.social span { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.social small { color: var(--ink-3); font-size: .82rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.social__arrow { margin-left: auto; color: var(--ink-3); transition: transform .4s var(--ease-out), color .3s; }
.social:hover .social__arrow { transform: translateX(4px); color: var(--brand-700); }

/* ---------- Donate ---------- */
.donate { padding-bottom: clamp(80px, 11vw, 140px); }
.donate__card {
  position: relative; overflow: hidden; isolation: isolate;
  display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center;
  padding: clamp(36px, 6vw, 72px); border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--brand-800), var(--brand-950)); color: rgba(255, 255, 255, .8);
  box-shadow: var(--shadow-lg);
}
.donate__glow {
  position: absolute; z-index: -1; width: 520px; height: 520px; right: -120px; top: -200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(129, 212, 250, .35), transparent 65%);
}
.donate__copy .h2 { margin-bottom: 18px; }
.donate__copy p { max-width: 52ch; }
.donate__actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.donate__actions small { text-align: center; color: rgba(255, 255, 255, .55); font-size: .82rem; }

/* ---------- FAQ ---------- */
.faq { padding-top: 0; }
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.faq__grid > div:first-child { position: sticky; top: calc(var(--header-h) + 40px); }
.faq__grid > div:first-child .h2 { margin-bottom: 16px; }
.faq__grid > div:first-child p { color: var(--ink-2); margin-bottom: 26px; }
.accordion { display: grid; gap: 12px; }
.acc { border-radius: 18px; background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); transition: box-shadow .3s; }
.acc[open] { box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(3, 155, 229, .35); }
.acc summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px; cursor: pointer; list-style: none;
  font-family: var(--f-display); font-weight: 500; font-size: 1.15rem; line-height: 1.3;
}
.acc summary::-webkit-details-marker { display: none; }
.acc__icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--bg-2); color: var(--brand-700); flex-shrink: 0; transition: transform .45s var(--ease-out), background-color .3s, color .3s; }
.acc__icon svg { width: 18px; height: 18px; }
.acc[open] .acc__icon { transform: rotate(135deg); background: var(--brand-900); color: #fff; }
.acc__body { padding: 0 24px 22px; color: var(--ink-2); }
.acc[open] .acc__body { animation: acc-in .5s var(--ease-out); }
@keyframes acc-in { from { opacity: 0; transform: translateY(-8px); } }

/* ---------- Contact ---------- */
.contact { background: var(--bg); border-top: 1px solid var(--line); }
.contact__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 24px; margin-bottom: 24px; }
.contact__info { display: grid; gap: 12px; align-content: start; }
.info {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px; border-radius: 18px;
  background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); transition: transform .4s var(--ease-out), box-shadow .4s;
}
a.info:hover { transform: translateX(6px); box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(3, 155, 229, .35); }
.info__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--brand-900); color: #fff; flex-shrink: 0; }
.info__icon svg { width: 22px; height: 22px; }
.info > span:last-child { display: flex; flex-direction: column; line-height: 1.35; min-width: 0; }
.info small { color: var(--ink-3); font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.info strong { font-weight: 600; font-size: .98rem; overflow-wrap: anywhere; }

.form {
  padding: clamp(24px, 4vw, 40px); border-radius: var(--r-lg);
  background: var(--surface); box-shadow: var(--shadow), inset 0 0 0 1px var(--line);
  display: grid; gap: 14px; align-content: start;
}
.form h3 { font-family: var(--f-display); font-weight: 500; font-size: 1.7rem; line-height: 1.1; }
.form__note { color: var(--ink-3); font-size: .9rem; margin-top: -6px; margin-bottom: 6px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { position: relative; display: block; }
.field input, .field select, .field textarea {
  width: 100%; padding: 24px 16px 10px; border-radius: 14px; border: 1.5px solid var(--line);
  background: var(--bg-2); font: inherit; font-size: .98rem; color: var(--ink);
  transition: border-color .25s, box-shadow .25s, background-color .25s; appearance: none; -webkit-appearance: none;
}
.field textarea { resize: vertical; min-height: 110px; }
.field--select::after {
  content: ""; position: absolute; right: 18px; top: 50%; width: 8px; height: 8px; margin-top: -6px;
  border-right: 2px solid var(--ink-3); border-bottom: 2px solid var(--ink-3); transform: rotate(45deg); pointer-events: none;
}
.field span {
  position: absolute; left: 17px; top: 17px; color: var(--ink-3); font-size: .98rem; pointer-events: none;
  transform-origin: 0 0; transition: transform .25s var(--ease-out), color .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand-500); background: #fff; box-shadow: 0 0 0 4px rgba(3, 155, 229, .12); }
.field input:focus + span, .field input:not(:placeholder-shown) + span,
.field textarea:focus + span, .field textarea:not(:placeholder-shown) + span,
.field select:focus + span, .field select:valid + span { transform: translateY(-10px) scale(.76); color: var(--brand-700); }
.field.is-invalid input, .field.is-invalid select { border-color: var(--coral); }
.form__error { color: #c2410c; font-size: .88rem; font-weight: 500; }

.map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow), inset 0 0 0 1px var(--line); height: 380px; background: var(--bg-2); }
.map iframe { width: 100%; height: 100%; border: 0; filter: saturate(.8) contrast(1.02); }

/* ---------- Footer ---------- */
.footer { background: linear-gradient(165deg, var(--brand-500), var(--brand-800)); color: rgba(255, 255, 255, .92); padding-top: clamp(60px, 8vw, 100px); font-size: .93rem; }
.footer__cta {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding-bottom: 50px; margin-bottom: 50px; border-bottom: 1px solid var(--line-light);
}
.footer__cta-title { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.8rem, 3.6vw, 2.8rem); line-height: 1.1; color: #fff; max-width: 20ch; letter-spacing: -.02em; }
.footer__cta em { color: var(--accent); }
.footer__grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr .75fr 1.3fr; gap: 36px; padding-bottom: 50px; }
.footer__about p { margin: 20px 0 22px; max-width: 38ch; }
.footer__title { color: #fff; font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { display: grid; gap: 10px; }
.footer ul a { transition: color .25s, padding-left .3s var(--ease-out); }
.footer ul a:hover { color: var(--accent); padding-left: 4px; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; margin-top: 3px; color: var(--accent); }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--line-light); color: #fff; transition: background-color .3s, color .3s, transform .4s var(--ease-out);
}
.footer__social a:hover { background: #fff; color: var(--brand-500); transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px;
  padding-block: 24px; border-top: 1px solid var(--line-light); font-size: .84rem;
}
.footer__bottom a { color: var(--accent); font-weight: 600; }
.footer__credit a { color: #fff; }

/* ---------- Floating ---------- */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 50%; background: var(--wa); color: #fff;
  box-shadow: 0 16px 34px -12px rgba(37, 211, 102, .7);
  transition: transform .4s var(--ease-out);
}
.fab:hover { transform: scale(1.08); }
.fab > svg { width: 30px; height: 30px; position: relative; z-index: 1; }
.fab__pulse { position: absolute; inset: 0; border-radius: 50%; background: var(--wa); animation: fab 2.2s ease-out infinite; }
@keyframes fab { from { transform: scale(1); opacity: .6; } to { transform: scale(1.7); opacity: 0; } }
.fab__label {
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translate(10px, -50%); opacity: 0; pointer-events: none;
  white-space: nowrap; padding: 8px 14px; border-radius: 99px; background: var(--brand-950); color: #fff; font-size: .85rem; font-weight: 600;
  transition: opacity .3s, transform .4s var(--ease-out);
}
.fab:hover .fab__label, .fab.is-hinting .fab__label { opacity: 1; transform: translate(0, -50%); }

.to-top {
  position: fixed; right: 30px; bottom: 96px; z-index: 89;
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface); color: var(--brand-700); box-shadow: var(--shadow), inset 0 0 0 1px var(--line);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .35s, visibility .35s, transform .45s var(--ease-out);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--brand-900); color: #fff; }

/* ---------- Reveal ---------- */
.js .reveal {
  opacity: 0; transform: translate3d(0, 24px, 0);
  transition: opacity .7s var(--ease), transform .8s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.js .reveal.is-in { opacity: 1; transform: none; }
[data-delay="1"] { --d: 1; } [data-delay="2"] { --d: 2; } [data-delay="3"] { --d: 3; }
[data-delay="4"] { --d: 4; } [data-delay="5"] { --d: 5; } [data-delay="6"] { --d: 6; }
.js .hero .reveal { transition-delay: calc(var(--d, 0) * 90ms + 150ms); }


/* ---------- Shared bits ---------- */
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 300; padding: 10px 16px; border-radius: 10px; background: var(--brand-900); color: #fff; font-weight: 600; transition: top .2s; }
.skip-link:focus { top: 12px; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; font-weight: 700; color: var(--brand-700); }
.link-arrow svg { width: 18px; height: 18px; transition: transform .35s var(--ease-out); }
.link-arrow:hover svg { transform: translateX(5px); }
.text-link, .prose a, .svc a, .card p a, .notice a { color: var(--brand-700); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(2, 119, 189, .35); text-underline-offset: 3px; transition: text-decoration-color .2s; }
.text-link:hover, .prose a:hover, .svc a:hover, .card p a:hover, .notice a:hover { text-decoration-color: currentColor; }
.section--sand { background: var(--bg); border-block: 1px solid var(--line); }
.h3 { font-family: var(--f-display); font-weight: 500; font-size: 1.35rem; line-height: 1.2; letter-spacing: -.01em; }
a.card { color: inherit; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- Inner page hero ---------- */
.page-hero {
  position: relative; isolation: isolate; overflow: hidden;
  margin-top: calc(var(--header-h) * -1);
  padding: calc(var(--header-h) + clamp(28px, 5vw, 64px)) 0 clamp(56px, 8vw, 100px);
}
.page-hero__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.page-hero__lead { color: var(--ink-2); font-size: clamp(1rem, 1.3vw, 1.1rem); max-width: 58ch; margin-bottom: 30px; }
.page-hero .hero__ctas { margin-bottom: 0; }
.page-title {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(2.3rem, 5.2vw, 4.2rem); line-height: 1.04; letter-spacing: -.02em;
  font-variation-settings: "opsz" 144; text-wrap: balance;
  margin-bottom: 20px;
}
.page-title em { font-style: italic; font-weight: 400; color: var(--brand-500); }
.page-hero__art { aspect-ratio: 1 / 1.05; border-radius: 200px 200px var(--r-lg) var(--r-lg); box-shadow: var(--shadow-lg); }
.page-hero--compact { padding-bottom: clamp(40px, 6vw, 70px); }
.page-hero--center { text-align: center; min-height: 70vh; display: flex; align-items: center; }
.page-hero--center .page-hero__lead { margin-inline: auto; }
.page-hero--center .hero__ctas { justify-content: center; }
.error-code { font-family: var(--f-display); font-size: clamp(5rem, 16vw, 10rem); line-height: 1; color: var(--brand-700); font-style: italic; margin-bottom: 10px; }

.breadcrumb { margin-bottom: 22px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: .86rem; font-weight: 600; color: var(--ink-3); }
.breadcrumb li { display: inline-flex; align-items: center; gap: 6px; }
.breadcrumb li + li::before { content: ""; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-top: 1.5px solid currentColor; transform: rotate(45deg); margin-right: 4px; opacity: .6; }
.breadcrumb a { color: var(--brand-700); }
.breadcrumb a:hover { text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb [aria-current] { color: var(--ink); }

/* ---------- Text layouts ---------- */
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 6vw, 90px); align-items: start; }
.split > div:first-child { position: sticky; top: calc(var(--header-h) + 40px); }
.prose { color: var(--ink-2); font-size: 1.02rem; }
.prose > * + * { margin-top: 16px; }
.prose strong { color: var(--ink); }
.ticks { display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 32px; color: var(--ink); font-weight: 500; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230277bd' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.ticks--sm { gap: 6px; margin-top: 14px; }
.ticks--sm li { font-size: .92rem; }
.notice { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; border-radius: 16px; background: #fff4ef; box-shadow: inset 0 0 0 1px rgba(242, 118, 90, .3); color: #7a2e1d; }
.notice svg { width: 22px; height: 22px; color: var(--coral); margin-top: 2px; }
.num-steps { counter-reset: n; display: grid; gap: 14px; }
.num-steps li { counter-increment: n; position: relative; padding-left: 48px; }
.num-steps li::before { content: counter(n); position: absolute; left: 0; top: -2px; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--brand-900); color: #fff; font-weight: 700; font-size: .9rem; }

/* ---------- Service rows ---------- */
.svc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.svc {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start;
  padding: 28px; border-radius: var(--r); background: var(--surface); box-shadow: inset 0 0 0 1px var(--line);
  transition: box-shadow .4s, transform .5s var(--ease-out); scroll-margin-top: calc(var(--header-h) + 24px);
}
.svc:hover, .svc:target { box-shadow: var(--shadow), inset 0 0 0 1px rgba(3, 155, 229, .35); transform: translateY(-4px); }
.svc h3 { font-family: var(--f-display); font-weight: 500; font-size: 1.4rem; line-height: 1.2; margin-bottom: 8px; }
.svc p { color: var(--ink-2); font-size: .96rem; }
.svc__icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; background: var(--brand-900); color: #fff; }
.svc__icon svg { width: 26px; height: 26px; }

.feature-rows { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { display: grid; gap: 16px; padding: 28px; border-radius: var(--r); background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); transition: box-shadow .4s, transform .5s var(--ease-out); }
.feature:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.feature .h3 { margin-bottom: 8px; }
.feature p { color: var(--ink-2); font-size: .95rem; }

.reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.reason { padding: 28px; border-radius: var(--r); background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); transition: box-shadow .4s, transform .5s var(--ease-out); }
.section--sand .reason { background: rgba(255, 255, 255, .75); }
.reason:hover { box-shadow: var(--shadow), inset 0 0 0 1px rgba(3, 155, 229, .35); transform: translateY(-4px); }
.reason > svg { width: 48px; height: 48px; padding: 12px; border-radius: 14px; background: var(--accent-soft); color: var(--brand-700); margin-bottom: 18px; }
.reason h3 { font-family: var(--f-display); font-weight: 500; font-size: 1.25rem; line-height: 1.25; margin-bottom: 8px; }
.reason p { color: var(--ink-2); font-size: .94rem; }

.role-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.role-card { padding: 24px; border-radius: var(--r); background: rgba(255, 255, 255, .75); box-shadow: inset 0 0 0 1px var(--line); transition: background-color .3s, transform .5s var(--ease-out), box-shadow .4s; }
.role-card:hover { background: var(--surface); transform: translateY(-4px); box-shadow: var(--shadow); }
.role-card > svg { width: 44px; height: 44px; padding: 11px; border-radius: 50%; background: var(--brand-900); color: #fff; margin-bottom: 16px; }
.role-card h3 { font-family: var(--f-display); font-weight: 500; font-size: 1.2rem; line-height: 1.25; margin-bottom: 6px; }
.role-card p { color: var(--ink-2); font-size: .9rem; }

/* ---------- Facts, milestones, link cards ---------- */
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 0; }
.fact { padding: 26px 28px; border-radius: var(--r); background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); }
.fact dt { font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-700); margin-bottom: 6px; }
.fact dd { margin: 0; font-family: var(--f-display); font-size: 1.4rem; line-height: 1.25; }

.milestones { position: relative; display: grid; gap: 14px; }
.milestones::before { content: ""; position: absolute; left: 11px; top: 14px; bottom: 14px; width: 2px; background: linear-gradient(var(--accent), var(--brand-700)); border-radius: 2px; }
.milestone { position: relative; padding: 22px 26px 22px 30px; margin-left: 34px; border-radius: var(--r); background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); }
.milestone::before { content: ""; position: absolute; left: -30px; top: 28px; width: 14px; height: 14px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px var(--bg); }
.milestone__date { display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-700); margin-bottom: 4px; }
.milestone h3 { font-family: var(--f-display); font-weight: 500; font-size: 1.3rem; margin-bottom: 4px; }
.milestone p { color: var(--ink-2); font-size: .95rem; }

.link-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.link-card { display: flex; align-items: center; gap: 16px; padding: 20px; border-radius: 20px; background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); transition: transform .4s var(--ease-out), box-shadow .4s; }
.link-card:hover { transform: translateY(-4px); box-shadow: var(--shadow), inset 0 0 0 1px rgba(3, 155, 229, .35); }
.link-card > svg:first-child { width: 48px; height: 48px; padding: 12px; border-radius: 14px; background: var(--brand-900); color: #fff; }
.link-card span { display: flex; flex-direction: column; line-height: 1.3; }
.link-card small { color: var(--ink-3); font-size: .84rem; }
.link-card:hover .social__arrow { transform: translateX(4px); color: var(--brand-700); }

.cta-band { padding-block: clamp(20px, 4vw, 40px) clamp(80px, 11vw, 140px); }
.goals + .cta-band, .section + .cta-band { padding-top: clamp(60px, 8vw, 100px); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1180px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .amenities { grid-template-columns: repeat(3, 1fr); }
  .roles { grid-template-columns: repeat(2, 1fr); }
  .lead { grid-template-columns: 140px 1fr; }
  .hide-md { display: none; }
}

@media (max-width: 1140px) {
  :root { --header-h: 68px; }
  .burger { display: grid; }
  .nav { display: none; }
}

@media (max-width: 1024px) {
  .hero__inner, .about__grid, .approach__grid, .program__grid, .goals__grid, .media-sec__grid, .faq__grid, .contact__grid { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero__visual { max-width: 520px; margin-inline: auto; width: 100%; }
  .hero__scroll { display: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3)::before { display: none; }
  .about__media { max-width: 560px; }
  .program__sticky, .faq__grid > div:first-child { position: static; }
  .donate__card { grid-template-columns: 1fr; }
  .donate__actions { flex-direction: row; flex-wrap: wrap; }
  .donate__actions small { width: 100%; text-align: left; }
  .steps__list { grid-template-columns: repeat(2, 1fr); }
  .steps__list::before { display: none; }
  .team__leads { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --gutter: 16px; }
  .hide-sm { display: none !important; }
  .topbar__msg { font-size: .76rem; }
  .topbar__social { display: none; }
  .hero__visual { padding: 20px 8px 30px; }
  .float-card { padding: 8px 12px 8px 8px; }
  .float-card strong { font-size: .84rem; }
  .float-card small { font-size: .7rem; }
  .float-card__icon { width: 36px; height: 36px; }
  .float-card--a { left: -2%; }
  .float-card--b { right: -2%; }
  .ring { width: 40px; height: 40px; }
  .hero__ctas .btn { width: 100%; }
  .stats { margin-top: -40px; }
  .stat { padding: 20px 18px; }
  .stat:nth-child(odd)::before { display: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .cards { grid-template-columns: 1fr; }
  .checks { grid-template-columns: 1fr; }
  .about__badge { width: 100px; height: 100px; left: -8px; }
  .about__badge-text text { font-size: 11px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 160px 160px; }
  .media--g1 { grid-column: span 2; grid-row: auto; }
  .media--g4 { grid-column: span 2; }
  .amenities { grid-template-columns: 1fr 1fr; }
  .amenity { padding: 12px; gap: 10px; font-size: .82rem; }
  .amenity svg { width: 34px; height: 34px; padding: 8px; }
  .stage { grid-template-columns: 48px 1fr; gap: 14px; }
  .stage__num { width: 48px; height: 48px; font-size: 1rem; }
  .timeline::before, .timeline::after { left: 23px; }
  .stage__body { padding: 22px 20px; }
  .orbit { --size: min(480px, calc(100vw - 150px)); margin-block: 30px; }
  .orbit__node > div { font-size: .7rem; padding: 6px 10px 6px 6px; max-width: 116px; gap: 6px; }
  .orbit__node svg { width: 28px; height: 28px; padding: 6px; }
  .orbit__core strong { font-size: .95rem; }
  .orbit__core small { display: none; }
  .steps__list { grid-template-columns: 1fr; }
  .lead { grid-template-columns: 1fr; }
  .lead__photo { aspect-ratio: 16 / 10; }
  .roles { grid-template-columns: 1fr; }
  .goals__list { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .map { height: 300px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__cta .btn { width: 100%; }
  .fab { right: 16px; bottom: 16px; width: 56px; height: 56px; }
  .to-top { right: 22px; bottom: 84px; }
  .marquee { padding-block: 18px; }
}

@media (max-width: 1180px) {
  .role-cards { grid-template-columns: repeat(2, 1fr); }
  .reasons, .feature-rows { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .page-hero__inner, .split { grid-template-columns: 1fr; }
  .split > div:first-child { position: static; }
  .page-hero__art { max-width: 460px; width: 100%; }
  .svc-list, .cards--3 { grid-template-columns: 1fr 1fr; }
  .facts, .link-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .svc-list, .cards--3, .reasons, .feature-rows, .role-cards, .facts, .link-cards { grid-template-columns: 1fr; }
  .svc { grid-template-columns: 1fr; padding: 22px; gap: 14px; }
  .page-hero__art { aspect-ratio: 4 / 3; border-radius: 140px 140px var(--r) var(--r); }
  .gallery { grid-template-rows: none; grid-auto-rows: auto; }
  .gallery .media { aspect-ratio: 1 / 1; }
  .media--g1 { aspect-ratio: 4 / 3.4 !important; }
  .media--g4 { aspect-ratio: 16 / 8 !important; }
  .milestone { margin-left: 28px; padding: 18px 20px; }
  .milestone::before { left: -24px; }
}

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

/* =========================================================
   Logo-blue sections (brand #039be5)
   ========================================================= */
.program, .goals { background: linear-gradient(165deg, var(--brand-500) 0%, #0288d1 55%, var(--brand-700) 100%); color: rgba(255, 255, 255, .92); }
.program::before, .goals::after { background: radial-gradient(circle, rgba(255, 255, 255, .18), transparent 65%); }
.donate__card { background: linear-gradient(135deg, var(--brand-500), var(--brand-700)); color: rgba(255, 255, 255, .92); }
.donate__glow { background: radial-gradient(circle, rgba(255, 255, 255, .28), transparent 65%); }
.program .kicker--light, .goals .kicker--light, .donate__card .kicker--light { color: rgba(255, 255, 255, .9); }
.program .h2--light em, .goals .h2--light em, .donate__card .h2--light em { color: #fff; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; text-decoration-color: rgba(255, 255, 255, .45); }
.donate__actions small { color: rgba(255, 255, 255, .8); }

.program__meter-bar { background: rgba(255, 255, 255, .22); }
.program__meter-bar span { background: #fff; }
.program__meter-labels { color: rgba(255, 255, 255, .75); }
.timeline::before { background: rgba(255, 255, 255, .25); }
.timeline::after { background: #fff; }
.stage__num { background: var(--brand-800); box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .45); color: #fff; }
.stage.is-active .stage__num { background: #fff; color: var(--brand-700); box-shadow: 0 0 0 8px rgba(255, 255, 255, .2); }
.stage__body { background: rgba(255, 255, 255, .1); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22); }
.stage.is-active .stage__body { background: rgba(255, 255, 255, .16); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .45); }
.stage--after .stage__body { background: rgba(255, 255, 255, .14); }
.stage__days { color: #fff; opacity: .85; }
.stage p { color: rgba(255, 255, 255, .92); }
.pills li { color: #fff; background: rgba(255, 255, 255, .14); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .3); }

.goals__list li { border-bottom-color: rgba(255, 255, 255, .25); }
.goals__list li:hover { color: #fff; }
.goals__list span { color: rgba(255, 255, 255, .8); }
.goals__lead { color: rgba(255, 255, 255, .9); }

/* Footer on brand blue */
.footer__cta, .footer__bottom { border-color: rgba(255, 255, 255, .28); }
.footer__cta em { color: #e1f5fe; }
.footer ul a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer__contact svg { color: #fff; }
.footer__social a { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .45); }
.footer__bottom a, .footer__credit a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.brand--light .brand__text small { color: rgba(255, 255, 255, .85); }

/* Photo slots: shown until the real photo file is added */
.photo-ph { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(3, 155, 229, .45); }
.photo-ph svg { width: 52px; height: 52px; stroke-width: 1.3; }

/* =========================================================
   Mobile sidebar (drawer)
   ========================================================= */
html.is-locked, html.is-locked body { overflow: hidden; }
.drawer { position: fixed; inset: 0; z-index: 150; visibility: hidden; pointer-events: none; transition: visibility 0s linear .45s; }
.drawer.is-open { visibility: visible; pointer-events: auto; transition: visibility 0s; }
.drawer__overlay { position: absolute; inset: 0; background: rgba(2, 62, 104, .4); opacity: 0; transition: opacity .35s ease; }
.drawer.is-open .drawer__overlay { opacity: 1; }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(86vw, 380px);
  display: flex; flex-direction: column; background: #fff;
  box-shadow: -24px 0 60px -24px rgba(2, 62, 104, .45);
  transform: translate3d(102%, 0, 0);
  transition: transform .45s cubic-bezier(.32, .72, 0, 1);
  will-change: transform;
}
.drawer.is-open .drawer__panel { transform: translate3d(0, 0, 0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px 12px 16px; border-bottom: 1px solid var(--line); }
.drawer__head .brand__mark { width: 42px; height: 42px; }
.drawer__head .brand__text strong { font-size: 1.08rem; }
.drawer__close { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--accent-soft); color: var(--brand-700); transition: transform .3s var(--ease-out), background-color .2s; }
.drawer__close:active { transform: scale(.92); }
.drawer__close svg { width: 22px; height: 22px; }
.drawer__nav { flex: 1; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; padding: 6px 10px 14px; }
.drawer__label { margin: 14px 10px 4px; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.drawer__nav a {
  display: flex; align-items: center; gap: 12px; min-height: 48px; padding: 6px 10px; border-radius: 12px;
  font-weight: 600; font-size: 1rem; color: var(--ink);
  transition: background-color .2s;
}
.drawer__nav a svg { width: 34px; height: 34px; padding: 8px; border-radius: 10px; background: var(--accent-soft); color: var(--brand-500); transition: background-color .2s, color .2s; }
.drawer__nav a:active { background: var(--bg-2); }
.drawer__nav a[aria-current="page"] { background: var(--accent-soft); color: var(--brand-700); }
.drawer__nav a[aria-current="page"] svg { background: var(--brand-500); color: #fff; }
.drawer__foot { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 12px 14px calc(12px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: #fff; }
.drawer__foot .btn { min-height: 48px; padding: 10px 14px; }
.drawer__nav > * { opacity: 0; transform: translate3d(18px, 0, 0); transition: opacity .25s ease, transform .35s var(--ease-out); }
.drawer.is-open .drawer__nav > * { opacity: 1; transform: none; transition-delay: calc(var(--i, 0) * 22ms + 90ms); }
@media (min-width: 1141px) { .drawer { display: none; } }

/* =========================================================
   Map (loads Google Maps only when asked)
   ========================================================= */
.map { position: relative; }
.map__cover {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  padding: 24px; text-align: center;
  background:
    linear-gradient(rgba(3, 155, 229, .06) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(90deg, rgba(3, 155, 229, .06) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(145deg, #f3faff, #e1f5fe);
}
.map__pin { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--brand-500); color: #fff; box-shadow: 0 12px 26px -12px rgba(3, 155, 229, .8); margin-bottom: 6px; }
.map__pin svg { width: 26px; height: 26px; }
.map__title { font-family: var(--f-display); font-size: 1.3rem; font-weight: 500; }
.map__addr { max-width: 46ch; color: var(--ink-2); font-size: .92rem; }
.map__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 10px; }
.map.is-loaded .map__cover { display: none; }
.map iframe { position: absolute; inset: 0; }

/* =========================================================
   Official SCTI media: videos, photos and team
   ========================================================= */
/* Home: player plus a short list of official videos */
.media-sec__player { display: grid; gap: 14px; min-width: 0; }
.video-picks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.video-pick {
  display: grid; align-content: start; gap: 8px; width: 100%; height: 100%; padding: 6px 6px 10px; border-radius: 16px;
  text-align: left; background: var(--surface); box-shadow: inset 0 0 0 1px var(--line);
  transition: box-shadow .3s, transform .4s var(--ease-out);
}
.video-pick:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(3, 155, 229, .35); }
.video-pick.is-current { box-shadow: inset 0 0 0 2px var(--brand-500); }
.video-pick picture { display: block; }
.video-pick img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 11px; background: var(--bg-2); }
.video-pick span { padding-inline: 4px; font-size: .8rem; font-weight: 600; line-height: 1.3; color: var(--ink); }

/* Media page: video cards */
.vgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vcard {
  display: flex; flex-direction: column; overflow: hidden; border-radius: var(--r); background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line); transition: box-shadow .4s, transform .5s var(--ease-out);
}
.vcard:hover { transform: translateY(-4px); box-shadow: var(--shadow), inset 0 0 0 1px rgba(3, 155, 229, .3); }
.vcard__player { position: relative; aspect-ratio: 16 / 9; background: #0c1f33; }
.vcard__player img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vcard__player button { position: absolute; inset: 0; z-index: 1; display: grid; place-items: center; width: 100%; background: linear-gradient(180deg, transparent 50%, rgba(1, 40, 70, .3)); }
.vcard__player button span {
  display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%;
  background: #fff; color: var(--brand-500); box-shadow: var(--shadow); transition: transform .4s var(--ease-out);
}
.vcard__player button svg { width: 24px; height: 24px; margin-left: 3px; }
.vcard__player button:hover span, .vcard__player button:focus-visible span { transform: scale(1.1); }
.vcard__player iframe { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; border: 0; }
.vcard__player.is-playing button { display: none; }
.vcard__body { display: flex; flex: 1; flex-direction: column; gap: 6px; padding: 16px 18px 18px; }
.vcard__topic { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-700); }
.vcard h3 { font-family: var(--f-display); font-weight: 500; font-size: 1.12rem; line-height: 1.3; }
.vcard__link { margin-top: auto; padding-top: 6px; display: inline-flex; align-items: center; gap: 6px; width: fit-content; font-size: .84rem; font-weight: 600; color: var(--ink-2); transition: color .2s; }
.vcard__link svg { width: 18px; height: 18px; color: #ff0033; }
.vcard__link:hover { color: var(--brand-700); text-decoration: underline; text-underline-offset: 3px; }

/* Official photos of the centre */
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.photo-grid--3 { grid-template-columns: repeat(3, 1fr); }
.photo {
  position: relative; display: block; aspect-ratio: 3 / 2; overflow: hidden; border-radius: var(--r-sm);
  background: var(--bg-2); box-shadow: inset 0 0 0 1px var(--line);
}
.photo picture { display: block; height: 100%; }
.photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.photo:hover img { transform: scale(1.05); }
.photo__cap {
  position: absolute; left: 10px; bottom: 10px; max-width: calc(100% - 20px); padding: 5px 12px; border-radius: 99px;
  background: rgba(255, 255, 255, .95); color: var(--ink); font-size: .76rem; font-weight: 600; line-height: 1.3; box-shadow: var(--shadow-sm);
}
.photos-more { margin-top: 26px; text-align: center; }

.lightbox {
  width: min(1100px, 94vw); max-width: none; max-height: 94vh; padding: 0; border: 0; overflow: visible;
  border-radius: var(--r); background: #0c1f33; color: #fff; box-shadow: var(--shadow-lg);
}
.lightbox::backdrop { background: rgba(4, 20, 36, .85); }
.lightbox__fig { margin: 0; }
.lightbox__fig img { width: 100%; max-height: calc(94vh - 54px); object-fit: contain; border-radius: var(--r) var(--r) 0 0; }
.lightbox figcaption { padding: 14px 20px; font-size: .92rem; font-weight: 500; }
.lightbox__btn { position: absolute; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--ink); box-shadow: var(--shadow); }
.lightbox__btn svg { width: 20px; height: 20px; }
.lightbox__close { top: -18px; right: -18px; }
.lightbox__prev, .lightbox__next { top: 50%; translate: 0 -50%; }
.lightbox__prev { left: -23px; }
.lightbox__prev svg { transform: rotate(180deg); }
.lightbox__next { right: -23px; }

/* Team: official staff photos */
.lead__photo img { object-position: 50% 25%; }
.members { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.member {
  padding: 10px 10px 18px; border-radius: var(--r); text-align: center; background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line); transition: box-shadow .4s, transform .5s var(--ease-out);
}
.member:hover { transform: translateY(-4px); box-shadow: var(--shadow), inset 0 0 0 1px rgba(3, 155, 229, .3); }
.member__photo { display: grid; place-items: center; aspect-ratio: 1; margin-bottom: 14px; border-radius: calc(var(--r) - 6px); }
.member:hover .member__photo img { transform: scale(1.05); }
.member h3 { font-family: var(--f-display); font-weight: 500; font-size: 1.08rem; line-height: 1.25; margin-bottom: 4px; }
.member p { font-size: .8rem; font-weight: 600; color: var(--brand-700); }
.member .lead__initials { font-size: 2.2rem; }

@media (max-width: 1180px) {
  .members { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
  .vgrid { grid-template-columns: 1fr 1fr; }
  .photo-grid, .photo-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .members { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .video__caption { left: 18px; right: 18px; bottom: 16px; }
  .video__caption strong { font-size: 1.1rem; }
  .video__play { width: 76px; height: 76px; }
  .video-picks { gap: 8px; }
  .video-pick { padding: 5px 5px 8px; border-radius: 14px; }
  .video-pick span { font-size: .72rem; padding-inline: 2px; }
  .vgrid { grid-template-columns: 1fr; gap: 16px; }
  .photo-grid, .photo-grid--3 { grid-template-columns: 1fr 1fr; gap: 10px; }
  .photo__cap { left: 6px; bottom: 6px; max-width: calc(100% - 12px); padding: 4px 9px; font-size: .68rem; }
  .members { grid-template-columns: 1fr 1fr; gap: 12px; }
  .member { padding: 8px 8px 14px; }
  .member h3 { font-size: .98rem; }
  .member p { font-size: .74rem; }
  .lightbox__close { top: 8px; right: 8px; }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }

  /* Compact footer on phones (the desktop footer above is unchanged) */
  .footer { padding-top: 36px; font-size: .88rem; }
  .footer__cta { gap: 14px; padding-bottom: 24px; margin-bottom: 24px; }
  .footer__cta-title { font-size: 1.45rem; }
  .footer__cta .btn { min-height: 48px; padding: 11px 20px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 22px 16px; padding-bottom: 22px; }
  .footer__about, .footer__grid > div:last-child { grid-column: 1 / -1; }
  .footer__about .brand__mark { width: 42px; height: 42px; }
  .footer__about p { margin: 10px 0 14px; font-size: .85rem; line-height: 1.55; max-width: none; }
  .footer__title { margin-bottom: 8px; font-size: .72rem; }
  .footer ul { gap: 2px; }
  .footer ul a { display: inline-block; padding-block: 3px; }
  .footer ul.footer__contact { gap: 6px; }
  .footer__contact li { gap: 8px; line-height: 1.45; }
  .footer__contact svg { width: 16px; height: 16px; margin-top: 2px; }
  .footer__social { gap: 8px; }
  .footer__social a { width: 38px; height: 38px; }
  .footer__bottom { gap: 4px 16px; padding-block: 14px 18px; font-size: .78rem; }
}

.members-head { margin-top: clamp(64px, 8vw, 110px); }
.faq__group { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.25rem, 2vw, 1.5rem); line-height: 1.2; margin: 36px 0 14px; }
.faq__group:first-child { margin-top: 0; }
.acc__body a { color: var(--brand-700); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.page-hero + .faq { padding-top: clamp(24px, 4vw, 48px); }

/* Hero frame for official SCTI photos (landscape 3:2): shows the whole photo, no arch crop */
.page-hero__art--photo { aspect-ratio: 3 / 2; border-radius: var(--r-lg); align-self: center; }
.page-hero__art--photo img { object-position: 50% 50% !important; }
@media (max-width: 1024px) { .page-hero__art--photo { max-width: 620px; } }
@media (max-width: 720px) { .page-hero__art--photo { aspect-ratio: 3 / 2; border-radius: var(--r); } }
.faq__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.stage-parts { align-items: start; }
.stage-parts__days { font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-700); margin-bottom: 8px; }
.stage-parts__list { display: grid; gap: 9px; margin-top: 14px; }
.stage-parts__list li { position: relative; padding-left: 22px; color: var(--ink-2); font-size: .92rem; line-height: 1.5; }
.stage-parts__list li::before { content: ""; position: absolute; left: 2px; top: .5em; width: 8px; height: 8px; border-radius: 50%; background: var(--brand-500); box-shadow: 0 0 0 3px var(--accent-soft); }
.mission + .mission { margin-top: -16px; }
.link-cards--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 720px) { .link-cards--2 { grid-template-columns: 1fr; } }
.chair-sign { display: flex; flex-direction: column; line-height: 1.35; margin-top: -6px; }
.chair-sign strong { font-family: var(--f-display); font-weight: 500; font-size: 1.2rem; }
.chair-sign span { color: var(--ink-3); font-size: .9rem; }
.chair-card { padding: 16px 16px 22px; border-radius: var(--r-lg); background: var(--surface); box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line); max-width: 340px; }
.chair-card .lead__photo { margin-bottom: 16px; }
.chair-card__name { font-family: var(--f-display); font-weight: 500; font-size: 1.5rem; line-height: 1.15; margin-bottom: 4px; }
.chair-letter { max-width: 68ch; }
.chair-letter__sign { padding-top: 8px; font-family: var(--f-display); font-size: 1.1rem; }
@media (max-width: 1024px) { .chair-card { max-width: none; display: grid; grid-template-columns: 140px 1fr; gap: 0 18px; align-items: center; } .chair-card .lead__photo { grid-row: span 3; margin: 0; aspect-ratio: 4 / 5; } }

/* =========================================================
   Blog
   ========================================================= */
.blog-hero { max-width: 780px; }
.blog-list { padding-top: clamp(16px, 3vw, 36px); }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card {
  position: relative; display: flex; flex-direction: column; overflow: hidden; border-radius: var(--r);
  background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); transition: box-shadow .4s, transform .5s var(--ease-out);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow), inset 0 0 0 1px rgba(3, 155, 229, .3); }
.post-card__media { display: block; aspect-ratio: 16 / 10; }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__body { display: flex; flex: 1; flex-direction: column; gap: 8px; padding: 18px 20px 22px; }
.post-card__meta { display: flex; flex-wrap: wrap; gap: 4px 12px; font-size: .76rem; font-weight: 600; color: var(--ink-3); }
.post-card__meta span { color: var(--brand-700); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.post-card h3 { font-family: var(--f-display); font-weight: 500; font-size: 1.2rem; line-height: 1.3; }
.post-card h3 a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.post-card h3 a:focus-visible { outline: none; }
.post-card:focus-within { box-shadow: 0 0 0 3px var(--brand-500); }
.post-card:hover h3 a { color: var(--brand-700); }
.post-card__body > p:not(.post-card__meta) { color: var(--ink-2); font-size: .9rem; }
.post-card .link-arrow { margin-top: auto; padding-top: 6px; }
.post-card:hover .link-arrow svg { transform: translateX(5px); }
.blog-more { margin-top: 30px; text-align: center; }

.post-hero__inner { max-width: 880px; }
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; margin: 6px 0 16px; font-size: .86rem; font-weight: 600; color: var(--ink-3); }
.post-meta__cat { padding: 4px 12px; border-radius: 99px; background: var(--accent-soft); color: var(--brand-700); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.post-title { font-size: clamp(2rem, 4.4vw, 3.2rem); text-wrap: balance; }
.post { padding-top: clamp(8px, 2vw, 20px); }
.post__main { max-width: 780px; margin-inline: auto; }
.post__figure { aspect-ratio: 16 / 9; border-radius: var(--r-lg); box-shadow: var(--shadow); margin-bottom: clamp(28px, 4vw, 44px); }
.post__figure--contain img { inset: auto; left: 50%; top: 50%; translate: -50% -50%; width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 12px; }
.post__body { font-size: 1.06rem; line-height: 1.75; }
.post__body h2 { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.35rem, 2.4vw, 1.7rem); line-height: 1.25; color: var(--ink); padding-top: 18px; }
.post__body h3 { font-family: var(--f-display); font-weight: 500; font-size: 1.22rem; line-height: 1.3; color: var(--ink); padding-top: 10px; }
.post__body ul, .post__body ol { display: grid; gap: 8px; padding-left: 1.4em; }
.post__body ul { list-style: disc; }
.post__body ol { list-style: decimal; }
.post__body li::marker { color: var(--brand-500); }
.post__help { margin-top: 44px; padding: 24px 26px; border-radius: var(--r); background: var(--accent-soft); box-shadow: inset 0 0 0 1px rgba(3, 155, 229, .2); }
.post__help p { color: var(--ink); margin-bottom: 14px; }
.post__help-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.post__back { margin-top: 26px; }

@media (max-width: 1024px) {
  .post-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .post-grid { grid-template-columns: 1fr; gap: 16px; }
  .post__figure { border-radius: var(--r); }
  .post__body { font-size: 1rem; }
  .post__help { padding: 20px; }
  .post__help-actions .btn { flex: 1 1 100%; }
}
.gallery-page { padding-top: clamp(20px, 3vw, 40px); }
.gallery-jump { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 10px; }
.gallery-jump a { padding: 9px 16px; border-radius: 99px; background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); font-size: .88rem; font-weight: 600; color: var(--ink); transition: background-color .2s, color .2s, box-shadow .2s; }
.gallery-jump a:hover { background: var(--accent-soft); color: var(--brand-700); box-shadow: inset 0 0 0 1px rgba(3, 155, 229, .35); }
.gallery-group { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 14px; margin: clamp(36px, 5vw, 56px) 0 18px; font-family: var(--f-display); font-weight: 500; font-size: clamp(1.4rem, 2.6vw, 1.9rem); line-height: 1.2; scroll-margin-top: calc(var(--header-h) + 20px); }
.gallery-group span { font-family: var(--f-body); font-size: .8rem; font-weight: 600; color: var(--ink-3); letter-spacing: .02em; }
.home-photos { margin-top: clamp(28px, 4vw, 44px); }
@media (max-width: 1024px) { .footer__about { grid-column: 1 / -1; } }
@media (max-width: 720px) {
  .footer__grid > div:nth-child(4) { grid-column: 1 / -1; }
  .footer__grid > div:nth-child(4) ul { display: flex; flex-wrap: wrap; gap: 2px 20px; }
}

/* Map: the official Google Maps place, shown directly (lazy-loaded), with an address card beside it */
.map-block { display: grid; grid-template-columns: 1fr 340px; gap: 16px; align-items: stretch; }
.map-block .map { height: 440px; }
.map-card {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 6px; padding: 26px;
  border-radius: var(--r-lg); background: var(--surface); box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line);
}
.map-card .map__pin { width: 46px; height: 46px; margin-bottom: 6px; }
.map-card .map__pin svg { width: 20px; height: 20px; }
.map-card .map__title { font-size: 1.25rem; }
.map-card .map__addr { font-size: .9rem; }
.map__phones { display: flex; flex-wrap: wrap; gap: 4px 14px; font-size: .92rem; font-weight: 700; color: var(--brand-700); }
.map-card .map__actions { display: grid; width: 100%; gap: 8px; justify-content: stretch; margin-top: 10px; }
.map-card .btn { padding: 11px 16px; min-height: 44px; font-size: .9rem; }
@media (max-width: 1024px) {
  .map-block { grid-template-columns: 1fr; }
  .map-card .map__actions { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .map-block { gap: 12px; }
  .map-block .map { height: 300px; }
  .map-card { padding: 18px; border-radius: var(--r); }
  .map-card .map__actions { grid-template-columns: 1fr; }
}
}

/* SCTI in numbers (official figures from the SCTI website) */
.numbers { grid-template-columns: repeat(5, 1fr); }
.numbers .stat__num { font-size: clamp(2rem, 3.4vw, 2.8rem); }
@media (max-width: 1024px) {
  .numbers { grid-template-columns: repeat(3, 1fr); }
  .numbers .stat::before { display: none; }
  .numbers .stat:nth-child(n+4) { border-top: 1px solid var(--line); }
}
@media (max-width: 720px) {
  .numbers { grid-template-columns: 1fr 1fr; }
  .numbers .stat { padding: 18px; border-top: 0; }
  .numbers .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .numbers .stat:last-child { grid-column: 1 / -1; }
}
.achieve-preview .milestones--row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px; }
.achieve-preview .milestone { margin: 0; }
.achieve-preview .milestone::before { display: none; }
.achieve-actions { margin-top: 28px; text-align: center; }
@media (max-width: 1024px) { .achieve-preview .milestones--row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .achieve-preview .milestones--row { grid-template-columns: 1fr; } .achieve-preview .milestone { margin-left: 0; } }
.members--preview { margin-top: 18px; }
.map-head { margin-top: clamp(64px, 8vw, 100px); }
.achieve-actions .btn + .btn { margin-left: 8px; }
@media (max-width: 720px) { .members--preview .member:last-child { grid-column: 1 / -1; max-width: 50%; justify-self: center; } .achieve-actions .btn + .btn { margin: 10px 0 0; } }
.numbers-sec { padding-bottom: clamp(40px, 6vw, 70px); }
.numbers-sec + .section--sand .milestone::before { box-shadow: 0 0 0 5px var(--bg); }
.header .brand { flex-shrink: 0; }
.brand__text small { white-space: nowrap; }
@media (max-width: 1260px) { .header__actions .hide-md { display: none; } }

/* Facilities gallery: one large photo and three side photos, all in the photos' own 3:2 shape (nothing cropped) */
.gallery { grid-template-columns: 3.17fr 1fr; grid-template-rows: none; }
.gallery .media { aspect-ratio: 3 / 2; }
.gallery .media--g1 { grid-row: span 3; grid-column: auto; aspect-ratio: auto; }
.gallery .media--g4 { grid-column: auto; }
@media (max-width: 720px) {
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
  .gallery .media, .gallery .media--g1, .gallery .media--g4 { aspect-ratio: 3 / 2 !important; }
  .gallery .media--g1, .gallery .media--g4 { grid-column: 1 / -1; grid-row: auto; }
}

/* Home hero: real SCTI photo in a rounded 3:2 frame (whole photo shown), cards sit on its edges */
.hero__visual { padding: 46px 26px 54px; }
.hero__frame { aspect-ratio: 3 / 2; border-radius: var(--r-lg); }
.float-card--a { top: 4px; left: -4%; }
.float-card--b { top: 50%; right: -6%; }
.float-card--c { top: auto; bottom: 8px; left: 6%; }
@media (max-width: 720px) {
  .hero__visual { padding: 30px 6px 40px; }
  .float-card--a { top: 0; left: -1%; }
  .float-card--b { right: -1%; top: 48%; }
  .float-card--c { bottom: 0; left: 3%; }
}
.page-hero__art--43, .page-hero__art--photo.page-hero__art--43 { aspect-ratio: 4 / 3; }
.hero__visual { padding-inline: 0; }
.float-card--a { left: -3%; }
.float-card--b { right: -3%; }
.float-card--b { top: auto; bottom: 8px; right: -3%; }
@media (max-width: 720px) { .float-card--b { top: auto; bottom: 0; right: -1%; } .float-card--c { bottom: 0; } }
.rooms { grid-template-columns: repeat(4, 1fr); }
.rooms .reason { display: flex; align-items: center; gap: 14px; padding: 22px; }
.rooms .reason > svg { margin: 0; }
.rooms .reason h3 { margin: 0; font-size: 1.15rem; }
.rules-list li { font-size: 1rem; }
@media (max-width: 1024px) { .rooms { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .rooms { grid-template-columns: 1fr; } }

/* Daily activity schedule */
.schedule__lead { color: var(--ink-2); margin-top: 16px; max-width: 38ch; }
.schedule-wrap { border-radius: var(--r); background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); overflow: hidden; }
.schedule { width: 100%; border-collapse: collapse; font-size: .92rem; }
.schedule th { padding: 14px 18px; text-align: left; font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: var(--brand-500); }
.schedule td { padding: 11px 18px; border-top: 1px solid var(--line); color: var(--ink-2); vertical-align: top; }
.schedule td:first-child { white-space: nowrap; font-weight: 700; color: var(--brand-700); }
.schedule td:nth-child(2) { color: var(--ink); font-weight: 600; }
.schedule tbody tr:nth-child(even) td { background: var(--bg-2); }
@media (max-width: 720px) {
  .schedule { font-size: .84rem; }
  .schedule th, .schedule td { padding: 9px 10px; }
  .schedule td:first-child { white-space: normal; width: 34%; }
}
.values__label { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--brand-700); margin: 8px 0 10px; }
.values { margin-bottom: 22px; }

/* Mobile footer: compact, easy to tap, clear of the floating buttons */
@media (max-width: 720px) {
  .footer { padding-top: 30px; }
  .footer__cta { flex-direction: column; align-items: stretch; gap: 14px; padding-bottom: 22px; margin-bottom: 22px; }
  .footer__cta-title { font-size: 1.32rem; max-width: none; }
  .footer__about p { font-size: .84rem; margin: 10px 0 14px; }
  .footer__grid { gap: 20px 16px; padding-bottom: 20px; }
  .footer ul a { padding-block: 5px; }
  .footer ul.footer__contact { grid-template-columns: 1fr 1fr; gap: 10px 12px; }
  .footer__contact li:nth-child(1), .footer__contact li:nth-child(4), .footer__contact li:nth-child(5) { grid-column: 1 / -1; }
  .footer__contact li a { padding-block: 0; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 4px; padding: 14px 70px 20px 0; font-size: .78rem; }
}
