*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--f-body); color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; line-height: 1.6; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
p    { max-width: 60ch; }

h1 { font-family: var(--f-head); font-weight: 800; font-size: clamp(2.6rem,5.5vw,4.6rem); line-height: 1.05; color: var(--navy); }
h2 { font-family: var(--f-head); font-weight: 800; font-size: clamp(1.8rem,3.5vw,2.8rem); line-height: 1.1; color: var(--navy); }
h3 { font-family: var(--f-head); font-weight: 700; font-size: clamp(1.15rem,2vw,1.45rem); line-height: 1.15; color: var(--navy); }
p  { color: var(--text); }

.wrap { max-width: var(--w); margin: 0 auto; padding: 0 28px; }
.sec  { padding: 80px 0; }
.sec--cream { background: var(--cream); }
.sec--navy  { background: var(--navy); }

/* ── NAV ── */
.nav {
  position: fixed; inset: 0 0 auto; height: var(--nav);
  background: var(--bg); border-bottom: 2px solid var(--navy); z-index: 100;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav__logo  { display: flex; flex-direction: column; gap: 1px; text-decoration: none; }
.nav__logo-name { font-family: var(--f-head); font-weight: 900; font-size: 1.4rem; color: var(--navy); line-height: 1.1; letter-spacing: -0.02em; white-space: nowrap; }
.nav__logo-sub  { font-family: var(--f-body); font-weight: 500; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.nav__links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav__links a { font-size: 1.05rem; font-weight: 600; letter-spacing: var(--nav-ls, .06em); text-transform: var(--nav-tt, uppercase); color: var(--navy); transition: color .15s; }
.nav__links a:hover { color: var(--terra); }
.nav__links .nav--cta { background: var(--terra); color: #fff !important; padding: 7px 18px; border-radius: var(--r); }
.nav__links .nav--cta:hover { background: var(--orange); }
.nav__ham { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav__ham span { display: block; width: 22px; height: 2px; background: var(--navy); }
@media (max-width: 820px) {
  .nav__inner { justify-content: space-between; }
  .nav__links { display: none; position: absolute; top: var(--nav); inset-inline: 0; background: var(--bg); border-bottom: 2px solid var(--navy); flex-direction: column; align-items: flex-start; padding: 20px 28px 28px; gap: 16px; }
  .nav__links.open { display: flex; }
  .nav__ham { display: flex; }
}

/* ── STRIPE BAR ── */
.stripe { height: 8px; background: var(--stripe); }

/* ── HERO ── */
.above-fold { display: flex; flex-direction: column; min-height: calc(100vh - 220px); }
.hero { flex: 1; padding-top: var(--nav); display: grid; grid-template-columns: minmax(300px, 480px) 1fr; overflow: hidden; }
.hero__l { background: var(--navy); display: flex; flex-direction: column; justify-content: flex-end; padding: 64px 52px; position: relative; overflow: hidden; }
.hero__l::before { content: ''; position: absolute; top: -64px; right: -64px; width: 280px; height: 280px; border-radius: 50%; border: 44px solid var(--terra); opacity: .2; }
.hero__l::after  { content: ''; position: absolute; bottom: 32px; left: -48px; width: 160px; height: 160px; border-radius: 50%; background: var(--amber); opacity: .1; }
.hero__meta { display: flex; flex-direction: column; gap: 4px; margin: 14px 0 36px; position: relative; z-index: 1; }
.hero__eyebrow { font-family: var(--f-body); font-size: .875rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin: 0; }
.hero h1 { color: var(--bg); position: relative; z-index: 1; }
.hero h1 em { font-style: italic; color: var(--amber); }
.hero__sub { font-size: 1rem; font-weight: 500; color: rgba(240,232,213,.85); text-transform: uppercase; letter-spacing: .06em; margin: 0; font-family: var(--f-body); }
.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
.hero__r { background: var(--terra); position: relative; overflow: hidden; min-height: 380px; }
.hero__r img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.hero__r::after { content: ''; position: absolute; inset: auto 0 0; height: 6px; background: var(--stripe); }
.hero__photo-cycle { position: absolute; bottom: 20px; right: 16px; z-index: 10; background: rgba(0,0,0,.45); color: #fff; border: none; border-radius: 999px; width: 36px; height: 36px; font-size: 1.4rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s; }
.hero__photo-cycle:hover { background: rgba(0,0,0,.7); }
.hero__ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: rgba(240,232,213,.45); font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; text-align: center; padding: 28px; }
.hero__ph::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 65%; padding-bottom: 65%; border-radius: 50%; background: rgba(240,232,213,.07); }
.hero__ph svg { position: relative; opacity: .5; }
@media (min-width: 1075px) {
  .stat::before { display: none; }
}
@media (max-width: 1074px) {
  .above-fold { min-height: unset; }
  .hero { grid-template-columns: 1fr; grid-template-rows: min(100vw, 55vh) auto; min-height: unset; }
  .hero__r { order: -1; min-height: unset; height: min(100vw, 55vh); }
  .hero__l { padding: 40px 28px 52px; }
}

/* ── STAT BAND ── */
.stat { background: var(--cream); padding: 32px 0; position: relative; }
.stat::before { content: ''; position: absolute; inset: 0 0 auto; height: 5px; background: var(--stripe); }
.stat__inner { display: flex; gap: 40px; align-items: center; justify-content: center; }
.stat__opt { display: flex; gap: 32px; align-items: center; }
.stat__opt[hidden] { display: none; }
.stat__n { font-family: var(--f-head); font-weight: 800; font-size: clamp(2.6rem,5.5vw,4.6rem); line-height: 1.05; color: var(--teal); letter-spacing: -.03em; white-space: nowrap; }
.stat__txt { color: var(--navy); font-family: var(--f-head); font-size: clamp(1rem,2.2vw,1.4rem); font-weight: 600; line-height: 1.4; }
.stat__txt em { color: var(--navy); font-style: normal; text-decoration: underline; text-decoration-color: var(--teal); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.stat__all { background: none; border: none; padding: 0; font: inherit; color: inherit; cursor: pointer; display: inline; }
.stat__all:hover .stat__wavy { text-decoration-color: var(--terra); }
.stat__circle { display: inline-block; border: 2.5px solid var(--teal); border-radius: 1em; padding: 0 0.35em; }
.stat__underline { text-decoration: underline; text-decoration-color: var(--teal); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.stat__wavy { text-decoration: underline wavy var(--teal); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.stat__sub { color: var(--navy); font-size: .95rem; font-family: var(--f-body); margin-top: 8px; max-width: 52ch; }
.stat__prose { font-family: var(--f-head); font-size: clamp(1rem,2.2vw,1.5rem); font-weight: 600; color: var(--navy); line-height: 1.4; max-width: 52ch; }
#statOpt1 .stat__prose { font-size: clamp(1.3rem,2.8vw,2.2rem); line-height: 1.25; }
#statOpt3 { flex: 1; min-width: 0; }
.stat__quote { font-family: var(--f-head); font-weight: 700; font-style: italic; color: var(--teal); line-height: 1; white-space: nowrap; font-size: clamp(1rem,2.2vw,1.5rem); display: block; width: 100%; }
.stat--dark { background: var(--navy); }
.stat--dark::before { background: var(--stripe); }
.stat--dark .stat-switcher { border-color: rgba(240,232,213,.25); color: rgba(240,232,213,.5); }
.stat--dark .stat-switcher:hover { border-color: var(--bg); color: var(--bg); }
.stat-switcher { margin-left: auto; flex-shrink: 0; background: none; border: 1.5px solid var(--border); border-radius: var(--r, 5px); padding: 5px 12px; font-family: var(--f-body); font-size: .7rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); cursor: pointer; white-space: nowrap; transition: border-color .15s, color .15s; }
.stat-switcher:hover { border-color: var(--navy); color: var(--navy); }
@media (max-width: 1024px) {
  .stat__inner { justify-content: flex-start; }
}
@media (max-width: 560px) { .stat__inner { grid-template-columns: 1fr; gap: 16px; } }

/* ── LABEL ── */
.label { display: inline-block; font-family: var(--f-body); font-size: .875rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--terra); border-bottom: 2px solid var(--terra); padding-bottom: 2px; margin-bottom: 14px; }
.sec--navy .label { color: var(--amber); border-color: var(--amber); }

/* ── ABOUT (homepage teaser) ── */
.about-teaser { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: stretch; }
.about-teaser__visual { background: var(--navy); border-radius: var(--r); overflow: hidden; position: relative; }
.about-teaser__visual::after { content: ''; position: absolute; bottom: -36px; right: -36px; width: 130px; height: 130px; border-radius: 50%; background: var(--terra); z-index: 0; }
.about-ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: rgba(240,232,213,.4); font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; text-align: center; z-index: 1; padding: 24px; }
.about-teaser__visual img { width: 100%; height: 100%; object-fit: cover; object-position: top; position: relative; z-index: 1; }
.about-teaser__text { }
.about-teaser__text h2 { margin-bottom: 16px; }
.about-teaser__text p  { color: var(--muted); line-height: 1.8; margin-bottom: 12px; }
.creds { list-style: none; margin-top: 24px; border-top: 2px solid var(--navy); }
.creds li { display: flex; align-items: center; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--border); font-family: var(--f-head); font-size: .88rem; font-weight: 600; color: var(--navy); }
.creds li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--terra); flex-shrink: 0; }
@media (max-width: 1024px) { .about-teaser { grid-template-columns: 1fr; gap: 36px; } .about-teaser__visual { aspect-ratio: 3/2; width: 100%; } }

