/* ============================================================
   Westside MAPS — Design Tokens
   Orange = action · Navy = trust · Cream = community
   ============================================================ */
:root {
  --orange: #FFB422;
  --orange-dark: #B8720B;
  --orange-tint: #FFF3DC;
  --on-orange: #241703;
  --gold: #FBC02D;
  --gold-dark: #C89A1E;
  --navy: #183B56;
  --navy-deep: #0F2A40;
  --navy-tint: #E8EEF3;
  --navy-text: #183B56;
  --bg: #FFFFFF;
  --cream: #FAF8F3;
  --surface: #FFFFFF;
  --text: #263238;
  --text-muted: #5B6B78;
  --border: #E7E1D6;
  --on-navy: #FFFFFF;
  --on-navy-muted: #A9BCCB;
  --focus: #B8720B;
  --shadow-color: 205 45% 15%;
}

/* Auto dark-mode (prefers-color-scheme) is intentionally disabled — this is
   a pitch prototype and must render identically (white background) for
   every viewer regardless of their OS/browser theme setting. An explicit
   [data-theme="dark"] override is kept below in case a manual toggle is
   added later, but nothing in the site currently sets that attribute. */

:root[data-theme="dark"] {
  --orange: #FFB422;
  --orange-dark: #FFC85C;
  --orange-tint: #3A2A12;
  --on-orange: #241703;
  --gold: #FFD966;
  --gold-dark: #FBC02D;
  --navy: #0E2438;
  --navy-deep: #081726;
  --navy-tint: #16324A;
  --navy-text: #8FB4D9;
  --bg: #12181E;
  --cream: #1B2027;
  --surface: #1B2027;
  --text: #ECEAE4;
  --text-muted: #A9B3BA;
  --border: #2B333B;
  --on-navy: #FFFFFF;
  --on-navy-muted: #96A8B6;
  --focus: #FFC85C;
  --shadow-color: 0 0% 0%;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin: 0;
  color: var(--text);
}

a { color: inherit; }
img { max-width: 100%; display: block; }

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-dark);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.on-navy { color: var(--gold); }

section { position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-orange {
  background: var(--orange);
  color: var(--on-orange);
  box-shadow: 0 10px 22px -10px hsl(var(--shadow-color) / 0.55);
}
.btn-orange:hover { background: color-mix(in srgb, var(--orange) 85%, black); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy-text);
  border-color: var(--navy-text);
}
.btn-outline-navy:hover { background: var(--navy-tint); }

.btn-outline-light {
  background: transparent;
  color: #FFFFFF;
  border-color: color-mix(in srgb, #fff 55%, transparent);
}
.btn-outline-light:hover { background: color-mix(in srgb, #fff 14%, transparent); border-color: #fff; }

.btn-white {
  background: #FFFFFF;
  color: var(--navy-text);
}
.btn-white:hover { background: var(--navy-tint); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  background: color-mix(in srgb, var(--bg) 96%, transparent);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img { height: 42px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-text);
  position: relative;
  padding: 4px 0;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--orange-dark); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--orange-dark);
  transition: right 0.2s ease;
}
.nav-links a:hover::after { right: 0; }
.nav-links a.current,
.mobile-menu a.current { color: var(--orange-dark); }
.nav-links a.current::after { right: 0; }

.nav-right { display: flex; align-items: center; gap: 18px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--navy-text);
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 32px 20px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  padding: 12px 4px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { margin-top: 14px; align-self: flex-start; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .hamburger { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 108px 32px 96px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  isolation: isolate;
}
.hero-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.9;
}
.hero-field circle { transition: opacity 0.4s ease; }

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 700px; }
.hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.7rem);
  line-height: 1.08;
  margin-top: 18px;
  color: var(--text);
}
.hero h1 em {
  font-style: normal;
  color: var(--orange-dark);
}
.hero p.sub {
  margin-top: 22px;
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 600px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 46px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 100px;
}
.trust-badge svg { width: 16px; height: 16px; color: var(--gold-dark); flex-shrink: 0; }

/* ---------- Connection / Cream ---------- */
.cream-section { background: var(--cream); }
.section { padding: 100px 32px; }
.section-head { max-width: 640px; margin: 0 0 52px; }
.section-head.center { margin: 0 auto 52px; text-align: center; }
.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-top: 14px;
}
.section-head p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.section-head.on-navy h2 { color: #FFFFFF; }
.section-head.on-navy p { color: var(--on-navy-muted); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 800px) { .grid-3 { grid-template-columns: 1fr; } }

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }

.value-card { text-align: center; padding: 0 12px; }
.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--orange-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.value-icon svg { width: 28px; height: 28px; color: var(--orange-dark); }
.value-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.value-card p { color: var(--text-muted); font-size: 0.95rem; max-width: 280px; margin: 0 auto; }

/* ---------- Story copy (About: narrative text) ---------- */
.story-copy { max-width: 720px; margin: 0 auto; text-align: center; }
.story-copy p {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.8;
}
.story-copy p + p { margin-top: 20px; }
.story-copy.align-left { text-align: left; max-width: none; margin: 0; }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 800px) { .story-grid { grid-template-columns: 1fr; } }

/* ---------- Image Placeholders ----------
   Real photography isn't available yet — these mark exactly where it will
   go later without pretending to be a finished asset. */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--surface);
  border: 2px dashed var(--border);
  border-radius: 16px;
  color: var(--text-muted);
  text-align: center;
  padding: 24px;
}
.img-placeholder svg { width: 40px; height: 40px; opacity: 0.55; }
.img-placeholder span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  max-width: 220px;
}
.img-placeholder-wide { aspect-ratio: 21 / 9; }
.img-placeholder-square { aspect-ratio: 1 / 1; }
.img-placeholder-portrait { aspect-ratio: 3 / 4; }

.img-placeholder-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  padding: 0;
  gap: 0;
}
.img-placeholder-avatar svg { width: 22px; height: 22px; margin: 0; }
.img-placeholder-avatar span { display: none; }

/* ---------- Timeline ---------- */
.timeline { max-width: 600px; margin: 0 auto; }
.timeline-step {
  position: relative;
  padding: 0 0 40px 46px;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step::before {
  content: "";
  position: absolute;
  left: 8px; top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--orange-tint);
}
.timeline-step::after {
  content: "";
  position: absolute;
  left: 14px; top: 24px; bottom: -4px;
  width: 2px;
  background: var(--border);
}
.timeline-step:last-child::after { display: none; }
.timeline-year {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: var(--orange-dark);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.timeline-step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.timeline-step p { color: var(--text-muted); font-size: 0.96rem; }

/* ---------- Flow diagram (participation → impact) ---------- */
.flow-diagram { max-width: 380px; margin: 44px auto 0; display: flex; flex-direction: column; align-items: center; }
.flow-step {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--text);
}
.flow-step.flow-end { background: var(--orange); border-color: var(--orange); color: var(--on-orange); }
.flow-arrow { width: 2px; height: 26px; background: var(--border); position: relative; }
.flow-arrow::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--border);
}

/* ---------- Category grid (Built for Professionals) ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}
@media (max-width: 700px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .category-grid { grid-template-columns: 1fr; } }
.category-grid-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
}
.category-grid-item svg { width: 18px; height: 18px; color: var(--orange-dark); flex-shrink: 0; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial-card .quote-mark { width: 26px; height: 26px; color: var(--gold-dark); }
.testimonial-card .quote { color: var(--text); font-size: 0.98rem; line-height: 1.65; flex-grow: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 0.92rem; color: var(--navy-text); }
.testimonial-author .name-block span { display: block; font-weight: 500; color: var(--text-muted); font-size: 0.82rem; margin-top: 2px; }

/* ---------- Get Involved cards ---------- */
.involve-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) { .involve-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .involve-grid { grid-template-columns: 1fr; } }
.involve-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.involve-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -28px hsl(var(--shadow-color) / 0.4); }
.involve-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--orange-tint);
  display: flex; align-items: center; justify-content: center;
}
.involve-icon svg { width: 24px; height: 24px; color: var(--orange-dark); }
.involve-card h3 { font-size: 1.02rem; }
.involve-card p { color: var(--text-muted); font-size: 0.86rem; flex-grow: 1; }
.involve-link { display: inline-flex; align-items: center; gap: 5px; color: var(--orange-dark); font-weight: 700; font-size: 0.84rem; text-decoration: none; }
.involve-link:hover { text-decoration: underline; }

.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Directory (Compass / Wayfinder) ---------- */
.directory-section,
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  padding: 100px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.topo-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
:root[data-theme="dark"] .topo-pattern { opacity: 0.08; }

