/* ==========================================================================
   Caring Pathways — Prototype stylesheet
   Design direction: editorial warmth. Calm, trustworthy, human.
   ========================================================================== */

/* -------- Fonts: Cormorant Garamond (display) + Open Sans (body) -------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* -------- Design tokens (from the brand palette) -------- */
:root {
  /* Brand palette — from butterfly logo */
  --navy:         #1B3A5B;
  --navy-deep:    #14294A;
  --navy-soft:    #2B4E70;
  --teal:         #2FA19B;
  --teal-soft:    #8CC8DC;
  --lavender:     #8C78B4;
  --lavender-lt:  #B4A0C8;
  --sage:         #B4DCA0;
  --yellow-soft:  #C8C878;

  /* Neutrals */
  --ink:          #1A1A1A;
  --ink-2:        #3A3A3A;
  --mute:         #6B7580;
  --mute-lt:      #9BA5AE;
  --rule:         #E4E9ED;
  --paper:        #FFFFFF;
  --cream:        #FAF7F2;   /* warm off-white — the primary page tint */
  --cream-deep:   #F2ECE0;
  --blue-tint:    #EEF4F8;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Open Sans', system-ui, -apple-system, sans-serif;

  /* Scale */
  --wrap:         1180px;
  --wrap-narrow:  860px;
  --radius:       2px;     /* we keep edges almost-sharp for editorial feel */
  --radius-lg:    6px;

  /* Motion */
  --ease:         cubic-bezier(.2, .6, .2, 1);
}

/* -------- Reset & base -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--navy); }
button { font-family: inherit; cursor: pointer; }

/* -------- Typography -------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 400; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); letter-spacing: 0.02em; }

p { margin: 0 0 1em; color: var(--ink-2); }
.lede {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.45;
  color: var(--navy-soft);
  font-style: italic;
  font-weight: 400;
}

/* Editorial eyebrow — small caps label that precedes headings */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin: 0 0 1rem;
  display: inline-block;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--teal);
  vertical-align: middle;
  margin-right: 14px;
}

