/* ==========================================================================
   HoldaCARE — Design System & Styles
   "Caring for the people who care for others."
   Palette: navy (trust) · sage (calm) · cream (warmth) · gold (hope, sparingly)
   Type:    Fraunces (display serif) · Mulish (humanist sans)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand — navy */
  --navy-900: #131f38;
  --navy-800: #18254a;
  --navy-700: #1e2f57;
  --navy-600: #294071;
  --navy-500: #36527f;

  /* Brand — sage */
  --sage-700: #4f6e58;
  --sage-600: #5f8068;
  --sage-500: #779a7e;
  --sage-400: #93b095;
  --sage-200: #c6d8c5;
  --sage-100: #e0ebde;
  --sage-50:  #eef4ec;

  /* Brand — cream / surfaces */
  --cream:      #f8f4ec;
  --cream-deep: #f1ebdf;
  --surface:    #fffdf8;
  --white:      #ffffff;

  /* Brand — gold (use sparingly: the single note of hope) */
  --gold-600: #b8902f;
  --gold-500: #c8a24a;
  --gold-400: #d9bd72;
  --gold-200: #ecdcab;

  /* Ink / text */
  --ink:       #20304d;
  --ink-soft:  #4c5870;
  --ink-faint: #707b91;
  --on-dark:        #f3eee3;
  --on-dark-soft:   #c3c9d6;

  /* Semantic */
  --bg:            var(--cream);
  --text:          var(--ink);
  --heading:       var(--navy-800);
  --accent:        var(--sage-600);
  --link:          var(--navy-600);
  --link-hover:    var(--sage-700);

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Fluid type scale */
  --step--1: clamp(0.83rem, 0.79rem + 0.18vw, 0.94rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.13rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.5rem);
  --step-2:  clamp(1.44rem, 1.31rem + 0.65vw, 2rem);
  --step-3:  clamp(1.73rem, 1.52rem + 1.05vw, 2.66rem);
  --step-4:  clamp(2.07rem, 1.74rem + 1.65vw, 3.55rem);
  --step-5:  clamp(2.49rem, 1.99rem + 2.5vw, 4.7rem);

  /* Spacing */
  --space-2xs: 0.375rem;
  --space-xs:  0.625rem;
  --space-sm:  1rem;
  --space-md:  1.6rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8.5rem;

  /* Layout */
  --container: 1180px;
  --container-narrow: 820px;
  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(19, 31, 56, 0.06), 0 2px 6px rgba(19, 31, 56, 0.05);
  --shadow:    0 6px 18px rgba(19, 31, 56, 0.08), 0 2px 6px rgba(19, 31, 56, 0.05);
  --shadow-lg: 0 22px 50px -18px rgba(19, 31, 56, 0.28), 0 8px 22px -12px rgba(19, 31, 56, 0.18);
  --ring: 0 0 0 3px rgba(200, 162, 74, 0.5);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 0.5s;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--heading);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { text-wrap: pretty; }

a { color: var(--link); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--link-hover); }

ul, ol { padding-left: 1.2em; }

strong { font-weight: 700; color: var(--navy-700); }

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

::selection { background: var(--gold-200); color: var(--navy-800); }

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.5rem);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(3.25rem, 7vw, var(--space-3xl)); }
.section--tight { padding-block: clamp(2.5rem, 5vw, var(--space-2xl)); }

.section--cream-deep { background: var(--cream-deep); }
.section--sage {
  background: linear-gradient(160deg, var(--sage-50), var(--sage-100));
}
.section--navy {
  background:
    radial-gradient(120% 130% at 85% -10%, rgba(54, 82, 127, 0.55), transparent 60%),
    linear-gradient(165deg, var(--navy-800), var(--navy-900));
  color: var(--on-dark);
}
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.section--navy p { color: var(--on-dark-soft); }

.stack > * + * { margin-top: var(--flow, 1.1em); }

