/* SFW Consultancy - merged stylesheet, built Phase 02. Dedup later. */
/* ===== PAGE: index ===== */
/* =========================================================
   CARE CONSULTANCY — DESIGN SYSTEM
   Reference: UrbanWell (soft, editorial, trust-forward)
   Craft rules: Open Design (anti-AI-slop, accent discipline,
   letter-spacing on ALL CAPS, negative tracking on display)
   ========================================================= */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Surfaces — soft lavender base inspired by reference */
  --bg: #eef0f5;
  --surface: #ffffff;
  --surface-2: #f6f7fa;
  --surface-inset: #e8ebf2;

  /* Foreground — warm near-black, not #000 */
  --fg: #0e1116;
  --fg-2: #2a2f38;
  --muted: #5b6472;
  --muted-2: #8a93a3;

  /* Borders — subtle */
  --border: #e2e6ee;
  --border-strong: #c8cfdb;

  /* Accent — friendly trust blue (NOT Tailwind indigo) */
  --accent: #7736a5;
  --accent-2: #f07814;        /* brand orange — secondary accent */
  --accent-2-soft: #fdf0e3;   /* light orange tint */
  --accent-hover: #2257c9;
  --accent-tint: #dbe6fb;
  --accent-deep: #3a1761;

  /* Semantic */
  --success: #17a34a;
  --warn: #d97706;

  /* Typography */
  --font-display: "Instrument Serif", "Source Serif Pro", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows — soft, no AI-default heavy shadows */
  --shadow-xs: 0 1px 2px rgba(14, 17, 22, 0.04);
  --shadow-sm: 0 2px 8px rgba(14, 17, 22, 0.05);
  --shadow-md: 0 8px 24px rgba(14, 17, 22, 0.06);
  --shadow-lg: 0 20px 50px rgba(14, 17, 22, 0.08);

  /* Spacing scale (multiplicative) */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;

  /* Container */
  --container: 1280px;
  --container-tight: 960px;
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv01", "ss03";
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

/* Selection */
::selection { background: var(--accent-tint); color: var(--accent-deep); }

/* ---------- TYPOGRAPHY ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--fg);
}

.display-sm {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-5);
}

h2, .h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0 0 var(--s-4);
  color: var(--fg);
}

h3, .h3 {
  font-family: var(--font-body);
  font-weight: 590;
  font-size: 1.375rem;
  line-height: 1.3;
  letter-spacing: -0.012em;
  margin: 0 0 var(--s-3);
  color: var(--fg);
}

h4, .h4 {
  font-family: var(--font-body);
  font-weight: 590;
  font-size: 1.125rem;
  line-height: 1.35;
  letter-spacing: -0.005em;
  margin: 0 0 var(--s-2);
  color: var(--fg);
}

p { margin: 0 0 var(--s-4); color: var(--fg-2); max-width: 65ch; }

.lead { font-size: 1.125rem; line-height: 1.6; color: var(--fg-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 510;
  text-transform: uppercase;
  letter-spacing: 0.08em; /* required for ALL CAPS — craft rule */
  color: var(--muted);
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--accent-2);
  border-radius: 3px;
  transform: rotate(45deg);
  opacity: 0.95;
}

.eyebrow-accent { color: var(--accent); }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}

.container-tight { max-width: var(--container-tight); margin: 0 auto; padding: 0 var(--s-5); }

.section { padding: var(--s-9) 0; }

.section-sm { padding: var(--s-7) 0; }

.section-tight { padding: var(--s-8) 0; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 510;
  letter-spacing: 0.005em;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--fg-2); }

.btn-white {
  background: var(--surface);
  color: var(--fg);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }

.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }

.btn-icon {
  width: 36px; height: 36px; padding: 0;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Arrow inside link — craft: monoline SVG with currentColor, not emoji */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 510;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
}
.link-arrow svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.link-arrow:hover svg { transform: translate(2px, -2px); }

/* ---------- CHIPS / PILLS ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 450;
  color: var(--fg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  transition: all 0.15s ease;
}
.chip:hover { border-color: var(--border-strong); }
.chip-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ---------- CARDS ---------- */
.card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.card-flat {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(238, 240, 245, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled { border-bottom-color: var(--border); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-logo-mark {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent);
  border-radius: 10px;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0; padding: 0;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 510;
  color: var(--fg-2);
  letter-spacing: -0.005em;
  position: relative;
  transition: color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--fg); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--fg);
  color: #cfd5e0;
  padding: var(--s-9) 0 var(--s-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-7);
}

.footer-brand .nav-logo { color: #fff; }
.footer-brand p { color: #98a1b3; max-width: 32ch; margin-top: 1rem; }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 590;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 0 var(--s-4);
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.625rem; }
.footer-col a { font-size: 0.9375rem; color: #98a1b3; transition: color 0.15s ease; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--s-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: #7a8294;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transition: all 0.15s ease;
}
.footer-socials a:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.25); }

/* ---------- IMAGE PLACEHOLDERS ---------- */
/* Per Open Design rule: use shipped placeholder, not external CDNs */
.ph-img {
  position: relative;
  display: block;
  width: 100%;
  background:
    linear-gradient(135deg, rgba(47, 111, 235, 0.06), rgba(47, 111, 235, 0.02)),
    repeating-linear-gradient(
      45deg,
      var(--surface-inset),
      var(--surface-inset) 12px,
      var(--surface-2) 12px,
      var(--surface-2) 24px
    );
  border-radius: var(--r-lg);
  overflow: hidden;
}

.ph-img::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 510;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding: 1rem;
}

.ph-img-portrait { aspect-ratio: 3/4; }
.ph-img-square { aspect-ratio: 1/1; }
.ph-img-landscape { aspect-ratio: 16/10; }
.ph-img-wide { aspect-ratio: 16/9; }

/* Avatar circle placeholder */
.avatar {
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-tint), var(--surface-inset));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 590;
  color: var(--accent-deep);
  letter-spacing: 0;
  flex-shrink: 0;
}

/* ---------- SHARED ICON STYLE ---------- */
/* Open Design rule: 1.6–1.8px-stroke monoline SVGs with currentColor */
.icon {
  width: 24px; height: 24px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-tile {
  width: 52px; height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-tint);
  color: var(--accent);
  border-radius: 14px;
  flex-shrink: 0;
}
.icon-tile .icon { width: 26px; height: 26px; }

/* ---------- RESPONSIVE BASE ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .section { padding: var(--s-7) 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-5); }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .nav-cta .btn:not(.btn-icon) { display: none; }
  .section { padding: var(--s-6) 0; }
}


/* =========================================================
   PAGE SECTIONS
   ========================================================= */

/* ---------- HERO (HOME) ---------- */
.hero {
  padding: var(--s-7) 0 var(--s-9);
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  margin-bottom: var(--s-7);
}

.hero-eyebrow-row { display: flex; align-items: center; gap: 0.75rem; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem 0.5rem 0.5rem;
  background: var(--surface);
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 510;
  color: var(--fg-2);
}

.hero-trust-avatars { display: flex; }
.hero-trust-avatars .avatar {
  width: 28px; height: 28px;
  font-size: 0.625rem;
  border: 2px solid var(--surface);
}
.hero-trust-avatars .avatar:not(:first-child) { margin-left: -8px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: end;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--s-5);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-4);
  align-items: stretch;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 380px;
}

.hero-image-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: var(--r-pill);
  font-size: 0.8125rem;
  font-weight: 590;
  letter-spacing: 0.02em;
  color: var(--fg);
  z-index: 2;
}

.hero-image-overlay {
  position: absolute;
  bottom: 1rem; left: 1rem;
  width: 110px; height: 110px;
  background: var(--surface);
  border-radius: var(--r-md);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.hero-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.75rem;
}

.hero-side-top h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.018em;
  margin: 0 0 1rem;
}

.hero-side-bottom h4 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 510;
  line-height: 1.5;
  color: var(--fg-2);
  margin: 0 0 1rem;
}

.hero-headline-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-headline-side .display {
  margin: 0;
}

/* Hero — chips row */
.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  margin-top: var(--s-6);
  align-items: start;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.hero-chips-caption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
  max-width: 36ch;
}

.hero-community-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--s-5);
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--s-4);
}

.hero-community-card .avatar-stack {
  position: relative; width: 92px; height: 92px; flex-shrink: 0;
}
.hero-community-card .avatar-stack .avatar { position: absolute; }
.hero-community-card .avatar-stack .avatar:nth-child(1) { top: 0; left: 0; width: 44px; height: 44px; }
.hero-community-card .avatar-stack .avatar:nth-child(2) { top: 0; right: 0; width: 44px; height: 44px; }
.hero-community-card .avatar-stack .avatar:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); width: 44px; height: 44px; }

.hero-community-card-inner {
  flex: 1;
  text-align: left;
}
.hero-community-card-inner .eyebrow { margin-bottom: 0.4rem; }
.hero-community-card-inner h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

/* ---------- ACCREDITATION BAR ---------- */
.accred-bar {
  padding: var(--s-6) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.accred-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  flex-wrap: wrap;
}

.accred-label {
  font-size: 0.75rem;
  font-weight: 510;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  white-space: nowrap;
}

.accred-logos {
  display: flex;
  align-items: center;
  gap: var(--s-7);
  flex-wrap: wrap;
}

.accred-logo {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.85;
}
.accred-logo svg { width: 22px; height: 22px; opacity: 0.7; }

/* ---------- SECTION HEADERS ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: end;
  margin-bottom: var(--s-7);
}
.section-head-tight { margin-bottom: var(--s-6); }
.section-head-center { grid-template-columns: 1fr; text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-head-center p { margin-left: auto; margin-right: auto; }
.section-head h2 { margin-bottom: 0.25rem; }
.section-head p { margin: 0; color: var(--muted); }

/* ---------- SERVICES BENTO GRID ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: var(--s-5);
}

.service-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}

.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.service-card h3 {
  margin: var(--s-4) 0 0.5rem;
  font-size: 1.25rem;
}
.service-card p { font-size: 0.9375rem; color: var(--muted); margin: 0 0 var(--s-4); }

/* Bento spans */
.service-card.tall { grid-column: span 2; grid-row: span 2; }
.service-card.wide { grid-column: span 3; }
.service-card.wider { grid-column: span 4; }
.service-card.medium { grid-column: span 2; }
.service-card.small { grid-column: span 2; }

.service-card.featured {
  background: var(--fg);
  color: #cfd5e0;
  border-color: var(--fg);
}
.service-card.featured h3 { color: #fff; }
.service-card.featured p { color: #98a1b3; }
.service-card.featured .icon-tile {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.service-card.accent {
  background: var(--accent);
  color: #f0e6f8;
  border-color: var(--accent);
}
.service-card.accent h3 { color: #fff; }
.service-card.accent p { color: #c4d8fb; }
.service-card.accent .icon-tile { background: rgba(255, 255, 255, 0.15); color: #fff; }

.service-card .link-arrow { margin-top: auto; }
.service-card.featured .link-arrow, .service-card.accent .link-arrow { color: #fff; }

.service-card-image {
  position: relative;
  margin: calc(var(--s-6) * -1) calc(var(--s-6) * -1) var(--s-4);
  height: 180px;
  border-radius: 0;
}
.service-card.tall .service-card-image { height: 240px; }

/* ---------- WHY US — VALUE CARDS ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.value-card {
  padding: var(--s-6);
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.value-card:hover { box-shadow: var(--shadow-sm); border-color: var(--border-strong); }

.value-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: var(--s-4) 0 var(--s-3);
}

.value-card p { font-size: 0.9375rem; color: var(--muted); margin: 0; }

/* ---------- STATS STRIP ---------- */
.stats-strip {
  background: var(--fg);
  color: #fff;
  border-radius: var(--r-xl);
  padding: var(--s-7) var(--s-6);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}

.stat {
  text-align: left;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: var(--s-5);
}
.stat:first-child { border-left: none; padding-left: 0; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0;
  color: #fff;
}

.stat-label {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #98a1b3;
  max-width: 22ch;
}

/* ---------- PROCESS STEPS ---------- */
.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-4);
  position: relative;
}

.process-step {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  border: 1px solid var(--border);
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}

.process-step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
  margin-bottom: var(--s-4);
}

.process-step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: -0.012em;
  margin: 0 0 0.75rem;
}

.process-step p { font-size: 0.875rem; color: var(--muted); margin: 0; }

/* ---------- ABOUT TEASER ---------- */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: center;
}

.about-teaser-image .ph-img { aspect-ratio: 5/6; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.testimonial {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--fg);
  margin: 0;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: var(--s-4);
  border-top: 1px solid var(--border);
}

.testimonial-author .avatar { width: 44px; height: 44px; font-size: 0.875rem; }

.testimonial-author-name { font-weight: 590; font-size: 0.9375rem; color: var(--fg); }
.testimonial-author-role { font-size: 0.8125rem; color: var(--muted); }

.testimonial.featured {
  grid-column: span 2;
  background: var(--accent-tint);
  border-color: transparent;
}
.testimonial.featured .testimonial-quote { font-size: 1.625rem; line-height: 1.3; }
.testimonial.featured .testimonial-author { border-top-color: rgba(47, 111, 235, 0.2); }

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.2s ease;
}
.faq-item[open] { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  font-family: var(--font-body);
  font-weight: 510;
  font-size: 1rem;
  color: var(--fg);
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-toggle {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface-inset);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.faq-item[open] .faq-toggle { background: var(--accent); color: #fff; transform: rotate(45deg); }

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}
.faq-answer p:last-child { margin-bottom: 0; }

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: var(--fg);
  color: #fff;
  border-radius: var(--r-xl);
  padding: var(--s-9) var(--s-7);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(47, 111, 235, 0.25), transparent 60%);
  top: -300px; right: -200px;
  border-radius: 50%;
  pointer-events: none;
}

.final-cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }

.final-cta h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: var(--s-4);
}

.final-cta p { color: #cfd5e0; max-width: 50ch; margin: 0 auto var(--s-6); font-size: 1.0625rem; }

.final-cta-actions { display: inline-flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }

/* ---------- PAGE HEROS (ABOUT/FAQ/CONTACT) ---------- */
.page-hero {
  padding: var(--s-7) 0 var(--s-8);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-7);
  align-items: end;
}

.page-hero-content .display-sm { margin: 1rem 0 1.25rem; }
.page-hero-content p { font-size: 1.125rem; color: var(--fg-2); max-width: 50ch; }

.page-hero-image .ph-img { aspect-ratio: 4/3; }

/* ---------- ABOUT — OUR STORY ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-7);
  align-items: start;
}
.story-content p { font-size: 1rem; }
.story-image .ph-img { aspect-ratio: 4/5; }

/* ---------- ABOUT — TEAM ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}

.team-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.team-card .ph-img { aspect-ratio: 4/5; border-radius: 0; }
.team-card-body { padding: var(--s-5); }
.team-card h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.375rem;
  letter-spacing: -0.012em;
  margin: 0 0 0.25rem;
}
.team-card-role {
  font-size: 0.8125rem;
  font-weight: 510;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.875rem;
}
.team-card p { font-size: 0.875rem; color: var(--muted); margin: 0; }

/* ---------- ABOUT — ALTERNATING FEATURES ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: center;
  margin-bottom: var(--s-8);
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-row-content { order: 2; }
.feature-row.reverse .feature-row-image { order: 1; }

.feature-row-image .ph-img { aspect-ratio: 4/3; }

.feature-row-list {
  list-style: none;
  padding: 0;
  margin: var(--s-4) 0 0;
}
.feature-row-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
  color: var(--fg-2);
}
.feature-row-list .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-row-list .check svg { width: 12px; height: 12px; stroke-width: 2.5; }

/* ---------- CONTACT METHODS ---------- */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.contact-method {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.contact-method:hover { box-shadow: var(--shadow-sm); border-color: var(--border-strong); }

.contact-method-label {
  font-size: 0.75rem;
  font-weight: 510;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: var(--s-4) 0 0.5rem;
}

.contact-method-value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin: 0 0 var(--s-3);
  display: block;
}

.contact-method .link-arrow { color: var(--accent); }

/* ---------- CONTACT FORM ---------- */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--s-6);
  align-items: start;
}

.contact-form-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--s-7);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
}

.form-field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: var(--s-4); }

.form-label {
  font-size: 0.8125rem;
  font-weight: 510;
  color: var(--fg-2);
  letter-spacing: 0.005em;
}

