/* ============================================================
   Philippines School — sunlit "forest & reef" theme
   Display: Fraunces · Body: Manrope
   Palette (named): sand / shell / ink / lagoon / palm / sun
   ============================================================ */

:root {
  /* --- light (default: sunny day) --- */
  --sand:       #fbf8f1;   /* page ground, warm off-white */
  --shell:      #f1ece0;   /* alternate surface / cards */
  --card:       #ffffff;
  --ink:        #10312f;   /* deep teal-charcoal text */
  --ink-soft:   #3f5f5b;
  --ink-mute:   #5f7b77;
  --lagoon:     #068c9c;   /* primary turquoise accent */
  --lagoon-deep:#045f6a;
  --palm:       #2b8a57;   /* forest green */
  --palm-deep:  #1c6b43;
  --sun:        #d98a12;   /* warm accent, used sparingly */
  --line:       rgba(16, 49, 47, 0.12);
  --line-soft:  rgba(16, 49, 47, 0.07);
  --glass:      rgba(255, 255, 255, 0.72);
  --glass-line: rgba(16, 49, 47, 0.10);
  --shadow-sm:  0 2px 10px rgba(9, 42, 40, 0.06);
  --shadow-md:  0 14px 40px rgba(9, 42, 40, 0.12);
  --shadow-lg:  0 30px 70px rgba(9, 42, 40, 0.18);

  --radius:     14px;
  --radius-lg:  22px;
  --maxw:       1140px;

  --step--1: clamp(0.82rem, 0.8rem + 0.1vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  --step-1:  clamp(1.3rem, 1.16rem + 0.66vw, 1.7rem);
  --step-2:  clamp(1.9rem, 1.5rem + 1.8vw, 2.9rem);
  --step-3:  clamp(2.5rem, 1.7rem + 3.8vw, 4.8rem);
}

/* --- dark (twilight lagoon) --- */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --sand:       #0a1c1d;
    --shell:      #102727;
    --card:       #123030;
    --ink:        #ecf5f1;
    --ink-soft:   #aecbc5;
    --ink-mute:   #85a29c;
    --lagoon:     #37c4d4;
    --lagoon-deep:#7fdce6;
    --palm:       #57cb8b;
    --palm-deep:  #8fe0b3;
    --sun:        #f2b944;
    --line:       rgba(180, 220, 214, 0.14);
    --line-soft:  rgba(180, 220, 214, 0.08);
    --glass:      rgba(10, 28, 29, 0.62);
    --glass-line: rgba(180, 220, 214, 0.16);
    --shadow-sm:  0 2px 10px rgba(0, 0, 0, 0.35);
    --shadow-md:  0 14px 40px rgba(0, 0, 0, 0.45);
    --shadow-lg:  0 30px 70px rgba(0, 0, 0, 0.55);
  }
}
:root[data-theme="dark"] {
  --sand:#0a1c1d; --shell:#102727; --card:#123030;
  --ink:#ecf5f1; --ink-soft:#aecbc5; --ink-mute:#85a29c;
  --lagoon:#37c4d4; --lagoon-deep:#7fdce6; --palm:#57cb8b; --palm-deep:#8fe0b3; --sun:#f2b944;
  --line:rgba(180,220,214,0.14); --line-soft:rgba(180,220,214,0.08);
  --glass:rgba(10,28,29,0.62); --glass-line:rgba(180,220,214,0.16);
  --shadow-sm:0 2px 10px rgba(0,0,0,.35); --shadow-md:0 14px 40px rgba(0,0,0,.45); --shadow-lg:0 30px 70px rgba(0,0,0,.55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }

/* ---------- NAV (glass pill) ---------- */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(var(--maxw), calc(100% - 32px));
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 9px 12px 9px 18px;
  background: var(--glass);
  border: 1px solid var(--glass-line);
  border-radius: 999px;
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  box-shadow: var(--shadow-sm);
  transition: top .3s ease, box-shadow .3s ease;
}
.nav.is-scrolled { top: 10px; box-shadow: var(--shadow-md); }
.nav__brand {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; letter-spacing: -0.01em;
  color: var(--ink); text-decoration: none; white-space: nowrap;
}
.nav__mark { color: var(--lagoon); font-size: 1.1em; line-height: 1; }
.nav__links { display: flex; gap: 2px; margin-left: auto; }
.nav__links a {
  color: var(--ink-soft); text-decoration: none;
  font-size: var(--step--1); font-weight: 600;
  padding: 8px 14px; border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.nav__links a:hover { color: var(--ink); background: rgba(6, 140, 156, 0.10); }
.nav__cta {
  color: #fff; background: linear-gradient(180deg, var(--lagoon), var(--lagoon-deep));
  text-decoration: none; font-size: var(--step--1); font-weight: 700;
  padding: 9px 18px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 6px 18px rgba(4, 95, 106, 0.28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(4, 95, 106, 0.36); }
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__brand .nav__word { display: none; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 700; font-size: var(--step-0);
  padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.btn--primary {
  color: #fff; background: linear-gradient(180deg, var(--lagoon), var(--lagoon-deep));
  box-shadow: 0 10px 30px rgba(4, 95, 106, 0.32);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(4, 95, 106, 0.42); }
.btn--primary:disabled { opacity: .6; cursor: progress; transform: none; }
.btn--glass {
  color: #fff; background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55); backdrop-filter: blur(6px);
}
.btn--glass:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.24); }
.btn--wide { width: 100%; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 30, 33, 0.28) 0%, rgba(4, 30, 33, 0) 26%),
    linear-gradient(15deg, rgba(4, 28, 31, 0.82) 4%, rgba(4, 28, 31, 0.34) 42%, rgba(4, 28, 31, 0) 70%);
}
.hero__inner {
  position: relative; z-index: 1;
  max-width: var(--maxw); width: 100%;
  margin: 0 auto;
  padding: 0 24px clamp(56px, 10vh, 104px);
  color: #fff;
}
.hero__eyebrow {
  font-size: var(--step--1); letter-spacing: 0.2em; text-transform: uppercase;
  color: #eafcff; font-weight: 700; margin: 0 0 18px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}
.hero__title {
  font-family: "Fraunces", Georgia, serif; font-weight: 400;
  font-size: var(--step-3); line-height: 1.02; letter-spacing: -0.02em;
  text-wrap: balance; margin: 0 0 22px; max-width: 16ch;
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.35);
}
.hero__lede {
  max-width: 54ch; margin: 0 0 32px;
  font-size: var(--step-1); line-height: 1.5; color: #eef6f4;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; z-index: 1; left: 50%; bottom: 20px; transform: translateX(-50%);
}
.hero__scroll span {
  display: block; width: 22px; height: 34px;
  border: 1.5px solid rgba(255, 255, 255, 0.6); border-radius: 12px; position: relative;
}
.hero__scroll span::after {
  content: ""; position: absolute; left: 50%; top: 7px;
  width: 3px; height: 6px; border-radius: 3px; background: #fff;
  transform: translateX(-50%); animation: scrolldot 1.8s ease-in-out infinite;
}
@keyframes scrolldot { 0%,100%{opacity:.2;transform:translate(-50%,0)} 50%{opacity:1;transform:translate(-50%,10px)} }
@media (prefers-reduced-motion: reduce) { .hero__scroll span::after { animation: none; } }

