/* ============================================================
   SIP Arts Foundation — Shared Stylesheet
   Used by every page. Edit once, applies everywhere.
   Brand palette: Teal / Plum / Gold / Cream / Ink
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:    #1F9A9E;
  --teal-dk: #146E71;
  --plum:    #6B3B5C;
  --plum-lt: #8A5478;
  --gold:    #D4A95C;
  --pink:    #E0457B;
  --cream:   #FBF7F2;
  --ink:     #1F1A1D;
  --muted:   #5A5A72;
  --white:   #ffffff;
  --border:  #E2DDD6;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; }

.skip-link {
  position: absolute; top: -40px; left: 8px;
  background: var(--teal); color: #fff;
  padding: .5rem .9rem; z-index: 200;
  text-decoration: none; border-radius: 4px;
  font-size: .85rem;
}
.skip-link:focus { top: .5rem; }

/* ============= NAV ============= */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 3rem;
  background: rgba(250,248,244,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: .6rem;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo img { height: 54px; width: auto; display: block; max-width: 100%; }
.nav-links { display: flex; gap: 1.6rem; list-style: none; align-items: center; }
.nav-links > li > a {
  font-size: .9rem; font-weight: 500; color: var(--muted);
  text-decoration: none; transition: color .2s;
}
.nav-links > li > a:hover { color: var(--teal); }
/* Mark the current page in the nav */
.nav-links a.active-page { color: var(--teal); font-weight: 600; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-toggle { display: inline-flex; align-items: center; gap: .25rem; cursor: pointer; }
.caret { font-size: .7rem; transition: transform .2s; }
.dropdown-menu {
  list-style: none; position: absolute; top: calc(100% + .6rem); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: .5rem; min-width: 190px;
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 110;
}
.dropdown-menu::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: var(--white);
  border-left: 1px solid var(--border); border-top: 1px solid var(--border);
}
.dropdown-menu li { display: block; }
.dropdown-menu a {
  display: block; padding: .6rem .9rem; border-radius: 8px;
  font-size: .88rem; font-weight: 500; color: var(--ink);
  white-space: nowrap; transition: background .15s, color .15s;
}
.dropdown-menu a:hover { background: var(--cream); color: var(--teal); }
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.has-dropdown:hover .caret { transform: rotate(180deg); }

.nav-actions { display: flex; align-items: center; gap: .7rem; }
.nav-cta {
  background: var(--teal); color: var(--white);
  padding: .55rem 1.4rem; border-radius: 100px;
  font-size: .88rem; font-weight: 600; text-decoration: none;
  transition: background .2s, transform .15s;
  display: inline-flex; align-items: center; gap: .35rem; white-space: nowrap;
}
.nav-cta:hover { background: var(--teal-dk); transform: translateY(-1px); color: var(--white); }
.nav-cta-outline {
  background: transparent; color: var(--plum);
  padding: .55rem 1.2rem; border-radius: 100px;
  font-size: .88rem; font-weight: 600; text-decoration: none;
  border: 2px solid var(--plum); transition: all .15s;
  display: inline-flex; align-items: center; gap: .35rem; white-space: nowrap;
}
.nav-cta-outline:hover { background: var(--plum); color: var(--white); transform: translateY(-1px); }
.nav-toggle {
  display: none; background: none; border: none;
  color: var(--ink); cursor: pointer; font-size: 1.5rem; padding: .35rem;
}

/* Spacer so fixed nav doesn't overlap page content */
.page-top { height: 84px; }

/* ============= SHARED SECTION ============= */
section { padding: 5.5rem 3rem; }
.wrap { max-width: 1180px; margin: 0 auto; }
.section-label {
  display: inline-block; font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: .8rem;
}
.section-title {
  font-family: 'Fraunces', serif; font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15;
  color: var(--ink); margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--teal); font-weight: 600; }
.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 640px; line-height: 1.7; }
.section-header { margin-bottom: 3rem; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ============= BUTTONS ============= */
.btn-primary {
  background: var(--teal); color: var(--white);
  padding: .75rem 1.8rem; border-radius: 100px;
  font-weight: 600; font-size: .95rem; text-decoration: none;
  transition: all .2s; border: 2px solid var(--teal);
  display: inline-flex; align-items: center; gap: .4rem;
}
.btn-primary:hover { background: var(--teal-dk); border-color: var(--teal-dk); transform: translateY(-2px); color: var(--white); }
.btn-outline {
  background: transparent; color: var(--plum);
  padding: .75rem 1.8rem; border-radius: 100px;
  font-weight: 600; font-size: .95rem; text-decoration: none;
  border: 2px solid var(--plum); transition: all .2s;
  display: inline-flex; align-items: center; gap: .4rem;
}
.btn-outline:hover { background: var(--plum); color: var(--white); transform: translateY(-2px); }
.btn-sm {
  display: inline-block; padding: .6rem 1.5rem; border-radius: 100px;
  font-size: .88rem; font-weight: 600; text-decoration: none; transition: all .2s;
}
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-dk); transform: translateY(-1px); color: var(--white); }
.btn-plum { background: var(--plum); color: var(--white); }
.btn-plum:hover { background: var(--plum-lt); transform: translateY(-1px); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { filter: brightness(.92); transform: translateY(-1px); color: var(--ink); }

/* ============= FOOTER ============= */
footer {
  background: var(--ink); color: rgba(255,255,255,.75);
  padding: 3rem 3rem 2.5rem;
  font-size: .85rem; text-align: center; line-height: 1.7;
}
footer strong { color: var(--white); font-weight: 600; }
footer a { color: var(--teal); text-decoration: none; }
footer a:hover { text-decoration: underline; color: var(--gold); }
.footer-nav {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem;
  margin-bottom: 1.6rem; padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-nav a { color: rgba(255,255,255,.8); font-weight: 500; }
.footer-nav a:hover { color: var(--gold); text-decoration: none; }
.footer-legal { margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .78rem; color: rgba(255,255,255,.55); }

/* ============= REVEAL ANIMATION ============= */
/* Safety: only hide for reveal when JS is active (html.js set by include.js).
   Without JS, content stays fully visible. */
.fade-in { opacity: 1; transform: none; transition: opacity .8s ease, transform .8s ease; }
html.js .fade-in { opacity: 0; transform: translateY(20px); }
html.js .fade-in.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============= RESPONSIVE (shared nav/footer) ============= */
@media (max-width: 1024px) {
  nav { padding: 1rem 1.5rem; }
  section { padding: 4rem 1.5rem; }
}
@media (max-width: 820px) {
  .nav-logo img { height: 42px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); padding: 1rem 1.5rem 1.5rem;
    gap: 0; border-bottom: 1px solid var(--border);
  }
  .nav-links.open li { border-bottom: 1px solid var(--border); width: 100%; }
  .nav-links.open li:last-child { border-bottom: none; }
  .nav-links.open > li > a { display: block; padding: .9rem 0; font-size: 1rem; }
  .nav-toggle { display: block; }
  .nav-links.open .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: transparent;
    padding: 0 0 0 1rem; min-width: 0; margin-top: -.3rem;
  }
  .nav-links.open .dropdown-menu::before { display: none; }
  .nav-links.open .dropdown-menu a { padding: .7rem 0; font-size: .92rem; color: var(--muted); }
  .nav-links.open .caret { display: none; }
  .nav-links.open .has-dropdown { border-bottom: 1px solid var(--border); }
  .nav-links.open .nav-actions { flex-direction: column; width: 100%; gap: .6rem; padding-top: 1rem; align-items: stretch; }
  .nav-links.open .nav-cta, .nav-links.open .nav-cta-outline { justify-content: center; }
}

