/* ==========================================================================
   Market Love — design system
   Brand: navy + red (Market Love logo) · Bills royal blue / red · gold for Mafia Club
   Type: Barlow Condensed (display) · Barlow (body)
   ========================================================================== */
:root {
  --navy: #0B1E3F;
  --navy-2: #12295A;
  --blue: #00338D;
  --blue-soft: #E8EEF9;
  --red: #C8102E;
  --red-deep: #9E0B22;
  --red-soft: #FBE9EC;
  --gold: #C69E58;
  --gold-soft: #F4EBDB;
  --ink: #0F172A;
  --ink-2: #334155;
  --muted: #5B6472;
  --paper: #FAF7F2;
  --paper-2: #F1ECE3;
  --line: #E4DED3;
  --white: #FFFFFF;
  --night: #070B14;
  --night-2: #0E1526;
  --night-3: #161F36;
  --success: #15803D;

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(11, 30, 63, .06), 0 2px 8px rgba(11, 30, 63, .06);
  --shadow: 0 6px 24px rgba(11, 30, 63, .10);
  --shadow-lg: 0 18px 50px rgba(11, 30, 63, .18);
  --container: 1200px;
  --header-h: 84px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-deep); }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.02; margin: 0 0 .5em; color: var(--navy); letter-spacing: -.005em; font-weight: 800; }
