/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand palette */
  --brand-blue: #245EEF;
  --brand-green-deep: #00854F;
  --brand-green-bright: #00BE80;
  --ink: #464555;
  --muted: #ABA9BB;
  --surface: #FFFFFF;
  --surface-tint: #F6F7FB;

  /* Typography */
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Layout */
  --container-max: 1200px;
  --container-px: clamp(1.25rem, 5vw, 2.5rem);
  --section-py: clamp(4rem, 8vw, 7rem);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-card: 0 2px 8px rgba(36, 94, 239, 0.07), 0 1px 3px rgba(70, 69, 85, 0.05);
  --shadow-card-hover: 0 8px 28px rgba(36, 94, 239, 0.13), 0 2px 8px rgba(70, 69, 85, 0.08);

  /* Transitions */
  --ease: 200ms ease;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

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

ul, ol { list-style: none; }

a {
  color: var(--brand-blue);
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
a:hover { color: var(--brand-green-deep); }

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: var(--brand-blue);
  color: white;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
  transition: top var(--ease);
}
.skip-link:focus { top: 0; }

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  color: var(--ink);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: 1.125rem; font-weight: 600; }

p + p { margin-top: 1em; }

.section-lead {
  font-size: clamp(1rem, 1.5vw, 1.175rem);
  color: #5c5b6e;
  max-width: 62ch;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section { padding: var(--section-py) 0; }
.section-tint { background: var(--surface-tint); }

.section-intro {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.section-intro h2 { margin-bottom: 0.75rem; }
.section-intro .section-lead { margin: 0 auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), color var(--ease), box-shadow var(--ease);
}

.btn-primary {
  background: var(--brand-blue);
  color: white;
  border-color: var(--brand-blue);
}
.btn-primary:hover {
  background: #1a4fd4;
  border-color: #1a4fd4;
  color: white;
  box-shadow: 0 4px 16px rgba(36, 94, 239, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}
.btn-secondary:hover {
  background: var(--brand-blue);
  color: white;
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1.0625rem; }

.btn:disabled { opacity: 0.65; cursor: not-allowed; }

/* ============================================================
   SITE HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--surface);
  border-bottom: 1px solid rgba(171, 169, 187, 0.2);
  box-shadow: 0 1px 4px rgba(70, 69, 85, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img { height: 40px; width: auto; }

/* Desktop nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.primary-nav > ul {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.primary-nav > ul a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color var(--ease);
}
.primary-nav > ul a:hover { color: var(--brand-blue); }

/* Mobile toggle button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transform-origin: center;
  transition: transform var(--ease), opacity var(--ease);
}
.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); }

/* ============================================================
   HERO
   ============================================================ */
.section-hero {
  padding-top: clamp(3rem, 7vw, 6rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.hero-content h1 { margin-bottom: 1.25rem; }

.hero-subhead {
  font-size: clamp(1.0625rem, 1.5vw, 1.175rem);
  color: #5c5b6e;
  max-width: 52ch;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.hero-visual img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
}

.about-photo {
  border-radius: var(--radius-lg);
  width: clamp(200px, 28vw, 320px);
  aspect-ratio: 5 / 6;
  object-fit: cover;
}

.about-content h2 { margin-bottom: 1rem; }

.pull-quote {
  border-left: 4px solid var(--brand-green-bright);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  background: rgba(0, 190, 128, 0.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.175rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 0.625rem;
}
.pull-quote cite {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid rgba(171, 169, 187, 0.2);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--ease), transform var(--ease);
}
.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(36, 94, 239, 0.09), rgba(0, 190, 128, 0.09));
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  color: var(--brand-blue);
}

.card h3 { margin-bottom: 0.5rem; }

.card p { font-size: 0.9375rem; color: #5c5b6e; line-height: 1.65; }

/* Callout */
.callout {
  background: linear-gradient(135deg, var(--brand-blue) 0%, #3b6ff5 100%);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  color: white;
}
.callout-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.callout-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 1rem;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.callout p {
  font-size: 0.9375rem;
  line-height: 1.65;
  opacity: 0.95;
}
.callout strong { color: var(--brand-green-bright); }

/* ============================================================
   MISSION
   ============================================================ */
.mission-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.mission-content { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.mission-content h2 { margin-bottom: 1.25rem; }
.mission-lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
  max-width: 68ch;
  margin: 0 auto;
  color: #5c5b6e;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding: 1.5rem 1rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.stat-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-blue);
  line-height: 1.2;
}
.stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid rgba(171, 169, 187, 0.2);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}
.testimonial-card blockquote { margin: 0 0 1.25rem; }
.testimonial-card blockquote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--brand-green-bright);
  line-height: 0;
  display: block;
  margin-bottom: 0.75rem;
  position: relative;
  top: 0.5rem;
}
.testimonial-card blockquote p {
  font-size: 0.9375rem;
  font-style: italic;
  line-height: 1.7;
  color: #5c5b6e;
}
.testimonial-card figcaption { display: flex; flex-direction: column; gap: 0.2rem; }
.testimonial-card figcaption strong { font-size: 0.9375rem; }
.testimonial-card figcaption span { font-size: 0.8125rem; color: var(--muted); }

.placeholder-notice {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #c0392b;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.contact-intro h2 { margin-bottom: 1rem; }
.contact-intro > p { color: #5c5b6e; margin-bottom: 2rem; }

.contact-alt {
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid rgba(171, 169, 187, 0.25);
}
.contact-alt p { font-size: 0.9375rem; line-height: 1.55; }
.contact-alt a { font-weight: 600; display: inline-block; margin-top: 0.25rem; }

.contact-form-wrap {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(171, 169, 187, 0.15);
}

#form-status { margin-bottom: 1.5rem; }

.form-success {
  padding: 1.125rem 1.5rem;
  background: rgba(0, 133, 79, 0.07);
  border: 1px solid rgba(0, 133, 79, 0.2);
  border-radius: var(--radius-md);
  color: var(--brand-green-deep);
  font-weight: 500;
  font-size: 0.9375rem;
}
.form-error-msg {
  padding: 1.125rem 1.5rem;
  background: rgba(192, 57, 43, 0.05);
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-radius: var(--radius-md);
  color: #c0392b;
  font-weight: 500;
  font-size: 0.9375rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}

label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
}
.required { color: var(--brand-blue); }

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(171, 169, 187, 0.5);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface);
  transition: border-color var(--ease), box-shadow var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(36, 94, 239, 0.11);
}
.field-group input[aria-invalid="true"],
.field-group select[aria-invalid="true"],
.field-group textarea[aria-invalid="true"] {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.08);
}
.field-group input::placeholder,
.field-group textarea::placeholder { color: var(--muted); }