.directory-container,
.page-hero-inner { max-width: 1180px; margin: 0 auto; position: relative; z-index: 1; }

.directory-header,
.page-hero-content { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-tint);
  color: var(--orange-dark);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 18px 9px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.compass-icon { width: 15px; height: 15px; flex-shrink: 0; }
.directory-header h1,
.directory-header h2,
.page-hero-content h1,
.page-hero-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.directory-header p,
.page-hero-content p { margin-top: 14px; color: var(--text-muted); font-size: 1.05rem; }
.page-hero-content p.lede { font-size: 1.12rem; max-width: 620px; margin-left: auto; margin-right: auto; }

.search-filter-wrapper { max-width: 820px; margin: 0 auto 48px; }

.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 6px 8px 6px 18px;
  box-shadow: 0 16px 34px -24px hsl(var(--shadow-color) / 0.4);
  transition: border-color 0.15s ease;
}
.search-bar:focus-within { border-color: var(--orange-dark); }
.search-icon { width: 19px; height: 19px; color: var(--text-muted); flex-shrink: 0; }
.search-bar input {
  border: none;
  outline: none;
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  color: var(--text);
  background: transparent;
  padding: 13px 0;
  min-width: 0;
}
.search-bar input::placeholder { color: var(--text-muted); }
.clear-btn {
  display: inline-flex;
  border: none;
  background: none;
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 8px;
  flex-shrink: 0;
}
.clear-btn:hover { color: var(--orange-dark); background: var(--orange-tint); }

.pills-scroll-wrapper { position: relative; margin-top: 18px; }
.filter-pin {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 38px;
  background: linear-gradient(90deg, var(--surface) 60%, transparent);
  color: var(--orange-dark);
  z-index: 2;
}
.filter-pin svg { width: 18px; height: 18px; }

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.more-categories {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}
.more-categories.open { display: flex; }

.pill {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.pill:hover { border-color: var(--orange-dark); color: var(--orange-dark); }
.pill.active { background: var(--orange); border-color: var(--orange); color: var(--on-orange); }
.pill.dropdown-trigger { background: var(--navy-tint); border-color: transparent; color: var(--navy-text); }
.pill.dropdown-trigger:hover { background: var(--navy); color: #fff; }

@media (max-width: 680px) {
  .filter-pin { display: flex; }
  .category-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 4px 4px 8px 42px;
    scrollbar-width: none;
  }
  .category-pills::-webkit-scrollbar { display: none; }
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 820px) { .directory-grid { grid-template-columns: 1fr; } }

.provider-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.provider-card:hover { box-shadow: 0 22px 46px -30px hsl(var(--shadow-color) / 0.5); transform: translateY(-2px); }

.provider-logo {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.provider-logo img {
  max-width: 160px;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.provider-logo-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--cream);
  align-items: center;
  justify-content: center;
}
.provider-logo-placeholder svg { width: 24px; height: 24px; color: var(--text-muted); }

.card-header { display: flex; flex-direction: column; gap: 8px; }
.provider-info { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.category-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy-text);
  background: var(--navy-tint);
  padding: 5px 12px;
  border-radius: 100px;
}
.verified-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 0.78rem; font-weight: 600; color: var(--orange-dark); }
.verified-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.card-header h3 { font-size: 1.25rem; }

.card-body .description { color: var(--text-muted); font-size: 0.94rem; }
.meta-details { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; font-size: 0.86rem; color: var(--text-muted); }
.meta-details .location,
.meta-details .contact-person { display: flex; align-items: center; gap: 6px; }
.meta-details .location svg,
.meta-details .contact-person svg { width: 15px; height: 15px; color: var(--orange-dark); flex-shrink: 0; }
.provider-meta-line { font-size: 0.82rem; color: var(--text-muted); opacity: 0.85; }

.card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-text);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.btn-secondary:hover { border-color: var(--navy-text); background: var(--navy-tint); }
.btn-secondary svg { width: 15px; height: 15px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--orange-dark);
  text-decoration: none;
  margin-left: auto;
}
.btn-primary:hover { text-decoration: underline; }
.btn-primary svg { width: 14px; height: 14px; flex-shrink: 0; }

.hidden { display: none !important; }

.results-count {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 600;
  margin: 0 0 24px;
}

