/* ==========================================================================
   Unity Partners — 2026 rebuild
   Design system: "Modern Professional"  ·  brand green #024D38
   Hand-written, no framework. Fonts: Fraunces (display) + Inter (body/UI).
   ========================================================================== */

/* ==========================================================================
   Brand fonts (client-licensed, self-hosted).
   Drop the licensed .woff2 files into /assets/fonts/ to activate them.
   Until then the free fallbacks (Bitter / Mulish / Fraunces, loaded in <head>)
   render automatically — the design was tuned to degrade gracefully.
   See /assets/fonts/README.md for the exact filenames expected.
   ========================================================================== */
@font-face {
  font-family: "Rotis Semi Serif Std";
  src: local("Rotis Semi Serif Std 65 Bold"), local("RotisSemiSerifStd-Bold"),
       url("/assets/fonts/RotisSemiSerifStd-65Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Astoria";
  src: local("Astoria Roman"), local("Astoria-Roman"),
       url("/assets/fonts/Astoria-Roman.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Astoria";
  src: local("Astoria Medium"), local("Astoria-Medium"),
       url("/assets/fonts/Astoria-Medium.woff2") format("woff2");
  font-weight: 500 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Alethia Pro";
  src: local("Alethia Pro"), local("AlethiaPro-Regular"),
       url("/assets/fonts/AlethiaPro-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}

/* ---- Design tokens ---- */
:root {
  /* Brand greens */
  --green-900: #022a1f;
  --green-800: #024d38;   /* primary brand */
  --green-700: #0a5d45;
  --green-600: #127356;
  --green-500: #1a8c69;   /* interactive / hover accent */
  --green-100: #e7f1ec;   /* tint background */
  --green-50:  #f2f7f4;

  /* Logo red accent — used sparingly */
  --red-500: #c8102e;

  /* Neutrals */
  --ink:      #16211c;    /* near-black, slightly green */
  --slate:    #55605b;    /* muted body text */
  --slate-2:  #626c66;    /* captions (AA contrast on white) */
  --line:     #e4eae7;    /* hairlines / borders */
  --line-2:   #eef2f0;
  --paper:    #ffffff;
  --sand:     #f6f9f7;    /* alt section background */

  /* Typography — client brand fonts first, free fallbacks second */
  --font-display: "Rotis Semi Serif Std", "Bitter", Georgia, "Times New Roman", serif;   /* headings */
  --font-sans: "Astoria", "Mulish", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; /* body / UI */
  --font-accent: "Alethia Pro", "Fraunces", Georgia, serif;  /* wordmark, pull-quotes */

  /* Layout */
  --header-h: 92px;
  --container: 1180px;
  --container-narrow: 760px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 8vw, 7rem);

  /* Radii & shadow */
  --radius: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(2, 42, 31, .06), 0 2px 8px rgba(2, 42, 31, .05);
  --shadow-md: 0 10px 30px rgba(2, 42, 31, .10);
  --shadow-lg: 0 24px 60px rgba(2, 42, 31, .14);

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;       /* 17px */
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--green-700); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--green-500); }
ul, ol { padding-left: 1.2em; }
button { font: inherit; cursor: pointer; }

/* ---- Accessibility helpers ---- */
:focus-visible { outline: 3px solid var(--green-500); outline-offset: 2px; border-radius: 4px; }
.visually-hidden {
  position: absolute !important; 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; left: 1rem; top: -3rem; z-index: 1000;
  background: var(--green-800); color: #fff; padding: .6rem 1rem; border-radius: 8px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; color: #fff; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.14; color: var(--ink); letter-spacing: -.005em; }
h1 { font-size: clamp(2.4rem, 1.6rem + 3.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 1.4rem + 2.2vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 1.1rem + 1vw, 1.6rem); }
h4 { font-size: 1.15rem; font-weight: 600; }
p { color: var(--slate); }
strong { color: var(--ink); font-weight: 600; }

.eyebrow {
  font-family: var(--font-sans); font-weight: 600; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--green-600);
  display: inline-flex; align-items: center; gap: .55rem;
}
.eyebrow::before { content: ""; width: 1.6rem; height: 2px; background: var(--green-500); border-radius: 2px; }
.eyebrow--center::before { display: none; }
.lead { font-size: clamp(1.1rem, 1rem + .6vw, 1.3rem); color: var(--slate); line-height: 1.6; }

/* ---- Layout ---- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); }
.section--tint { background: var(--sand); }
.section--green-tint { background: var(--green-50); }
.section--dark { background: var(--green-800); color: #dfeae4; position: relative; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #c4d7cd; }
.section--dark .eyebrow { color: #7fd3ad; }
.section--dark .eyebrow::before { background: #7fd3ad; }
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: 1rem; }
.stack > * + * { margin-top: 1rem; }
.grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-sans); font-weight: 600; font-size: .98rem; line-height: 1;
  padding: .95rem 1.6rem; border-radius: var(--radius-pill); border: 1.5px solid transparent;
  transition: transform .18s var(--ease), background .18s var(--ease), color .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--green-800); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-700); color: #fff; box-shadow: var(--shadow-md); }
.btn--ghost { border-color: var(--green-800); color: var(--green-800); }
.btn--ghost:hover { background: var(--green-800); color: #fff; }
.btn--light { background: #fff; color: var(--green-800); }
.btn--light:hover { background: var(--green-50); color: var(--green-800); }
.btn--ondark { border-color: rgba(255,255,255,.5); color: #fff; }
.btn--ondark:hover { background: #fff; color: var(--green-800); border-color: #fff; }
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.textlink { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: var(--green-700); }
.textlink .arrow { transition: transform .2s var(--ease); }
.textlink:hover .arrow { transform: translateX(3px); }

/* ---- Header / nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 56px; width: auto; }
.primary-nav { display: flex; align-items: center; gap: .35rem; }
.primary-nav > ul { display: flex; align-items: center; gap: .2rem; list-style: none; margin: 0; padding: 0; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: .35rem; padding: .6rem .85rem; border-radius: 10px;
  font-weight: 500; font-size: .96rem; color: var(--ink);
}
.nav-link:hover, .nav-item:hover > .nav-link, .nav-link[aria-current="page"], .nav-item.is-active > .nav-link { color: var(--green-700); background: var(--green-50); }
.nav-link .caret { width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .2s var(--ease); opacity: .7; }
.has-dropdown:hover .caret { transform: rotate(225deg) translateY(-1px); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 250px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-md);
  list-style: none; margin: 0; padding: .5rem; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: .6rem .8rem; border-radius: 9px; color: var(--ink); font-weight: 500; font-size: .94rem; }
.dropdown a:hover { background: var(--green-50); color: var(--green-700); }
.header-cta { display: inline-flex; align-items: center; gap: 1rem; }
.header-phone { font-weight: 600; color: var(--ink); font-size: .95rem; white-space: nowrap; }
.header-phone:hover { color: var(--green-700); }
@media (max-width: 520px) { .header-phone { display: none; } }

/* Mobile nav toggle */
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; background: #fff; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px; background: var(--ink);
  transform: translate(-50%, -50%); transition: transform .2s var(--ease), opacity .2s var(--ease); border-radius: 2px;
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after { transform: translate(-50%, 7px); }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translate(-50%, 0) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translate(-50%, 0) rotate(-45deg); }

