:root {
  --orange: #af4627;
  --orange-dark: #9f3109;
  --ink: #171717;
  --charcoal: #57534e;
  --cream: #f5f0e7;
  --paper: #fffdf8;
  --white: #fff;
  --muted: #696661;
  --line: rgba(23, 23, 23, 0.16);
  --radius: 1.4rem;
  --shell: min(1180px, calc(100% - 40px));
  --shadow: 0 24px 60px rgba(35, 25, 18, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, input { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.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; }
.skip-link { position: fixed; top: -4rem; left: 1rem; z-index: 1000; padding: .7rem 1rem; background: var(--ink); color: var(--white); text-decoration: none; border-radius: .5rem; }
.skip-link:focus { top: 1rem; }
:where(a, button):focus-visible { outline: 3px solid var(--white); outline-offset: 3px; box-shadow: 0 0 0 6px var(--ink); }

h1, h2, h3 { font-family: "Manrope", system-ui, sans-serif; letter-spacing: -.05em; line-height: .98; margin: 0; }
h1 { font-size: clamp(3.8rem, 7.4vw, 7.4rem); font-weight: 800; }
h2 { font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 800; }
h3 { font-size: 1.65rem; }
h1 em, h2 em { color: var(--orange); font-style: normal; }
p { margin: 0; }
.section { padding: 8.5rem 0; }
.eyebrow { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.5rem; font: 700 .76rem/1 "Manrope", sans-serif; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 3px; border-radius: 2px; background: var(--orange); }
.eyebrow-light { color: var(--white); }
.eyebrow-light span { background: var(--orange); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 1rem; min-height: 54px; padding: .85rem 1.35rem; border: 1px solid transparent; border-radius: 100px; font-weight: 700; text-decoration: none; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button:hover { transform: translateY(-2px); }
.button span { font-size: 1.2em; }
.button-primary { color: var(--white); background: var(--orange); box-shadow: 0 12px 28px rgba(175,70,39,.28); }
.button-primary:hover { background: var(--orange-dark); box-shadow: 0 16px 34px rgba(175,70,39,.35); }
.button-dark { color: var(--white); background: var(--ink); }
.button-small { min-height: 42px; padding: .55rem 1.05rem; font-size: .87rem; }
.button-outline { color: var(--white); border-color: rgba(255,255,255,.35); background: transparent; }
.button-outline:hover { background: rgba(255,255,255,.08); }
.button-white { color: var(--ink); background: var(--white); }
.text-link { display: inline-flex; gap: .7rem; align-items: center; color: var(--ink); font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--ink); }
.text-link-dark { margin-top: 2rem; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; transition: background .3s, box-shadow .3s, transform .3s; }
.site-header.scrolled { background: rgba(255,253,248,.92); box-shadow: 0 8px 30px rgba(20,20,20,.08); backdrop-filter: blur(12px); }
body.menu-open .site-header { backdrop-filter: none; }
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-mark { flex: 0 0 auto; display: grid; place-items: center; width: 52px; height: 46px; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 3px 5px rgba(23,23,23,.16)); }
.brand-copy { display: flex; flex-direction: column; }
.brand-copy strong { font: 800 1.2rem/1 "Manrope", sans-serif; letter-spacing: -.04em; }
.brand-copy em { color: var(--orange); font-style: normal; }
.brand-copy small { margin-top: .3rem; color: var(--muted); font: 700 .57rem/1 "Manrope", sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav > a:not(.button) { position: relative; font-weight: 600; font-size: .92rem; text-decoration: none; }
.site-nav > a:not(.button)::after { content: ""; position: absolute; inset: auto 0 -7px; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.site-nav > a:not(.button):hover::after { transform: scaleX(1); transform-origin: left; }
.site-nav > a[aria-current="page"]:not(.button)::after { transform: scaleX(1); }
.site-nav > .button[aria-current="page"] { box-shadow: 0 0 0 3px var(--orange); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: none; padding: 10px; }
.menu-toggle > span:not(.sr-only) { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform .25s, opacity .25s; }

.hero { min-height: 100vh; padding: 10.5rem 0 4rem; background: var(--cream); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; min-height: 590px; gap: 4rem; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { font-size: clamp(3.2rem, 4.8vw, 5rem); }
.hero-copy h1 em { position: relative; display: inline-block; }
.hero-copy h1 em::after { content: ""; position: absolute; left: 0; right: 6%; bottom: -.06em; height: .08em; background: var(--orange); border-radius: 100%; transform: rotate(-1deg); }
.hero-intro { max-width: 610px; margin: 2rem 0 2.1rem; color: #55514d; font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.hero-actions { display: flex; align-items: center; gap: 1.8rem; }
.hero-note { display: flex; gap: 1rem; align-items: center; margin-top: 3rem; font-size: .86rem; line-height: 1.35; }
.avatar-stack { display: flex; padding-left: 8px; }
.avatar-stack i { display: grid; place-items: center; width: 36px; height: 36px; margin-left: -8px; color: var(--white); background: var(--ink); border: 3px solid var(--cream); border-radius: 50%; font: 700 .74rem/1 "Manrope", sans-serif; font-style: normal; }
.avatar-stack i:nth-child(2) { background: var(--orange); }
.avatar-stack i:nth-child(3) { color: var(--ink); background: #f6bc32; }
.hero-note p { color: var(--muted); }
.hero-note strong { color: var(--ink); }

.hero-art { position: relative; min-height: 590px; }
.sunburst { position: absolute; width: 570px; height: 570px; right: -100px; top: 20px; opacity: .13; background: repeating-conic-gradient(from 3deg, var(--orange) 0deg 7deg, transparent 7deg 18deg); border-radius: 50%; animation: slow-spin 80s linear infinite; }
.hero-card { position: absolute; box-shadow: var(--shadow); }
.hero-card-main { inset: 62px -8px auto auto; width: min(500px, 92%); aspect-ratio: 4 / 3; overflow: hidden; background: var(--white); border: 8px solid var(--white); border-radius: 1.35rem; box-shadow: var(--shadow); transform: rotate(1deg); }
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: .9rem; }
.hero-paw-badge { position: absolute; z-index: 2; right: 1rem; top: 1rem; display: grid; place-items: center; width: 104px; height: 88px; padding: .45rem; background: rgba(255,255,255,.92); border-radius: 1rem; box-shadow: 0 12px 28px rgba(23,23,23,.18); transform: rotate(-4deg); backdrop-filter: blur(8px); }
.district-paw-logo { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 5px 7px rgba(35,25,18,.14)); }
.hero-card-float { z-index: 3; left: 0; bottom: 30px; width: 225px; padding: 1.4rem 1.6rem; color: var(--white); background: var(--ink); transform: rotate(-5deg); border-radius: 1rem; }
.hero-card-float p { color: rgba(255,255,255,.65); font-size: .8rem; }
.hero-card-float strong { display: block; margin-top: .15rem; color: var(--orange); font: 700 1.35rem/1.1 "Manrope", sans-serif; }
.spark { position: absolute; right: 1.3rem; top: 1.25rem; color: var(--orange); font-size: 1.5rem; }
.doodle-arrow { position: absolute; z-index: 4; right: -32px; bottom: 10px; width: 130px; fill: none; stroke: var(--ink); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; transform: rotate(18deg); }
.quick-links { position: relative; z-index: 5; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 2.2rem; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.quick-links > a { display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; min-height: 105px; padding: 1.2rem 1.5rem; text-decoration: none; border-right: 1px solid var(--line); transition: background .25s; }
.quick-links > a:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.quick-links > a:last-child { border: 0; border-radius: 0 var(--radius) var(--radius) 0; }
.quick-links > a:hover { background: #fff7f1; }
.quick-links small { display: block; color: var(--muted); font-size: .72rem; }
.quick-links strong { font-family: "Manrope", sans-serif; }
.quick-links b { font-size: 1.2rem; transition: transform .25s; }
.quick-links a:hover b { transform: translate(3px, -3px); }
.quick-icon { display: grid; place-items: center; width: 48px; height: 48px; color: var(--white); background: var(--orange); border-radius: 50%; font: 700 1.3rem/1 "Manrope", sans-serif; }
.calendar-icon::before { content: ""; width: 20px; height: 18px; border: 2px solid white; border-radius: 3px; background: linear-gradient(white 0 2px, transparent 2px); }

.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9%; align-items: start; }
.about-copy { padding-top: 2.7rem; }
.about-copy .lead { margin-bottom: 1.5rem; color: var(--ink); font: 600 clamp(1.25rem, 2vw, 1.6rem)/1.45 "Manrope", sans-serif; letter-spacing: -.025em; }
.about-copy > p:not(.lead) { color: var(--muted); font-size: 1.02rem; }
.values-wrap { margin-top: 8rem; padding-top: 7rem; border-top: 1px solid var(--line); scroll-margin-top: 6rem; }
.values-head, .action-head { display: grid; grid-template-columns: 1fr .7fr; align-items: end; gap: 8%; }
.values-head > p, .action-head > p { max-width: 44ch; padding-bottom: .5rem; color: var(--muted); font-size: 1.05rem; }
.values-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.1rem; margin-top: 3.5rem; }
.value-card { position: relative; grid-column: span 2; display: flex; flex-direction: column; min-height: 310px; padding: 2rem; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); }
.value-card:nth-child(4), .value-card:nth-child(5) { grid-column: span 3; min-height: 270px; }
.value-card::after { content: ""; position: absolute; right: -55px; top: -55px; width: 145px; height: 145px; border: 2px solid currentColor; border-radius: 50%; opacity: .15; }
.value-number { font: 700 .68rem/1 "Manrope", sans-serif; letter-spacing: .13em; }
.value-symbol { position: absolute; top: 1.5rem; right: 1.7rem; display: grid; place-items: center; width: 50px; height: 50px; border: 1px solid currentColor; border-radius: 50%; font: 700 1.35rem/1 "Manrope", sans-serif; }
.value-card h3 { margin-top: auto; margin-bottom: .9rem; }
.value-card p { max-width: 38ch; line-height: 1.5; }
.value-community { color: var(--white); background: var(--charcoal); }
.value-partnership { background: var(--cream); }
.value-family { color: var(--white); background: var(--orange); border-color: transparent; }
.value-joy { background: var(--white); }
.value-stewardship { color: var(--white); background: var(--ink); }
.action-head { margin-top: 8rem; padding-top: 7rem; border-top: 1px solid var(--line); scroll-margin-top: 6rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3.5rem; }
.feature-card { position: relative; min-height: 420px; padding: 2rem; overflow: hidden; color: var(--white); background: var(--ink); border-radius: var(--radius); display: flex; flex-direction: column; justify-content: flex-end; box-shadow: 0 18px 40px rgba(35,25,18,.14); isolation: isolate; }
.feature-card::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(to top, rgba(13,13,13,.94) 0%, rgba(13,13,13,.64) 36%, rgba(13,13,13,.12) 74%); }
.feature-photo { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.feature-card:nth-child(1) .feature-photo { object-position: 50% center; }
.feature-card:nth-child(2) .feature-photo { object-position: 48% center; }
.feature-card:nth-child(3) .feature-photo { object-position: 58% center; }
.feature-card:hover .feature-photo { transform: scale(1.035); }
.feature-card h3, .feature-card p { position: relative; z-index: 2; text-shadow: 0 2px 16px rgba(0,0,0,.35); }
.feature-card h3 { margin-bottom: 1rem; }
.feature-card p { max-width: 29ch; color: rgba(255,255,255,.84); line-height: 1.55; }
.feature-orange { transform: rotate(-1deg); }
.feature-cream { transform: translateY(18px); }
.feature-black { transform: rotate(1deg); }

.board { position: relative; overflow: hidden; background: var(--cream); scroll-margin-top: 5rem; }
.board::before { content: ""; position: absolute; width: 420px; height: 420px; left: -250px; top: 18%; border: 2px solid var(--orange); border-radius: 50%; opacity: .14; box-shadow: 0 0 0 55px rgba(175,70,39,.06), 0 0 0 110px rgba(175,70,39,.035); }
.board-head { position: relative; display: grid; grid-template-columns: 1fr .7fr; align-items: end; gap: 8%; }
.board-intro { padding-bottom: .4rem; }
.board-intro > p { color: var(--muted); font-size: 1.05rem; }
.board-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-top: 4rem; }
.board-card { overflow: hidden; background: var(--white); border: 1px solid rgba(23,23,23,.1); border-radius: var(--radius); transition: transform .3s ease, box-shadow .3s ease; }
.board-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.board-portrait { position: relative; display: grid; place-items: center; height: 245px; overflow: hidden; background: var(--orange); }
.board-portrait::after { content: ""; position: absolute; width: 190px; height: 190px; border: 2px solid rgba(255,255,255,.4); border-radius: 50%; }
.board-portrait > span { position: relative; z-index: 2; display: grid; place-items: center; width: 112px; height: 112px; color: var(--white); background: var(--ink); border: 4px solid rgba(255,255,255,.85); border-radius: 50%; font: 800 2.5rem/1 "Manrope", sans-serif; letter-spacing: -.06em; transform: rotate(-4deg); }
.board-portrait i { position: absolute; z-index: 1; right: -12px; width: 120px; height: 18px; background: var(--ink); border-radius: 100% 0 100% 0; transform: rotate(-22deg); }
.board-portrait i:nth-of-type(1) { top: 34px; }
.board-portrait i:nth-of-type(2) { top: 74px; right: -30px; }
.board-portrait i:nth-of-type(3) { top: 114px; right: -5px; }
.portrait-vice-president { background: var(--ink); }
.portrait-vice-president > span { color: var(--ink); background: var(--cream); border-color: var(--orange); font-size: 2rem; transform: rotate(3deg); }
.portrait-vice-president i { background: var(--orange); }
.portrait-treasurer { background: #edc842; }
.portrait-treasurer > span { transform: rotate(4deg); }
.portrait-secretary { background: var(--white); border-bottom: 1px solid var(--line); }
.portrait-secretary::after { border-color: rgba(23,23,23,.18); }
.portrait-secretary > span { background: var(--orange); border-color: var(--ink); transform: rotate(-3deg); }
.board-card-copy { padding: 1.7rem; }
.board-role { margin-bottom: .55rem; color: var(--orange-dark); font: 700 .65rem/1 "Manrope", sans-serif; letter-spacing: .13em; text-transform: uppercase; }
.board-card-copy h3 { margin-bottom: 1rem; font-size: 1.4rem; }
.board-card-copy > p:last-child { color: var(--muted); font-size: .88rem; line-height: 1.55; }
.board-footer { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.board-footer > p { flex: 1; padding: 1.65rem 2rem 1.7rem 2.25rem; color: rgba(255,255,255,.7); background: var(--ink); border-radius: 1rem; box-shadow: inset 7px 0 0 var(--orange); }
.board-footer strong { display: block; margin-bottom: .4rem; color: var(--white); font: 800 clamp(1.25rem, 2vw, 1.75rem)/1.1 "Manrope", sans-serif; letter-spacing: -.035em; }
.board-footer .text-link { flex: 0 0 auto; margin-top: 0; }

.events { color: var(--white); background: var(--ink); }
.events-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; padding-bottom: 3.2rem; }
.events-head h2 em { color: var(--orange); }
.event-list { border-top: 1px solid rgba(255,255,255,.18); }
.event-row { display: grid; grid-template-columns: 150px 1fr auto; gap: 3rem; align-items: center; min-height: 155px; border-bottom: 1px solid rgba(255,255,255,.18); }
.event-date { display: flex; flex-direction: column; color: var(--orange); }
.event-date span { color: rgba(255,255,255,.55); font: 700 .64rem/1 "Manrope", sans-serif; letter-spacing: .16em; }
.event-date strong { margin-top: .35rem; font: 800 2.25rem/1 "Manrope", sans-serif; letter-spacing: -.04em; }
.event-info .tag { display: inline-block; margin-bottom: .65rem; padding: .25rem .6rem; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.22); border-radius: 100px; font: 700 .61rem/1 "Manrope", sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.event-info h3 { margin-bottom: .4rem; }
.event-info p { color: rgba(255,255,255,.56); }
.event-row > a { display: grid; place-items: center; width: 56px; height: 56px; color: var(--white); border: 1px solid rgba(255,255,255,.28); border-radius: 50%; font-size: 1.35rem; text-decoration: none; transition: color .25s, background .25s, transform .25s; }
.event-row:hover > a { color: var(--ink); background: var(--orange); border-color: var(--orange); transform: rotate(8deg); }
.events-note { margin-top: 1.5rem; color: rgba(255,255,255,.45); font-size: .78rem; }

.documents { background: var(--cream); }
.documents-head { display: grid; grid-template-columns: 1fr .7fr; align-items: end; gap: 8%; }
.documents-head > p { max-width: 46ch; padding-bottom: .5rem; color: var(--muted); font-size: 1.05rem; }
.documents-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; margin-top: 3.5rem; }
.document-card { position: relative; display: flex; flex-direction: column; min-height: 500px; padding: clamp(2rem, 4vw, 3rem); overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 16px 42px rgba(35,25,18,.08); }
.document-card::after { content: ""; position: absolute; right: -65px; top: -65px; width: 180px; height: 180px; border: 2px solid var(--orange); border-radius: 50%; opacity: .08; }
.document-card-featured { color: var(--white); background: var(--ink); border-color: var(--ink); }
.document-card-featured::after { border-color: var(--white); opacity: .09; box-shadow: 0 0 0 35px rgba(255,255,255,.025), 0 0 0 70px rgba(255,255,255,.02); }
.document-icon { display: flex; flex-direction: column; justify-content: center; gap: 7px; width: 58px; height: 68px; margin-bottom: 2.2rem; padding: 0 12px; background: var(--orange); border-radius: .6rem; box-shadow: 8px 8px 0 rgba(175,70,39,.16); }
.document-icon span { display: block; height: 3px; background: var(--white); border-radius: 2px; }
.document-icon span:last-child { width: 60%; }
.document-icon-minutes { background: var(--ink); box-shadow: 8px 8px 0 rgba(23,23,23,.12); }
.document-label { margin-bottom: .65rem; color: var(--orange); font: 700 .68rem/1 "Manrope", sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.document-card h3 { margin-bottom: 1rem; font-size: clamp(2rem, 3vw, 2.75rem); }
.document-card > p:not(.document-label) { max-width: 52ch; color: var(--muted); }
.document-card-featured > p:not(.document-label) { color: rgba(255,255,255,.62); }
.document-empty, .minutes-placeholder { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 2.2rem; padding: 1.15rem 1.25rem; border: 1px dashed var(--line); border-radius: .9rem; }
.document-empty { border-color: rgba(255,255,255,.22); }
.document-empty p { color: rgba(255,255,255,.58); font-size: .86rem; line-height: 1.45; }
.document-status { flex: 0 0 auto; padding: .38rem .62rem; color: var(--orange); background: rgba(175,70,39,.12); border-radius: 100px; font: 700 .62rem/1 "Manrope", sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.document-card-featured .document-status { color: var(--white); background: rgba(255,255,255,.1); }
.minutes-placeholder > div { display: flex; flex-direction: column; gap: .3rem; }
.minutes-placeholder strong { font: 800 .95rem/1.2 "Manrope", sans-serif; }
.minutes-placeholder div span { color: var(--muted); font-size: .82rem; line-height: 1.4; }
.document-card .text-link { align-self: flex-start; margin-top: auto; padding-top: 2.3rem; }
.document-card-featured .text-link { color: var(--white); border-color: var(--white); }

.moments { overflow: hidden; background: var(--paper); }
.moments-head { display: grid; grid-template-columns: 1fr .7fr; align-items: end; gap: 8%; }
.moments-head > p { max-width: 46ch; padding-bottom: .5rem; color: var(--muted); font-size: 1.05rem; }
.moments-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: 205px; gap: 1rem; margin-top: 3.5rem; }
.moment-card { position: relative; grid-column: span 3; min-width: 0; margin: 0; overflow: hidden; color: var(--white); background: var(--ink); border-radius: var(--radius); box-shadow: 0 18px 40px rgba(35,25,18,.14); }
.moment-main { grid-column: span 6; grid-row: span 2; }
.moment-card::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(to top, rgba(12,12,12,.78), transparent); pointer-events: none; }
.moment-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.moment-card:nth-child(2) img { object-position: 50% center; }
.moment-card:nth-child(3) img { object-position: 52% center; }
.moment-card:nth-child(4) img { object-position: 50% center; }
.moment-card:nth-child(5) img { object-position: 50% 43%; }
.moment-card:hover img { transform: scale(1.035); }
.moment-card figcaption { position: absolute; z-index: 1; left: 1.25rem; right: 1.25rem; bottom: 1rem; font: 700 clamp(.9rem, 1.4vw, 1.15rem)/1.2 "Manrope", sans-serif; letter-spacing: -.02em; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.moment-main figcaption { left: 1.6rem; bottom: 1.4rem; font-size: clamp(1.15rem, 2vw, 1.55rem); }

.invitation { background: var(--cream); }
.invitation-panel { position: relative; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 7%; padding: clamp(3.5rem, 6vw, 5.5rem); overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 2rem; box-shadow: var(--shadow); }
.invitation-panel::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 10px; background: var(--orange); }
.invitation-panel::after { content: ""; position: absolute; right: -95px; bottom: -150px; width: 400px; aspect-ratio: 1; background: url("assets/fes-ptp-paw.png") center / contain no-repeat; opacity: .035; transform: rotate(-9deg); pointer-events: none; }
.invitation-heading, .invitation-details { position: relative; z-index: 1; }
.invitation-heading h2 { font-size: clamp(3rem, 5vw, 4.9rem); }
.invitation-details > p { max-width: 56ch; color: var(--muted); font-size: 1.08rem; }
.involvement-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .8rem; padding: 0; margin: 2rem 0 2.3rem; list-style: none; }
.involvement-options li { min-width: 0; padding: 1.2rem 1.1rem 1.25rem; background: var(--cream); border: 1px solid var(--line); border-top: 4px solid var(--orange); border-radius: 1rem; }
.involvement-options strong { display: block; margin-bottom: .45rem; font: 800 1.05rem/1.1 "Manrope", sans-serif; letter-spacing: -.025em; }
.involvement-options span { display: block; color: var(--muted); font-size: .84rem; line-height: 1.45; }

.connect { padding-top: 7rem; background: var(--paper); }
.connect-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2rem; padding: 4.5rem; color: var(--white); background: var(--orange); border-radius: 2rem; }
.connect-card::before { content: ""; position: absolute; right: -130px; top: -180px; width: 480px; height: 480px; border: 2px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 50px rgba(255,255,255,.04), 0 0 0 100px rgba(255,255,255,.035); }
.connect-copy, .connect-actions { position: relative; z-index: 1; }
.connect-copy h2 em { color: var(--ink); }
.connect-copy > p:last-child { max-width: 56ch; margin-top: 1.5rem; color: var(--white); }
.connect-actions { display: flex; flex-direction: column; gap: .8rem; min-width: 280px; }
.connect-burst { position: absolute; right: 38%; top: 2rem; font-size: 4rem; color: var(--ink); transform: rotate(9deg); }

