/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --orange:       #C4510F;
  --orange-hover: #A3420C;
  --orange-light: #FEF0E6;
  --orange-mid:   #F9C7A0;
  --teal:         #145948;
  --teal-hover:   #0D3D30;
  --teal-light:   #E4F4EF;
  --charcoal:     #1C1C1B;
  --warm-white:   #FAF8F5;
  --off-white:    #F4F1ED;
  --grey:         #5A5750;
  --border:       #D8D4CD;
  --focus:        #005FCC;
  --serif: 'Fraunces', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;

  /* Responsive spacing tokens */
  --pad-h: 1.25rem;
  --pad-v: 3rem;
}

@media (min-width: 768px) {
  :root {
    --pad-h: 2rem;
    --pad-v: 4rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --pad-h: 3rem;
    --pad-v: 5rem;
  }
}


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

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

html {
  background: var(--off-white);
}

body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 1440px;
  margin-inline: auto;
  box-shadow: 0 0 0 1px var(--border);
}

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

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


/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--charcoal);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: .875rem;
  text-decoration: none;
  transition: top .15s;
}
.skip-link:focus { top: 0; }

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

.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;
}


/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.s-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .6875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: .875rem;
}
.s-label::before {
  content: '';
  display: block;
  width: 1.375rem;
  height: 1.5px;
  background: var(--orange);
  flex-shrink: 0;
}
.s-label.inv { color: rgba(255,255,255,.5); }
.s-label.inv::before { background: rgba(255,255,255,.3); }