/* ============================================================
   HOME PAGE
   ============================================================ */
/* Hero */
#home {
  min-height: 88vh;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  padding: 6rem 3rem 4rem; position: relative; overflow: hidden; gap: 3rem;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(31,154,158,.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(107,59,92,.08) 0%, transparent 60%);
}
.hero-blob {
  position: absolute; right: -80px; top: 10%;
  width: 460px; height: 460px; z-index: 0;
  background: radial-gradient(circle, rgba(31,154,158,.18) 0%, rgba(212,169,92,.1) 50%, transparent 70%);
  border-radius: 50%; filter: blur(60px); animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); opacity: .8; } 50% { transform: scale(1.08); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .hero-blob { animation: none; } }
.hero-content { position: relative; z-index: 1; }
.arc-affiliate-top {
  display: inline-flex; align-items: center; background: var(--ink);
  border-radius: 12px; padding: .55rem 1rem; margin-bottom: 1rem; text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,.12); transition: transform .15s, box-shadow .2s;
}
.arc-affiliate-top:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(0,0,0,.18); }
.arc-affiliate-top img { height: 40px; width: auto; display: block; }

/* Southern Illinois Pathways banner in hero */
.sip-pathways-banner {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  background: var(--white); border: 1px solid var(--border);
  border-left: 4px solid var(--gold); border-radius: 12px;
  padding: .85rem 1.2rem; margin-top: 1.8rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.05);
}
.sip-pathways-text { font-size: .9rem; color: var(--ink); line-height: 1.45; flex: 1 1 240px; }
.sip-pathways-text strong { color: var(--plum); font-weight: 700; }
.sip-pathways-btn {
  display: inline-flex; align-items: center; gap: .35rem; white-space: nowrap;
  background: var(--gold); color: var(--ink);
  padding: .5rem 1.1rem; border-radius: 100px;
  font-size: .82rem; font-weight: 700; text-decoration: none;
  transition: filter .2s, transform .15s;
}
.sip-pathways-btn:hover { filter: brightness(.93); transform: translateY(-1px); color: var(--ink); }
.hero-tag {
  display: inline-block; background: rgba(31,154,158,.12); color: var(--teal);
  padding: .35rem 1rem; border-radius: 100px; font-size: .76rem; font-weight: 600;
  letter-spacing: .04em; margin-bottom: 1.2rem; text-transform: uppercase;
  border: 1px solid rgba(31,154,158,.25);
}
.hero-content h1 {
  font-family: 'Fraunces', serif; font-weight: 800;
  font-size: clamp(2.3rem, 4.6vw, 3.6rem); line-height: 1.1; margin-bottom: 1.2rem; color: var(--ink);
}
.hero-content h1 em { font-style: italic; color: var(--teal); font-weight: 600; }
.hero-content p { font-size: 1.06rem; color: var(--muted); max-width: 480px; margin-bottom: 1.8rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 2rem; margin-top: 2.2rem; padding-top: 1.8rem;
  border-top: 1px solid var(--border); flex-wrap: wrap;
}
.stat-num { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 800; color: var(--teal); line-height: 1; }
.stat-label { font-size: .82rem; color: var(--muted); margin-top: .2rem; }
.hero-visual { position: relative; z-index: 1; }
.hero-photo-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.16);
}
.hero-photo { width: 100%; height: 100%; max-height: 520px; object-fit: cover; display: block; }
.hero-photo-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(31,26,29,.82) 100%);
  color: #fff; font-size: .82rem; font-weight: 500; padding: 2.2rem 1.2rem .9rem;
}

/* Visitor paths */
#paths { background: var(--white); padding-top: 4rem; padding-bottom: 4rem; }
.paths-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 2.2rem;
}
.path-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: .6rem;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.4rem 1.3rem; text-decoration: none;
  transition: transform .2s, box-shadow .2s, border-color .2s; height: 100%;
  position: relative; overflow: hidden;
}
.path-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--teal);
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.path-card:nth-child(2)::before { background: var(--plum); }
.path-card:nth-child(3)::before { background: var(--gold); }
.path-card:nth-child(4)::before { background: var(--pink); }
.path-card:nth-child(5)::before { background: var(--teal-dk); }
.path-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.08); border-color: transparent; }
.path-card:hover::before { transform: scaleX(1); }
.path-icon { font-size: 1.8rem; line-height: 1; }
.path-title { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.02rem; color: var(--ink); line-height: 1.25; }
.path-go { font-size: .82rem; font-weight: 600; color: var(--teal); margin-top: auto; }
.path-card:nth-child(2) .path-go { color: var(--plum); }
.path-card:nth-child(3) .path-go { color: #b87a00; }
.path-card:nth-child(4) .path-go { color: var(--pink); }
.path-card:nth-child(5) .path-go { color: var(--teal-dk); }

/* Home highlight cards (What We Do snapshot) */
#highlights { background: var(--cream); }
.hl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1rem; }
.hl-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 18px;
  padding: 2rem; transition: transform .25s, box-shadow .25s; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.hl-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.hl-card:nth-child(1)::before { background: var(--teal); }
.hl-card:nth-child(2)::before { background: var(--plum); }
.hl-card:nth-child(3)::before { background: var(--gold); }
.hl-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.hl-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.hl-title { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.25rem; color: var(--ink); margin-bottom: .6rem; }
.hl-text { font-size: .92rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.2rem; flex-grow: 1; }
.hl-link { font-size: .85rem; font-weight: 600; color: var(--teal); text-decoration: none; }
.hl-card:nth-child(2) .hl-link { color: var(--plum); }
.hl-card:nth-child(3) .hl-link { color: #b87a00; }
.hl-link:hover { text-decoration: underline; }

/* Home impact strip */
#home-impact { background: var(--ink); color: var(--white); }
#home-impact .section-title { color: var(--white); }
#home-impact .section-title em { color: var(--gold); }
#home-impact .section-label { color: var(--gold); }
#home-impact .section-sub { color: rgba(255,255,255,.75); }
.hi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 2.5rem; }
.hi-card {
  text-align: center; padding: 1.8rem 1.2rem;
  border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: rgba(255,255,255,.04);
}
.hi-num {
  font-family: 'Fraunces', serif; font-size: 2.6rem; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hi-label { font-size: .86rem; color: rgba(255,255,255,.65); margin-top: .5rem; line-height: 1.4; }
.hi-cta { margin-top: 2.5rem; text-align: center; }

/* Home CTA band */
#home-cta {
  background: linear-gradient(135deg, var(--teal-dk) 0%, var(--plum) 100%);
  color: var(--white); text-align: center; position: relative; overflow: hidden;
}
#home-cta::before {
  content: ''; position: absolute; top: -100px; right: -100px; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(212,169,92,.18) 0%, transparent 70%); border-radius: 50%;
}
#home-cta .wrap { position: relative; z-index: 1; }
#home-cta h2 { font-family: 'Fraunces', serif; font-weight: 800; font-size: clamp(1.8rem,3vw,2.6rem); margin-bottom: 1rem; }
#home-cta h2 em { color: var(--gold); font-style: italic; font-weight: 600; }
#home-cta p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 2rem; font-size: 1.02rem; }
.home-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--plum); padding: .75rem 1.8rem; border-radius: 100px; font-weight: 700; font-size: .95rem; text-decoration: none; transition: transform .2s, box-shadow .2s; display: inline-flex; align-items: center; gap: .4rem; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.25); color: var(--plum); }
.btn-ghost-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); padding: .75rem 1.8rem; border-radius: 100px; font-weight: 600; font-size: .95rem; text-decoration: none; transition: all .2s; }
.btn-ghost-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); color: var(--white); }