.form-input,
.form-textarea,
.form-select {
  font-family: inherit;
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--fg);
  transition: all 0.15s ease;
  width: 100%;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}
.form-textarea { min-height: 140px; resize: vertical; font-family: inherit; }

.form-select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235b6472' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-submit { margin-top: var(--s-4); width: 100%; }

.contact-sidebar { display: flex; flex-direction: column; gap: var(--s-5); }
.contact-sidebar-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
}
.contact-sidebar-card h4 {
  font-family: var(--font-body);
  font-weight: 590;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 var(--s-3);
}
.contact-sidebar-card p { font-size: 0.9375rem; margin: 0 0 0.5rem; color: var(--fg-2); }
.contact-sidebar-card p:last-child { margin-bottom: 0; }

.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--fg-2);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:first-child { color: var(--muted); }

/* ---------- MAP ---------- */
.map-wrap {
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe, .map-wrap .ph-img {
  width: 100%;
  display: block;
  aspect-ratio: 16/6;
  border: 0;
  border-radius: 0;
}

/* ---------- RESPONSIVE — SECTIONS ---------- */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .service-card.tall { grid-column: span 2; grid-row: span 2; }
  .service-card.wide { grid-column: span 2; }
  .service-card.wider { grid-column: span 4; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-top { flex-direction: column; align-items: flex-start; }
  .section-head { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-left: none; padding-left: 0; }
  .about-teaser { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial.featured { grid-column: span 1; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-row-content { order: 1; }
  .feature-row.reverse .feature-row-image { order: 2; }
  .contact-methods { grid-template-columns: 1fr; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .hero-card-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { min-height: 280px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card.tall, .service-card.wide, .service-card.wider, .service-card.medium, .service-card.small { grid-column: span 1; grid-row: auto; }
  .why-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: var(--s-5); }
  .final-cta { padding: var(--s-7) var(--s-5); }
  .stats-strip { padding: var(--s-6) var(--s-5); }
}


.hero-image-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}


/* ===========================
   HERO (FULL-BLEED, Mindhaven-style)
   =========================== */
.hero-fullbleed {
  padding: var(--s-5) 0 var(--s-9);
}

.hero-wide-container {
  max-width: 1440px; /* wider than --container (1280px) */
  margin: 0 auto;
  padding: 0 var(--s-4);
  width: 100%;
}

.hero-card-fullbleed {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 640px;
  box-shadow: var(--shadow-md);
  background: var(--fg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 17, 22, 0) 30%, rgba(14, 17, 22, 0.55) 70%, rgba(14, 17, 22, 0.85) 100%),
    linear-gradient(90deg, rgba(14, 17, 22, 0.45) 0%, rgba(14, 17, 22, 0.15) 50%, rgba(14, 17, 22, 0.25) 100%);
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--s-6);
  align-items: end;
  padding: var(--s-8) var(--s-7);
  color: #fff;
}

.hero-overlay-left {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  max-width: 620px;
}

.hero-fb-headline {
  font-family: var(--font-body);
  font-weight: 510;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0;
}
.hero-fb-headline em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  display: block;
  margin-top: 0.1em;
  letter-spacing: -0.015em;
  color: #fff;
}

.hero-fb-body {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 52ch;
  margin: 0;
}

.hero-fb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn-overlay {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-overlay:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-1px);
}

.hero-fb-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 0.25rem;
}
.hero-fb-trust strong { font-weight: 590; color: #fff; }

.hero-fb-star {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-2);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Floating stat card (glass) */
.hero-fb-card {
  background: rgba(14, 17, 22, 0.32);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  color: #fff;
  max-width: 380px;
  justify-self: end;
}

.hero-fb-card-top {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.avatar-stack-row {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.avatar-stack-row .avatar {
  width: 36px; height: 36px;
  font-size: 0.6875rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.avatar-stack-row .avatar:not(:first-child) { margin-left: -10px; }

.hero-fb-card-stat {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.75rem;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0;
  color: #fff;
}
.hero-fb-card-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0.25rem 0 0;
  letter-spacing: 0.005em;
}

.hero-fb-card-body {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* ===========================
   HERO RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .hero-card-fullbleed { min-height: 580px; }
  .hero-overlay {
    grid-template-columns: 1fr;
    padding: var(--s-6) var(--s-5);
    gap: var(--s-5);
  }
  .hero-fb-card { max-width: 100%; justify-self: stretch; }
  .hero-fb-actions .btn-lg { padding: 0.875rem 1.25rem; }
}

@media (max-width: 600px) {
  .hero-fullbleed { padding: var(--s-4) 0 var(--s-7); }
  .hero-wide-container { padding: 0 var(--s-3); }
  .hero-card-fullbleed { min-height: 560px; border-radius: var(--r-lg); }
  .hero-overlay { padding: var(--s-5) var(--s-4); }
  .hero-fb-headline { font-size: clamp(2rem, 9vw, 2.75rem); }
  .hero-fb-body { font-size: 1rem; }
  .hero-fb-actions { width: 100%; }
  .hero-fb-actions .btn { flex: 1; min-width: 140px; justify-content: center; }
  .hero-fb-card { padding: var(--s-4); }
}


/* ===========================
   LOGO IMAGES (header + footer)
   =========================== */
.nav-logo-image {
  padding: 0;
  font-size: 0;          /* kill any text fallback whitespace */
  line-height: 0;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.footer-logo-link {
  display: inline-block;
  margin-bottom: var(--s-3);
}
.footer-logo-img {
  height: 110px;
  width: auto;
  display: block;
}

@media (max-width: 600px) {
  .nav-logo-img { height: 38px; }
  .footer-logo-img { height: 90px; }
}


/* ===========================
   AUDIENCE GRID (Who We Help)
   =========================== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.audience-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  border: 1px solid rgba(15, 18, 22, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.audience-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.audience-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent-2);
  letter-spacing: -0.02em;
  margin-bottom: var(--s-2);
}
.audience-card h3 {
  font-family: var(--font-body);
  font-weight: 590;
  font-size: 1.0625rem;
  margin: 0 0 0.5rem;
  color: var(--fg);
}
.audience-card p {
  font-size: 0.9375rem;
  color: var(--fg-2);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .audience-grid { grid-template-columns: 1fr; }
}

/* ===========================
   RESULTS LIST
   =========================== */
.results-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3) var(--s-5);
  max-width: 960px;
  margin: 0 auto;
}
.results-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 1.0625rem;
  color: var(--fg);
  line-height: 1.5;
  padding: var(--s-3) 0;
  border-bottom: 1px solid rgba(15, 18, 22, 0.07);
}
.results-list li:last-child {
  border-bottom: none;
}
.results-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--accent-2-soft);
  color: var(--accent-2);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.results-check .icon {
  width: 14px;
  height: 14px;
}

@media (max-width: 700px) {
  .results-list { grid-template-columns: 1fr; }
}
/* ===== PAGE: about ===== */
/* =========================================================
   CARE CONSULTANCY — DESIGN SYSTEM
   Reference: UrbanWell (soft, editorial, trust-forward)
   Craft rules: Open Design (anti-AI-slop, accent discipline,
   letter-spacing on ALL CAPS, negative tracking on display)
   ========================================================= */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Surfaces — soft lavender base inspired by reference */
  --bg: #eef0f5;
  --surface: #ffffff;
  --surface-2: #f6f7fa;
  --surface-inset: #e8ebf2;

  /* Foreground — warm near-black, not #000 */
  --fg: #0e1116;
  --fg-2: #2a2f38;
  --muted: #5b6472;
  --muted-2: #8a93a3;

  /* Borders — subtle */
  --border: #e2e6ee;
  --border-strong: #c8cfdb;

  /* Accent — friendly trust blue (NOT Tailwind indigo) */
  --accent: #7736a5;
  --accent-2: #f07814;        /* brand orange — secondary accent */
  --accent-2-soft: #fdf0e3;   /* light orange tint */
  --accent-hover: #2257c9;
  --accent-tint: #dbe6fb;
  --accent-deep: #3a1761;

  /* Semantic */
  --success: #17a34a;
  --warn: #d97706;

  /* Typography */
  --font-display: "Instrument Serif", "Source Serif Pro", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows — soft, no AI-default heavy shadows */
  --shadow-xs: 0 1px 2px rgba(14, 17, 22, 0.04);
  --shadow-sm: 0 2px 8px rgba(14, 17, 22, 0.05);
  --shadow-md: 0 8px 24px rgba(14, 17, 22, 0.06);
  --shadow-lg: 0 20px 50px rgba(14, 17, 22, 0.08);

  /* Spacing scale (multiplicative) */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;

  /* Container */
  --container: 1280px;
  --container-tight: 960px;
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv01", "ss03";
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

/* Selection */
::selection { background: var(--accent-tint); color: var(--accent-deep); }

/* ---------- TYPOGRAPHY ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--fg);
}

.display-sm {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-5);
}

h2, .h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0 0 var(--s-4);
  color: var(--fg);
}

h3, .h3 {
  font-family: var(--font-body);
  font-weight: 590;
  font-size: 1.375rem;
  line-height: 1.3;
  letter-spacing: -0.012em;
  margin: 0 0 var(--s-3);
  color: var(--fg);
}

h4, .h4 {
  font-family: var(--font-body);
  font-weight: 590;
  font-size: 1.125rem;
  line-height: 1.35;
  letter-spacing: -0.005em;
  margin: 0 0 var(--s-2);
  color: var(--fg);
}

p { margin: 0 0 var(--s-4); color: var(--fg-2); max-width: 65ch; }

.lead { font-size: 1.125rem; line-height: 1.6; color: var(--fg-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 510;
  text-transform: uppercase;
  letter-spacing: 0.08em; /* required for ALL CAPS — craft rule */
  color: var(--muted);
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--accent-2);
  border-radius: 3px;
  transform: rotate(45deg);
  opacity: 0.95;
}

.eyebrow-accent { color: var(--accent); }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}

.container-tight { max-width: var(--container-tight); margin: 0 auto; padding: 0 var(--s-5); }

.section { padding: var(--s-9) 0; }

.section-sm { padding: var(--s-7) 0; }

.section-tight { padding: var(--s-8) 0; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 510;
  letter-spacing: 0.005em;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--fg-2); }

.btn-white {
  background: var(--surface);
  color: var(--fg);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }

.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }

.btn-icon {
  width: 36px; height: 36px; padding: 0;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Arrow inside link — craft: monoline SVG with currentColor, not emoji */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 510;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
}
.link-arrow svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.link-arrow:hover svg { transform: translate(2px, -2px); }

/* ---------- CHIPS / PILLS ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 450;
  color: var(--fg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  transition: all 0.15s ease;
}
.chip:hover { border-color: var(--border-strong); }
.chip-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ---------- CARDS ---------- */
.card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.card-flat {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(238, 240, 245, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled { border-bottom-color: var(--border); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-logo-mark {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent);
  border-radius: 10px;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0; padding: 0;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 510;
  color: var(--fg-2);
  letter-spacing: -0.005em;
  position: relative;
  transition: color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--fg); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--fg);
  color: #cfd5e0;
  padding: var(--s-9) 0 var(--s-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-7);
}

.footer-brand .nav-logo { color: #fff; }
.footer-brand p { color: #98a1b3; max-width: 32ch; margin-top: 1rem; }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 590;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 0 var(--s-4);
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.625rem; }
.footer-col a { font-size: 0.9375rem; color: #98a1b3; transition: color 0.15s ease; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--s-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: #7a8294;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transition: all 0.15s ease;
}
.footer-socials a:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.25); }

/* ---------- IMAGE PLACEHOLDERS ---------- */
/* Per Open Design rule: use shipped placeholder, not external CDNs */
.ph-img {
  position: relative;
  display: block;
  width: 100%;
  background:
    linear-gradient(135deg, rgba(47, 111, 235, 0.06), rgba(47, 111, 235, 0.02)),
    repeating-linear-gradient(
      45deg,
      var(--surface-inset),
      var(--surface-inset) 12px,
      var(--surface-2) 12px,
      var(--surface-2) 24px
    );
  border-radius: var(--r-lg);
  overflow: hidden;
}

.ph-img::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 510;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding: 1rem;
}

.ph-img-portrait { aspect-ratio: 3/4; }
.ph-img-square { aspect-ratio: 1/1; }
.ph-img-landscape { aspect-ratio: 16/10; }
.ph-img-wide { aspect-ratio: 16/9; }

/* Avatar circle placeholder */
.avatar {
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-tint), var(--surface-inset));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 590;
  color: var(--accent-deep);
  letter-spacing: 0;
  flex-shrink: 0;
}

/* ---------- SHARED ICON STYLE ---------- */
/* Open Design rule: 1.6–1.8px-stroke monoline SVGs with currentColor */
.icon {
  width: 24px; height: 24px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-tile {
  width: 52px; height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-tint);
  color: var(--accent);
  border-radius: 14px;
  flex-shrink: 0;
}
.icon-tile .icon { width: 26px; height: 26px; }

/* ---------- RESPONSIVE BASE ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .section { padding: var(--s-7) 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-5); }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .nav-cta .btn:not(.btn-icon) { display: none; }
  .section { padding: var(--s-6) 0; }
}


/* =========================================================
   PAGE SECTIONS
   ========================================================= */

/* ---------- HERO (HOME) ---------- */
.hero {
  padding: var(--s-7) 0 var(--s-9);
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  margin-bottom: var(--s-7);
}

.hero-eyebrow-row { display: flex; align-items: center; gap: 0.75rem; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem 0.5rem 0.5rem;
  background: var(--surface);
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 510;
  color: var(--fg-2);
}

.hero-trust-avatars { display: flex; }
.hero-trust-avatars .avatar {
  width: 28px; height: 28px;
  font-size: 0.625rem;
  border: 2px solid var(--surface);
}
.hero-trust-avatars .avatar:not(:first-child) { margin-left: -8px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: end;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--s-5);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-4);
  align-items: stretch;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 380px;
}

.hero-image-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: var(--r-pill);
  font-size: 0.8125rem;
  font-weight: 590;
  letter-spacing: 0.02em;
  color: var(--fg);
  z-index: 2;
}

.hero-image-overlay {
  position: absolute;
  bottom: 1rem; left: 1rem;
  width: 110px; height: 110px;
  background: var(--surface);
  border-radius: var(--r-md);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.hero-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.75rem;
}

.hero-side-top h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.018em;
  margin: 0 0 1rem;
}

.hero-side-bottom h4 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 510;
  line-height: 1.5;
  color: var(--fg-2);
  margin: 0 0 1rem;
}

.hero-headline-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-headline-side .display {
  margin: 0;
}

/* Hero — chips row */
.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  margin-top: var(--s-6);
  align-items: start;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.hero-chips-caption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
  max-width: 36ch;
}

.hero-community-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--s-5);
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--s-4);
}

.hero-community-card .avatar-stack {
  position: relative; width: 92px; height: 92px; flex-shrink: 0;
}
.hero-community-card .avatar-stack .avatar { position: absolute; }
.hero-community-card .avatar-stack .avatar:nth-child(1) { top: 0; left: 0; width: 44px; height: 44px; }
.hero-community-card .avatar-stack .avatar:nth-child(2) { top: 0; right: 0; width: 44px; height: 44px; }
.hero-community-card .avatar-stack .avatar:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); width: 44px; height: 44px; }

.hero-community-card-inner {
  flex: 1;
  text-align: left;
}
.hero-community-card-inner .eyebrow { margin-bottom: 0.4rem; }
.hero-community-card-inner h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

/* ---------- ACCREDITATION BAR ---------- */
.accred-bar {
  padding: var(--s-6) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.accred-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  flex-wrap: wrap;
}

.accred-label {
  font-size: 0.75rem;
  font-weight: 510;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  white-space: nowrap;
}

.accred-logos {
  display: flex;
  align-items: center;
  gap: var(--s-7);
  flex-wrap: wrap;
}

.accred-logo {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.85;
}
.accred-logo svg { width: 22px; height: 22px; opacity: 0.7; }

/* ---------- SECTION HEADERS ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: end;
  margin-bottom: var(--s-7);
}
.section-head-tight { margin-bottom: var(--s-6); }
.section-head-center { grid-template-columns: 1fr; text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-head-center p { margin-left: auto; margin-right: auto; }
.section-head h2 { margin-bottom: 0.25rem; }
.section-head p { margin: 0; color: var(--muted); }

/* ---------- SERVICES BENTO GRID ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: var(--s-5);
}

.service-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}

.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.service-card h3 {
  margin: var(--s-4) 0 0.5rem;
  font-size: 1.25rem;
}
.service-card p { font-size: 0.9375rem; color: var(--muted); margin: 0 0 var(--s-4); }

/* Bento spans */
.service-card.tall { grid-column: span 2; grid-row: span 2; }
.service-card.wide { grid-column: span 3; }
.service-card.medium { grid-column: span 2; }
.service-card.small { grid-column: span 2; }

