/* ==========================================================================
   Pathways To Hope — stylesheet
   ========================================================================== */

@font-face {
  font-family: "Ashfiana";
  src: url("../fonts/Ashfiana-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ashfiana";
  src: url("../fonts/Ashfiana-Oblique.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Allura";
  src: url("../fonts/Allura-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-white: #ffffff;
  --color-text: #1b2a30;
  --color-green: #799356;
  --color-green-dark: #647c47;
  --color-gold: #f4be57;
  --color-gold-dark: #e6a92e;
  --color-sky: #cfe7f4;
  --color-cream: #fbf8f2;
  --color-sage: #dce8cf;

  --font-heading: "Ashfiana", "Georgia", serif;
  --font-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Allura", cursive;

  --max-width: 1240px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 32px;
  --shadow-soft: 0 20px 50px -25px rgba(27, 42, 48, 0.25);
  --shadow-card: 0 12px 30px -18px rgba(27, 42, 48, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.4rem, 4.4vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

p { font-size: 1.03rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-green-dark);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--color-gold);
  display: inline-block;
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--color-green-dark);
  line-height: 1;
}

.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 640px) {
  .container { padding-inline: 2.5rem; }
}

.section { position: relative; padding: 3.5rem 0; overflow: hidden; }
.section--tight { padding: 2.5rem 0; }
@media (min-width: 720px) {
  .section { padding: 5.5rem 0; }
  .section--tight { padding: 3.5rem 0; }
}
.section--cream { background: var(--color-cream); }
.section--sage { background: var(--color-sage); }
.section--sky { background: var(--color-sky); }
.section--dark { background: var(--color-text); color: var(--color-white); }
.section--dark .eyebrow { color: var(--color-gold); }
.section--dark .eyebrow::before { background: var(--color-gold); }

.section-head { max-width: 680px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1rem; opacity: 0.85; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn:hover { transform: translateY(-3px); }

.btn--primary {
  background: var(--color-gold);
  color: var(--color-text);
  box-shadow: 0 14px 30px -14px rgba(230, 169, 46, 0.65);
}
.btn--primary:hover { background: var(--color-gold-dark); box-shadow: 0 18px 36px -14px rgba(230, 169, 46, 0.75); }

.btn--outline {
  background: transparent;
  border-color: currentColor;
  color: var(--color-text);
}
.btn--outline:hover { background: var(--color-text); color: var(--color-white); border-color: var(--color-text); }

.section--dark .btn--outline { color: var(--color-white); }
.section--dark .btn--outline:hover { background: var(--color-white); color: var(--color-text); }

.btn--green {
  background: var(--color-green);
  color: var(--color-white);
  box-shadow: 0 14px 30px -14px rgba(100, 124, 71, 0.65);
}
.btn--green:hover { background: var(--color-green-dark); }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

@media (max-width: 400px) {
  .btn { white-space: normal; text-align: center; width: 100%; justify-content: center; }
  .btn-row { flex-direction: column; align-items: stretch; }
}

/* ---------- Decorative blobs & path motif ---------- */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
  animation: float 14s var(--ease) infinite alternate;
}
.blob--sage { background: var(--color-sage); }
.blob--sky { background: var(--color-sky); }
.blob--gold { background: var(--color-gold); opacity: 0.35; }
.blob--cream { background: var(--color-cream); }

@keyframes float {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-18px, 22px) scale(1.05); }
}