@media (max-width: 1024px) {
  #home { grid-template-columns: 1fr; padding: 5rem 1.5rem 3rem; }
  .hero-visual { max-width: 540px; margin: 1rem auto 0; }
  .paths-grid { grid-template-columns: repeat(3, 1fr); }
  .hl-grid { grid-template-columns: 1fr; }
  .hi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .paths-grid { grid-template-columns: 1fr 1fr; }
  .hi-grid { grid-template-columns: 1fr 1fr; }
  .hero-content h1 { font-size: 2.1rem; }
  .home-cta-actions { flex-direction: column; }
  .home-cta-actions a { width: 100%; text-align: center; justify-content: center; }
}

/* ============================================================
   INNER PAGE SHARED — page hero/banner used by all inner pages
   ============================================================ */
.page-hero {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  padding: 7rem 3rem 3.5rem; text-align: center; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: ''; position: absolute; top: -120px; right: -100px; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(31,154,158,.1) 0%, transparent 70%); border-radius: 50%;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--teal); }
.page-hero h1 {
  font-family: 'Fraunces', serif; font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.12; color: var(--ink); margin-bottom: 1rem;
}
.page-hero h1 em { font-style: italic; color: var(--teal); font-weight: 600; }
.page-hero p { font-size: 1.08rem; color: var(--muted); max-width: 640px; margin: 0 auto; line-height: 1.7; }

/* ============================================================
   MEMBERSHIP PAGE
   ============================================================ */
.member-note {
  max-width: 760px; margin: 0 auto 3rem; text-align: center;
  background: rgba(31,154,158,.08); border: 1px solid rgba(31,154,158,.25);
  border-radius: 14px; padding: 1.3rem 1.6rem;
  font-size: 1rem; color: var(--ink); line-height: 1.6;
}
.member-note strong { color: var(--teal-dk); }

