/* ============================================================
   MORGANTOWN ART PARTY — shared stylesheet
   Built by Good Website Company · goodwebsiteco.com
   Brand language: "Riso Zine" — DIY screen-print art party.
   Ink + warm paper, with a 4-color riso accent set
   (magenta / electric blue / sunshine / teal).
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.05; color: var(--ink); letter-spacing: -.02em; }
::selection { background: var(--magenta); color: #fff; }

/* ---------- THEME TOKENS ---------- */
:root {
  --magenta:#FF2E6E; --magenta-dark:#E01556;
  --blue:#2B59FF; --blue-dark:#1C3FD6;
  --sun:#FFC93C; --sun-dark:#E6A800;
  --teal:#00B89C; --teal-dark:#019480;

  --ink:#17131A; --ink-2:#231D28; --ink-3:#3A3142; --muted:#6B6172;
  --paper:#F8F2E6; --paper-2:#FBF7EE; --card:#FFFFFF;
  --line:rgba(23,19,26,.14); --line-soft:rgba(23,19,26,.08);

  --poster:'Luckiest Guy', system-ui, cursive;
  --display:'Fredoka','Inter',-apple-system,sans-serif;
  --body:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
  --mono:'JetBrains Mono',ui-monospace,monospace;
  --rainbow:linear-gradient(100deg,#ff2e6e 0%,#ff8a3d 17%,#ffd23c 34%,#3ec46b 52%,#2b9cff 70%,#7a4dff 88%,#ff2e6e 100%);

  --container:1200px;
  --px:clamp(1.2rem, 4vw, 2.5rem);
  --section-py:clamp(4rem, 7.5vw, 7rem);
  --radius:14px;
  --radius-sm:8px;
  --shadow-sm:0 8px 26px rgba(23,19,26,.10);
  --shadow-md:0 26px 60px rgba(23,19,26,.22);
  --shadow-pop:8px 8px 0 var(--ink);
}

/* ---------- LAYOUT HELPERS ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--px); position: relative; z-index: 2; }
.section { padding: var(--section-py) 0; position: relative; }
.section--paper2 { background: var(--paper-2); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink h2, .section--ink h3, .section--ink h4 { color: var(--paper-2); }
.narrow { max-width: 760px; }

.overline {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--mono);
  font-size: .74rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--magenta-dark);
  margin-bottom: 1.1rem;
}
.overline::before { content: ''; width: 26px; height: 3px; border-radius: 3px; background: var(--magenta); }
.section--ink .overline { color: var(--sun); }
.section--ink .overline::before { background: var(--sun); }

.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .overline { justify-content: center; }
.section-title {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 800; line-height: 1.02;
}
.section-title em { font-style: normal; color: var(--magenta); }
.section-sub { margin-top: 1.1rem; font-size: 1.12rem; color: var(--ink-3); line-height: 1.7; }
.section--ink .section-sub { color: rgba(248,242,230,.78); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 1rem 1.8rem;
  font-family: var(--display); font-size: 1rem; font-weight: 700; letter-spacing: .01em;
  border-radius: 999px; cursor: pointer; line-height: 1; text-align: center;
  border: 2.5px solid transparent; position: relative;
  transition: transform .16s ease, box-shadow .25s ease, background-color .2s, color .2s, border-color .2s;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn--primary { background: var(--magenta); color: #fff; box-shadow: 0 10px 24px rgba(255,46,110,.34); }
.btn--primary:hover { background: var(--magenta-dark); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(255,46,110,.44); }
.btn--blue { background: var(--blue); color: #fff; box-shadow: 0 10px 24px rgba(43,89,255,.32); }
.btn--blue:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--ink-2); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn--ghost-light { background: rgba(255,255,255,.06); color: var(--paper); border-color: rgba(248,242,230,.5); backdrop-filter: blur(6px); }
.btn--ghost-light:hover { background: rgba(255,255,255,.16); border-color: var(--paper); transform: translateY(-2px); }
.btn--sm { padding: .68rem 1.25rem; font-size: .9rem; }

/* ---------- IMAGE FRAME (graceful fallback) ---------- */
.img-frame {
  position: relative; overflow: hidden; background: var(--ink-2);
  display: grid; place-items: center;
}
.img-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.img-frame__label {
  position: relative; z-index: 0; text-align: center; padding: 1.2rem;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(248,242,230,.55);
}
.img-frame__label::before { content: '✶'; display: block; font-size: 1.5rem; color: var(--sun); margin-bottom: .5rem; }

/* ---------- TAG / PILL ---------- */
.tag {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--mono); font-size: .66rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 999px;
  background: rgba(23,19,26,.06); color: var(--ink-3);
}
.tag--magenta { background: rgba(255,46,110,.14); color: var(--magenta-dark); }
.tag--blue { background: rgba(43,89,255,.14); color: var(--blue-dark); }
.tag--sun { background: rgba(255,201,60,.22); color: #9a7400; }
.tag--teal { background: rgba(0,184,156,.16); color: var(--teal-dark); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(248,242,230,.86);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--ink);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; padding: .7rem var(--px); }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand__mark { width: 42px; height: 42px; flex-shrink: 0; }
.brand__text { line-height: 1; }
.brand__name { font-family: var(--display); font-weight: 800; font-size: 1.12rem; color: var(--ink); letter-spacing: -.02em; }
.brand__tag { display: block; font-family: var(--mono); font-size: .56rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.site-nav ul { display: flex; align-items: center; gap: 1.6rem; }
.site-nav a { font-family: var(--display); font-size: .98rem; font-weight: 600; color: var(--ink-2); }
.site-nav a:hover, .site-nav a.is-current { color: var(--magenta); }
.header-actions { display: flex; align-items: center; gap: .8rem; }
.menu-btn { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.menu-btn span { display: block; width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
@media (max-width: 1000px) {
  .site-nav { display: none; }
  .menu-btn { display: flex; }
  .header-actions .btn--ghost { display: none; }
  .site-nav.is-open {
    display: block; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 2px solid var(--ink);
    padding: 1.25rem var(--px); box-shadow: var(--shadow-md);
  }
  .site-nav.is-open ul { flex-direction: column; align-items: flex-start; gap: 1.15rem; }
  .site-nav.is-open a { font-size: 1.2rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; background: var(--ink); color: var(--paper); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 80% 10%, rgba(255,46,110,.30), transparent 45%),
              radial-gradient(120% 90% at 10% 90%, rgba(43,89,255,.34), transparent 48%),
              linear-gradient(180deg, rgba(23,19,26,.55), rgba(23,19,26,.82));
}
.hero__inner { position: relative; z-index: 3; padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 7vw, 5.5rem); }
.hero .overline { color: var(--sun); }
.hero .overline::before { background: var(--sun); }
.hero h1 {
  color: #fff; font-size: clamp(2.6rem, 7vw, 5.6rem); font-weight: 800;
  line-height: .98; max-width: 16ch; letter-spacing: -.03em;
  text-shadow: 0 2px 40px rgba(0,0,0,.35);
}
.hero h1 em { font-style: normal; color: var(--sun); }
.hero h1 .u { position: relative; white-space: nowrap; }
.hero h1 .u::after { content: ''; position: absolute; left: 0; right: 0; bottom: .04em; height: .14em; background: var(--magenta); border-radius: 4px; z-index: -1; }
.hero__sub { font-size: clamp(1.08rem, 1.8vw, 1.32rem); color: rgba(248,242,230,.9); max-width: 54ch; margin: 1.6rem 0 2.2rem; line-height: 1.6; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 1.4rem 2.4rem; margin-top: 2.6rem; font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(248,242,230,.7); }
.hero__meta b { color: var(--sun); font-weight: 500; }

/* page hero (interior pages) */
.page-hero { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.page-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(90% 120% at 90% 0%, rgba(255,46,110,.24), transparent 50%),
              radial-gradient(90% 120% at 0% 100%, rgba(0,184,156,.22), transparent 52%);
}
.page-hero__inner { position: relative; z-index: 2; padding: clamp(3rem,6vw,4.6rem) 0 clamp(2.6rem,5vw,3.6rem); }
.page-hero h1 { color: #fff; font-size: clamp(2.3rem, 5.5vw, 4rem); font-weight: 800; max-width: 18ch; }
.page-hero p { color: rgba(248,242,230,.84); font-size: 1.15rem; max-width: 56ch; margin-top: 1.1rem; line-height: 1.6; }
.crumbs { font-family: var(--mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(248,242,230,.6); margin-bottom: 1.1rem; }
.crumbs a:hover { color: var(--sun); }

/* ---------- MARQUEE STRIP ---------- */
.strip { background: var(--sun); color: var(--ink); overflow: hidden; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.strip__track { display: flex; gap: 2.4rem; padding: .7rem 0; white-space: nowrap; animation: marquee 34s linear infinite; }
.strip__track span { font-family: var(--display); font-size: .98rem; font-weight: 700; display: inline-flex; align-items: center; gap: 2.4rem; }
.strip__track span::before { content: '✷'; color: var(--magenta); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.stat { text-align: center; padding: 1rem; }
.stat b { display: block; font-family: var(--display); font-weight: 800; font-size: clamp(2.1rem, 4.4vw, 3.1rem); line-height: 1; }
.stat:nth-child(1) b { color: var(--magenta); }
.stat:nth-child(2) b { color: var(--blue); }
.stat:nth-child(3) b { color: var(--teal); }
.stat:nth-child(4) b { color: var(--sun-dark); }
.stat span { display: block; margin-top: .5rem; font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.section--ink .stat span { color: rgba(248,242,230,.66); }
@media (max-width: 680px) { .stats { grid-template-columns: 1fr 1fr; gap: 1.4rem .5rem; } }

/* ============================================================
   FEATURE / "WHAT WE DO" CARDS
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.4rem; }
.feature-card {
  background: var(--card); border: 2px solid var(--ink); border-radius: var(--radius);
  padding: 1.9rem 1.7rem; position: relative; overflow: hidden;
  transition: transform .18s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-pop); }
.feature-card .icon { width: 54px; height: 54px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 1.1rem; }
.feature-card .icon svg { width: 28px; height: 28px; color: #fff; }
.feature-card:nth-child(4n+1) .icon { background: var(--magenta); }
.feature-card:nth-child(4n+2) .icon { background: var(--blue); }
.feature-card:nth-child(4n+3) .icon { background: var(--teal); }
.feature-card:nth-child(4n+4) .icon { background: var(--sun-dark); }
.feature-card h3 { font-size: 1.28rem; font-weight: 700; margin-bottom: .5rem; }
.feature-card p { color: var(--ink-3); font-size: .98rem; line-height: 1.6; }

/* ============================================================
   EVENTS
   ============================================================ */
.events-list { display: flex; flex-direction: column; gap: 1.1rem; }
.event-card {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.6rem; align-items: center;
  background: var(--card); border: 2px solid var(--ink); border-radius: var(--radius);
  padding: 1.4rem 1.6rem; transition: transform .16s ease, box-shadow .25s ease;
}
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-pop); }
.event-date {
  text-align: center; flex-shrink: 0; width: 78px;
  border: 2px solid var(--ink); border-radius: var(--radius-sm); overflow: hidden;
}
.event-date .m { display: block; background: var(--magenta); color: #fff; font-family: var(--mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; padding: .25rem 0; }
.event-date .d { display: block; font-family: var(--display); font-weight: 800; font-size: 1.9rem; color: var(--ink); padding: .25rem 0 .4rem; line-height: 1; }
.event-card:nth-child(3n+2) .event-date .m { background: var(--blue); }
.event-card:nth-child(3n+3) .event-date .m { background: var(--teal); }
.event-info h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: .35rem; }
.event-info .meta { display: flex; flex-wrap: wrap; gap: .5rem .9rem; font-family: var(--mono); font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }
.event-info .meta span { display: inline-flex; align-items: center; gap: .35rem; }
.event-info .meta svg { width: 13px; height: 13px; color: var(--magenta); }
.event-info p { color: var(--ink-3); font-size: .94rem; line-height: 1.55; max-width: 60ch; }
.event-action { flex-shrink: 0; }
@media (max-width: 720px) {
  .event-card { grid-template-columns: auto 1fr; gap: 1rem 1.2rem; }
  .event-action { grid-column: 1 / -1; }
  .event-action .btn { width: 100%; }
}

/* program / recurring cards */
.program-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.program-card { background: var(--card); border: 2px solid var(--ink); border-radius: var(--radius); overflow: hidden; transition: transform .18s ease, box-shadow .25s ease; }
.program-card:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-pop); }
.program-card__img { aspect-ratio: 16/10; }
.program-card__img .img-frame { width: 100%; height: 100%; }
.program-card__body { padding: 1.5rem 1.6rem 1.7rem; }
.program-card__body h3 { font-size: 1.3rem; font-weight: 700; margin: .6rem 0 .5rem; }
.program-card__body p { color: var(--ink-3); font-size: .95rem; line-height: 1.6; }
.program-card .when { font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--magenta-dark); }

/* ============================================================
   SPLIT (about / mission image+text)
   ============================================================ */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 5/4; border: 2px solid var(--ink); box-shadow: var(--shadow-pop); }
.split__media .img-frame { width: 100%; height: 100%; }
.split__body p { color: var(--ink-3); font-size: 1.06rem; line-height: 1.8; margin-bottom: 1.1rem; }
.split__body p strong { color: var(--ink); }
.section--ink .split__body p { color: rgba(248,242,230,.82); }
.section--ink .split__body p strong { color: #fff; }
.signature { font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: var(--magenta); margin-top: 1.4rem; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .split__media { max-width: 480px; }
}

/* ============================================================
   CAUSES
   ============================================================ */
.causes { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; }
.cause {
  text-align: center; padding: 1.6rem 1rem; border-radius: var(--radius);
  border: 2px solid rgba(248,242,230,.18); background: rgba(255,255,255,.03);
}
.cause .emoji { font-size: 2rem; display: block; margin-bottom: .6rem; }
.cause b { display: block; font-family: var(--display); font-weight: 700; color: var(--paper-2); font-size: 1.02rem; }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.6rem; }
.team-card { text-align: center; }
.team-card__photo { aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; border: 2px solid var(--ink); margin-bottom: 1rem; }
.team-card__photo .img-frame { width: 100%; height: 100%; }
.team-card h3 { font-size: 1.18rem; font-weight: 700; }
.team-card .role { font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--magenta-dark); margin-top: .2rem; }
.team-card p { color: var(--ink-3); font-size: .92rem; line-height: 1.55; margin-top: .6rem; }

