/* =========================================================================
   Central Bridge — stylesheet
   Palette: Navy #002146 · Teal #2F7A80 · Gold #CC9735
   Type: Plus Jakarta Sans (headings) · Inter (body)
   ========================================================================= */

:root {
  --navy: #002146;
  --navy-700: #0a2f5c;
  --navy-800: #041c38;
  --teal: #2f7a80;
  --teal-600: #276970;
  --teal-700: #1f565c;
  --teal-050: #eaf3f3;
  --gold: #cc9735;
  --gold-600: #b8842a;

  --ink: #17242e;
  --body: #4a5a66;
  --muted: #6b7a86;
  --line: #e4e9ee;
  --bg: #ffffff;
  --bg-soft: #f6f8fa;
  --bg-softer: #eef2f5;

  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(0, 33, 70, 0.06);
  --shadow: 0 14px 40px rgba(0, 33, 70, 0.10);
  --shadow-lg: 0 26px 60px rgba(0, 33, 70, 0.16);

  --container: 1180px;
  --gap: clamp(1.5rem, 4vw, 3rem);

  --font-head: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---- Reset-ish --------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

p { margin: 0 0 1rem; }
a { color: var(--teal-700); text-decoration: none; }
a:hover { color: var(--teal); }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.7rem 1.2rem;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2rem);
}