.service-card.featured {
  background: var(--fg);
  color: #cfd5e0;
  border-color: var(--fg);
}
.service-card.featured h3 { color: #fff; }
.service-card.featured p { color: #98a1b3; }
.service-card.featured .icon-tile {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.service-card.accent {
  background: var(--accent);
  color: #f0e6f8;
  border-color: var(--accent);
}
.service-card.accent h3 { color: #fff; }
.service-card.accent p { color: #c4d8fb; }
.service-card.accent .icon-tile { background: rgba(255, 255, 255, 0.15); color: #fff; }

.service-card .link-arrow { margin-top: auto; }
.service-card.featured .link-arrow, .service-card.accent .link-arrow { color: #fff; }

.service-card-image {
  position: relative;
  margin: calc(var(--s-6) * -1) calc(var(--s-6) * -1) var(--s-4);
  height: 180px;
  border-radius: 0;
}
.service-card.tall .service-card-image { height: 240px; }

/* ---------- WHY US — VALUE CARDS ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.value-card {
  padding: var(--s-6);
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.value-card:hover { box-shadow: var(--shadow-sm); border-color: var(--border-strong); }

.value-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: var(--s-4) 0 var(--s-3);
}

.value-card p { font-size: 0.9375rem; color: var(--muted); margin: 0; }

/* ---------- STATS STRIP ---------- */
.stats-strip {
  background: var(--fg);
  color: #fff;
  border-radius: var(--r-xl);
  padding: var(--s-7) var(--s-6);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}

.stat {
  text-align: left;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: var(--s-5);
}
.stat:first-child { border-left: none; padding-left: 0; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0;
  color: #fff;
}

.stat-label {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #98a1b3;
  max-width: 22ch;
}

/* ---------- PROCESS STEPS ---------- */
.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-4);
  position: relative;
}

.process-step {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  border: 1px solid var(--border);
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}

.process-step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
  margin-bottom: var(--s-4);
}

.process-step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: -0.012em;
  margin: 0 0 0.75rem;
}

.process-step p { font-size: 0.875rem; color: var(--muted); margin: 0; }

/* ---------- ABOUT TEASER ---------- */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: center;
}

.about-teaser-image .ph-img { aspect-ratio: 5/6; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.testimonial {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--fg);
  margin: 0;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: var(--s-4);
  border-top: 1px solid var(--border);
}

.testimonial-author .avatar { width: 44px; height: 44px; font-size: 0.875rem; }

.testimonial-author-name { font-weight: 590; font-size: 0.9375rem; color: var(--fg); }
.testimonial-author-role { font-size: 0.8125rem; color: var(--muted); }

.testimonial.featured {
  grid-column: span 2;
  background: var(--accent-tint);
  border-color: transparent;
}
.testimonial.featured .testimonial-quote { font-size: 1.625rem; line-height: 1.3; }
.testimonial.featured .testimonial-author { border-top-color: rgba(47, 111, 235, 0.2); }

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.2s ease;
}
.faq-item[open] { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  font-family: var(--font-body);
  font-weight: 510;
  font-size: 1rem;
  color: var(--fg);
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-toggle {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface-inset);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.faq-item[open] .faq-toggle { background: var(--accent); color: #fff; transform: rotate(45deg); }

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}
.faq-answer p:last-child { margin-bottom: 0; }

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: var(--fg);
  color: #fff;
  border-radius: var(--r-xl);
  padding: var(--s-9) var(--s-7);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(47, 111, 235, 0.25), transparent 60%);
  top: -300px; right: -200px;
  border-radius: 50%;
  pointer-events: none;
}

.final-cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }

.final-cta h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: var(--s-4);
}

.final-cta p { color: #cfd5e0; max-width: 50ch; margin: 0 auto var(--s-6); font-size: 1.0625rem; }

.final-cta-actions { display: inline-flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }

/* ---------- PAGE HEROS (ABOUT/FAQ/CONTACT) ---------- */
.page-hero {
  padding: var(--s-7) 0 var(--s-8);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-7);
  align-items: end;
}

.page-hero-content .display-sm { margin: 1rem 0 1.25rem; }
.page-hero-content p { font-size: 1.125rem; color: var(--fg-2); max-width: 50ch; }

.page-hero-image .ph-img { aspect-ratio: 4/3; }

/* ---------- ABOUT — OUR STORY ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-7);
  align-items: start;
}
.story-content p { font-size: 1rem; }
.story-image .ph-img { aspect-ratio: 4/5; }

/* ---------- ABOUT — TEAM ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}

.team-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.team-card .ph-img { aspect-ratio: 4/5; border-radius: 0; }
.team-card-body { padding: var(--s-5); }
.team-card h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.375rem;
  letter-spacing: -0.012em;
  margin: 0 0 0.25rem;
}
.team-card-role {
  font-size: 0.8125rem;
  font-weight: 510;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.875rem;
}
.team-card p { font-size: 0.875rem; color: var(--muted); margin: 0; }

/* ---------- ABOUT — ALTERNATING FEATURES ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: center;
  margin-bottom: var(--s-8);
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-row-content { order: 2; }
.feature-row.reverse .feature-row-image { order: 1; }

.feature-row-image .ph-img { aspect-ratio: 4/3; }

.feature-row-list {
  list-style: none;
  padding: 0;
  margin: var(--s-4) 0 0;
}
.feature-row-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
  color: var(--fg-2);
}
.feature-row-list .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-row-list .check svg { width: 12px; height: 12px; stroke-width: 2.5; }

/* ---------- CONTACT METHODS ---------- */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.contact-method {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.contact-method:hover { box-shadow: var(--shadow-sm); border-color: var(--border-strong); }

.contact-method-label {
  font-size: 0.75rem;
  font-weight: 510;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: var(--s-4) 0 0.5rem;
}

.contact-method-value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin: 0 0 var(--s-3);
  display: block;
}

.contact-method .link-arrow { color: var(--accent); }

/* ---------- CONTACT FORM ---------- */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--s-6);
  align-items: start;
}

.contact-form-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--s-7);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
}

.form-field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: var(--s-4); }

.form-label {
  font-size: 0.8125rem;
  font-weight: 510;
  color: var(--fg-2);
  letter-spacing: 0.005em;
}

.form-input,
.form-textarea,
.form-select {
  font-family: inherit;
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--fg);
  transition: all 0.15s ease;
  width: 100%;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}
.form-textarea { min-height: 140px; resize: vertical; font-family: inherit; }

.form-select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235b6472' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-submit { margin-top: var(--s-4); width: 100%; }

.contact-sidebar { display: flex; flex-direction: column; gap: var(--s-5); }
.contact-sidebar-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
}
.contact-sidebar-card h4 {
  font-family: var(--font-body);
  font-weight: 590;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 var(--s-3);
}
.contact-sidebar-card p { font-size: 0.9375rem; margin: 0 0 0.5rem; color: var(--fg-2); }
.contact-sidebar-card p:last-child { margin-bottom: 0; }

.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--fg-2);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:first-child { color: var(--muted); }

/* ---------- MAP ---------- */
.map-wrap {
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe, .map-wrap .ph-img {
  width: 100%;
  display: block;
  aspect-ratio: 16/6;
  border: 0;
  border-radius: 0;
}

/* ---------- RESPONSIVE — SECTIONS ---------- */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .service-card.tall { grid-column: span 2; grid-row: span 2; }
  .service-card.wide { grid-column: span 2; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-top { flex-direction: column; align-items: flex-start; }
  .section-head { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-left: none; padding-left: 0; }
  .about-teaser { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial.featured { grid-column: span 1; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-row-content { order: 1; }
  .feature-row.reverse .feature-row-image { order: 2; }
  .contact-methods { grid-template-columns: 1fr; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .hero-card-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { min-height: 280px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card.tall, .service-card.wide, .service-card.medium, .service-card.small { grid-column: span 1; grid-row: auto; }
  .why-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: var(--s-5); }
  .final-cta { padding: var(--s-7) var(--s-5); }
  .stats-strip { padding: var(--s-6) var(--s-5); }
}



/* ===========================
   LOGO IMAGES (header + footer)
   =========================== */
.nav-logo-image {
  padding: 0;
  font-size: 0;          /* kill any text fallback whitespace */
  line-height: 0;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.footer-logo-link {
  display: inline-block;
  margin-bottom: var(--s-3);
}
.footer-logo-img {
  height: 110px;
  width: auto;
  display: block;
}

@media (max-width: 600px) {
  .nav-logo-img { height: 38px; }
  .footer-logo-img { height: 90px; }
}
/* ===== PAGE: services ===== */
/* =========================================================
   CARE CONSULTANCY — DESIGN SYSTEM
   Reference: UrbanWell (soft, editorial, trust-forward)
   Craft rules: Open Design (anti-AI-slop, accent discipline,
   letter-spacing on ALL CAPS, negative tracking on display)
   ========================================================= */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Surfaces — soft lavender base inspired by reference */
  --bg: #eef0f5;
  --surface: #ffffff;
  --surface-2: #f6f7fa;
  --surface-inset: #e8ebf2;

  /* Foreground — warm near-black, not #000 */
  --fg: #0e1116;
  --fg-2: #2a2f38;
  --muted: #5b6472;
  --muted-2: #8a93a3;

  /* Borders — subtle */
  --border: #e2e6ee;
  --border-strong: #c8cfdb;

  /* Accent — friendly trust blue (NOT Tailwind indigo) */
  --accent: #7736a5;
  --accent-2: #f07814;        /* brand orange — secondary accent */
  --accent-2-soft: #fdf0e3;   /* light orange tint */
  --accent-hover: #2257c9;
  --accent-tint: #dbe6fb;
  --accent-deep: #3a1761;

  /* Semantic */
  --success: #17a34a;
  --warn: #d97706;

  /* Typography */
  --font-display: "Instrument Serif", "Source Serif Pro", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows — soft, no AI-default heavy shadows */
  --shadow-xs: 0 1px 2px rgba(14, 17, 22, 0.04);
  --shadow-sm: 0 2px 8px rgba(14, 17, 22, 0.05);
  --shadow-md: 0 8px 24px rgba(14, 17, 22, 0.06);
  --shadow-lg: 0 20px 50px rgba(14, 17, 22, 0.08);

  /* Spacing scale (multiplicative) */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;

  /* Container */
  --container: 1280px;
  --container-tight: 960px;
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv01", "ss03";
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

/* Selection */
::selection { background: var(--accent-tint); color: var(--accent-deep); }

/* ---------- TYPOGRAPHY ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--fg);
}

.display-sm {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-5);
}

h2, .h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0 0 var(--s-4);
  color: var(--fg);
}

h3, .h3 {
  font-family: var(--font-body);
  font-weight: 590;
  font-size: 1.375rem;
  line-height: 1.3;
  letter-spacing: -0.012em;
  margin: 0 0 var(--s-3);
  color: var(--fg);
}

h4, .h4 {
  font-family: var(--font-body);
  font-weight: 590;
  font-size: 1.125rem;
  line-height: 1.35;
  letter-spacing: -0.005em;
  margin: 0 0 var(--s-2);
  color: var(--fg);
}

p { margin: 0 0 var(--s-4); color: var(--fg-2); max-width: 65ch; }

.lead { font-size: 1.125rem; line-height: 1.6; color: var(--fg-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 510;
  text-transform: uppercase;
  letter-spacing: 0.08em; /* required for ALL CAPS — craft rule */
  color: var(--muted);
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--accent-2);
  border-radius: 3px;
  transform: rotate(45deg);
  opacity: 0.95;
}

.eyebrow-accent { color: var(--accent); }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}

.container-tight { max-width: var(--container-tight); margin: 0 auto; padding: 0 var(--s-5); }

.section { padding: var(--s-9) 0; }

.section-sm { padding: var(--s-7) 0; }

.section-tight { padding: var(--s-8) 0; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 510;
  letter-spacing: 0.005em;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--fg-2); }

.btn-white {
  background: var(--surface);
  color: var(--fg);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }

.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }

.btn-icon {
  width: 36px; height: 36px; padding: 0;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Arrow inside link — craft: monoline SVG with currentColor, not emoji */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 510;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
}
.link-arrow svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.link-arrow:hover svg { transform: translate(2px, -2px); }

/* ---------- CHIPS / PILLS ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 450;
  color: var(--fg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  transition: all 0.15s ease;
}
.chip:hover { border-color: var(--border-strong); }
.chip-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ---------- CARDS ---------- */
.card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.card-flat {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(238, 240, 245, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled { border-bottom-color: var(--border); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-logo-mark {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent);
  border-radius: 10px;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0; padding: 0;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 510;
  color: var(--fg-2);
  letter-spacing: -0.005em;
  position: relative;
  transition: color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--fg); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--fg);
  color: #cfd5e0;
  padding: var(--s-9) 0 var(--s-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-7);
}

.footer-brand .nav-logo { color: #fff; }
.footer-brand p { color: #98a1b3; max-width: 32ch; margin-top: 1rem; }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 590;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 0 var(--s-4);
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.625rem; }
.footer-col a { font-size: 0.9375rem; color: #98a1b3; transition: color 0.15s ease; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--s-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: #7a8294;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transition: all 0.15s ease;
}
.footer-socials a:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.25); }

/* ---------- IMAGE PLACEHOLDERS ---------- */
/* Per Open Design rule: use shipped placeholder, not external CDNs */
.ph-img {
  position: relative;
  display: block;
  width: 100%;
  background:
    linear-gradient(135deg, rgba(47, 111, 235, 0.06), rgba(47, 111, 235, 0.02)),
    repeating-linear-gradient(
      45deg,
      var(--surface-inset),
      var(--surface-inset) 12px,
      var(--surface-2) 12px,
      var(--surface-2) 24px
    );
  border-radius: var(--r-lg);
  overflow: hidden;
}

.ph-img::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 510;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding: 1rem;
}

.ph-img-portrait { aspect-ratio: 3/4; }
.ph-img-square { aspect-ratio: 1/1; }
.ph-img-landscape { aspect-ratio: 16/10; }
.ph-img-wide { aspect-ratio: 16/9; }

/* Avatar circle placeholder */
.avatar {
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-tint), var(--surface-inset));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 590;
  color: var(--accent-deep);
  letter-spacing: 0;
  flex-shrink: 0;
}

/* ---------- SHARED ICON STYLE ---------- */
/* Open Design rule: 1.6–1.8px-stroke monoline SVGs with currentColor */
.icon {
  width: 24px; height: 24px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-tile {
  width: 52px; height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-tint);
  color: var(--accent);
  border-radius: 14px;
  flex-shrink: 0;
}
.icon-tile .icon { width: 26px; height: 26px; }

/* ---------- RESPONSIVE BASE ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .section { padding: var(--s-7) 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-5); }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .nav-cta .btn:not(.btn-icon) { display: none; }
  .section { padding: var(--s-6) 0; }
}


/* =========================================================
   PAGE SECTIONS
   ========================================================= */

/* ---------- HERO (HOME) ---------- */
.hero {
  padding: var(--s-7) 0 var(--s-9);
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  margin-bottom: var(--s-7);
}

.hero-eyebrow-row { display: flex; align-items: center; gap: 0.75rem; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem 0.5rem 0.5rem;
  background: var(--surface);
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 510;
  color: var(--fg-2);
}

.hero-trust-avatars { display: flex; }
.hero-trust-avatars .avatar {
  width: 28px; height: 28px;
  font-size: 0.625rem;
  border: 2px solid var(--surface);
}
.hero-trust-avatars .avatar:not(:first-child) { margin-left: -8px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: end;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--s-5);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-4);
  align-items: stretch;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 380px;
}

.hero-image-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: var(--r-pill);
  font-size: 0.8125rem;
  font-weight: 590;
  letter-spacing: 0.02em;
  color: var(--fg);
  z-index: 2;
}

.hero-image-overlay {
  position: absolute;
  bottom: 1rem; left: 1rem;
  width: 110px; height: 110px;
  background: var(--surface);
  border-radius: var(--r-md);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.hero-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.75rem;
}

.hero-side-top h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.018em;
  margin: 0 0 1rem;
}