/* ── DONATE BAND ── */
.donate-band { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.donate-band__l h2 { margin-bottom: 12px; }
.donate-band__l p  { color: var(--muted); line-height: 1.75; font-size: .95rem; }
.donate-band__l small { display: block; margin-top: 8px; color: var(--muted); font-size: .78rem; }
.amounts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 10px; }
.amt { display: flex; align-items: center; justify-content: center; padding: 16px; border: 2px solid var(--navy); border-radius: var(--r); font-family: var(--f-head); font-size: 1.25rem; font-weight: 800; color: var(--navy); background: var(--bg); transition: all .15s; cursor: pointer; }
.amt:hover { background: var(--navy); color: var(--bg); }
@media (max-width: 700px) { .donate-band { grid-template-columns: 1fr; gap: 32px; } }

/* ── VOLUNTEER BAND ── */
.vol-band { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.vol-band__txt h2 { margin-bottom: 10px; }
.vol-band__txt p  { color: var(--muted); line-height: 1.75; max-width: 56ch; }
@media (max-width: 640px) { .vol-band { flex-direction: column; align-items: flex-start; } }

/* ── PLATFORM PAGE ── */
.platform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--grid-gap, 2px); border: var(--grid-border, 2px solid var(--navy)); margin-top: 44px; }
.platform-card { padding: 36px 32px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--card-r, 0px); }