@media (max-width: 1000px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: fixed; inset: var(--header-h) 0 0 0; background: #fff; flex-direction: column; align-items: stretch;
    padding: 1.25rem var(--gutter) 3rem; gap: 0; overflow-y: auto;
    transform: translateX(100%); transition: transform .28s var(--ease); border-top: 1px solid var(--line);
  }
  body.nav-open .primary-nav { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  .primary-nav > ul { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav-link { padding: .95rem .5rem; font-size: 1.1rem; border-radius: 10px; justify-content: space-between; }
  .nav-item { border-bottom: 1px solid var(--line-2); }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0;
    padding: 0 0 .6rem 1rem; min-width: 0; display: none;
  }
  .nav-item.open .dropdown { display: block; }
  .has-dropdown:hover .dropdown { transform: none; }
  .caret { pointer-events: none; }
  .header-cta .btn { display: none; }
}

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--green-50) 0%, #fff 78%); }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; padding-block: clamp(3rem, 7vw, 6rem); }
.hero-logo { height: clamp(64px, 8vw, 92px); width: auto; margin-bottom: 1.5rem; }
.hero h1 { margin-top: 1rem; }
.hero .lead { margin-top: 1.4rem; max-width: 42ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.hero-badge {
  position: absolute; left: -1.5rem; bottom: 1.75rem; background: #fff; border-radius: 16px; padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .85rem; max-width: 260px;
}
.hero-badge img { height: 44px; width: auto; aspect-ratio: auto; object-fit: contain; border-radius: 0; box-shadow: none; }
.hero-badge span { font-size: .82rem; color: var(--slate); line-height: 1.4; }
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-media { order: -1; max-width: 460px; }
  .hero-media img { aspect-ratio: 16 / 11; }
  .hero-badge { left: 0.75rem; }
}