.section { padding-block: clamp(3rem, 7vw, 6rem); }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal);
  margin: 0 0 0.75rem;
  font-family: var(--font-head);
}
.section-title {
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  color: var(--navy);
}
.section-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head-center { text-align: center; max-width: 720px; margin-inline: auto; }
.section-head-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.section-lead {
  max-width: 760px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: 1.12rem;
  color: var(--body);
}
.section-lead-center { margin-inline: auto; text-align: center; }

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  line-height: 1;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-arrow { width: 1.1em; height: 1.1em; }
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 33, 70, 0.22);
}
.btn-primary:hover { background: var(--navy-700); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(0, 33, 70, 0.22);
}
.btn-outline:hover { color: var(--navy); border-color: var(--navy); background: rgba(0,33,70,0.04); }
.btn-gold { background: var(--gold); color: #23303a; }
.btn-gold:hover { background: var(--gold-600); color: #23303a; }
.btn-block { width: 100%; justify-content: center; }

/* On dark backgrounds */
.on-dark .btn-outline,
.hero .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.hero .btn-outline:hover { background: rgba(255,255,255,0.12); color:#fff; border-color:#fff; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--teal-700);
  font-size: 0.96rem;
}
.text-link-arrow { width: 1.05em; height: 1.05em; transition: transform 0.15s ease; }
.text-link:hover .text-link-arrow { transform: translateX(4px); }

.icon { width: 100%; height: 100%; }

/* =========================================================================
   Header / nav
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy);
  flex-shrink: 0;
}
.brand-mark { width: 46px; height: auto; fill: var(--teal); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: 0.02em;
  color: var(--navy);
}
.brand-tagline {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
}

.site-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 0.35rem; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--navy);
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
}
.nav-link:hover { color: var(--teal); background: var(--teal-050); }
.nav-link.is-active { color: var(--teal); }
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.nav-caret { width: 14px; height: 14px; }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-link {
  display: block;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
}
.dropdown-link:hover,
.dropdown-link.is-active { background: var(--teal-050); color: var(--teal-700); }

.header-actions { display: flex; align-items: center; gap: 0.6rem; }

/* Language switcher */
.lang-switch { position: relative; }
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.7rem 0.45rem 0.75rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  cursor: pointer;
}
.lang-toggle:hover { border-color: var(--teal); }
.lang-icon { width: 17px; height: 17px; color: var(--teal); }
.lang-caret { width: 15px; height: 15px; transition: transform 0.18s ease; }
.lang-switch.open .lang-caret { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 0.35rem;
  min-width: 96px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option {
  display: block;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}
.lang-option:hover { background: var(--teal-050); color: var(--teal-700); }
.lang-option.is-active { background: var(--navy); color: #fff; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--navy);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(0, 22, 48, 0.92) 0%, rgba(0, 27, 58, 0.72) 42%, rgba(0, 33, 70, 0.30) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(3rem, 8vw, 6rem); }
.hero-content { max-width: 640px; }
.hero-title {
  color: #fff;
  font-size: clamp(2.1rem, 5.2vw, 3.7rem);
  line-height: 1.08;
  margin-bottom: 1.1rem;
  font-weight: 800;
}
.hero-subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 34em;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.5rem; }

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1.2rem;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  white-space: nowrap;
}
.trust-icon { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }

/* =========================================================================
   Intro section (home)
   ========================================================================= */
.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--gap);
  align-items: center;
}
.intro-text .section-title { margin-bottom: 1rem; }
.intro-callout {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.intro-callout-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.intro-callout-body { padding: 1.8rem 2rem 2rem; }
.intro-callout p { font-size: 1.1rem; color: var(--ink); margin: 0; }
.intro-callout-mark {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -3.6rem 0 1.2rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.callout-mark { width: 38px; height: auto; fill: var(--teal); }

/* =========================================================================
   Service cards
   ========================================================================= */
.services-section { background: var(--bg-soft); scroll-margin-top: 92px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-card-lg { padding: 2rem; }
.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: #fff;
}
.service-icon .icon { width: 30px; height: 30px; }
.service-icon-teal { background: var(--teal); }
.service-icon-gold { background: var(--gold); }
.service-card-title {
  font-size: 1.22rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.service-num { color: var(--teal); }
.service-card-text { color: var(--body); margin-bottom: 1.1rem; font-size: 0.98rem; }

/* =========================================================================
   CTA band (navy, home)
   ========================================================================= */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
  isolation: isolate;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  z-index: -1;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: clamp(2rem, 5vw, 3.4rem);
}
.cta-band-text h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 0.3rem; }
.cta-band-text p { color: rgba(255,255,255,0.85); margin: 0; font-size: 1.1rem; }
.cta-band .btn-primary { background: var(--gold); color: #23303a; }
.cta-band .btn-primary:hover { background: var(--gold-600); color: #23303a; }

/* =========================================================================
   Articles / blog cards
   ========================================================================= */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.article-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.article-media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.article-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.article-card:hover .article-media img { transform: scale(1.05); }
.article-cat {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  background: var(--gold);
  color: #23303a;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
}
.article-cat-inline { position: static; display: inline-block; }
.article-body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.article-date { color: var(--muted); font-size: 0.82rem; font-weight: 500; }
.article-title { font-size: 1.18rem; margin: 0.4rem 0 0.6rem; }
.article-title a { color: var(--navy); }
.article-title a:hover { color: var(--teal); }
.article-excerpt { color: var(--body); font-size: 0.95rem; margin-bottom: 1rem; flex: 1; }

/* Featured (blog index) */
.blog-featured { margin-bottom: 2rem; }
.article-card-featured { flex-direction: row; }
.article-card-featured .article-media { flex: 1 1 52%; aspect-ratio: auto; min-height: 320px; }
.article-card-featured .article-body { flex: 1 1 48%; justify-content: center; padding: clamp(1.5rem, 4vw, 3rem); }
.article-card-featured .article-title { font-size: clamp(1.4rem, 2.6vw, 2rem); }
.article-card-featured .article-excerpt { font-size: 1.05rem; }

/* =========================================================================
   Contact CTA (teal, home bottom)
   ========================================================================= */
.contact-cta { background: linear-gradient(120deg, var(--teal-700), var(--teal)); color: #fff; }
.contact-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-block: clamp(2.4rem, 5vw, 3.6rem);
}
.contact-cta-text { display: flex; align-items: center; gap: 1.2rem; }
.contact-cta-icon { width: 54px; height: 54px; color: rgba(255,255,255,0.85); flex-shrink: 0; }
.contact-cta-text h2 { color: #fff; margin-bottom: 0.2rem; font-size: clamp(1.4rem, 2.8vw, 2rem); }
.contact-cta-text p { color: rgba(255,255,255,0.9); margin: 0; }
.contact-cta .btn-primary { background: #fff; color: var(--teal-700); }
.contact-cta .btn-primary:hover { background: #f0f0f0; color: var(--teal-700); }

/* =========================================================================
   Interior page hero
   ========================================================================= */
.page-hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding-block: clamp(2.6rem, 6vw, 4.5rem);
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(0,22,48,0.92), rgba(0,33,70,0.55));
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero-title { color: #fff; font-size: clamp(1.9rem, 4.4vw, 3rem); max-width: 20ch; }
.page-hero-subtitle { color: rgba(255,255,255,0.88); font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 52ch; margin: 0; }
.breadcrumb { margin-bottom: 1rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: 0.85rem; }
.breadcrumb li { display: flex; align-items: center; color: rgba(255,255,255,0.75); }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 0.4rem; color: rgba(255,255,255,0.4); }
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb li[aria-current] { color: #fff; font-weight: 600; }

/* =========================================================================
   Prose + shared interior blocks
   ========================================================================= */
.prose { color: var(--body); font-size: 1.05rem; }
.prose h2 { color: var(--navy); font-size: 1.5rem; margin-top: 2rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 1.1rem; }
.prose ul { margin: 0 0 1.2rem; padding-left: 0; }
.prose ul li { position: relative; padding-left: 1.7rem; margin-bottom: 0.6rem; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
}
.prose ol { counter-reset: step; padding-left: 0; margin: 0 0 1.2rem; }
.prose ol li { counter-increment: step; position: relative; padding-left: 2.4rem; margin-bottom: 0.8rem; }
.prose ol li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 1.7rem; height: 1.7rem;
  background: var(--teal-050); color: var(--teal-700);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
}
.prose blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.4rem;
  border-left: 4px solid var(--gold);
  background: var(--bg-soft);
  border-radius: 0 12px 12px 0;
  color: var(--ink);
  font-size: 1.1rem;
}

.narrow-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--gap);
  align-items: center;
}
.framed-photo { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.framed-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Stats */
.stats-section { background: var(--navy); }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat { padding: 0.5rem; }
.stat-num { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--gold); line-height: 1; }
.stat-label { display: block; color: rgba(255,255,255,0.82); margin-top: 0.5rem; font-size: 0.95rem; }

/* Mission / audience */
.mission-section { background: var(--bg-soft); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.mission-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); }
.mission-card h2 { color: var(--navy); font-size: 1.4rem; }
.mission-card-primary { background: var(--teal); color: #fff; border-color: transparent; }
.mission-card-primary h2 { color: #fff; }
.mission-card-primary p { color: rgba(255,255,255,0.92); }
.audience-list { display: grid; gap: 0.7rem; }
.audience-item { display: flex; align-items: center; gap: 0.7rem; color: var(--ink); font-weight: 500; }
.audience-icon { width: 22px; height: 22px; color: var(--teal); flex-shrink: 0; }

.legal-note { background: var(--bg-soft); border: 1px solid var(--line); border-left: 4px solid var(--teal); border-radius: 12px; padding: 1.4rem 1.6rem; }
.legal-note-title { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.4rem; }
.legal-note p { margin: 0; font-size: 0.95rem; }

/* Service detail */
.service-detail-grid { display: grid; grid-template-columns: 1.4fr 0.85fr; gap: var(--gap); align-items: start; }
.offer-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; position: sticky; top: 96px; }
.offer-title { font-size: 1.25rem; color: var(--navy); margin-bottom: 1rem; }
.offer-list { display: grid; gap: 0.8rem; }
.offer-item { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.97rem; color: var(--ink); }
.offer-check { flex-shrink: 0; width: 24px; height: 24px; color: var(--teal); }
.offer-icon { width: 24px; height: 24px; }

.process-section { background: var(--bg-soft); }
.process-steps { display: grid; gap: 1.2rem; max-width: 820px; }
.process-step { display: flex; gap: 1.1rem; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.5rem; }
.process-num { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; }
.process-step h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.25rem; }
.process-step p { margin: 0; font-size: 0.96rem; }

.related-section { background: var(--bg-soft); }
.related-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0.9rem; }
.related-list a { display: flex; align-items: center; gap: 0.7rem; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 0.9rem 1.1rem; color: var(--ink); font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; transition: border-color 0.15s ease, transform 0.15s ease; }
.related-list a:hover { border-color: var(--teal); transform: translateY(-2px); color: var(--teal-700); }
.related-icon { width: 24px; height: 24px; color: var(--teal); flex-shrink: 0; }