.hero-side-bottom h4 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 510;
  line-height: 1.5;
  color: var(--fg-2);
  margin: 0 0 1rem;
}

.hero-headline-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-headline-side .display {
  margin: 0;
}

/* Hero — chips row */
.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  margin-top: var(--s-6);
  align-items: start;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.hero-chips-caption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
  max-width: 36ch;
}

.hero-community-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--s-5);
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--s-4);
}

.hero-community-card .avatar-stack {
  position: relative; width: 92px; height: 92px; flex-shrink: 0;
}
.hero-community-card .avatar-stack .avatar { position: absolute; }
.hero-community-card .avatar-stack .avatar:nth-child(1) { top: 0; left: 0; width: 44px; height: 44px; }
.hero-community-card .avatar-stack .avatar:nth-child(2) { top: 0; right: 0; width: 44px; height: 44px; }
.hero-community-card .avatar-stack .avatar:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); width: 44px; height: 44px; }

.hero-community-card-inner {
  flex: 1;
  text-align: left;
}
.hero-community-card-inner .eyebrow { margin-bottom: 0.4rem; }
.hero-community-card-inner h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

/* ---------- ACCREDITATION BAR ---------- */
.accred-bar {
  padding: var(--s-6) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.accred-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  flex-wrap: wrap;
}

.accred-label {
  font-size: 0.75rem;
  font-weight: 510;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  white-space: nowrap;
}

.accred-logos {
  display: flex;
  align-items: center;
  gap: var(--s-7);
  flex-wrap: wrap;
}

.accred-logo {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.85;
}
.accred-logo svg { width: 22px; height: 22px; opacity: 0.7; }

/* ---------- SECTION HEADERS ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: end;
  margin-bottom: var(--s-7);
}
.section-head-tight { margin-bottom: var(--s-6); }
.section-head-center { grid-template-columns: 1fr; text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-head-center p { margin-left: auto; margin-right: auto; }
.section-head h2 { margin-bottom: 0.25rem; }
.section-head p { margin: 0; color: var(--muted); }

/* ---------- SERVICES BENTO GRID ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: var(--s-5);
}

.service-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}

.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.service-card h3 {
  margin: var(--s-4) 0 0.5rem;
  font-size: 1.25rem;
}
.service-card p { font-size: 0.9375rem; color: var(--muted); margin: 0 0 var(--s-4); }

/* Bento spans */
.service-card.tall { grid-column: span 2; grid-row: span 2; }
.service-card.wide { grid-column: span 3; }
.service-card.wider { grid-column: span 4; }
.service-card.medium { grid-column: span 2; }
.service-card.small { grid-column: span 2; }

.service-card.featured {
  background: var(--fg);
  color: #cfd5e0;
  border-color: var(--fg);
}
.service-card.featured h3 { color: #fff; }
.service-card.featured p { color: #98a1b3; }
.service-card.featured .icon-tile {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.service-card.accent {
  background: var(--accent);
  color: #f0e6f8;
  border-color: var(--accent);
}
.service-card.accent h3 { color: #fff; }
.service-card.accent p { color: #c4d8fb; }
.service-card.accent .icon-tile { background: rgba(255, 255, 255, 0.15); color: #fff; }

.service-card .link-arrow { margin-top: auto; }
.service-card.featured .link-arrow, .service-card.accent .link-arrow { color: #fff; }

.service-card-image {
  position: relative;
  margin: calc(var(--s-6) * -1) calc(var(--s-6) * -1) var(--s-4);
  height: 180px;
  border-radius: 0;
}
.service-card.tall .service-card-image { height: 240px; }

/* ---------- WHY US — VALUE CARDS ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.value-card {
  padding: var(--s-6);
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.value-card:hover { box-shadow: var(--shadow-sm); border-color: var(--border-strong); }

.value-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: var(--s-4) 0 var(--s-3);
}

.value-card p { font-size: 0.9375rem; color: var(--muted); margin: 0; }

/* ---------- STATS STRIP ---------- */
.stats-strip {
  background: var(--fg);
  color: #fff;
  border-radius: var(--r-xl);
  padding: var(--s-7) var(--s-6);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}

.stat {
  text-align: left;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: var(--s-5);
}
.stat:first-child { border-left: none; padding-left: 0; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0;
  color: #fff;
}

.stat-label {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #98a1b3;
  max-width: 22ch;
}

/* ---------- PROCESS STEPS ---------- */
.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-4);
  position: relative;
}

.process-step {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  border: 1px solid var(--border);
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}

.process-step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
  margin-bottom: var(--s-4);
}

.process-step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: -0.012em;
  margin: 0 0 0.75rem;
}

.process-step p { font-size: 0.875rem; color: var(--muted); margin: 0; }

/* ---------- ABOUT TEASER ---------- */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: center;
}

.about-teaser-image .ph-img { aspect-ratio: 5/6; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.testimonial {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--fg);
  margin: 0;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: var(--s-4);
  border-top: 1px solid var(--border);
}

.testimonial-author .avatar { width: 44px; height: 44px; font-size: 0.875rem; }

.testimonial-author-name { font-weight: 590; font-size: 0.9375rem; color: var(--fg); }
.testimonial-author-role { font-size: 0.8125rem; color: var(--muted); }

.testimonial.featured {
  grid-column: span 2;
  background: var(--accent-tint);
  border-color: transparent;
}
.testimonial.featured .testimonial-quote { font-size: 1.625rem; line-height: 1.3; }
.testimonial.featured .testimonial-author { border-top-color: rgba(47, 111, 235, 0.2); }

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.2s ease;
}
.faq-item[open] { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  font-family: var(--font-body);
  font-weight: 510;
  font-size: 1rem;
  color: var(--fg);
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-toggle {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface-inset);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.faq-item[open] .faq-toggle { background: var(--accent); color: #fff; transform: rotate(45deg); }

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}
.faq-answer p:last-child { margin-bottom: 0; }

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: var(--fg);
  color: #fff;
  border-radius: var(--r-xl);
  padding: var(--s-9) var(--s-7);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(47, 111, 235, 0.25), transparent 60%);
  top: -300px; right: -200px;
  border-radius: 50%;
  pointer-events: none;
}

.final-cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }

.final-cta h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: var(--s-4);
}

.final-cta p { color: #cfd5e0; max-width: 50ch; margin: 0 auto var(--s-6); font-size: 1.0625rem; }

.final-cta-actions { display: inline-flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }


/* ---------- WHY OUR SERVICES (PARALLAX) ---------- */
.why-parallax {
  position: relative;
  min-height: 640px;
  padding: var(--s-8) 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}

.why-parallax-bg {
  position: absolute;
  inset: -10% 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(240,120,20,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 55% 50% at 80% 70%, rgba(119,54,165,0.65) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(58,23,97,0.7) 0%, transparent 70%),
    linear-gradient(135deg, #2a0f48 0%, #3a1761 40%, #6a2a8f 100%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
  transform: translateZ(0);
}

/* subtle film-grain / atmospheric texture using inline svg */
.why-parallax-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.why-parallax-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(14, 17, 22, 0.55) 0%,
      rgba(14, 17, 22, 0.45) 40%,
      rgba(14, 17, 22, 0.65) 100%
    );
  z-index: -1;
}

.why-parallax-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  z-index: 1;
}

.why-parallax .eyebrow-on-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #f3a26d;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.why-parallax .eyebrow-on-dark::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--accent-2);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.why-parallax-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.5rem;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.why-parallax-lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.3;
  color: #f3a26d;
  max-width: 36ch;
  margin: 0 auto 1.75rem;
}

.why-parallax-p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 58ch;
  margin: 0 auto 1.125rem;
}

.why-parallax-p:last-child { margin-bottom: 0; }

/* On touch/mobile, fixed-attachment is poor; switch to scroll */
@media (hover: none), (max-width: 900px) {
  .why-parallax-bg { background-attachment: scroll; }
  .why-parallax { min-height: 560px; padding: var(--s-7) 20px; }
}
/* ---------- END PARALLAX ---------- */

/* ---------- PAGE HEROS (ABOUT/FAQ/CONTACT) ---------- */
.page-hero {
  padding: var(--s-7) 0 var(--s-8);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-7);
  align-items: end;
}

.page-hero-content .display-sm { margin: 1rem 0 1.25rem; }
.page-hero-content p { font-size: 1.125rem; color: var(--fg-2); max-width: 50ch; }

.page-hero-image .ph-img { aspect-ratio: 4/3; }

/* ---------- ABOUT — OUR STORY ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-7);
  align-items: start;
}
.story-content p { font-size: 1rem; }
.story-image .ph-img { aspect-ratio: 4/5; }

/* ---------- ABOUT — TEAM ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}

.team-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.team-card .ph-img { aspect-ratio: 4/5; border-radius: 0; }
.team-card-body { padding: var(--s-5); }
.team-card h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.375rem;
  letter-spacing: -0.012em;
  margin: 0 0 0.25rem;
}
.team-card-role {
  font-size: 0.8125rem;
  font-weight: 510;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.875rem;
}
.team-card p { font-size: 0.875rem; color: var(--muted); margin: 0; }

/* ---------- ABOUT — ALTERNATING FEATURES ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: center;
  margin-bottom: var(--s-8);
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-row-content { order: 2; }
.feature-row.reverse .feature-row-image { order: 1; }

.feature-row-image .ph-img { aspect-ratio: 4/3; }

.feature-row-list {
  list-style: none;
  padding: 0;
  margin: var(--s-4) 0 0;
}
.feature-row-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
  color: var(--fg-2);
}
.feature-row-list .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-row-list .check svg { width: 12px; height: 12px; stroke-width: 2.5; }

/* ---------- CONTACT METHODS ---------- */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.contact-method {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.contact-method:hover { box-shadow: var(--shadow-sm); border-color: var(--border-strong); }

.contact-method-label {
  font-size: 0.75rem;
  font-weight: 510;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: var(--s-4) 0 0.5rem;
}

.contact-method-value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin: 0 0 var(--s-3);
  display: block;
}

.contact-method .link-arrow { color: var(--accent); }

/* ---------- CONTACT FORM ---------- */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--s-6);
  align-items: start;
}

.contact-form-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--s-7);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
}

.form-field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: var(--s-4); }

.form-label {
  font-size: 0.8125rem;
  font-weight: 510;
  color: var(--fg-2);
  letter-spacing: 0.005em;
}

.form-input,
.form-textarea,
.form-select {
  font-family: inherit;
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--fg);
  transition: all 0.15s ease;
  width: 100%;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}
.form-textarea { min-height: 140px; resize: vertical; font-family: inherit; }

.form-select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235b6472' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-submit { margin-top: var(--s-4); width: 100%; }

.contact-sidebar { display: flex; flex-direction: column; gap: var(--s-5); }
.contact-sidebar-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
}
.contact-sidebar-card h4 {
  font-family: var(--font-body);
  font-weight: 590;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 var(--s-3);
}
.contact-sidebar-card p { font-size: 0.9375rem; margin: 0 0 0.5rem; color: var(--fg-2); }
.contact-sidebar-card p:last-child { margin-bottom: 0; }

.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--fg-2);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:first-child { color: var(--muted); }

/* ---------- MAP ---------- */
.map-wrap {
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe, .map-wrap .ph-img {
  width: 100%;
  display: block;
  aspect-ratio: 16/6;
  border: 0;
  border-radius: 0;
}

/* ---------- RESPONSIVE — SECTIONS ---------- */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .service-card.tall { grid-column: span 2; grid-row: span 2; }
  .service-card.wide { grid-column: span 2; }
  .service-card.wider { grid-column: span 4; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-top { flex-direction: column; align-items: flex-start; }
  .section-head { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-left: none; padding-left: 0; }
  .about-teaser { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial.featured { grid-column: span 1; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-row-content { order: 1; }
  .feature-row.reverse .feature-row-image { order: 2; }
  .contact-methods { grid-template-columns: 1fr; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .hero-card-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { min-height: 280px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card.tall, .service-card.wide, .service-card.wider, .service-card.medium, .service-card.small { grid-column: span 1; grid-row: auto; }
  .why-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: var(--s-5); }
  .final-cta { padding: var(--s-7) var(--s-5); }
  .stats-strip { padding: var(--s-6) var(--s-5); }
}


.hero-image-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}


/* ===========================
   HERO (FULL-BLEED, Mindhaven-style)
   =========================== */
.hero-fullbleed {
  padding: var(--s-5) 0 var(--s-9);
}

.hero-wide-container {
  max-width: 1440px; /* wider than --container (1280px) */
  margin: 0 auto;
  padding: 0 var(--s-4);
  width: 100%;
}

.hero-card-fullbleed {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 640px;
  box-shadow: var(--shadow-md);
  background: var(--fg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 17, 22, 0) 30%, rgba(14, 17, 22, 0.55) 70%, rgba(14, 17, 22, 0.85) 100%),
    linear-gradient(90deg, rgba(14, 17, 22, 0.45) 0%, rgba(14, 17, 22, 0.15) 50%, rgba(14, 17, 22, 0.25) 100%);
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--s-6);
  align-items: end;
  padding: var(--s-8) var(--s-7);
  color: #fff;
}

.hero-overlay-left {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  max-width: 620px;
}

.hero-fb-headline {
  font-family: var(--font-body);
  font-weight: 510;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0;
}
.hero-fb-headline em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  display: block;
  margin-top: 0.1em;
  letter-spacing: -0.015em;
  color: #fff;
}

.hero-fb-body {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 52ch;
  margin: 0;
}

.hero-fb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn-overlay {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-overlay:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-1px);
}

.hero-fb-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 0.25rem;
}
.hero-fb-trust strong { font-weight: 590; color: #fff; }

.hero-fb-star {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-2);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Floating stat card (glass) */
.hero-fb-card {
  background: rgba(14, 17, 22, 0.32);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  color: #fff;
  max-width: 380px;
  justify-self: end;
}

.hero-fb-card-top {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.avatar-stack-row {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.avatar-stack-row .avatar {
  width: 36px; height: 36px;
  font-size: 0.6875rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.avatar-stack-row .avatar:not(:first-child) { margin-left: -10px; }

.hero-fb-card-stat {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.75rem;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0;
  color: #fff;
}
.hero-fb-card-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0.25rem 0 0;
  letter-spacing: 0.005em;
}

.hero-fb-card-body {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* ===========================
   HERO RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .hero-card-fullbleed { min-height: 580px; }
  .hero-overlay {
    grid-template-columns: 1fr;
    padding: var(--s-6) var(--s-5);
    gap: var(--s-5);
  }
  .hero-fb-card { max-width: 100%; justify-self: stretch; }
  .hero-fb-actions .btn-lg { padding: 0.875rem 1.25rem; }
}

@media (max-width: 600px) {
  .hero-fullbleed { padding: var(--s-4) 0 var(--s-7); }
  .hero-wide-container { padding: 0 var(--s-3); }
  .hero-card-fullbleed { min-height: 560px; border-radius: var(--r-lg); }
  .hero-overlay { padding: var(--s-5) var(--s-4); }
  .hero-fb-headline { font-size: clamp(2rem, 9vw, 2.75rem); }
  .hero-fb-body { font-size: 1rem; }
  .hero-fb-actions { width: 100%; }
  .hero-fb-actions .btn { flex: 1; min-width: 140px; justify-content: center; }
  .hero-fb-card { padding: var(--s-4); }
}


/* ===========================
   LOGO IMAGES (header + footer)
   =========================== */
.nav-logo-image {
  padding: 0;
  font-size: 0;          /* kill any text fallback whitespace */
  line-height: 0;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.footer-logo-link {
  display: inline-block;
  margin-bottom: var(--s-3);
}
.footer-logo-img {
  height: 110px;
  width: auto;
  display: block;
}

@media (max-width: 600px) {
  .nav-logo-img { height: 38px; }
  .footer-logo-img { height: 90px; }
}


/* ===========================
   AUDIENCE GRID (Who We Help)
   =========================== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.audience-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  border: 1px solid rgba(15, 18, 22, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.audience-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.audience-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent-2);
  letter-spacing: -0.02em;
  margin-bottom: var(--s-2);
}
.audience-card h3 {
  font-family: var(--font-body);
  font-weight: 590;
  font-size: 1.0625rem;
  margin: 0 0 0.5rem;
  color: var(--fg);
}
.audience-card p {
  font-size: 0.9375rem;
  color: var(--fg-2);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .audience-grid { grid-template-columns: 1fr; }
}

/* ===========================
   RESULTS LIST
   =========================== */
.results-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3) var(--s-5);
  max-width: 960px;
  margin: 0 auto;
}
.results-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 1.0625rem;
  color: var(--fg);
  line-height: 1.5;
  padding: var(--s-3) 0;
  border-bottom: 1px solid rgba(15, 18, 22, 0.07);
}
.results-list li:last-child {
  border-bottom: none;
}
.results-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--accent-2-soft);
  color: var(--accent-2);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.results-check .icon {
  width: 14px;
  height: 14px;
}