/* ---------- STAT BAND ---------- */
.band {
  max-width: var(--maxw); margin: 0 auto;
  padding: 42px 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  border-bottom: 1px solid var(--line);
}
.band__item { display: flex; flex-direction: column; gap: 6px; text-align: center; }
.band__num {
  font-family: "Fraunces", serif; font-size: var(--step-2); font-weight: 500;
  color: var(--lagoon-deep); font-variant-numeric: tabular-nums; letter-spacing: -0.01em;
}
.band__label { font-size: var(--step--1); color: var(--ink-mute); line-height: 1.35; }
@media (max-width: 768px) { .band { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; } }

/* ---------- SECTIONS ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(72px, 12vh, 132px) 24px; }
.eyebrow {
  font-size: var(--step--1); letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lagoon-deep); font-weight: 700; margin: 0 0 16px;
}
.eyebrow--light { color: #eafcff; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.section__head { max-width: 62ch; margin-bottom: 52px; }
.section__title {
  font-family: "Fraunces", serif; font-weight: 400;
  font-size: var(--step-2); line-height: 1.08; letter-spacing: -0.02em;
  text-wrap: balance; margin: 0 0 18px; color: var(--ink);
}
.section__intro {
  color: var(--ink-soft); font-size: var(--step-1); line-height: 1.5; margin: 0; max-width: 60ch;
}

/* ---------- PROGRAM CARDS ---------- */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card {
  position: relative; padding: 30px 28px 26px;
  border-radius: var(--radius-lg); background: var(--card);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__tag {
  display: inline-block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--palm-deep); background: rgba(43, 138, 87, 0.10);
  border-radius: 999px; padding: 5px 12px; margin-bottom: 18px; font-weight: 700;
}
.card h3 { font-family: "Fraunces", serif; font-weight: 500; font-size: var(--step-1); margin: 0 0 10px; color: var(--ink); }
.card p { color: var(--ink-soft); margin: 0 0 20px; font-size: var(--step-0); }
.card__meta {
  list-style: none; display: flex; gap: 18px; margin: 0;
  padding: 14px 0 0; border-top: 1px solid var(--line-soft);
}
.card__meta li { font-size: var(--step--1); color: var(--ink-mute); font-weight: 600; }
@media (max-width: 768px) { .cards { grid-template-columns: 1fr; } }

