:root {
  --teal: #08afc0;
  --teal-dark: #078a96;
  --teal-tint: #daf3f5;
  --teal-tint-light: #e6f7f9;
  --indigo: #313087;
  --indigo-tint: #e0e0ed;
  --red: #e5242c;
  --red-dark: #b81e24;
  --red-tint: #fbdedf;
  --coral: #f26f62;
  --coral-tint: #fde9e7;
  --coral-tint-light: #fef3f2;
  --navy: #0d182c;
  --navy-soft: #263349;
  --white: #FFFFFF;
  --black: #000000;
  --border: #e7e8ea;
  --radius: 10px;
  --max-width: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.5;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

button { font: inherit; cursor: pointer; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-marks {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo-lockup {
  height: 48px;
  width: auto;
  flex-shrink: 0;
}

.logo-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .csf {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo-text .csf .plus { color: var(--red); font-size: 18px; }

.logo-text .full-name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--teal);
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--navy);
  white-space: nowrap;
}

.main-nav a:hover { color: var(--teal); }
.main-nav a.is-active { color: var(--teal); }

.nav-dropdown { position: relative; }

.has-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--navy);
  cursor: pointer;
}
.has-dropdown:hover { color: var(--teal); }
.has-dropdown svg { transition: transform 0.15s ease; }
.nav-dropdown.open .has-dropdown svg { transform: rotate(180deg); }
.has-dropdown.is-active { color: var(--teal); }

.dropdown-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 16px;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(13,24,44,0.15);
  padding: 8px;
  z-index: 50;
}
.nav-dropdown.open .dropdown-menu { display: flex; }
.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--teal-tint-light); color: var(--teal-dark); }
.dropdown-menu a.is-active { color: var(--teal-dark); background: var(--teal-tint-light); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
  text-align: center;
}

.btn-donate {
  background: var(--red);
  color: var(--white);
}
.btn-donate:hover { background: var(--red-dark); }

.icon-btn {
  background: none;
  border: none;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { background: var(--white); }
.hero img { width: 100%; height: auto; }

.hero-media { position: relative; }

.hero-hotspot {
  position: absolute;
  left: 75.4%;
  top: 64.9%;
  right: 0;
  bottom: 3.5%;
  border-radius: 6px;
  transition: box-shadow 0.15s ease, background 0.15s ease;
}
.hero-hotspot:hover,
.hero-hotspot:focus-visible {
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.6);
  outline: none;
}


/* ---------- Emergency quiz ---------- */
.quiz-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.quiz-wrap {
  max-width: 720px;
}
.quiz-footnote {
  text-align: center;
  font-size: 13px;
  color: #000;
  margin: 14px 0 0;
}
.quiz-footnote a { color: var(--teal-dark); font-weight: 600; }
.quiz-footnote a:hover { text-decoration: underline; }

.emg-bar {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  border: 2px solid var(--red);
  box-shadow: 0 4px 16px rgba(13,24,44,0.12);
}
.emg-bar .emg-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 20px;
}
.emg-step { margin-bottom: 10px; }
.emg-step .emg-q {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.5;
}
.emg-opts { display: flex; gap: 8px; flex-wrap: wrap; }
.emg-btn {
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  transition: all .15s;
  text-align: left;
  line-height: 1.4;
  font-family: inherit;
  min-height: 44px;
}
.emg-btn:hover { background: var(--teal-tint-light); border-color: var(--teal); }
.emg-btn.sel { border-color: var(--red); background: var(--red-tint); color: var(--red-dark); }