@media (max-width: 700px) {
  .results-list { grid-template-columns: 1fr; }
}
/* ===== PAGE: ofsted-readiness ===== */
/* =========================================================
   CARE CONSULTANCY — DESIGN SYSTEM
   Reference: UrbanWell (soft, editorial, trust-forward)
   Craft rules: Open Design (anti-AI-slop, accent discipline,
   letter-spacing on ALL CAPS, negative tracking on display)
   ========================================================= */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Surfaces — soft lavender base inspired by reference */
  --bg: #eef0f5;
  --surface: #ffffff;
  --surface-2: #f6f7fa;
  --surface-inset: #e8ebf2;

  /* Foreground — warm near-black, not #000 */
  --fg: #0e1116;
  --fg-2: #2a2f38;
  --muted: #5b6472;
  --muted-2: #8a93a3;

  /* Borders — subtle */
  --border: #e2e6ee;
  --border-strong: #c8cfdb;

  /* Accent — friendly trust blue (NOT Tailwind indigo) */
  --accent: #7736a5;
  --accent-2: #f07814;        /* brand orange — secondary accent */
  --accent-2-soft: #fdf0e3;   /* light orange tint */
  --accent-hover: #2257c9;
  --accent-tint: #dbe6fb;
  --accent-deep: #3a1761;

  /* Semantic */
  --success: #17a34a;
  --warn: #d97706;

  /* Typography */
  --font-display: "Instrument Serif", "Source Serif Pro", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows — soft, no AI-default heavy shadows */
  --shadow-xs: 0 1px 2px rgba(14, 17, 22, 0.04);
  --shadow-sm: 0 2px 8px rgba(14, 17, 22, 0.05);
  --shadow-md: 0 8px 24px rgba(14, 17, 22, 0.06);
  --shadow-lg: 0 20px 50px rgba(14, 17, 22, 0.08);

  /* Spacing scale (multiplicative) */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;

  /* Container */
  --container: 1280px;
  --container-tight: 960px;
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv01", "ss03";
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

/* Selection */
::selection { background: var(--accent-tint); color: var(--accent-deep); }

/* ---------- TYPOGRAPHY ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--fg);
}

.display-sm {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-5);
}

h2, .h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0 0 var(--s-4);
  color: var(--fg);
}

h3, .h3 {
  font-family: var(--font-body);
  font-weight: 590;
  font-size: 1.375rem;
  line-height: 1.3;
  letter-spacing: -0.012em;
  margin: 0 0 var(--s-3);
  color: var(--fg);
}

h4, .h4 {
  font-family: var(--font-body);
  font-weight: 590;
  font-size: 1.125rem;
  line-height: 1.35;
  letter-spacing: -0.005em;
  margin: 0 0 var(--s-2);
  color: var(--fg);
}

p { margin: 0 0 var(--s-4); color: var(--fg-2); max-width: 65ch; }

.lead { font-size: 1.125rem; line-height: 1.6; color: var(--fg-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 510;
  text-transform: uppercase;
  letter-spacing: 0.08em; /* required for ALL CAPS — craft rule */
  color: var(--muted);
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--accent-2);
  border-radius: 3px;
  transform: rotate(45deg);
  opacity: 0.95;
}

.eyebrow-accent { color: var(--accent); }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}

.container-tight { max-width: var(--container-tight); margin: 0 auto; padding: 0 var(--s-5); }

.section { padding: var(--s-9) 0; }

.section-sm { padding: var(--s-7) 0; }

.section-tight { padding: var(--s-8) 0; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 510;
  letter-spacing: 0.005em;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--fg-2); }

.btn-white {
  background: var(--surface);
  color: var(--fg);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }

.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }

.btn-icon {
  width: 36px; height: 36px; padding: 0;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Arrow inside link — craft: monoline SVG with currentColor, not emoji */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 510;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
}
.link-arrow svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.link-arrow:hover svg { transform: translate(2px, -2px); }

/* ---------- CHIPS / PILLS ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 450;
  color: var(--fg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  transition: all 0.15s ease;
}
.chip:hover { border-color: var(--border-strong); }
.chip-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ---------- CARDS ---------- */
.card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.card-flat {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(238, 240, 245, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled { border-bottom-color: var(--border); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-logo-mark {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent);
  border-radius: 10px;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0; padding: 0;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 510;
  color: var(--fg-2);
  letter-spacing: -0.005em;
  position: relative;
  transition: color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--fg); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--fg);
  color: #cfd5e0;
  padding: var(--s-9) 0 var(--s-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-7);
}

.footer-brand .nav-logo { color: #fff; }
.footer-brand p { color: #98a1b3; max-width: 32ch; margin-top: 1rem; }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 590;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 0 var(--s-4);
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.625rem; }
.footer-col a { font-size: 0.9375rem; color: #98a1b3; transition: color 0.15s ease; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--s-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: #7a8294;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transition: all 0.15s ease;
}
.footer-socials a:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.25); }

/* ---------- IMAGE PLACEHOLDERS ---------- */
/* Per Open Design rule: use shipped placeholder, not external CDNs */
.ph-img {
  position: relative;
  display: block;
  width: 100%;
  background:
    linear-gradient(135deg, rgba(47, 111, 235, 0.06), rgba(47, 111, 235, 0.02)),
    repeating-linear-gradient(
      45deg,
      var(--surface-inset),
      var(--surface-inset) 12px,
      var(--surface-2) 12px,
      var(--surface-2) 24px
    );
  border-radius: var(--r-lg);
  overflow: hidden;
}

.ph-img::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 510;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding: 1rem;
}

.ph-img-portrait { aspect-ratio: 3/4; }
.ph-img-square { aspect-ratio: 1/1; }
.ph-img-landscape { aspect-ratio: 16/10; }
.ph-img-wide { aspect-ratio: 16/9; }

/* Avatar circle placeholder */
.avatar {
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-tint), var(--surface-inset));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 590;
  color: var(--accent-deep);
  letter-spacing: 0;
  flex-shrink: 0;
}

/* ---------- SHARED ICON STYLE ---------- */
/* Open Design rule: 1.6–1.8px-stroke monoline SVGs with currentColor */
.icon {
  width: 24px; height: 24px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-tile {
  width: 52px; height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-tint);
  color: var(--accent);
  border-radius: 14px;
  flex-shrink: 0;
}
.icon-tile .icon { width: 26px; height: 26px; }

/* ---------- RESPONSIVE BASE ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .section { padding: var(--s-7) 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-5); }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .nav-cta .btn:not(.btn-icon) { display: none; }
  .section { padding: var(--s-6) 0; }
}


/* =========================================================
   PAGE SECTIONS
   ========================================================= */

/* ---------- HERO (HOME) ---------- */
.hero {
  padding: var(--s-7) 0 var(--s-9);
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  margin-bottom: var(--s-7);
}

.hero-eyebrow-row { display: flex; align-items: center; gap: 0.75rem; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem 0.5rem 0.5rem;
  background: var(--surface);
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 510;
  color: var(--fg-2);
}

.hero-trust-avatars { display: flex; }
.hero-trust-avatars .avatar {
  width: 28px; height: 28px;
  font-size: 0.625rem;
  border: 2px solid var(--surface);
}
.hero-trust-avatars .avatar:not(:first-child) { margin-left: -8px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: end;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--s-5);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-4);
  align-items: stretch;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 380px;
}

.hero-image-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: var(--r-pill);
  font-size: 0.8125rem;
  font-weight: 590;
  letter-spacing: 0.02em;
  color: var(--fg);
  z-index: 2;
}

.hero-image-overlay {
  position: absolute;
  bottom: 1rem; left: 1rem;
  width: 110px; height: 110px;
  background: var(--surface);
  border-radius: var(--r-md);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.hero-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.75rem;
}

.hero-side-top h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.018em;
  margin: 0 0 1rem;
}

.hero-side-bottom h4 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 510;
  line-height: 1.5;
  color: var(--fg-2);
  margin: 0 0 1rem;
}

.hero-headline-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-headline-side .display {
  margin: 0;
}

/* Hero — chips row */
.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  margin-top: var(--s-6);
  align-items: start;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.hero-chips-caption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
  max-width: 36ch;
}

.hero-community-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--s-5);
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--s-4);
}

.hero-community-card .avatar-stack {
  position: relative; width: 92px; height: 92px; flex-shrink: 0;
}
.hero-community-card .avatar-stack .avatar { position: absolute; }
.hero-community-card .avatar-stack .avatar:nth-child(1) { top: 0; left: 0; width: 44px; height: 44px; }
.hero-community-card .avatar-stack .avatar:nth-child(2) { top: 0; right: 0; width: 44px; height: 44px; }
.hero-community-card .avatar-stack .avatar:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); width: 44px; height: 44px; }

.hero-community-card-inner {
  flex: 1;
  text-align: left;
}
.hero-community-card-inner .eyebrow { margin-bottom: 0.4rem; }
.hero-community-card-inner h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

/* ---------- ACCREDITATION BAR ---------- */
.accred-bar {
  padding: var(--s-6) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.accred-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  flex-wrap: wrap;
}

.accred-label {
  font-size: 0.75rem;
  font-weight: 510;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  white-space: nowrap;
}

.accred-logos {
  display: flex;
  align-items: center;
  gap: var(--s-7);
  flex-wrap: wrap;
}

.accred-logo {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.85;
}
.accred-logo svg { width: 22px; height: 22px; opacity: 0.7; }

/* ---------- SECTION HEADERS ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: end;
  margin-bottom: var(--s-7);
}
.section-head-tight { margin-bottom: var(--s-6); }
.section-head-center { grid-template-columns: 1fr; text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-head-center p { margin-left: auto; margin-right: auto; }
.section-head h2 { margin-bottom: 0.25rem; }
.section-head p { margin: 0; color: var(--muted); }

/* ---------- SERVICES BENTO GRID ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: var(--s-5);
}

.service-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}

.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.service-card h3 {
  margin: var(--s-4) 0 0.5rem;
  font-size: 1.25rem;
}
.service-card p { font-size: 0.9375rem; color: var(--muted); margin: 0 0 var(--s-4); }

/* Bento spans */
.service-card.tall { grid-column: span 2; grid-row: span 2; }
.service-card.wide { grid-column: span 3; }
.service-card.wider { grid-column: span 4; }
.service-card.medium { grid-column: span 2; }
.service-card.small { grid-column: span 2; }

.service-card.featured {
  background: var(--fg);
  color: #cfd5e0;
  border-color: var(--fg);
}
.service-card.featured h3 { color: #fff; }
.service-card.featured p { color: #98a1b3; }
.service-card.featured .icon-tile {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.service-card.accent {
  background: var(--accent);
  color: #f0e6f8;
  border-color: var(--accent);
}
.service-card.accent h3 { color: #fff; }
.service-card.accent p { color: #c4d8fb; }
.service-card.accent .icon-tile { background: rgba(255, 255, 255, 0.15); color: #fff; }

.service-card .link-arrow { margin-top: auto; }
.service-card.featured .link-arrow, .service-card.accent .link-arrow { color: #fff; }

.service-card-image {
  position: relative;
  margin: calc(var(--s-6) * -1) calc(var(--s-6) * -1) var(--s-4);
  height: 180px;
  border-radius: 0;
}
.service-card.tall .service-card-image { height: 240px; }

/* ---------- WHY US — VALUE CARDS ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.value-card {
  padding: var(--s-6);
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.value-card:hover { box-shadow: var(--shadow-sm); border-color: var(--border-strong); }

.value-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: var(--s-4) 0 var(--s-3);
}

.value-card p { font-size: 0.9375rem; color: var(--muted); margin: 0; }

/* ---------- STATS STRIP ---------- */
.stats-strip {
  background: var(--fg);
  color: #fff;
  border-radius: var(--r-xl);
  padding: var(--s-7) var(--s-6);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}

.stat {
  text-align: left;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: var(--s-5);
}
.stat:first-child { border-left: none; padding-left: 0; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0;
  color: #fff;
}

.stat-label {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #98a1b3;
  max-width: 22ch;
}

/* ---------- PROCESS STEPS ---------- */
.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-4);
  position: relative;
}

.process-step {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  border: 1px solid var(--border);
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}

.process-step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
  margin-bottom: var(--s-4);
}

.process-step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: -0.012em;
  margin: 0 0 0.75rem;
}

.process-step p { font-size: 0.875rem; color: var(--muted); margin: 0; }

/* ---------- ABOUT TEASER ---------- */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: center;
}

.about-teaser-image .ph-img { aspect-ratio: 5/6; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.testimonial {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--fg);
  margin: 0;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: var(--s-4);
  border-top: 1px solid var(--border);
}

.testimonial-author .avatar { width: 44px; height: 44px; font-size: 0.875rem; }

.testimonial-author-name { font-weight: 590; font-size: 0.9375rem; color: var(--fg); }
.testimonial-author-role { font-size: 0.8125rem; color: var(--muted); }

.testimonial.featured {
  grid-column: span 2;
  background: var(--accent-tint);
  border-color: transparent;
}
.testimonial.featured .testimonial-quote { font-size: 1.625rem; line-height: 1.3; }
.testimonial.featured .testimonial-author { border-top-color: rgba(47, 111, 235, 0.2); }

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.2s ease;
}
.faq-item[open] { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  font-family: var(--font-body);
  font-weight: 510;
  font-size: 1rem;
  color: var(--fg);
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-toggle {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface-inset);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.faq-item[open] .faq-toggle { background: var(--accent); color: #fff; transform: rotate(45deg); }

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}
.faq-answer p:last-child { margin-bottom: 0; }

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: var(--fg);
  color: #fff;
  border-radius: var(--r-xl);
  padding: var(--s-9) var(--s-7);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(47, 111, 235, 0.25), transparent 60%);
  top: -300px; right: -200px;
  border-radius: 50%;
  pointer-events: none;
}

.final-cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }

.final-cta h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: var(--s-4);
}

.final-cta p { color: #cfd5e0; max-width: 50ch; margin: 0 auto var(--s-6); font-size: 1.0625rem; }

.final-cta-actions { display: inline-flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }


/* ---------- EXPECTED OUTCOMES (PARALLAX + BUBBLES) ---------- */
.outcomes-parallax {
  position: relative;
  padding: var(--s-8) 24px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}

.outcomes-parallax-bg {
  position: absolute;
  inset: -10% 0;
  background-image:
    radial-gradient(ellipse 55% 45% at 15% 25%, rgba(240,120,20,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 75%, rgba(119,54,165,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 75% 55% at 50% 100%, rgba(58,23,97,0.7) 0%, transparent 70%),
    linear-gradient(135deg, #2a0f48 0%, #3a1761 40%, #6a2a8f 100%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
  transform: translateZ(0);
}

.outcomes-parallax-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.outcomes-parallax-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(14, 17, 22, 0.55) 0%,
      rgba(14, 17, 22, 0.42) 40%,
      rgba(14, 17, 22, 0.6) 100%
    );
  z-index: -1;
}

.outcomes-parallax-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 1;
}

.outcomes-parallax-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--s-7);
}

.outcomes-parallax .eyebrow-on-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #f3a26d;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.outcomes-parallax .eyebrow-on-dark::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--accent-2);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.outcomes-parallax-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.25rem;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.outcomes-parallax-lede {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 58ch;
  margin: 0 auto;
}

/* Bubble grid */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
}

.outcome-bubble {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.outcome-bubble:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.outcome-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-top: 1px;
}

.outcome-check svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.5;
}

.outcome-bubble p {
  color: #fff;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

/* Last bubble centered on its own row when 3 columns */
.outcomes-grid > .outcome-bubble:last-child:nth-child(3n+1) {
  grid-column: 2;
}

/* Mobile/touch fallback for parallax */
@media (hover: none), (max-width: 900px) {
  .outcomes-parallax-bg { background-attachment: scroll; }
  .outcomes-parallax { padding: var(--s-7) 20px; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .outcomes-grid > .outcome-bubble:last-child:nth-child(3n+1) { grid-column: auto; }
}

@media (max-width: 600px) {
  .outcomes-grid { grid-template-columns: 1fr; }
}
/* ---------- END OUTCOMES PARALLAX ---------- */


/* ---------- REGULATION 44 & 45 (PURPLE CARD + BUBBLE GRID) ---------- */
.reg-card {
  background: var(--accent);
  color: #fff;
  border-radius: 24px;
  padding: 56px 48px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.reg-card-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--s-6);
}

.reg-card-h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--accent-2);
  margin: 0.5rem 0 1.25rem;
}