.field-group select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23ABA9BB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.field-group textarea { resize: vertical; min-height: 120px; }

.field-error {
  font-size: 0.8125rem;
  color: #e74c3c;
  font-weight: 500;
  min-height: 1.1em;
}

.field-group--checkbox {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.125rem;
  flex-shrink: 0;
  accent-color: var(--brand-blue);
  cursor: pointer;
}
.field-group--checkbox .field-error { width: 100%; margin-top: 0.25rem; }

.cf-turnstile { margin-bottom: 1.5rem; }

#contact-form .btn-lg { width: 100%; margin-top: 0.25rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.8);
  padding-top: clamp(3rem, 6vw, 5rem);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr auto;
  gap: 3rem;
  align-items: start;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.875rem;
  opacity: 0.65;
  line-height: 1.65;
  max-width: 28ch;
}

.footer-nav { display: flex; gap: 3rem; }
.footer-nav ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color var(--ease);
}
.footer-nav a:hover { color: var(--brand-green-bright); }

.footer-contact a {
  color: var(--brand-green-bright);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: opacity var(--ease);
}
.footer-contact a:hover { opacity: 0.8; }

.footer-bottom {
  padding: 1.25rem 0;
}
.footer-bottom p {
  font-size: 0.8125rem;
  opacity: 0.45;
}

/* ============================================================
   SCROLL ANIMATIONS
   Progressive enhancement: only hide elements when JS has run.
   Without the js-ready class (no JS), everything renders visible.
   ============================================================ */
.js-ready [data-animate] {
  opacity: 0;
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.js-ready [data-animate="fade-up"] { transform: translateY(22px); }
.js-ready [data-animate="fade-in"] { transform: scale(0.98); }
.js-ready [data-animate].is-visible { opacity: 1; transform: none; }

/* Stagger siblings */
.js-ready [data-animate]:nth-child(2) { transition-delay: 0.08s; }
.js-ready [data-animate]:nth-child(3) { transition-delay: 0.16s; }
.js-ready [data-animate]:nth-child(4) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .js-ready [data-animate] { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .card { transition: none; }
}

/* ============================================================
   RESPONSIVE — 900 px
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }

  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-photo {
    width: clamp(180px, 50%, 260px);
    margin: 0 auto;
  }
  .pull-quote { text-align: left; }

  .contact-inner { grid-template-columns: 1fr; }

  .stats-row { grid-template-columns: 1fr 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-contact { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — 768 px (mobile nav breakpoint)
   ============================================================ */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .primary-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem var(--container-px) 1.25rem;
    border-top: 1px solid rgba(171, 169, 187, 0.15);
    background: var(--surface);
  }
  .primary-nav.is-open { display: flex; }

  .primary-nav > ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .primary-nav > ul li {
    width: 100%;
    border-bottom: 1px solid rgba(171, 169, 187, 0.12);
  }
  .primary-nav > ul a {
    display: block;
    padding: 0.875rem 0;
    font-size: 1rem;
  }
  .primary-nav .btn {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }

  /* The header-inner needs to wrap when nav is open */
  .header-inner { flex-wrap: wrap; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }

  .field-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-nav { flex-direction: column; gap: 1.25rem; }
  .footer-contact { grid-column: auto; }

  .callout-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   RESPONSIVE — 480 px
   ============================================================ */
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LEGAL / CONTENT PAGES (privacy, terms)
   ============================================================ */
.page-hero {
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  background: var(--surface-tint);
  border-bottom: 1px solid rgba(171, 169, 187, 0.2);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}
.page-hero .page-updated {
  color: var(--muted);
  font-size: 0.9375rem;
}

.prose {
  max-width: 72ch;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.prose > *:first-child { margin-top: 0; }
.prose h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  margin: 2.25rem 0 0.75rem;
}
.prose h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
}
.prose p,
.prose li {
  color: #4a4958;
  line-height: 1.75;
}
.prose p { margin-bottom: 1rem; }
.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.prose li { margin-bottom: 0.4rem; }
.prose a { font-weight: 500; }
.prose strong { color: var(--ink); }

.legal-disclaimer {
  background: rgba(36, 94, 239, 0.05);
  border: 1px solid rgba(36, 94, 239, 0.18);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #4a4958;
}
.legal-disclaimer strong { color: var(--brand-blue); }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 2rem;
  font-weight: 600;
  text-decoration: none;
}
.back-link:hover { gap: 0.6rem; transition: gap var(--ease); }
