/* ============================================================
   Summer of Live × Propeller — campaign hub
   Bright "Summer of Live" system: cream paper, lime + cyan,
   charcoal display type (Vanity-Condensed), DM Sans body.
   ============================================================ */

@font-face {
  font-family: 'Vanity Condensed';
  src: url('assets/fonts/Vanity-Condensed.otf') format('opentype');
  font-weight: 400 900;
  font-display: swap;
}

:root {
  --paper: #FBF6E9;
  --paper-2: #F3EBD6;
  --paper-3: #ECE1C5;
  --ink: #1c1c19;
  --ink-soft: #565049;
  --ink-faint: rgba(28, 28, 25, 0.55);
  --line: rgba(28, 28, 25, 0.14);
  --line-strong: rgba(28, 28, 25, 0.9);
  --lime: #C7ED4B;
  --lime-deep: #AAD52C;
  --lime-ink: #2e3a06;
  --cyan: #79D8E6;
  --cyan-deep: #36BCD2;
  --coral: #FF4719;        /* Propeller accent */
  --coral-deep: #E03A11;

  --display: 'Vanity Condensed', 'Arial Narrow', 'Helvetica Neue', sans-serif;
  --body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --maxw: 1180px;
  --gut: clamp(18px, 5vw, 56px);
  --radius: 16px;
  --radius-lg: 26px;
  --shadow: 0 18px 50px -28px rgba(28, 28, 25, 0.55);
  --shadow-sm: 0 8px 24px -16px rgba(28, 28, 25, 0.6);
  --ease: cubic-bezier(0.4, 0.04, 0.1, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }

/* ---------- type ---------- */
.display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
.kicker {
  font-family: var(--body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: var(--ink-soft);
}
.mark { background: var(--lime); box-shadow: 0 0 0 0.12em var(--lime); border-radius: 2px; }
.section-head { max-width: 640px; margin-bottom: clamp(28px, 4vw, 46px); }
.section-head h2 {
  font-family: var(--display);
  text-transform: uppercase;
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 0.86;
  margin: 0.32em 0 0.28em;
  letter-spacing: 0.01em;
}
.section-head p { margin: 0; color: var(--ink-soft); font-size: 1.05rem; max-width: 52ch; }

section { padding-block: clamp(56px, 9vw, 120px); position: relative; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 700; font-size: 1rem;
  padding: 0.95em 1.6em; border-radius: 999px;
  background: var(--ink); color: var(--paper);
  transition: transform 0.18s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--lime); color: var(--lime-ink); transform: translateY(-2px); }
.btn .arrow { transition: transform 0.18s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--lime { background: var(--lime); color: var(--lime-ink); }
.btn--lime:hover { background: var(--ink); color: var(--paper); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--line-strong); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); box-shadow: inset 0 0 0 2px var(--ink); }
.btn--sm { padding: 0.6em 1.1em; font-size: 0.86rem; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 246, 233, 0.78);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.site-header.stuck { border-bottom-color: var(--line); }
.site-header .wrap { display: flex; align-items: center; gap: 18px; min-height: 66px; }
.brand-lockup { height: 30px; width: auto; }
.brand-lockup img { height: 100%; width: auto; }
.site-nav { display: flex; gap: 26px; margin-left: auto; }
.site-nav a {
  font-weight: 600; font-size: 0.95rem; color: var(--ink-soft);
  position: relative; padding: 4px 0; transition: color 0.15s;
}
.site-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 3px; width: 0;
  background: var(--lime-deep); border-radius: 2px; transition: width 0.2s var(--ease);
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { width: 100%; }
.header-cta { margin-left: 6px; }
.nav-toggle { display: none; margin-left: auto; width: 42px; height: 42px; border-radius: 12px;
  background: var(--ink); color: var(--paper); align-items: center; justify-content: center; }