.grid { display: grid; gap: var(--gap, 1.6rem); }
@media (min-width: 620px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 720px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.text-center { text-align: center; }
.measure { max-width: 65ch; }
.mx-auto { margin-inline: auto; }

/* --------------------------------------------------------------------------
   4. Shared type helpers
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--step--1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-700);
}
.section--navy .eyebrow { color: var(--gold-400); }
.eyebrow::before {
  content: "";
  width: 1.6em; height: 2px;
  background: currentColor;
  border-radius: 2px;
  opacity: 0.7;
}
.eyebrow--center { justify-content: center; }

.lead {
  font-size: var(--step-1);
  line-height: 1.6;
  color: var(--ink-soft);
}
.section--navy .lead { color: var(--on-dark); }

.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.text-center { margin-inline: auto; }

.script-accent {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--sage-700);
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--navy-700);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 0.85em 1.6em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--step-0);
  line-height: 1.1;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1.5px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.2s var(--ease);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.btn:hover { color: var(--btn-fg); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn .btn__icon { transition: transform 0.25s var(--ease); }
.btn:hover .btn__icon { transform: translateX(3px); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--navy-700);
  border-color: rgba(30, 47, 87, 0.25);
  box-shadow: none;
}
.btn--ghost:hover { --btn-fg: var(--navy-800); border-color: var(--sage-500); background: var(--sage-50); }

.btn--gold {
  --btn-bg: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  --btn-fg: #20304d;
}
.btn--on-dark {
  --btn-bg: #fff;
  --btn-fg: var(--navy-800);
}
.btn--ghost-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border-color: rgba(243, 238, 227, 0.35);
  box-shadow: none;
}
.btn--ghost-light:hover { --btn-fg: #fff; background: rgba(255,255,255,0.08); border-color: rgba(243,238,227,0.6); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.btn-row--center { justify-content: center; }

/* --------------------------------------------------------------------------
   6. Brand lockup (logo)
   -------------------------------------------------------------------------- */
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand__mark { width: 46px; height: 46px; flex: none; }
.brand__word {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
}
.brand__holda {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.32rem;
  letter-spacing: 0.04em;
  color: var(--navy-800);
}
.brand__care {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  color: var(--sage-600);
  text-transform: uppercase;
}
.site-footer .brand__holda { color: #fff; }
.site-footer .brand__care { color: var(--sage-400); }

/* --------------------------------------------------------------------------
   7. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 244, 236, 0.82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: rgba(30, 47, 87, 0.1);
  box-shadow: 0 6px 24px -18px rgba(19, 31, 56, 0.5);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4.7rem;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1.6vw, 1.7rem);
  list-style: none;
  margin: 0; padding: 0;
}
.nav__link {
  position: relative;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink-soft);
  padding: 0.4rem 0.15rem;
}
.nav__link:hover { color: var(--navy-800); }
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--sage-500);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav__link:hover::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--navy-800); }
.nav__link[aria-current="page"]::after { transform: scaleX(1); background: var(--gold-500); }

.nav__cta { margin-left: 0.4rem; padding: 0.62em 1.25em; font-size: 0.95rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(30, 47, 87, 0.18);
  border-radius: 12px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  height: 2px; width: 100%;
  background: var(--navy-800);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    inset: 4.7rem 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    padding: 1rem clamp(1.1rem, 4vw, 2.5rem) 1.6rem;
    border-bottom: 1px solid rgba(30,47,87,0.1);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
    max-height: calc(100vh - 4.7rem);
    overflow-y: auto;
  }
  .nav__menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__link { padding: 0.95rem 0.25rem; font-size: 1.08rem; border-bottom: 1px solid rgba(30,47,87,0.07); }
  .nav__link::after { display: none; }
  .nav__cta { margin: 1rem 0 0; width: 100%; }
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 7.5rem);
  background:
    radial-gradient(80% 70% at 88% 8%, rgba(147, 176, 149, 0.28), transparent 60%),
    radial-gradient(70% 60% at 5% 95%, rgba(236, 220, 171, 0.32), transparent 55%),
    var(--cream);
}
.hero__inner {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 940px) {
  .hero__inner { grid-template-columns: 1.05fr 0.95fr; }
}
.hero h1 { margin-top: 0.4rem; }
.hero .lead { margin-top: 1.4rem; max-width: 42ch; }
.hero .btn-row { margin-top: 2.1rem; }
.hero__note {
  margin-top: 1.6rem;
  font-size: var(--step--1);
  color: var(--ink-faint);
  display: inline-flex; align-items: center; gap: 0.5rem;
}

.hero__art {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
}
.hero__art-disc {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, var(--surface), var(--cream-deep) 70%, #e7dcc6 100%);
  box-shadow: var(--shadow-lg), inset 0 2px 14px rgba(255,255,255,0.7);
}
.hero__art-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px dashed rgba(95, 128, 104, 0.4);
  animation: spin 60s linear infinite;
}
.hero__art-mark { position: relative; width: 64%; }

/* Official logo lockup presented on a clean white card (the PNG has a white background) */
.hero__logo-card {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 520px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(30, 47, 87, 0.06);
}
.hero__logo-card img { width: 100%; height: auto; display: block; }

@media (prefers-reduced-motion: reduce) {
  .hero__art-ring { animation: none; }
  html { scroll-behavior: auto; }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* floating hero badges */
.hero__chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  background: var(--surface);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-700);
  border: 1px solid rgba(30,47,87,0.05);
}
.hero__chip svg { width: 17px; height: 17px; }
.hero__chip--1 { top: 8%; left: -2%; }
.hero__chip--2 { bottom: 12%; right: -3%; }
.hero__chip--3 { bottom: 30%; left: -6%; }
@media (max-width: 540px) { .hero__chip { display: none; } }

/* --------------------------------------------------------------------------
   9. Cards & feature blocks
   -------------------------------------------------------------------------- */
.card {
  background: var(--surface);
  border: 1px solid rgba(30, 47, 87, 0.07);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 2.1rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--sage-200); }