.s-h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 1rem;
}
.s-h2 em { font-style: italic; color: var(--teal); }
.s-h2.inv { color: #fff; }
.s-h2.inv em { color: #A8D9CB; }

.s-body {
  font-size: 1.0625rem;
  color: var(--grey);
  line-height: 1.68;
  max-width: 35rem;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .9375rem;
  border-radius: 50px;
  padding: .875rem 1.75rem;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s, border-color .15s;
  letter-spacing: .01em;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.btn svg {
  width: 1rem;
  height: 1rem;
  transition: transform .2s;
  flex-shrink: 0;
}
.btn:hover svg { transform: translateX(3px); }

.btn-primary   { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-hover); border-color: var(--orange-hover); }

.btn-ghost     { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-white     { background: #fff; color: var(--charcoal); border-color: #fff; }
.btn-white:hover { background: var(--off-white); }

.btn-outline-dark { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-outline-dark:hover { background: var(--charcoal); color: #fff; }

.btn-outline-orange { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline-orange:hover { background: var(--orange); color: #fff; }

.btn-teal { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-teal:hover { background: var(--teal-hover); border-color: var(--teal-hover); }

.btn-sm { font-size: .8125rem; padding: .5625rem 1.25rem; }
.btn-full { width: 100%; justify-content: center; }


/* ============================================================
   ANNOUNCEMENT BANNER
   ============================================================ */
.banner {
  background: var(--orange);
  padding: .625rem var(--pad-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.banner p {
  font-size: .8125rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
.banner a {
  font-size: .75rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,.25);
  padding: .25rem .875rem;
  border-radius: 40px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.4);
  white-space: nowrap;
}
.banner a:hover { background: rgba(255,255,255,.4); }


/* ============================================================
   HEADER & NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250,248,245,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-h);
  height: 4rem;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 1;
}
.nav-logo img {
  height: 2.5rem;
  width: auto;
}

/* Hamburger toggle button — visible on mobile only */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  color: var(--charcoal);
  transition: background .15s, border-color .15s;
  flex-shrink: 0;
  z-index: 1;
}
.nav-toggle:hover {
  background: var(--orange-light);
  border-color: var(--orange-mid);
}
.nav-toggle svg { width: 1.25rem; height: 1.25rem; }

/* Mobile nav drawer — hidden by default */
.nav-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem var(--pad-h) 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  flex-direction: column;
  gap: 0;
}
.nav-menu.is-open {
  display: flex;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.nav-list a {
  display: block;
  padding: .6875rem .5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.nav-list a:hover {
  background: var(--orange-light);
  color: var(--orange);
}

.nav-actions {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  padding: .25rem .5rem;
}
.nav-phone svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.nav-phone:hover { color: var(--teal-hover); text-decoration: underline; }

.nav-btns {
  display: flex;
  gap: .625rem;
}
.nav-btns .btn { flex: 1; justify-content: center; }

/* Desktop nav — overrides mobile styles */
@media (min-width: 1024px) {
  .site-nav { height: 4.5rem; }
  .nav-logo img { height: 3rem; }

  .nav-toggle { display: none; }

  .nav-menu {
    display: flex !important;
    position: static;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    flex-direction: row;
    align-items: center;
    flex: 1;
    margin-left: 1.5rem;
    gap: 0;
  }

  .nav-list {
    flex-direction: row;
    flex: 1;
    gap: .125rem;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
  .nav-list a {
    font-size: .875rem;
    padding: .4375rem .8125rem;
    color: var(--grey);
    white-space: nowrap;
  }
  .nav-list a:hover { color: var(--charcoal); }

  .nav-actions {
    flex-direction: row;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
  }
  .nav-phone {
    font-size: .875rem;
    padding: 0;
    white-space: nowrap;
  }
  .nav-btns {
    gap: .75rem;
  }
  .nav-btns .btn { flex: none; }
}


/* ============================================================
   HERO
   ============================================================ */
.hero-s {
  display: flex;
  flex-direction: column;
}

.hero-content {
  background: var(--charcoal);
  padding: 3.5rem var(--pad-h) 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-content::after {
  content: '';
  position: absolute;
  bottom: -6rem;
  left: -4rem;
  width: 18rem;
  height: 18rem;
  background: var(--orange);
  border-radius: 50%;
  opacity: .07;
  pointer-events: none;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-mid);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 1.75rem;
  height: 1.5px;
  background: var(--orange-mid);
  flex-shrink: 0;
}

.hero-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.06;
  margin-bottom: 1.25rem;
}
.hero-heading em { font-style: italic; color: var(--orange-mid); }

.hero-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.72);
  line-height: 1.68;
  max-width: 26rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: .875rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
  list-style: none;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
}
.hero-trust svg {
  color: var(--orange-mid);
  width: .875rem;
  height: .875rem;
  flex-shrink: 0;
}

.hero-image {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,28,27,.3) 0%, transparent 55%);
  pointer-events: none;
}

/* Hero quote hidden on mobile — too small to read */
.hero-quote { display: none; }

@media (min-width: 768px) {
  .hero-image { min-height: 360px; }
}

@media (min-width: 1024px) {
  .hero-s {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 38.75rem;
  }
  .hero-content {
    padding: 5.625rem 3.5rem 5rem 3rem;
  }
  .hero-image {
    min-height: 0;
  }
  .hero-quote {
    display: block;
    position: absolute;
    bottom: 2rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(28,28,27,.84);
    backdrop-filter: blur(8px);
    border-left: 3px solid var(--orange-mid);
    padding: 1.25rem 1.375rem;
    border-radius: 0 .75rem .75rem 0;
    max-width: 21.25rem;
  }
  .hero-quote blockquote {
    font-family: var(--serif);
    font-size: .9375rem;
    font-style: italic;
    color: #fff;
    line-height: 1.5;
    margin-bottom: .5rem;
  }
  .hero-quote figcaption {
    font-size: .75rem;
    color: rgba(255,255,255,.6);
  }
}


/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.trust-bar::-webkit-scrollbar { display: none; }

.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  color: var(--grey);
  padding: .9375rem 1.25rem;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
  white-space: nowrap;
}
.trust-item:last-child { border-right: none; }
.trust-item svg { color: var(--teal); width: 1rem; height: 1rem; flex-shrink: 0; }
.trust-item strong { color: var(--charcoal); font-weight: 600; }

@media (min-width: 1024px) {
  .trust-bar {
    overflow-x: visible;
    justify-content: center;
    flex-wrap: wrap;
  }
  .trust-item { flex-shrink: 1; }
}


/* ============================================================
   SERVICES
   ============================================================ */
.services-s {
  background: #fff;
  padding: var(--pad-v) var(--pad-h);
}

.services-head {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

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

.service-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.1);
  border-color: var(--orange-mid);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.service-icon svg { width: 1.625rem; height: 1.625rem; }
.si-orange { background: var(--orange-light); }
.si-orange svg { color: var(--orange); }
.si-teal   { background: var(--teal-light); }
.si-teal svg { color: var(--teal); }

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.3125rem;
  font-weight: 500;
  margin-bottom: .625rem;
  line-height: 1.2;
  color: var(--charcoal);
}
.service-card p {
  font-size: .875rem;
  color: var(--grey);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}
.service-more {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--orange);
  transition: gap .2s;
}
.service-card:hover .service-more { gap: .625rem; }
.service-more svg { width: .875rem; height: .875rem; }

@media (min-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .service-card { padding: 2rem 1.625rem 1.75rem; }
}


/* ============================================================
   IMPACT
   ============================================================ */
.impact-s {
  background: var(--charcoal);
  padding: var(--pad-v) var(--pad-h);
  position: relative;
  overflow: hidden;
}
.impact-s::before {
  content: '';
  position: absolute;
  top: -12.5rem;
  right: -12.5rem;
  width: 31.25rem;
  height: 31.25rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.04);
  pointer-events: none;
}

.impact-head {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.impact-cell {
  background: #222221;
  padding: 2rem 1.5rem;
  transition: background .2s;
}
.impact-cell:hover { background: #2a2a29; }

.impact-num {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--orange-mid);
  line-height: 1;
  margin-top: .5rem;
}
.impact-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}

.impact-cta {
  margin-top: 2.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .impact-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 3.5rem;
  }
  .impact-grid { grid-template-columns: repeat(4, 1fr); }
  .impact-cell { padding: 2.75rem 2.25rem; }
}


/* ============================================================
   SPLIT SECTIONS (story + digital)
   ============================================================ */
.split {
  display: flex;
  flex-direction: column;
}

.split-img {
  overflow: hidden;
  min-height: 280px;
  position: relative;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.split:hover .split-img img { transform: scale(1.03); }

.split-cnt {
  padding: 2.5rem var(--pad-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-btns {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

/* Story */
.story-s .split-cnt { background: var(--orange-light); }
.story-s .split-img { min-height: 320px; }

.story-stat {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  background: var(--orange);
  color: #fff;
  border-radius: .75rem;
  padding: .875rem 1.25rem;
  margin-bottom: 1.75rem;
  width: fit-content;
}
.story-num { font-family: var(--serif); font-size: 2rem; font-weight: 500; font-style: italic; line-height: 1; }
.story-lbl { font-size: .8125rem; opacity: .9; line-height: 1.3; }

.story-quote {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.45;
  border-left: 3px solid var(--orange);
  padding-left: 1.5rem;
  margin: 1.25rem 0 1rem;
}
.story-attr {
  font-size: .875rem;
  color: var(--grey);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

/* Digital */
.digital-s .split-cnt { background: #fff; }

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .625rem;
  margin-bottom: 2rem;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .9375rem;
  color: var(--grey);
}
.checklist li svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: .2rem;
}

@media (min-width: 768px) {
  .split-img { min-height: 360px; }
  .story-s .split-img { min-height: 420px; }
}

@media (min-width: 1024px) {
  .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .split-img { min-height: 31.25rem; }
  .story-s .split-img { min-height: 0; }
  .split-cnt { padding: 4.5rem 3.75rem; }
}


/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-s {
  background: #fff;
  padding: var(--pad-v) var(--pad-h);
}

.how-head {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.how-head .s-h2 { margin-bottom: .5rem; }

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  list-style: none;
}

.how-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
}
.how-card::before {
  content: attr(data-n);
  position: absolute;
  top: -.875rem;
  right: 1.25rem;
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 700;
  color: var(--orange-mid);
  line-height: 1;
  opacity: .4;
  pointer-events: none;
}

.how-num {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--charcoal);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.1875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.how-card h3 {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: .625rem;
  color: var(--charcoal);
}
.how-card p {
  font-size: .875rem;
  color: var(--grey);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .how-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .how-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
  }
  .how-head > a { flex-shrink: 0; }
}


/* ============================================================
   CARELINE
   ============================================================ */
.careline-s {
  background: var(--teal);
  padding: var(--pad-v) var(--pad-h);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.careline-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  max-width: 32.5rem;
  margin-bottom: 1.75rem;
}

.careline-btns {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.careline-box { flex-shrink: 0; }

.careline-phone-panel {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 1.25rem;
  padding: 2rem 2rem;
  margin-bottom: 1rem;
  text-align: center;
}
.careline-lbl {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: .5rem;
  font-weight: 600;
}
.careline-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  margin-bottom: .25rem;
}
.careline-num:hover { color: #A8D9CB; text-decoration: underline; }
.careline-hrs {
  font-size: .8125rem;
  color: rgba(255,255,255,.5);
}

@media (min-width: 1024px) {
  .careline-s {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 3.75rem;
  }
}


/* ============================================================
   VOLUNTEER
   ============================================================ */
.vol-s {
  padding: var(--pad-v) var(--pad-h);
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.vol-intro { margin-bottom: 1.5rem; }

.role-pills {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  list-style: none;
}
.pill {
  font-size: .8125rem;
  padding: .375rem .9375rem;
  border-radius: 40px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--grey);
}

.vol-btns { display: flex; gap: .75rem; flex-wrap: wrap; }

.vol-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

.vol-photo {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  height: 200px;
}
.vol-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .4s ease;
}
.vol-photo:hover img { transform: scale(1.05); }

.photo-badge {
  position: absolute;
  bottom: .75rem;
  left: .75rem;
  background: rgba(28,28,27,.78);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .75rem;
  font-weight: 500;
  padding: .3125rem .75rem;
  border-radius: 40px;
}

@media (min-width: 768px) {
  .vol-photo { height: 240px; }
}

@media (min-width: 1024px) {
  .vol-s {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
  }
  .vol-photo:nth-child(1) { height: 15rem; margin-top: 2rem; }
  .vol-photo:nth-child(2) { height: 12.5rem; }
  .vol-photo:nth-child(3) { height: 12.5rem; }
  .vol-photo:nth-child(4) { height: 15rem; margin-top: -2rem; }
}


/* ============================================================
   NEWS
   ============================================================ */
.news-s {
  background: #fff;
  padding: var(--pad-v) var(--pad-h);
}

.news-head {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.news-head .s-h2 { margin-bottom: 0; }

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

.news-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2.5rem rgba(0,0,0,.1);
}
.news-card > a {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}

.news-img { overflow: hidden; flex-shrink: 0; }
.news-img img {
  width: 100%;
  object-fit: cover;
  display: block;
  height: 13rem;
  transition: transform .5s ease;
}
.news-card:hover .news-img img { transform: scale(1.04); }

.news-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-tag {
  font-size: .6875rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: .5rem;
}
.news-h {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: .5rem;
  color: var(--charcoal);
}
.news-excerpt {
  font-size: .875rem;
  color: var(--grey);
  line-height: 1.6;
  flex: 1;
}
.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: .875rem;
  border-top: 1px solid var(--border);
}
.news-date { font-size: .75rem; color: rgba(90,87,80,.65); }
.news-more {
  font-size: .75rem;
  font-weight: 600;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: .25rem;
}
.news-more svg { width: .75rem; height: .75rem; transition: transform .2s; }
.news-card:hover .news-more svg { transform: translateX(3px); }

@media (min-width: 600px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .news-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
  }
  .news-grid { grid-template-columns: 2fr 1fr 1fr; }
  .news-card:first-child .news-img img { height: 15rem; }
  .news-card:not(:first-child) .news-img img { height: 10rem; }
  .news-card:not(:first-child) .news-h { font-size: 1.0625rem; }
}


/* ============================================================
   DONATE
   ============================================================ */
.donate-s {
  background: var(--orange-light);
  padding: var(--pad-v) var(--pad-h);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.donate-body { margin-bottom: 1.75rem; }

.donate-why {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.donate-why h3 {
  font-size: .6875rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--grey);
  margin-bottom: .875rem;
}
.why-item {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .875rem;
  color: var(--grey);
  margin-bottom: .625rem;
}
.why-item:last-child { margin-bottom: 0; }
.amt-badge {
  width: 2rem;
  height: 2rem;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--orange);
  font-size: .8125rem;
  flex-shrink: 0;
}

/* Donation widget */
.donate-widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 .5rem 2rem rgba(0,0,0,.07);
  margin-bottom: 1rem;
}