.tier-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  max-width: 920px; margin: 0 auto;
}
.tier-grid.community-row { grid-template-columns: 1fr; max-width: 920px; margin-top: 1.5rem; }
.tier-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 20px;
  padding: 2rem; display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s; position: relative; overflow: hidden;
}
.tier-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--teal); }
.tier-card.t-ally::before { background: var(--plum); }
.tier-card.t-sustaining::before { background: var(--gold); }
.tier-card.t-org::before { background: var(--teal-dk); }
.tier-card.t-community::before { background: var(--pink); }
.tier-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.1); border-color: transparent; }
.tier-graphic {
  width: 130px; height: 130px; object-fit: contain; display: block; margin-bottom: 1.2rem;
  border-radius: 12px;
}
.tier-graphic-link { display: block; line-height: 0; }
.tier-name { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.35rem; color: var(--ink); margin-bottom: .2rem; }
.tier-price { font-family: 'Fraunces', serif; font-weight: 800; font-size: 1.5rem; color: var(--teal); margin-bottom: .1rem; }
.tier-card.t-ally .tier-price { color: var(--plum); }
.tier-card.t-sustaining .tier-price { color: #b87a00; }
.tier-card.t-org .tier-price { color: var(--teal-dk); }
.tier-card.t-community .tier-price { color: var(--pink); }
.tier-price-sub { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1.1rem; }
.tier-benefits { font-size: .92rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.6rem; flex-grow: 1; }
.tier-join {
  display: inline-block; padding: .7rem 2rem; border-radius: 100px;
  font-weight: 700; font-size: .92rem; text-decoration: none; transition: all .2s;
  background: var(--teal); color: var(--white); width: 100%;
}
.tier-join:hover { background: var(--teal-dk); transform: translateY(-2px); color: var(--white); }
.tier-card.t-ally .tier-join { background: var(--plum); }
.tier-card.t-ally .tier-join:hover { background: var(--plum-lt); color: var(--white); }
.tier-card.t-sustaining .tier-join { background: var(--gold); color: var(--ink); }
.tier-card.t-sustaining .tier-join:hover { filter: brightness(.92); color: var(--ink); }
.tier-card.t-org .tier-join { background: var(--teal-dk); }
.tier-card.t-org .tier-join:hover { background: var(--ink); color: var(--white); }
.tier-card.t-community .tier-join { background: var(--pink); }
.tier-card.t-community .tier-join:hover { filter: brightness(.93); color: var(--white); }

.member-cta {
  margin-top: 3.5rem; text-align: center; max-width: 700px; margin-left: auto; margin-right: auto;
  font-size: .95rem; color: var(--muted); line-height: 1.6;
}

@media (max-width: 720px) {
  .tier-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PROGRAMS PAGE
   ============================================================ */
/* Featured SIP Pathways banner (top of programs) */
.pathways-feature {
  background: linear-gradient(135deg, var(--plum) 0%, var(--teal-dk) 100%);
  border-radius: 24px; padding: 2.8rem; color: var(--white);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; align-items: center;
  position: relative; overflow: hidden; margin-bottom: 3.5rem;
}
.pathways-feature::before {
  content: ''; position: absolute; top: -80px; right: -80px; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(212,169,92,.25) 0%, transparent 70%); border-radius: 50%;
}
.pathways-feature-content { position: relative; z-index: 1; }
.pathways-feature .eyebrow { font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .7rem; }
.pathways-feature h2 { font-family: 'Fraunces', serif; font-weight: 800; font-size: 1.9rem; line-height: 1.15; margin-bottom: .9rem; }
.pathways-feature p { font-size: .98rem; line-height: 1.7; color: rgba(255,255,255,.9); margin-bottom: 1.5rem; }
.pathways-feature .project-tag { display: inline-block; font-size: .8rem; color: rgba(255,255,255,.75); margin-bottom: 1.2rem; font-style: italic; }
.pathways-visual { position: relative; z-index: 1; text-align: center; }
.pathways-visual img { width: 100%; max-width: 320px; border-radius: 16px; box-shadow: 0 12px 30px rgba(0,0,0,.2); }

.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.program-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 2rem;
  transition: transform .25s, box-shadow .25s; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.program-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.program-card:nth-child(1)::before { background: var(--teal); }
.program-card:nth-child(2)::before { background: var(--plum); }
.program-card:nth-child(3)::before { background: var(--gold); }
.program-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.prog-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.prog-photo { width: calc(100% + 4rem); margin: -2rem -2rem 1.4rem; height: 190px; object-fit: cover; display: block; }
.prog-title { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.25rem; color: var(--ink); margin-bottom: .6rem; }
.prog-text { font-size: .92rem; color: var(--muted); line-height: 1.65; flex-grow: 1; }
.prog-tag { display: inline-block; margin-top: 1rem; padding: .3rem .8rem; border-radius: 100px; font-size: .75rem; font-weight: 600; background: rgba(31,154,158,.1); color: var(--teal); text-decoration: none; align-self: flex-start; }
.program-card:nth-child(2) .prog-tag { background: rgba(107,59,92,.1); color: var(--plum); }
.program-card:nth-child(3) .prog-tag { background: rgba(212,169,92,.15); color: #b87a00; }

/* Approach band */
.approach-band {
  margin-top: 3.5rem; background: linear-gradient(135deg, var(--teal-dk) 0%, var(--plum) 100%);
  border-radius: 24px; padding: 3rem; color: var(--white); position: relative; overflow: hidden;
}
.approach-band::before { content: ''; position: absolute; top: -80px; right: -80px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(212,169,92,.22) 0%, transparent 70%); border-radius: 50%; }
.approach-header { position: relative; z-index: 1; margin-bottom: 2rem; }
.approach-header .eyebrow { font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.approach-header h2 { font-family: 'Fraunces', serif; font-size: 1.8rem; font-weight: 800; line-height: 1.2; }
.approach-header h2 em { color: var(--gold); font-style: italic; font-weight: 600; }
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; position: relative; z-index: 1; }
.approach-step { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 14px; padding: 1.5rem; }
.approach-step-num { font-family: 'Fraunces', serif; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.approach-step-title { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.15rem; margin-bottom: .6rem; }
.approach-step-text { font-size: .88rem; opacity: .9; line-height: 1.6; }

@media (max-width: 1024px) {
  .pathways-feature { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: start; }
.mvv { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 2rem; }
.mvv-item { background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--teal); border-radius: 12px; padding: 1.3rem 1.5rem; }
.mvv-item:nth-child(2) { border-left-color: var(--plum); }
.mvv-item:nth-child(3) { border-left-color: var(--gold); }
.mvv-label { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.05rem; color: var(--teal); margin-bottom: .4rem; }
.mvv-item:nth-child(2) .mvv-label { color: var(--plum); }
.mvv-item:nth-child(3) .mvv-label { color: #b87a00; }
.mvv-text { font-size: .94rem; color: var(--muted); line-height: 1.65; }

/* Pathways to Self-Advocacy / post-school cliff box */
.cliff-box { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 2rem; box-shadow: 0 8px 28px rgba(0,0,0,.05); }
.cliff-box h3 { font-family: 'Fraunces', serif; font-weight: 800; font-size: 1.3rem; color: var(--ink); line-height: 1.2; margin-bottom: .25rem; }
.cliff-sub { font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--plum); margin-bottom: 1.1rem; }
.cliff-box p { font-size: .94rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.cliff-box p:last-child { margin-bottom: 0; }
.cliff-box .lead-in { color: var(--ink); font-weight: 500; }
.cliff-list { list-style: none; margin: 0 0 1rem; padding: 0; }
.cliff-list li { position: relative; padding-left: 1.5rem; font-size: .92rem; color: var(--muted); line-height: 1.55; margin-bottom: .5rem; }
.cliff-list li::before { content: ''; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.cliff-list.teal-dots li::before { background: var(--teal); }
.cliff-project-tag { display: inline-block; margin-top: .4rem; font-size: .8rem; font-style: italic; color: var(--plum); }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; margin-top: 1.6rem; }
.value-chip { display: flex; align-items: center; gap: .5rem; background: var(--white); border: 1px solid var(--border); border-radius: 100px; padding: .55rem 1rem; font-size: .85rem; font-weight: 500; color: var(--ink); }
.value-chip span { font-size: 1rem; }

/* Lineage timeline */
#lineage { background: var(--white); }
.lineage-wrap { text-align: center; }
.lineage-wrap .section-label, .lineage-wrap .section-title { }
.lineage-wrap .section-sub { margin: 0 auto 2.5rem; }
.lineage-track { display: flex; align-items: stretch; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.lineage-node { background: var(--cream); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem 1.4rem; max-width: 260px; flex: 1 1 200px; }
.lineage-node-year { font-family: 'Fraunces', serif; font-weight: 800; font-size: 1.6rem; color: var(--teal); margin-bottom: .3rem; }
.lineage-node:nth-child(3) .lineage-node-year { color: var(--plum); }
.lineage-node:nth-child(5) .lineage-node-year { color: #b87a00; }
.lineage-node-label { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.02rem; color: var(--ink); margin-bottom: .4rem; }
.lineage-node-sub { font-size: .85rem; color: var(--muted); line-height: 1.5; }
.lineage-arrow { display: flex; align-items: center; font-size: 1.6rem; color: var(--gold); font-weight: 700; }
.lineage-caption { font-size: .9rem; color: var(--muted); max-width: 720px; margin: 0 auto; line-height: 1.6; font-style: italic; }

/* Who We Serve audience cards */
#who-we-serve { background: var(--cream); }
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
.audience-card { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 2.2rem; overflow: hidden; position: relative; }
.audience-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--teal); }
.audience-card:nth-child(2)::before { background: var(--plum); }
.audience-photo { width: calc(100% + 4.4rem); margin: -2.2rem -2.2rem 1.4rem; height: 200px; object-fit: cover; display: block; }
.audience-age { display: inline-block; background: rgba(31,154,158,.12); color: var(--teal); padding: .3rem 1rem; border-radius: 100px; font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 1rem; }
.audience-card:nth-child(2) .audience-age { background: rgba(107,59,92,.12); color: var(--plum); }
.audience-title { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.25rem; color: var(--ink); line-height: 1.25; margin-bottom: .7rem; }
.audience-desc { font-size: .94rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.1rem; }
.audience-list { list-style: none; padding: 0; margin: 0; }
.audience-list li { position: relative; padding-left: 1.4rem; font-size: .9rem; color: var(--muted); line-height: 1.5; margin-bottom: .6rem; }
.audience-list li::before { content: ''; position: absolute; left: 0; top: .5em; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.audience-card:nth-child(2) .audience-list li::before { background: var(--plum); }
.audience-list strong { color: var(--ink); font-weight: 600; }

/* Board */
#board { background: var(--white); }
.board-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.board-card { background: var(--cream); border: 1px solid var(--border); border-radius: 16px; padding: 1.6rem; text-align: center; transition: transform .2s, box-shadow .2s; position: relative; overflow: hidden; }
.board-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.board-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.board-card:hover::before { transform: scaleX(1); }
.board-card:nth-child(3n+2)::before { background: var(--plum); }
.board-card:nth-child(3n)::before { background: var(--gold); }
.board-photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; display: block; border: 3px solid var(--white); box-shadow: 0 4px 14px rgba(0,0,0,.1); }
.board-role { font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--teal); margin-bottom: .3rem; }
.board-card:nth-child(3n+2) .board-role { color: var(--plum); }
.board-card:nth-child(3n) .board-role { color: #b87a00; }
.board-name { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.08rem; color: var(--ink); margin-bottom: .3rem; line-height: 1.25; }
.board-desc { font-size: .82rem; font-weight: 600; color: var(--muted); margin-bottom: .7rem; line-height: 1.4; }
.board-bio { font-size: .84rem; color: var(--muted); line-height: 1.55; text-align: left; }

.advisor-block { margin-top: 2.5rem; }
.advisor-label { text-align: center; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; }
.advisor-grid { display: flex; justify-content: center; }
.advisor-card { background: var(--cream); border: 1px solid var(--border); border-radius: 16px; padding: 1.8rem; max-width: 640px; text-align: center; position: relative; overflow: hidden; }
.advisor-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gold); }
.advisor-card .board-role { color: #b87a00; }

.board-note { margin-top: 2.5rem; text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; font-size: .9rem; color: var(--muted); line-height: 1.6; background: rgba(31,154,158,.06); border: 1px solid rgba(31,154,158,.18); border-radius: 14px; padding: 1.2rem 1.6rem; }
.board-note strong { color: var(--teal-dk); }

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: repeat(2, 1fr); }
  .lineage-arrow { display: none; }
}
@media (max-width: 560px) {
  .board-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   IMPACT PAGE
   ============================================================ */
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-bottom: 3.5rem; }
.impact-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 2rem 1.4rem; text-align: center; position: relative; overflow: hidden; }
.impact-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--teal); }
.impact-card:nth-child(2)::before { background: var(--plum); }
.impact-card:nth-child(3)::before { background: var(--gold); }
.impact-card:nth-child(4)::before { background: var(--teal-dk); }
.impact-num { font-family: 'Fraunces', serif; font-size: 2.6rem; font-weight: 800; color: var(--teal); line-height: 1; }
.impact-card:nth-child(2) .impact-num { color: var(--plum); }
.impact-card:nth-child(3) .impact-num { color: #b87a00; }
.impact-card:nth-child(4) .impact-num { color: var(--teal-dk); }
.impact-label { font-size: .85rem; color: var(--muted); margin-top: .6rem; line-height: 1.45; }

.growth-wrap { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 2.4rem; margin-bottom: 3rem; }
.growth-header { margin-bottom: 1.8rem; }
.growth-title { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.3rem; color: var(--ink); }
.growth-note { font-size: .88rem; color: var(--muted); margin-top: .2rem; }
.growth-rows { display: flex; flex-direction: column; gap: 1rem; }
.growth-row { display: grid; grid-template-columns: 110px 1fr 50px; align-items: center; gap: 1rem; }
.growth-year { font-size: .85rem; font-weight: 600; color: var(--muted); }
.growth-bar-wrap { background: var(--cream); border-radius: 100px; height: 22px; overflow: hidden; }
.growth-bar { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--teal), var(--gold)); }
.growth-count { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.05rem; color: var(--teal); text-align: right; }
.growth-footnote { margin-top: 1.8rem; padding-top: 1.4rem; border-top: 1px solid var(--border); font-size: .85rem; color: var(--muted); line-height: 1.6; font-style: italic; }