.card h3 { font-size: var(--step-1); margin-bottom: 0.5rem; }
.card p { color: var(--ink-soft); }

.card__icon {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  margin-bottom: 1.2rem;
  border-radius: 15px;
  background: linear-gradient(150deg, var(--sage-100), var(--sage-50));
  color: var(--sage-700);
  border: 1px solid var(--sage-200);
}
.card__icon svg { width: 28px; height: 28px; }
.card--gold .card__icon {
  background: linear-gradient(150deg, var(--gold-200), #f6eccf);
  color: var(--gold-600);
  border-color: var(--gold-200);
}

.card--feature { display: flex; flex-direction: column; }
.card__tag {
  align-self: flex-start;
  margin-top: 1rem;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-600);
  background: #f7eed5;
  padding: 0.3em 0.7em; border-radius: var(--radius-pill);
}

/* List with check / dot markers */
.feature-list { list-style: none; padding: 0; display: grid; gap: 0.9rem; }
.feature-list li { position: relative; padding-left: 2.1rem; color: var(--ink-soft); }
.feature-list li strong { display: block; color: var(--navy-700); font-weight: 700; }
.feature-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.18em;
  width: 1.35rem; height: 1.35rem;
  border-radius: 50%;
  background: var(--sage-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235f8068' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 0.85rem no-repeat;
}