.reg-card-lede {
  color: #fff;
  font-size: 1.0625rem;
  line-height: 1.6;
  margin-bottom: 0.875rem;
}

.reg-card-p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.reg-card-subhead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: #f3a26d;
  margin: 0;
}

/* Orange-outlined bubble grid */
.reg-bubble-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto;
}

.reg-bubble {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem 1.25rem 1.25rem 1.125rem;
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.reg-bubble:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.reg-bubble-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-top: 1px;
}

.reg-bubble-check svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.5;
}

.reg-bubble p {
  color: #fff;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

.reg-card-outro {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  font-size: 1rem;
  max-width: 600px;
  margin: var(--s-6) auto 0;
}

@media (max-width: 900px) {
  .reg-card { padding: 40px 28px; }
  .reg-bubble-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .reg-bubble-grid { grid-template-columns: 1fr; }
}
/* ---------- END REG CARD ---------- */

/* ---------- PAGE HEROS (ABOUT/FAQ/CONTACT) ---------- */
.page-hero {
  padding: var(--s-7) 0 var(--s-8);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-7);
  align-items: end;
}

.page-hero-content .display-sm { margin: 1rem 0 1.25rem; }
.page-hero-content p { font-size: 1.125rem; color: var(--fg-2); max-width: 50ch; }

.page-hero-image .ph-img { aspect-ratio: 4/3; }

/* ---------- ABOUT — OUR STORY ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-7);
  align-items: start;
}
.story-content p { font-size: 1rem; }
.story-image .ph-img { aspect-ratio: 4/5; }

/* ---------- ABOUT — TEAM ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}

.team-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.team-card .ph-img { aspect-ratio: 4/5; border-radius: 0; }
.team-card-body { padding: var(--s-5); }
.team-card h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.375rem;
  letter-spacing: -0.012em;
  margin: 0 0 0.25rem;
}
.team-card-role {
  font-size: 0.8125rem;
  font-weight: 510;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.875rem;
}
.team-card p { font-size: 0.875rem; color: var(--muted); margin: 0; }

/* ---------- ABOUT — ALTERNATING FEATURES ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: center;
  margin-bottom: var(--s-8);
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-row-content { order: 2; }
.feature-row.reverse .feature-row-image { order: 1; }

.feature-row-image .ph-img { aspect-ratio: 4/3; }

.feature-row-list {
  list-style: none;
  padding: 0;
  margin: var(--s-4) 0 0;
}
.feature-row-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
  color: var(--fg-2);
}
.feature-row-list .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-row-list .check svg { width: 12px; height: 12px; stroke-width: 2.5; }

/* ---------- CONTACT METHODS ---------- */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.contact-method {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.contact-method:hover { box-shadow: var(--shadow-sm); border-color: var(--border-strong); }

.contact-method-label {
  font-size: 0.75rem;
  font-weight: 510;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: var(--s-4) 0 0.5rem;
}

.contact-method-value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin: 0 0 var(--s-3);
  display: block;
}

.contact-method .link-arrow { color: var(--accent); }

/* ---------- CONTACT FORM ---------- */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--s-6);
  align-items: start;
}

.contact-form-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--s-7);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
}

.form-field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: var(--s-4); }

.form-label {
  font-size: 0.8125rem;
  font-weight: 510;
  color: var(--fg-2);
  letter-spacing: 0.005em;
}

.form-input,
.form-textarea,
.form-select {
  font-family: inherit;
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--fg);
  transition: all 0.15s ease;
  width: 100%;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}
.form-textarea { min-height: 140px; resize: vertical; font-family: inherit; }

.form-select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235b6472' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-submit { margin-top: var(--s-4); width: 100%; }

.contact-sidebar { display: flex; flex-direction: column; gap: var(--s-5); }
.contact-sidebar-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
}
.contact-sidebar-card h4 {
  font-family: var(--font-body);
  font-weight: 590;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 var(--s-3);
}
.contact-sidebar-card p { font-size: 0.9375rem; margin: 0 0 0.5rem; color: var(--fg-2); }
.contact-sidebar-card p:last-child { margin-bottom: 0; }

.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--fg-2);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:first-child { color: var(--muted); }

/* ---------- MAP ---------- */
.map-wrap {
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe, .map-wrap .ph-img {
  width: 100%;
  display: block;
  aspect-ratio: 16/6;
  border: 0;
  border-radius: 0;
}

/* ---------- RESPONSIVE — SECTIONS ---------- */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .service-card.tall { grid-column: span 2; grid-row: span 2; }
  .service-card.wide { grid-column: span 2; }
  .service-card.wider { grid-column: span 4; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-top { flex-direction: column; align-items: flex-start; }
  .section-head { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-left: none; padding-left: 0; }
  .about-teaser { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial.featured { grid-column: span 1; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-row-content { order: 1; }
  .feature-row.reverse .feature-row-image { order: 2; }
  .contact-methods { grid-template-columns: 1fr; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .hero-card-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { min-height: 280px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card.tall, .service-card.wide, .service-card.wider, .service-card.medium, .service-card.small { grid-column: span 1; grid-row: auto; }
  .why-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: var(--s-5); }
  .final-cta { padding: var(--s-7) var(--s-5); }
  .stats-strip { padding: var(--s-6) var(--s-5); }
}


.hero-image-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}


/* ===========================
   HERO (FULL-BLEED, Mindhaven-style)
   =========================== */
.hero-fullbleed {
  padding: var(--s-5) 0 var(--s-9);
}

.hero-wide-container {
  max-width: 1440px; /* wider than --container (1280px) */
  margin: 0 auto;
  padding: 0 var(--s-4);
  width: 100%;
}

.hero-card-fullbleed {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 640px;
  box-shadow: var(--shadow-md);
  background: var(--fg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 17, 22, 0) 30%, rgba(14, 17, 22, 0.55) 70%, rgba(14, 17, 22, 0.85) 100%),
    linear-gradient(90deg, rgba(14, 17, 22, 0.45) 0%, rgba(14, 17, 22, 0.15) 50%, rgba(14, 17, 22, 0.25) 100%);
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--s-6);
  align-items: end;
  padding: var(--s-8) var(--s-7);
  color: #fff;
}

.hero-overlay-left {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  max-width: 620px;
}

.hero-fb-headline {
  font-family: var(--font-body);
  font-weight: 510;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0;
}
.hero-fb-headline em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  display: block;
  margin-top: 0.1em;
  letter-spacing: -0.015em;
  color: #fff;
}

.hero-fb-body {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 52ch;
  margin: 0;
}

.hero-fb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn-overlay {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-overlay:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-1px);
}

.hero-fb-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 0.25rem;
}
.hero-fb-trust strong { font-weight: 590; color: #fff; }

.hero-fb-star {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-2);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Floating stat card (glass) */
.hero-fb-card {
  background: rgba(14, 17, 22, 0.32);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  color: #fff;
  max-width: 380px;
  justify-self: end;
}

.hero-fb-card-top {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.avatar-stack-row {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.avatar-stack-row .avatar {
  width: 36px; height: 36px;
  font-size: 0.6875rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.avatar-stack-row .avatar:not(:first-child) { margin-left: -10px; }

.hero-fb-card-stat {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.75rem;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0;
  color: #fff;
}
.hero-fb-card-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0.25rem 0 0;
  letter-spacing: 0.005em;
}

.hero-fb-card-body {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* ===========================
   HERO RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .hero-card-fullbleed { min-height: 580px; }
  .hero-overlay {
    grid-template-columns: 1fr;
    padding: var(--s-6) var(--s-5);
    gap: var(--s-5);
  }
  .hero-fb-card { max-width: 100%; justify-self: stretch; }
  .hero-fb-actions .btn-lg { padding: 0.875rem 1.25rem; }
}

@media (max-width: 600px) {
  .hero-fullbleed { padding: var(--s-4) 0 var(--s-7); }
  .hero-wide-container { padding: 0 var(--s-3); }
  .hero-card-fullbleed { min-height: 560px; border-radius: var(--r-lg); }
  .hero-overlay { padding: var(--s-5) var(--s-4); }
  .hero-fb-headline { font-size: clamp(2rem, 9vw, 2.75rem); }
  .hero-fb-body { font-size: 1rem; }
  .hero-fb-actions { width: 100%; }
  .hero-fb-actions .btn { flex: 1; min-width: 140px; justify-content: center; }
  .hero-fb-card { padding: var(--s-4); }
}


/* ===========================
   LOGO IMAGES (header + footer)
   =========================== */
.nav-logo-image {
  padding: 0;
  font-size: 0;          /* kill any text fallback whitespace */
  line-height: 0;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.footer-logo-link {
  display: inline-block;
  margin-bottom: var(--s-3);
}
.footer-logo-img {
  height: 110px;
  width: auto;
  display: block;
}

@media (max-width: 600px) {
  .nav-logo-img { height: 38px; }
  .footer-logo-img { height: 90px; }
}


/* ===========================
   AUDIENCE GRID (Who We Help)
   =========================== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.audience-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  border: 1px solid rgba(15, 18, 22, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.audience-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.audience-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent-2);
  letter-spacing: -0.02em;
  margin-bottom: var(--s-2);
}
.audience-card h3 {
  font-family: var(--font-body);
  font-weight: 590;
  font-size: 1.0625rem;
  margin: 0 0 0.5rem;
  color: var(--fg);
}
.audience-card p {
  font-size: 0.9375rem;
  color: var(--fg-2);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .audience-grid { grid-template-columns: 1fr; }
}

/* ===========================
   RESULTS LIST
   =========================== */
.results-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3) var(--s-5);
  max-width: 960px;
  margin: 0 auto;
}
.results-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 1.0625rem;
  color: var(--fg);
  line-height: 1.5;
  padding: var(--s-3) 0;
  border-bottom: 1px solid rgba(15, 18, 22, 0.07);
}
.results-list li:last-child {
  border-bottom: none;
}
.results-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--accent-2-soft);
  color: var(--accent-2);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.results-check .icon {
  width: 14px;
  height: 14px;
}

@media (max-width: 700px) {
  .results-list { grid-template-columns: 1fr; }
}
/* ===== PAGE: faq ===== */
/* =========================================================
   CARE CONSULTANCY — DESIGN SYSTEM
   Reference: UrbanWell (soft, editorial, trust-forward)
   Craft rules: Open Design (anti-AI-slop, accent discipline,
   letter-spacing on ALL CAPS, negative tracking on display)
   ========================================================= */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Surfaces — soft lavender base inspired by reference */
  --bg: #eef0f5;
  --surface: #ffffff;
  --surface-2: #f6f7fa;
  --surface-inset: #e8ebf2;

  /* Foreground — warm near-black, not #000 */
  --fg: #0e1116;
  --fg-2: #2a2f38;
  --muted: #5b6472;
  --muted-2: #8a93a3;

  /* Borders — subtle */
  --border: #e2e6ee;
  --border-strong: #c8cfdb;

  /* Accent — friendly trust blue (NOT Tailwind indigo) */
  --accent: #7736a5;
  --accent-2: #f07814;        /* brand orange — secondary accent */
  --accent-2-soft: #fdf0e3;   /* light orange tint */
  --accent-hover: #2257c9;
  --accent-tint: #dbe6fb;
  --accent-deep: #3a1761;

  /* Semantic */
  --success: #17a34a;
  --warn: #d97706;

  /* Typography */
  --font-display: "Instrument Serif", "Source Serif Pro", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows — soft, no AI-default heavy shadows */
  --shadow-xs: 0 1px 2px rgba(14, 17, 22, 0.04);
  --shadow-sm: 0 2px 8px rgba(14, 17, 22, 0.05);
  --shadow-md: 0 8px 24px rgba(14, 17, 22, 0.06);
  --shadow-lg: 0 20px 50px rgba(14, 17, 22, 0.08);

  /* Spacing scale (multiplicative) */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;

  /* Container */
  --container: 1280px;
  --container-tight: 960px;
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv01", "ss03";
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

/* Selection */
::selection { background: var(--accent-tint); color: var(--accent-deep); }

/* ---------- TYPOGRAPHY ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--fg);
}

.display-sm {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-5);
}

h2, .h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0 0 var(--s-4);
  color: var(--fg);
}

h3, .h3 {
  font-family: var(--font-body);
  font-weight: 590;
  font-size: 1.375rem;
  line-height: 1.3;
  letter-spacing: -0.012em;
  margin: 0 0 var(--s-3);
  color: var(--fg);
}

h4, .h4 {
  font-family: var(--font-body);
  font-weight: 590;
  font-size: 1.125rem;
  line-height: 1.35;
  letter-spacing: -0.005em;
  margin: 0 0 var(--s-2);
  color: var(--fg);
}

p { margin: 0 0 var(--s-4); color: var(--fg-2); max-width: 65ch; }

.lead { font-size: 1.125rem; line-height: 1.6; color: var(--fg-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 510;
  text-transform: uppercase;
  letter-spacing: 0.08em; /* required for ALL CAPS — craft rule */
  color: var(--muted);
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--accent-2);
  border-radius: 3px;
  transform: rotate(45deg);
  opacity: 0.95;
}

.eyebrow-accent { color: var(--accent); }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}

.container-tight { max-width: var(--container-tight); margin: 0 auto; padding: 0 var(--s-5); }

.section { padding: var(--s-9) 0; }

.section-sm { padding: var(--s-7) 0; }

.section-tight { padding: var(--s-8) 0; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 510;
  letter-spacing: 0.005em;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--fg-2); }

.btn-white {
  background: var(--surface);
  color: var(--fg);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }

.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }

.btn-icon {
  width: 36px; height: 36px; padding: 0;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Arrow inside link — craft: monoline SVG with currentColor, not emoji */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 510;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
}
.link-arrow svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.link-arrow:hover svg { transform: translate(2px, -2px); }

/* ---------- CHIPS / PILLS ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 450;
  color: var(--fg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  transition: all 0.15s ease;
}
.chip:hover { border-color: var(--border-strong); }
.chip-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ---------- CARDS ---------- */
.card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.card-flat {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(238, 240, 245, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled { border-bottom-color: var(--border); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-logo-mark {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent);
  border-radius: 10px;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0; padding: 0;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 510;
  color: var(--fg-2);
  letter-spacing: -0.005em;
  position: relative;
  transition: color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--fg); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--fg);
  color: #cfd5e0;
  padding: var(--s-9) 0 var(--s-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-7);
}

.footer-brand .nav-logo { color: #fff; }
.footer-brand p { color: #98a1b3; max-width: 32ch; margin-top: 1rem; }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 590;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 0 var(--s-4);
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.625rem; }
.footer-col a { font-size: 0.9375rem; color: #98a1b3; transition: color 0.15s ease; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--s-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: #7a8294;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transition: all 0.15s ease;
}
.footer-socials a:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.25); }

/* ---------- IMAGE PLACEHOLDERS ---------- */
/* Per Open Design rule: use shipped placeholder, not external CDNs */
.ph-img {
  position: relative;
  display: block;
  width: 100%;
  background:
    linear-gradient(135deg, rgba(47, 111, 235, 0.06), rgba(47, 111, 235, 0.02)),
    repeating-linear-gradient(
      45deg,
      var(--surface-inset),
      var(--surface-inset) 12px,
      var(--surface-2) 12px,
      var(--surface-2) 24px
    );
  border-radius: var(--r-lg);
  overflow: hidden;
}

.ph-img::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 510;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding: 1rem;
}

.ph-img-portrait { aspect-ratio: 3/4; }
.ph-img-square { aspect-ratio: 1/1; }
.ph-img-landscape { aspect-ratio: 16/10; }
.ph-img-wide { aspect-ratio: 16/9; }

/* Avatar circle placeholder */
.avatar {
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-tint), var(--surface-inset));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 590;
  color: var(--accent-deep);
  letter-spacing: 0;
  flex-shrink: 0;
}