.empty-state {
  text-align: center;
  padding: 56px 24px;
  background: var(--cream);
  border: 1.5px dashed var(--border);
  border-radius: 18px;
  color: var(--text);
}
.empty-state svg { color: var(--orange-dark); margin: 0 auto 16px; }
.empty-state h3 { font-size: 1.2rem; }
.empty-state p { color: var(--text-muted); margin: 8px auto 0; max-width: 420px; margin-left: auto; margin-right: auto; }
.empty-state-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.directory-cta-banner {
  margin-top: 52px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.banner-content h3 { color: var(--text); font-size: 1.3rem; }
.banner-content p { color: var(--text-muted); margin-top: 6px; font-size: 0.95rem; }

/* ---------- Meeting ---------- */
.meeting-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.meeting-card {
  display: flex;
  align-items: center;
  gap: 44px;
  max-width: 920px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.meeting-badge {
  flex-shrink: 0;
  width: 128px;
  height: 128px;
  border-radius: 20px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.meeting-badge svg { width: 34px; height: 34px; color: var(--gold); margin-bottom: 6px; }
.meeting-badge span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}
.meeting-copy { flex: 1; min-width: 260px; }
.meeting-copy h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.meeting-copy p { margin-top: 14px; color: var(--text-muted); font-size: 1.02rem; max-width: 520px; }
.meeting-copy .btn { margin-top: 26px; }

/* ---------- Stats ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 640px) { .stats-row { grid-template-columns: 1fr; } }
.stat {
  text-align: center;
  padding: 36px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.stat .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.1rem, 4vw, 2.7rem);
  color: var(--navy);
  line-height: 1;
}
:root[data-theme="dark"] .stat .num { color: var(--gold); }
.stat .label {
  margin-top: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat .accent-line {
  width: 30px; height: 3px;
  background: var(--gold);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ---------- Sponsors ---------- */
.sponsor-tier-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-text);
  margin-bottom: 22px;
}
.diamond-card {
  max-width: 480px;
  margin: 0 auto 56px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px;
  text-align: center;
}
.diamond-card .sponsor-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--orange-dark);
}
.diamond-card .sponsor-tag { margin-top: 8px; color: var(--text-muted); font-size: 0.9rem; }
.diamond-mark { width: 46px; height: 46px; margin: 0 auto 16px; color: var(--gold); }

.sponsor-open-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 780px;
  margin: 0 auto;
}
@media (max-width: 700px) { .sponsor-open-grid { grid-template-columns: 1fr; } }

.sponsor-open-card {
  border: 2px dashed var(--gold-dark);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  background: color-mix(in srgb, var(--gold) 8%, var(--surface));
}
.sponsor-open-card .plus {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold-dark);
}
.sponsor-open-card h3 { font-size: 1.02rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; }
.sponsor-open-card p { color: var(--text-muted); font-size: 0.88rem; margin: 10px 0 16px; }
.sponsor-open-card a { color: var(--orange-dark); font-weight: 700; font-size: 0.9rem; text-decoration: none; }
.sponsor-open-card a:hover { text-decoration: underline; }

/* ---------- Join CTA ---------- */
.cta-banner {
  background: var(--bg);
  padding: 92px 32px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-banner h2 { color: var(--text); font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
.cta-banner p {
  max-width: 560px;
  margin: 18px auto 34px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ---------- Footer ---------- */
footer { background: var(--bg); color: var(--text); padding: 72px 32px 0; border-top: 1px solid var(--border); }
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }

footer .logo img { height: 46px; }
footer .foot-mission {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.94rem;
  max-width: 320px;
}
.foot-since {
  display: inline-flex;
  margin-top: 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-dark);
  border: 1px solid color-mix(in srgb, var(--orange) 45%, transparent);
  padding: 7px 14px;
  border-radius: 100px;
}

footer h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 20px;
}
.foot-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.foot-links a { color: var(--text); text-decoration: none; font-size: 0.94rem; }
.foot-links a:hover { color: var(--orange-dark); }

.foot-contact { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; font-size: 0.94rem; }
.foot-contact li { display: flex; align-items: flex-start; gap: 10px; color: var(--text); }
.foot-contact svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; color: var(--gold-dark); }
.foot-contact a { color: inherit; text-decoration: none; }
.foot-contact a:hover { color: var(--orange-dark); }

.foot-social { display: flex; gap: 12px; margin-top: 18px; }
.foot-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-text);
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.foot-social a:hover { background: var(--orange-tint); border-color: var(--orange-dark); }
.foot-social svg { width: 17px; height: 17px; }

.foot-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 0 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