/* ---- Page hero (interior banner) ---- */
.page-hero { background: var(--green-50); border-bottom: 1px solid var(--line); }
.page-hero .container { padding-block: clamp(2.5rem, 5vw, 4.25rem); }
.page-hero h1 { margin-top: .85rem; max-width: 20ch; }
.page-hero .lead { margin-top: 1rem; max-width: 60ch; }
.breadcrumb { font-size: .85rem; color: var(--slate-2); display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.breadcrumb a { color: var(--slate); font-weight: 500; }
.breadcrumb a:hover { color: var(--green-700); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb [aria-current] { color: var(--ink); }

/* ---- Cards ---- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.75rem;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  display: flex; flex-direction: column; height: 100%;
}
.card--link:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .98rem; }
.card .textlink { margin-top: auto; padding-top: 1rem; }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--green-100); color: var(--green-700);
  display: grid; place-items: center; margin-bottom: 1.15rem;
}
.card-icon svg { width: 26px; height: 26px; }
.card--media { padding: 0; overflow: hidden; }
.card--media img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.card--media .card-body { padding: 1.5rem 1.75rem 1.75rem; display: flex; flex-direction: column; flex: 1; }

/* Feature list (icon + text rows) */
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature .card-icon { flex: none; margin-bottom: 0; width: 46px; height: 46px; }
.feature h3 { font-size: 1.2rem; }
.feature p { margin-top: .35rem; font-size: .98rem; }

/* Split media + text */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; }
.split-media--plain img { box-shadow: none; border: 1px solid var(--line); background: #fff; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--reverse .split-media { order: 0; } }

/* Numbered steps */
.steps { display: grid; gap: 1.5rem; counter-reset: step; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; align-items: start; }
.step-num {
  counter-increment: step; width: 48px; height: 48px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-family: var(--font-display); font-size: 1.2rem;
  background: var(--green-800); color: #fff;
}
.step-num::before { content: counter(step, decimal-leading-zero); }

/* Stats */
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.4rem); color: var(--green-700); line-height: 1; }
.stat .label { margin-top: .5rem; font-size: .92rem; color: var(--slate); }

/* ---- Testimonials ---- */
.testimonial {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem;
  display: flex; flex-direction: column; height: 100%;
}
.testimonial .quote-mark { font-family: var(--font-accent); font-size: 3.4rem; line-height: .6; color: var(--green-500); height: 1.5rem; }
.testimonial blockquote { font-size: 1.05rem; color: var(--ink); line-height: 1.6; margin: 1rem 0 1.5rem; text-align: justify; hyphens: auto; }
.testimonial blockquote p, .pullquote blockquote p { color: inherit; font: inherit; margin: 0 0 .8em; }
.testimonial blockquote p:last-child, .pullquote blockquote p:last-child { margin-bottom: 0; }
.testimonial cite { margin-top: auto; font-style: normal; }
.testimonial cite b { display: block; color: var(--ink); font-weight: 600; }
.testimonial cite span { font-size: .88rem; color: var(--slate); }

