:root {
  --ink: #111216;
  --ink-soft: #3e4046;
  --cream: #fff7e8;
  --paper: #fffdf6;
  --white: #ffffff;
  --coral: #ff5a46;
  --coral-dark: #d9392c;
  --teal: #049f9a;
  --teal-dark: #00706f;
  --mint: #a7dcc9;
  --yellow: #ffc33d;
  --yellow-soft: #ffe08a;
  --pink: #f46d93;
  --green: #76b767;
  --line: #16171b;
  --muted-line: rgba(17, 18, 22, 0.13);
  --shadow: 0 22px 48px rgba(17, 18, 22, 0.16);
  --shadow-soft: 0 12px 28px rgba(17, 18, 22, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--ink);
  font-family: ui-rounded, "Avenir Next", "Trebuchet MS", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.3;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 50;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 28px;
  border-bottom: 2px solid rgba(17, 18, 22, 0.08);
  background: rgba(255, 247, 232, 0.92);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 20px rgba(17, 18, 22, 0.08);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
}

.brand-link img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-link span {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.96rem;
  font-weight: 800;
}

.site-nav a,
.header-cta {
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 9px 12px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: var(--line);
  background: var(--white);
}

.header-cta {
  flex: 0 0 auto;
  background: var(--ink);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--yellow);
}

.section-band,
.section-wrap {
  position: relative;
  overflow: hidden;
}

.section-wrap {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 40px;
  min-height: 72svh;
  padding: 48px max(28px, calc((100vw - 1120px) / 2)) 28px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 16px;
  background:
    linear-gradient(90deg, var(--coral) 0 16%, transparent 16% 22%, var(--teal) 22% 40%, transparent 40% 48%, var(--yellow) 48% 68%, transparent 68% 76%, var(--pink) 76% 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 1000;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.02;
}

h1 {
  margin-bottom: 24px;
  font-size: 4.7rem;
  font-weight: 1000;
  max-width: 720px;
}

h2 {
  margin-bottom: 18px;
  font-size: 3rem;
  font-weight: 1000;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.42rem;
  font-weight: 1000;
}

p {
  color: var(--ink-soft);
}

.hero-lede {
  max-width: 600px;
  margin-bottom: 28px;
  font-size: 1.24rem;
}

.hero-actions,
.contact-actions,
.notice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 1000;
  line-height: 1.1;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--coral);
}

.button-secondary {
  background: var(--white);
  box-shadow: 5px 5px 0 var(--mint);
}

.hero-art {
  position: relative;
  min-height: 460px;
}

.hero-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: min(330px, 72%);
  transform: translate(-50%, -48%);
  filter: drop-shadow(0 18px 28px rgba(17, 18, 22, 0.18));
}

.paper-shape {
  position: absolute;
  z-index: 1;
  border: 2px solid rgba(17, 18, 22, 0.1);
}

.paper-red {
  left: 6%;
  top: 4%;
  width: 210px;
  height: 160px;
  background: var(--coral);
  clip-path: polygon(8% 0, 100% 5%, 82% 72%, 48% 82%, 14% 100%, 0 45%);
}

.paper-teal {
  right: 4%;
  top: 0;
  width: 210px;
  height: 210px;
  background: var(--teal);
  border-radius: 58% 42% 56% 44%;
}

.paper-yellow {
  left: 0;
  bottom: 28px;
  width: 250px;
  height: 210px;
  background: var(--yellow);
  clip-path: polygon(0 0, 82% 14%, 100% 54%, 60% 100%, 12% 84%);
}

.paper-pink {
  right: 2%;
  bottom: 20px;
  width: 250px;
  height: 180px;
  background: var(--pink);
  border-radius: 46% 54% 40% 60%;
}

