:root {
  --purple: #652d91;
  --purple-dark: #4b1f6c;
  --purple-soft: #efe7f5;
  --lavender: #f7f3fa;
  --ink: #17151a;
  --muted: #68616e;
  --line: #ded8e3;
  --white: #ffffff;
  --max: 1180px;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Archivo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: .7rem 1rem;
  background: var(--ink);
  color: white;
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 96px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(101,45,145,.12);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.02em;
}
.brand span {
  display: block;
  line-height: 1.1;
}
.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
}
.site-nav { display: flex; align-items: center; gap: 26px; font-weight: 600; font-size: .95rem; }
.site-nav a { text-decoration: none; }
.site-nav a:not(.button):hover { color: var(--purple); }
.nav-toggle { display: none; border: 0; border-radius: 8px; background: white; color: var(--ink); padding: 10px; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; width: 26px; height: 2px; background: currentColor; margin: 5px 0; }
.nav-toggle:is(:hover, :focus) { background: var(--purple-soft); color: var(--purple-dark); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .8rem 1.2rem;
  border: 2px solid var(--purple);
  border-radius: 999px;
  background: var(--purple);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  /* Change foreground and background together to preserve contrast. */
  transition: transform .2s ease;
}
.button-small { min-height: 42px; padding: .55rem 1rem; }
.button-outline { background: transparent; color: var(--purple); }
.button-light, .button-white { background: white; color: var(--purple); border-color: white; }
.button-ghost-white { background: transparent; border-color: rgba(255,255,255,.65); color: white; }

.button:is(:hover, :focus) {
  background: var(--purple-dark);
  color: var(--white);
  border-color: var(--purple-dark);
}
.button:hover { transform: translateY(-2px); }
.button-light:is(:hover, :focus),
.button-white:is(:hover, :focus),
.button-ghost-white:is(:hover, :focus) {
  background: var(--purple-soft);
  color: var(--purple-dark);
  border-color: var(--purple-soft);
}
.button:focus-visible, .nav-toggle:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  box-shadow: 0 0 0 3px var(--white);
}

.hero {
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(101,45,145,.20), transparent 34%),
    linear-gradient(135deg, #fff 0%, #faf7fc 58%, #f1e9f7 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 72px;
  align-items: center;
  padding: 86px 0;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--purple);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}
h1, h2 {
  font-family: "Archivo", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: .98;
  margin: 0;
}
h1 { font-size: clamp(2.75rem, 7vw, 3.25rem); max-width: 850px; }
h2 { font-size: clamp(2.4rem, 5vw, 2.75rem); }
h3 { line-height: 1.15; }
.hero-lede { max-width: 670px; font-size: 1.16rem; color: var(--muted); margin: 28px 0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-note {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 4px;
  max-width: 620px;
}
.hero-note strong { color: var(--purple); }
.hero-note span { color: var(--muted); }
.hero-visual { position: relative; min-height: 470px; display: grid; place-items: center; }
.logo-card {
  width: min(100%, 440px);
  aspect-ratio: 1;
  background: white;
  border-radius: 36px;
  box-shadow: 0 28px 70px rgba(64,25,88,.14);
  display: grid;
  place-items: center;
  transform: rotate(-3deg);
}
.logo-card img { width: 82%; border-radius: 28px; }
.stat-card {
  position: absolute;
  min-width: 185px;
  background: var(--ink);
  color: white;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 14px 32px rgba(25,17,29,.18);
}
.stat-card span { display: block; opacity: .68; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.stat-card strong { display: block; margin-top: 4px; font-size: 1.35rem; }
.stat-card-one { top: 44px; right: -8px; }
.stat-card-two { bottom: 40px; left: -18px; background: var(--purple); }

.quick-help { padding: 86px 0 96px; background: var(--ink); color: white; }
.quick-help .section-heading p:not(.eyebrow) { color: #c7c1ca; }
.quick-help .eyebrow { color: #c9a9e2; }
.quick-help h2 { color: white; }
.section-heading.compact { max-width: 760px; }
.section-heading > p { color: var(--muted); font-size: 1.06rem; }
.help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.help-card {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
}
.help-card.accent { background: var(--purple); border-color: var(--purple); }
.help-card h3 { font-size: 1.45rem; margin: 30px 0 12px; }
.help-card p { color: #d7d1db; min-height: 96px; }
.help-card.accent p { color: rgba(255,255,255,.84); }
.help-card a { font-weight: 800; text-underline-offset: 5px; }
.icon { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }


.split-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; margin-bottom: 50px; }
.split-heading > p { margin: 0; max-width: 520px; justify-self: end; }
.program-overview { background: #fff; }
.program-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.program-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 340px;
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--ink);
  color: white;
}
.program-card-image {
  position: absolute;
  inset: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  max-width: none;
  object-fit: cover;
  filter: blur(2px);
  z-index: -2;
}
.program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, .85) 10%, rgba(0, 0, 0, 0) 75%);
  z-index: -1;
}
.program-card h3 { margin: 8px 0 10px; font-size: 1.75rem; text-shadow: 0 1px 3px rgba(0,0,0,1); }
.program-card p { margin: 0; max-width: 520px; }