/* ============================================================
   DONATE TIERS
   ============================================================ */
.donate-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; align-items: stretch; }
.donate-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--card); border: 2px solid var(--ink); border-radius: var(--radius);
  padding: 2rem 1.7rem; transition: transform .18s ease, box-shadow .25s ease;
}
.donate-card:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-pop); }
.donate-card--featured { background: var(--ink); color: var(--paper); }
.donate-card--featured h3, .donate-card--featured .amount { color: #fff; }
.donate-card--featured p { color: rgba(248,242,230,.8); }
.donate-card__ribbon { position: absolute; top: -12px; left: 1.6rem; font-family: var(--mono); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; background: var(--sun); color: var(--ink); padding: .3rem .7rem; border-radius: 999px; border: 2px solid var(--ink); }
.donate-card .amount { font-family: var(--display); font-weight: 800; font-size: 2.6rem; color: var(--ink); line-height: 1; margin-bottom: .2rem; }
.donate-card .amount .per { font-family: var(--body); font-size: .9rem; font-weight: 500; color: var(--muted); }
.donate-card--featured .amount .per { color: rgba(248,242,230,.7); }
.donate-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .9rem; }
.donate-card p { color: var(--ink-3); font-size: .95rem; line-height: 1.6; margin-bottom: 1.4rem; }
.donate-card .btn { margin-top: auto; width: 100%; }