.emg-result { margin-top: 14px; padding: 16px; border-radius: 10px; font-size: 13.5px; line-height: 1.65; }
.emg-result.critical { background: #fdeceb; border: 2px solid #E74C3C; }
.emg-result.urgent { background: #fef6e7; border: 2px solid #F39C12; }
.emg-result.prompt { background: #eafaf1; border: 2px solid #27AE60; }
.emg-result .emg-level {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
  padding: 5px 12px;
  border-radius: 6px;
  letter-spacing: .03em;
  text-transform: uppercase;
  border: 1px solid;
}
.emg-result.critical .emg-level { color: #B3261E; border-color: #E74C3C; background: rgba(231,76,60,0.12); }
.emg-result.urgent .emg-level { color: #9C6500; border-color: #F39C12; background: rgba(243,156,18,0.14); }
.emg-result.prompt .emg-level { color: #1E7B45; border-color: #27AE60; background: rgba(39,174,96,0.14); }
.emg-result .emg-action { font-size: 13.5px; color: var(--navy); margin-bottom: 8px; }
.emg-result .emg-note {
  font-size: 12.5px;
  color: #000;
  border-top: 1px solid var(--border);
  padding-top: 8px;
  margin-top: 8px;
}
.emg-restart {
  margin-top: 12px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--navy);
  font-size: 12.5px;
  cursor: pointer;
  font-family: inherit;
}
.emg-restart:hover { background: rgba(13,24,44,0.05); }

/* ---------- Recognizing the Signs ---------- */
.signs-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.signs-section .eyebrow { color: var(--red); display: block; text-align: center; }
.signs-section .eyebrow::before { background: var(--red); left: 50%; transform: translateX(-50%); }
.signs-section h2 {
  font-size: 30px;
  color: var(--navy);
  margin: 14px 0 14px;
  text-align: center;
}
.signs-intro {
  color: #000;
  max-width: 700px;
  margin: 0 auto 32px;
  text-align: center;
}
.signs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
.signs-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 28px;
}
.signs-card h3 { font-size: 18px; color: var(--navy); margin: 0 0 10px; }
.signs-card h3 .cva-label { font-weight: 400; font-size: 0.7em; color: #000; }
.signs-card h3 .cva-label strong { font-weight: 800; color: var(--red); }
.signs-card > p { font-size: 14px; color: #000; margin: 0 0 14px; }
.signs-card ul { margin: 0; padding-left: 20px; }
.signs-card li { font-size: 14px; color: #000; margin-bottom: 8px; line-height: 1.5; }
.signs-card li:last-child { margin-bottom: 0; }
.signs-note {
  font-size: 14.5px;
  font-style: normal;
  color: #000;
  max-width: 760px;
  margin: 0 auto 20px;
  background: var(--teal-tint-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  line-height: 1.6;
}
.signs-note strong { color: #000; }
sup { font-style: normal; font-size: 0.68em; margin-left: 1px; font-weight: 600; color: #000; }
ol.refs-list {
  list-style: decimal;
  padding-left: 20px;
  margin: 18px auto 20px;
  max-width: 760px;
  font-size: 11px;
  color: #000;
}
ol.refs-list li { font-size: 11px; color: #000; margin-bottom: 5px; line-height: 1.45; }
ol.refs-list a { color: var(--teal-dark); overflow-wrap: anywhere; }
ol.refs-list a:hover { color: var(--teal-dark); text-decoration: underline; }
.signs-cta {
  font-size: 16px;
  font-weight: 600;
  color: var(--red-dark);
  margin: 6px 0 36px;
  text-align: center;
}

@media (max-width: 900px) {
  .signs-grid { grid-template-columns: 1fr; }
}

/* ---------- Home Care & Recovery ---------- */
.homecare-section {
  padding: 0 0 56px;
}
.homecare-section .eyebrow { color: var(--indigo); display: block; text-align: center; }
.homecare-section .eyebrow::before { background: var(--indigo); left: 50%; transform: translateX(-50%); }
.homecare-section h2 {
  font-size: 30px;
  color: var(--navy);
  margin: 14px 0 14px;
  text-align: center;
}
.homecare-intro {
  color: #000;
  max-width: 700px;
  margin: 0 auto 24px;
  text-align: center;
}
.homecare-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--indigo);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 720px;
  margin: 0 auto;
}
.homecare-card ul { margin: 0; padding-left: 20px; }
.homecare-card li { font-size: 14px; color: #000; margin-bottom: 12px; line-height: 1.6; }
.homecare-card li:last-child { margin-bottom: 0; }
.homecare-card li strong { color: var(--navy); }
.homecare-card li > a { color: var(--teal-dark); font-weight: 600; text-decoration: underline; }
.homecare-card li > a:hover { color: var(--teal); }

/* ---------- Working With Your Vet ---------- */
.vet-section {
  padding: 0 0 56px;
}
.vet-section .eyebrow { color: var(--coral); display: block; text-align: center; }
.vet-section .eyebrow::before { background: var(--coral); left: 50%; transform: translateX(-50%); }
.vet-section h2 {
  font-size: 30px;
  color: var(--navy);
  margin: 14px 0 14px;
  text-align: center;
}
.vet-intro {
  color: #000;
  max-width: 700px;
  margin: 0 auto 24px;
  text-align: center;
}
.vet-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--coral);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 720px;
}
.vet-card ul { margin: 0 0 20px; padding-left: 20px; }
.vet-card li { font-size: 14px; color: #000; margin-bottom: 8px; line-height: 1.5; }
.vet-card li:last-child { margin-bottom: 0; }
.vet-tracking {
  font-size: 14px;
  color: #000;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  line-height: 1.6;
}
.vet-tracking strong { color: var(--navy); }

.vet-outlook-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  max-width: none;
}
.vet-outlook-col { min-width: 0; }
.vet-outlook-col h3 {
  font-size: 16px;
  color: var(--navy);
  margin: 0 0 8px;
}
.vet-outlook-col h3 + p {
  font-size: 14px;
  color: #000;
  margin: 0 0 18px;
  line-height: 1.6;
}
.vet-outlook-col .vet-card,
.vet-outlook-col .homecare-card {
  max-width: none;
}
.vet-outlook-col .homecare-card ul { margin: 0; padding-left: 20px; }
.vet-outlook-col .homecare-card li { font-size: 14px; color: #000; margin-bottom: 12px; line-height: 1.6; }
.vet-outlook-col .homecare-card li:last-child { margin-bottom: 0; }
.vet-outlook-col .homecare-card li strong { color: var(--navy); }

/* ---------- Understanding Canine Stroke ---------- */
.understand-section {
  padding: 0 0 56px;
}
.understand-section .eyebrow { display: block; text-align: center; }
.understand-section .eyebrow::before { left: 50%; transform: translateX(-50%); }
.understand-section h2 {
  font-size: 30px;
  color: var(--navy);
  margin: 14px 0 14px;
  text-align: center;
}
.understand-intro {
  color: #000;
  margin: 0 0 24px;
  text-align: center;
}
.understand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  max-width: none;
}
.understand-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 720px;
}
.understand-grid .understand-card { max-width: none; }
.understand-card h3 {
  font-size: 16px;
  color: var(--navy);
  margin: 0 0 8px;
}
.understand-card p { font-size: 14px; color: #000; margin: 0 0 18px; line-height: 1.6; }
.understand-card p:last-child { margin-bottom: 0; }
.understand-card .understand-risk { padding-top: 18px; border-top: 1px solid var(--border); }
.understand-card .understand-risk strong { color: var(--navy); }
.understand-card .understand-lead { padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.understand-card .understand-lead strong { color: var(--navy); }

/* ---------- Coming Soon ---------- */
.coming-soon-section {
  padding: 56px 0;
}
.coming-soon-section .eyebrow { display: block; text-align: center; }
.coming-soon-section .eyebrow::before { left: 50%; transform: translateX(-50%); }
.coming-soon-section h2 {
  font-size: 28px;
  color: var(--navy);
  margin: 14px 0 14px;
  text-align: center;
}
.coming-soon-intro {
  color: #000;
  margin: 0 0 24px;
  text-align: center;
}
.coming-soon-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.coming-soon-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 12px 18px;
  border-radius: 999px;
}

@media (max-width: 700px) {
  .coming-soon-tags { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 440px) {
  .coming-soon-tags { grid-template-columns: 1fr; }
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--teal);
  color: var(--white);
  padding: 22px 0;
}
.cta-banner .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.cta-banner a {
  font-weight: 800;
  font-size: 22px;
}
.cta-banner span.question {
  font-weight: 400;
  font-size: 22px;
}
.cta-banner a:hover { text-decoration: underline; }

/* ---------- Feature cards ---------- */
.features {
  padding: 56px 0;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card-grid.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.card-grid-1 { grid-template-columns: minmax(280px, 400px); justify-content: center; }
.feature-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-icon svg { width: 24px; height: 24px; }

.feature-icon.icon-teal { background: var(--teal-tint); }
.feature-icon.icon-teal svg { stroke: var(--teal); }

.feature-icon.icon-indigo { background: var(--indigo-tint); }
.feature-icon.icon-indigo svg { stroke: var(--indigo); }

.feature-icon.icon-red { background: var(--red-tint); }
.feature-icon.icon-red svg { stroke: var(--red); }

.feature-icon.icon-coral { background: var(--coral-tint); }
.feature-icon.icon-coral svg { stroke: var(--coral); }

.feature-card h2 {
  font-size: 17px;
  margin: 0 0 8px;
}
.feature-card p {
  font-size: 14px;
  color: #000;
  margin: 0 0 14px;
}
.learn-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.learn-more:hover { color: var(--teal); }

/* ---------- Mission ---------- */
.mission {
  padding: 56px 0;
}
.mission-text {
  max-width: 640px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #000;
  position: relative;
  padding-top: 14px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 36px;
  height: 3px;
  background: var(--teal);
}
.mission-text h2 {
  font-size: 34px;
  margin: 14px 0 16px;
  line-height: 1.2;
  color: var(--navy);
}
.mission-text p {
  color: #000;
  margin: 0 0 26px;
  max-width: 44ch;
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
  align-self: flex-start;
}
.btn-dark:hover { background: var(--navy-soft); }

/* ---------- Recovery stories ---------- */
.stories {
  background: var(--coral-tint-light);
  padding: 64px 0;
}
.stories-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 32px;
}
.stories-head .eyebrow { color: var(--red); }
.stories-head .eyebrow::before { background: var(--red); }
.stories-head h2 {
  font-size: 32px;
  color: var(--red-dark);
  margin: 10px 0 8px;
}
.stories-head p {
  color: #000;
  margin: 0;
  max-width: 50ch;
}
.btn-outline-red {
  background: transparent;
  border: 2px solid var(--red);
  color: var(--red);
  white-space: nowrap;
}
.btn-outline-red:hover { background: var(--red); color: var(--white); }

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.story-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(13,24,44,0.1);
}
.story-card img { width: 100%; height: 190px; object-fit: cover; }
.story-card-body { padding: 18px 20px 22px; }
.story-card h3 { margin: 0 0 8px; font-size: 17px; }
.story-card p { margin: 0 0 12px; font-size: 14px; color: #000; }
.story-card a { font-size: 13px; font-weight: 700; color: var(--red); }
.story-card a:hover { text-decoration: underline; }

.story-card-submit {
  border: 2px dashed var(--border);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 28px;
  min-height: 100%;
}
.story-card-submit .submit-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--coral-tint);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.story-card-submit .submit-icon svg { width: 20px; height: 20px; }
.story-card-submit h3 { margin: 0 0 8px; font-size: 17px; }
.story-card-submit p { margin: 0 0 14px; font-size: 14px; color: #000; max-width: 30ch; }

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--teal-tint-light);
  padding: 32px 0;
  position: relative;
  overflow: hidden;
}
.newsletter .wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.newsletter-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.newsletter-icon svg { width: 24px; height: 24px; stroke: var(--white); }
.newsletter-copy { flex: 1; min-width: 220px; }
.newsletter-form input {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  min-width: 240px;
  font-size: 14px;
}
.newsletter-form button {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.newsletter-form button:hover { background: var(--navy-soft); }
.newsletter-watermark {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 160px;
  height: 160px;
  opacity: 0.12;
  pointer-events: none;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 40px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr 0.9fr;
  gap: 32px;
  padding-bottom: 28px;
}
.footer-brand .logo-text .csf { color: var(--white); }
.footer-brand .logo { margin-bottom: 14px; }
.footer-tagline {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.8;
}
.footer-col h2 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 28px; }
.footer-col li { margin-bottom: 10px; break-inside: avoid; }
.footer-col a { font-size: 14px; color: var(--white); }
.footer-col a:hover { color: var(--white); }
.footer-col a.is-active { color: var(--teal); }
.social-row { display: flex; gap: 10px; margin-bottom: 18px; }
.social-row a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { background: var(--teal); }
.social-row svg { width: 16px; height: 16px; color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 14px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--white);
}
.footer-bottom a { color: var(--white); }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom-links { display: flex; gap: 16px; }

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0 22px;
  margin: 0 auto;
  max-width: 760px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--white);
  text-align: center;
}

/* ---------- Overview page ---------- */
.page-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: 38px;
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 20px;
}
.page-hero-subtitle {
  color: var(--teal-dark);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
}
.page-hero-tagline {
  color: #000;
  font-size: 16px;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 24px;
}
.page-hero-cite {
  font-style: italic;
  color: var(--teal-dark);
  font-size: 15px;
  margin: 0;
}

.orgs-section { padding: 56px 0; }
.orgs-intro { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.orgs-intro h2 { font-size: 30px; color: var(--navy); margin: 14px 0 14px; }
.orgs-intro p { color: #000; margin: 0; }
.orgs-intro .eyebrow { display: inline-block; }

.org-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.org-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.org-icon-badge {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 18px;
}
.org-icon-badge img { width: 100%; height: 100%; object-fit: cover; }
.org-card h3 { font-size: 18px; color: var(--navy); margin: 0 0 10px; }
.org-card p { font-size: 14px; color: #000; margin: 0 0 14px; line-height: 1.65; }
.org-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-tint-light);
  border: 1px solid var(--teal-tint);
  padding: 4px 12px;
  border-radius: 999px;
}
.org-link {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.org-link:hover { color: var(--teal); }

.finley-section { padding: 0 0 56px; }
.finley-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.finley-photo-wrap { max-width: 260px; margin: 32px auto 0; border-radius: 14px; overflow: hidden; }
.finley-photo { width: 100%; height: auto; display: block; }
.finley-text { padding: 36px 40px 44px; }
.finley-text h3 { font-size: 22px; color: var(--navy); margin: 0 0 10px; }
.finley-cite { font-style: italic; color: var(--teal-dark); font-size: 15px; margin: 0 0 18px; }
.finley-text p { color: #000; margin: 0 0 14px; line-height: 1.7; }

@media (max-width: 700px) {
  .finley-text { padding: 28px 24px 32px; }
}


.standards-section { padding: 0 0 56px; }
.standards-inner {
  background: var(--coral-tint-light);
  border-radius: 20px;
  padding: 48px 44px;
}
.standards-inner h2 { font-size: 28px; color: var(--navy); margin: 14px 0 14px; }
.standards-inner > p { color: #000; margin: 0; max-width: 640px; }
.standards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 32px;
}
.standard-item h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.standard-item h3 span {
  color: var(--red);
  font-size: 13px;
}
.standard-item p { font-size: 14px; color: #000; margin: 0; line-height: 1.65; }

@media (max-width: 700px) {
  .standards-inner { padding: 32px 24px; }
  .standards-grid { grid-template-columns: 1fr; gap: 20px; }
}

.overview-cta { padding: 0 0 64px; }
.overview-cta-box {
  background: var(--navy);
  border-radius: 20px;
  padding: 56px 40px;
  text-align: center;
}
.overview-cta-box .eyebrow { color: var(--teal); }
.overview-cta-box .eyebrow::before { background: var(--teal); }
.overview-cta-box h2 { font-size: 28px; color: var(--white); margin: 14px 0 14px; }
.overview-cta-box p { color: var(--white); max-width: 520px; margin: 0 auto 28px; }
.overview-cta-label { font-size: 13px; color: var(--white); margin: 24px 0 6px !important; max-width: none !important; }
.overview-cta-email {
  font-size: 18px;
  font-weight: 700;
  color: var(--teal);
  border-bottom: 1px solid rgba(8,175,192,0.4);
  padding-bottom: 3px;
}
.overview-cta-email:hover { color: var(--white); border-color: var(--white); }

@media (max-width: 700px) {
  .overview-cta-box { padding: 40px 24px; }
}

@media (max-width: 900px) {
  .org-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 30px; }
}

/* ---------- Responsive ---------- */
/* Tighten header spacing before the nav needs to collapse at all */
@media (max-width: 900px) {
  .site-header .wrap { gap: 14px; }
  .main-nav { gap: 16px; }
  .site-header .logo-text .full-name { display: none; }
  .btn-donate { padding: 10px 16px; }
}

@media (max-width: 960px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid.card-grid-3, .card-grid.card-grid-2 { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .stories-head { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 22px;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 14px 24px;
    box-shadow: 0 10px 24px rgba(13,24,44,0.15);
  }
  .main-nav.open a { padding: 4px 0; width: auto; }
  .main-nav.open .nav-dropdown { width: auto; }
  .main-nav.open .has-dropdown { padding: 4px 0; width: auto; }
  .main-nav.open .dropdown-menu {
    position: absolute;
    box-shadow: 0 10px 28px rgba(13,24,44,0.15);
    border: 1px solid var(--border);
    margin-top: 10px;
    padding-left: 8px;
  }
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
  }
}

@media (max-width: 560px) {
  .card-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col ul { column-gap: 20px; }
  .cta-banner a, .cta-banner span.question { font-size: 17px; }
}

/* ---------- Team ---------- */
.team-section { padding: 48px 0; border-bottom: 1px solid var(--border); }
.team-section:last-of-type { border-bottom: none; }
.team-intro { max-width: 640px; margin: 0 0 32px; }
.team-intro h2 { font-size: 28px; color: var(--navy); margin: 14px 0 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.member-card {
  border: 1px solid var(--teal);
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
  background: var(--teal-tint);
}
.member-photo-wrap {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 0 auto 14px;
  border-radius: 50%;
}
.member-initials {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
}
.member-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--teal);
  opacity: 0;
  transition: opacity .3s;
}
.member-photo.loaded { opacity: 1; }
.member-name { font-size: 15px; font-weight: 700; color: var(--navy); margin: 0 0 4px; }
.member-creds { font-size: 12px; color: #000; margin: 0 0 6px; line-height: 1.5; }
.member-role { font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--navy); margin: 0; line-height: 1.5; }
.member-bio-note { font-size: 11.5px; color: #000; margin: 4px 0 0; line-height: 1.4; }
.member-also {
  display: inline-block;
  margin-top: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--indigo);
  background: var(--white);
  padding: 3px 10px;
  border-radius: 999px;
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  top: 0;
  left: -9999px;
  z-index: 200;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--teal-dark);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Finley episode timeline */
.episodes-section { padding: 0 0 56px; }
.episodes-inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 40px 40px;
}
.episodes-inner h2 { font-size: 28px; color: var(--navy); margin: 14px 0 10px; }
.episodes-intro { color: #000; margin: 0 0 30px; max-width: 700px; }

.episode-list { margin: 0; padding: 0; list-style: none; }
.episode {
  position: relative;
  padding: 0 0 26px 30px;
  border-left: 2px solid var(--border);
  margin-left: 7px;
}
.episode:last-child { border-left-color: transparent; padding-bottom: 6px; }
.episode::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
}
.episode.is-nearmiss::before {
  background: var(--teal);
  box-shadow: 0 0 0 2px var(--teal);
}
.episode-date {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 4px;
}
.episode.is-nearmiss .episode-date { color: var(--teal-dark); }
.episode h3 { font-size: 17px; color: var(--navy); margin: 0 0 8px; }
.episode p { font-size: 14.5px; color: #000; margin: 0; line-height: 1.65; }
.episode-first {
  font-weight: 700;
  color: var(--navy);
}

.episode-pattern {
  margin: 6px 0 0;
  padding: 22px 24px;
  background: var(--teal-tint-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.episode-pattern h3 { font-size: 17px; color: var(--navy); margin: 0 0 10px; }
.episode-pattern p { font-size: 14.5px; color: #000; margin: 0 0 12px; line-height: 1.65; }
.episode-pattern p:last-child { margin-bottom: 0; }

@media (max-width: 700px) {
  .episodes-inner { padding: 28px 22px 32px; border-radius: 14px; }
  .episodes-inner h2 { font-size: 24px; }
  .episode { padding-left: 24px; }
}

.qol-list {
  margin: 0 0 22px;
  padding: 0 0 0 20px;
  max-width: 760px;
}
.qol-list li {
  font-size: 14.5px;
  color: #000;
  line-height: 1.65;
  margin-bottom: 9px;
}
.qol-list li:last-child { margin-bottom: 0; }
.qol-list strong { color: var(--navy); }

.signs-observed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  max-width: none;
}
.signs-observed {
  max-width: 760px;
  margin: 0 auto 20px;
  background: var(--coral-tint-light);
  border-left: 4px solid var(--coral);
  border-radius: 0 8px 8px 0;
  padding: 20px 22px;
}
.signs-observed-grid .signs-observed { max-width: none; margin: 0; }
.risk-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.risk-action-grid .signs-observed,
.risk-action-grid .signs-action {
  max-width: none;
  margin: 0;
}
.risk-action-grid .risk-list { max-width: none; margin: 0; }
.signs-observed h3 {
  font-size: 16px;
  color: var(--navy);
  margin: 0 0 8px;
}
.signs-observed p {
  font-size: 14.5px;
  color: #000;
  margin: 0 0 12px;
  line-height: 1.6;
}
.signs-observed ul { margin: 0 0 12px; padding-left: 20px; }
.signs-observed li {
  font-size: 14.5px;
  color: #000;
  margin-bottom: 8px;
  line-height: 1.55;
}
.signs-observed li:last-child { margin-bottom: 0; }
.signs-observed p:last-child { margin-bottom: 0; }
.signs-observed-source {
  font-size: 13px;
  color: var(--navy-soft);
}
.signs-observed-source a {
  color: var(--teal-dark);
  font-weight: 700;
}
.signs-observed-source a:hover { text-decoration: underline; }

.finleys-signs-list { margin: 0 0 14px; padding-left: 20px; }
.finleys-signs-list li {
  font-size: 14.5px;
  color: #000;
  margin-bottom: 11px;
  line-height: 1.6;
}
.finleys-signs-list li:last-child { margin-bottom: 0; }
.finleys-signs-list strong { color: var(--navy); }

.signs-action {
  max-width: 760px;
  margin: 0 auto 20px;
  background: var(--teal-tint-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 8px 8px 0;
  padding: 20px 22px;
}
.signs-action h3 { font-size: 16px; color: var(--navy); margin: 0 0 8px; }
.signs-action p { font-size: 14.5px; color: #000; margin: 0 0 12px; line-height: 1.6; }
.signs-action p:last-child { margin-bottom: 0; }
.signs-action ol { margin: 0 0 12px; padding-left: 20px; }
.signs-action > ol > li {
  font-size: 14.5px;
  color: #000;
  margin-bottom: 11px;
  line-height: 1.6;
}
.signs-action > ol > li:last-child { margin-bottom: 0; }
.signs-action strong { color: var(--navy); }
.signs-action-note {
  font-size: 13px;
  color: var(--navy-soft);
  margin: 14px 0 0;
}

.emergency-banner {
  background: var(--red);
  color: var(--white);
  padding: 15px 0;
}
.emergency-banner-inner {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
.emergency-banner svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}
.emergency-banner p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--white);
}
.emergency-banner strong {
  color: var(--white);
  font-weight: 800;
}
@media (max-width: 700px) {
  .emergency-banner p { font-size: 14px; }
}

.contributor-note {
  max-width: 760px;
  margin: 0 0 20px;
  padding: 18px 22px;
  background: var(--indigo-tint);
  border-left: 4px solid var(--indigo);
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  color: #000;
  line-height: 1.6;
}
.contributor-note strong { color: var(--navy); }
.risk-list { margin: 0 auto 22px; padding-left: 20px; max-width: 800px; }
.risk-list > li {
  font-size: 14.5px;
  color: #000;
  line-height: 1.65;
  margin-bottom: 13px;
}
.risk-list > li:last-child { margin-bottom: 0; }
.risk-list strong { color: var(--navy); }


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.signs-subhead {
  font-size: 20px;
  color: var(--navy);
  margin: 34px 0 14px;
  text-align: center;
}

.footer-donations {
  margin: 0 auto;
  max-width: 760px;
  padding: 10px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}

.oa-link {
  color: var(--teal-dark);
  font-weight: 700;
  white-space: nowrap;
}

.section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.section-nav a {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-dark);
}
.section-nav a:hover { text-decoration: underline; }
@media (max-width: 560px) {
  .section-nav { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 900px) {
  .understand-grid { grid-template-columns: 1fr; }
  .signs-observed-grid { grid-template-columns: 1fr; }
  .vet-outlook-grid { grid-template-columns: 1fr; }
  .risk-action-grid { grid-template-columns: 1fr; }
}
