﻿/* ═════════════════════════════════════════════════════════════════
   Lady Patriots Tip-Off Club — site-wide system.
   Athletic-editorial grammar: photography speaks, chrome stays quiet.
   Brand colors are the only inheritance: navy = ink, crimson = signal,
   gold = sparse premium accent.
   ═════════════════════════════════════════════════════════════════ */
:root {
  --ink: #141C41;
  --crimson: #8B1A14;
  --crimson-bright: #C43030;
  --gold: #C4A44E;
  --canvas: #FFFFFF;
  --cloud: #F5F5F7;
  --mute: #6E7385;
  --stone: #9A9EAE;
  --hairline: #D8DAE2;
  --hairline-soft: #E9EAEF;
  /* Campaign lockups only. Real Futura Extra Bold Condensed when installed;
     Anton (closest open equivalent) ships to everyone else. */
  --font-campaign: 'Futura Std Extra Bold Condensed', 'Futura XBlk Cn BT', 'Futura-CondensedExtraBold',
                   'Futura Extra Bold Condensed', 'Futura Condensed ExtraBold', 'Anton', 'Arial Narrow', sans-serif;
  --font-ui: 'Hanken Grotesk', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --pill: 30px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--canvas); color: var(--ink); font-family: var(--font-ui); font-weight: 400; }
::selection { background: rgba(139,26,20,0.18); }
img { display: block; max-width: 100%; }
a { color: var(--ink); text-decoration: none; }

.wrap { max-width: 1440px; margin: 0 auto; padding: 0 48px; }

