:root {
  --ink: #251b24;
  --plum: #52213f;
  --plum_deep: #351328;
  --coral: #e05e57;
  --cream: #fbf7f1;
  --paper: #fffdfa;
  --line: #e8ddd3;
  --muted: #6e626a;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.6; }
a { color: inherit; }
.skip { position: fixed; left: 1rem; top: 1rem; transform: translateY(-180%); background: var(--paper); padding: .75rem 1rem; z-index: 100; }
.skip:focus { transform: 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; }

.site_header { position: absolute; inset: 0 0 auto; z-index: 10; color: white; border-bottom: 1px solid rgba(255,255,255,.3); }
.nav_wrap { width: min(1180px, calc(100% - 3rem)); height: 92px; margin: auto; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; font-weight: 700; letter-spacing: .01em; }
.brand_mark { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-family: var(--serif); font-size: 1.45rem; font-style: italic; }
.brand_words { font-size: 1.05rem; }
nav { display: flex; align-items: center; gap: 2rem; }
nav a { text-decoration: none; font-size: .88rem; font-weight: 600; }
.nav_cta { border: 1px solid rgba(255,255,255,.55); border-radius: 99px; padding: .75rem 1.2rem; }
.menu_button { display: none; background: none; border: 0; padding: .5rem; }
.menu_button span:not(.sr_only) { display: block; width: 26px; height: 2px; margin: 5px; background: white; }

.hero { min-height: 760px; position: relative; display: grid; align-items: center; overflow: hidden; color: white; }
.hero_image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero_shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(36,16,29,.86) 0%, rgba(36,16,29,.6) 38%, rgba(36,16,29,.04) 73%); }
.hero_content { position: relative; width: min(1180px, calc(100% - 3rem)); margin: 70px auto 0; }
.hero_content > * { max-width: 650px; }
.eyebrow, .section_label { text-transform: uppercase; letter-spacing: .18em; font-size: .74rem; font-weight: 700; }
.eyebrow { color: #ffd3c6; }
h1, h2, blockquote { font-family: var(--serif); line-height: 1.05; letter-spacing: -.025em; }
h1 { margin: 1rem 0 1.4rem; font-size: clamp(3.5rem, 6.4vw, 6.4rem); }
.hero_intro { font-size: 1.18rem; max-width: 560px; color: rgba(255,255,255,.88); }
.hero_actions { display: flex; gap: .8rem; margin-top: 2.1rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; border-radius: 99px; padding: .8rem 1.45rem; text-decoration: none; font-size: .88rem; font-weight: 700; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.primary { background: var(--coral); color: white; }
.secondary { border: 1px solid rgba(255,255,255,.5); color: white; }
.community_note { position: absolute; right: 5vw; bottom: 3.5rem; display: flex; align-items: baseline; gap: .8rem; }
.community_note strong { font-family: var(--serif); font-size: 2.8rem; }
.community_note span { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }

.section { padding: 8rem max(1.5rem, calc((100% - 1180px) / 2)); }
.section_label { color: var(--coral); margin-bottom: 2rem; }
.mission_grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 7rem; align-items: start; }
.mission h2, .section_heading h2, .act h2, .community h2 { font-size: clamp(2.7rem, 4.4vw, 4.6rem); margin: 0; }
.mission_copy { border-left: 1px solid var(--line); padding-left: 2.2rem; color: var(--muted); }
.mission_copy p:first-child { color: var(--ink); font-size: 1.18rem; }

.statement { background: var(--cream); padding: 7rem 1.5rem; text-align: center; }
.statement_inner { max-width: 900px; margin: auto; }
.quote_mark { margin: 0; color: var(--coral); font-family: var(--serif); font-size: 5rem; line-height: .6; }
blockquote { margin: 1rem 0 0; font-size: clamp(2.2rem, 4vw, 4rem); }

.section_heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 6rem; align-items: end; margin-bottom: 4rem; }
.section_heading p { color: var(--muted); margin: 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); }
.card { min-height: 360px; padding: 2.2rem; border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: flex-end; }
.card + .card { border-left: 0; }
.card.featured { background: var(--plum); color: white; border-color: var(--plum); transform: translateY(-1rem); }
.card_number { margin-bottom: auto; color: var(--coral); font-size: .8rem; letter-spacing: .15em; }
.card h3 { font-family: var(--serif); font-size: 2rem; margin: 0 0 .8rem; }
.card p { margin: 0; color: var(--muted); }
.card.featured p { color: rgba(255,255,255,.76); }

.act { background: var(--plum_deep); color: white; display: grid; grid-template-columns: .9fr 1.1fr; gap: 7rem; }
.section_label.light { color: #ffafa8; }
.act_intro > p { color: rgba(255,255,255,.7); max-width: 510px; }
.act_steps { display: grid; }
.step { display: grid; grid-template-columns: 52px 1fr; gap: 1.5rem; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,.18); }
.step > span { color: #ffafa8; font-size: .78rem; }
.step h3 { margin: 0 0 .3rem; font-family: var(--serif); font-size: 1.6rem; }
.step p { margin: 0; color: rgba(255,255,255,.68); }
.act .button { grid-column: 2; justify-self: start; }
.white { background: white; color: var(--plum_deep); }

.community { text-align: center; background: var(--cream); }
.eyebrow.dark { color: var(--coral); }
.community_copy { max-width: 690px; margin: 1.6rem auto; color: var(--muted); }
.text_link { font-weight: 700; text-underline-offset: .3em; }

footer { padding: 3.5rem max(1.5rem, calc((100% - 1180px) / 2)); display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 1.3rem; background: var(--paper); }
.footer_brand { justify-self: start; }
footer > p { margin: 0; justify-self: end; color: var(--muted); }
.footer_links { display: flex; gap: 1.5rem; }
.footer_links a { font-size: .86rem; }
.copyright { font-size: .78rem; }

@media (max-width: 820px) {
  .nav_wrap { height: 74px; }
  .menu_button { display: block; }
  nav { display: none; position: absolute; top: 74px; left: 0; right: 0; padding: 1.5rem; background: var(--plum_deep); flex-direction: column; align-items: flex-start; }
  nav.open { display: flex; }
  .hero { min-height: 720px; }
  .hero_shade { background: linear-gradient(90deg, rgba(36,16,29,.84), rgba(36,16,29,.44)); }
  .community_note { right: 1.5rem; bottom: 2rem; }
  .mission_grid, .section_heading, .act { grid-template-columns: 1fr; gap: 2.5rem; }
  .mission_copy { border-left: 0; padding-left: 0; }
  .cards { grid-template-columns: 1fr; gap: 1rem; }
  .card + .card { border-left: 1px solid var(--line); }
  .card.featured { transform: none; }
  .act .button { grid-column: 1; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer_brand, footer > p { justify-self: center; }
  .footer_links { justify-content: center; }
}

@media (max-width: 520px) {
  .hero_content { width: min(100% - 2rem, 1180px); }
  h1 { font-size: 3.25rem; }
  .hero_actions { align-items: stretch; flex-direction: column; max-width: 280px; }
  .community_note { display: none; }
  .section { padding-top: 5.5rem; padding-bottom: 5.5rem; }
}

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