/* ---------- SHARED ICON STYLE ---------- */
/* Open Design rule: 1.6–1.8px-stroke monoline SVGs with currentColor */
.icon {
  width: 24px; height: 24px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-tile {
  width: 52px; height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-tint);
  color: var(--accent);
  border-radius: 14px;
  flex-shrink: 0;
}
.icon-tile .icon { width: 26px; height: 26px; }

/* ---------- RESPONSIVE BASE ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .section { padding: var(--s-7) 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-5); }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .nav-cta .btn:not(.btn-icon) { display: none; }
  .section { padding: var(--s-6) 0; }
}


/* =========================================================
   PAGE SECTIONS
   ========================================================= */

/* ---------- HERO (HOME) ---------- */
.hero {
  padding: var(--s-7) 0 var(--s-9);
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  margin-bottom: var(--s-7);
}

.hero-eyebrow-row { display: flex; align-items: center; gap: 0.75rem; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem 0.5rem 0.5rem;
  background: var(--surface);
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 510;
  color: var(--fg-2);
}

.hero-trust-avatars { display: flex; }
.hero-trust-avatars .avatar {
  width: 28px; height: 28px;
  font-size: 0.625rem;
  border: 2px solid var(--surface);
}
.hero-trust-avatars .avatar:not(:first-child) { margin-left: -8px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: end;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--s-5);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-4);
  align-items: stretch;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 380px;
}

.hero-image-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: var(--r-pill);
  font-size: 0.8125rem;
  font-weight: 590;
  letter-spacing: 0.02em;
  color: var(--fg);
  z-index: 2;
}

.hero-image-overlay {
  position: absolute;
  bottom: 1rem; left: 1rem;
  width: 110px; height: 110px;
  background: var(--surface);
  border-radius: var(--r-md);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.hero-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.75rem;
}

.hero-side-top h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.018em;
  margin: 0 0 1rem;
}

.hero-side-bottom h4 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 510;
  line-height: 1.5;
  color: var(--fg-2);
  margin: 0 0 1rem;
}

.hero-headline-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-headline-side .display {
  margin: 0;
}

/* Hero — chips row */
.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  margin-top: var(--s-6);
  align-items: start;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.hero-chips-caption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
  max-width: 36ch;
}

.hero-community-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--s-5);
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--s-4);
}

.hero-community-card .avatar-stack {
  position: relative; width: 92px; height: 92px; flex-shrink: 0;
}
.hero-community-card .avatar-stack .avatar { position: absolute; }
.hero-community-card .avatar-stack .avatar:nth-child(1) { top: 0; left: 0; width: 44px; height: 44px; }
.hero-community-card .avatar-stack .avatar:nth-child(2) { top: 0; right: 0; width: 44px; height: 44px; }
.hero-community-card .avatar-stack .avatar:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); width: 44px; height: 44px; }

.hero-community-card-inner {
  flex: 1;
  text-align: left;
}
.hero-community-card-inner .eyebrow { margin-bottom: 0.4rem; }
.hero-community-card-inner h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

/* ---------- ACCREDITATION BAR ---------- */
.accred-bar {
  padding: var(--s-6) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.accred-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  flex-wrap: wrap;
}

.accred-label {
  font-size: 0.75rem;
  font-weight: 510;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  white-space: nowrap;
}

.accred-logos {
  display: flex;
  align-items: center;
  gap: var(--s-7);
  flex-wrap: wrap;
}

.accred-logo {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.85;
}
.accred-logo svg { width: 22px; height: 22px; opacity: 0.7; }

/* ---------- SECTION HEADERS ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: end;
  margin-bottom: var(--s-7);
}
.section-head-tight { margin-bottom: var(--s-6); }
.section-head-center { grid-template-columns: 1fr; text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-head-center p { margin-left: auto; margin-right: auto; }
.section-head h2 { margin-bottom: 0.25rem; }
.section-head p { margin: 0; color: var(--muted); }

/* ---------- SERVICES BENTO GRID ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: var(--s-5);
}

.service-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}

.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.service-card h3 {
  margin: var(--s-4) 0 0.5rem;
  font-size: 1.25rem;
}
.service-card p { font-size: 0.9375rem; color: var(--muted); margin: 0 0 var(--s-4); }

/* Bento spans */
.service-card.tall { grid-column: span 2; grid-row: span 2; }
.service-card.wide { grid-column: span 3; }
.service-card.medium { grid-column: span 2; }
.service-card.small { grid-column: span 2; }

.service-card.featured {
  background: var(--fg);
  color: #cfd5e0;
  border-color: var(--fg);
}
.service-card.featured h3 { color: #fff; }
.service-card.featured p { color: #98a1b3; }
.service-card.featured .icon-tile {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.service-card.accent {
  background: var(--accent);
  color: #f0e6f8;
  border-color: var(--accent);
}
.service-card.accent h3 { color: #fff; }
.service-card.accent p { color: #c4d8fb; }
.service-card.accent .icon-tile { background: rgba(255, 255, 255, 0.15); color: #fff; }

.service-card .link-arrow { margin-top: auto; }
.service-card.featured .link-arrow, .service-card.accent .link-arrow { color: #fff; }

.service-card-image {
  position: relative;
  margin: calc(var(--s-6) * -1) calc(var(--s-6) * -1) var(--s-4);
  height: 180px;
  border-radius: 0;
}
.service-card.tall .service-card-image { height: 240px; }

/* ---------- WHY US — VALUE CARDS ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.value-card {
  padding: var(--s-6);
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.value-card:hover { box-shadow: var(--shadow-sm); border-color: var(--border-strong); }

.value-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: var(--s-4) 0 var(--s-3);
}

.value-card p { font-size: 0.9375rem; color: var(--muted); margin: 0; }

/* ---------- STATS STRIP ---------- */
.stats-strip {
  background: var(--fg);
  color: #fff;
  border-radius: var(--r-xl);
  padding: var(--s-7) var(--s-6);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}

.stat {
  text-align: left;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: var(--s-5);
}
.stat:first-child { border-left: none; padding-left: 0; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0;
}

.stat-label {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #98a1b3;
  max-width: 22ch;
}

/* ---------- PROCESS STEPS ---------- */
.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-4);
  position: relative;
}

.process-step {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  border: 1px solid var(--border);
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}

.process-step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
  margin-bottom: var(--s-4);
}

.process-step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: -0.012em;
  margin: 0 0 0.75rem;
}

.process-step p { font-size: 0.875rem; color: var(--muted); margin: 0; }

/* ---------- ABOUT TEASER ---------- */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: center;
}

.about-teaser-image .ph-img { aspect-ratio: 5/6; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.testimonial {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--fg);
  margin: 0;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: var(--s-4);
  border-top: 1px solid var(--border);
}

.testimonial-author .avatar { width: 44px; height: 44px; font-size: 0.875rem; }

.testimonial-author-name { font-weight: 590; font-size: 0.9375rem; color: var(--fg); }
.testimonial-author-role { font-size: 0.8125rem; color: var(--muted); }

.testimonial.featured {
  grid-column: span 2;
  background: var(--accent-tint);
  border-color: transparent;
}
.testimonial.featured .testimonial-quote { font-size: 1.625rem; line-height: 1.3; }
.testimonial.featured .testimonial-author { border-top-color: rgba(47, 111, 235, 0.2); }

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.2s ease;
}
.faq-item[open] { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  font-family: var(--font-body);
  font-weight: 510;
  font-size: 1rem;
  color: var(--fg);
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-toggle {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface-inset);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.faq-item[open] .faq-toggle { background: var(--accent); color: #fff; transform: rotate(45deg); }

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}
.faq-answer p:last-child { margin-bottom: 0; }

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: var(--fg);
  color: #fff;
  border-radius: var(--r-xl);
  padding: var(--s-9) var(--s-7);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(47, 111, 235, 0.25), transparent 60%);
  top: -300px; right: -200px;
  border-radius: 50%;
  pointer-events: none;
}

.final-cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }

.final-cta h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: var(--s-4);
}

.final-cta p { color: #cfd5e0; max-width: 50ch; margin: 0 auto var(--s-6); font-size: 1.0625rem; }

.final-cta-actions { display: inline-flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }

/* ---------- PAGE HEROS (ABOUT/FAQ/CONTACT) ---------- */
.page-hero {
  padding: var(--s-7) 0 var(--s-8);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-7);
  align-items: end;
}

.page-hero-content .display-sm { margin: 1rem 0 1.25rem; }
.page-hero-content p { font-size: 1.125rem; color: var(--fg-2); max-width: 50ch; }

.page-hero-image .ph-img { aspect-ratio: 4/3; }

/* ---------- ABOUT — OUR STORY ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-7);
  align-items: start;
}
.story-content p { font-size: 1rem; }
.story-image .ph-img { aspect-ratio: 4/5; }

/* ---------- ABOUT — TEAM ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}

.team-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.team-card .ph-img { aspect-ratio: 4/5; border-radius: 0; }
.team-card-body { padding: var(--s-5); }
.team-card h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.375rem;
  letter-spacing: -0.012em;
  margin: 0 0 0.25rem;
}
.team-card-role {
  font-size: 0.8125rem;
  font-weight: 510;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.875rem;
}
.team-card p { font-size: 0.875rem; color: var(--muted); margin: 0; }

/* ---------- ABOUT — ALTERNATING FEATURES ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: center;
  margin-bottom: var(--s-8);
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-row-content { order: 2; }
.feature-row.reverse .feature-row-image { order: 1; }

.feature-row-image .ph-img { aspect-ratio: 4/3; }

.feature-row-list {
  list-style: none;
  padding: 0;
  margin: var(--s-4) 0 0;
}
.feature-row-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
  color: var(--fg-2);
}
.feature-row-list .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-row-list .check svg { width: 12px; height: 12px; stroke-width: 2.5; }

/* ---------- CONTACT METHODS ---------- */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.contact-method {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.contact-method:hover { box-shadow: var(--shadow-sm); border-color: var(--border-strong); }

.contact-method-label {
  font-size: 0.75rem;
  font-weight: 510;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: var(--s-4) 0 0.5rem;
}

.contact-method-value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin: 0 0 var(--s-3);
  display: block;
}

.contact-method .link-arrow { color: var(--accent); }

/* ---------- CONTACT FORM ---------- */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--s-6);
  align-items: start;
}

.contact-form-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--s-7);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
}

.form-field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: var(--s-4); }

.form-label {
  font-size: 0.8125rem;
  font-weight: 510;
  color: var(--fg-2);
  letter-spacing: 0.005em;
}

.form-input,
.form-textarea,
.form-select {
  font-family: inherit;
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--fg);
  transition: all 0.15s ease;
  width: 100%;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}
.form-textarea { min-height: 140px; resize: vertical; font-family: inherit; }

.form-select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235b6472' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-submit { margin-top: var(--s-4); width: 100%; }

.contact-sidebar { display: flex; flex-direction: column; gap: var(--s-5); }
.contact-sidebar-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
}
.contact-sidebar-card h4 {
  font-family: var(--font-body);
  font-weight: 590;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 var(--s-3);
}
.contact-sidebar-card p { font-size: 0.9375rem; margin: 0 0 0.5rem; color: var(--fg-2); }
.contact-sidebar-card p:last-child { margin-bottom: 0; }

.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--fg-2);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:first-child { color: var(--muted); }

/* ---------- MAP ---------- */
.map-wrap {
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe, .map-wrap .ph-img {
  width: 100%;
  display: block;
  aspect-ratio: 16/6;
  border: 0;
  border-radius: 0;
}

/* ---------- RESPONSIVE — SECTIONS ---------- */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .service-card.tall { grid-column: span 2; grid-row: span 2; }
  .service-card.wide { grid-column: span 2; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-top { flex-direction: column; align-items: flex-start; }
  .section-head { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-left: none; padding-left: 0; }
  .about-teaser { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial.featured { grid-column: span 1; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-row-content { order: 1; }
  .feature-row.reverse .feature-row-image { order: 2; }
  .contact-methods { grid-template-columns: 1fr; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .hero-card-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { min-height: 280px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card.tall, .service-card.wide, .service-card.medium, .service-card.small { grid-column: span 1; grid-row: auto; }
  .why-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: var(--s-5); }
  .final-cta { padding: var(--s-7) var(--s-5); }
  .stats-strip { padding: var(--s-6) var(--s-5); }
}



/* ===========================
   LOGO IMAGES (header + footer)
   =========================== */
.nav-logo-image {
  padding: 0;
  font-size: 0;          /* kill any text fallback whitespace */
  line-height: 0;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.footer-logo-link {
  display: inline-block;
  margin-bottom: var(--s-3);
}
.footer-logo-img {
  height: 110px;
  width: auto;
  display: block;
}

@media (max-width: 600px) {
  .nav-logo-img { height: 38px; }
  .footer-logo-img { height: 90px; }
}
/* ===== PAGE: contact ===== */
/* =========================================================
   CARE CONSULTANCY — DESIGN SYSTEM
   Reference: UrbanWell (soft, editorial, trust-forward)
   Craft rules: Open Design (anti-AI-slop, accent discipline,
   letter-spacing on ALL CAPS, negative tracking on display)
   ========================================================= */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Surfaces — soft lavender base inspired by reference */
  --bg: #eef0f5;
  --surface: #ffffff;
  --surface-2: #f6f7fa;
  --surface-inset: #e8ebf2;

  /* Foreground — warm near-black, not #000 */
  --fg: #0e1116;
  --fg-2: #2a2f38;
  --muted: #5b6472;
  --muted-2: #8a93a3;

  /* Borders — subtle */
  --border: #e2e6ee;
  --border-strong: #c8cfdb;

  /* Accent — friendly trust blue (NOT Tailwind indigo) */
  --accent: #7736a5;
  --accent-2: #f07814;        /* brand orange — secondary accent */
  --accent-2-soft: #fdf0e3;   /* light orange tint */
  --accent-hover: #2257c9;
  --accent-tint: #dbe6fb;
  --accent-deep: #3a1761;

  /* Semantic */
  --success: #17a34a;
  --warn: #d97706;

  /* Typography */
  --font-display: "Instrument Serif", "Source Serif Pro", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows — soft, no AI-default heavy shadows */
  --shadow-xs: 0 1px 2px rgba(14, 17, 22, 0.04);
  --shadow-sm: 0 2px 8px rgba(14, 17, 22, 0.05);
  --shadow-md: 0 8px 24px rgba(14, 17, 22, 0.06);
  --shadow-lg: 0 20px 50px rgba(14, 17, 22, 0.08);

  /* Spacing scale (multiplicative) */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;

  /* Container */
  --container: 1280px;
  --container-tight: 960px;
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv01", "ss03";
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

/* Selection */
::selection { background: var(--accent-tint); color: var(--accent-deep); }

/* ---------- TYPOGRAPHY ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--fg);
}

.display-sm {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-5);
}

h2, .h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0 0 var(--s-4);
  color: var(--fg);
}

h3, .h3 {
  font-family: var(--font-body);
  font-weight: 590;
  font-size: 1.375rem;
  line-height: 1.3;
  letter-spacing: -0.012em;
  margin: 0 0 var(--s-3);
  color: var(--fg);
}

h4, .h4 {
  font-family: var(--font-body);
  font-weight: 590;
  font-size: 1.125rem;
  line-height: 1.35;
  letter-spacing: -0.005em;
  margin: 0 0 var(--s-2);
  color: var(--fg);
}

p { margin: 0 0 var(--s-4); color: var(--fg-2); max-width: 65ch; }

.lead { font-size: 1.125rem; line-height: 1.6; color: var(--fg-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 510;
  text-transform: uppercase;
  letter-spacing: 0.08em; /* required for ALL CAPS — craft rule */
  color: var(--muted);
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--accent-2);
  border-radius: 3px;
  transform: rotate(45deg);
  opacity: 0.95;
}

.eyebrow-accent { color: var(--accent); }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}

.container-tight { max-width: var(--container-tight); margin: 0 auto; padding: 0 var(--s-5); }

.section { padding: var(--s-9) 0; }

.section-sm { padding: var(--s-7) 0; }

.section-tight { padding: var(--s-8) 0; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 510;
  letter-spacing: 0.005em;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--fg-2); }

.btn-white {
  background: var(--surface);
  color: var(--fg);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }

.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }

.btn-icon {
  width: 36px; height: 36px; padding: 0;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Arrow inside link — craft: monoline SVG with currentColor, not emoji */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 510;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
}
.link-arrow svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.link-arrow:hover svg { transform: translate(2px, -2px); }