/* ── Buttons: pill or nothing ── */
.pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-ui); font-size: 16px; font-weight: 500; line-height: 1;
  height: 48px; padding: 0 32px; border-radius: var(--pill);
  border: none; cursor: pointer; transition: opacity 0.15s ease, background 0.15s ease, transform 0.1s ease;
}
.pill:active { transform: scale(0.97); opacity: 0.8; }
.pill-ink { background: var(--ink); color: #fff; }
.pill-ink:hover { opacity: 0.85; }
.pill-cloud { background: var(--cloud); color: var(--ink); }
.pill-cloud:hover { background: var(--hairline-soft); }
.pill-on-image { background: var(--canvas); color: var(--ink); }
.pill-on-image:hover { background: var(--cloud); }
.pill-sm { height: 40px; padding: 0 24px; font-size: 14px; }

/* ── Type tiers ── */
.h-campaign {
  font-family: var(--font-campaign); font-weight: 400; text-transform: uppercase;
  line-height: 0.95; letter-spacing: 0.5px;
}
.h-section { font-size: 24px; font-weight: 600; letter-spacing: 0.2px; text-transform: uppercase; color: var(--ink); }
.body-md { font-size: 16px; font-weight: 400; line-height: 1.6; color: var(--mute); }
.body-md strong { color: var(--ink); font-weight: 600; }
.body-strong { font-size: 16px; font-weight: 600; color: var(--ink); }
.caption { font-size: 14px; font-weight: 500; color: var(--mute); }
.caption-sm { font-size: 12px; font-weight: 500; color: var(--mute); }

/* ── Utility bar ── */
.utility { background: var(--cloud); position: relative; z-index: 101; }
.utility .wrap { height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.utility span, .utility a { font-size: 12px; font-weight: 500; color: var(--ink); }
.utility .u-left { color: var(--mute); }
.utility .u-right { display: flex; gap: 20px; }

/* ── Primary nav ── */
.nav { background: var(--canvas); position: sticky; top: 0; z-index: 100; box-shadow: inset 0 -1px 0 var(--hairline-soft); }
.nav .wrap { height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo .nl-name { font-size: 15px; font-weight: 700; letter-spacing: 0.3px; color: var(--ink); line-height: 1.15; }
.nav-logo .nl-sub { font-size: 11px; font-weight: 500; color: var(--mute); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 15px; font-weight: 600; color: var(--ink); padding: 20px 0; position: relative; }
.nav-links a:hover::after, .nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 12px; height: 2px; background: var(--ink);
}
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-burger {
  display: none; width: 44px; height: 44px; border: none; background: transparent; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 1px; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.drawer {
  display: none; position: fixed; top: 0; left: 0; bottom: 0; width: min(340px, 86vw); z-index: 200;
  background: var(--canvas); padding: 24px; flex-direction: column; gap: 4px;
  transform: translateX(-100%); transition: transform 0.25s ease;
}
.drawer.open { transform: translateX(0); }
.drawer a:not(.pill) { font-size: 20px; font-weight: 600; color: var(--ink); padding: 14px 4px; }
.drawer .pill { margin-top: 16px; }
.drawer-close { align-self: flex-end; width: 44px; height: 44px; border: none; background: var(--cloud); border-radius: 50%; cursor: pointer; font-size: 18px; color: var(--ink); margin-bottom: 12px; }
.scrim { display: none; position: fixed; inset: 0; z-index: 150; background: rgba(20,28,65,0.4); opacity: 0; transition: opacity 0.25s ease; }
.scrim.on { opacity: 1; }

/* ── Promo band ── */
.promo { background: var(--ink); }
.promo .wrap { min-height: 56px; display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; padding-top: 10px; padding-bottom: 10px; text-align: center; }
.promo .p-msg { font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); }
.promo a { font-size: 13px; font-weight: 600; color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.promo a:hover { color: var(--gold); }

/* ── Page header (interior pages) ── */
.page-head { border-bottom: 1px solid var(--hairline-soft); }
.page-head .wrap { padding: 52px 48px 40px; }
.page-head .kicker { font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--crimson); margin-bottom: 12px; }
.page-head h1 { font-family: var(--font-campaign); font-weight: 400; text-transform: uppercase; font-size: clamp(48px, 7vw, 96px); line-height: 0.95; letter-spacing: 0.5px; color: var(--ink); }
.page-head .sub { margin-top: 14px; font-size: 16px; font-weight: 400; color: var(--mute); max-width: 560px; line-height: 1.6; }

/* ── Campaign hero / tiles ── */
.hero { position: relative; overflow: hidden; }
.hero .hero-media { overflow: hidden; }
.hero img.hero-photo { width: 100%; height: min(88vh, 860px); object-fit: cover; object-position: center 22%; will-change: transform; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(20,28,65,0.55) 100%); pointer-events: none; }
.hero-copy { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; }
.hero-copy .wrap { padding-bottom: 56px; display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.hero-kicker { font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: #fff; text-shadow: 0 1px 3px rgba(20,28,65,0.4), 0 2px 14px rgba(20,28,65,0.35); }
.hero-title { font-size: clamp(72px, 10vw, 150px); color: #fff; text-shadow: 0 2px 6px rgba(20,28,65,0.35), 0 6px 28px rgba(20,28,65,0.3); }
.hero-sub { font-size: 17px; font-weight: 400; line-height: 1.55; color: rgba(255,255,255,0.92); max-width: 480px; text-shadow: 0 1px 3px rgba(20,28,65,0.4), 0 2px 14px rgba(20,28,65,0.35); }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.campaign { position: relative; overflow: hidden; }
.campaign > img { width: 100%; height: min(76vh, 700px); object-fit: cover; object-position: var(--pos, center 30%); will-change: transform; }
.campaign::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,28,65,0.18) 0%, transparent 35%, rgba(20,28,65,0.62) 100%); pointer-events: none; }
.campaign .c-copy { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; }
.campaign .c-copy .wrap { padding-bottom: 48px; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.campaign .c-title { font-size: clamp(56px, 8vw, 110px); color: #fff; }

/* ── Sections ── */
section.block { padding: 48px 0; }
.sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.sec-head .caption { font-weight: 600; color: var(--ink); }

/* mark moment (centered logo intro, above a campaign section) */
.mark-moment { padding: 56px 0 28px; display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.mark-moment img { height: 72px; }
.mark-moment .m-t { font-size: 15px; font-weight: 600; color: var(--ink); }

/* ── Tiles (photo-first, pill bottom-left) ── */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.tile { position: relative; overflow: hidden; background: var(--cloud); }
.tile .t-media { overflow: hidden; }
.tile img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 0.5s cubic-bezier(0.2, 0.6, 0.2, 1); }
.tile:hover img { transform: scale(1.04); }
.tile.contain img { object-fit: contain; padding: 8%; }
.tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(20,28,65,0.45) 100%); pointer-events: none; }
.tile.contain::after { background: none; }
.tile .t-copy { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.tile .t-label { font-size: 20px; font-weight: 700; color: #fff; }
.tile.contain .t-label { color: var(--ink); }

/* ── Story cards (caption BELOW the photo) ── */
.stories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.story .s-media { background: var(--cloud); overflow: hidden; }
.story img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 0.5s cubic-bezier(0.2, 0.6, 0.2, 1); }
.story:hover img { transform: scale(1.03); }
.story .s-kicker { margin-top: 14px; font-size: 13px; font-weight: 500; color: var(--crimson); }
.story .s-title { margin-top: 4px; font-size: 18px; font-weight: 600; color: var(--ink); }
.story .s-link { display: inline-block; margin-top: 8px; font-size: 15px; font-weight: 500; color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }

/* ── Sponsorship catalog ── */
.levels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.levels-minor { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 12px; max-width: 66.4%; }
.level { border: 1px solid var(--hairline); background: var(--canvas); padding: 28px; display: flex; flex-direction: column; }
.level .lv-flag { font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; height: 15px; }
.level .lv-name { font-size: 16px; font-weight: 600; color: var(--ink); }
.level .lv-price { font-size: 28px; font-weight: 700; color: var(--crimson); font-variant-numeric: tabular-nums; margin: 6px 0 18px; }
.level ul { list-style: none; flex: 1; margin-bottom: 22px; }
.level li { font-size: 14px; font-weight: 400; color: var(--mute); line-height: 1.5; padding: 9px 0; border-bottom: 1px solid var(--hairline-soft); }
.level li:first-child { border-top: 1px solid var(--hairline-soft); }
.level .pill { align-self: stretch; }

/* ── Schedule ── */
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-family: var(--font-ui); font-size: 14px; font-weight: 500; color: var(--ink);
  background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--pill);
  height: 40px; padding: 0 20px; cursor: pointer; transition: all 0.15s ease;
}
.chip:hover { border-color: var(--ink); }
.chip.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.sched { margin-top: 20px; border-top: 1px solid var(--hairline); }
.game {
  display: grid; grid-template-columns: 110px 1fr auto 90px; gap: 16px; align-items: center;
  padding: 15px 4px; border-bottom: 1px solid var(--hairline-soft);
}
.game.hidden { display: none; }
.game .gd { font-size: 15px; font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.game .go { font-size: 15px; font-weight: 500; color: var(--ink); }
.game .go i { font-style: normal; font-weight: 400; font-size: 13px; color: var(--stone); }
.game .gt { font-size: 13px; font-weight: 400; color: var(--mute); font-variant-numeric: tabular-nums; }
.game .gv { font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; text-align: right; }
.game.home .gv { color: var(--crimson); }
.game.away .gv { color: var(--stone); }
.sched-note { margin-top: 14px; font-size: 12px; color: var(--stone); }

/* ── Give cards (support page) ── */
.give-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.give-card { border: 1px solid var(--hairline); padding: 28px; }
.give-card .g-t { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.give-card p { font-size: 14px; font-weight: 400; color: var(--mute); line-height: 1.6; }
.give-card p strong { color: var(--ink); font-weight: 600; }
.give-card img.qr { width: 92px; height: 92px; border: 1px solid var(--hairline); padding: 5px; margin-bottom: 14px; background: #fff; }
.give-card .pill { margin-top: 18px; }

/* values row */
.values { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.value { border-top: 2px solid var(--ink); padding-top: 12px; }
.value .v-n { font-size: 14px; font-weight: 600; color: var(--ink); }
.value .v-g { font-size: 12.5px; font-weight: 400; color: var(--mute); margin-top: 2px; }

/* ── Brand lockup band ── */
.lockup { background: var(--cloud); }
.lockup .wrap { padding: 72px 48px; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.lockup img { height: 88px; }
.lockup .l-title { font-family: var(--font-campaign); font-weight: 400; text-transform: uppercase; font-size: clamp(40px, 5vw, 64px); line-height: 0.95; letter-spacing: 0.5px; color: var(--ink); }
.lockup .l-sub { font-size: 15px; color: var(--mute); max-width: 480px; line-height: 1.6; }

/* ── Footer ── */
footer { border-top: 1px solid var(--hairline); background: var(--canvas); }
.foot-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding: 48px 0 40px; }
.foot-brand { display: flex; align-items: flex-start; gap: 12px; }
.foot-brand img { height: 44px; }
.foot-key { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 14px; }
.foot-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-list a, .foot-list li { font-size: 14px; font-weight: 400; color: var(--mute); }
.foot-list a:hover { color: var(--ink); }
.foot-fine { border-top: 1px solid var(--hairline-soft); padding: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.foot-fine .legal { font-size: 11px; line-height: 1.7; color: var(--stone); max-width: 900px; }
.foot-fine .row { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 11px; color: var(--stone); }

/* mobile donate bar */
.donate-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  background: var(--canvas); box-shadow: inset 0 1px 0 var(--hairline);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
}
.donate-bar .pill { width: 100%; }

/* ═══ Cinematic scroll effects ═══
   .fx           fade + rise on enter
   .fx-line      masked line reveal (campaign headlines) — wrap lines in .fx-mask > span
   .fx-img       clip wipe from bottom + slow zoom settle
   .fx-d1..d3    stagger delays
   [data-parallax] media drifts on scroll (JS)                       */
.fx { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1); }
.fx.in { opacity: 1; transform: none; }
.fx-mask { display: block; overflow: hidden; }
.fx-mask > span { display: block; transform: translateY(110%); transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.1, 1); }
.in .fx-mask > span, .fx-mask.in > span { transform: none; }
.fx-img { clip-path: inset(12% 0 0 0); transition: clip-path 0.9s cubic-bezier(0.2, 0.6, 0.2, 1); }
.fx-img img, img.fx-img { transform: scale(1.08); transition: transform 1.4s cubic-bezier(0.2, 0.6, 0.2, 1); }
.fx-img.in { clip-path: inset(0 0 0 0); }
.fx-img.in img, img.fx-img.in { transform: scale(1); }
.fx-d1 { transition-delay: 0.08s; } .fx-d1 .fx-mask > span { transition-delay: 0.08s; }
.fx-d2 { transition-delay: 0.16s; } .fx-d2 .fx-mask > span { transition-delay: 0.16s; }
.fx-d3 { transition-delay: 0.24s; } .fx-d3 .fx-mask > span { transition-delay: 0.24s; }

/* Reduced motion: disable all cinematic effects unless the ?motion=1
   preview override stamped .force-motion on the root. */
@media (prefers-reduced-motion: reduce) {
  html:not(.force-motion) { scroll-behavior: auto; }
  html:not(.force-motion) :is(.fx, .fx-img, .fx-img img, img.fx-img, .fx-mask > span) { opacity: 1 !important; transform: none !important; clip-path: none !important; transition: none !important; }
  html:not(.force-motion) :is(.tile img, .story img) { transition: none; }
  html:not(.force-motion) [data-parallax] { transform: none !important; }
}

/* ── Responsive ── */
@media (max-width: 1023px) {
  .wrap { padding: 0 24px; }
  .levels { grid-template-columns: 1fr; }
  .levels-minor { grid-template-columns: 1fr; max-width: none; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .give-grid, .stories { grid-template-columns: 1fr; }
  .values { grid-template-columns: repeat(3, 1fr); }
  .page-head .wrap { padding: 40px 24px 32px; }
}
@media (max-width: 760px) {
  .utility .u-right { display: none; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .drawer { display: flex; }
  .scrim.on { display: block; }
  .nav-cta .pill-sm { display: none; }
  .nav .wrap { height: 58px; gap: 12px; }
  .nav-logo { gap: 9px; }
  .nav-logo img { height: 34px; }
  .nav-logo .nl-name { font-size: 13px; white-space: nowrap; }
  .nav-logo .nl-sub { font-size: 10px; }
  .promo .wrap { min-height: 0; padding-top: 9px; padding-bottom: 9px; gap: 4px 12px; }
  .promo .p-msg { font-size: 11px; letter-spacing: 1px; }
  .promo a { font-size: 12px; }
  .hero img.hero-photo { height: min(78vh, 640px); object-position: 96% 22%; }
  .hero-copy .wrap { padding-bottom: 96px; }
  .hero-title { font-size: clamp(56px, 16vw, 90px); }
  /* wide campaign photos re-crop for portrait screens: --pos-m wins on mobile */
  .campaign > img { height: min(58vh, 500px); object-position: var(--pos-m, var(--pos, center 30%)); }
  section.block { padding: 32px 0; }
  .tiles { grid-template-columns: 1fr; }
  .tile img { aspect-ratio: 4 / 3; }
  .game { grid-template-columns: 84px 1fr 64px; }
  .game .gt { display: none; }
  .lockup .wrap { padding: 56px 24px; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .foot-cols { grid-template-columns: 1fr; gap: 28px; }
  .foot-fine { padding-bottom: 96px; }
  .donate-bar { display: block; }
}