.programs { background: var(--lavender); scroll-margin-top: 100px; }
.city-program { padding: 42px 0; border-bottom: 1px solid var(--line); }
.city-program:last-child { padding-bottom: 0; border-bottom: 0; }
.city-program > h3 { margin: 0 0 30px; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--purple); }
.city-service h4 { margin: 0; font-size: 1.65rem; line-height: 1.15; }
.city-service + .city-service { margin-top: 42px; padding-top: 42px; border-top: 1px solid var(--line); }
.program-photo-placeholder { aspect-ratio: 4 / 3; display: grid; place-items: center; border-radius: 18px; background: var(--purple-soft); color: var(--purple); font-weight: 700; }
.city-service { display: grid; grid-template-columns: 1fr .75fr; gap: 70px; align-items: center;  }
.big-copy { font-size: 1.18rem; color: var(--muted); max-width: 700px; }
.details-list { margin: 34px 0; border-top: 1px solid var(--line); }
.details-list div { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.details-list dt { font-weight: 800; color: var(--purple); }
.details-list dd { margin: 0; }
.text-link { font-weight: 800; color: var(--purple); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.poster-wrap { margin: 0; background: white; padding: 14px; border-radius: 28px; box-shadow: 0 20px 50px rgba(64,25,88,.11); }
.poster-wrap img { width: 100%; border-radius: 18px; aspect-ratio: 4 / 3; object-fit: contain; background: #eee; }
.image-note { margin: 12px 8px 4px; color: var(--muted); font-size: .78rem; }

.events { background: white; }
.event-list { display: grid; gap: 18px; }
.event-feature {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 26px;
  border-radius: 26px;
  background: var(--purple);
  color: white;
}
.event-date { display: grid; place-items: center; min-height: 130px; background: white; color: var(--purple); border-radius: 20px; }
.event-date span { text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
.event-date strong { font-family: "Archivo", Arial, sans-serif; font-weight: 900; font-size: 3.8rem; line-height: .8; }
.event-label { margin: 0; color: #dbc7eb; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 800; }
.event-body h3 { font-size: 2rem; margin: 7px 0 10px; }
.event-body > p:not(.event-label) { margin: 0; color: rgba(255,255,255,.82); max-width: 740px; }
.event-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 16px; font-size: .88rem; font-weight: 700; }
.event-meta span { padding: 7px 10px; background: rgba(255,255,255,.11); border-radius: 999px; }

.about { background: #f6f4f7; }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 74px; align-items: center; }
.about-mark { background: white; border-radius: 30px; padding: 36px; box-shadow: 0 20px 48px rgba(31,17,40,.08); }
.about-mark img { width: 100%; border-radius: 20px; }
.about-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.06rem; }
.about-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.about-points span { border: 1px solid var(--line); background: white; border-radius: 999px; padding: 9px 13px; font-weight: 700; font-size: .88rem; }

.involved { background: var(--purple); color: white; }
.involved-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: center; }
.involved h2 { color: white; }
.involved p { color: rgba(255,255,255,.82); max-width: 720px; }
.light-eyebrow { color: #e3cdef; }
.involved-actions { display: grid; gap: 12px; }

.contact { background: white; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.contact-cards { display: grid; gap: 12px; }
.contact-card {
  text-decoration: none;
  display: grid;
  grid-template-columns: 115px 1fr 32px;
  gap: 12px;
  align-items: center;
  padding: 19px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.contact-card:hover { transform: translateX(4px); border-color: var(--purple); background: var(--lavender); }
.contact-card span { color: var(--muted); font-size: .86rem; }
.contact-card strong { overflow-wrap: anywhere; }
.contact-card b { color: var(--purple); font-size: 1.2rem; }

.site-footer { background: var(--ink); color: white; padding: 38px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.4fr auto; gap: 34px; align-items: center; }
.footer-brand { display: flex; gap: 14px; align-items: center; }
.footer-brand img { width: 62px; height: 62px; object-fit: cover; border-radius: 50%; }
.footer-brand p { margin: 0; }
.footer-note { margin: 0; color: #aaa2ae; font-size: .78rem; }
.copyright { margin: 0; color: #aaa2ae; font-size: .8rem; white-space: nowrap; text-align: right;}

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 72px;
    left: 50%;
    right: .5rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: white;
    border-bottom: 1px solid var(--line);
    border-radius: 20px;
  }
  .site-nav.open { display: flex; box-shadow: 0 5px 25px rgba(0,0,0,.25); }
  .site-nav .button { width: 100%; }
  .hero-grid, .city-service, .about-grid, .contact-grid, .involved-grid, .split-heading { grid-template-columns: 1fr; gap: 42px; }
  .hero { min-height: auto; }
  .hero-visual { min-height: 420px; }
  .split-heading > p { justify-self: start; }
  .event-feature { grid-template-columns: 110px 1fr; }
  .event-action { grid-column: 2; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 70px 0; }
  .hero-grid { padding: 62px 0 78px; gap: 30px; }
  h1 { font-size: clamp(2rem, 16vw, 2rem); padding-right: 10%; line-height: 1.25; }
  h2 { font-size: clamp(1.85rem, 12vw, 2.25rem); }
  .hero-lede { font-size: 1.05rem; }
  .help-grid, .program-grid { grid-template-columns: 1fr; }
  .help-card p { min-height: auto; }
  .hero-visual { min-height: 340px; }
  .logo-card { width: 82%; border-radius: 24px; }
  .stat-card { min-width: 150px; padding: 14px 16px; }
  .stat-card-one { right: 0; top: 20px; }
  .stat-card-two { left: 0; bottom: 20px; }
  .details-list div { grid-template-columns: 1fr; gap: 4px; }
  .event-feature { grid-template-columns: 1fr; }
  .event-date { width: 105px; min-height: 105px; }
  .event-action { grid-column: auto; }
  .contact-card { grid-template-columns: 1fr 28px; }
  .contact-card span { grid-column: 1 / -1; }
  .contact-card b { grid-column: 2; grid-row: 2; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

.cms-error { margin: 0; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: white; color: var(--muted); }

.locations { background: var(--lavender); scroll-margin-top: 96px; }
.locations-grid { display: grid; grid-template-columns: minmax(0, 1.8fr) minmax(260px, 1fr); gap: 28px; align-items: start; }
.locations-map-wrap { min-width: 0; }
.locations-map { height: 560px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--purple-soft); z-index: 0; scroll-margin-top: 96px; font-family: inherit; }
.map-fallback { padding: 24px; color: var(--purple-dark); }
.map-toolbar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.map-toolbar p { margin: 0; color: var(--muted); font-size: .82rem; }
.map-key { display: inline-block; width: 10px; height: 10px; margin-right: 5px; border-radius: 50%; background: var(--purple); }
.location-list { display: grid; gap: 12px; list-style: none; margin: 0; padding: 0; }
.location-card { padding: 18px 22px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.location-card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.location-card p { margin: 0 0 10px; color: var(--muted); font-size: .9rem; }
.location-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; }
.location-actions a, .location-focus, #map-reset { color: var(--purple); font-size: .82rem; font-weight: 700; text-underline-offset: 3px; }
.location-focus, #map-reset { padding: 5px 0; border: 0; background: transparent; text-decoration: underline; cursor: pointer; }
.location-actions :focus-visible, #map-reset:focus-visible, .location-marker:focus-visible { outline: 3px solid var(--purple); outline-offset: 4px; border-radius: 4px; }
.location-dot { display: block; width: 18px; height: 18px; margin: 7px; border: 3px solid white; border-radius: 50%; background: var(--purple); box-shadow: 0 1px 6px #4b1f6c80; }
.location-marker:hover .location-dot, .location-marker:focus .location-dot { background: var(--purple-dark); box-shadow: 0 0 0 5px #652d9133; }
.location-popup { font-family: "Archivo", sans-serif; line-height: 1.5; }
.location-popup strong { color: var(--purple-dark); font-size: 1rem; }
.location-popup p { margin: 8px 0; }
.location-popup a { color: var(--purple); font-weight: 700; }
@media (max-width: 920px) {
  .locations-grid { grid-template-columns: 1fr; }
  .location-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .locations-map { height: 420px; }
  .location-list { grid-template-columns: 1fr; }
}