.path-line {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

@media (prefers-reduced-motion: reduce) {
  .blob { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 10px 30px -22px rgba(27, 42, 48, 0.4);
  border-color: rgba(27, 42, 48, 0.08);
}

/* Transparent overlay header for full-bleed hero pages */
.site-header--overlay {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(20, 30, 34, 0.24);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-header--overlay .nav__links a,
.site-header--overlay .nav__toggle span,
.site-header--overlay .brand-word { color: var(--color-white); }
.site-header--overlay .nav__links { background: rgba(255, 255, 255, 0.1); }
.site-header--overlay .nav__links a[aria-current="page"] { color: var(--color-text); }
.site-header--overlay.is-scrolled {
  background: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(27, 42, 48, 0.08);
}
.site-header--overlay.is-scrolled .nav__links a,
.site-header--overlay.is-scrolled .nav__toggle span,
.site-header--overlay.is-scrolled .brand-word { color: var(--color-text); }
.site-header--overlay.is-scrolled .nav__links { background: rgba(27, 42, 48, 0.05); }
.site-header--overlay.is-scrolled .nav__links a[aria-current="page"] { color: var(--color-text); }

.site-header__inner {
  max-width: 1480px;
  margin-inline: auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}
@media (min-width: 640px) { .site-header__inner { padding: 0.8rem 3rem; } }

.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand img { height: 46px; width: auto; flex-shrink: 0; transition: height 0.35s ease; }
@media (min-width: 480px) { .brand img { height: 52px; } }
@media (min-width: 640px) { .brand img { height: 58px; } }
.brand-word {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 4.6vw, 1.35rem);
  letter-spacing: 0.02em;
  color: var(--color-text);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

/* Floating glass pill nav with a sliding gold indicator */
.nav__links {
  position: relative;
  display: none;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.86rem;
  font-weight: 600;
  background: rgba(27, 42, 48, 0.05);
  border-radius: 999px;
  padding: 0.3rem;
}
.nav__indicator {
  position: absolute;
  z-index: 1;
  top: 0.3rem;
  bottom: 0.3rem;
  left: 0;
  width: 0;
  border-radius: 999px;
  background: var(--color-gold);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s var(--ease), width 0.45s var(--ease), opacity 0.3s ease;
}
.nav__indicator.is-visible { opacity: 1; }
.nav__links a {
  position: relative;
  z-index: 2;
  padding: 0.6rem 1.05rem;
  border-radius: 999px;
  white-space: nowrap;
  color: var(--color-text);
  transition: color 0.35s ease;
}
.nav__links a[aria-current="page"] { font-weight: 700; }

.nav__toggle {
  position: relative;
  z-index: 201;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  background: rgba(27, 42, 48, 0.06);
  border: none;
  border-radius: 50%;
  transition: background 0.3s ease;
}
.site-header--overlay .nav__toggle { background: rgba(255, 255, 255, 0.14); }
.nav__toggle span { width: 20px; height: 2px; background: var(--color-text); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.2s ease, background 0.3s ease; }
.site-header--overlay .nav__toggle span { background: var(--color-white); }
.nav__toggle[aria-expanded="true"] { background: var(--color-text); }
.nav__toggle[aria-expanded="true"] span { background: var(--color-white) !important; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Desktop nav takes over once there's enough room for all links comfortably */
@media (min-width: 1180px) {
  .nav__links { display: flex; }
  .nav__toggle { display: none; }
}

.nav-cta { display: none; }
@media (min-width: 640px) { .nav-cta { display: inline-flex; } }

.nav-social {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(27, 42, 48, 0.06);
  color: var(--color-text);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.nav-social svg { width: 18px; height: 18px; }
.nav-social:hover { background: var(--color-gold); color: var(--color-text); transform: translateY(-2px); }
.site-header--overlay .nav-social { background: rgba(255, 255, 255, 0.14); color: var(--color-white); }
.site-header--overlay.is-scrolled .nav-social { background: rgba(27, 42, 48, 0.06); color: var(--color-text); }
@media (min-width: 1180px) { .nav-social { display: inline-flex; } }

/* Full-screen creative mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
  background:
    radial-gradient(60% 50% at 85% 12%, rgba(244, 190, 87, 0.28), transparent 60%),
    radial-gradient(55% 55% at 10% 90%, rgba(121, 147, 86, 0.35), transparent 60%),
    var(--color-text);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), visibility 0.45s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: scale(1); }
.mobile-menu__deco {
  position: absolute;
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
}
.mobile-menu__deco--1 { top: 4%; right: -10%; width: 58%; height: auto; }
.mobile-menu__deco--2 { bottom: 2%; left: -14%; width: 50%; height: auto; transform: scaleX(-1); }
.mobile-menu__deco path {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  transition: stroke-dashoffset 1.6s var(--ease) 0.15s;
}
.mobile-menu__deco--1 path { stroke: var(--color-gold); }
.mobile-menu__deco--2 path { stroke: var(--color-sage); }
.mobile-menu.is-open .mobile-menu__deco path { stroke-dashoffset: 0; }
.mobile-menu__inner {
  position: relative;
  z-index: 1;
  padding: 5.5rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  max-width: 420px;
  margin-inline: auto;
  width: 100%;
  min-height: 100%;
  justify-content: center;
}
.mobile-menu a {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.5rem, 6.5vh, 2.1rem);
  color: var(--color-white);
  padding: 0.42rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.mobile-menu.is-open a { opacity: 1; transform: translateY(0); }
.mobile-menu.is-open a:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.is-open a:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.is-open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.is-open a:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu.is-open a:nth-child(5) { transition-delay: 0.32s; }
.mobile-menu.is-open a:nth-child(6) { transition-delay: 0.38s; }
.mobile-menu.is-open a:nth-child(7) { transition-delay: 0.44s; }
.mobile-menu.is-open a:nth-child(8) { transition-delay: 0.5s; }
.mobile-menu a.btn {
  margin-top: 1.8rem;
  padding: 1.05rem 1.8rem;
  border-bottom: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  width: 100%;
  justify-content: center;
  box-shadow: 0 18px 40px -16px rgba(230, 169, 46, 0.55);
}
.mobile-menu__social {
  display: flex;
  gap: 0.7rem;
  margin-top: 2.2rem;
  opacity: 0;
  transition: opacity 0.5s var(--ease) 0.56s;
}
.mobile-menu.is-open .mobile-menu__social { opacity: 1; }
.mobile-menu__social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0;
}
.mobile-menu__social svg { width: 17px; height: 17px; color: var(--color-white); }
@media (min-width: 1180px) { .mobile-menu { display: none; } }
body.menu-open { overflow: hidden; }

/* ---------- Full-bleed hero (home) ---------- */
.hero-full {
  position: relative;
  min-height: 112vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-text);
}
.hero-full__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-full__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
}
.hero-full__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(45% 50% at 20% 92%, rgba(20, 30, 34, 0.55), transparent 65%),
    radial-gradient(70% 60% at 85% 15%, rgba(244, 190, 87, 0.32), transparent 60%),
    linear-gradient(100deg, rgba(20, 30, 34, 0.94) 0%, rgba(20, 30, 34, 0.8) 30%, rgba(20, 30, 34, 0.42) 55%, rgba(20, 30, 34, 0.12) 76%);
}
.hero-full__path {
  position: absolute;
  z-index: 1;
  right: -8%;
  top: 6%;
  width: 46%;
  max-width: 520px;
  height: auto;
  opacity: 0.5;
}
.hero-full__path path {
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: draw-path 2.6s var(--ease) 0.3s forwards;
}
@keyframes draw-path {
  to { stroke-dashoffset: 0; }
}
.hero-full__content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  padding: 9rem clamp(1.5rem, 7vw, 7rem) 8.5rem;
  max-width: 1700px;
  margin-inline: 0;
}
.hero-full__content .eyebrow { color: var(--color-gold); }
.hero-full__content .eyebrow::before { background: var(--color-gold); }
.hero-full h1 {
  max-width: 17ch;
  margin: 1.2rem 0 0;
}
.hero-full h1 .line-big { display: block; }
.hero-full h1 .script {
  display: block;
  font-size: 1.55em;
  color: var(--color-gold);
  margin-top: 0.15em;
}
.hero-full__lead { max-width: 480px; font-size: 1.1rem; opacity: 0.88; margin: 1.6rem 0 2.3rem; }
.hero-full__scroll {
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
  opacity: 0.85;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.hero-full__scroll.is-hidden { opacity: 0; }
.hero-full__scroll svg { width: 16px; height: 22px; animation: bob 2.2s ease-in-out infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
.hero-full__edge {
  position: absolute;
  z-index: 2;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: auto;
  line-height: 0;
}
@media (max-width: 720px) {
  .hero-full { min-height: 100vh; align-items: flex-end; }
  .hero-full__content { padding-top: 7rem; padding-bottom: 6rem; }
  .hero-full__path { width: 85%; top: 4%; opacity: 0.4; }
  .hero-full__scroll { bottom: 2.4rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-full__media img { transform: none; }
  .hero-full__path path { animation: none; stroke-dashoffset: 0; }
  .hero-full__scroll svg { animation: none; }
}

/* ---------- Page (interior) hero ---------- */
.page-hero {
  position: relative;
  padding: 4rem clamp(1.5rem, 7vw, 7rem) 4.5rem;
  text-align: left;
  overflow: hidden;
  background: var(--color-text);
  color: var(--color-white);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 70% at 12% 20%, rgba(121, 147, 86, 0.55), transparent 62%),
    radial-gradient(60% 60% at 88% 85%, rgba(244, 190, 87, 0.4), transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; max-width: 900px; margin-inline: 0; padding-inline: 0; }
.page-hero .eyebrow { color: var(--color-gold); }
.page-hero .eyebrow::before { background: var(--color-gold); }
.page-hero h1 { margin-top: 1.1rem; max-width: 20ch; }
.page-hero .script { color: var(--color-gold); }
.page-hero p { max-width: 640px; margin-top: 1.2rem; opacity: 0.88; font-size: 1.1rem; }

@media (max-width: 720px) {
  .page-hero { padding: 3.5rem 0 4.5rem; clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%); }
}

/* ---------- Icon circle ---------- */
.icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-sage);
  color: var(--color-green-dark);
}
.icon-circle svg { width: 26px; height: 26px; }
.icon-circle--gold { background: var(--color-gold); color: var(--color-text); }
.icon-circle--sky { background: var(--color-sky); color: var(--color-text); }
.icon-circle--dark { background: rgba(255,255,255,0.12); color: var(--color-gold); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.9rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  position: relative;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 24px 44px -20px rgba(27,42,48,0.3); }
.card .icon-circle { margin-bottom: 1.3rem; }
.card h3 { margin-bottom: 0.6rem; }
.card p { opacity: 0.8; font-size: 0.98rem; }
.card-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1rem; font-weight: 600; font-size: 0.9rem; color: var(--color-green-dark); }
.card-link svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.3s var(--ease); }
a:hover > .card-link svg, .card-link:hover svg, a.card-link:hover svg { transform: translateX(3px); }