/* -------- Layout helpers -------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: var(--wrap-narrow); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-alt { background: var(--paper); }
.section-dark { background: var(--navy); color: #D9E2EA; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .eyebrow { color: var(--teal-soft); }
.section-dark .eyebrow::before { background: var(--teal-soft); }

/* -------- Top bar -------- */
.topbar {
  background: var(--navy-deep);
  color: #B5C4D1;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.topbar a { color: #D8E3EC; }
.topbar a:hover { color: #fff; }
.topbar-contact span + span { margin-left: 22px; }
.topbar-contact .sep { color: #47617A; margin: 0 14px; }

/* -------- Main nav -------- */
.nav {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(250, 247, 242, 0.92);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-logo img { height: 48px; width: auto; max-width: 80px; object-fit: contain; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1;
}
.nav-logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--mute);
  margin-top: 4px;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink-2);
  font-size: 0.93rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 8px 0;
  border-bottom: 1.5px solid transparent;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.nav-links a:hover,
.nav-links a.is-active {
  color: var(--navy);
  border-bottom-color: var(--teal);
}
.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 11px 22px !important;
  border: 1.5px solid var(--navy) !important;
  letter-spacing: 0.04em;
  transition: all .2s var(--ease);
}
.nav-cta:hover {
  background: var(--teal) !important;
  border-color: var(--teal) !important;
  color: #fff !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: transform .3s var(--ease);
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--navy);
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  transition: all .2s var(--ease);
  text-transform: none;
}
.btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: #fff;
}
.btn-light {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn-light:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.btn-arrow::after {
  content: "→";
  display: inline-block;
  transition: transform .2s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* -------- Hero -------- */
.hero {
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -100px; right: -120px;
  width: 520px; height: 520px;
  background: url('butterfly-mark.png') no-repeat center/contain;
  opacity: 0.08;
  z-index: 0;
  transform: rotate(-8deg);
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero h1 {
  font-style: italic;
  font-weight: 300;
}
.hero h1 em {
  font-style: normal;
  color: var(--teal);
  font-weight: 500;
}
.hero-body { max-width: 560px; }
.hero .lede { margin-top: 28px; margin-bottom: 36px; }
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-visual {
  aspect-ratio: 5 / 4;
  background: linear-gradient(135deg, #EEF4F8 0%, #F8E8E8 100%);
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px -30px rgba(27, 58, 91, 0.25);
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-visual .placeholder {
  position: absolute;
  inset: 20px;
  border: 1.5px dashed var(--mute-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  color: var(--mute);
  font-size: 0.85rem;
  font-style: italic;
}
.hero-visual .placeholder strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

/* -------- Promise band -------- */
.promise {
  background: var(--navy);
  color: #fff;
  padding: 70px 0;
  position: relative;
  text-align: center;
}
.promise::before {
  content: "";
  display: block;
  width: 40px; height: 1px;
  background: var(--teal);
  margin: 0 auto 28px;
}
.promise p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
}
.promise .attribution {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-soft);
  font-style: normal;
  margin-top: 28px;
}

/* -------- Two-col feature -------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col.reverse { grid-template-columns: 1fr 1fr; }
.two-col-image {
  aspect-ratio: 5 / 4;
  background: var(--blue-tint);
  border-radius: var(--radius);
  position: relative;
}
.two-col-image .placeholder {
  position: absolute;
  inset: 20px;
  border: 1.5px dashed var(--mute-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  color: var(--mute);
  font-size: 0.85rem;
  font-style: italic;
}
.two-col-image .placeholder strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

/* -------- Service cards -------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--paper);
  padding: 40px 32px 36px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 100%;
  background: var(--teal);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
  box-shadow: 0 18px 40px -20px rgba(27, 58, 91, 0.2);
}
.service-card:hover::before { transform: scaleY(1); }
.service-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--teal);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.service-card h3 {
  margin-bottom: 14px;
  color: var(--navy);
}
.service-card p {
  color: var(--ink-2);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}
.service-card .more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-card .more::after {
  content: "→";
  transition: transform .2s var(--ease);
}
.service-card:hover .more { color: var(--teal); }
.service-card:hover .more::after { transform: translateX(4px); }

/* -------- Phase timeline -------- */
.phases {
  counter-reset: phase;
  display: grid;
  gap: 4px;
  margin-top: 56px;
}
.phase {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  padding: 36px 0;
  border-top: 1px solid var(--rule);
  position: relative;
}
.phase:last-child { border-bottom: 1px solid var(--rule); }
.phase-num {
  counter-increment: phase;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--teal);
  line-height: 1;
}
.phase-num::before { content: "0" counter(phase); }
.phase-title {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
  display: block;
  margin-top: 10px;
}
.phase h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 14px;
}
.phase p { font-size: 1rem; color: var(--ink-2); margin: 0; max-width: 620px; }

/* -------- Stats / proof strip -------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 56px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stat {
  text-align: center;
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: -20px; top: 15%;
  height: 70%;
  width: 1px;
  background: var(--rule);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 10px;
  font-weight: 500;
}

/* -------- Values list -------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 48px;
}
.value {
  background: var(--paper);
  padding: 36px 28px;
}
.value-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--teal);
  font-style: italic;
  margin-bottom: 18px;
  display: block;
}
.value h4 {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 10px;
}
.value p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--ink-2);
}

/* -------- Testimonial card (placeholder) -------- */
.testimonial-placeholder {
  background: var(--cream-deep);
  border: 1.5px dashed var(--mute-lt);
  padding: 48px;
  text-align: center;
  border-radius: var(--radius);
  color: var(--mute);
}
.testimonial-placeholder strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 8px;
}

/* -------- Placeholder flag (repeated pattern) -------- */
.ph-flag {
  display: inline-block;
  background: rgba(201, 150, 40, 0.12);
  color: #8A6410;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 8px;
  border: 1px solid rgba(201, 150, 40, 0.3);
}

/* -------- CTA band -------- */
.cta-band {
  background: var(--cream-deep);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  bottom: -80px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: url('butterfly-mark.png') no-repeat center/contain;
  opacity: 0.07;
}
.cta-band .wrap-narrow { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 20px; }
.cta-band .lede { margin-bottom: 40px; }

/* -------- Footer -------- */
.footer {
  background: var(--navy-deep);
  color: #B5C4D1;
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand img { height: 72px; width: auto; margin-bottom: 18px; opacity: 0.95; }
.footer-brand p {
  font-family: var(--font-display);
  font-style: italic;
  color: #A8B8C6;
  max-width: 320px;
}
.footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer a { color: #B5C4D1; font-size: 0.93rem; }
.footer a:hover { color: var(--teal-soft); }
.footer-contact li {
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: 0.93rem;
}
.footer-bar {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.82rem;
  color: #78899A;
}
.footer-bar a { color: #9AAAB9; }

/* -------- Page headers (non-home pages) -------- */
.page-header {
  padding: 80px 0 60px;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: "";
  position: absolute;
  right: -60px; top: 0;
  width: 280px; height: 280px;
  background: url('butterfly-mark.png') no-repeat center/contain;
  opacity: 0.08;
  pointer-events: none;
}
.page-header .wrap { position: relative; z-index: 1; }
.page-header h1 { font-weight: 400; max-width: 720px; }
.page-header .lede { max-width: 680px; margin-top: 20px; }
.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--mute); }
.breadcrumb span { color: var(--navy); font-weight: 600; }

/* -------- Prose (content pages) -------- */
.prose h2 { margin-top: 2em; }
.prose h3 { margin-top: 1.8em; }
.prose ul, .prose ol { padding-left: 24px; }
.prose li { margin-bottom: 8px; color: var(--ink-2); }
.prose blockquote {
  border-left: 3px solid var(--teal);
  padding: 6px 0 6px 24px;
  margin: 32px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--navy);
}

/* -------- Contact form -------- */
.form {
  display: grid;
  gap: 22px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--rule);
  background: var(--paper);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  border-radius: var(--radius);
  transition: border-color .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-check {
  display: flex;
  align-items: start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--ink-2);
}
.field-check input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }

/* -------- Pricing table -------- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
}
.pricing-table th, .pricing-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
}
.pricing-table th {
  background: var(--blue-tint);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.pricing-table td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--navy);
}
.pricing-table tr.total td {
  border-top: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  font-weight: 700;
  padding-top: 18px;
  padding-bottom: 18px;
}
.pricing-table tr.optional td {
  color: var(--mute);
  font-style: italic;
}

/* -------- Info card -------- */
.info-card {
  background: var(--blue-tint);
  padding: 28px 32px;
  border-left: 3px solid var(--teal);
  border-radius: var(--radius);
  margin: 32px 0;
}
.info-card p:last-child { margin-bottom: 0; }
.info-card strong { color: var(--navy); }

/* -------- Community photo gallery -------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--blue-tint);
  transition: transform .3s var(--ease);
}
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 18px 14px;
  background: linear-gradient(to top, rgba(27,58,91,0.92) 0%, rgba(27,58,91,0.6) 70%, transparent 100%);
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  font-weight: 500;
  line-height: 1.3;
}
@media (max-width: 960px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

/* -------- Activities grid (Community Access) -------- */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 20px 0 32px;
}
.activity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  text-align: center;
  transition: all .2s var(--ease);
}
.activity:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}
.activity svg {
  width: 32px; height: 32px;
  color: var(--teal);
  flex-shrink: 0;
}
.activity span {
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
@media (max-width: 640px) {
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
}

/* -------- Animations -------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero h1, .hero .lede, .hero-ctas {
  animation: fadeUp .8s var(--ease) both;
}
.hero .lede { animation-delay: 0.15s; }
.hero-ctas { animation-delay: 0.3s; }
.hero-visual { animation: fadeUp 1s var(--ease) 0.45s both; }

/* Reveal — disabled in prototype. Content always visible.
   A production build could re-enable the IntersectionObserver pattern if desired. */
.reveal { /* no-op */ }

/* -------- Responsive -------- */
@media (max-width: 960px) {
  .section { padding: 72px 0; }
  .hero { padding: 60px 0 80px; }
  .hero-grid, .two-col { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat + .stat::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .topbar { display: none; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-logo-text { font-size: 1.1rem; }
  .nav-logo-text small { font-size: 0.55rem; }
  .services-grid, .values-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .phase { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
  .phase-num { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
  .section { padding: 56px 0; }
}

/* -------- Utilities -------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: 48px; }
.mb-lg { margin-bottom: 48px; }
.text-mute { color: var(--mute); }
.text-navy { color: var(--navy); }
.text-teal { color: var(--teal); }