.page-hero { position: relative; padding: 12rem 0 7rem; overflow: hidden; background: var(--cream); }
.page-hero::after { content: ""; position: absolute; z-index: 0; right: -11rem; top: 3rem; width: 31rem; aspect-ratio: 1; border: 2px solid rgba(175,70,39,.16); border-radius: 50%; box-shadow: 0 0 0 4rem rgba(175,70,39,.045), 0 0 0 8rem rgba(175,70,39,.025); }
.page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 8%; }
.page-hero h1 { font-size: clamp(3.5rem, 6.5vw, 6.4rem); }
.page-hero-intro { max-width: 40ch; padding-bottom: .6rem; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.24rem); }
.page-hero-events::after { border-color: rgba(23,23,23,.14); }
.page-hero-resources { background: #efe6d8; }
.page-hero-involved { background: #f3dfd5; }
.page-hero-work { background: #f3dfd5; }
.purpose-section { padding-top: 7rem; }
.home-impact .action-head { margin-top: 0; padding-top: 0; border-top: 0; }
.home-impact { background: var(--paper); }
.section-link { display: flex; justify-content: flex-end; margin-top: 2.8rem; }
.work-overview { padding-bottom: 7rem; background: var(--paper); }
.work-overview-head { display: grid; grid-template-columns: .55fr 1.45fr; gap: 9%; align-items: start; }
.work-overview-head .eyebrow { margin-top: .55rem; }
.work-lead { max-width: 49ch; font: 600 clamp(1.35rem, 2.2vw, 2rem)/1.45 "Manrope", sans-serif; letter-spacing: -.035em; }
.pillar-jumps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 4rem; }
.pillar-jumps a { position: relative; display: flex; flex-direction: column; min-height: 185px; padding: 1.6rem; color: var(--ink); text-decoration: none; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.pillar-jumps a:hover { transform: translateY(-4px); border-color: var(--orange); box-shadow: 0 18px 40px rgba(35,25,18,.1); }
.pillar-jumps span { color: var(--orange-dark); font: 700 .7rem/1 "Manrope", sans-serif; letter-spacing: .13em; }
.pillar-jumps strong { max-width: 12ch; margin-top: auto; font: 800 1.35rem/1.15 "Manrope", sans-serif; letter-spacing: -.04em; }
.pillar-jumps b { position: absolute; right: 1.5rem; bottom: 1.35rem; font-size: 1.2rem; }
.work-pillar { scroll-margin-top: 4.5rem; }
.work-community { background: #efe6d8; }
.pillar-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8%; align-items: center; }
.pillar-copy { max-width: 540px; }
.pillar-number { margin-bottom: 1.5rem; color: var(--orange-dark); font: 700 .72rem/1 "Manrope", sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.pillar-copy h2, .fundraising-copy h2 { margin-bottom: 2rem; }
.pillar-lead { margin-bottom: 1.2rem; font: 700 clamp(1.25rem, 2vw, 1.6rem)/1.4 "Manrope", sans-serif; letter-spacing: -.025em; }
.pillar-copy > p:not(.pillar-number):not(.pillar-lead), .fundraising-copy > p:not(.pillar-number):not(.pillar-lead) { color: var(--muted); font-size: 1.05rem; }
.example-chips { display: flex; flex-wrap: wrap; gap: .65rem; padding: 0; margin: 2rem 0 0; list-style: none; }
.example-chips li { padding: .55rem .9rem; background: rgba(255,255,255,.72); border: 1px solid rgba(23,23,23,.12); border-radius: 100px; font-size: .83rem; font-weight: 700; }
.pillar-photo { position: relative; margin: 0; padding: 0 0 2.5rem 2.5rem; }
.pillar-photo::before { content: ""; position: absolute; left: 0; bottom: 0; width: 68%; height: 68%; background: var(--orange); border-radius: var(--radius); transform: rotate(-3deg); }
.pillar-photo img { position: relative; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border: 7px solid var(--white); border-radius: var(--radius); box-shadow: var(--shadow); transform: rotate(1deg); }
.pillar-photo figcaption { position: absolute; z-index: 2; right: -1rem; bottom: .5rem; width: min(280px, 62%); padding: 1.2rem 1.3rem; color: rgba(255,255,255,.72); background: var(--ink); border-radius: 1rem; box-shadow: 0 16px 32px rgba(23,23,23,.22); font-size: .82rem; line-height: 1.45; transform: rotate(-2deg); }
.pillar-photo figcaption span { display: block; margin-bottom: .35rem; color: var(--white); font: 800 1rem/1.2 "Manrope", sans-serif; }
.work-school { background: var(--paper); }
.pillar-layout-reverse { grid-template-columns: .8fr 1.2fr; }
.support-examples { display: grid; gap: .9rem; }
.support-examples article { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: start; padding: 1.6rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 28px rgba(35,25,18,.06); }
.support-examples article:nth-child(2) { margin-left: 2.5rem; }
.support-examples article > span { display: grid; place-items: center; width: 48px; height: 48px; color: var(--white); background: var(--orange); border-radius: 50%; font: 700 1.2rem/1 "Manrope", sans-serif; }
.support-examples article:nth-child(2) > span { color: var(--ink); background: #f6bc32; }
.support-examples article:nth-child(3) > span { background: var(--ink); }
.support-examples h3 { margin: .1rem 0 .6rem; font-size: 1.2rem; line-height: 1.15; letter-spacing: -.035em; }
.support-examples p { color: var(--muted); font-size: .93rem; line-height: 1.5; }
.work-fundraising { position: relative; overflow: hidden; color: var(--white); background: var(--ink); }
.work-fundraising::before { content: ""; position: absolute; right: -16rem; top: -16rem; width: 38rem; aspect-ratio: 1; border: 2px solid rgba(175,70,39,.38); border-radius: 50%; box-shadow: 0 0 0 5rem rgba(175,70,39,.06), 0 0 0 10rem rgba(175,70,39,.035); }
.fundraising-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 9%; align-items: center; }
.fundraising-copy .pillar-number { color: #e58b6e; }
.fundraising-copy > p:not(.pillar-number):not(.pillar-lead) { color: rgba(255,255,255,.65); }
.funding-flow { display: grid; gap: .8rem; padding: 0; margin: 0; list-style: none; }
.funding-flow li { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; padding: 1.5rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); }
.funding-flow li > span { display: grid; place-items: center; width: 52px; height: 52px; color: var(--ink); background: var(--orange); border-radius: 50%; font: 800 .72rem/1 "Manrope", sans-serif; }
.funding-flow strong { display: block; margin-bottom: .35rem; font: 800 1.1rem/1.2 "Manrope", sans-serif; }
.funding-flow p { color: rgba(255,255,255,.58); font-size: .9rem; line-height: 1.5; }
.home-events { padding-top: 7.5rem; }
.home-invitation, .next-step { background: var(--cream); }
.compact-cta { position: relative; display: grid; grid-template-columns: 1fr .72fr; align-items: center; gap: 9%; padding: clamp(3rem, 6vw, 5.25rem); overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 2rem; box-shadow: var(--shadow); }
.compact-cta::after { content: ""; position: absolute; right: -7rem; bottom: -9rem; width: 22rem; aspect-ratio: 1; background: url("assets/fes-ptp-paw.png") center / contain no-repeat; opacity: .035; transform: rotate(-8deg); pointer-events: none; }
.compact-cta > * { position: relative; z-index: 1; }
.compact-cta h2 { font-size: clamp(2.7rem, 4.6vw, 4.6rem); }
.compact-cta > div:last-child p { max-width: 46ch; margin-bottom: 2rem; color: var(--muted); font-size: 1.06rem; }
.useful-links, .participation { background: var(--paper); }
.link-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 3.5rem; }
.link-card { position: relative; display: flex; flex-direction: column; min-height: 190px; padding: 1.7rem; text-decoration: none; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.link-card:hover { transform: translateY(-5px); border-color: var(--orange); box-shadow: var(--shadow); }
.link-card > span { color: var(--orange-dark); font: 700 .68rem/1 "Manrope", sans-serif; letter-spacing: .13em; text-transform: uppercase; }
.link-card > strong { max-width: 15ch; margin-top: auto; font: 800 1.35rem/1.2 "Manrope", sans-serif; letter-spacing: -.035em; }
.link-card > b { position: absolute; right: 1.5rem; bottom: 1.45rem; font-size: 1.25rem; transition: transform .25s ease; }
.link-card:hover > b { transform: translate(3px, -3px); }

.site-footer { padding: 5.5rem 0 2rem; color: var(--white); background: var(--ink); }
.footer-top { display: grid; grid-template-columns: 1fr 1.2fr auto; align-items: start; gap: 4rem; padding-bottom: 4rem; }
.brand-footer .brand-copy strong { color: var(--white); }
.brand-footer .brand-copy small { color: rgba(255,255,255,.45); }
.footer-top > p { max-width: 42ch; color: rgba(255,255,255,.52); }
.footer-top nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem 2.5rem; }
.footer-top nav a, .footer-bottom a { color: inherit; text-decoration: none; }
.footer-top nav a:hover, .footer-bottom a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.55); font-size: .75rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes slow-spin { to { transform: rotate(360deg); } }

@media (max-width: 980px) {
  :root { --shell: min(100% - 32px, 760px); }
  .site-nav { position: fixed; inset: 0; z-index: 1; padding: 8rem 2rem 3rem; background: var(--paper); flex-direction: column; align-items: flex-start; visibility: hidden; opacity: 0; transition: opacity .25s, visibility .25s; }
  .site-nav.open { visibility: visible; opacity: 1; }
  .site-nav > a:not(.button) { font: 800 2rem/1 "Manrope", sans-serif; }
  .menu-toggle { position: relative; z-index: 2; display: block; cursor: pointer; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 9rem; }
  .page-hero { padding: 10rem 0 6rem; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .page-hero-intro { padding-bottom: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 1rem; }
  .hero-copy { max-width: 680px; }
  .hero-art { min-height: 540px; }
  .hero-card-main { left: 12%; right: auto; width: min(500px, 80%); }
  .hero-card-float { left: 7%; }
  .doodle-arrow { right: 7%; }
  .quick-links { grid-template-columns: 1fr; }
  .quick-links > a, .quick-links > a:first-child, .quick-links > a:last-child { border: 0; border-bottom: 1px solid var(--line); border-radius: 0; }
  .quick-links > a:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .quick-links > a:last-child { border: 0; border-radius: 0 0 var(--radius) var(--radius); }
  .about-grid { grid-template-columns: 1fr; gap: 1rem; }
  .about-copy { max-width: 680px; padding-top: 1rem; }
  .values-head, .action-head { grid-template-columns: 1fr; gap: 1.2rem; }
  .values-head > p, .action-head > p { padding-bottom: 0; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card, .value-card:nth-child(4) { grid-column: auto; }
  .value-card:nth-child(5) { grid-column: span 2; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 330px; transform: none; }
  .board-head { grid-template-columns: 1fr; gap: 1.2rem; }
  .board-grid { grid-template-columns: repeat(2, 1fr); }
  .events-head { align-items: flex-start; flex-direction: column; }
  .documents-head { grid-template-columns: 1fr; gap: 1.2rem; }
  .documents-head > p { padding-bottom: 0; }
  .moments-head { grid-template-columns: 1fr; gap: 1.2rem; }
  .moments-head > p { padding-bottom: 0; }
  .moments-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 220px; }
  .moment-card { grid-column: span 1; }
  .moment-main { grid-column: 1 / -1; grid-row: span 2; }
  .invitation-panel { grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem; }
  .connect-card { grid-template-columns: 1fr; padding: 3.2rem; }
  .compact-cta { grid-template-columns: 1fr; gap: 2rem; }
  .work-overview-head { grid-template-columns: 1fr; gap: 1.2rem; }
  .pillar-jumps { grid-template-columns: 1fr; }
  .pillar-jumps a { min-height: 130px; }
  .pillar-layout, .pillar-layout-reverse, .fundraising-grid { grid-template-columns: 1fr; gap: 4rem; }
  .pillar-copy { max-width: 680px; }
  .support-examples article:nth-child(2) { margin-left: 0; }
  .link-card-grid { grid-template-columns: 1fr; }
  .link-card { min-height: 155px; }
  .connect-actions { min-width: 0; max-width: 360px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 28px); --radius: 1rem; }
  .section { padding: 6rem 0; }
  .nav-wrap { min-height: 72px; }
  .hero { padding-top: 7.8rem; }
  .page-hero { padding: 8.5rem 0 4.5rem; }
  .page-hero::after { right: -17rem; top: 1rem; }
  .page-hero h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .hero-grid { min-height: auto; }
  h1 { font-size: clamp(3.25rem, 16vw, 4.8rem); }
  .hero-copy h1 { font-size: clamp(2.35rem, 10vw, 3.2rem); }
  h2 { font-size: clamp(2.6rem, 12vw, 3.7rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.3rem; }
  .hero-art { min-height: 440px; margin-top: 1rem; }
  .sunburst { width: 460px; height: 460px; right: -150px; }
  .hero-card-main { left: 3%; top: 62px; width: 94%; }
  .hero-card-float { left: 0; bottom: 0; width: 205px; }
  .doodle-arrow { display: none; }
  .quick-links > a { min-height: 90px; padding: 1rem; }
  .values-wrap { margin-top: 6rem; padding-top: 5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card, .value-card:nth-child(4), .value-card:nth-child(5) { grid-column: auto; min-height: 270px; }
  .action-head { margin-top: 6rem; padding-top: 5rem; }
  .feature-grid { margin-top: 4.5rem; }
  .feature-card { min-height: 300px; }
  .board-grid { grid-template-columns: 1fr; }
  .board-portrait { height: 220px; }
  .board-footer { align-items: flex-start; flex-direction: column; }
  .event-row { grid-template-columns: 76px minmax(0, 1fr) auto; gap: .65rem; min-height: 170px; }
  .event-date strong { font-size: 1.65rem; }
  .event-info p { font-size: .86rem; }
  .event-row > a { width: 42px; height: 42px; }
  .documents-grid { grid-template-columns: 1fr; }
  .document-card { min-height: 0; }
  .document-empty, .minutes-placeholder { align-items: flex-start; flex-direction: column; }
  .document-card .text-link { margin-top: 0; }
  .moments-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .moment-card, .moment-main { grid-column: auto; grid-row: auto; aspect-ratio: 4 / 3; }
  .moment-card figcaption, .moment-main figcaption { left: 1.1rem; bottom: 1rem; font-size: 1.05rem; }
  .invitation-panel { gap: 2rem; padding: 2.4rem 1.4rem 2.5rem; border-radius: 1.3rem; }
  .invitation-panel::before { width: 7px; }
  .invitation-panel::after { right: -95px; bottom: -105px; width: 260px; }
  .involvement-options { grid-template-columns: 1fr; }
  .connect { padding-top: 4rem; }
  .connect-card { padding: 2.2rem 1.4rem; border-radius: 1.3rem; }
  .connect-actions .button { font-size: .88rem; }
  .connect-burst { display: none; }
  .compact-cta { padding: 2.4rem 1.4rem; border-radius: 1.3rem; }
  .work-overview { padding-bottom: 5rem; }
  .work-lead { font-size: 1.28rem; }
  .pillar-jumps { margin-top: 2.5rem; }
  .pillar-jumps a { min-height: 120px; }
  .pillar-photo { padding: 0 0 2rem 1rem; }
  .pillar-photo figcaption { right: 0; width: 75%; }
  .support-examples article { grid-template-columns: 1fr; }
  .funding-flow li { grid-template-columns: 1fr; }
  .section-link { justify-content: flex-start; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top > p { grid-column: auto; grid-row: auto; }
  .footer-top nav { width: 100%; }
  .footer-bottom { flex-direction: column; gap: .8rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