.topics-block { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 2.4rem; text-align: center; }
.topics-block h3 { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.3rem; color: var(--ink); margin-bottom: 1.4rem; }
.topics-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; }
.topics-tag { background: var(--cream); border: 1px solid var(--border); border-radius: 100px; padding: .5rem 1.1rem; font-size: .85rem; font-weight: 500; color: var(--ink); }

@media (max-width: 1024px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .impact-grid { grid-template-columns: 1fr; }
  .growth-row { grid-template-columns: 80px 1fr 40px; gap: .6rem; }
  .growth-year { font-size: .76rem; }
}

/* ============================================================
   GET INVOLVED PAGE
   ============================================================ */
.involved-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.involved-card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 2.2rem; text-align: center; transition: transform .25s, box-shadow .25s; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.involved-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--teal); }
.involved-card:nth-child(2)::before { background: var(--plum); }
.involved-card:nth-child(3)::before { background: var(--gold); }
.involved-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.involved-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.involved-title { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.3rem; color: var(--ink); margin-bottom: .7rem; }
.involved-text { font-size: .92rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.4rem; flex-grow: 1; }

.partners-band { margin-top: 3.5rem; background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 2.6rem; }
.partners-band h3 { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.3rem; color: var(--ink); text-align: center; margin-bottom: .5rem; }
.partners-band .partners-intro { text-align: center; font-size: .92rem; color: var(--muted); max-width: 620px; margin: 0 auto 2rem; line-height: 1.6; }
.partner-sub-label { text-align: center; font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin: 0 0 1.2rem; }
.partner-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2rem 2.6rem; margin-bottom: 1rem; }
.partner-logos.supported { margin-bottom: 2.4rem; padding-bottom: 2.2rem; border-bottom: 1px solid var(--border); }
.partner-logos img { height: 60px; width: auto; max-width: 160px; object-fit: contain; opacity: .85; transition: opacity .2s, transform .2s; }
.partner-logos a:hover img { opacity: 1; transform: translateY(-2px); }

.funder-cta-band { margin-top: 3rem; background: linear-gradient(135deg, var(--teal-dk) 0%, var(--plum) 100%); color: var(--white); border-radius: 20px; padding: 2.8rem; text-align: center; position: relative; overflow: hidden; }
.funder-cta-band::before { content: ''; position: absolute; top: -80px; right: -80px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(212,169,92,.2) 0%, transparent 70%); border-radius: 50%; }
.funder-cta-band > * { position: relative; z-index: 1; }
.funder-cta-band h3 { font-family: 'Fraunces', serif; font-weight: 800; font-size: 1.6rem; margin-bottom: .8rem; }
.funder-cta-band p { font-size: .98rem; color: rgba(255,255,255,.88); max-width: 600px; margin: 0 auto 1.6rem; line-height: 1.65; }

@media (max-width: 1024px) {
  .involved-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.5rem; align-items: start; }