/* impact / where money goes */
.impact-list { display: flex; flex-direction: column; gap: 1.2rem; }
.impact-row { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start; }
.impact-row .amt { font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: var(--magenta); white-space: nowrap; min-width: 84px; }
.section--ink .impact-row .amt { color: var(--sun); }
.impact-row h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: .2rem; }
.impact-row p { color: var(--ink-3); font-size: .95rem; line-height: 1.55; }
.section--ink .impact-row p { color: rgba(248,242,230,.78); }

/* ============================================================
   INVOLVE CARDS
   ============================================================ */
.involve-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.involve-card {
  background: var(--card); border: 2px solid var(--ink); border-radius: var(--radius);
  padding: 2rem 1.8rem; display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .25s ease;
}
.involve-card:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-pop); }
.involve-card .icon { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 1.1rem; }
.involve-card .icon svg { width: 28px; height: 28px; color: #fff; }
.involve-card:nth-child(4n+1) .icon { background: var(--magenta); }
.involve-card:nth-child(4n+2) .icon { background: var(--blue); }
.involve-card:nth-child(4n+3) .icon { background: var(--teal); }
.involve-card:nth-child(4n+4) .icon { background: var(--sun-dark); }
.involve-card h3 { font-size: 1.32rem; font-weight: 700; margin-bottom: .5rem; }
.involve-card p { color: var(--ink-3); font-size: .97rem; line-height: 1.6; margin-bottom: 1.2rem; }
.involve-card ul { display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1.5rem; }
.involve-card li { display: flex; gap: .6rem; align-items: flex-start; font-size: .94rem; color: var(--ink-3); }
.involve-card li svg { width: 17px; height: 17px; color: var(--teal); flex-shrink: 0; margin-top: 3px; }
.involve-card .btn { margin-top: auto; }

/* ============================================================
   FORMS
   ============================================================ */
.form-card { background: var(--card); border: 2px solid var(--ink); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.6rem); box-shadow: var(--shadow-pop); }
.form-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: .35rem; }
.form-card .form-note { color: var(--muted); font-size: .92rem; margin-bottom: 1.6rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--display); font-size: .9rem; font-weight: 600; color: var(--ink-2); margin-bottom: .45rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: .96rem; color: var(--ink);
  padding: .85rem 1rem; border: 2px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper-2); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--magenta); box-shadow: 0 0 0 4px rgba(255,46,110,.14); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.form-card .btn { width: 100%; margin-top: .4rem; }
