:root {
  --bg: #f4f3ed;
  --paper: #ffffff;
  --cream: #faf9f4;
  --navy: #141e3a;
  --navy-deep: #0e1730;
  --ink: #14140f;
  --muted: #575c51;
  --faint: #8c8a7e;
  --line: #e2ded2;
  --lime: #c6e94b;
  --lime-bright: #d2f04b;
  --orange: #f5912e;
  --purple: #a98fd4;
  --coral: #ef5340;
  --green: #c6e94b;
  --maxw: 1440px;
  --display: "Archivo", system-ui, sans-serif;
  --sans: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--green); }

h1, h2, h3 { font-family: var(--display); font-weight: 800; line-height: 0.98; letter-spacing: -0.02em; text-transform: uppercase; margin: 0 0 .45em; color: var(--ink); }
h1 { font-size: clamp(2.9rem, 8vw, 5.5rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h3 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); font-weight: 800; }
h4 { font-family: var(--sans); font-weight: 700; font-size: 1.05rem; margin: 0 0 .4em; }
p { margin: 0 0 1.1em; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 680px; }
.lead-statement { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.3rem, 2.6vw, 2rem); line-height: 1.22; letter-spacing: -0.01em; color: var(--ink); text-wrap: pretty; text-align: center; max-width: min(72vw, 860px); margin: 0 auto; }

.eyebrow {
  display: inline-block;
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  letter-spacing: -0.01em; line-height: 1; color: var(--green);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin: 0 0 .6em;
}