.widget-h {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: .375rem;
  color: var(--charcoal);
}
.widget-sub {
  font-size: .875rem;
  color: var(--grey);
  margin-bottom: 1.75rem;
}

[role="tablist"] {
  display: flex;
  background: var(--off-white);
  border-radius: .75rem;
  padding: .25rem;
  gap: .25rem;
  margin-bottom: 1.5rem;
}
[role="tab"] {
  flex: 1;
  text-align: center;
  font-size: .8125rem;
  font-weight: 600;
  padding: .5rem;
  border-radius: .5rem;
  cursor: pointer;
  color: var(--grey);
  border: none;
  background: transparent;
  font-family: var(--sans);
  transition: background .15s, color .15s, box-shadow .15s;
}
[role="tab"][aria-selected="true"] {
  background: #fff;
  color: var(--charcoal);
  box-shadow: 0 1px 4px rgba(0,0,0,.1);
}

fieldset { border: none; padding: 0; margin: 0 0 .75rem; }

.amt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  margin-bottom: .75rem;
}
.amt-btn {
  font-family: var(--sans);
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1rem .5rem;
  border: 1.5px solid var(--border);
  border-radius: .75rem;
  background: #fff;
  color: var(--charcoal);
  cursor: pointer;
  text-align: center;
  transition: border-color .15s, background .15s, color .15s;
}
.amt-btn small {
  display: block;
  font-size: .6875rem;
  color: var(--grey);
  font-weight: 400;
  margin-top: .125rem;
}
.amt-btn[aria-pressed="true"] {
  border-color: var(--orange);
  background: var(--orange-light);
  color: var(--orange);
}
.amt-btn[aria-pressed="true"] small { color: var(--orange); opacity: .8; }

