/* ============================================================
   Harmony Retreat & Animal Rescue — design system
   Warm "sanctuary" theme. Brand green (from logo) elevated to
   forest + sage, warmed with clay + gold over a parchment base.
   Shared across index / adopt / get-involved / contact.
   ============================================================ */

:root {
  /* Surfaces */
  --bg:          #f7f3ea;   /* warm parchment */
  --surface:     #fffdf8;   /* warm white cards */
  --surface-2:   #eef1e4;   /* soft sage tint (alt sections) */
  --surface-3:   #ece4d3;   /* deeper sand */

  /* Brand */
  --forest:      #3f6b4f;   /* primary — deep sage-forest green */
  --forest-deep: #2c4d39;
  --leaf:        #7fb04f;   /* secondary — bright logo green */
  --clay:        #c8794e;   /* warm terracotta — CTA / donate */
  --clay-deep:   #b1623b;
  --gold:        #e0a43b;   /* small highlights */

  /* Ink */
  --ink:         #26302a;   /* body text — deep warm green-charcoal */
  --ink-soft:    color-mix(in srgb, var(--ink) 62%, transparent);
  --ink-faint:   color-mix(in srgb, var(--ink) 40%, transparent);
  --line:        color-mix(in srgb, var(--ink) 12%, transparent);
  --forest-dim:  color-mix(in srgb, var(--forest) 12%, transparent);
  --clay-dim:    color-mix(in srgb, var(--clay) 14%, transparent);

  /* Type */
  --display: 'Fraunces', Georgia, serif;
  --body:    'Nunito', system-ui, sans-serif;

  /* Rhythm */
  --section-pad: clamp(72px, 10vw, 132px);
  --radius:      20px;
  --radius-sm:   13px;
  --maxw:        1200px;
  --shadow:      0 18px 50px -24px color-mix(in srgb, var(--forest-deep) 55%, transparent);
  --shadow-sm:   0 8px 24px -14px color-mix(in srgb, var(--forest-deep) 45%, transparent);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.65;
  overflow-x: hidden;
  font-weight: 500;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; font-family: inherit; cursor: pointer; }
ul { list-style: none; }
:focus-visible { outline: 3px solid var(--forest); outline-offset: 3px; border-radius: 4px; }

/* Hide the native cursor ONLY once JS confirms the custom cursor is live
   (html.has-cursor). Any failure path keeps the normal cursor visible. */
@media (hover: hover) and (pointer: fine) {
  html.has-cursor body,
  html.has-cursor a,
  html.has-cursor button { cursor: none; }
}

