/* ============================================================
   Drea Academy Technical School — Stylesheet
   Static rebuild. No frameworks, no build step.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette (from logo + graduation stoles) */
  --navy:        #082a63;
  --navy-700:    #0a3378;
  --blue:        #0e4bb3;
  --blue-600:    #1556d6;
  --blue-500:    #2a6cea;
  --cyan:        #14b3d6;
  --cyan-300:    #67d6ec;

  /* Ink + neutrals */
  --ink:         #0f1b2d;
  --body:        #45516b;
  --muted:       #6b7894;
  --line:        #e3eaf4;
  --bg:          #ffffff;
  --bg-soft:     #f3f7fc;
  --bg-soft-2:   #eaf2fc;

  /* Effects */
  --grad-brand:  linear-gradient(135deg, #072a66 0%, #0e4bb3 52%, #14b3d6 100%);
  --grad-soft:   linear-gradient(135deg, #eef5ff 0%, #e7f6fb 100%);
  --shadow-sm:   0 2px 8px rgba(15, 27, 45, .06);
  --shadow:      0 14px 38px -18px rgba(10, 51, 120, .35);
  --shadow-lg:   0 30px 60px -28px rgba(10, 51, 120, .45);
  --ring:        0 0 0 4px rgba(42, 108, 234, .18);

  /* Geometry */
  --radius:      18px;
  --radius-sm:   12px;
  --radius-lg:   26px;
  --container:   1180px;

  /* Type */
  --font-head: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --header-h: 76px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: var(--blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--blue-600); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}

ul { list-style: none; padding: 0; }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

::selection { background: var(--cyan-300); color: var(--navy); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}

.section { padding-block: clamp(56px, 8vw, 104px); }
.section--soft { background: var(--bg-soft); }
.section--brand { background: var(--grad-brand); color: #eaf2ff; }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }

.section-head { max-width: 720px; margin: 0 auto clamp(34px, 5vw, 56px); text-align: center; }
.section-head--left { margin-inline: 0; text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--bg-soft-2);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section--brand .eyebrow { color: #cfe6ff; background: rgba(255,255,255,.12); }

.section-title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
.section--brand .section-title { color: #fff; }

.section-sub { margin-top: 14px; font-size: 1.06rem; color: var(--muted); }
.section--brand .section-sub { color: #cfe0f7; }

.lead { font-size: 1.12rem; color: var(--body); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--blue);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); color: var(--btn-fg); }

.btn--primary { background: var(--blue); box-shadow: 0 12px 24px -12px rgba(14,75,179,.8); }
.btn--primary:hover { background: var(--blue-600); box-shadow: 0 16px 30px -12px rgba(14,75,179,.9); }

.btn--gradient { background: var(--grad-brand); box-shadow: 0 14px 28px -14px rgba(14,75,179,.85); }

.btn--ghost { background: transparent; color: var(--blue); border-color: var(--line); }
.btn--ghost:hover { color: var(--blue-600); border-color: var(--blue-500); background: var(--bg-soft); }

.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { color: var(--navy-700); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); color: #fff; }

.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy);
  color: #cfe0f7;
  font-size: 13.5px;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 9px;
  flex-wrap: wrap;
}
.topbar__group { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; color: #cfe0f7; }
.topbar__item:hover { color: #fff; }
.topbar__item svg { width: 15px; height: 15px; color: var(--cyan-300); flex: none; }
.topbar__socials { display: flex; gap: 8px; }
.topbar__socials a {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
}
.topbar__socials a:hover { background: var(--cyan); color: #fff; }
.topbar__socials svg { width: 14px; height: 14px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
  background: rgba(255,255,255,.94);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__logo {
  width: 46px; height: 46px;
  border-radius: 50%;
  box-shadow: 0 4px 14px -6px rgba(10,51,120,.5);
}
.brand__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -.01em;
}
.brand__name span { display: block; font-size: .66rem; font-weight: 600; letter-spacing: .18em; color: var(--cyan); text-transform: uppercase; }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__link {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  position: relative;
}
.nav__link:hover { color: var(--blue); background: var(--bg-soft); }
.nav__link.is-active { color: var(--blue); }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 2px; border-radius: 2px;
  background: var(--cyan);
}
.nav__actions { display: flex; align-items: center; gap: 12px; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav__toggle span { position: relative; }
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after  { position: absolute; top: 6px; }
.nav__toggle.is-open span { background: transparent; }
.nav__toggle.is-open span::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle.is-open span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--grad-brand);
  color: #eaf2ff;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 55% at 88% 12%, rgba(103,214,236,.35), transparent 60%),
    radial-gradient(45% 60% at 8% 90%, rgba(42,108,234,.5), transparent 60%);
  z-index: -1;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(54px, 8vw, 96px);
}
.hero__tag {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.22);
  color: #eaf6ff;
  font-family: var(--font-head); font-weight: 500; font-size: 13.5px;
  padding: 7px 15px; border-radius: 999px; margin-bottom: 22px;
}
.hero__tag b { color: #fff; font-weight: 600; }
.hero__title {
  color: #fff;
  font-size: clamp(2.1rem, 5.2vw, 3.5rem);
  font-weight: 800;
  line-height: 1.07;
}
.hero__title em { font-style: normal; color: var(--cyan-300); }
.hero__text { margin-top: 20px; font-size: 1.12rem; color: #d4e3f9; max-width: 540px; }
.hero__actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__meta { margin-top: 32px; display: flex; gap: 28px; flex-wrap: wrap; }
.hero__meta-item { display: flex; flex-direction: column; }
.hero__meta-num { font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; color: #fff; }
.hero__meta-label { font-size: 13.5px; color: #b9cdec; }

.hero__media { position: relative; }
.hero__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255,255,255,.16);
  aspect-ratio: 4 / 3.1;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__chip {
  position: absolute;
  left: -14px; bottom: 26px;
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 13px;
  box-shadow: var(--shadow);
  max-width: 250px;
}
.hero__chip-ic {
  width: 42px; height: 42px; flex: none;
  border-radius: 12px;
  background: var(--grad-soft);
  display: grid; place-items: center;
  color: var(--blue);
}
.hero__chip-ic svg { width: 22px; height: 22px; }
.hero__chip b { font-family: var(--font-head); display: block; font-size: 15px; color: var(--ink); }
.hero__chip span { font-size: 13px; color: var(--muted); }
.hero__blob {
  position: absolute;
  width: 130px; height: 130px;
  right: -22px; top: -22px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
}

/* curved divider under hero */
.hero__wave { display: block; width: 100%; height: auto; color: var(--bg); margin-top: -1px; }
.hero__wave + * { margin-top: -2px; }

/* ---------- Marquee / trust strip ---------- */
.trust {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.trust__inner {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(20px, 5vw, 60px);
  flex-wrap: wrap;
  padding-block: 24px;
  text-align: center;
}
.trust__item { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); font-family: var(--font-head); font-weight: 500; font-size: 15px; }
.trust__item svg { width: 22px; height: 22px; color: var(--cyan); flex: none; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.section--brand .stat {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  box-shadow: none;
}
.stat__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: var(--blue);
  line-height: 1;
}
.section--brand .stat__num { color: #fff; }
.stat__num .suffix { color: var(--cyan); }
.section--brand .stat__num .suffix { color: var(--cyan-300); }
.stat__label { margin-top: 8px; font-size: 14.5px; color: var(--muted); font-weight: 500; }
.section--brand .stat__label { color: #cfe0f7; }

/* ---------- Split (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.split--flip .split__media { order: 2; }
.split__body .section-title { margin-bottom: 8px; }
.split__media { position: relative; }
.framed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 4.3;
}
.framed img { width: 100%; height: 100%; object-fit: cover; }
.split__accent {
  position: absolute;
  inset: auto auto -18px -18px;
  width: 150px; height: 150px;
  border-radius: var(--radius-lg);
  background: var(--grad-brand);
  opacity: .14;
  z-index: -1;
}
.split__badge {
  position: absolute;
  right: -16px; bottom: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  text-align: center;
}
.split__badge b { font-family: var(--font-head); font-size: 1.7rem; color: var(--blue); display: block; }
.split__badge span { font-size: 13px; color: var(--muted); }

.tick-list { display: grid; gap: 13px; margin-top: 22px; }
.tick-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--body); }
.tick-list svg {
  width: 24px; height: 24px; flex: none; margin-top: 1px;
  color: #fff; background: var(--cyan); border-radius: 50%; padding: 4px;
}

/* ---------- Program cards ---------- */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.prog-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  overflow: hidden;
}
.prog-card::after {
  content: "";
  position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: var(--grad-brand);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.prog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.prog-card:hover::after { transform: scaleX(1); }
.prog-card__icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--grad-soft);
  color: var(--blue);
  display: grid; place-items: center;
  margin-bottom: 18px;
  transition: background .25s ease, color .25s ease;
}
.prog-card:hover .prog-card__icon { background: var(--grad-brand); color: #fff; }
.prog-card__icon svg { width: 28px; height: 28px; }
.prog-card__title { font-size: 1.2rem; margin-bottom: 8px; }
.prog-card__tag {
  display: inline-block;
  font-family: var(--font-head); font-weight: 600; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 6px;
}
.prog-card__text { font-size: 15px; color: var(--muted); }
.prog-card__link {
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-weight: 600; font-size: 14.5px;
}
.prog-card__link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.prog-card__link:hover svg { transform: translateX(4px); }

/* ---------- Program detail cards (Programs page) ---------- */
.prog-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.prog-detail {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.prog-detail:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.prog-detail__head { display: flex; gap: 16px; align-items: center; margin-bottom: 16px; }
.prog-detail__head .prog-card__icon { margin-bottom: 0; }
.prog-detail h3 { font-size: 1.25rem; }
.prog-detail__desc { font-size: 15px; color: var(--muted); margin-bottom: 16px; }
.mini-list { display: grid; gap: 9px; margin-bottom: 20px; }
.mini-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--body); }
.mini-list svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--cyan); }
.prog-detail .btn { margin-top: auto; align-self: flex-start; }

.info-band {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  justify-content: space-between;
  background: var(--grad-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.info-band p { color: var(--body); font-size: 1.02rem; max-width: 640px; }
.info-band b { color: var(--ink); font-family: var(--font-head); }

/* ---------- Feature / why cards ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.feature {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 26px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature__icon {
  width: 50px; height: 50px; flex: none;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--grad-soft);
  color: var(--blue);
}
.feature__icon svg { width: 25px; height: 25px; }
.feature h3 { font-size: 1.12rem; margin-bottom: 6px; }
.feature p { font-size: 15px; color: var(--muted); }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px 28px;
  box-shadow: var(--shadow-sm);
}
.step__num {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--grad-brand);
  color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
  margin-bottom: 16px;
  box-shadow: 0 10px 20px -10px rgba(14,75,179,.7);
}
.step h3 { font-size: 1.14rem; margin-bottom: 7px; }
.step p { font-size: 15px; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--grad-brand);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(40% 70% at 90% 0%, rgba(103,214,236,.35), transparent 60%),
    radial-gradient(40% 70% at 0% 100%, rgba(42,108,234,.45), transparent 60%);
}
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
.cta-band p { margin: 14px auto 0; color: #d6e6fc; max-width: 580px; font-size: 1.08rem; }
.cta-band .hero__actions { justify-content: center; }

/* ---------- Gallery ---------- */
.gallery {
  columns: 4 220px;
  column-gap: 16px;
}
.gallery__item {
  display: block;
  width: 100%;
  margin-bottom: 16px;
  border-radius: 14px;
  overflow: hidden;
  break-inside: avoid;
  position: relative;
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
}
.gallery__item img { width: 100%; transition: transform .4s ease; }
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,42,99,.45), transparent 45%);
  opacity: 0; transition: opacity .3s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(7,18,38,.92);
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; transition: opacity .25s ease;
}
.lightbox.is-open { display: flex; opacity: 1; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,.14);
  color: #fff; border: none; cursor: pointer;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  transition: background .2s ease;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.3); }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__close svg, .lightbox__nav svg { width: 24px; height: 24px; }
.lightbox__nav--prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 18px; top: 50%; transform: translateY(-50%); }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 780px; margin-inline: auto;
}
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.avatar {
  width: 92px; height: 92px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-brand);
  color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1.9rem;
  box-shadow: 0 14px 26px -14px rgba(14,75,179,.8);
}
.team-card h3 { font-size: 1.18rem; }
.team-card .role { color: var(--blue); font-family: var(--font-head); font-weight: 600; font-size: 14px; margin-top: 3px; }
.team-card p { font-size: 14.5px; color: var(--muted); margin-top: 10px; }