/* ---- Team ---- */
.person { display: grid; grid-template-columns: 220px 1fr; gap: clamp(1.5rem, 4vw, 2.5rem); align-items: start; }
.person-photo { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.person-role { color: var(--green-700); font-weight: 600; margin-bottom: 1rem; }
@media (max-width: 640px) { .person { grid-template-columns: 1fr; } .person-photo { max-width: 240px; } }

/* ---- CTA band ---- */
.cta-band { background: var(--green-800); color: #fff; border-radius: var(--radius-lg); padding: clamp(2.25rem, 5vw, 3.75rem); text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #c4d7cd; max-width: 52ch; margin: 1rem auto 0; }
.cta-band .hero-actions { justify-content: center; }

/* ---- Prose (content + legal pages) ---- */
.prose { max-width: var(--container-narrow); }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 { margin-top: 2.5rem; font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem); }
.prose h3 { margin-top: 1.75rem; }
.prose p, .prose li { color: var(--slate); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: .4rem; }
.prose a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--green-100); }
.prose a:hover { text-decoration-color: var(--green-500); }
.prose img { border-radius: var(--radius); margin-block: 1.5rem; box-shadow: var(--shadow-sm); }
.prose blockquote { border-left: 3px solid var(--green-500); padding-left: 1.25rem; color: var(--ink); font-style: italic; }
.prose strong { color: var(--ink); }
.prose .muted { color: var(--slate-2); font-size: .9rem; }