.card--flat {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  border: 1px solid rgba(27,42,48,0.08);
  transition: border-color 0.3s ease, transform 0.35s var(--ease);
}
.card--flat:hover { transform: translateY(-5px); border-color: var(--color-gold); }

/* Feature list with check-style icons */
.feature-list { display: grid; gap: 1rem; }
@media (min-width: 640px) { .feature-list.two-col { grid-template-columns: repeat(2, 1fr); } }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
}
.feature-list li .icon-circle { width: 40px; height: 40px; flex-shrink: 0; }
.feature-list li .icon-circle svg { width: 20px; height: 20px; }
.feature-list li span { font-weight: 600; padding-top: 0.55rem; }

/* ---------- Quote banner (Allura decorative) ---------- */
.quote-banner {
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-banner p {
  font-family: var(--font-script);
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  color: var(--color-green-dark);
  max-width: 780px;
  margin-inline: auto;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
.quote-banner .quote-mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-gold);
  opacity: 0.5;
  line-height: 0.5;
  display: block;
  margin-bottom: 1rem;
}

/* ---------- Timeline / steps ---------- */
.steps { display: grid; gap: 2.2rem; counter-reset: step; position: relative; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding-left: 4.2rem; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 3.1rem; height: 3.1rem;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { margin-bottom: 0.5rem; }
.step p { opacity: 0.8; }

/* ---------- FAQ list ---------- */
.faq-list { max-width: 780px; margin-inline: auto; }
.faq-item {
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(27, 42, 48, 0.1);
}
.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.faq-item p { opacity: 0.8; }

/* ---------- Values grid ---------- */
.value-card { text-align: left; }

/* ---------- Values row (single line, no cards) ---------- */
.values-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}
.value-item {
  position: relative;
  text-align: center;
  padding: 0 1.2rem;
}
.value-item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: rgba(27, 42, 48, 0.1);
}
.value-item .icon-circle { margin-inline: auto; margin-bottom: 1.1rem; }
.value-item h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.value-item p { font-size: 0.9rem; opacity: 0.75; }
@media (max-width: 900px) {
  .values-row { grid-template-columns: repeat(2, 1fr); gap: 2.2rem 0; }
  .value-item:nth-child(even)::before { display: none; }
  .value-item:nth-child(1)::before, .value-item:nth-child(2)::before { display: none; }
}
@media (max-width: 560px) {
  .values-row { grid-template-columns: 1fr; }
  .value-item::before { display: none !important; }
}