/* Grain overlay — Non-Negotiable #5 */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- custom cursor (only shown when html.has-cursor) ---------- */
.cursor, .cursor-dot { display: none; }
@media (hover: hover) and (pointer: fine) {
  html.has-cursor .cursor {
    position: fixed; top: 0; left: 0; width: 42px; height: 42px;
    margin: -21px 0 0 -21px; border: 1.6px solid var(--forest);
    border-radius: 50%; pointer-events: none; z-index: 10000;
    display: block; opacity: 0.85;
  }
  html.has-cursor .cursor-dot {
    position: fixed; top: 0; left: 0; width: 6px; height: 6px;
    margin: -3px 0 0 -3px; background: var(--clay); border-radius: 50%;
    pointer-events: none; z-index: 10001; display: block;
  }
}

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }
section { padding: var(--section-pad) 0; position: relative; }
.tint  { background: var(--surface-2); }
.sand  { background: var(--surface-3); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--body); font-weight: 800;
  font-size: .76rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--forest);
}
.eyebrow::before { content: '✦'; color: var(--leaf); }
.eyebrow.on-dark { color: #d7e7c8; }
.eyebrow.on-dark::before { color: var(--gold); }

h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.04; letter-spacing: -.015em; color: var(--forest-deep); }
.section-head { max-width: 720px; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.section-head h2 { font-size: clamp(30px, 4.4vw, 54px); margin: .8rem 0 1rem; }
.section-head p  { font-size: clamp(16px, 1.3vw, 19px); color: var(--ink-soft); max-width: 620px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--body); font-weight: 800; font-size: 1rem;
  padding: .92rem 1.8rem; border-radius: 100px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s;
  will-change: transform;
}
.btn-primary  { background: var(--forest); color: #fdfdf9; box-shadow: var(--shadow-sm); }
.btn-primary:hover  { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-clay     { background: var(--clay); color: #fff; box-shadow: var(--shadow-sm); }
.btn-clay:hover     { transform: translateY(-2px); background: var(--clay-deep); }
.btn-ghost    { background: transparent; color: var(--forest-deep); border: 1.6px solid var(--forest); }
.btn-ghost:hover    { background: var(--forest); color: #fdfdf9; transform: translateY(-2px); }
.btn-light    { background: #fffdf8; color: var(--forest-deep); }
.btn-light:hover    { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-text { font-weight: 800; color: var(--forest); display: inline-flex; gap: .4rem; align-items: center; }
.btn-text::after { content: '→'; transition: transform .3s; }
.btn-text:hover::after { transform: translateX(5px); }
.btn .ar { transition: transform .3s; }
.btn:hover .ar { transform: translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(20px, 5vw, 48px);
  transition: background .4s, backdrop-filter .4s, box-shadow .4s, padding .4s;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line); padding-top: .7rem; padding-bottom: .7rem;
}
.nav-brand { display: flex; align-items: center; gap: .65rem; }
.nav-brand img { height: 38px; width: auto; }
.nav-brand .bname {
  font-family: var(--display); font-weight: 600; font-size: 1.18rem;
  color: var(--forest-deep); letter-spacing: -.02em; line-height: 1;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-weight: 700; font-size: .94rem; color: var(--ink-soft); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--forest); }
.nav-actions { display: flex; align-items: center; gap: .9rem; }
.nav .btn { padding: .62rem 1.3rem; font-size: .92rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.4px; background: var(--forest-deep); border-radius: 2px; transition: .3s; }

@media (max-width: 900px) {
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 1.2rem;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--surface); padding: 1.6rem clamp(20px,5vw,48px) 2rem;
    box-shadow: var(--shadow); border-top: 1px solid var(--line);
  }
  .nav.open .nav-links a { font-size: 1.1rem; }
  .nav.open .nav-toggle span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }
}

/* ============================================================
   HERO (home) — split
   ============================================================ */
.hero { padding-top: clamp(120px, 18vh, 180px); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-copy { max-width: 600px; }
.hero h1 { font-size: clamp(40px, 6vw, 78px); margin: 1.2rem 0 1.3rem; }
.hero h1 .underline { color: var(--clay); position: relative; white-space: nowrap; }
.hero h1 .underline::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: .06em; height: .14em;
  background: var(--gold); opacity: .55; border-radius: 4px;
}
.hero-sub { font-size: clamp(17px, 1.45vw, 20px); color: var(--ink-soft); margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.hero-visual { position: relative; }
.hero-visual .photo {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4/5; background: var(--surface-2);
}
.hero-visual .photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: -22px; bottom: 34px; background: var(--surface);
  border-radius: var(--radius-sm); padding: 1rem 1.2rem; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: .8rem; max-width: 260px;
}
.hero-badge .em { font-size: 2rem; line-height: 1; }
.hero-badge strong { font-family: var(--display); color: var(--forest-deep); display: block; font-size: 1.02rem; }
.hero-badge span { font-size: .82rem; color: var(--ink-soft); font-weight: 700; }
.hero-leaf {
  position: absolute; top: -10px; right: -8px; background: var(--leaf); color: #1f3315;
  font-weight: 800; font-size: .78rem; letter-spacing: .04em; padding: .5rem .9rem;
  border-radius: 100px; box-shadow: var(--shadow-sm); transform: rotate(4deg);
}

/* hero ticker */
.tagline-strip {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; background: var(--surface-2);
}
.ticker { display: flex; gap: 2.6rem; width: max-content; padding: 1rem 0; animation: ticker 32s linear infinite; }
.ticker:hover { animation-play-state: paused; }
.ticker span { font-family: var(--display); font-style: italic; font-size: 1.15rem; color: var(--forest); white-space: nowrap; opacity: .8; }
.ticker .dot { color: var(--clay); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============================================================
   MISSION / two-pillar
   ============================================================ */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 3vw, 2rem); }