/* Contact layout */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem 0; border-bottom: 1px solid var(--line-2); }
.contact-detail:last-child { border-bottom: 0; }
.contact-detail .card-icon { margin-bottom: 0; flex: none; }
.contact-detail b { display: block; }
.contact-detail a { color: var(--green-700); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-embed iframe { display: block; width: 100%; height: 100%; min-height: 420px; border: 0; }

/* ---- Footer ---- */
.site-footer { background: var(--green-900); color: #b9cdc3; padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand .wordmark { font-family: var(--font-accent); font-size: 1.6rem; color: #fff; font-weight: 400; letter-spacing: .01em; }
.footer-brand .wordmark .dot { color: var(--red-500); }
.footer-brand p { color: #9fb8ad; margin-top: .9rem; font-size: .95rem; max-width: 34ch; }
.footer-col h4 { color: #fff; font-family: var(--font-sans); font-weight: 600; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li + li { margin-top: .6rem; }
.footer-col a { color: #b9cdc3; font-size: .96rem; }
.footer-col a:hover { color: #fff; }
.footer-contact-item { color: #b9cdc3; font-size: .96rem; margin-bottom: .6rem; }
.footer-contact-item a { color: #fff; font-weight: 500; }
.footer-cfp { margin-top: 1.25rem; }
.footer-cfp img { height: 56px; width: auto; background: #fff; border-radius: 8px; padding: 6px 8px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; align-items: baseline; padding-block: 1.75rem; }
.footer-bottom p { color: #8aa89b; font-size: .82rem; max-width: 78ch; }
.footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: 1rem; list-style: none; margin: 0; padding: 0; }
.footer-bottom .legal-links a { color: #b9cdc3; font-size: .82rem; }
.footer-bottom .legal-links a:hover { color: #fff; }
.footer-disclaimer { color: #7f9d90 !important; font-size: .78rem !important; line-height: 1.6; padding-bottom: 2rem; max-width: 100%; }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }

/* Tick list (feature bullets) */
.ticklist { list-style: none; padding: 0; display: grid; gap: .8rem; margin-top: 1.5rem; }
.ticklist li { display: flex; gap: .75rem; align-items: flex-start; color: var(--slate); }
.ticklist li::before {
  content: "\2713"; flex: none; width: 24px; height: 24px; margin-top: 1px; border-radius: 50%;
  background: var(--green-100); color: var(--green-700); display: grid; place-items: center;
  font-size: .78rem; font-weight: 700;
}
.ticklist--ondark li { color: #c4d7cd; }
.ticklist--ondark li::before { background: rgba(255,255,255,.14); color: #7fd3ad; }

/* Big centred pull-quote (dark section) */
.pullquote { max-width: 62ch; margin-inline: auto; text-align: center; }
.pullquote blockquote { font-family: var(--font-accent); font-size: clamp(1.3rem, 1rem + 1.6vw, 1.9rem); line-height: 1.4; color: #fff; margin: .5rem 0 1.5rem; text-align: justify; hyphens: auto; }
.pullquote cite { font-style: normal; color: #c4d7cd; font-size: .95rem; }
.pullquote cite b { color: #fff; }
.section--dark .textlink { color: #7fd3ad; }
.section--dark .textlink:hover { color: #fff; }
.section--dark .quote-mark { color: #7fd3ad; }
.section--dark a:not(.btn) { color: #7fd3ad; }
.section--dark a:not(.btn):hover { color: #fff; }

/* Section intro flourish spacing */
.hero-copy .eyebrow, .split-copy .eyebrow, .page-hero .eyebrow { margin-bottom: .25rem; }
.split-copy h2, .hero-copy h1 { margin-top: .6rem; }
.split-copy p { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 2.5rem; }

/* ---- Utilities ---- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.divider { height: 1px; background: var(--line); border: 0; margin-block: var(--section-y); }
.pill { display: inline-flex; align-items: center; gap: .4rem; background: var(--green-100); color: var(--green-700); font-weight: 600; font-size: .82rem; padding: .4rem .85rem; border-radius: var(--radius-pill); }
.logo-strip { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }

/* Testimonial carousel */
.carousel { position: relative; max-width: 820px; margin-inline: auto; outline: none; }
.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; transition: transform .5s var(--ease); list-style: none; margin: 0; padding: 0; }
.carousel-slide { flex: 0 0 100%; min-width: 100%; padding: 0 .5rem; display: flex; align-items: center; justify-content: center; }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 1.1rem; margin-top: 1.75rem; }
.carousel-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.32); background: transparent; color: #fff; font-size: 1.5rem; line-height: 1; display: grid; place-items: center; transition: background .18s var(--ease), border-color .18s var(--ease); }
.carousel-btn:hover { background: rgba(255,255,255,.14); border-color: #fff; }
.carousel-dots { display: flex; gap: .55rem; }
.carousel-dot { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; background: rgba(255,255,255,.32); cursor: pointer; transition: background .18s var(--ease), transform .18s var(--ease); }
.carousel-dot[aria-current="true"] { background: #7fd3ad; transform: scale(1.3); }
.carousel:focus-visible { outline: 3px solid #7fd3ad; outline-offset: 8px; border-radius: 8px; }

/* Long-token wrapping safety (emails etc.) */
.footer-contact-item a, .contact-detail a, .prose a, .email-link { overflow-wrap: anywhere; }

/* Responsive video grid (16:9) */
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 1.25rem; }
@media (max-width: 620px) { .video-grid { grid-template-columns: 1fr; } }
.video-embed { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: #000; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Click-to-reveal email (anti-harvesting) */
.email-reveal { display: inline-flex; align-items: center; }
.reveal-btn { font: inherit; font-weight: 600; color: var(--green-700); background: var(--green-50); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: .4rem .95rem; cursor: pointer; display: inline-flex; align-items: center; gap: .45rem; transition: background .18s var(--ease), color .18s var(--ease); }
.reveal-btn::before { content: "\2709"; font-size: .95em; }
.reveal-btn:hover { background: var(--green-100); color: var(--green-800); }
.email-link { font-weight: 600; color: var(--green-700); }