/* ---------- Split section (image + text) ---------- */
.split {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split.reverse .split__art { order: -1; }
@media (min-width: 900px) { .split.reverse .split__art { order: 2; } }
.split__art { position: relative; }
.split__art figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3.2;
}
.split__art img { width: 100%; height: 100%; object-fit: cover; }
ul.plain { display: grid; gap: 0.9rem; margin-top: 1.5rem; }
ul.plain li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 1.02rem; }
ul.plain svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; color: var(--color-green-dark); }

/* ---------- Stat / badge strip ---------- */
.badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
}
.charity-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--color-white);
  border-radius: 999px;
  padding: 0.9rem 1.6rem 0.9rem 0.9rem;
  box-shadow: var(--shadow-card);
}
.charity-badge .icon-circle { background: var(--color-gold); color: var(--color-text); }
.charity-badge strong { display: block; font-size: 0.95rem; }
.charity-badge span { font-size: 0.8rem; opacity: 0.7; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--color-text);
  color: var(--color-white);
  padding: 3.5rem 2.2rem;
  text-align: center;
  overflow: hidden;
}
.cta-banner h2 { color: var(--color-white); margin-bottom: 1rem; }
.cta-banner p { opacity: 0.85; max-width: 560px; margin-inline: auto 1.8rem auto; margin-bottom: 1.8rem;}
.cta-banner .eyebrow { color: var(--color-gold); justify-content: center; }
.cta-banner .eyebrow::before { background: var(--color-gold); }
.cta-banner .btn-row { justify-content: center; margin-top: 1.8rem; }