.other-input {
  width: 100%;
  font-family: var(--sans);
  font-size: .9375rem;
  padding: .8125rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: .75rem;
  color: var(--charcoal);
  outline: none;
  margin-bottom: .875rem;
  display: none;
  background: #fff;
}
.other-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(196,81,15,.15);
}

.ga-row {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .8125rem;
  color: var(--grey);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.ga-row input {
  margin-top: .1875rem;
  accent-color: var(--orange);
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}
.ga-badge {
  font-size: .6875rem;
  font-weight: 700;
  color: var(--teal);
  background: var(--teal-light);
  padding: .125rem .5rem;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: .125rem;
}

.donate-btn {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  padding: 1.125rem;
  background: var(--orange);
  color: #fff;
  border: 2px solid var(--orange);
  border-radius: 50px;
  cursor: pointer;
  transition: background .15s, transform .1s, border-color .15s;
  letter-spacing: .01em;
}
.donate-btn:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-1px);
}

.secure-note {
  font-size: .75rem;
  color: var(--grey);
  text-align: center;
  margin-top: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .3125rem;
}
.secure-note svg { width: .8125rem; height: .8125rem; color: var(--teal); flex-shrink: 0; }

.donate-alts {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.donate-alt {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.625rem;
}
.alt-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .75rem;
}
.alt-icon svg { width: 1.375rem; height: 1.375rem; }
.alt-o { background: var(--orange-light); }
.alt-o svg { color: var(--orange); }
.alt-t { background: var(--teal-light); }
.alt-t svg { color: var(--teal); }
.donate-alt h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: .375rem;
  color: var(--charcoal);
}
.donate-alt p {
  font-size: .875rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .donate-s {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: start;
  }
}