.platform-card__badge { display: inline-block; font-family: var(--f-body); font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--terra); margin-bottom: 4px; }
.platform-card__icon { font-size: 1.8rem; margin-bottom: 12px; }
.platform-card h3 { color: var(--terra); margin-bottom: 16px; font-size: clamp(1.3rem,2.4vw,1.7rem); }
.platform-card__value { color: var(--navy2) !important; }
.platform-card p  { font-size: .9rem; color: var(--muted); line-height: 1.7; }
.platform-card__list { list-style: none; margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.platform-card__list li { font-size: .9rem; color: var(--muted); line-height: 1.5; padding-left: 1.2em; position: relative; }
.platform-card__list li::before { content: '→'; position: absolute; left: 0; color: var(--terra); font-weight: 700; }
@media (max-width: 600px) { .platform-grid { grid-template-columns: 1fr; } }

/* ── PRIORITIES ── */
.priorities { display: flex; flex-direction: column; gap: 40px; margin-top: 32px; }
.priority { display: grid; grid-template-columns: 40px 1fr; gap: 8px; align-items: start; }
.priority__num { font-family: var(--f-head); font-weight: 800; font-size: 3rem; color: var(--teal); line-height: 1; padding-top: 4px; }
.priority__body h2 { margin-bottom: 12px; }
.priority__body p { font-size: .95rem; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.priority__list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.priority__list li { font-size: .95rem; color: var(--muted); line-height: 1.5; padding-left: 1.4em; position: relative; }
.priority__list li::before { content: '→'; position: absolute; left: 0; color: var(--terra); font-weight: 700; }
@media (max-width: 600px) { .priority { grid-template-columns: 48px 1fr; gap: 16px; } .priority__num { font-size: 2.2rem; } }

/* ── PRIORITIES WITH PHOTO ── */
.priorities-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: stretch; }
.priorities-layout__photo { background: var(--navy); border-radius: var(--r); overflow: hidden; }
.priorities-layout__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.priorities-layout__content .label { margin-bottom: 8px; display: block; }
@media (max-width: 1024px) {
  .priorities-layout { grid-template-columns: 1fr; }
  .priorities-layout__photo { aspect-ratio: 3/2; width: 100%; }
}

/* ── ENDORSEMENTS PAGE ── */
.endorsements-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.endorse-card { border: 2px solid var(--navy); padding: 28px; border-radius: var(--r); background: var(--bg); }
.endorse-card__name  { font-family: var(--f-head); font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.endorse-card__title { font-size: .8rem; color: var(--muted); }
.endorse-placeholder { text-align: center; padding: 64px 28px; color: var(--muted); font-size: .9rem; border: 2px dashed var(--border); border-radius: var(--r); grid-column: 1 / -1; }
@media (max-width: 680px) { .endorsements-grid { grid-template-columns: 1fr; } }

/* ── VOLUNTEER FORM PAGE ── */
.vol-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.vol-info h2 { margin-bottom: 14px; }
.vol-info p  { color: var(--muted); line-height: 1.8; margin-bottom: 12px; font-size: .95rem; }
.vol-roles { list-style: none; margin-top: 24px; border-top: 2px solid var(--navy); }
.vol-roles li { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: .88rem; color: var(--muted); }
.vol-roles li::before { content: '→'; color: var(--terra); font-weight: 700; flex-shrink: 0; }
@media (max-width: 760px) { .vol-layout { grid-template-columns: 1fr; gap: 36px; } }

/* ── FORM ── */
.form-box { background: var(--cream); border: 2px solid var(--navy); border-radius: var(--r); padding: 36px; }
.form-box h3 { margin-bottom: 24px; }
.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: .75rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--navy); margin-bottom: 5px; }
.fg label.check { display: flex; font-size: .88rem; font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--muted); margin-bottom: 0; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 10px 13px; border: 2px solid var(--navy); border-radius: var(--r); font-family: var(--f-body); font-size: .93rem; color: var(--text); background: var(--bg); transition: border-color .15s, box-shadow .15s; appearance: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--terra); box-shadow: 0 0 0 3px rgba(201,85,53,.1); }
.fg textarea { resize: vertical; min-height: 76px; }
.fg--row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .fg--row { grid-template-columns: 1fr; } }
.checks { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.check { display: flex; align-items: center; gap: 9px; cursor: pointer; font-size: .88rem; color: var(--muted); }
.check input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--terra); cursor: pointer; flex-shrink: 0; }
.req { color: var(--terra); }
.fstatus { padding: 12px 16px; border-radius: var(--r); font-size: .88rem; margin-top: 14px; display: none; }
.fstatus.ok  { display: block; background: rgba(42,125,142,.1); border: 1.5px solid var(--teal); color: var(--teal); }
.fstatus.err { display: block; background: rgba(201,85,53,.08); border: 1.5px solid var(--terra); color: var(--terra); }
@media (max-width: 760px) { .form-box { padding: 24px 18px; } }