/* ---------- Form ---------- */
.form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.8rem, 4vw, 3rem);
}
.form-grid { display: grid; gap: 1.3rem; }
@media (min-width: 640px) { .form-grid.two-col { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 0.88rem; }
.field input, .field textarea, .field select {
  border: 1.5px solid rgba(27,42,48,0.15);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  background: var(--color-cream);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--color-green);
  background: var(--color-white);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; opacity: 0.65; margin-top: 0.4rem; }
.form-msg { margin-top: 1.2rem; padding: 0.9rem 1.1rem; border-radius: var(--radius-sm); font-size: 0.92rem; display: none; }
.form-msg.is-visible { display: block; }
.form-msg--ok { background: var(--color-sage); color: var(--color-green-dark); }
.form-msg--err { background: #f8dede; color: #9a3b3b; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--color-text);
  color: var(--color-gold);
  overflow: hidden;
  padding: 1.1rem 0;
  position: relative;
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: 3rem;
  animation: marquee-scroll 26s linear infinite;
}
.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  white-space: nowrap;
}
.marquee__track span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  display: inline-block;
  margin-left: 3rem;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; overflow-x: auto; }
}

/* ---------- Bento tile row (quick actions) ---------- */
.tile-row {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 1;
}
@media (min-width: 720px) {
  .tile-row { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .tile-row { grid-template-columns: 1.35fr 1fr 1fr 1.15fr; align-items: stretch; }
}
.tile {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  isolation: isolate;
}
.tile:hover { transform: translateY(-10px); }
.tile__index {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  font-family: var(--font-heading);
  font-size: 3.2rem;
  opacity: 0.16;
  line-height: 1;
  z-index: 0;
}
.tile .icon-circle { position: relative; z-index: 1; margin-bottom: 1.4rem; }
.tile h3, .tile p, .tile .card-link { position: relative; z-index: 1; }
.tile p { opacity: 0.85; font-size: 0.96rem; margin-top: 0.4rem; }
.tile--dark { background: var(--color-text); color: var(--color-white); }
.tile--dark .tile__index { color: var(--color-white); }
.tile--dark .card-link { color: var(--color-gold); }
.tile--gold { background: var(--color-gold); color: var(--color-text); }
.tile--gold .tile__index { color: var(--color-text); }
.tile--sage { background: var(--color-sage); color: var(--color-text); }
.tile--sage .tile__index { color: var(--color-text); }
.tile--sky { background: var(--color-sky); color: var(--color-text); }
.tile--sky .tile__index { color: var(--color-text); }
@media (min-width: 1080px) {
  .tile-row .tile:first-child { min-height: 340px; }
}

/* ---------- Ghost word / editorial numerals ---------- */
.ghost-word {
  position: absolute;
  font-family: var(--font-script);
  color: var(--color-sage);
  opacity: 0.6;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  font-size: clamp(4.5rem, 11vw, 8.5rem);
}
.section-head { position: relative; }

/* ---------- Angled section utility ---------- */
.section--angle-top { clip-path: polygon(0 3.2%, 100% 0, 100% 100%, 0 100%); padding-top: 6.5rem; }
.section--angle-bottom { clip-path: polygon(0 0, 100% 0, 100% 96.8%, 0 100%); padding-bottom: 6.5rem; }
@media (max-width: 720px) {
  .section--angle-top, .section--angle-bottom { padding-top: 4rem; padding-bottom: 4rem; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-text);
  color: var(--color-white);
  padding: 4.5rem 0 0;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  gap: 2.6rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1.2fr; } }