.sparkle {
  position: absolute;
  z-index: 5;
  width: 36px;
  height: 36px;
  transform: rotate(45deg);
  background: var(--yellow);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.sparkle-one {
  left: 17%;
  top: 31%;
}

.sparkle-two {
  right: 17%;
  top: 61%;
  width: 28px;
  height: 28px;
  background: var(--mint);
}

.doodle {
  position: absolute;
  z-index: 3;
  border: 3px solid var(--line);
  background: var(--paper);
  transform: rotate(-10deg);
}

.doodle-camera {
  left: 13%;
  top: 62%;
  width: 96px;
  height: 64px;
  border-radius: 8px;
}

.doodle-camera::before {
  content: "";
  position: absolute;
  left: 18px;
  top: -14px;
  width: 30px;
  height: 14px;
  border: 3px solid var(--line);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: var(--mint);
}

.doodle-camera span {
  position: absolute;
  left: 30px;
  top: 16px;
  width: 30px;
  height: 30px;
  border: 7px solid var(--teal);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px var(--line);
}

.doodle-brush {
  right: 14%;
  bottom: 25%;
  width: 26px;
  height: 112px;
  border-radius: 999px;
  background: var(--teal);
  transform: rotate(36deg);
}

.doodle-brush::before {
  content: "";
  position: absolute;
  left: -9px;
  top: -28px;
  width: 40px;
  height: 42px;
  background: var(--coral);
  border: 3px solid var(--line);
  border-radius: 70% 30% 70% 30%;
}

.intro-strip {
  display: flex;
  justify-content: center;
  padding: 22px 24px;
  background: var(--ink);
  color: var(--white);
}

.intro-strip p {
  margin: 0;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 900;
  text-align: center;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading p {
  font-size: 1.1rem;
}

.section-heading.compact {
  max-width: 560px;
}

.program-grid,
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.program-card {
  position: relative;
  min-height: 298px;
  overflow: hidden;
  border: 3px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.program-card p,
.program-card h3 {
  position: relative;
  z-index: 1;
}

.program-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 158px;
  height: 158px;
  border: 3px solid rgba(17, 18, 22, 0.18);
  background: rgba(255, 255, 255, 0.4);
  border-radius: 52% 48% 42% 58%;
}

.card-coral {
  background: #ffe9df;
}

.card-teal {
  background: #dcf5ef;
}

.card-yellow {
  background: #fff0b6;
}

.mini-icon {
  display: block;
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 26px;
}

.icon-pencil::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 4px;
  width: 18px;
  height: 50px;
  border: 3px solid var(--line);
  border-radius: 999px;
  background: var(--coral);
  transform: rotate(37deg);
}

.icon-pencil::after {
  content: "";
  position: absolute;
  left: 36px;
  top: 1px;
  width: 18px;
  height: 18px;
  border: 3px solid var(--line);
  background: var(--yellow);
  transform: rotate(37deg);
}

.icon-spark::before {
  content: "";
  position: absolute;
  inset: 7px;
  background: var(--yellow);
  clip-path: polygon(50% 0, 63% 36%, 100% 50%, 63% 64%, 50% 100%, 37% 64%, 0 50%, 37% 36%);
}

.icon-spark::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 3px solid var(--line);
  transform: rotate(45deg);
}

.icon-megaphone::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 16px;
  width: 44px;
  height: 28px;
  border: 3px solid var(--line);
  background: var(--pink);
  clip-path: polygon(0 26%, 78% 0, 100% 0, 100% 100%, 78% 100%, 0 74%);
}

.icon-megaphone::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 38px;
  width: 12px;
  height: 20px;
  border: 3px solid var(--line);
  background: var(--teal);
  transform: rotate(-12deg);
}

.community {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 48px;
  padding: 92px max(28px, calc((100vw - 1120px) / 2));
  background: var(--ink);
  color: var(--white);
}

.community::before,
.community::after {
  content: "";
  position: absolute;
  z-index: 0;
  background: var(--yellow);
  border: 3px solid rgba(255, 255, 255, 0.28);
}

.community::before {
  left: -80px;
  top: -42px;
  width: 260px;
  height: 180px;
  border-radius: 0 0 64% 36%;
}

.community::after {
  right: -86px;
  bottom: -70px;
  width: 300px;
  height: 240px;
  background: var(--teal);
  border-radius: 52% 48% 0 0;
}

.community-art,
.community-copy {
  position: relative;
  z-index: 1;
}

.community-art img {
  width: min(420px, 100%);
  margin: 0 auto;
  border-radius: 8px;
  border: 3px solid rgba(255, 255, 255, 0.24);
  box-shadow: 12px 12px 0 var(--pink);
}

.community .eyebrow {
  color: var(--yellow);
}

.community p,
.community li {
  color: rgba(255, 255, 255, 0.86);
}

.community-copy > p {
  max-width: 680px;
  font-size: 1.12rem;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 15px;
  height: 15px;
  border: 3px solid var(--yellow);
  border-radius: 50%;
  background: var(--coral);
}

.approach-grid > div {
  border-top: 4px solid var(--line);
  padding-top: 22px;
}

.approach-grid h3 {
  font-size: 2rem;
}

.approach-grid div:nth-child(1) h3 {
  color: var(--coral-dark);
}

.approach-grid div:nth-child(2) h3 {
  color: var(--teal-dark);
}

.approach-grid div:nth-child(3) h3 {
  color: #bd6d00;
}

.letterhead-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  align-items: center;
  gap: 48px;
  padding: 92px max(28px, calc((100vw - 1120px) / 2));
  background: #fdf2d9;
}