/* ── DONATE PAGE ── */
.donate-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.donate-embed { border: 2px solid var(--navy); border-radius: var(--r); overflow: hidden; background: var(--cream); }
.donate-embed iframe { width: 100%; border: none; min-height: 480px; }
.donate-ph { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 56px 28px; gap: 14px; min-height: 360px; }
.donate-ph h3 { font-size: 1.2rem; }
.donate-ph p   { color: var(--muted); font-size: .88rem; }
.donate-info h2  { margin-bottom: 14px; }
.donate-info p   { color: var(--muted); line-height: 1.8; margin-bottom: 12px; font-size: .93rem; }
.note { border-left: 3px solid var(--navy); padding: 12px 16px; margin-top: 18px; font-size: .82rem; color: var(--muted); background: var(--cream); }
@media (max-width: 760px) { .donate-layout { grid-template-columns: 1fr; gap: 36px; } }

/* ── CONTACT PAGE ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
@media (max-width: 760px) { .contact-layout { grid-template-columns: 1fr; gap: 40px; } }
.contact-grid { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; flex-direction: column; gap: 6px; }
.contact-item__label { font-family: var(--f-body); font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--terra); }
.contact-item__val { font-family: var(--f-head); font-weight: 700; font-size: 1.1rem; color: var(--navy); }
.contact-item__val a { transition: color .15s; }
.contact-item__val a:hover { color: var(--navy2); }
#contactForm .btn--terra:hover,
#volForm .btn--terra:hover { background: var(--navy2); border-color: var(--navy2); }
@media (max-width: 600px) { .contact-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ── PAGE HERO ── */
.page-hero { background: var(--navy); padding: calc(var(--nav) + 52px) 0 52px; position: relative; }
.page-hero::after { content: ''; position: absolute; inset: auto 0 0; height: 5px; background: var(--stripe); }
.page-hero h1 { color: var(--bg); margin-bottom: 12px; }
.page-hero p  { color: rgba(240,232,213,.65); font-size: 1.05rem; max-width: 52ch; }