.lead { font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.55; color: var(--muted); font-family: var(--sans); font-weight: 400; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: .98rem;
  color: var(--ink); background: var(--lime);
  padding: 15px 16px 15px 26px; border-radius: 9999px;
  border: 2px solid var(--lime);
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.btn::after {
  content: "↗"; display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%; background: var(--navy); color: var(--lime);
  font-size: 15px;
}
.btn:hover { background: var(--lime-bright); border-color: var(--lime-bright); color: var(--ink); transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.97); }
.pillars { perspective: 1200px; }
.btn.dark { background: var(--navy); border-color: var(--navy); color: #fff; }
.btn.dark::after { background: var(--lime); color: var(--ink); }
.btn.dark:hover { background: var(--navy-deep); border-color: var(--navy-deep); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(20,30,58,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 1.4rem; font-weight: 800; letter-spacing: -0.01em; text-transform: uppercase; color: #fff; }
.brand:hover { color: #fff; }
.brand::before { content: "V"; display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 9px; background: var(--lime); color: var(--ink); font-size: 1.1rem; }

.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; display: block; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav a { font-family: var(--sans); font-size: .93rem; color: rgba(255,255,255,0.72); font-weight: 500; }
.main-nav a:hover, .main-nav a.active { color: var(--lime); }

@media (max-width: 820px) {
  .main-nav {
    position: fixed; inset: 74px 0 auto 0; background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-direction: column; padding: 12px 24px 24px; display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
}
@media (min-width: 821px) {
  .nav-toggle { display: none; }
  .main-nav { display: flex !important; gap: 28px; align-items: center; }
}

.hero { background: var(--navy); color: #fff; padding: clamp(64px, 12vw, 150px) 0 clamp(56px, 9vw, 110px); }
.hero h1 { color: #fff; max-width: 20ch; }
.hero .eyebrow { color: var(--lime); }
.hero .lead { color: rgba(255,255,255,0.72); max-width: 34ch; }

section { padding: clamp(76px, 11vw, 152px) 0; }
section + section { border-top: 1px solid var(--line); }

.grid-offset { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 760px) { .grid-offset { grid-template-columns: 0.8fr 1.2fr; gap: 80px; align-items: start; } }

.pillars { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 24px; }
.roof-title { display: flex; align-items: center; order: -1; }
.roof-title h2 { margin: 0; }
@media (min-width: 620px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .pillars { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 900px) { .pillars-4 { grid-template-columns: repeat(4, 1fr); } }
.decisions { position: relative; overflow: hidden; }
.decisions .wrap { position: relative; z-index: 1; }
.pillar {
  position: relative; border-radius: 30px; padding: 34px 34px 78px;
  border: 0; display: block; overflow: hidden;
  transition: transform .2s ease;
}
.pillar:hover { transform: translateY(-5px); }
.pillar h3 { margin: 0 0 14px; font-size: clamp(1.5rem, 2vw, 1.85rem); }
.pillar p { margin: 0; font-size: .95rem; line-height: 1.55; }
.pillar .chip {
  position: absolute; right: 26px; bottom: 26px;
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px; line-height: 1;
}
.pillar:nth-child(1) { background: var(--orange); }
.pillar:nth-child(2) { background: var(--purple); }
.pillar:nth-child(3) { background: var(--coral); }
.pillar:nth-child(4) { background: var(--green); }
.pillar:nth-child(5) { background: var(--navy); }
.pillar:nth-child(1) h3, .pillar:nth-child(3) h3, .pillar:nth-child(4) h3, .pillar:nth-child(5) h3 { color: #fff; }
.pillar:nth-child(2) h3 { color: var(--ink); }
.pillar:nth-child(1) p, .pillar:nth-child(3) p, .pillar:nth-child(4) p, .pillar:nth-child(5) p { color: rgba(255,255,255,0.88); }
.pillar:nth-child(2) p { color: rgba(20,20,15,0.72); }
.pillar:nth-child(4) h3 { color: var(--ink); }
.pillar:nth-child(4) p { color: rgba(20,20,15,0.72); }
.pillar:nth-child(1) .chip { color: var(--orange); }
.pillar:nth-child(2) .chip { color: var(--purple); }
.pillar:nth-child(3) .chip { color: var(--coral); }
.pillar:nth-child(4) .chip { color: var(--green); }
.pillar:nth-child(5) .chip { color: var(--navy); }

.pill-ico { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 16px; background: rgba(255,255,255,0.9); margin-bottom: 18px; }
.pill-ico svg { width: 27px; height: 27px; }
.pillar:nth-child(1) .pill-ico { color: var(--orange); }
.pillar:nth-child(2) .pill-ico { color: var(--purple); background: #fff; }
.pillar:nth-child(3) .pill-ico { color: var(--coral); }
.pillar:nth-child(4) .pill-ico { color: var(--green); }
.pillar:nth-child(5) .pill-ico { color: var(--navy); }

.media-frame { position: relative; width: 100%; min-height: 300px; border-radius: 30px; overflow: hidden; background: var(--cream); border: 1px solid var(--line); }
.media-tall { min-height: 440px; }
.media-wide { min-height: 340px; }
.media-frame img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; display: block; }

.firm-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 860px) { .firm-grid { grid-template-columns: 1fr 1fr; column-gap: clamp(56px, 7vw, 120px); align-items: stretch; } }
.firm-text { display: flex; flex-direction: column; justify-content: center; gap: clamp(22px, 3vw, 34px); }
.firm-lead { font-family: var(--sans); font-weight: 500; letter-spacing: -0.015em; line-height: 1.3; font-size: clamp(1.35rem, 2.6vw, 1.95rem); color: var(--ink); max-width: 34ch; margin: 0; text-wrap: pretty; }
.firm-lead em { font-style: normal; color: var(--orange); font-weight: 600; }
.firm-notes { max-width: 44ch; display: grid; gap: 22px; }
.firm-notes p { color: var(--muted); margin: 0; }
.firm-notes p:first-child { color: var(--ink); font-size: 1.12rem; line-height: 1.5; }
.firm-media { aspect-ratio: 4 / 3; min-height: 340px; }
@media (min-width: 860px) { .firm-media { aspect-ratio: auto; height: 100%; min-height: 460px; } }

.who-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 860px) { .who-grid { grid-template-columns: 1fr 1fr; column-gap: clamp(56px, 7vw, 120px); align-items: stretch; } }
.who-text { display: flex; flex-direction: column; justify-content: center; gap: clamp(20px, 3vw, 30px); }
.who-lead { font-family: var(--sans); font-weight: 500; letter-spacing: -0.015em; line-height: 1.3; font-size: clamp(1.35rem, 2.6vw, 1.95rem); color: var(--ink); max-width: 34ch; margin: 0; text-wrap: pretty; }
.who-lead em { font-style: normal; color: var(--coral); font-weight: 600; }
.who-media { aspect-ratio: 4 / 3; min-height: 340px; }
@media (min-width: 860px) { .who-media { aspect-ratio: auto; height: 100%; min-height: 460px; } }
.who-note { color: var(--muted); margin: 0; max-width: 44ch; padding-top: 22px; border-top: 1px solid var(--line); }

.getstarted { background: var(--navy); color: #fff; text-align: center; position: relative; overflow: hidden; }
.gs-fx { position: absolute; inset: 0; pointer-events: none; }
.gs-shape { position: absolute; width: clamp(30px, 4vw, 52px); opacity: .5; }
.gs-shape svg { width: 100%; height: auto; display: block; }
@media (max-width: 620px) { .gs-shape { opacity: .35; width: 26px; } }
.getstarted .wrap { position: relative; z-index: 1; }
.getstarted .eyebrow { color: var(--lime); }
.getstarted-row { display: flex; flex-direction: column; align-items: center; gap: 32px; margin-top: 20px; }
.getstarted-line { font-family: var(--display); font-weight: 800; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1.05; font-size: clamp(1.8rem, 4.4vw, 3.2rem); color: #fff; max-width: 30ch; margin: 0 auto; }
.getstarted .btn { white-space: nowrap; }

.values { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 48px; }
@media (min-width: 680px) { .values { grid-template-columns: 1fr 1fr; } }
.value { background: var(--paper); border: 1px solid var(--line); border-radius: 24px; padding: 28px; }
.value-ico { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 14px; background: var(--lime); color: var(--ink); margin-bottom: 16px; }
.value-ico svg { width: 24px; height: 24px; }
.value h4 { font-family: var(--display); font-weight: 800; text-transform: uppercase; color: var(--purple); font-size: 1.2rem; margin-bottom: .4em; }
.value p { color: var(--muted); margin: 0; }

.practice { padding: clamp(64px,8vw,112px) 0; border-top: 1px solid var(--line); position: relative; }
.practice-ico { position: absolute; top: clamp(64px,8vw,112px); right: 0; display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 18px; background: var(--navy); color: var(--lime); }
.practice-ico svg { width: 30px; height: 30px; }
@media (max-width: 620px) { .practice-ico { width: 48px; height: 48px; border-radius: 14px; } .practice-ico svg { width: 24px; height: 24px; } }
.practice .num { font-family: var(--display); font-weight: 800; color: var(--orange); font-size: 1.2rem; margin: 0 0 .4em; }
.covers { list-style: none; padding: 0; margin: 20px 0 0; }
.covers li { padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--muted); padding-left: 24px; position: relative; }
.covers li:first-child { border-top: 1px solid var(--line); }
.covers li::before { content: ""; position: absolute; left: 0; top: 19px; width: 9px; height: 9px; background: var(--lime); border: 1px solid var(--ink); border-radius: 50%; }
.covers-label { font-family: var(--sans); font-weight: 700; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); margin-top: 44px; }

.core-areas { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
@media (min-width: 680px) { .core-areas { grid-template-columns: 1fr 1fr; } }
.core-area { background: var(--cream); border: 1px solid var(--line); border-radius: 24px; padding: 26px; }
.core-area h4 { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 1.1rem; color: var(--ink); }
.core-area p { color: var(--muted); margin: 0; }

.giving-logos { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; padding: 0; list-style: none; }
.giving-logos a { font-family: var(--sans); font-weight: 600; font-size: .95rem; color: var(--ink); background: var(--cream); border: 1px solid var(--line); padding: 10px 18px; border-radius: 9999px; }
.giving-logos a:hover { background: var(--lime); border-color: var(--lime); color: var(--ink); }

.case { padding: clamp(40px,6vw,72px) 0; border-top: 1px solid var(--line); }
.case-tags { display: inline-block; font-family: var(--sans); font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); background: var(--lime); padding: 8px 17px; border-radius: 9999px; margin-bottom: 18px; }
.case h2 { max-width: 20ch; }
.case-block { margin-top: 24px; background: var(--paper); border: 1px solid var(--line); border-radius: 24px; padding: 28px; }
.case-block h4 { font-family: var(--display); font-weight: 800; text-transform: uppercase; color: var(--green); font-size: 1.15rem; margin-bottom: .4em; }
.case-block p { color: var(--muted); margin: 0; }
@media (min-width: 800px) {
  .case-body { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .case-body .case-block:first-child { grid-column: 1 / -1; }
}

.contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 0.7fr 1.3fr; gap: 96px; align-items: stretch; } .contact-grid > div:first-child { display: flex; flex-direction: column; } .contact-grid > div:first-child .media-frame { flex: 1 1 auto; min-height: 260px; } }
.detail-item { padding: 16px 0; border-bottom: 1px solid var(--line); }
.detail-item a { color: var(--ink); }
.detail-item a:hover { color: var(--green); }
.detail-item span { display: block; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); margin-bottom: 4px; }

form { display: grid; gap: 22px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .85rem; font-weight: 700; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 2px solid var(--line);
  border-radius: 14px; padding: 13px 16px; width: 100%;
}
.field textarea { min-height: 150px; resize: vertical; border-radius: 20px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); }
.field-row { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 620px) { .field-row { grid-template-columns: 1fr 1fr; } }
.form-note { color: var(--muted); }
.form-closing { margin: 26px 0 0; color: var(--muted); font-size: 1.05rem; line-height: 1.5; max-width: 60ch; text-wrap: pretty; }

.closing { background: var(--navy); color: #fff; text-align: center; }
.closing p { font-family: var(--sans); font-weight: 500; letter-spacing: -0.005em; font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.5; max-width: 60ch; margin: 0 auto; color: rgba(255,255,255,0.85); text-wrap: pretty; }

.site-footer { background: var(--navy-deep); color: #fff; padding: 60px 0 40px; }
.site-footer .brand { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: start; } .footer-grid > div:last-child { order: -1; justify-self: start; text-align: left; } .footer-grid > div:last-child .footer-nav { justify-items: start; } }
.footer-grid > div > p { color: rgba(255,255,255,0.6) !important; }
.site-footer .brand { font-family: var(--display); font-weight: 800; text-transform: uppercase; letter-spacing: -0.02em; line-height: 0.9; gap: clamp(14px, 2vw, 22px); font-size: clamp(2.6rem, 7vw, 5.5rem); }
.site-footer .brand::before { width: clamp(50px, 8vw, 96px); height: clamp(50px, 8vw, 96px); border-radius: clamp(12px, 2vw, 22px); font-size: clamp(1.5rem, 3vw, 2.8rem); }
.footer-nav { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.footer-nav a { display: inline-flex; align-items: center; gap: 14px; font-family: var(--display); font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; font-size: 1.15rem; color: #fff; }
.footer-nav a::before { content: "\203A"; display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--purple); color: var(--navy); font-size: 1.15rem; font-weight: 700; flex: 0 0 auto; transition: transform .2s ease, background .2s ease; }
.footer-nav a:hover { color: var(--lime); }
.footer-nav a:hover::before { transform: translateX(2px); background: var(--lime); }
.footer-title { font-family: var(--display); font-weight: 800; font-size: clamp(1.3rem, 2vw, 1.9rem); letter-spacing: -0.01em; text-transform: uppercase; color: var(--lime); margin-bottom: 22px; }
.footer-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 1rem; color: rgba(255,255,255,0.5); display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; align-items: center; }
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--lime); }

.hero {
  position: relative; overflow: hidden;
  min-height: clamp(580px, 90vh, 900px);
  display: flex; align-items: flex-end;
  background: var(--navy-deep);
  perspective: 1200px;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .8s ease; }
.hero-video.on { opacity: 1; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(14,23,48,0.55) 0%, rgba(14,23,48,0.1) 40%, rgba(14,23,48,0.85) 100%),
    linear-gradient(70deg, rgba(14,23,48,0.92) 0%, rgba(14,23,48,0.45) 45%, rgba(14,23,48,0.05) 100%);
}
.hero-content { position: relative; z-index: 3; padding-bottom: clamp(56px, 9vw, 120px); padding-top: clamp(120px, 18vh, 220px); }
.hero .wrap { position: relative; z-index: 3; }
.hero--compact { min-height: 0; display: block; padding: clamp(128px, 20vh, 190px) 0 clamp(52px, 8vw, 88px); }

.stack-wrap { padding-bottom: clamp(60px, 10vw, 140px); }
.stack { position: relative; }
.stack-card {
  position: sticky;
  top: calc(80px + var(--i, 0) * 18px);
  width: min(1280px, 92vw);
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 20px 50px -30px rgba(14, 23, 48, 0.45);
  padding: clamp(22px, 2.8vw, 40px);
  transform-origin: center top;
  will-change: transform;
}
.stack-card + .stack-card { margin-top: clamp(24px, 5vw, 56px); }
.sc-head { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 20px; border-bottom: 1px solid var(--line); padding-bottom: clamp(14px, 1.8vw, 20px); margin-bottom: clamp(18px, 2.2vw, 26px); }
.sc-head .case-tags { margin-bottom: 0; font-size: 1rem; letter-spacing: .03em; padding: 10px 22px; }
.sc-head h2 { order: -1; max-width: 22ch; margin: 0; font-size: clamp(1.4rem, 2.4vw, 2rem); }
.sc-grid { display: grid; grid-template-columns: 1fr; gap: clamp(20px, 2.4vw, 32px); align-items: start; }
.sc-media { min-height: 180px; }
.sc-media .media-frame { height: 100%; min-height: 180px; max-height: 280px; border-radius: 16px; overflow: hidden; }
.sc-media img { display: block; width: 100%; height: 100%; min-height: 180px; object-fit: cover; }
.sc-body { display: grid; gap: clamp(18px, 2.6vw, 34px); align-content: start; }
@media (min-width: 760px) { .sc-body { grid-template-columns: repeat(3, 1fr); } }
.sc-body .case-block { margin: 0; }
.sc-body .case-block h4 { font-size: 1.02rem; margin-bottom: 0.3em; }
.sc-body .case-block p { font-size: 0.94rem; line-height: 1.55; }
@media (max-width: 640px) { .stack-card { top: 72px; } }
.hero-content h1 { color: #fff; max-width: 16ch; text-shadow: 0 2px 30px rgba(0,0,0,0.35); }
.hero-content .lead { color: rgba(255,255,255,0.82); max-width: 34ch; }

.hero-fx { position: absolute; inset: 0; z-index: 2; pointer-events: none; transform-style: preserve-3d; }
.fx { position: absolute; will-change: transform; transition: transform .5s cubic-bezier(0.16,1,0.3,1); }
.fx svg { display: block; width: 46px; height: 46px; filter: drop-shadow(0 6px 16px rgba(0,0,0,0.28)); }
.fx-mid svg { width: 66px; height: 40px; opacity: .9; }
.fx-far svg { width: 30px; height: 30px; opacity: .5; filter: blur(1px) drop-shadow(0 4px 10px rgba(0,0,0,0.2)); }
.fx-in { display: block; will-change: transform; }
.drift-a { animation: drift-a 23s ease-in-out infinite; }
.drift-b { animation: drift-b 31s ease-in-out infinite; }
.drift-c { animation: drift-c 27s ease-in-out infinite; }
.drift-d { animation: drift-d 35s ease-in-out infinite; }
@keyframes drift-a {
  0% { transform: translate3d(0,0,0) rotate(0deg); }
  35% { transform: translate3d(18px,-26px,0) rotate(14deg); }
  70% { transform: translate3d(-10px,-8px,0) rotate(-6deg); }
  100% { transform: translate3d(0,0,0) rotate(0deg); }
}
@keyframes drift-b {
  0% { transform: translate3d(0,0,0) rotate(-4deg); }
  40% { transform: translate3d(-24px,18px,0) rotate(6deg); }
  75% { transform: translate3d(12px,30px,0) rotate(-2deg); }
  100% { transform: translate3d(0,0,0) rotate(-4deg); }
}
@keyframes drift-c {
  0% { transform: translate3d(0,0,0) rotate(0deg); }
  50% { transform: translate3d(22px,16px,0) rotate(-18deg); }
  100% { transform: translate3d(0,0,0) rotate(0deg); }
}
@keyframes drift-d {
  0% { transform: translate3d(0,0,0) rotate(6deg); }
  45% { transform: translate3d(-16px,-22px,0) rotate(-10deg); }
  80% { transform: translate3d(-4px,10px,0) rotate(4deg); }
  100% { transform: translate3d(0,0,0) rotate(6deg); }
}
@media (max-width: 640px) { .fx-far { display: none; } }

.legal { color: var(--muted); }
.legal p { margin: 0 0 1.1em; }
.legal h2 { margin: clamp(40px, 5vw, 64px) 0 0.6em; }
.legal h3 { margin: 1.6em 0 0.5em; }
.legal ul { margin: 0 0 1.4em; padding-left: 1.3em; }
.legal li { margin-bottom: 0.5em; color: var(--muted); }
.legal a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--navy); }

.cap-grid { display: grid; grid-template-columns: 1fr; gap: 44px; }
.cap-card { --ac: var(--navy); --tx: #fff; --tx-soft: rgba(255,255,255,0.86); --chip: rgba(255,255,255,0.16); --hair: rgba(255,255,255,0.24); position: relative; display: flex; flex-direction: column; background: var(--ac); border: 0; border-radius: 30px; padding: clamp(30px, 4vw, 56px); overflow: hidden; color: var(--tx); box-shadow: 0 20px 50px -34px rgba(20,20,15,0.5); transition: transform .3s ease, box-shadow .35s ease; }
.cap-card:hover { transform: translateY(-4px); box-shadow: 0 42px 80px -40px rgba(20,20,15,0.55); }
.cap-card.is-light { --tx: var(--ink); --tx-soft: rgba(20,20,15,0.72); --chip: rgba(20,20,15,0.08); --hair: rgba(20,20,15,0.16); }
.cap-top { display: flex; align-items: center; margin-bottom: 22px; }
.cap-ico { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 17px; background: var(--chip); color: var(--tx); }
.cap-ico svg { width: 30px; height: 30px; }
.cap-num { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); line-height: 1; color: var(--tx); opacity: .9; }
.cap-title { font-family: var(--display); font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.02; font-size: clamp(1.7rem, 3vw, 2.5rem); color: var(--tx); margin: 0 0 18px; }
.cap-head { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 760px) { .cap-head { grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 5vw, 72px); align-items: start; } }
.cap-head-l .cap-title { margin-bottom: 0; }
.cap-preview { max-width: none; }
.cap-preview p { color: var(--tx-soft); margin: 0; font-size: clamp(1rem, 1.3vw, 1.15rem); }
.cap-more { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .6s cubic-bezier(0.16,1,0.3,1), opacity .5s ease; }
.cap-more.open { opacity: 1; }
.cap-more-in { display: flex; flex-direction: column; gap: 20px; padding-top: 28px; max-width: 80ch; }
.cap-more-in > p { color: var(--tx-soft); margin: 0; }
.cap-card .covers-label { margin: 8px 0 0; color: var(--tx); opacity: .82; }
.cap-card .core-areas { grid-template-columns: 1fr; gap: 14px; margin: 6px 0 0; }
@media (min-width: 720px) { .cap-card .core-areas { grid-template-columns: 1fr 1fr; } }
.cap-card .core-area { background: var(--chip); border: 1px solid var(--hair); }
.cap-card .core-area h4 { color: var(--tx); }
.cap-card .core-area p { color: var(--tx-soft); }
.cap-card .covers li { border-color: var(--hair); color: var(--tx-soft); }
.cap-card .covers li:first-child { border-top-color: var(--hair); }
.cap-card .covers li::before { background: var(--tx); border-color: var(--tx); }
.cap-sub { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 1.15rem; color: var(--tx); margin: 14px 0 0; }
.cap-card .giving-logos a { background: var(--chip); border: 1px solid var(--hair); color: var(--tx); }
.cap-card .giving-logos a:hover { background: var(--tx); border-color: var(--tx); color: var(--ac); }
.cap-toggle { align-self: flex-start; margin-top: 30px; display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-weight: 700; font-size: .95rem; color: var(--ink); background: #fff; border: 0; border-radius: 9999px; padding: 14px 26px; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.cap-toggle:hover { transform: translateY(-2px); box-shadow: 0 14px 26px -14px rgba(0,0,0,0.45); }
.cap-chev { display: inline-flex; color: var(--ac); transition: transform .35s cubic-bezier(0.16,1,0.3,1); }
.cap-chev svg { width: 16px; height: 16px; }
.cap-toggle.open .cap-chev { transform: rotate(180deg); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s cubic-bezier(0.16,1,0.3,1), transform .6s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .fx-in { animation: none; }
  .fx { transition: none; }
}


.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200; max-width: 1100px; margin: 0 auto; background: var(--navy-deep); color: #fff; border: 1px solid rgba(255,255,255,0.12); border-radius: 18px; padding: 20px 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; box-shadow: 0 24px 60px -24px rgba(0,0,0,0.6); transform: translateY(150%); transition: transform .55s cubic-bezier(0.16,1,0.3,1); }
.cookie-banner.show { transform: none; }
.cookie-text { margin: 0; flex: 1 1 340px; color: rgba(255,255,255,0.8); font-size: .95rem; line-height: 1.5; }
.cookie-actions { display: flex; gap: 12px; flex: 0 0 auto; }
.cookie-btn { font-family: var(--sans); font-weight: 700; font-size: .92rem; border-radius: 9999px; padding: 12px 26px; cursor: pointer; border: 2px solid transparent; transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease; }
.cookie-accept { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.cookie-accept:hover { background: var(--lime-bright); border-color: var(--lime-bright); transform: translateY(-2px); }
.cookie-decline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.cookie-decline:hover { border-color: #fff; transform: translateY(-2px); }
@media (max-width: 640px) { .cookie-banner { padding: 18px; gap: 14px; } .cookie-actions { width: 100%; } .cookie-btn { flex: 1; } }
@media (prefers-reduced-motion: reduce) { .cookie-banner { transition: none; } }


/* layout utils */
.pt-0 { padding-top: 0; }
.section-gap { margin-top: 36px; }
.legal { max-width: 1120px; }
.contact-media { margin-top: 24px; }
.form-heading { margin-top: 14px; }
.form-status { margin-top: 16px; color: var(--ink); }