@media (max-width: 860px) {
  .site-nav, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-nav.open {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); padding: 14px var(--gut) 22px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm);
  }
  .site-nav.open a { padding: 12px 0; font-size: 1.1rem; border-bottom: 1px solid var(--line); }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  padding-top: clamp(36px, 6vw, 64px);
  padding-bottom: clamp(48px, 7vw, 90px);
  background:
    radial-gradient(120% 90% at 92% 8%, rgba(121, 216, 230, 0.0) 40%, rgba(54, 188, 210, 0.34) 100%),
    linear-gradient(152deg, #FCF8EE 0%, #F6F0CE 28%, #DEEE93 50%, #A7E2B6 74%, #7FDCE3 100%);
}
.hero::before { /* paper grain */
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(24px, 5vw, 64px); align-items: center; }

.hero-lockup { width: clamp(220px, 30vw, 360px); margin-bottom: 22px; }
.hero-cobrand { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.hero-cobrand .x { font-family: var(--display); font-size: 1.8rem; color: var(--ink); opacity: 0.5; }
.hero-cobrand .propeller-mark {
  font-family: var(--display); text-transform: uppercase; font-size: 1.7rem; letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 9px;
}
.hero-cobrand .propeller-mark .prop-mark { width: 26px; height: 26px; }

.hero h1 {
  font-family: var(--display); text-transform: uppercase; font-weight: 400;
  font-size: clamp(3.4rem, 11vw, 7.2rem); line-height: 0.82; margin: 0 0 0.34em;
  letter-spacing: 0.005em;
}
.hero h1 .swash { position: relative; display: inline-block; }
.hero h1 .swash::after {
  content: ''; position: absolute; left: -2%; right: -4%; bottom: 0.06em; height: 0.34em; z-index: -1;
  background: var(--lime); border-radius: 40% 60% 55% 45% / 60% 50% 50% 40%;
  transform: rotate(-1.4deg);
}
.hero-sub { font-size: clamp(1.06rem, 1.6vw, 1.28rem); color: var(--ink-soft); max-width: 38ch; margin: 0 0 30px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-stats { display: flex; gap: 30px; margin-top: 38px; flex-wrap: wrap; }
.hero-stats .stat .n { font-family: var(--display); font-size: clamp(2.2rem, 4vw, 3rem); line-height: 1; }
.hero-stats .stat .l { font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-soft); }

/* Premier card — built from Propeller Premier assets (no photography) */
.hero-media { position: relative; }
.premier-card {
  position: relative; background: #fff; border-radius: 22px; padding: 26px 24px 22px;
  box-shadow: 0 34px 70px -34px rgba(28,28,25,0.6); transform: rotate(2.2deg);
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px;
  border: 1px solid rgba(28,28,25,0.06);
}
.premier-card .premier-badge { width: clamp(78px, 12vw, 104px); height: auto; }
.premier-card .premier-tag {
  font-family: var(--display); text-transform: uppercase; font-size: 1.5rem; letter-spacing: 0.02em; line-height: 1;
  background: linear-gradient(90deg, #ff5a1f, #ff2d7e); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.premier-card .premier-stage {
  width: 100%; margin: 4px 0 2px; border-radius: 14px; overflow: hidden;
  background: radial-gradient(120% 90% at 50% 10%, #eaf6c4, #cdeff2);
  display: grid; place-items: center; padding: 6px;
}
.premier-card .premier-tix { width: 100%; height: auto; mix-blend-mode: multiply; }
.premier-card .premier-cap { font-weight: 600; color: var(--ink-soft); font-size: 0.92rem; max-width: 24ch; }
.doodle { position: absolute; pointer-events: none; z-index: 1; opacity: 0.9; }
.doodle--sun { top: 8%; right: 4%; width: 90px; color: var(--cyan-deep); }
.doodle--streak { bottom: 12%; left: -10px; width: 120px; color: var(--lime-deep); }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 340px; margin: 12px auto 0; }
  .premier-card { transform: rotate(1.5deg); }
  .hero-stats { gap: 22px; }
}

/* ============================================================
   Find your show
   ============================================================ */
.finder { background: var(--paper); }
.tabs { display: inline-flex; gap: 6px; padding: 6px; background: var(--paper-2); border-radius: 999px; margin-bottom: 30px; flex-wrap: wrap; }
.tab {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.96rem;
  padding: 0.7em 1.3em; border-radius: 999px; color: var(--ink-soft); transition: background 0.18s var(--ease), color 0.18s;
}
.tab[aria-selected="true"] { background: var(--ink); color: var(--paper); }
.tab .ic { width: 18px; height: 18px; }
.tabpanel { display: none; }
.tabpanel.active { display: block; animation: fade 0.3s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.search {
  position: relative; max-width: 520px; margin-bottom: 26px;
}
.search input {
  width: 100%; font-family: inherit; font-size: 1.05rem; padding: 1em 1em 1em 3em;
  border-radius: 999px; border: 2px solid var(--line); background: #fff; color: var(--ink);
}
.search input:focus { outline: none; border-color: var(--ink); }
.search .ic { position: absolute; left: 1.1em; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--ink-soft); }
.search .clear { position: absolute; right: 0.7em; top: 50%; transform: translateY(-50%); width: 30px; height: 30px;
  border-radius: 50%; display: none; align-items: center; justify-content: center; color: var(--ink-soft); }
.search .clear.show { display: inline-flex; }
.autocomplete {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 30; background: #fff;
  border-radius: 16px; box-shadow: var(--shadow); border: 1px solid var(--line); overflow: hidden; display: none;
}
.autocomplete.show { display: block; }
.autocomplete button { display: flex; width: 100%; justify-content: space-between; align-items: center;
  padding: 0.8em 1.1em; text-align: left; font-weight: 600; border-bottom: 1px solid var(--line); }
.autocomplete button:last-child { border-bottom: none; }
.autocomplete button:hover, .autocomplete button.active { background: var(--paper-2); }
.autocomplete .meta { font-size: 0.82rem; color: var(--ink-soft); font-weight: 500; }

.toolbar { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 22px; }
.toolbar .count { font-weight: 600; color: var(--ink-soft); font-size: 0.92rem; }
.sortbar { display: inline-flex; gap: 4px; background: var(--paper-2); border-radius: 999px; padding: 4px; margin-left: auto; }
.sortbar button { padding: 0.45em 0.95em; border-radius: 999px; font-weight: 600; font-size: 0.85rem; color: var(--ink-soft); }
.sortbar button[aria-pressed="true"] { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }

/* artist grid */
.artist-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(165px, 1fr)); gap: 14px; }
@media (max-width: 420px) { .artist-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
.artist-card {
  text-align: left; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0; overflow: hidden; transition: transform 0.16s var(--ease), box-shadow 0.16s var(--ease), border-color 0.16s;
  display: flex; flex-direction: column;
}
.artist-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.artist-thumb {
  aspect-ratio: 1; background: var(--paper-2); position: relative; display: grid; place-items: center; overflow: hidden;
}
.artist-thumb .initials { font-family: var(--display); font-size: 2.6rem; color: rgba(28,28,25,0.22); text-transform: uppercase; }
.artist-thumb .artist-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.artist-thumb .ph-tag { position: absolute; bottom: 6px; right: 6px; font-size: 0.55rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-faint); background: rgba(255,255,255,0.7); padding: 2px 6px; border-radius: 6px; }
.artist-card:nth-child(4n+1) .artist-thumb { background: linear-gradient(135deg, #DEEE93, #A7E2B6); }
.artist-card:nth-child(4n+2) .artist-thumb { background: linear-gradient(135deg, #BfeCef, #79D8E6); }
.artist-card:nth-child(4n+3) .artist-thumb { background: linear-gradient(135deg, #F6F0CE, #DEEE93); }
.artist-card:nth-child(4n+4) .artist-thumb { background: linear-gradient(135deg, #ffd9c2, #ffb38f); }
.artist-card .body { padding: 13px 14px 15px; }
.artist-card .name { font-family: var(--display); font-size: 1.5rem; line-height: 0.94; text-transform: uppercase; }
.artist-card .sub { font-size: 0.8rem; color: var(--ink-soft); margin-top: 5px; font-weight: 600; }
.artist-card .genre-tag { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-faint); margin-top: 2px; }

/* venue list */
.region-block { margin-bottom: 34px; }
.region-block h3 { font-family: var(--display); text-transform: uppercase; font-size: 1.8rem; margin: 0 0 14px;
  display: flex; align-items: baseline; gap: 12px; }
.region-block h3 .n { font-family: var(--body); font-size: 0.8rem; font-weight: 700; color: var(--ink-faint); letter-spacing: 0.1em; }
.venue-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 14px; }
.venue-card {
  display: flex; flex-direction: column; gap: 10px; text-align: left; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 18px 16px; min-height: 150px;
  transition: transform 0.16s var(--ease), box-shadow 0.16s var(--ease), border-color 0.16s;
}
.venue-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.venue-logo { height: 34px; display: flex; align-items: center; }
.venue-logo img { height: 100%; width: auto; max-width: 160px; object-fit: contain; }
.venue-card .vname { font-family: var(--display); text-transform: uppercase; font-size: 1.32rem; line-height: 0.96; }
.venue-card .vcity { font-size: 0.84rem; color: var(--ink-soft); font-weight: 600; margin-top: -4px; }
.venue-card .vmeta { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding-top: 12px; border-top: 1px solid var(--line); font-size: 0.82rem; font-weight: 600; }
.venue-card .vshows { background: var(--lime); color: var(--lime-ink); padding: 3px 9px; border-radius: 999px; }
.venue-card .vgo { color: var(--ink-soft); display: inline-flex; align-items: center; gap: 4px; }
.venue-card:hover .vgo { color: var(--ink); }

.venue-views { display: inline-flex; gap: 4px; background: var(--paper-2); border-radius: 999px; padding: 4px; }
.venue-views button { padding: 0.45em 1em; border-radius: 999px; font-weight: 700; font-size: 0.85rem; color: var(--ink-soft); }
.venue-views button[aria-pressed="true"] { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }

/* map */
.map-wrap { display: none; background: linear-gradient(160deg, #eaf3d6, #cfeef2); border-radius: var(--radius-lg);
  border: 1px solid var(--line); padding: 10px; position: relative; }
.map-wrap.show { display: block; }
.us-map { position: relative; width: 100%; aspect-ratio: 16 / 10; }
.us-map svg.outline { position: absolute; inset: 0; width: 100%; height: 100%; color: rgba(28,28,25,0.16); }
.map-pin { position: absolute; transform: translate(-50%, -50%); width: 14px; height: 14px; border-radius: 50%;
  background: var(--coral); border: 2px solid #fff; box-shadow: var(--shadow-sm); cursor: pointer; transition: transform 0.15s; z-index: 2; }
.map-pin:hover, .map-pin:focus-visible { transform: translate(-50%, -50%) scale(1.5); z-index: 5; }
.map-pin .tip { position: absolute; bottom: 150%; left: 50%; transform: translateX(-50%); white-space: nowrap;
  background: var(--ink); color: var(--paper); font-size: 0.72rem; font-weight: 600; padding: 5px 9px; border-radius: 8px;
  opacity: 0; pointer-events: none; transition: opacity 0.15s; }
.map-pin:hover .tip, .map-pin:focus-visible .tip { opacity: 1; }

/* calendar */
.cal-months { display: inline-flex; gap: 4px; background: var(--paper-2); border-radius: 999px; padding: 5px; margin-bottom: 24px; flex-wrap: wrap; }
.cal-months button { padding: 0.55em 1.2em; border-radius: 999px; font-weight: 700; font-size: 0.92rem; color: var(--ink-soft); }
.cal-months button[aria-pressed="true"] { background: var(--ink); color: var(--paper); }
.cal-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: start; }
.calendar { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 16px; }
.cal-dow { display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: 6px; }
.cal-dow span { text-align: center; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-faint); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal-day { aspect-ratio: 1; border-radius: 10px; position: relative; display: flex; flex-direction: column;
  align-items: center; justify-content: center; font-weight: 600; font-size: 0.92rem; color: var(--ink-soft); background: var(--paper); }
.cal-day.empty { background: transparent; }
.cal-day.has { background: var(--lime); color: var(--lime-ink); cursor: pointer; transition: transform 0.12s; }
.cal-day.has:hover { transform: scale(1.06); }
.cal-day.has .dot { position: absolute; bottom: 7px; font-size: 0.58rem; font-weight: 700; }
.cal-day.sel { background: var(--ink); color: var(--paper); }
.cal-day.sel .dot { color: var(--lime); }
.day-shows { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 18px 20px; min-height: 220px; }
.day-shows h4 { font-family: var(--display); text-transform: uppercase; font-size: 1.6rem; margin: 0 0 12px; }
.day-shows .empty-state { color: var(--ink-soft); }
.show-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.show-row:last-child { border-bottom: none; }
.show-row .si .a { font-weight: 700; }
.show-row .si .v { font-size: 0.84rem; color: var(--ink-soft); }
@media (max-width: 820px) { .cal-layout { grid-template-columns: 1fr; } }

/* ============================================================
   How it works
   ============================================================ */
.how { background: var(--ink); color: var(--paper); }
.how .section-head h2 { color: var(--paper); }
.how .section-head p { color: rgba(251,246,233,0.72); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step {
  background: rgba(251,246,233,0.05); border: 1px solid rgba(251,246,233,0.14); border-radius: var(--radius-lg);
  padding: 28px 26px 30px; position: relative; overflow: hidden;
}
.step .num { counter-increment: step; font-family: var(--display); font-size: 3.4rem; line-height: 1; color: var(--lime); }
.step .num::before { content: counter(step); }
.step .ic { width: 38px; height: 38px; color: var(--cyan); margin: 14px 0 16px; }
.step h3 { font-family: var(--display); text-transform: uppercase; font-size: 1.7rem; margin: 0 0 10px; line-height: 0.95; }
.step p { margin: 0; color: rgba(251,246,233,0.74); font-size: 0.98rem; }
.step .arrow-link { position: absolute; top: 24px; right: 24px; color: rgba(251,246,233,0.3); font-size: 1.8rem; font-family: var(--display); }
.how-foot { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.how-foot .fine { color: rgba(251,246,233,0.5); font-size: 0.82rem; max-width: 46ch; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   Causes
   ============================================================ */
.causes { background: var(--paper-2); }
.cause-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.cause-card {
  background: #fff; border-radius: var(--radius); border: 1px solid var(--line); padding: 22px 22px 20px;
  display: flex; flex-direction: column; gap: 8px; transition: transform 0.16s var(--ease), box-shadow 0.16s var(--ease);
}
.cause-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cause-card .chip { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; color: #fff; margin-bottom: 6px; }
.cause-card h3 { font-family: var(--display); text-transform: uppercase; font-size: 1.5rem; margin: 0; line-height: 0.96; }
.cause-card p { margin: 0; font-size: 0.92rem; color: var(--ink-soft); }
.cause-card .go { margin-top: auto; font-weight: 700; font-size: 0.86rem; color: var(--coral); display: inline-flex; align-items: center; gap: 5px; padding-top: 10px; }
.cause-note { margin-top: 22px; font-size: 0.82rem; color: var(--ink-faint); }

/* ============================================================
   Proof
   ============================================================ */
.proof { background: var(--paper); text-align: center; }
.proof-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(28px, 7vw, 80px); margin: 8px 0 50px; }
.proof-stats .stat .n { font-family: var(--display); font-size: clamp(3.2rem, 8vw, 5.4rem); line-height: 0.9; }
.proof-stats .stat .n .accent { color: var(--coral); }
.proof-stats .stat .l { font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.82rem; color: var(--ink-soft); }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scroll 46s linear infinite; align-items: center; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll { to { transform: translateX(-50%); } }
.marquee img { height: 30px; width: auto; opacity: 0.62; filter: grayscale(1); transition: opacity 0.2s, filter 0.2s; }
.marquee img:hover { opacity: 1; filter: none; }
.proof-cap { font-size: 0.8rem; color: var(--ink-faint); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 22px; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; flex-wrap: wrap; } }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink); color: var(--paper); padding-block: 60px 40px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 40px; border-bottom: 1px solid rgba(251,246,233,0.15); }
.footer-brand .footer-logo { height: 32px; width: auto; margin-bottom: 6px; }
.footer-brand p { color: rgba(251,246,233,0.6); font-size: 0.9rem; max-width: 34ch; }
.footer-col h4 { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(251,246,233,0.5); margin: 0 0 14px; }
.footer-col a { display: block; padding: 6px 0; color: rgba(251,246,233,0.85); font-size: 0.94rem; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; padding-top: 26px; }
.footer-bottom .legal { font-size: 0.8rem; color: rgba(251,246,233,0.45); }
.footer-bottom .ln { font-family: var(--display); text-transform: uppercase; font-size: 1.1rem; letter-spacing: 0.04em; color: rgba(251,246,233,0.7); }
.socials { display: flex; gap: 12px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(251,246,233,0.1); color: var(--paper); transition: background 0.18s, color 0.18s; }
.socials a:hover { background: var(--lime); color: var(--lime-ink); }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }

/* ============================================================
   Modal (artist tour dates)
   ============================================================ */
.modal-scrim { position: fixed; inset: 0; z-index: 100; background: rgba(28,28,25,0.55); backdrop-filter: blur(4px);
  display: none; align-items: flex-end; justify-content: center; padding: 0; }
.modal-scrim.open { display: flex; }
@media (min-width: 720px) { .modal-scrim { align-items: center; padding: 24px; } }
.modal {
  background: var(--paper); width: 100%; max-width: 560px; max-height: 88vh; overflow: auto;
  border-radius: 22px 22px 0 0; box-shadow: var(--shadow); animation: sheet 0.28s var(--ease);
}
@media (min-width: 720px) { .modal { border-radius: 22px; } }
@keyframes sheet { from { transform: translateY(30px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-head { position: sticky; top: 0; background: var(--paper); padding: 22px 24px 14px; border-bottom: 1px solid var(--line);
  display: flex; align-items: flex-start; gap: 14px; }
.modal-head .modal-img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; object-position: center top; flex-shrink: 0; }
.modal-head .htext { flex: 1; min-width: 0; }
.modal-head .kicker { margin-bottom: 4px; display: block; }
.modal-head h3 { font-family: var(--display); text-transform: uppercase; font-size: 2.2rem; margin: 0; line-height: 0.9; }
.modal-head .close { width: 40px; height: 40px; border-radius: 50%; background: var(--paper-2); display: grid; place-items: center; flex-shrink: 0; }
.modal-head .close:hover { background: var(--ink); color: var(--paper); }
.modal-body { padding: 8px 24px 26px; }
.tour-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.tour-row:last-child { border-bottom: none; }
.tour-date { font-family: var(--display); font-size: 1.5rem; line-height: 0.9; text-align: center; min-width: 52px; }
.tour-date .mo { display: block; font-size: 0.7rem; font-family: var(--body); font-weight: 700; letter-spacing: 0.08em; color: var(--coral); }
.tour-info { flex: 1; }
.tour-info .tv { font-weight: 700; }
.tour-info .tc { font-size: 0.84rem; color: var(--ink-soft); }
.tour-row .btn { flex-shrink: 0; }

/* utility */
.skeleton { background: linear-gradient(100deg, var(--paper-2) 30%, var(--paper-3) 50%, var(--paper-2) 70%);
  background-size: 200% 100%; animation: shine 1.3s infinite; border-radius: var(--radius); }
@keyframes shine { to { background-position: -200% 0; } }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.no-results { padding: 40px 0; color: var(--ink-soft); font-weight: 600; }