/* ---------- Mission / Vision ---------- */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.mv-card__ic {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: var(--grad-brand);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 20px;
  box-shadow: 0 14px 24px -14px rgba(14,75,179,.8);
}
.mv-card__ic svg { width: 30px; height: 30px; }
.mv-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.mv-card p { color: var(--body); }
.mv-card__watermark {
  position: absolute; right: -10px; bottom: -26px;
  font-family: var(--font-head); font-weight: 800; font-size: 7rem;
  color: var(--bg-soft); z-index: 0; line-height: 1; pointer-events: none;
}
.mv-card > * { position: relative; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--grad-brand);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  padding-block: clamp(54px, 8vw, 92px);
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(40% 60% at 85% 15%, rgba(103,214,236,.3), transparent 60%),
    radial-gradient(45% 65% at 10% 90%, rgba(42,108,234,.4), transparent 60%);
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; }
.page-hero p { margin: 14px auto 0; color: #d4e3f9; max-width: 560px; font-size: 1.1rem; }
.crumbs { display: flex; gap: 8px; justify-content: center; align-items: center; margin-top: 18px; font-size: 14px; color: #bcd3f4; }
.crumbs a { color: #eaf2ff; }
.crumbs a:hover { color: #fff; }
.crumbs svg { width: 15px; height: 15px; opacity: .7; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 36px; align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; box-shadow: var(--shadow-sm);
}
.contact-card__ic {
  width: 50px; height: 50px; flex: none;
  border-radius: 14px; background: var(--grad-soft); color: var(--blue);
  display: grid; place-items: center;
}
.contact-card__ic svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-card a, .contact-card p { color: var(--muted); font-size: 15px; display: block; }
.contact-card a:hover { color: var(--blue); }

.form-wrap {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow);
}
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--font-head); font-weight: 500; font-size: 14px; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15.5px; color: var(--ink);
  padding: 13px 15px;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--bg-soft);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-500); background: #fff; box-shadow: var(--ring);
}
.form__note { font-size: 13.5px; color: var(--muted); }
.form__status { font-size: 14.5px; font-family: var(--font-head); font-weight: 500; }
.form__status.is-ok { color: #0a8a4f; }

.map {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  line-height: 0;
}
.map iframe { width: 100%; height: 360px; border: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #b7c8e6; }
.footer__top { padding-block: clamp(48px, 6vw, 72px); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 36px;
}
.footer__brand { display: inline-flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.footer__brand img { width: 48px; height: 48px; border-radius: 50%; }
.footer__brand b { font-family: var(--font-head); color: #fff; font-size: 1.16rem; line-height: 1.1; }
.footer__brand span { display: block; font-size: .64rem; letter-spacing: .16em; color: var(--cyan-300); text-transform: uppercase; }
.footer__col h4 { color: #fff; font-size: 1.02rem; margin-bottom: 18px; letter-spacing: .02em; }
.footer__col p { font-size: 14.5px; color: #9fb4d6; }
.footer__links { display: grid; gap: 11px; }
.footer__links a { color: #b7c8e6; font-size: 14.5px; display: inline-flex; align-items: center; gap: 8px; }
.footer__links a:hover { color: #fff; }
.footer__links svg { width: 14px; height: 14px; color: var(--cyan-300); }
.footer__contact { display: grid; gap: 13px; }
.footer__contact li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: #b7c8e6; }
.footer__contact svg { width: 18px; height: 18px; color: var(--cyan-300); flex: none; margin-top: 2px; }
.footer__contact a { color: #b7c8e6; }
.footer__contact a:hover { color: #fff; }
.footer__socials { display: flex; gap: 10px; margin-top: 18px; }
.footer__socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff;
  display: grid; place-items: center;
}
.footer__socials a:hover { background: var(--cyan); }
.footer__socials svg { width: 17px; height: 17px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-block: 22px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 13.5px; color: #8ea5cb;
}
.footer__bottom a { color: #b7c8e6; }
.footer__bottom a:hover { color: #fff; }

/* ---------- Scroll reveal ----------
   Only hidden when JS is active (html.js). Without JS — and for search
   crawlers — content stays visible, never trapped at opacity:0. */
.reveal { transition: opacity .6s ease, transform .6s ease; }
.js .reveal { opacity: 0; transform: translateY(24px); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: 16px; top: -60px;
  background: #fff; color: var(--blue); padding: 10px 18px; border-radius: 10px;
  z-index: 100; box-shadow: var(--shadow); transition: top .2s ease;
  font-family: var(--font-head); font-weight: 600;
}
.skip-link:focus { top: 16px; }

/* ---------- Floating contact (mobile quick call) ---------- */
.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--grad-brand); color: #fff;
  display: none; place-items: center;
  box-shadow: var(--shadow-lg);
}
.fab svg { width: 26px; height: 26px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { max-width: 520px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .split--flip .split__media { order: 0; }
}

@media (max-width: 820px) {
  .nav__menu {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #fff;
    padding: 14px 16px 22px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform .3s ease;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__link { padding: 14px 16px; font-size: 16px; border-radius: 12px; }
  .nav__link.is-active::after { display: none; }
  .nav__link.is-active { background: var(--bg-soft); }
  .nav__toggle { display: inline-flex; }
  .nav__cta { display: none; }
  .topbar__group--meta { display: none; }
  .fab { display: grid; }
  .mv-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .topbar__inner { justify-content: center; }
  .stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat { padding: 22px 14px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .form__row { grid-template-columns: 1fr; }
  .hero__chip { left: 8px; padding: 11px 14px; }
  .framed { aspect-ratio: 4 / 3.2; }
  .split__badge { right: 10px; bottom: 12px; padding: 11px 15px; }
  .split__badge b { font-size: 1.3rem; }
  .gallery { columns: 2 140px; }
  .btn { width: 100%; }
  .hero__actions .btn, .cta-band .btn { width: 100%; }
}

/* ---------- Motion preference ---------- */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .gallery__item img { transition: none; }
}