.form-success { display: none; text-align: center; padding: 1.5rem .5rem; }
.form-success.is-visible { display: block; }
.form-success__icon { width: 64px; height: 64px; border-radius: 50%; background: var(--teal); display: grid; place-items: center; margin: 0 auto 1rem; }
.form-success__icon svg { width: 32px; height: 32px; color: #fff; }
.form-success h3 { font-size: 1.4rem; margin-bottom: .4rem; }
.form-success p { color: var(--muted); }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

/* ---------- CONTACT LINES ---------- */
.contact-line { display: flex; gap: 1rem; align-items: center; padding: 1.05rem 0; border-bottom: 1px solid var(--line); }
.section--ink .contact-line { border-color: rgba(248,242,230,.16); }
.contact-line__icon { width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center; background: var(--magenta); }
.contact-line:nth-child(3n+2) .contact-line__icon { background: var(--blue); }
.contact-line:nth-child(3n) .contact-line__icon { background: var(--teal); }
.contact-line__icon svg { width: 20px; height: 20px; color: #fff; }
.contact-line .label { font-family: var(--mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.section--ink .contact-line .label { color: rgba(248,242,230,.6); }
.contact-line .value { font-size: 1.02rem; font-weight: 500; color: var(--ink); }
.section--ink .contact-line .value { color: var(--paper-2); }
.contact-line a.value:hover { color: var(--magenta); }

/* ============================================================
   FAQ / ACCORDION
   ============================================================ */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 2px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.3rem 0; text-align: left; font-family: var(--display); font-weight: 700; font-size: 1.12rem; color: var(--ink); }
.faq-q .pm { width: 26px; height: 26px; flex-shrink: 0; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content: ''; position: absolute; background: var(--magenta); border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-q .pm::before { width: 16px; height: 3px; }
.faq-q .pm::after { width: 3px; height: 16px; transition: transform .25s; }
.faq-item.is-open .faq-q .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { color: var(--ink-3); font-size: 1rem; line-height: 1.7; padding-bottom: 1.3rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review-card { background: var(--card); border: 2px solid var(--ink); border-radius: var(--radius); padding: 1.9rem 1.7rem; display: flex; flex-direction: column; gap: 1rem; }
.review-card .stars { color: var(--sun-dark); font-size: 1rem; letter-spacing: .12em; }
.review-card p { color: var(--ink-2); font-size: 1.04rem; line-height: 1.6; }
.review-card__who { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.review-card__avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; color: #fff; font-family: var(--display); font-weight: 800; }
.review-card:nth-child(3n+1) .review-card__avatar { background: var(--magenta); }
.review-card:nth-child(3n+2) .review-card__avatar { background: var(--blue); }
.review-card:nth-child(3n+3) .review-card__avatar { background: var(--teal); }
.review-card__who b { display: block; font-size: .95rem; color: var(--ink); }
.review-card__who span { font-family: var(--mono); font-size: .66rem; letter-spacing: .06em; color: var(--muted); }
@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; } }

/* ============================================================
   NEWSLETTER / CTA BANNER
   ============================================================ */
.cta-banner { background: var(--magenta); color: #fff; border-radius: var(--radius); border: 2px solid var(--ink); box-shadow: var(--shadow-pop); padding: clamp(2.2rem, 5vw, 3.4rem); text-align: center; }
.cta-banner h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; }
.cta-banner p { color: rgba(255,255,255,.92); font-size: 1.1rem; margin: .9rem auto 1.8rem; max-width: 52ch; }
.newsletter-form { display: flex; gap: .7rem; max-width: 480px; margin: 0 auto; }
.newsletter-form input { flex: 1; font: inherit; font-size: .98rem; padding: .9rem 1.1rem; border-radius: 999px; border: 2px solid var(--ink); background: #fff; color: var(--ink); }
.newsletter-form input:focus { outline: none; box-shadow: 0 0 0 4px rgba(0,0,0,.18); }
.newsletter-form .btn { flex-shrink: 0; }
.newsletter-msg { display: none; margin-top: 1rem; font-family: var(--mono); font-size: .82rem; letter-spacing: .04em; }
.newsletter-msg.is-visible { display: block; }
@media (max-width: 540px) { .newsletter-form { flex-direction: column; } .newsletter-form .btn { width: 100%; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(248,242,230,.72); padding: clamp(3rem,6vw,4.5rem) 0 0; }
.site-footer a { color: rgba(248,242,230,.72); }
.site-footer a:hover { color: var(--sun); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 2.2rem; padding-bottom: 2.6rem; }
.footer-brand .brand__name { color: #fff; font-size: 1.4rem; }
.footer-brand .brand__tag { color: rgba(248,242,230,.55); }
.footer-brand p { margin-top: 1.1rem; font-size: .97rem; line-height: 1.7; max-width: 38ch; }
.footer-badge { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.2rem; font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--sun); border: 1px solid rgba(255,201,60,.4); border-radius: 999px; padding: .4rem .8rem; }
.footer-col h4 { color: #fff; font-family: var(--display); font-size: 1.02rem; font-weight: 700; margin-bottom: 1rem; }
.footer-col li { margin-bottom: .6rem; font-size: .94rem; }
.footer-col a { display: inline-flex; align-items: center; gap: .5rem; }
.footer-col svg { width: 15px; height: 15px; color: var(--sun); flex-shrink: 0; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.3rem; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid rgba(248,242,230,.22); display: grid; place-items: center; transition: all .25s; }
.footer-social a:hover { background: var(--magenta); border-color: var(--magenta); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; color: var(--paper); }
.footer-bottom { border-top: 1px solid rgba(248,242,230,.14); padding: 1.5rem 0; display: flex; flex-wrap: wrap; gap: .75rem; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: .72rem; letter-spacing: .04em; color: rgba(248,242,230,.5); }
.footer-bottom .credit b { color: rgba(248,242,230,.85); font-weight: 500; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   MOBILE STICKY BAR
   ============================================================ */
.mobile-bar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: var(--ink); border-top: 2px solid var(--magenta); padding: .6rem .8rem; gap: .6rem; }
.mobile-bar .btn { flex: 1; padding: .85rem 1rem; font-size: .92rem; }
@media (max-width: 640px) { .mobile-bar { display: flex; } body { padding-bottom: 76px; } }

/* ============================================================
   SCROLL REVEAL + REDUCED MOTION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   ART PARTY RAINBOW THEME — on-brand overrides
   Glitter surfaces + Luckiest Guy poster type, tuned to the
   owners' maximalist, rainbow, gloriously-weird aesthetic.
   ============================================================ */

/* ---- Poster type for the big moments ---- */
.brand__name { font-family: var(--poster); font-weight: 400; letter-spacing: .015em; line-height: 1.1; }
.footer-brand .brand__name { font-family: var(--poster) !important; font-weight: 400 !important; }
.hero h1, .page-hero h1, .section-title, .cta-banner h2, .stat b {
  font-family: var(--poster); font-weight: 400; letter-spacing: .012em; line-height: 1.08;
}
.section-title { font-size: clamp(1.9rem, 4.4vw, 3.2rem); }
.cta-banner h2 { line-height: 1.1; }

/* ---- Rainbow word highlights (the <em> in titles) ---- */
.section-title em {
  -webkit-text-fill-color: transparent; color: transparent;
  background: var(--rainbow); -webkit-background-clip: text; background-clip: text;
}

/* ---- Shared rainbow-glitter surface ---- */
.rainbow-glitter, .hero--glitter, .strip--glitter, .page-hero {
  background-color: #ff2e6e;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.95) 0, rgba(255,255,255,0) 1.3px),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.72) 0, rgba(255,255,255,0) 1.1px),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.55) 0, rgba(255,255,255,0) 1px),
    var(--rainbow);
  background-size: 23px 23px, 31px 31px, 17px 17px, 100% 100%;
  background-position: 0 0, 12px 9px, 6px 14px, 0 0;
}

/* ---- Rainbow accents top & bottom ---- */
.site-header { border-top: 5px solid transparent; border-image: var(--rainbow) 1; }
.site-footer { border-top: 6px solid transparent; border-image: var(--rainbow) 1; }
.mobile-bar { border-top: 4px solid transparent; border-image: var(--rainbow) 1; }

/* ---- HERO on glitter (home) ---- */
.hero--glitter { color: #fff; min-height: clamp(520px, 80vh, 760px); }
.hero--glitter .hero__bg { display: none; }
.hero--glitter h1 {
  color: #fff; -webkit-text-stroke: 2.5px var(--ink); paint-order: stroke fill;
  text-shadow: 5px 5px 0 rgba(0,0,0,.16);
}
.hero--glitter h1 em { color: #fff; -webkit-text-fill-color: #fff; background: none; }
.hero--glitter h1 .u::after { background: var(--ink); height: .16em; }
.hero--glitter .overline { color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.45); }
.hero--glitter .overline::before { background: #fff; }
.hero--glitter .hero__sub {
  color: #fff; background: rgba(23,19,26,.6); border: 2px solid rgba(255,255,255,.45);
  padding: 1rem 1.25rem; border-radius: 18px; backdrop-filter: blur(3px); display: inline-block;
}
.hero--glitter .hero__meta { color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.hero--glitter .hero__meta b { color: #fff; }

/* ---- STRIP / marquee on glitter ---- */
.strip--glitter { background: var(--rainbow); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.strip--glitter .strip__track span {
  font-family: var(--poster); font-weight: 400; color: #fff;
  -webkit-text-stroke: 1.4px var(--ink); paint-order: stroke fill;
}
.strip--glitter .strip__track span::before { content: '✦'; -webkit-text-stroke: 0; color: #fff; }

/* ---- PAGE HERO: clean rainbow (no dots), interior pages ---- */
.page-hero { background: var(--rainbow); }
.page-hero::after { background: radial-gradient(130% 150% at 50% -25%, rgba(0,0,0,0), rgba(0,0,0,.3)); }
.page-hero h1 {
  color: #fff; -webkit-text-stroke: 2px var(--ink); paint-order: stroke fill;
  text-shadow: 4px 4px 0 rgba(0,0,0,.15);
}
.page-hero p {
  color: #fff; display: inline-block; background: rgba(23,19,26,.55);
  border: 2px solid rgba(255,255,255,.4); padding: .75rem 1.1rem; border-radius: 14px;
}
.crumbs { color: #fff; text-shadow: 0 1px 5px rgba(0,0,0,.55); }
.crumbs a:hover { color: var(--ink); }

/* ---- CTA banner → rainbow ---- */
.cta-banner { background: var(--rainbow); }
.cta-banner h2 { color: #fff; -webkit-text-stroke: 2px var(--ink); paint-order: stroke fill; text-shadow: 3px 3px 0 rgba(0,0,0,.18); }
.cta-banner p { color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.newsletter-msg { color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,.4); }

/* ---- Rainbow button option ---- */
.btn--rainbow { background: var(--rainbow); color: #fff; border-color: var(--ink); -webkit-text-stroke: .5px rgba(0,0,0,.45); }
.btn--rainbow:hover { transform: translateY(-2px); box-shadow: var(--shadow-pop); }

/* ---- Causes: colored accent tiles (no emoji) ---- */
.cause { border-top-width: 6px; padding-top: 1.4rem; }
.cause b { font-size: 1.08rem; letter-spacing: -.01em; }
.cause:nth-child(5n+1) { border-top-color: #FF2E6E; }
.cause:nth-child(5n+2) { border-top-color: #FF8A3D; }
.cause:nth-child(5n+3) { border-top-color: #FFD23C; }
.cause:nth-child(5n+4) { border-top-color: #3EC46B; }
.cause:nth-child(5n+5) { border-top-color: #2B9CFF; }

/* ============================================================
   FUN STICKER CARDS — "what happens here"
   ============================================================ */
.fun-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.7rem; }
.fun-card {
  position: relative; border: 3px solid var(--ink); border-radius: 22px;
  padding: 2.1rem 1.7rem 1.9rem; color: var(--ink); overflow: visible;
  box-shadow: 7px 7px 0 var(--ink);
  transition: transform .2s cubic-bezier(.2,1.3,.4,1), box-shadow .2s ease;
}
.fun-card:nth-child(6n+1) { background: #FFD23C; transform: rotate(-2.2deg); }
.fun-card:nth-child(6n+2) { background: #FF2E6E; color: #fff; transform: rotate(1.6deg); }
.fun-card:nth-child(6n+3) { background: #00B89C; transform: rotate(-1.4deg); }
.fun-card:nth-child(6n+4) { background: #2B9CFF; color: #fff; transform: rotate(2deg); }
.fun-card:nth-child(6n+5) { background: #7A4DFF; color: #fff; transform: rotate(-1.8deg); }
.fun-card:nth-child(6n+6) { background: #FF8A3D; transform: rotate(1.3deg); }
.fun-card:hover { transform: rotate(0) scale(1.04); box-shadow: 10px 10px 0 var(--ink); z-index: 3; }
.fun-card .icon {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  background: rgba(255,255,255,.9); border: 3px solid var(--ink); box-shadow: 3px 3px 0 var(--ink);
  margin-bottom: 1.2rem;
}
.fun-card .icon svg { width: 28px; height: 28px; color: var(--ink); }
.fun-card:hover .icon { animation: wiggle .45s ease; }
.fun-card h3 { font-family: var(--display); font-weight: 700; font-size: 1.35rem; letter-spacing: -.01em; margin-bottom: .5rem; color: inherit; }
.fun-card p { font-size: .97rem; line-height: 1.55; color: inherit; opacity: .94; }
@keyframes wiggle { 0%,100% { transform: rotate(0); } 25% { transform: rotate(-7deg); } 75% { transform: rotate(7deg); } }
@media (max-width: 820px) { .fun-grid { grid-template-columns: 1fr 1fr; gap: 1.3rem; } }
@media (max-width: 520px) { .fun-grid { grid-template-columns: 1fr; gap: 1.4rem; max-width: 380px; margin: 0 auto; } }

/* ============================================================
   HERO FLOATING STICKERS
   ============================================================ */
.hero__stickers { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero__sticker {
  position: absolute; font-size: clamp(2rem, 4vw, 3.1rem);
  filter: drop-shadow(2px 3px 0 rgba(0,0,0,.28));
  transform: rotate(var(--r, 0deg));
  animation: floaty 5.5s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-16px) rotate(var(--r, 0deg)); }
}
@media (max-width: 760px) { .hero__stickers { display: none; } }

/* ============================================================
   MOBILE POLISH PASS
   ============================================================ */
@media (max-width: 600px) {
  /* Header: keep the long poster wordmark from overflowing */
  .site-header__inner { padding: .6rem 1.1rem; gap: .7rem; }
  .brand { gap: .55rem; }
  .brand__mark { width: 34px; height: 34px; }
  .brand__name { font-size: .92rem; line-height: 1.04; }
  .brand__tag { display: none; }
  .header-actions { gap: .5rem; }
  .header-actions .btn--sm { padding: .58rem .95rem; font-size: .82rem; }

  /* Thinner outline on big poster text so it stays crisp small */
  .hero--glitter h1 { -webkit-text-stroke-width: 1.6px; text-shadow: 3px 3px 0 rgba(0,0,0,.16); }
  .page-hero h1 { -webkit-text-stroke-width: 1.5px; text-shadow: 3px 3px 0 rgba(0,0,0,.15); }
  .cta-banner h2 { -webkit-text-stroke-width: 1.5px; }
  .strip--glitter .strip__track span { -webkit-text-stroke-width: 1px; }

  /* Roomier, full-width CTAs that are easy to thumb */
  .hero__cta { gap: .7rem; }
  .hero__cta .btn, .page-hero .btn { width: 100%; }
  .hero--glitter .hero__sub { font-size: 1rem; padding: .9rem 1.05rem; }
  .hero__meta { gap: .8rem 1.4rem; margin-top: 1.8rem; }

  /* Sticker cards sit straight on phones so nothing clips the edge */
  .fun-card { transform: none !important; box-shadow: 5px 5px 0 var(--ink); }
  .fun-card:hover { transform: scale(1.02) !important; }

  /* Section rhythm a touch tighter */
  :root { --section-py: clamp(3rem, 9vw, 5rem); }
  .section-head { margin-bottom: 2.2rem; }
}

@media (max-width: 380px) {
  .brand__name { font-size: .82rem; }
  .header-actions .btn--sm { padding: .55rem .8rem; }
}

/* ============================================================
   PHOTO GALLERY (masonry) + LIGHTBOX
   ============================================================ */
.photo-gallery { column-width: 270px; column-gap: 1.1rem; }
.photo {
  break-inside: avoid; margin: 0 0 1.1rem; cursor: zoom-in;
  border: 3px solid var(--ink); border-radius: 16px; overflow: hidden;
  box-shadow: 6px 6px 0 var(--ink); background: var(--card);
  transition: transform .2s cubic-bezier(.2,1.3,.4,1), box-shadow .2s ease;
}
.photo:nth-child(3n+1) { transform: rotate(-1.4deg); }
.photo:nth-child(3n+2) { transform: rotate(1deg); }
.photo:nth-child(3n+3) { transform: rotate(-.6deg); }
.photo:hover { transform: rotate(0) scale(1.03); box-shadow: 9px 9px 0 var(--ink); position: relative; z-index: 3; }
.photo img { width: 100%; display: block; }
@media (max-width: 520px) { .photo-gallery { column-width: 100%; } .photo { transform: none !important; } }

.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 4vw;
  background: rgba(23,19,26,.92); backdrop-filter: blur(4px);
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 92vw; max-height: 88vh; width: auto; height: auto;
  border: 4px solid #fff; border-radius: 14px; box-shadow: 0 24px 70px rgba(0,0,0,.6);
}
.lightbox__close {
  position: absolute; top: 1.1rem; right: 1.3rem; width: 52px; height: 52px;
  border-radius: 50%; background: var(--magenta); color: #fff; border: 3px solid #fff;
  font-size: 1.8rem; line-height: 1; display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.4); transition: transform .15s ease, background .2s;
}
.lightbox__close:hover { background: var(--magenta-dark); transform: rotate(90deg) scale(1.05); }

/* ============================================================
   POP-ART HERO (modern, photo-forward, rainbow)
   ============================================================ */
.hero--pop {
  display: block; min-height: 0; background: var(--paper-2); color: var(--ink);
  position: relative; overflow: hidden; border-bottom: 3px solid var(--ink);
}
.hero--pop::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 70% at -5% 0%, rgba(255,46,110,.12), transparent 60%),
    radial-gradient(55% 70% at 105% 95%, rgba(43,156,255,.12), transparent 60%),
    radial-gradient(40% 50% at 50% 110%, rgba(255,201,60,.10), transparent 60%);
}
.hero--pop .hero__grid {
  position: relative; z-index: 2; display: grid;
  grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center; padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.5rem, 8vw, 6rem);
}
.hero--pop .overline { color: var(--magenta-dark); }
.hero--pop .overline::before { background: var(--magenta); }
.hero--pop h1 {
  color: var(--ink); -webkit-text-stroke: 0; text-shadow: none;
  font-size: clamp(2.5rem, 5.6vw, 4.8rem); max-width: 14ch;
}
.hero--pop h1 em {
  -webkit-text-fill-color: transparent; color: transparent;
  background: var(--rainbow); -webkit-background-clip: text; background-clip: text;
}
.hero--pop h1 .u::after { background: var(--rainbow); height: .16em; }
.hero--pop .hero__sub {
  color: var(--ink-3); background: none; border: 0; padding: 0; backdrop-filter: none;
  font-size: clamp(1.04rem, 1.5vw, 1.22rem); max-width: 52ch; display: block;
}
.hero--pop .hero__cta { margin-top: 1.7rem; }
.hero--pop .hero__meta { color: var(--muted); text-shadow: none; }
.hero--pop .hero__meta b { color: var(--ink); }

.hero__blob {
  position: absolute; z-index: 1; top: 50%; right: -8%; transform: translateY(-50%);
  width: min(58vw, 660px); aspect-ratio: 1; border-radius: 47% 53% 56% 44% / 52% 48% 52% 48%;
  background: var(--rainbow); opacity: .9; filter: blur(3px);
}
.hero__art { position: relative; z-index: 2; width: 100%; max-width: 460px; margin-left: auto; }
.hero__photo {
  border: 4px solid var(--ink); border-radius: 20px; overflow: hidden;
  box-shadow: 12px 12px 0 var(--ink); background: var(--card);
}
.hero__photo--main { transform: rotate(2.2deg); aspect-ratio: 4/5; }
.hero__photo--main img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo--mini {
  position: absolute; left: -12%; bottom: -10%; width: 46%; aspect-ratio: 1;
  transform: rotate(-7deg); box-shadow: 8px 8px 0 var(--magenta); z-index: 3;
}
.hero__photo--mini img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .hero--pop .hero__grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero__blob { display: none; }
  .hero__art { max-width: 380px; margin: .5rem auto 1rem; }
  .hero__photo--main { transform: rotate(1.5deg); }
}

/* ============================================================
   PUNK ROCK FLEA MARKET — denim & patches flyer
   ============================================================ */
.flea {
  position: relative; overflow: hidden; color: #fff;
  border-top: 4px solid var(--ink); border-bottom: 4px solid var(--ink);
  background-color: #5b7fb0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.06) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(-45deg, rgba(0,0,0,.07) 0 1px, transparent 1px 4px),
    linear-gradient(180deg, #688ABB 0%, #4C6E9E 100%);
}
.flea::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 140px rgba(16,30,55,.55);
}
.flea .container { position: relative; z-index: 2; }
.flea__head { text-align: center; margin-bottom: 2rem; }
.flea__kicker {
  display: inline-block; font-family: var(--mono); letter-spacing: .2em; text-transform: uppercase;
  font-size: .72rem; color: #fff; background: rgba(16,30,55,.5); padding: .42rem .9rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
}
.flea__title {
  font-family: var(--poster); color: #E8392C; line-height: .92; margin: .7rem 0 .5rem;
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  -webkit-text-stroke: 3px #320f0b; paint-order: stroke fill;
  text-shadow: 5px 5px 0 rgba(0,0,0,.4);
}
.flea__tag { color: #fff; font-weight: 500; font-size: 1.08rem; text-shadow: 0 1px 5px rgba(0,0,0,.5); max-width: 46ch; margin: 0 auto; }
.flea__patches { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 2rem; }
.patch {
  position: relative; font-family: var(--display); font-weight: 700; color: #fff;
  padding: .8rem 1.3rem; border-radius: 13px; border: 3px solid rgba(0,0,0,.45);
  box-shadow: 0 5px 12px rgba(0,0,0,.32);
}
.patch::after { content: ''; position: absolute; inset: 5px; border: 2px dashed rgba(255,255,255,.85); border-radius: 8px; pointer-events: none; }
.patch:nth-child(odd) { transform: rotate(-2.2deg); }
.patch:nth-child(even) { transform: rotate(2deg); }
.patch--green { background: #3AA14A; }
.patch--pink { background: #FF2E8E; }
.patch--yellow { background: #E6A800; color: #2a1c00; }
.patch--yellow::after { border-color: rgba(0,0,0,.4); }
.patch--blue { background: #2B59C4; }
.patch--orange { background: #EF6A23; }
.patch--purple { background: #7A3FD0; }
.flea__dates {
  display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center;
  max-width: 780px; margin: 0 auto 1.6rem;
}
.datepatch {
  font-family: var(--display); font-weight: 600; font-size: .92rem; color: #10243f;
  background: rgba(255,255,255,.94); border: 2px dashed #10243f; border-radius: 9px; padding: .42rem .75rem;
}
.datepatch:nth-child(3n+1) { transform: rotate(-1.6deg); }
.datepatch:nth-child(3n+2) { transform: rotate(1.6deg); }
.datepatch b { color: var(--magenta-dark); }
.flea__sponsor {
  text-align: center; color: #fff; font-family: var(--mono); font-size: .76rem;
  letter-spacing: .06em; margin-bottom: 1.8rem; text-shadow: 0 1px 3px rgba(0,0,0,.6);
}
.flea__cta { text-align: center; }

/* ============================================================
   RAINBOW-GLITTER NAV BAR (matches their logo)
   ============================================================ */
.site-header {
  background: var(--rainbow); backdrop-filter: none;
  border-top: none; border-bottom: 3px solid var(--ink);
}
.site-header .brand__name {
  color: #fff; -webkit-text-stroke: 1.6px var(--ink); paint-order: stroke fill;
  text-shadow: 2px 2px 0 rgba(0,0,0,.18);
}
.site-header .brand__tag { color: rgba(255,255,255,.92); text-shadow: 0 1px 2px rgba(0,0,0,.45); }
.site-nav a { color: #fff; font-weight: 600; text-shadow: 0 1px 3px rgba(0,0,0,.45); }
.site-nav a:hover, .site-nav a.is-current { color: var(--ink); text-shadow: none; }
.menu-btn span { background: var(--ink); }
.site-header .btn--ghost { color: #fff; border-color: #fff; }
.site-header .btn--ghost:hover { background: #fff; color: var(--ink); }
.site-header .btn--primary { background: var(--ink); color: #fff; box-shadow: 0 6px 16px rgba(0,0,0,.32); }
.site-header .btn--primary:hover { background: var(--ink-2); }
/* mobile dropdown panel → readable dark-on-paper */
.site-nav.is-open { background: var(--paper); }
.site-nav.is-open a { color: var(--ink); text-shadow: none; }
.site-nav.is-open a:hover, .site-nav.is-open a.is-current { color: var(--magenta); }