/* ---------- SPLIT (approach) ---------- */
.split { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(32px, 6vw, 76px); align-items: center; }
.feature-list { margin: 34px 0 0; display: grid; gap: 22px; }
.feature-list dt { font-weight: 700; color: var(--ink); font-size: var(--step-0); margin-bottom: 4px; }
.feature-list .fl-icon {
  display: inline-flex; width: 22px; height: 22px; margin-right: 11px; vertical-align: -5px;
  color: var(--lagoon);
}
.feature-list .fl-icon svg { width: 100%; height: 100%; }
.feature-list dd { margin: 0 0 0 33px; color: var(--ink-soft); }

.split__media { position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.split__media figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 22px 18px; color: #fff; font-weight: 600; font-size: var(--step-0);
  background: linear-gradient(0deg, rgba(4, 28, 31, 0.72), transparent);
}
.split__kicker {
  display: block; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: #cdeef2; margin-bottom: 3px; font-weight: 700;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split__media { order: -1; }
  .split__media img { aspect-ratio: 16 / 10; }
}

/* ---------- FULL-BLEED FEATURE BAND ---------- */
.feature-band { position: relative; min-height: 62vh; display: flex; align-items: center; overflow: hidden; }
.feature-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-band__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(4, 28, 31, 0.72) 0%, rgba(4, 28, 31, 0.34) 48%, rgba(4, 28, 31, 0.12) 100%);
}
.feature-band__inner { position: relative; z-index: 1; max-width: var(--maxw); width: 100%; margin: 0 auto; padding: 0 24px; }
.feature-band__quote {
  font-family: "Fraunces", serif; font-weight: 400; font-size: var(--step-2);
  line-height: 1.14; letter-spacing: -0.01em; color: #fff; margin: 0; max-width: 20ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

/* ---------- INQUIRY FORM ---------- */
.inquire { max-width: 900px; }
.inquire__head { text-align: center; max-width: 60ch; margin: 0 auto 44px; }
.inquire__head .section__intro { margin: 0 auto; }
.form {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 44px); box-shadow: var(--shadow-md); display: grid; gap: 20px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: var(--step--1); font-weight: 700; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: var(--step-0); color: var(--ink);
  background: var(--sand); border: 1px solid var(--line); border-radius: 12px;
  padding: 13px 15px; width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--lagoon);
  box-shadow: 0 0 0 3px rgba(6, 140, 156, 0.22); background: var(--card);
}
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea {
  border-color: #d6584b; box-shadow: 0 0 0 3px rgba(214, 88, 75, 0.18);
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__foot { display: grid; gap: 14px; justify-items: center; margin-top: 6px; }
.form__note { margin: 0; font-size: var(--step--1); color: var(--ink-mute); text-align: center; transition: color .2s ease; }
.form__note.is-ok { color: var(--palm-deep); font-weight: 700; }
.form__note.is-err { color: #c34637; font-weight: 700; }

/* keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--lagoon); outline-offset: 3px;
}

/* ---------- FOOTER ---------- */
.footer {
  max-width: var(--maxw); margin: 0 auto; padding: 54px 24px 64px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center;
}
.footer__top { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer__brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; color: var(--ink); }
.footer__meta { margin: 0; color: var(--ink-soft); font-size: var(--step--1); }
.footer__credits { margin: 6px 0 0; color: var(--ink-mute); font-size: 0.78rem; max-width: 60ch; line-height: 1.5; }
.footer__credits a { color: var(--lagoon-deep); }
.footer__copy { margin: 0; color: var(--ink-mute); font-size: var(--step--1); }

/* Content is always fully visible — no scroll-dependent reveal that could
   leave sections blank. Hover/focus transitions above provide the motion. */

/* ---------- LANG SWITCHER (nav) ---------- */
.nav__lang { display: inline-flex; align-items: center; gap: 2px; font-size: 0.8rem; font-weight: 700; }
.nav__lang a {
  color: var(--ink-mute); text-decoration: none; padding: 6px 8px; border-radius: 8px;
  transition: color .2s ease, background .2s ease;
}
.nav__lang a.is-active { color: var(--ink); }
.nav__lang a:hover { color: var(--ink); background: rgba(6, 140, 156, 0.10); }
.nav__lang .sep { color: var(--line); font-weight: 400; }

/* ---------- VIDEO (lite-YouTube facade) ---------- */
.video__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 768px) { .video__grid { grid-template-columns: 1fr; } }
.lite-yt {
  position: relative; margin: 0; aspect-ratio: 16 / 9; cursor: pointer;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  background-size: cover; background-position: center; background-color: var(--deep, #0a1a2b);
}
.lite-yt::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,28,31,0) 40%, rgba(4,28,31,0.72) 100%);
  transition: background .25s ease;
}
.lite-yt:hover::before { background: linear-gradient(180deg, rgba(4,28,31,0.1) 30%, rgba(4,28,31,0.78) 100%); }
.lite-yt__btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 72px; height: 72px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,0.92); color: var(--lagoon-deep);
  display: grid; place-items: center; box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  transition: transform .2s ease, background .2s ease;
}
.lite-yt:hover .lite-yt__btn { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
.lite-yt__btn svg { width: 30px; height: 30px; margin-left: 3px; }
.lite-yt__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 34px 20px 16px; color: #fff; font-weight: 600; font-size: var(--step-0);
  line-height: 1.35;
}
.lite-yt__cap span {
  display: block; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: #cdeef2; margin-bottom: 3px; font-weight: 700;
}
.lite-yt__frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lite-yt.is-playing::before, .lite-yt.is-playing .lite-yt__cap { display: none; }