/* Bottom CTA */
.bottom-cta { background: var(--navy); color: #fff; }
.bottom-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-block: clamp(2.4rem, 5vw, 3.6rem); }
.bottom-cta-text h2 { color: #fff; font-size: clamp(1.4rem, 2.8vw, 2rem); margin-bottom: 0.3rem; }
.bottom-cta-text p { color: rgba(255,255,255,0.85); margin: 0; max-width: 46ch; }
.bottom-cta .btn-primary { background: var(--gold); color: #23303a; }
.bottom-cta .btn-primary:hover { background: var(--gold-600); color: #23303a; }

/* =========================================================================
   Get Involved
   ========================================================================= */
.involve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.involve-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; display: flex; flex-direction: column; }
.involve-card:hover { box-shadow: var(--shadow); }
.involve-icon { width: 62px; height: 62px; border-radius: 18px; background: var(--teal-050); color: var(--teal); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.involve-icon .icon { width: 32px; height: 32px; }
.involve-title { font-size: 1.35rem; color: var(--navy); margin-bottom: 0.7rem; }
.involve-body { color: var(--body); flex: 1; margin-bottom: 1.2rem; }
.involve-body p { font-size: 0.98rem; }
.involve-note { font-size: 0.85rem; color: var(--muted); background: var(--bg-soft); border-radius: 10px; padding: 0.7rem 0.9rem; margin-bottom: 1.2rem; }
.involve-card .btn { align-self: flex-start; margin-top: auto; }

/* =========================================================================
   Contact page
   ========================================================================= */
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: var(--gap); align-items: start; }
.contact-lead { font-size: 1.15rem; color: var(--ink); }
.contact-details { display: grid; gap: 1rem; margin: 1.6rem 0; }
.contact-details li { display: flex; align-items: center; gap: 0.8rem; font-weight: 500; color: var(--ink); }
.contact-detail-icon { width: 26px; height: 26px; color: var(--teal); flex-shrink: 0; }
.contact-detail-text { display: flex; flex-direction: column; line-height: 1.35; }
.contact-detail-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 600; }
.contact-tbd { color: var(--muted); font-style: italic; font-weight: 400; }

.reg-card { margin-top: 1.8rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.reg-name { font-family: var(--font-head); font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.reg-nums { display: flex; flex-wrap: wrap; gap: 0.35rem 1.3rem; color: var(--muted); font-size: 0.88rem; }
.reg-nums li { display: inline-flex; gap: 0.35rem; }
.reg-key { font-family: var(--font-head); font-weight: 700; color: var(--teal-700); }
.contact-social { display: flex; align-items: center; gap: 0.8rem; }
.contact-social span { color: var(--muted); font-size: 0.92rem; }
.contact-social a { width: 40px; height: 40px; border-radius: 50%; background: var(--teal-050); color: var(--teal-700); display: flex; align-items: center; justify-content: center; }
.contact-social a:hover { background: var(--teal); color: #fff; }
.contact-social svg { width: 18px; height: 18px; }

.contact-form { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.4rem); }
.form-row { margin-bottom: 1.1rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: block; }
.form-label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--navy); margin-bottom: 0.4rem; }
.form-label em { color: var(--gold-600); font-style: normal; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(47, 122, 128, 0.15);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-consent { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.9rem; color: var(--body); }
.form-consent input { margin-top: 0.2rem; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--teal); }
.form-consent em { color: var(--gold-600); font-style: normal; }
.form-required-note { font-size: 0.82rem; color: var(--muted); margin: 0.8rem 0 0; }

/* Embedded Infinity Leads form */
.contact-embed-wrap {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(0.8rem, 2vw, 1.4rem);
}
.contact-embed {
  width: 100%;
  min-height: 640px;
  border: none;
  border-radius: 10px;
  background: #fff;
  display: block;
}

/* =========================================================================
   Blog post
   ========================================================================= */
.post-container { max-width: 760px; margin-inline: auto; }
.post-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; color: var(--muted); font-size: 0.88rem; }
.post-lead { font-size: 1.25rem; color: var(--ink); font-weight: 500; margin-bottom: 1.6rem; }
.post-body { font-size: 1.08rem; }
.back-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 2rem; font-family: var(--font-head); font-weight: 600; color: var(--teal-700); }
.back-arrow { width: 1.1em; height: 1.1em; transform: rotate(180deg); }
.back-link:hover { color: var(--teal); }