.letterhead-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 100%;
  background:
    linear-gradient(var(--coral) 0 24%, var(--yellow) 24% 48%, var(--teal) 48% 72%, var(--pink) 72% 100%);
}

.letterhead-copy {
  max-width: 620px;
}

.letterhead-copy p {
  font-size: 1.12rem;
}

.letterhead-preview img {
  width: min(340px, 100%);
  margin: 0 auto;
  border: 3px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact {
  padding-bottom: 108px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  border: 3px solid var(--line);
  border-radius: 8px;
  padding: 38px;
  background: var(--white);
  box-shadow: 10px 10px 0 var(--teal);
}

.contact-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -70px;
  width: 240px;
  height: 190px;
  background: var(--yellow);
  border: 3px solid var(--line);
  border-radius: 42% 58% 52% 48%;
}

.contact-card h2,
.contact-card p,
.contact-card .contact-actions,
.contact-card .eyebrow {
  position: relative;
  z-index: 1;
}

.contact-card p {
  max-width: 720px;
  font-size: 1.12rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  border-top: 2px solid var(--muted-line);
  background: var(--paper);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.site-footer p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  font-weight: 900;
}

.site-footer a:hover {
  color: var(--teal-dark);
}

.legal-page {
  min-height: 70vh;
}

.legal-hero {
  padding: 72px max(24px, calc((100vw - 920px) / 2)) 42px;
  background: var(--ink);
  color: var(--white);
}

.legal-hero .eyebrow {
  color: var(--yellow);
}

.legal-hero h1 {
  margin-bottom: 12px;
  font-size: 4rem;
}

.legal-hero p {
  color: rgba(255, 255, 255, 0.82);
}

.legal-content {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 56px 0 90px;
}

.legal-content h2 {
  margin: 34px 0 10px;
  font-size: 1.55rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.legal-content a {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.legal-content ul {
  padding-left: 22px;
}

.not-found {
  display: grid;
  min-height: 100svh;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 28px;
  text-align: center;
}

.not-found h1 {
  margin-bottom: 0;
  font-size: 3rem;
}

.not-found p {
  margin-bottom: 12px;
}

.notice-modal[hidden] {
  display: none;
}

.notice-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
}

.notice-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 18, 22, 0.62);
}

.notice-panel {
  position: relative;
  width: min(560px, 100%);
  border: 3px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.notice-panel h2 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.notice-panel p {
  font-size: 1rem;
}

.notice-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-weight: 1000;
  cursor: pointer;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 12px 18px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .community,
  .letterhead-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-art {
    min-height: 340px;
  }

  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .program-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: 240px;
  }

  .community-art {
    max-width: 420px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .brand-link span {
    max-width: 144px;
    white-space: normal;
    line-height: 1;
  }

  .header-cta {
    padding: 9px 11px;
  }

  .section-wrap {
    width: min(100% - 28px, 1120px);
    padding: 64px 0;
  }

  .hero {
    gap: 16px;
    padding-inline: 18px;
    padding-top: 38px;
    padding-bottom: 20px;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2,
  .legal-hero h1,
  .not-found h1 {
    font-size: 2.18rem;
  }

  .hero-lede,
  .section-heading p,
  .community-copy > p,
  .letterhead-copy p,
  .contact-card p {
    font-size: 1rem;
  }

  .hero-art {
    min-height: 126px;
    margin-top: -6px;
  }

  .paper-red {
    left: 8%;
    top: 0;
    width: 112px;
    height: 86px;
  }

  .paper-teal {
    right: 8%;
    top: 0;
    width: 118px;
    height: 118px;
  }

  .paper-yellow {
    left: 26%;
    bottom: -14px;
    width: 126px;
    height: 106px;
  }

  .paper-pink {
    right: 0;
    bottom: -28px;
    width: 132px;
    height: 96px;
  }

  .doodle-camera {
    display: none;
  }

  .doodle-brush {
    display: none;
  }

  .hero-logo {
    top: 68%;
    width: 142px;
  }

  .sparkle-one {
    left: 30%;
    top: 58%;
    width: 22px;
    height: 22px;
  }

  .sparkle-two {
    right: 26%;
    top: 72%;
    width: 18px;
    height: 18px;
  }

  .community,
  .letterhead-panel {
    padding: 66px 18px;
  }

  .community-art img {
    box-shadow: 7px 7px 0 var(--pink);
  }

  .contact-card,
  .notice-panel {
    padding: 24px;
  }

  .legal-hero {
    padding: 52px 18px 32px;
  }

  .legal-content {
    width: min(100% - 28px, 920px);
    padding-top: 42px;
  }
}