/* ============================================================
   PARTNERS
   ============================================================ */
.partners-s {
  background: #fff;
  padding: 2.75rem var(--pad-h);
  border-top: 1px solid var(--border);
}
.partners-lbl {
  font-size: .6875rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey);
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  list-style: none;
}
.partner {
  flex: 1;
  min-width: 8rem;
  text-align: center;
  font-size: .8125rem;
  font-weight: 600;
  color: #b0ada8;
  padding: 1.125rem .75rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: color .15s, background .15s;
}
.partner:hover { color: var(--grey); background: var(--warm-white); }

@media (min-width: 768px) {
  .partner { border-bottom: none; }
  .partner:last-child { border-right: none; }
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.65);
  padding: var(--pad-v) var(--pad-h) 2.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-logo { margin-bottom: 1.25rem; }
.footer-logo img {
  height: 2.75rem;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .72;
}

.footer-addr {
  font-size: .875rem;
  line-height: 1.9;
  margin-bottom: 1.125rem;
  font-style: normal;
}
.footer-phone {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--orange-mid);
  text-decoration: none;
  display: block;
  margin-bottom: .25rem;
}
.footer-phone:hover { color: #fff; text-decoration: underline; }
.footer-email {
  font-size: .8125rem;
  color: rgba(255,255,255,.45);
  text-decoration: none;
}
.footer-email:hover { color: #fff; text-decoration: underline; }

.social-links {
  display: flex;
  gap: .5rem;
  margin-top: 1.25rem;
  list-style: none;
}
.social-link {
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,.6);
  transition: background .15s, color .15s;
}
.social-link:hover { background: var(--orange); color: #fff; }
.social-link svg { width: .9375rem; height: .9375rem; }

.footer-col-title {
  font-size: .6875rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  font-weight: 600;
  margin-bottom: 1.125rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .625rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.55); text-decoration: none; }
.footer-links a:hover { color: #fff; text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-charity { font-size: .8125rem; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; list-style: none; }
.footer-legal a { font-size: .8125rem; color: rgba(255,255,255,.35); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,.75); text-decoration: underline; }

@media (min-width: 600px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (min-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
  }
  .footer-brand { grid-column: auto; }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}


/* ============================================================
   HERO ENTRANCE ANIMATION
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(1.5rem); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow { animation: fadeUp .65s ease both; animation-delay: .05s; }
.hero-heading  { animation: fadeUp .65s ease both; animation-delay: .15s; }
.hero-desc     { animation: fadeUp .65s ease both; animation-delay: .25s; }
.hero-buttons  { animation: fadeUp .65s ease both; animation-delay: .35s; }
.hero-trust    { animation: fadeUp .65s ease both; animation-delay: .45s; }