/* =========================================================================
   Legal pages
   ========================================================================= */
.legal-container { max-width: 820px; margin-inline: auto; }
.legal-notice { background: #fff7e8; border: 1px solid #f0dcae; border-radius: 12px; padding: 1rem 1.3rem; margin-bottom: 1.5rem; color: #6b5218; font-size: 0.95rem; }
.legal-updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; }
.legal-block { margin-bottom: 1.8rem; }
.legal-block h2 { font-size: 1.3rem; color: var(--navy); }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { background: var(--navy); color: rgba(255, 255, 255, 0.75); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  gap: 2.5rem;
  padding-block: clamp(2.6rem, 5vw, 4rem);
}
.footer-logo { width: 120px; height: auto; background: #fff; border-radius: 14px; padding: 8px; margin-bottom: 1rem; }
.footer-tagline { max-width: 30ch; font-size: 0.95rem; }
.footer-heading { color: #fff; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.1rem; }
.footer-links { display: grid; gap: 0.6rem; }
.footer-links a { color: rgba(255, 255, 255, 0.75); font-size: 0.95rem; }
.footer-links a:hover { color: var(--gold); }
.footer-muted { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.footer-langs.is-active a { color: #fff; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.1rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff; display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--teal); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.4rem; font-size: 0.86rem; }
.footer-bottom-inner p { margin: 0; }
.footer-legal { display: flex; gap: 1.4rem; }
.footer-legal a { color: rgba(255,255,255,0.7); }
.footer-legal a:hover { color: var(--gold); }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .service-grid,
  .article-grid,
  .involve-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 1rem clamp(1.1rem, 4vw, 2rem) 1.5rem;
    margin: 0;
    transform: translateY(-120%);
    transition: transform 0.25s ease;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  .nav-open .site-nav { transform: translateY(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0.15rem; }
  .nav-link { padding: 0.85rem 0.6rem; font-size: 1.05rem; justify-content: space-between; }
  .nav-link.is-active::after { display: none; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--line);
    border-radius: 0;
    margin: 0.2rem 0 0.5rem 0.6rem;
    padding: 0;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .intro-grid,
  .narrow-grid,
  .service-detail-grid,
  .mission-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .offer-card { position: static; }
  .article-card-featured { flex-direction: column; }
  .article-card-featured .article-media { min-height: 0; aspect-ratio: 16/10; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
}

@media (max-width: 620px) {
  .service-grid,
  .article-grid,
  .involve-grid,
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-badges { grid-template-columns: 1fr; }
  .trust-badge { white-space: normal; }
  .brand-tagline { display: none; }
  .hero { min-height: 0; padding-block: 1rem; }
  .cta-band-inner,
  .contact-cta-inner,
  .bottom-cta-inner,
  .section-head-split { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { flex: 1; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .hero-video { display: none; }
}