/* ── QUOTE BAND ── */
.quote-band { padding: 80px 0; background: var(--navy); position: relative; }
.quote-band blockquote { font-family: var(--f-head); font-size: clamp(1.2rem,2.5vw,1.8rem); font-weight: 700;  color: var(--bg); line-height: 1.5; max-width: 72ch; }
.quote-band .emphasis { font-style: normal; font-style: italic; color: var(--amber); }
.quote-band cite { display: block; margin-top: 20px; font-style: normal; font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--amber); font-family: var(--f-body); }

/* ── TOOLTIP ── */
.tooltip-wrap { position: relative; cursor: default; }
.tooltip { position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: var(--bg); color: var(--text); font-family: var(--f-body); font-size: .8rem; font-weight: 500; font-style: normal; letter-spacing: 0; white-space: nowrap; padding: 6px 12px; border-radius: var(--r); box-shadow: 0 4px 16px rgba(0,0,0,.25); opacity: 0; pointer-events: none; transition: opacity .15s; }
.tooltip::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 5px solid transparent; border-top-color: var(--bg); }
.tooltip-wrap:hover .tooltip { opacity: 1; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px; font-family: var(--f-head); font-size: 1rem; font-weight: 700; letter-spacing: var(--btn-ls, .05em); text-transform: var(--btn-tt, uppercase); cursor: pointer; border: 2px solid transparent; border-radius: var(--btn-r, var(--r)); transition: all .15s; line-height: 1; }
.btn--terra  { background: var(--terra);  color: #fff;       border-color: var(--terra);  }
.btn--terra:hover  { background: var(--orange); border-color: var(--orange); }
.btn--navy   { background: var(--navy);   color: var(--bg);  border-color: var(--navy);   }
.btn--navy:hover   { background: var(--navy2);  border-color: var(--navy2);  }
.btn--ghost  { background: transparent;   color: var(--bg);  border-color: rgba(240,232,213,.4); }
.btn--ghost:hover  { border-color: var(--bg); background: rgba(240,232,213,.08); }
.btn--amber  { background: var(--amber);  color: var(--navy); border-color: var(--amber);  }
.btn--amber:hover  { background: var(--orange); border-color: var(--orange); color: #fff; }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--bg); }
.btn--lg { padding: 15px 34px; font-size: 1.1rem; }
.btn--full { width: 100%; justify-content: center; }
.btn__spin { display: none; width: 13px; height: 13px; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
.btn.loading .btn__spin { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── FOOTER ── */
.footer { background: var(--navy); padding: 52px 0 24px; position: relative; }
.footer::before { content: ''; position: absolute; inset: 0 0 auto; height: 5px; background: var(--stripe); }
.footer__land { font-size: .78rem; font-style: italic; color: rgba(240,232,213,.55); line-height: 1.7; border-bottom: 1px solid rgba(240,232,213,.08); padding-bottom: 24px; margin-bottom: 36px; max-width: 100%; }
.footer__grid { display: grid; grid-template-columns: 1fr auto auto; gap: 40px; margin-bottom: 36px; align-items: stretch; }
.footer__grid > div:first-child { display: flex; flex-direction: column; justify-content: space-between; }
.footer__name { font-family: var(--f-head); font-weight: 900; font-size: 1.4rem; color: var(--bg); letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 2px; }
.footer__sub  { font-family: var(--f-body); font-weight: 500; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(240,232,213,.7); margin-bottom: 0; }
.footer__name a, .footer__sub a { color: inherit; text-decoration: none; }
.footer__tag  { font-family: var(--f-head); font-weight: 700; font-size: 2.1rem; color: var(--bg); margin-bottom: 14px; line-height: 1.2; }
.footer__tag em { font-style: italic; color: var(--amber); transition: color .2s; }
.footer__tag a { text-decoration: none; }
.footer__tag a:hover em { color: var(--teal); }
.footer__disc { font-size: .72rem; color: rgba(240,232,213,.55); line-height: 1.65; }
.footer__col  { }
.footer__col-t { font-family: var(--f-body); font-size: .85rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(240,232,213,.85); margin-bottom: 12px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__links a { font-size: .84rem; color: rgba(240,232,213,.85); transition: color .15s; }
.footer__links a:hover { color: var(--amber); }
.footer__bar { border-top: 1px solid rgba(240,232,213,.08); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: .74rem; color: rgba(240,232,213,.70); flex-wrap: wrap; gap: 12px; }
.footer__bar strong { color: var(--amber); }
@media (max-width: 680px) {
  .footer__grid { display: flex; flex-direction: column; gap: 24px; }
  .footer__grid > div:first-child { display: contents; }
  .footer__tag  { order: 1; }
  .footer__col:nth-child(2) { order: 2; }
  .footer__col:nth-child(3) { order: 3; }
  .footer__logo { order: 4; }
}

[id] { scroll-margin-top: calc(var(--nav) + 12px); }

/* ── Theme preview (dev) ── */
.theme-switcher {
  position: fixed; right: 16px; bottom: 16px; z-index: 200;
  font-family: var(--f-body); font-size: .72rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 10px 14px; border-radius: var(--btn-r, 5px);
  border: 2px solid var(--navy); background: var(--bg); color: var(--navy);
  cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,.12);
  transition: background .15s, color .15s, border-color .15s;
}
.theme-switcher:hover { background: var(--navy); color: var(--bg); }