/* ---------- SCHOOLS (compare) ---------- */
.school-featured {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 4vw, 44px);
  align-items: center; margin-bottom: 26px; padding: clamp(22px, 3vw, 34px);
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.school-featured h3 { font-family: "Fraunces", serif; font-weight: 500; font-size: var(--step-2); margin: 12px 0 6px; color: var(--ink); }
.school-featured__meta { margin: 0 0 14px; color: var(--lagoon-deep); font-weight: 700; font-size: var(--step--1); }
.school-featured p { color: var(--ink-soft); margin: 0 0 22px; }
.school-featured .btn { margin-top: 2px; }
.school-featured__gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.school-featured__gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
@media (max-width: 820px) {
  .school-featured { grid-template-columns: 1fr; }
  .school-featured__gallery { order: -1; }
}

.school-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 900px) { .school-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .school-grid { grid-template-columns: 1fr; } }
.school-card {
  padding: 20px 20px 18px; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.school-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.school-card h4 { margin: 0 0 4px; font-size: var(--step-0); font-weight: 700; color: var(--ink); line-height: 1.25; }
.school-card__city {
  display: inline-block; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--palm-deep); font-weight: 700; margin-bottom: 10px;
}
.school-card p { margin: 0; color: var(--ink-soft); font-size: var(--step--1); line-height: 1.45; }
.schools__note { margin: 22px 0 0; font-size: 0.78rem; color: var(--ink-mute); max-width: 70ch; }

/* ---------- CONSULTANT ---------- */
.consultant {
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(28px, 5vw, 64px); align-items: center;
}
.consultant__photo { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.consultant__photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; display: block; }
.consultant__text .section__title { margin-top: 8px; }
.consultant__text .btn { margin-top: 26px; }
.consultant__photo { position: relative; }
.consultant__photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 40px 20px 16px; color: #fff;
  background: linear-gradient(0deg, rgba(4,28,31,0.78), transparent);
  font-family: "Fraunces", serif; font-size: var(--step-1); font-weight: 500;
}
.consultant__photo figcaption span {
  display: block; font-family: "Manrope", sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: #cdeef2; margin-bottom: 3px;
}
.consultant__role { color: var(--lagoon-deep); font-weight: 700; font-size: var(--step--1); margin: 0 0 4px; }
.consultant__trust { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 13px; }
.consultant__trust li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink-soft); }
.consultant__trust svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--palm); margin-top: 3px; }
.consultant__trust strong { color: var(--ink); font-weight: 700; }
.consultant__chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; }
.consultant__chips span {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.03em; color: var(--ink);
  background: var(--shell); border: 1px solid var(--line); border-radius: 999px; padding: 7px 13px;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 760px) {
  .consultant { grid-template-columns: 1fr; }
  .consultant__photo { max-width: 360px; margin-inline: auto; }
  .consultant__photo img { aspect-ratio: 3 / 4; }
}

/* ---------- FAQ (details/summary) ---------- */
.faq__list { display: grid; gap: 12px; max-width: 820px; }
.faq__item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 4px 22px; box-shadow: var(--shadow-sm);
}
.faq__item summary {
  list-style: none; cursor: pointer; padding: 18px 0; font-weight: 700; color: var(--ink);
  font-size: var(--step-0); display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; font-family: "Manrope", sans-serif; font-weight: 400; font-size: 1.5em;
  color: var(--lagoon); line-height: 1; transition: transform .25s ease;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { margin: 0 0 20px; color: var(--ink-soft); max-width: 68ch; }