h1 { font-size: clamp(2.8rem, 6.4vw, 5.2rem); text-transform: uppercase; }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); text-transform: uppercase; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--ink-2); max-width: 62ch; }
.measure { max-width: 66ch; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.skip-link { position: absolute; left: 8px; top: -60px; background: var(--navy); color: #fff; padding: 10px 14px; border-radius: 8px; z-index: 100; }
.skip-link:focus { top: 8px; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

.container { width: min(var(--container), 100% - 2rem); margin-inline: auto; }
@media (min-width: 900px) { .container { width: min(var(--container), 100% - 4rem); } }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--paper2 { background: var(--paper-2); }
.section--white { background: var(--white); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy h2, .section--navy h3, .section--night h2, .section--night h3, .section--night h1 { color: #fff; }
.section--night { background: var(--night); color: #E5E7EB; }
.section-head { max-width: 760px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .14em; font-size: .85rem;
  color: var(--red); margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: currentColor; border-radius: 2px; }
.eyebrow--light { color: #FFB3BF; }
.eyebrow--gold { color: var(--gold); }
.eyebrow--center::before { display: none; }

/* Buttons ---------------------------------------------------------------- */
.btn {
  --bg: var(--navy); --fg: #fff; --bd: var(--navy);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: .75rem 1.5rem; border-radius: 999px;
  background: var(--bg); color: var(--fg); border: 2px solid var(--bd);
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: .04em; text-transform: uppercase;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  cursor: pointer; white-space: nowrap;
}
.btn:hover { --bg: var(--navy-2); --bd: var(--navy-2); color: #fff; box-shadow: var(--shadow); }
.btn--primary { --bg: var(--red); --bd: var(--red); }
.btn--primary:hover { --bg: var(--red-deep); --bd: var(--red-deep); }
.btn--gold { --bg: var(--gold); --bd: var(--gold); --fg: var(--night); }
.btn--gold:hover { --bg: #D9B46B; --bd: #D9B46B; color: var(--night); }
.btn--outline { --bg: transparent; --fg: var(--navy); --bd: var(--navy); }
.btn--outline:hover { --bg: var(--navy); color: #fff; }
.btn--outline-light { --bg: transparent; --fg: #fff; --bd: rgba(255,255,255,.7); }
.btn--outline-light:hover { --bg: #fff; --bd: #fff; color: var(--navy); }
.btn--ghost { --bg: transparent; --fg: var(--red); --bd: transparent; padding-inline: .5rem; }
.btn--ghost:hover { --bg: var(--red-soft); --bd: var(--red-soft); color: var(--red-deep); box-shadow: none; }
.btn--sm { min-height: 42px; padding: .5rem 1.15rem; font-size: .95rem; }
.btn--lg { min-height: 56px; padding: .9rem 2rem; font-size: 1.15rem; }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-busy="true"] { opacity: .6; pointer-events: none; }
.btn svg { width: 1.1em; height: 1.1em; flex: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.btn-row--center { justify-content: center; }

/* Announcement + header -------------------------------------------------- */
.announce { background: var(--red); color: #fff; font-size: .95rem; }
.announce[hidden] { display: none; }
.announce__inner { display: flex; align-items: center; gap: .8rem; min-height: 42px; padding-block: .35rem; }
.announce__inner p { margin: 0; flex: 1; min-width: 0; }
.announce__dot { width: 9px; height: 9px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.3); flex: none; animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(255,255,255,.3);} 50% { box-shadow: 0 0 0 7px rgba(255,255,255,.12);} }
.announce__link { color: #fff; font-weight: 700; display: inline-flex; align-items: center; gap: .3rem; white-space: nowrap; border-bottom: 2px solid rgba(255,255,255,.5); }
.announce__link:hover { color: #fff; border-color: #fff; }
@media (max-width: 640px) { .announce__sep, .announce p span:not(.announce__sep) { display: none; } .announce__inner p { font-size: .9rem; } }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(250, 247, 242, .88); backdrop-filter: saturate(160%) blur(12px); -webkit-backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid rgba(11,30,63,.06); transition: box-shadow .25s; }
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(11,30,63,.08); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: var(--header-h); }
.brand img { width: clamp(180px, 18vw, 240px); height: auto; }
.nav { display: flex; align-items: center; gap: .25rem; }
.nav__link { padding: .55rem .85rem; border-radius: 999px; color: var(--ink); font-weight: 600; font-size: 1rem; transition: background-color .2s, color .2s; }
.nav__link:hover { background: rgba(11,30,63,.06); color: var(--navy); }
.nav__link.is-active { color: var(--red); }
.nav__link--club { color: var(--blue); }
.nav__cta { margin-left: .5rem; }
.nav-toggle { display: none; width: 48px; height: 48px; border: 0; background: transparent; border-radius: 12px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
@media (max-width: 1080px) {
  .nav__link { font-size: .95rem; padding-inline: .6rem; }
}
@media (max-width: 960px) {
  :root { --header-h: 72px; }
  .nav-toggle { display: flex; }
  .nav { position: fixed; inset: calc(var(--header-h)) 0 auto 0; top: var(--header-top, 72px); flex-direction: column; align-items: stretch; background: var(--paper); padding: 1rem 1.25rem 1.5rem; gap: .25rem; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg); transform: translateY(-8px); opacity: 0; pointer-events: none; transition: transform .25s var(--ease), opacity .2s; max-height: calc(100vh - var(--header-h)); overflow: auto; }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__link { font-size: 1.15rem; padding: .8rem 1rem; }
  .nav__cta { margin: .75rem 0 0; width: 100%; }
}

/* Hero ------------------------------------------------------------------ */
.hero { position: relative; color: #fff; background: var(--navy); overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(7,11,20,.88) 0%, rgba(11,30,63,.72) 45%, rgba(11,30,63,.25) 100%); }
.hero__scrim--bottom { background: linear-gradient(180deg, rgba(7,11,20,.35) 0%, rgba(7,11,20,.55) 40%, rgba(7,11,20,.92) 100%); }
.hero__inner { position: relative; padding-block: clamp(5rem, 12vw, 9.5rem) clamp(4rem, 9vw, 7rem); max-width: 720px; }
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero .lead { color: rgba(255,255,255,.88); }
.hero--center .hero__inner { margin-inline: auto; text-align: center; }
.hero--center .lead, .hero--center .btn-row { margin-inline: auto; justify-content: center; }
.hero--sub .hero__inner { padding-block: clamp(3.5rem, 8vw, 6rem) clamp(3rem, 6vw, 4.5rem); }
.hero__accent { color: var(--red); }
.hero--night .hero__accent { color: #FF3B5C; }
.hero-strip { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin-top: 1.75rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; font-size: .95rem; color: rgba(255,255,255,.85); }
.hero-strip span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-strip svg { width: 18px; height: 18px; color: var(--gold); }

/* Stats ------------------------------------------------------------------ */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--white); padding: 1.6rem 1.4rem; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 800; line-height: 1; color: var(--red); }
.stat__label { color: var(--ink-2); font-weight: 600; margin-top: .3rem; }
.stats--dark { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.1); }
.stats--dark .stat { background: var(--night-2); }
.stats--dark .stat__label { color: #B9C0CF; }
.stats--dark .stat__num { color: var(--gold); }

/* Grid / cards ----------------------------------------------------------- */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); transition: box-shadow .25s var(--ease), border-color .25s; }
.card:hover { box-shadow: var(--shadow); border-color: #d8d1c3; }
.card h3 { margin-top: .25rem; }
.card p:last-child { margin-bottom: 0; }
.card__icon { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: var(--red-soft); color: var(--red); margin-bottom: 1.1rem; }
.card__icon svg { width: 26px; height: 26px; }
.card__icon--blue { background: var(--blue-soft); color: var(--blue); }
.card__icon--gold { background: var(--gold-soft); color: #8A6A2E; }
.card--link { display: block; color: inherit; }
.card--link:hover { color: inherit; }
.card__more { display: inline-flex; align-items: center; gap: .35rem; color: var(--red); font-weight: 700; margin-top: 1rem; }
.card__more svg { width: 18px; height: 18px; transition: transform .2s; }
.card--link:hover .card__more svg { transform: translateX(3px); }

.media-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--navy); color: #fff; min-height: 340px; display: flex; align-items: flex-end; isolation: isolate; }
.media-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s var(--ease); }
.media-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(7,11,20,0) 30%, rgba(7,11,20,.9) 100%); }
.media-card:hover img { transform: scale(1.04); }
.media-card__body { padding: 1.5rem; }
.media-card h3 { color: #fff; margin-bottom: .3rem; }
.media-card p { color: rgba(255,255,255,.85); margin: 0; }
.media-card .tag { margin-bottom: .6rem; }

.tag { display: inline-block; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; padding: .3rem .7rem; border-radius: 6px; background: var(--red); color: #fff; }
.tag--gold { background: var(--gold); color: var(--night); }
.tag--blue { background: var(--blue); }
.tag--soft { background: var(--red-soft); color: var(--red-deep); }
.tag--outline { background: transparent; border: 1.5px solid currentColor; }

/* Split ------------------------------------------------------------------ */
.split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--rev > :first-child { order: 2; } }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split__media--natural img { aspect-ratio: auto; }
.split__badge { position: absolute; left: -1rem; bottom: -1rem; background: var(--red); color: #fff; border-radius: 16px; padding: 1rem 1.25rem; box-shadow: var(--shadow); font-family: var(--font-display); font-weight: 700; line-height: 1.1; max-width: 240px; }
.split__badge strong { display: block; font-size: 2rem; }
@media (max-width: 600px) { .split__badge { left: 1rem; bottom: -1.25rem; } }

.checklist { list-style: none; padding: 0; margin: 1.25rem 0; display: grid; gap: .65rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; }
.checklist li::before { content: ""; flex: none; width: 22px; height: 22px; margin-top: .15rem; border-radius: 50%; background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/13px no-repeat; }
.checklist--gold li::before { background-color: var(--gold); }
.checklist--blue li::before { background-color: var(--blue); }

/* Steps ------------------------------------------------------------------ */
.steps { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); counter-reset: step; }
.step { position: relative; padding: 1.75rem 1.5rem 1.5rem; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--line); }
.step::before { counter-increment: step; content: "0" counter(step); font-family: var(--font-display); font-weight: 800; font-size: 3rem; line-height: 1; color: var(--red-soft); position: absolute; right: 1.1rem; top: .9rem; }
.step h3 { font-size: 1.35rem; position: relative; }

/* Quote ------------------------------------------------------------------ */
.quote { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.15; color: var(--navy); margin: 0; }
.quote cite { display: block; font-family: var(--font-body); font-style: normal; font-weight: 600; font-size: 1rem; color: var(--muted); margin-top: 1rem; letter-spacing: .04em; text-transform: uppercase; }
.section--night .quote, .section--navy .quote { color: #fff; }
.section--night .quote cite { color: var(--gold); }

/* Impact areas ----------------------------------------------------------- */
.impact-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.impact { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 300px; display: flex; align-items: flex-end; color: #fff; background: var(--navy); isolation: isolate; }
.impact img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s var(--ease); }
.impact::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(11,30,63,.05) 20%, rgba(11,30,63,.92) 100%); }
.impact:hover img { transform: scale(1.05); }
.impact__body { padding: 1.5rem; }
.impact__body h3 { color: #fff; margin-bottom: .35rem; font-size: 1.6rem; text-transform: uppercase; }
.impact__body p { color: rgba(255,255,255,.88); margin: 0; }
.impact__num { position: absolute; top: 1rem; left: 1.1rem; font-family: var(--font-display); font-weight: 800; font-size: 1rem; letter-spacing: .12em; color: #fff; background: rgba(200,16,46,.9); padding: .25rem .6rem; border-radius: 6px; }

/* Event / tailgate ------------------------------------------------------- */
.event-card { display: grid; gap: 1.25rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
@media (min-width: 800px) { .event-card { grid-template-columns: 1.1fr 1fr; } }
.event-card__media img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.event-card__body { padding: 1.75rem; display: flex; flex-direction: column; gap: .5rem; }
.event-card__body .btn-row { margin-top: auto; padding-top: .75rem; }
.event-meta { display: grid; gap: .5rem; margin: .5rem 0 1rem; padding: 0; list-style: none; }
.event-meta li { display: flex; gap: .65rem; align-items: center; color: var(--ink-2); font-weight: 500; }
.event-meta svg { width: 20px; height: 20px; color: var(--red); flex: none; }

.date-badge { display: inline-grid; place-items: center; width: 74px; padding: .5rem 0; border-radius: 14px; background: var(--red); color: #fff; font-family: var(--font-display); font-weight: 800; line-height: 1; text-transform: uppercase; }
.date-badge small { font-size: .8rem; letter-spacing: .12em; }
.date-badge strong { font-size: 2rem; }

.game-table { width: 100%; border-collapse: collapse; font-size: 1rem; }
.game-table th, .game-table td { padding: .85rem .9rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,.1); }
.game-table th { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .1em; font-size: .85rem; color: var(--gold); font-weight: 700; }
.game-table tr.is-next td { background: rgba(200,16,46,.15); }
.game-table td:first-child { color: #9AA3B8; }
.game-table .opp { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: #fff; text-transform: uppercase; }
.game-table .tv { font-size: .8rem; font-weight: 700; letter-spacing: .08em; color: var(--gold); margin-left: .5rem; }
@media (max-width: 560px) { .game-table th:first-child, .game-table td:first-child { display: none; } }

/* Mafia Club dark theme --------------------------------------------------- */
.club { background: var(--night); color: #D9DEE8; position: relative; }
.club h1, .club h2, .club h3 { color: #fff; }
.club .lead { color: #B9C0CF; }
.club-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(60% 50% at 20% 0%, rgba(0,51,141,.35), transparent 60%), radial-gradient(50% 50% at 90% 100%, rgba(200,16,46,.28), transparent 60%); }
.club .card { background: var(--night-2); border-color: rgba(255,255,255,.08); color: #D9DEE8; box-shadow: none; }
.club .card:hover { border-color: rgba(198,158,88,.5); }
.club .card h3 { color: #fff; }
.club .card__icon { background: rgba(198,158,88,.12); color: var(--gold); }
.club .step { background: var(--night-2); border-color: rgba(255,255,255,.08); }
.club .step h3 { color: #fff; }
.club .step::before { color: rgba(255,255,255,.07); }

.tiers { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.tier { background: var(--night-2); border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius-lg); padding: 1.6rem; display: flex; flex-direction: column; gap: .75rem; position: relative; transition: border-color .25s, transform .25s var(--ease); }
.tier:hover { border-color: rgba(198,158,88,.6); }
.tier--featured { border-color: var(--gold); background: linear-gradient(180deg, rgba(198,158,88,.12), rgba(14,21,38,0) 40%), var(--night-2); }
.tier__kicker { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; color: var(--gold); }
.tier h3 { font-size: 1.9rem; text-transform: uppercase; margin: 0; color: #fff; }
.tier__price { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: #fff; line-height: 1; }
.tier__price small { font-size: 1rem; font-weight: 600; color: #9AA3B8; text-transform: uppercase; letter-spacing: .08em; }
.tier__limit { font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #FF6B82; }
.tier ul { list-style: none; margin: .25rem 0 .5rem; padding: 0; display: grid; gap: .5rem; color: #C6CCDA; font-size: .98rem; }
.tier ul li { padding-left: 1.3rem; position: relative; }
.tier ul li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); }
.tier details { margin-top: -.25rem; }
.tier summary { cursor: pointer; color: var(--gold); font-weight: 700; list-style: none; display: inline-flex; align-items: center; gap: .35rem; }
.tier summary::-webkit-details-marker { display: none; }
.tier summary::after { content: "+"; font-weight: 800; }
.tier details[open] summary::after { content: "–"; }
.tier .btn-row { margin-top: auto; padding-top: .75rem; }
.tier .btn-row .btn { flex: 1; }

.partners { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr)); gap: .75rem; }
.partner-chip { display: grid; place-items: center; text-align: center; padding: 1.1rem .9rem; border-radius: 12px; background: var(--white); border: 1px solid var(--line); font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--navy); font-size: 1.02rem; line-height: 1.15; }
.partner-chip small { display: block; font-family: var(--font-body); text-transform: none; letter-spacing: 0; color: var(--muted); font-weight: 500; font-size: .8rem; margin-top: .2rem; }
.club .partner-chip { background: var(--night-2); border-color: rgba(255,255,255,.09); color: #fff; }
.club .partner-chip small { color: #9AA3B8; }

.gallery { display: grid; gap: .75rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery figure { margin: 0; border-radius: 14px; overflow: hidden; background: var(--night-2); }
.gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery figcaption { padding: .7rem .9rem; font-size: .9rem; color: #B9C0CF; }

/* Forms ------------------------------------------------------------------ */
.form-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.field { display: grid; gap: .35rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .95rem; color: var(--ink-2); }
.field input, .field select, .field textarea, .news-form input {
  width: 100%; min-height: 50px; padding: .7rem .95rem; border-radius: 12px; border: 1.5px solid var(--line); background: var(--white); color: var(--ink); font: inherit; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus, .news-form input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,51,141,.12); }
.field .hint { font-size: .85rem; color: var(--muted); }
.club .field label { color: #C6CCDA; }
.club .field input, .club .field select, .club .field textarea { background: var(--night-3); border-color: rgba(255,255,255,.12); color: #fff; }
.club .field select option { color: var(--ink); }
.form-msg { margin: .5rem 0 0; font-weight: 600; min-height: 1.4em; }
.form-msg.is-error { color: #E11D48; }
.form-msg.is-ok { color: var(--success); }
.club .form-msg.is-ok { color: #4ADE80; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: var(--shadow); }
.club .form-card { background: var(--night-2); border-color: rgba(255,255,255,.09); box-shadow: none; }

/* Donate widget ---------------------------------------------------------- */
.donate-layout { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 1000px) { .donate-layout { grid-template-columns: 1.15fr .85fr; } .donate-side { position: sticky; top: calc(var(--header-h) + 1.25rem); } }
.donate-box { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.donate-box__head { background: var(--navy); color: #fff; padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.donate-box__head h2 { color: #fff; font-size: 1.6rem; margin: 0; }
.donate-box__body { padding: clamp(1.25rem, 3vw, 2rem); display: grid; gap: 1.25rem; }
.seg { display: grid; grid-template-columns: 1fr 1fr; background: var(--paper-2); padding: 4px; border-radius: 999px; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg label { text-align: center; padding: .65rem 1rem; border-radius: 999px; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; cursor: pointer; color: var(--ink-2); transition: background-color .2s, color .2s; }
.seg input:checked + label { background: var(--navy); color: #fff; }
.seg input:focus-visible + label { outline: 3px solid var(--blue); }
.amounts { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
.amounts input { position: absolute; opacity: 0; pointer-events: none; }
.amounts label { display: grid; place-items: center; min-height: 58px; border: 2px solid var(--line); border-radius: 12px; font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--navy); cursor: pointer; transition: border-color .2s, background-color .2s, color .2s; background: var(--white); }
.amounts label:hover { border-color: var(--navy); }
.amounts input:checked + label { border-color: var(--red); background: var(--red); color: #fff; }
.amounts input:focus-visible + label { outline: 3px solid var(--blue); outline-offset: 2px; }
.custom-amt { position: relative; }
.custom-amt span { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--navy); }
.custom-amt input { padding-left: 2.1rem; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; }
.impact-line { display: flex; gap: .7rem; align-items: center; background: var(--red-soft); color: var(--red-deep); padding: .8rem 1rem; border-radius: 12px; font-weight: 600; min-height: 56px; }
.impact-line svg { width: 22px; height: 22px; flex: none; }
.pay-methods { display: grid; gap: .75rem; }
.pay-or { display: flex; align-items: center; gap: .75rem; color: var(--muted); font-size: .9rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.pay-or::before, .pay-or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
#paypal-buttons { min-height: 48px; }
.secure { display: flex; align-items: center; gap: .5rem; color: var(--muted); font-size: .88rem; justify-content: center; }
.secure svg { width: 16px; height: 16px; color: var(--success); }
.donate-note { font-size: .88rem; color: var(--muted); text-align: center; margin: 0; }
.gateway-off { background: var(--gold-soft); border: 1px solid #E8D7B3; border-radius: 12px; padding: 1rem 1.1rem; color: #5B4A22; font-size: .95rem; }
.gateway-off a { color: var(--red-deep); font-weight: 700; }
.designation-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.designation-list li { display: flex; gap: .8rem; align-items: flex-start; padding: 1rem 1.1rem; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.designation-list svg { width: 26px; height: 26px; color: var(--red); flex: none; margin-top: .1rem; }
.designation-list strong { display: block; color: var(--navy); font-family: var(--font-display); text-transform: uppercase; font-size: 1.15rem; letter-spacing: .03em; }

/* CTA band + footer ------------------------------------------------------ */
.cta-band { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 100% 50%, rgba(200,16,46,.45), transparent 60%); pointer-events: none; }
.cta-band__inner { position: relative; display: grid; gap: 1.75rem; align-items: center; padding-block: clamp(3rem, 6vw, 4.5rem); }
@media (min-width: 900px) { .cta-band__inner { grid-template-columns: 1.2fr auto; } }
.cta-band__title { color: #fff; margin: 0; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.site-footer { background: var(--night); color: #B9C0CF; font-size: .95rem; }
.footer__grid { display: grid; gap: 2rem; padding-block: 3.5rem 2.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }
.footer__brand { grid-column: span 1; }
@media (min-width: 1100px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr 1.4fr; } }
.footer__logo { filter: brightness(0) invert(1); opacity: .95; }
.footer__tag { margin-top: 1rem; max-width: 30ch; }
.footer__col h3 { color: #fff; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.footer__col a { display: block; color: #B9C0CF; padding: .28rem 0; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.social { display: flex; gap: .5rem; margin-top: 1.25rem; }
.social a { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.07); color: #fff; transition: background-color .2s; }
.social a:hover { background: var(--red); color: #fff; }
.news-form { display: grid; gap: .6rem; margin-top: .75rem; }
.news-form input { background: var(--night-3); border-color: rgba(255,255,255,.12); color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-block: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 2rem; font-size: .85rem; color: #8B94A8; }
.footer__bottom p { margin: 0; }
.footer__bottom a { color: #B9C0CF; }
.footer__bottom a:hover { color: #fff; }

/* Misc ------------------------------------------------------------------- */
.prose h2 { font-size: 1.8rem; margin-top: 2rem; text-transform: none; }
.prose h3 { margin-top: 1.5rem; }
.prose ul { padding-left: 1.2rem; }
.prose { max-width: 72ch; }
.notice { background: var(--blue-soft); border-left: 4px solid var(--blue); padding: 1rem 1.2rem; border-radius: 0 12px 12px 0; color: var(--ink-2); }
.marquee { overflow: hidden; border-block: 1px solid rgba(255,255,255,.1); padding-block: .9rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .14em; font-weight: 700; font-size: 1rem; color: var(--gold); white-space: nowrap; }
.marquee__track { display: inline-flex; gap: 3rem; animation: marquee 40s linear infinite; }
.marquee__track span::after { content: "◆"; margin-left: 3rem; color: var(--red); }
@keyframes marquee { to { transform: translateX(-50%); } }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } .marquee__track { animation: none; } }
.map-embed { border: 0; width: 100%; aspect-ratio: 16/10; border-radius: var(--radius-lg); filter: grayscale(.2) contrast(1.05); }
.thanks-icon { width: 88px; height: 88px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; margin: 0 auto 1.5rem; box-shadow: 0 0 0 12px var(--red-soft); }
.thanks-icon svg { width: 44px; height: 44px; }
.callout { display: grid; gap: 1.25rem; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); }
@media (min-width: 800px) { .callout { grid-template-columns: auto 1fr auto; } }
.callout img { width: 120px; height: auto; }
.callout p { margin: 0; }
.callout h3 { margin: 0 0 .25rem; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; } .mb-0 { margin-bottom: 0; } .text-center { text-align: center; }