.footer-brand__logo { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 1.2rem; }
.footer-brand__logo img { height: 48px; width: auto; }
.footer-brand__logo span { font-family: var(--font-heading); font-size: 1.25rem; color: var(--color-white); letter-spacing: 0.02em; }
.footer-brand p { opacity: 0.75; font-size: 0.92rem; max-width: 280px; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: 0.7rem; }
.footer-col a, .footer-col li { font-size: 0.92rem; opacity: 0.82; }
.footer-col a:hover { opacity: 1; color: var(--color-gold); }
.social-row { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.social-row a:hover { background: var(--color-gold); color: var(--color-text); transform: translateY(-3px); }
.social-row svg { width: 17px; height: 17px; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between;
  padding: 1.6rem 0;
  font-size: 0.82rem; opacity: 0.65;
}
.footer-bottom a { text-decoration: underline; text-underline-offset: 2px; transition: color 0.3s ease; }
.footer-bottom a:hover { color: var(--color-gold); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ---------- Misc ---------- */
.divider-gold { width: 60px; height: 3px; background: var(--color-gold); border-radius: 2px; margin: 1.4rem 0; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.stack-lg > * + * { margin-top: 1.2rem; }

.two-cols {
  display: grid;
  gap: 2.4rem;
}
@media (min-width: 780px) { .two-cols { grid-template-columns: 1fr 1fr; } }