/* ---------- CHIPS / PILLS ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 450;
  color: var(--fg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  transition: all 0.15s ease;
}
.chip:hover { border-color: var(--border-strong); }
.chip-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ---------- CARDS ---------- */
.card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.card-flat {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(238, 240, 245, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled { border-bottom-color: var(--border); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-logo-mark {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent);
  border-radius: 10px;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0; padding: 0;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 510;
  color: var(--fg-2);
  letter-spacing: -0.005em;
  position: relative;
  transition: color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--fg); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--fg);
  color: #cfd5e0;
  padding: var(--s-9) 0 var(--s-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-7);
}

.footer-brand .nav-logo { color: #fff; }
.footer-brand p { color: #98a1b3; max-width: 32ch; margin-top: 1rem; }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 590;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 0 var(--s-4);
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.625rem; }
.footer-col a { font-size: 0.9375rem; color: #98a1b3; transition: color 0.15s ease; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--s-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: #7a8294;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transition: all 0.15s ease;
}
.footer-socials a:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.25); }

/* ---------- IMAGE PLACEHOLDERS ---------- */
/* Per Open Design rule: use shipped placeholder, not external CDNs */
.ph-img {
  position: relative;
  display: block;
  width: 100%;
  background:
    linear-gradient(135deg, rgba(47, 111, 235, 0.06), rgba(47, 111, 235, 0.02)),
    repeating-linear-gradient(
      45deg,
      var(--surface-inset),
      var(--surface-inset) 12px,
      var(--surface-2) 12px,
      var(--surface-2) 24px
    );
  border-radius: var(--r-lg);
  overflow: hidden;
}

.ph-img::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 510;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding: 1rem;
}

.ph-img-portrait { aspect-ratio: 3/4; }
.ph-img-square { aspect-ratio: 1/1; }
.ph-img-landscape { aspect-ratio: 16/10; }
.ph-img-wide { aspect-ratio: 16/9; }

/* Avatar circle placeholder */
.avatar {
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-tint), var(--surface-inset));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 590;
  color: var(--accent-deep);
  letter-spacing: 0;
  flex-shrink: 0;
}

/* ---------- SHARED ICON STYLE ---------- */
/* Open Design rule: 1.6–1.8px-stroke monoline SVGs with currentColor */
.icon {
  width: 24px; height: 24px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-tile {
  width: 52px; height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-tint);
  color: var(--accent);
  border-radius: 14px;
  flex-shrink: 0;
}
.icon-tile .icon { width: 26px; height: 26px; }

/* ---------- RESPONSIVE BASE ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .section { padding: var(--s-7) 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-5); }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .nav-cta .btn:not(.btn-icon) { display: none; }
  .section { padding: var(--s-6) 0; }
}


/* =========================================================
   PAGE SECTIONS
   ========================================================= */

/* ---------- HERO (HOME) ---------- */
.hero {
  padding: var(--s-7) 0 var(--s-9);
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  margin-bottom: var(--s-7);
}

.hero-eyebrow-row { display: flex; align-items: center; gap: 0.75rem; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem 0.5rem 0.5rem;
  background: var(--surface);
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 510;
  color: var(--fg-2);
}

.hero-trust-avatars { display: flex; }
.hero-trust-avatars .avatar {
  width: 28px; height: 28px;
  font-size: 0.625rem;
  border: 2px solid var(--surface);
}
.hero-trust-avatars .avatar:not(:first-child) { margin-left: -8px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: end;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--s-5);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-4);
  align-items: stretch;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 380px;
}

.hero-image-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: var(--r-pill);
  font-size: 0.8125rem;
  font-weight: 590;
  letter-spacing: 0.02em;
  color: var(--fg);
  z-index: 2;
}

.hero-image-overlay {
  position: absolute;
  bottom: 1rem; left: 1rem;
  width: 110px; height: 110px;
  background: var(--surface);
  border-radius: var(--r-md);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.hero-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.75rem;
}

.hero-side-top h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.018em;
  margin: 0 0 1rem;
}

.hero-side-bottom h4 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 510;
  line-height: 1.5;
  color: var(--fg-2);
  margin: 0 0 1rem;
}

.hero-headline-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-headline-side .display {
  margin: 0;
}

/* Hero — chips row */
.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  margin-top: var(--s-6);
  align-items: start;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.hero-chips-caption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
  max-width: 36ch;
}

.hero-community-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--s-5);
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--s-4);
}

.hero-community-card .avatar-stack {
  position: relative; width: 92px; height: 92px; flex-shrink: 0;
}
.hero-community-card .avatar-stack .avatar { position: absolute; }
.hero-community-card .avatar-stack .avatar:nth-child(1) { top: 0; left: 0; width: 44px; height: 44px; }
.hero-community-card .avatar-stack .avatar:nth-child(2) { top: 0; right: 0; width: 44px; height: 44px; }
.hero-community-card .avatar-stack .avatar:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); width: 44px; height: 44px; }

.hero-community-card-inner {
  flex: 1;
  text-align: left;
}
.hero-community-card-inner .eyebrow { margin-bottom: 0.4rem; }
.hero-community-card-inner h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

/* ---------- ACCREDITATION BAR ---------- */
.accred-bar {
  padding: var(--s-6) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.accred-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  flex-wrap: wrap;
}

.accred-label {
  font-size: 0.75rem;
  font-weight: 510;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  white-space: nowrap;
}

.accred-logos {
  display: flex;
  align-items: center;
  gap: var(--s-7);
  flex-wrap: wrap;
}

.accred-logo {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.85;
}
.accred-logo svg { width: 22px; height: 22px; opacity: 0.7; }

/* ---------- SECTION HEADERS ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: end;
  margin-bottom: var(--s-7);
}
.section-head-tight { margin-bottom: var(--s-6); }
.section-head-center { grid-template-columns: 1fr; text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-head-center p { margin-left: auto; margin-right: auto; }
.section-head h2 { margin-bottom: 0.25rem; }
.section-head p { margin: 0; color: var(--muted); }

/* ---------- SERVICES BENTO GRID ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: var(--s-5);
}

.service-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}

.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.service-card h3 {
  margin: var(--s-4) 0 0.5rem;
  font-size: 1.25rem;
}
.service-card p { font-size: 0.9375rem; color: var(--muted); margin: 0 0 var(--s-4); }

/* Bento spans */
.service-card.tall { grid-column: span 2; grid-row: span 2; }
.service-card.wide { grid-column: span 3; }
.service-card.medium { grid-column: span 2; }
.service-card.small { grid-column: span 2; }

.service-card.featured {
  background: var(--fg);
  color: #cfd5e0;
  border-color: var(--fg);
}
.service-card.featured h3 { color: #fff; }
.service-card.featured p { color: #98a1b3; }
.service-card.featured .icon-tile {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.service-card.accent {
  background: var(--accent);
  color: #f0e6f8;
  border-color: var(--accent);
}
.service-card.accent h3 { color: #fff; }
.service-card.accent p { color: #c4d8fb; }
.service-card.accent .icon-tile { background: rgba(255, 255, 255, 0.15); color: #fff; }

.service-card .link-arrow { margin-top: auto; }
.service-card.featured .link-arrow, .service-card.accent .link-arrow { color: #fff; }

.service-card-image {
  position: relative;
  margin: calc(var(--s-6) * -1) calc(var(--s-6) * -1) var(--s-4);
  height: 180px;
  border-radius: 0;
}
.service-card.tall .service-card-image { height: 240px; }

/* ---------- WHY US — VALUE CARDS ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.value-card {
  padding: var(--s-6);
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.value-card:hover { box-shadow: var(--shadow-sm); border-color: var(--border-strong); }

.value-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: var(--s-4) 0 var(--s-3);
}

.value-card p { font-size: 0.9375rem; color: var(--muted); margin: 0; }

/* ---------- STATS STRIP ---------- */
.stats-strip {
  background: var(--fg);
  color: #fff;
  border-radius: var(--r-xl);
  padding: var(--s-7) var(--s-6);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}

.stat {
  text-align: left;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: var(--s-5);
}
.stat:first-child { border-left: none; padding-left: 0; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0;
}

.stat-label {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #98a1b3;
  max-width: 22ch;
}

/* ---------- PROCESS STEPS ---------- */
.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-4);
  position: relative;
}

.process-step {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  border: 1px solid var(--border);
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}

.process-step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
  margin-bottom: var(--s-4);
}

.process-step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: -0.012em;
  margin: 0 0 0.75rem;
}

.process-step p { font-size: 0.875rem; color: var(--muted); margin: 0; }

/* ---------- ABOUT TEASER ---------- */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: center;
}

.about-teaser-image .ph-img { aspect-ratio: 5/6; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.testimonial {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--fg);
  margin: 0;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: var(--s-4);
  border-top: 1px solid var(--border);
}

.testimonial-author .avatar { width: 44px; height: 44px; font-size: 0.875rem; }

.testimonial-author-name { font-weight: 590; font-size: 0.9375rem; color: var(--fg); }
.testimonial-author-role { font-size: 0.8125rem; color: var(--muted); }

.testimonial.featured {
  grid-column: span 2;
  background: var(--accent-tint);
  border-color: transparent;
}
.testimonial.featured .testimonial-quote { font-size: 1.625rem; line-height: 1.3; }
.testimonial.featured .testimonial-author { border-top-color: rgba(47, 111, 235, 0.2); }

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.2s ease;
}
.faq-item[open] { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  font-family: var(--font-body);
  font-weight: 510;
  font-size: 1rem;
  color: var(--fg);
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-toggle {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface-inset);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.faq-item[open] .faq-toggle { background: var(--accent); color: #fff; transform: rotate(45deg); }

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}
.faq-answer p:last-child { margin-bottom: 0; }

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: var(--fg);
  color: #fff;
  border-radius: var(--r-xl);
  padding: var(--s-9) var(--s-7);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(47, 111, 235, 0.25), transparent 60%);
  top: -300px; right: -200px;
  border-radius: 50%;
  pointer-events: none;
}

.final-cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }

.final-cta h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: var(--s-4);
}

.final-cta p { color: #cfd5e0; max-width: 50ch; margin: 0 auto var(--s-6); font-size: 1.0625rem; }

.final-cta-actions { display: inline-flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }

/* ---------- PAGE HEROS (ABOUT/FAQ/CONTACT) ---------- */
.page-hero {
  padding: var(--s-7) 0 var(--s-8);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-7);
  align-items: end;
}

.page-hero-content .display-sm { margin: 1rem 0 1.25rem; }
.page-hero-content p { font-size: 1.125rem; color: var(--fg-2); max-width: 50ch; }

.page-hero-image .ph-img { aspect-ratio: 4/3; }

/* ---------- ABOUT — OUR STORY ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-7);
  align-items: start;
}
.story-content p { font-size: 1rem; }
.story-image .ph-img { aspect-ratio: 4/5; }

/* ---------- ABOUT — TEAM ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}

.team-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.team-card .ph-img { aspect-ratio: 4/5; border-radius: 0; }
.team-card-body { padding: var(--s-5); }
.team-card h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.375rem;
  letter-spacing: -0.012em;
  margin: 0 0 0.25rem;
}
.team-card-role {
  font-size: 0.8125rem;
  font-weight: 510;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.875rem;
}
.team-card p { font-size: 0.875rem; color: var(--muted); margin: 0; }

/* ---------- ABOUT — ALTERNATING FEATURES ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: center;
  margin-bottom: var(--s-8);
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-row-content { order: 2; }
.feature-row.reverse .feature-row-image { order: 1; }

.feature-row-image .ph-img { aspect-ratio: 4/3; }

.feature-row-list {
  list-style: none;
  padding: 0;
  margin: var(--s-4) 0 0;
}
.feature-row-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
  color: var(--fg-2);
}
.feature-row-list .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-row-list .check svg { width: 12px; height: 12px; stroke-width: 2.5; }

/* ---------- CONTACT METHODS ---------- */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.contact-method {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.contact-method:hover { box-shadow: var(--shadow-sm); border-color: var(--border-strong); }

.contact-method-label {
  font-size: 0.75rem;
  font-weight: 510;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: var(--s-4) 0 0.5rem;
}

.contact-method-value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin: 0 0 var(--s-3);
  display: block;
}

.contact-method .link-arrow { color: var(--accent); }

/* ---------- CONTACT FORM ---------- */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--s-6);
  align-items: start;
}

.contact-form-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--s-7);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
}

.form-field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: var(--s-4); }

.form-label {
  font-size: 0.8125rem;
  font-weight: 510;
  color: var(--fg-2);
  letter-spacing: 0.005em;
}

.form-input,
.form-textarea,
.form-select {
  font-family: inherit;
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--fg);
  transition: all 0.15s ease;
  width: 100%;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}
.form-textarea { min-height: 140px; resize: vertical; font-family: inherit; }

.form-select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235b6472' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-submit { margin-top: var(--s-4); width: 100%; }

.contact-sidebar { display: flex; flex-direction: column; gap: var(--s-5); }
.contact-sidebar-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
}
.contact-sidebar-card h4 {
  font-family: var(--font-body);
  font-weight: 590;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 var(--s-3);
}
.contact-sidebar-card p { font-size: 0.9375rem; margin: 0 0 0.5rem; color: var(--fg-2); }
.contact-sidebar-card p:last-child { margin-bottom: 0; }

.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--fg-2);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:first-child { color: var(--muted); }

/* ---------- MAP ---------- */
.map-wrap {
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe, .map-wrap .ph-img {
  width: 100%;
  display: block;
  aspect-ratio: 16/6;
  border: 0;
  border-radius: 0;
}

/* ---------- RESPONSIVE — SECTIONS ---------- */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .service-card.tall { grid-column: span 2; grid-row: span 2; }
  .service-card.wide { grid-column: span 2; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-top { flex-direction: column; align-items: flex-start; }
  .section-head { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-left: none; padding-left: 0; }
  .about-teaser { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial.featured { grid-column: span 1; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-row-content { order: 1; }
  .feature-row.reverse .feature-row-image { order: 2; }
  .contact-methods { grid-template-columns: 1fr; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .hero-card-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { min-height: 280px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card.tall, .service-card.wide, .service-card.medium, .service-card.small { grid-column: span 1; grid-row: auto; }
  .why-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: var(--s-5); }
  .final-cta { padding: var(--s-7) var(--s-5); }
  .stats-strip { padding: var(--s-6) var(--s-5); }
}



/* ===========================
   LOGO IMAGES (header + footer)
   =========================== */
.nav-logo-image {
  padding: 0;
  font-size: 0;          /* kill any text fallback whitespace */
  line-height: 0;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.footer-logo-link {
  display: inline-block;
  margin-bottom: var(--s-3);
}
.footer-logo-img {
  height: 110px;
  width: auto;
  display: block;
}

@media (max-width: 600px) {
  .nav-logo-img { height: 38px; }
  .footer-logo-img { height: 90px; }
}

/* Real section images reuse the .ph-img slot sizing; cover the box, drop placeholder striping. */
img.ph-img { object-fit: cover; background: none; border: 0; }

/* About page "Our Story": image height matches the text column */
.story-grid { align-items: stretch; }
.story-image { position: relative; }
.story-image .ph-img { position: absolute; inset: 0; width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }
@media (max-width: 900px) {
  .story-image { position: static; }
  .story-image .ph-img { position: static; height: auto; aspect-ratio: 4/5; }
}

/* ===========================
   BACK TO TOP BUTTON (global)
   =========================== */
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  box-shadow: var(--shadow-md, 0 6px 20px rgba(0,0,0,0.18));
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--accent-strong, var(--accent)); }
.back-to-top .icon { stroke: currentColor; }

@media (max-width: 600px) {
  .back-to-top { right: 1rem; bottom: 1rem; width: 42px; height: 42px; }
}

/* ===========================================================
   SCROLL + HOVER TRANSITIONS (transform/opacity only — PageSpeed-safe)
   Appended last so it overrides the duplicated base blocks above.
   =========================================================== */

/* 1. Service-card hover — lift deeper */
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* 2. Nav links hover — animated underline via scaleX (no layout shift) */
.nav-links a::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}
.nav-links a:hover::before { transform: scaleX(1); }

/* 3. Scroll-reveal (Contact pills, Why-grid value-cards, Final-CTA).
   Hidden state only applies once JS adds .reveal-on to <body>, so
   no-JS users see everything. prefers-reduced-motion never opts in. */
.reveal-on .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on .reveal.reveal-scale { transform: translateY(20px) scale(0.98); }
.reveal-on .reveal.in-view { opacity: 1; transform: none; }
