/* ============================================================
   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; }
}