/* --------------------------------------------------------------------------
   10. Stats
   -------------------------------------------------------------------------- */
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1;
  color: var(--navy-700);
  letter-spacing: -0.02em;
}
.section--navy .stat__num { color: #fff; }
.stat__num .unit { color: var(--gold-500); }
.stat__label { margin-top: 0.7rem; color: var(--ink-soft); font-weight: 600; }
.section--navy .stat__label { color: var(--on-dark-soft); }
.stat__source { display: block; margin-top: 0.5rem; font-size: 0.74rem; color: var(--ink-faint); font-weight: 500; }
.section--navy .stat__source { color: rgba(195, 201, 214, 0.7); }

.stat-band { display: grid; gap: 2rem; }
@media (min-width: 720px) { .stat-band { grid-template-columns: repeat(3, 1fr); } }
.stat-band .stat + .stat { position: relative; }

/* pull quote */
.pullquote {
  font-family: var(--font-display);
  font-size: var(--step-3);
  line-height: 1.32;
  color: var(--navy-800);
  font-weight: 400;
  text-wrap: balance;
}
.section--navy .pullquote { color: #fff; }
.pullquote--lg { font-size: var(--step-4); }

/* --------------------------------------------------------------------------
   11. Principles grid
   -------------------------------------------------------------------------- */
.principle {
  padding: 1.6rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(30,47,87,0.06);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.principle:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.principle__num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-600);
  letter-spacing: 0.05em;
}
.principle h3 { font-size: 1.18rem; margin: 0.35rem 0 0.5rem; }
.principle p { font-size: 0.95rem; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   12. Timeline (roadmap)
   -------------------------------------------------------------------------- */
.timeline { position: relative; margin-top: 2.5rem; }
.timeline::before {
  content: "";
  position: absolute; top: 6px; bottom: 6px; left: 19px;
  width: 2px;
  background: linear-gradient(var(--sage-300, var(--sage-400)), var(--sage-200));
}
.tl-item { position: relative; padding: 0 0 2.4rem 3.6rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item__dot {
  position: absolute; left: 9px; top: 4px;
  width: 22px; height: 22px;
  background: var(--surface);
  border: 3px solid var(--sage-500);
  border-radius: 50%;
  z-index: 1;
}
.tl-item--launch .tl-item__dot { border-color: var(--gold-500); background: var(--gold-200); }
.tl-item--current .tl-item__dot {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 5px rgba(200,162,74,0.18);
}
.tl-item__date {
  font-family: var(--font-body);
  font-weight: 800; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sage-700);
}
.tl-item--launch .tl-item__date, .tl-item--current .tl-item__date { color: var(--gold-600); }
.tl-item h3 { font-size: 1.25rem; margin: 0.25rem 0 0.5rem; }
.tl-item p { color: var(--ink-soft); }
.tl-badge {
  display: inline-block; margin-left: 0.6rem;
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; background: var(--gold-600);
  padding: 0.25em 0.6em; border-radius: var(--radius-pill);
  vertical-align: middle;
}
.tl-badge--now { background: var(--sage-600); }

/* --------------------------------------------------------------------------
   13. Team
   -------------------------------------------------------------------------- */
.team-grid { display: grid; gap: 1.6rem; }
@media (min-width: 560px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

.member {
  background: var(--surface);
  border: 1px solid rgba(30,47,87,0.07);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.member:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.member__avatar {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.4rem;
  color: #fff;
  background: linear-gradient(145deg, var(--navy-600), var(--navy-800));
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.1rem;
}
.member:nth-child(3n+2) .member__avatar { background: linear-gradient(145deg, var(--sage-500), var(--sage-700)); }
.member:nth-child(3n) .member__avatar { background: linear-gradient(145deg, var(--gold-400), var(--gold-600)); color: var(--navy-900); }
.member--open .member__avatar { background: repeating-linear-gradient(45deg, var(--sage-100), var(--sage-100) 8px, var(--sage-50) 8px, var(--sage-50) 16px); color: var(--sage-700); border: 1.5px dashed var(--sage-400); }
.member__name { font-family: var(--font-display); font-weight: 600; font-size: 1.22rem; color: var(--navy-800); }
.member__role { margin-top: 0.2rem; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.04em; color: var(--sage-700); text-transform: uppercase; }
.member__bio { margin-top: 0.9rem; font-size: 0.95rem; color: var(--ink-soft); }
.member__tag { display:inline-block; margin-top: 0.5rem; font-size: 0.72rem; font-weight:800; letter-spacing:0.08em; text-transform:uppercase; color: var(--gold-600); }

/* --------------------------------------------------------------------------
   14. Misc components
   -------------------------------------------------------------------------- */
.pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.45em 1em;
  background: var(--sage-50);
  border: 1px solid var(--sage-200);
  border-radius: var(--radius-pill);
  font-weight: 700; font-size: 0.8rem;
  color: var(--sage-700);
}
.pill svg { width: 15px; height: 15px; }
.section--navy .pill { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: var(--gold-400); }

.dot-sep { color: var(--gold-500); padding-inline: 0.5em; }

/* Comparison / gap two-column */
.split { display: grid; gap: 1.6rem; }
@media (min-width: 760px) { .split { grid-template-columns: 1fr 1fr; } }
.split__panel { border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem); height: 100%; }
.split__panel--muted { background: var(--cream-deep); border: 1px solid rgba(30,47,87,0.07); }
.split__panel--bright { background: linear-gradient(160deg, var(--sage-50), var(--sage-100)); border: 1px solid var(--sage-200); }
.split__panel h3 { font-size: var(--step-1); }
.split__label { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.8rem; }
.split__panel--muted .split__label { color: var(--ink-faint); }
.split__panel--bright .split__label { color: var(--sage-700); }
.plain-list { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.plain-list li { padding-left: 1.6rem; position: relative; color: var(--ink-soft); }
.plain-list--cross li::before { content: "—"; position: absolute; left: 0; color: var(--ink-faint); font-weight: 700; }
.plain-list--check li::before {
  content: ""; position: absolute; left: 0; top: 0.45em; width: 0.85rem; height: 0.85rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235f8068' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* CTA banner */
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 5vw, 4rem);
  text-align: center;
  background:
    radial-gradient(90% 120% at 80% 0%, rgba(54, 82, 127, 0.5), transparent 55%),
    linear-gradient(160deg, var(--navy-700), var(--navy-900));
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: var(--on-dark-soft); margin-inline: auto; }
.cta-banner .sparkle-deco { position: absolute; opacity: 0.5; }

/* small inline sparkle */
.spark { color: var(--gold-500); }

/* breadcrumb-ish page hero */
.page-hero { padding-block: clamp(3rem, 6vw, 5.5rem) clamp(2rem, 4vw, 3rem); position: relative; }
.page-hero .lead { margin-top: 1.1rem; }

/* definition row */
.def-row { display: grid; gap: 1rem; }
@media (min-width: 680px) { .def-row { grid-template-columns: repeat(3, 1fr); } }
.def {
  background: var(--surface); border-radius: var(--radius);
  border: 1px solid rgba(30,47,87,0.07); padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.def dt { font-family: var(--font-display); font-size: 1.15rem; color: var(--navy-800); font-weight: 600; }
.def dd { margin: 0.3rem 0 0; color: var(--ink-soft); font-size: 0.95rem; }
.def dt .spark { font-style: normal; }

/* FAQ */
.faq { max-width: 760px; margin-inline: auto; }
.faq details {
  background: var(--surface);
  border: 1px solid rgba(30,47,87,0.08);
  border-radius: var(--radius);
  padding: 0.4rem 1.4rem;
  margin-bottom: 0.9rem;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--navy-800);
  padding: 1rem 2rem 1rem 0;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-family: var(--font-body); font-weight: 400; font-size: 1.7rem; color: var(--sage-600);
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding-bottom: 1.1rem; color: var(--ink-soft); }

/* contact methods */
.contact-card {
  background: var(--surface); border:1px solid rgba(30,47,87,0.07);
  border-radius: var(--radius); padding: 1.9rem; box-shadow: var(--shadow-sm); height: 100%;
}
.contact-card .card__icon { margin-bottom: 1rem; }
.contact-card h3 { font-size: 1.18rem; }
.contact-card a { font-weight: 700; }

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background:
    radial-gradient(100% 120% at 90% -20%, rgba(54,82,127,0.35), transparent 55%),
    linear-gradient(170deg, var(--navy-800), var(--navy-900));
  color: var(--on-dark-soft);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.site-footer .footer-tag { margin-top: 1.1rem; max-width: 34ch; color: var(--on-dark-soft); }
.site-footer .footer-tagline { font-family: var(--font-display); font-style: italic; color: var(--gold-400); margin-top: 1.2rem; font-size: 1.05rem; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-weight: 800; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 0.65rem; }
.footer-col a { color: var(--on-dark-soft); font-weight: 500; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 0.4rem; }
.footer-social a {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(243,238,227,0.2);
  color: var(--on-dark-soft);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.footer-social a:hover { background: var(--gold-500); color: var(--navy-900); border-color: transparent; transform: translateY(-2px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.6rem;
  border-top: 1px solid rgba(243,238,227,0.14);
  display: flex; flex-wrap: wrap; gap: 0.8rem 1.5rem; align-items: center; justify-content: space-between;
  font-size: 0.82rem; color: rgba(195,201,214,0.75);
}
.footer-bottom a { color: rgba(195,201,214,0.85); }
.footer-bottom a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   16. Scroll reveal
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal][data-reveal-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}

/* skip link */
.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--navy-800); color: #fff; padding: 0.7rem 1.2rem;
  border-radius: 0 0 12px 12px; z-index: 200; font-weight: 700;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

/* helper for visually-hidden */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