.contact-info-col .contact-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 1.4rem 1.6rem; margin-bottom: 1.1rem; border-left: 4px solid var(--teal); }
.contact-info-col .contact-card:nth-child(2) { border-left-color: var(--plum); }
.contact-info-col .contact-card:nth-child(3) { border-left-color: var(--gold); }
.contact-card-label { font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); margin-bottom: .3rem; }
.contact-info-col .contact-card:nth-child(2) .contact-card-label { color: var(--plum); }
.contact-info-col .contact-card:nth-child(3) .contact-card-label { color: #b87a00; }
.contact-card a { color: var(--ink); text-decoration: none; font-weight: 500; }
.contact-card a:hover { color: var(--teal); }

.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 2.2rem; box-shadow: 0 10px 32px rgba(0,0,0,.05); }
.contact-form-card h3 { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.35rem; color: var(--ink); margin-bottom: .4rem; }
.contact-form-card .form-intro { font-size: .9rem; color: var(--muted); margin-bottom: 1.6rem; line-height: 1.55; }
.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.form-field input, .form-field textarea { width: 100%; border: 1px solid var(--border); border-radius: 10px; padding: .75rem .9rem; font-family: 'DM Sans', sans-serif; font-size: .95rem; color: var(--ink); background: var(--cream); transition: border-color .2s, box-shadow .2s; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(31,154,158,.15); background: var(--white); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-submit { background: var(--teal); color: var(--white); border: none; border-radius: 100px; padding: .8rem 2.2rem; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: .95rem; cursor: pointer; transition: background .2s, transform .15s; width: 100%; }
.form-submit:hover { background: var(--teal-dk); transform: translateY(-1px); }
.form-submit:disabled { opacity: .6; cursor: default; transform: none; }
.form-status { margin-top: 1rem; font-size: .9rem; text-align: center; line-height: 1.5; min-height: 1.2em; }
.form-status.success { color: var(--teal-dk); font-weight: 600; }
.form-status.error { color: var(--pink); font-weight: 600; }

@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* ============================================================
   HOME PAGE — preview sections (funders + membership teaser)
   ============================================================ */
#home-previews { background: var(--cream); }
.preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; margin-top: 1rem; }
.preview-card { border-radius: 22px; padding: 2.6rem; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.preview-card.funders { background: linear-gradient(135deg, var(--plum) 0%, var(--teal-dk) 100%); color: var(--white); }
.preview-card.membership { background: var(--white); border: 1px solid var(--border); }
.preview-card::after { content: ''; position: absolute; top: -70px; right: -70px; width: 240px; height: 240px; border-radius: 50%; }
.preview-card.funders::after { background: radial-gradient(circle, rgba(212,169,92,.22) 0%, transparent 70%); }
.preview-card.membership::after { background: radial-gradient(circle, rgba(31,154,158,.1) 0%, transparent 70%); }
.preview-card > * { position: relative; z-index: 1; }
.preview-eyebrow { font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .8rem; }
.preview-card.funders .preview-eyebrow { color: var(--gold); }
.preview-card.membership .preview-eyebrow { color: var(--teal); }
.preview-card h3 { font-family: 'Fraunces', serif; font-weight: 800; font-size: 1.55rem; line-height: 1.2; margin-bottom: .9rem; }
.preview-card.membership h3 { color: var(--ink); }
.preview-card p { font-size: .96rem; line-height: 1.65; margin-bottom: 1.6rem; flex-grow: 1; }
.preview-card.funders p { color: rgba(255,255,255,.9); }
.preview-card.membership p { color: var(--muted); }
.preview-tiers { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.6rem; }
.preview-tier-chip { background: var(--cream); border: 1px solid var(--border); border-radius: 100px; padding: .35rem .9rem; font-size: .8rem; font-weight: 600; color: var(--ink); }

/* Home teaser strip for post-school cliff */
.cliff-teaser { margin-top: 2.5rem; background: var(--white); border: 1px solid var(--border); border-left: 5px solid var(--gold); border-radius: 16px; padding: 1.8rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cliff-teaser-text { flex: 1 1 320px; }
.cliff-teaser-text strong { font-family: 'Fraunces', serif; font-size: 1.1rem; color: var(--ink); display: block; margin-bottom: .3rem; }
.cliff-teaser-text span { font-size: .92rem; color: var(--muted); line-height: 1.55; }

@media (max-width: 1024px) {
  .preview-grid { grid-template-columns: 1fr; }
}

/* ============= GALLERY (auto-scroll marquee) ============= */
#gallery { background: var(--cream); padding-top: 4.5rem; padding-bottom: 4.5rem; }
.gallery-marquee {
  margin-top: 2.5rem;
  overflow: hidden;
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.gallery-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: gallery-scroll 70s linear infinite;
}
.gallery-marquee:hover .gallery-track { animation-play-state: paused; }
.g-item {
  flex: 0 0 auto;
  width: 300px;
  height: 320px;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(31,26,29,.10);
  background: #fff;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.g-item:hover img { transform: scale(1.06); }
@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 720px) {
  .g-item { width: 230px; height: 250px; }
  .gallery-track { animation-duration: 55s; }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-track { animation: none; flex-wrap: nowrap; overflow-x: auto; }
}

/* ============= ANCHOR SCROLL OFFSET (clears sticky nav) ============= */
[id="partners"],
[id="donate"],
[id="volunteer"],
[id="funders"],
[id="who-we-serve"],
[id="board"] {
  scroll-margin-top: 100px;
}


/* =====================================================================
   SIP ARTS FOUNDATION. SPLAT THEME OVERLAY

   HOW TO USE
   Paste this at the very BOTTOM of public_html/styles.css.
   Change nothing above it. Change no HTML. Every page keeps every word.

   Your stylesheet is driven by 11 CSS variables. Redefining them here
   reskins all 524 classes across every page at once.

   WHAT THIS DOES
   1  Repaints the palette with the logo splash colors
   2  Adds orange, lime, sky, and turquoise as new accents
   3  Optional font swap to Poppins and Caveat  (delete block 3 to keep Fraunces)
   4  Warms up cards, buttons, and section headers
   5  Hardens the whole site for phones and tablets
   6  Styles the affiliations band and hosting credit
   ===================================================================== */


/* =====================================================================
   1. PALETTE. The whole site follows these.
   ===================================================================== */
:root{
  /* remapped to the logo paint splash */
  --teal:    #12909E;   /* was #1F9A9E */
  --teal-dk: #0D7280;   /* was #146E71 */
  --plum:    #5B2A86;   /* was #6B3B5C, now the logo purple */
  --plum-lt: #7B3FA0;   /* was #8A5478 */
  --gold:    #FFC629;   /* was #D4A95C, now the logo yellow */
  --pink:    #E01A76;   /* was #E0457B, now the logo magenta */
  --cream:   #FDFBF7;
  --ink:     #1B2333;
  --muted:   #5C6575;
  --white:   #ffffff;
  --border:  #E5E9EF;

  /* new accents your stylesheet did not have */
  --orange:    #F0742A;
  --orange-dk: #C9591A;
  --lime:      #7DB93C;
  --lime-dk:   #5F8A22;
  --sky:       #4FA9E8;
  --turquoise: #2BB8C4;
  --navy:      #14203A;

  /* soft tints for card washes */
  --teal-soft:    #E4F4F5;
  --plum-soft:    #F2ECFA;
  --gold-soft:    #FFF6DC;
  --pink-soft:    #FCE4EF;
  --orange-soft:  #FDF0E4;
  --lime-soft:    #EDF6E1;

  --gray: #F5F7F9;
  --line: #E5E9EF;
}


/* =====================================================================
   2. ROTATE ACCENTS THROUGH CARD SETS
   Your cards were all one color. Now they cycle the logo palette.
   ===================================================================== */
.path-card:nth-child(1){border-top:5px solid var(--plum)}
.path-card:nth-child(2){border-top:5px solid var(--teal)}
.path-card:nth-child(3){border-top:5px solid var(--orange)}
.path-card:nth-child(4){border-top:5px solid var(--pink)}
.path-card:nth-child(5){border-top:5px solid var(--lime)}
.path-card:nth-child(1) .path-icon,.path-card:nth-child(1) .path-go{color:var(--plum)}
.path-card:nth-child(2) .path-icon,.path-card:nth-child(2) .path-go{color:var(--teal)}
.path-card:nth-child(3) .path-icon,.path-card:nth-child(3) .path-go{color:var(--orange-dk)}
.path-card:nth-child(4) .path-icon,.path-card:nth-child(4) .path-go{color:var(--pink)}
.path-card:nth-child(5) .path-icon,.path-card:nth-child(5) .path-go{color:var(--lime-dk)}

.hl-card:nth-child(1) .hl-icon{background:var(--plum)}
.hl-card:nth-child(2) .hl-icon{background:var(--teal)}
.hl-card:nth-child(3) .hl-icon{background:var(--orange)}
.hl-card:nth-child(1) .hl-link{color:var(--plum)}
.hl-card:nth-child(2) .hl-link{color:var(--teal)}
.hl-card:nth-child(3) .hl-link{color:var(--orange-dk)}

.hi-card:nth-child(1) .hi-num{color:var(--teal)}
.hi-card:nth-child(2) .hi-num{color:var(--pink)}
.hi-card:nth-child(3) .hi-num{color:var(--orange-dk)}
.hi-card:nth-child(4) .hi-num{color:var(--plum)}

.hero-stats .stat:nth-child(1) .stat-num{color:var(--teal)}
.hero-stats .stat:nth-child(2) .stat-num{color:var(--orange-dk)}
.hero-stats .stat:nth-child(3) .stat-num{color:var(--pink)}

.prog-item:nth-child(3n+1),.program-card:nth-child(3n+1){border-left-color:var(--teal)}
.prog-item:nth-child(3n+2),.program-card:nth-child(3n+2){border-left-color:var(--orange)}
.prog-item:nth-child(3n+3),.program-card:nth-child(3n+3){border-left-color:var(--pink)}
.tier-card:nth-child(3n+2){border-top-color:var(--orange)}
.tier-card:nth-child(3n+3){border-top-color:var(--lime)}


/* =====================================================================
   3. FONTS  (optional)
   Delete this whole block to keep Fraunces and DM Sans.
   The @import means you do not have to edit any HTML.
   ===================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Caveat:wght@700&display=swap');

body,button,input,select,textarea{
  font-family:'Poppins',system-ui,-apple-system,'Segoe UI',sans-serif}
h1,h2,h3,h4,h5,
.section-title,.hero-lead,.hl-title,.path-title,.stat-num,.hi-num,
.tier-price,.impact-num,.growth-count{
  font-family:'Poppins',system-ui,sans-serif;font-weight:800;letter-spacing:-.02em}
h1 em,h2 em,h3 em,.section-title em,.hero-tag em{
  font-family:'Caveat',cursive;font-style:normal;font-weight:700;
  font-size:1.24em;letter-spacing:0;color:var(--pink)}


/* =====================================================================
   4. SURFACE POLISH. Rounder, softer, more depth.
   ===================================================================== */
.path-card,.hl-card,.hi-card,.preview-card,.tier-card,.board-card,
.involved-card,.partner-card,.contact-card,.feat-card,.program-card,
.audience-card,.sa-info-card,.impact-card,.reach-card{
  border-radius:22px;box-shadow:0 10px 26px rgba(20,32,58,.08);
  transition:transform .2s ease,box-shadow .2s ease}
.path-card:hover,.hl-card:hover,.preview-card:hover,.tier-card:hover,
.involved-card:hover,.feat-card:hover,.program-card:hover{
  transform:translateY(-6px);box-shadow:0 20px 44px rgba(20,32,58,.15)}

.hl-icon,.path-icon,.involved-icon,.sa-info-icon,.prog-icon{border-radius:18px}

.btn-primary,.btn-outline,.btn-white,.btn-ghost-white,.btn-gold,
.btn-teal,.btn-plum,.btn-cta,.btn-sm,.nav-cta,.sip-pathways-btn,
.tier-btn,.suso-btn,.sa-btn{border-radius:100px;min-height:48px;
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease}
.btn-primary:hover,.btn-gold:hover,.btn-teal:hover,.btn-plum:hover,
.nav-cta:hover,.tier-btn:hover{transform:translateY(-2px)}

.nav-cta{background:var(--pink);color:#fff}
.nav-cta:hover{background:#BC1263;color:#fff}

.section-label{background:var(--teal-soft);color:var(--teal-dk);
  border-radius:100px;font-weight:800;letter-spacing:.1em}

/* CTA and dark bands pick up the splat gradient */
#home-cta,.cta,.funder-cta-band,.closing{
  background:linear-gradient(115deg,var(--teal) 0%,var(--plum) 58%,var(--pink) 100%)}
.page-hero,.sa-hero,.si-hero{
  background:linear-gradient(120deg,#241650 0%,var(--plum) 52%,#7C2E88 100%)}

/* footer gets the orange top rule from the logo */
footer,.footer{border-top:5px solid var(--orange)}

/* focus rings, WCAG 2.2 */
:focus-visible{outline:3px solid var(--orange);outline-offset:3px;border-radius:5px}


/* =====================================================================
   5. MOBILE HARDENING
   ===================================================================== */
html,body{max-width:100%;overflow-x:hidden}
html{scroll-padding-top:96px}
*{min-width:0}
img,svg,video,iframe{max-width:100%;height:auto}
p,li,td,h1,h2,h3,h4,blockquote{overflow-wrap:break-word}
table{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}
a,button{-webkit-tap-highlight-color:transparent}
input,select,textarea{font-size:16px;min-height:48px}   /* stops iOS zoom on focus */

/* hamburger arrives at 1024 so tablets never get a crushed desktop nav */
@media (max-width:1024px){
  .nav-toggle{display:grid;place-items:center;width:48px;height:48px;border-radius:10px}
  .nav-links{display:none;position:absolute;top:100%;left:0;right:0;
    flex-direction:column;align-items:stretch;background:#fff;
    border-bottom:1px solid var(--border);padding:.5rem 20px 1.2rem;gap:.15rem;
    box-shadow:0 18px 34px rgba(20,32,58,.14);
    max-height:calc(100vh - 76px);overflow-y:auto;overscroll-behavior:contain}
  .nav-links.open{display:flex}
  .nav-links>li{width:100%}
  .nav-links a{min-height:48px;display:flex;align-items:center;
    padding:.7rem .6rem;border-radius:10px;font-size:1rem}

  /* submenus collapse and open on tap. .dd-open is set by the include.js patch */
  .dropdown-menu{position:static;transform:none;box-shadow:none;border:0;
    border-left:3px solid var(--teal-soft);border-radius:0;min-width:0;width:100%;
    opacity:0;visibility:hidden;max-height:0;overflow:hidden;
    margin:0 0 0 .75rem;padding:0 0 0 .5rem;
    transition:max-height .26s ease,opacity .2s ease,margin .26s ease,padding .26s ease}
  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu{opacity:0;visibility:hidden;max-height:0}
  .has-dropdown.dd-open .dropdown-menu{opacity:1;visibility:visible;max-height:520px;
    margin:.15rem 0 .5rem .75rem;padding:.1rem 0 .1rem .5rem}
  .dropdown-menu a{min-height:46px;padding:.6rem .7rem}
  .dropdown-toggle .caret{margin-left:auto;transition:transform .24s ease}
  .has-dropdown.dd-open>.dropdown-toggle .caret{transform:rotate(180deg)}
  .has-dropdown.dd-open>.dropdown-toggle{color:var(--orange)}
  .nav-actions{margin:.7rem 0 0}
  .nav-actions .nav-cta{width:100%;justify-content:center}

  .footer-nav a,.path-go,.hl-link,.p-link,.arc-link,.affil-link{min-height:44px}
}

@media (max-width:760px){
  section{padding:2.8rem 0}
  .wrap,.container,.section-wrap{padding-left:18px;padding-right:18px}
  nav{padding:.45rem 18px}
  .nav-logo img{height:46px}

  #home{padding:1.9rem 0 2.9rem}
  .hero-wrap,.hero-inner{grid-template-columns:1fr;gap:1.8rem}
  .hero-visual{max-width:100%}
  #home h1{font-size:clamp(1.95rem,7.6vw,2.5rem)}
  #home p,.hero-lead{font-size:1rem}
  .hero-actions{gap:.7rem}
  .hero-actions>a{width:100%;justify-content:center}
  .hero-stats{gap:1.1rem 1.6rem}
  .hero-stats .stat-num{font-size:1.75rem}
  .sip-pathways-banner{max-width:100%}
  .sip-pathways-btn{width:100%;margin-top:.2rem}

  .section-title{font-size:clamp(1.5rem,6vw,1.95rem)}
  .section-sub,.section-lead{font-size:.98rem}
  .page-hero{padding:2.3rem 0 2.5rem}

  /* every multi column grid collapses */
  .paths-grid,.hl-grid,.hi-grid,.preview-grid,.tier-grid,.board-grid,
  .involved-grid,.partners-grid,.events-grid,.programs-grid,.audience-grid,
  .impact-grid,.reach-grid,.values-grid,.mvv,.grid2,.form-two,.two,
  .sa-info-grid,.advisor-grid,.cred-grid,.affil-card,.gallery-grid,
  .headline-stats-grid,.need-grid,.pillars-grid,.populations-grid,
  .approach-grid,.arc-grid,.track-card,.contact-cards,.book-grid,
  .about-grid,.pc-grid,.pc-meta-grid,.highlights-grid,.milestone-card{
    grid-template-columns:1fr !important;gap:1rem}

  .hl-card,.preview-card,.tier-card,.board-card,.involved-card,
  .partner-card,.feat-card,.program-card{padding:1.5rem 1.25rem}
  .prog-item{grid-template-columns:1fr;padding:1.5rem 1.25rem;gap:1rem}
  .hi-num,.impact-num,.growth-count{font-size:2.3rem}

  .cliff-teaser,.cliff-box,.suso-band,.feat-band{padding:1.5rem 1.3rem;gap:1rem}
  .cliff-teaser>a,.suso-actions>a{width:100%;justify-content:center}
  .home-cta-actions,.cta-actions,.contact-actions,.suso-actions{width:100%}
  .home-cta-actions>a,.cta-actions>a{width:100%;justify-content:center}

  /* gallery marquee: smaller tiles, slower drift, swipeable */
  .gallery-marquee{-webkit-mask:none;mask:none}
  .g-item,.gallery-item{width:200px;height:150px}
  .gallery-track{animation-duration:70s}

  footer{padding:2.5rem 18px 1.8rem}
  .footer-nav{gap:.2rem 1rem}
  .footer-nav a{font-size:.92rem}
}

@media (max-width:430px){
  .wrap,.container{padding-left:15px;padding-right:15px}
  #home h1{font-size:1.85rem}
  .section-title{font-size:1.42rem}
  .g-item,.gallery-item{width:172px;height:130px}
  .tier-price{font-size:2rem}
}

@media (max-height:520px) and (orientation:landscape){
  section{padding:2rem 0}
  #home{padding:1.4rem 0 2rem}
  .nav-links{max-height:calc(100vh - 60px)}
}

/* hover lifts are meaningless on touch and cause stuck states */
@media (hover:none){
  .path-card:hover,.hl-card:hover,.preview-card:hover,.tier-card:hover,
  .program-card:hover,.btn-primary:hover,.nav-cta:hover{transform:none}
  .gallery-track:hover{animation-play-state:running}
}

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


/* =====================================================================
   6. AFFILIATIONS BAND AND HOSTING CREDIT
   Markup lives in include.js
   ===================================================================== */
.affil{border-top:1px solid rgba(255,255,255,.13);padding-top:1.7rem;margin-top:1.4rem}
.affil h3{text-align:center;font-size:.72rem;font-weight:800;letter-spacing:.13em;
  text-transform:uppercase;color:rgba(255,255,255,.72);margin-bottom:1.2rem}

.affil-logos{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;
  gap:.9rem;max-width:62rem;margin:0 auto 1.1rem}
.lockup{background:#fff;border-radius:14px;padding:.85rem 1.15rem;display:grid;
  place-items:center;box-shadow:0 6px 18px rgba(0,0,0,.22);
  transition:transform .18s ease,box-shadow .18s ease}
a.lockup:hover{transform:translateY(-3px);box-shadow:0 12px 26px rgba(0,0,0,.3)}
.lockup img{max-height:52px;width:auto;object-fit:contain}
.lockup.wide img{max-height:44px}
.lockup.tall img{max-height:66px}
.lockup-fallback{font-weight:800;font-size:.82rem;color:var(--navy);text-align:center;line-height:1.3}
.lockup-fallback span{display:block;font-weight:600;font-size:.68rem;letter-spacing:.05em;
  text-transform:uppercase;color:var(--muted);margin-top:.2rem}

.affil-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:.7rem;
  max-width:60rem;margin:0 auto}
.badge{display:flex;align-items:center;gap:.65rem;background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.16);border-radius:13px;padding:.62rem .95rem;
  min-height:52px;transition:background .18s ease,border-color .18s ease,transform .18s ease}
a.badge:hover{background:rgba(255,255,255,.14);border-color:rgba(255,255,255,.36);
  transform:translateY(-2px)}
.badge-mark{flex:0 0 30px;width:30px;height:30px;border-radius:9px;display:grid;
  place-items:center;font-weight:800;font-size:.74rem;color:#fff;letter-spacing:-.02em}
.badge-txt{display:flex;flex-direction:column;line-height:1.25;min-width:0}
.badge-name{font-size:.83rem;font-weight:700;color:#fff;white-space:nowrap}
.badge-role{font-size:.68rem;font-weight:600;letter-spacing:.05em;text-transform:uppercase;
  color:rgba(255,255,255,.58);margin-top:.1rem;white-space:nowrap}
.m-uw{background:#EF3E42}   .m-ym{background:var(--pink)}
.m-aai{background:var(--orange)} .m-ff{background:var(--teal)}
.m-fa{background:var(--lime);color:#1B2333}
.m-irs{background:var(--navy);border:1px solid rgba(255,255,255,.3);font-size:.62rem}

.foot-host{font-size:.75rem;color:rgba(255,255,255,.5);margin:.5rem 0 0}
.foot-host a{color:rgba(255,255,255,.62);
  border-bottom:1px solid rgba(255,255,255,.24);padding-bottom:1px;
  transition:color .16s ease,border-color .16s ease}
.foot-host a:hover{color:var(--gold);border-color:var(--gold)}

@media (max-width:760px){
  .affil-logos{gap:.7rem}
  .lockup{padding:.7rem .95rem}
  .lockup img{max-height:42px}
  .lockup.wide img{max-height:36px}
  .lockup.tall img{max-height:54px}
  .badge{padding:.55rem .8rem;min-height:48px}
  .badge-name,.badge-role{white-space:normal}
  .foot-host{text-align:center}
}
@media (max-width:430px){
  .affil-logos,.affil-grid{flex-direction:column;align-items:stretch}
  .lockup,.badge{width:100%}
}

@media print{
  nav,.nav-toggle,.gallery-marquee,#home-cta,.cliff-teaser,.affil{display:none}
  body{font-size:11pt;color:#000;background:#fff}
  a[href^="http"]::after{content:" (" attr(href) ")";font-size:9pt;color:#444}
  .hl-card,.hi-card,.tier-card,.prog-item{page-break-inside:avoid;
    box-shadow:none;border:1px solid #999}
  .page-hero,#home-cta{background:#fff !important;color:#000 !important}
  .page-hero h1,.page-hero p{color:#000 !important}
}

/* =====================================================================
   7. SAFETY OVERRIDE
   our-story.html and events.html each carry an inline <style> block with
   their own :root. Inline styles load after this file and would win.
   These !important declarations keep the palette consistent on those two
   pages without editing either one.
   ===================================================================== */
:root,
html:root{
  --teal:    #12909E !important;
  --teal-dk: #0D7280 !important;
  --plum:    #5B2A86 !important;
  --plum-lt: #7B3FA0 !important;
  --gold:    #FFC629 !important;
  --pink:    #E01A76 !important;
  --cream:   #FDFBF7 !important;
  --ink:     #1B2333 !important;
  --muted:   #5C6575 !important;
  --border:  #E5E9EF !important;
}


/* =====================================================================
   8. LOGO SIZE
   ===================================================================== */
.nav-logo img{height:78px !important;width:auto}
nav{min-height:96px}
html{scroll-padding-top:112px}

@media (max-width:1024px){
  .nav-logo img{height:66px !important}
  nav{min-height:84px}
  .nav-links{top:100%;max-height:calc(100vh - 84px)}
}
@media (max-width:760px){
  .nav-logo img{height:58px !important}
  nav{min-height:74px}
}
@media (max-width:430px){
  .nav-logo img{height:50px !important}
  nav{min-height:66px}
}


/* =====================================================================
   9. ARC AFFILIATE BADGE SIZE
   ===================================================================== */
.arc-affiliate-top img{height:76px !important;width:auto}
.arc-affiliate-top{padding:10px 16px !important;border-radius:14px}

/* footer version. include.js sets width inline, so !important is required */
footer img[alt*="Affiliate of The Arc"],
.foot-org img[alt*="Affiliate of The Arc"]{
  width:400px !important;max-width:88% !important;height:auto !important}

@media (max-width:1024px){
  .arc-affiliate-top img{height:66px !important}
}
@media (max-width:760px){
  .arc-affiliate-top img{height:58px !important}
  .arc-affiliate-top{padding:8px 12px !important}
  footer img[alt*="Affiliate of The Arc"]{width:320px !important}
}
@media (max-width:430px){
  .arc-affiliate-top img{height:50px !important}
  footer img[alt*="Affiliate of The Arc"]{width:270px !important}
}


/* =====================================================================
   10. HERO IMAGE — show full image, no crop
   ===================================================================== */
.hero-photo-wrap{aspect-ratio:auto !important}
.hero-photo{object-fit:contain !important;width:100%;height:auto}