.pillar {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pillar .ph { height: 220px; overflow: hidden; }
.pillar .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pillar:hover .ph img { transform: scale(1.05); }
.pillar .body { padding: 1.8rem clamp(1.4rem, 2.4vw, 2rem) 2rem; }
.pillar .kicker { font-weight: 800; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--clay); }
.pillar h3 { font-size: clamp(22px, 2.4vw, 30px); margin: .5rem 0 .7rem; }
.pillar p { color: var(--ink-soft); font-size: .98rem; }

/* values row */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.8rem); margin-top: 2.4rem; }
.value { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.value .vn { font-family: var(--display); font-size: 1.3rem; color: var(--forest-deep); display: flex; align-items: center; gap: .55rem; margin-bottom: .5rem; }
.value .vn .em { font-size: 1.3rem; }
.value p { color: var(--ink-soft); font-size: .95rem; }

/* ============================================================
   STATS / impact
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.stat { text-align: center; padding: 1.4rem 1rem; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat .num { font-family: var(--display); font-weight: 600; font-size: clamp(34px, 4.4vw, 56px); color: var(--clay); line-height: 1; }
.stat .lbl { font-size: .9rem; color: var(--ink-soft); font-weight: 700; margin-top: .6rem; }

/* ============================================================
   CARD GRID (animals, ways to help, tiles)
   ============================================================ */
.grid { display: grid; gap: clamp(1.2rem, 2.6vw, 1.8rem); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .ph { aspect-ratio: 1/1; overflow: hidden; background: var(--surface-2); }
.card .ph.tall { aspect-ratio: 4/5; }
.card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .ph img { transform: scale(1.06); }
.card .body { padding: 1.3rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card .pill { align-self: flex-start; background: var(--forest-dim); color: var(--forest); font-weight: 800; font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; padding: .28rem .7rem; border-radius: 100px; margin-bottom: .7rem; }
.card .pill.clay { background: var(--clay-dim); color: var(--clay-deep); }
.card h3 { font-size: 1.4rem; margin-bottom: .4rem; }
.card p { color: var(--ink-soft); font-size: .95rem; flex: 1; }
.card .meta { font-size: .82rem; color: var(--ink-faint); font-weight: 700; margin-top: .8rem; }

/* icon tile (ways to help / programs) */
.tile {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem 1.7rem; box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s;
  display: flex; flex-direction: column; height: 100%;
}
.tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--forest) 35%, transparent); }
.tile .ic {
  width: 54px; height: 54px; border-radius: 14px; background: var(--forest-dim);
  display: grid; place-items: center; font-size: 1.6rem; margin-bottom: 1.1rem;
}
.tile.alt .ic { background: var(--clay-dim); }
.tile h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.tile p { color: var(--ink-soft); font-size: .95rem; flex: 1; margin-bottom: 1rem; }

/* ============================================================
   FEATURE SPLIT (founder / connection)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split.flip .split-media { order: 2; }
.split-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-copy h2 { font-size: clamp(28px, 4vw, 48px); margin: .9rem 0 1.2rem; }
.split-copy p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.split-copy .quote { font-family: var(--display); font-style: italic; font-size: clamp(20px, 2.4vw, 28px); color: var(--forest-deep); line-height: 1.3; border-left: 3px solid var(--leaf); padding-left: 1.2rem; margin: 1.4rem 0; }
.sig { font-family: var(--display); font-style: italic; color: var(--clay); font-size: 1.1rem; }

/* ============================================================
   TESTIMONIALS / happy tails
   ============================================================ */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.6vw, 1.8rem); }
.qcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); transition: transform .35s, box-shadow .35s; }
.qcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.qcard .stars { color: var(--gold); letter-spacing: .12em; margin-bottom: .9rem; }
.qcard blockquote { font-size: 1.02rem; line-height: 1.6; color: var(--ink); font-style: italic; margin-bottom: 1.1rem; }
.qcard .who { display: flex; align-items: center; gap: .8rem; }
.qcard .who .av { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--surface-2); }
.qcard .who b { font-family: var(--display); color: var(--forest-deep); font-weight: 600; }
.qcard .who span { display: block; font-size: .82rem; color: var(--ink-faint); font-weight: 700; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: #f4f7ee; text-align: center; border-radius: clamp(20px, 4vw, 36px);
  padding: clamp(48px, 7vw, 88px) clamp(24px, 5vw, 64px); position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: -30%;
  background: radial-gradient(circle at 22% 30%, color-mix(in srgb, var(--leaf) 30%, transparent), transparent 55%),
              radial-gradient(circle at 82% 78%, color-mix(in srgb, var(--clay) 32%, transparent), transparent 55%);
  pointer-events: none;
}
.cta > * { position: relative; }
.cta h2 { color: #fff; font-size: clamp(30px, 5vw, 60px); margin-bottom: 1rem; }
.cta p { color: #dfe9d4; font-size: clamp(16px, 1.4vw, 19px); max-width: 560px; margin: 0 auto 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { padding-top: clamp(130px, 20vh, 190px); padding-bottom: clamp(40px, 6vw, 70px); text-align: center; background: var(--surface-2); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(38px, 6vw, 72px); margin: 1rem auto .9rem; max-width: 16ch; }
.page-hero p { color: var(--ink-soft); font-size: clamp(16px, 1.4vw, 20px); max-width: 620px; margin: 0 auto; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 2rem); counter-reset: step; }
.step { position: relative; padding-top: .5rem; }
.step .n { font-family: var(--display); font-size: 2.6rem; color: var(--leaf); line-height: 1; }
.step h3 { font-size: 1.3rem; margin: .5rem 0 .5rem; }
.step p { color: var(--ink-soft); font-size: .96rem; }

/* tiers */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.6vw, 1.8rem); }
.tier { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.7rem; text-align: center; box-shadow: var(--shadow-sm); transition: transform .35s, box-shadow .35s; }
.tier:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tier.feature { border: 2px solid var(--clay); }
.tier .amt { font-family: var(--display); font-size: 3rem; color: var(--forest-deep); line-height: 1; }
.tier .amt small { font-size: 1rem; color: var(--ink-faint); }
.tier .tlabel { font-weight: 800; color: var(--clay); letter-spacing: .04em; text-transform: uppercase; font-size: .8rem; margin: .6rem 0 1rem; }
.tier p { color: var(--ink-soft); font-size: .94rem; margin-bottom: 1.4rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 800; font-size: .88rem; margin-bottom: .45rem; color: var(--forest-deep); }
.field input, .field textarea {
  width: 100%; font-family: var(--body); font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: 12px; padding: .85rem 1rem;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--forest); box-shadow: 0 0 0 3px var(--forest-dim); }
.field textarea { min-height: 150px; resize: vertical; }
.info-card { background: var(--forest); color: #eef3e6; border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.2rem); box-shadow: var(--shadow); }
.info-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 1.2rem; }
.info-row { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: 1.1rem; }
.info-row .em { font-size: 1.2rem; }
.info-row a, .info-row span { color: #eef3e6; }
.info-row a:hover { color: #fff; text-decoration: underline; }
.socials { display: flex; gap: .7rem; margin-top: 1.4rem; }
.socials a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.14); display: grid; place-items: center; font-weight: 800; transition: background .25s, transform .25s; }
.socials a:hover { background: rgba(255,255,255,.26); transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--forest-deep); color: #cdd9c4; padding: clamp(48px, 6vw, 72px) 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.6rem; }
.footer-brand img { height: 46px; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: .92; }
.footer-brand p { font-size: .92rem; max-width: 32ch; color: #b9c8af; }
.footer h4 { color: #fff; font-family: var(--body); font-weight: 800; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-links a { display: block; padding: .32rem 0; color: #c3d2b9; font-weight: 600; font-size: .95rem; transition: color .2s; }
.footer-links a:hover { color: var(--leaf); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .84rem; color: #a9baa0; }
.footer-bottom a { color: #cdd9c4; }
.footer-bottom a:hover { color: var(--leaf); }
.footer .ein { font-weight: 700; }

/* ============================================================
   REVEAL (GSAP-driven). Failsafe: visible unless JS marks ready.
   ============================================================ */
html.js-ready .reveal { opacity: 0; }
html.js-ready .hero-anim { opacity: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .pillars, .grid.cols-3, .grid.cols-4, .quotes, .steps, .tiers, .split, .contact-grid, .values { grid-template-columns: 1fr 1fr; }
  .split.flip .split-media { order: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .pillars, .grid.cols-3, .grid.cols-4, .grid.cols-2, .quotes, .steps, .tiers, .split, .contact-grid, .values, .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 1.2rem; }
  .stat:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-badge { left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html.js-ready .reveal, html.js-ready .hero-anim { opacity: 1 !important; }
}
