/* All Boobies Matter — design system */
:root {
  --pink: #D4547E;
  --pink-deep: #B33A66;
  --pink-light: #FBEAF0;
  --pink-soft: #F8DCE6;
  --dark: #1A1A1A;
  --dark-2: #262626;
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --ink-muted: #7A7A7A;
  --paper: #FFFFFF;
  --paper-warm: #FBF8F6;
  --line: #E8E0E3;
  --line-soft: #F0E8EC;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(26,26,26,.04), 0 2px 8px rgba(26,26,26,.04);
  --shadow-md: 0 4px 14px rgba(26,26,26,.06), 0 12px 40px rgba(212,84,126,.08);
  --shadow-lg: 0 16px 60px rgba(26,26,26,.12);
  --max-w: 1240px;
  --gutter: 28px;
  --font-body: 'Lato', system-ui, -apple-system, sans-serif;
  --font-display: 'Lato', system-ui, -apple-system, sans-serif;
  --font-script: 'Dancing Script', cursive;
  --btn-radius: 999px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Type scale */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pink);
}
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; text-wrap: balance; }
h1 { font-size: clamp(40px, 6vw, 76px); }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(22px, 2vw, 28px); }
p { margin: 0; text-wrap: pretty; }

.script { font-family: var(--font-script); font-weight: 700; font-style: italic; letter-spacing: 0; }

/* Container */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 var(--gutter); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--btn-radius);
  font-weight: 700;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--pink); color: white; box-shadow: 0 6px 20px -6px rgba(212,84,126,.55); }
.btn-primary:hover { background: var(--pink-deep); box-shadow: 0 10px 26px -6px rgba(212,84,126,.7); }
.btn-secondary { background: white; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: white; }
.btn-ghost-light { background: transparent; color: white; border-color: rgba(255,255,255,.5); }
.btn-ghost-light:hover { background: white; color: var(--ink); border-color: white; }
.btn-arrow::after { content: "→"; transition: transform .2s ease; }
.btn:hover .btn-arrow::after, .btn-arrow:hover::after { transform: translateX(3px); }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* Cards */
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.card:hover { border-color: var(--pink); box-shadow: var(--shadow-md); }

/* Sections */
section { padding: 100px 0; }
@media (max-width: 720px) { section { padding: 64px 0; } }

.section-dark { background: var(--dark); color: white; }
.section-pink { background: var(--pink); color: white; }
.section-pink-light { background: var(--pink-light); }
.section-warm { background: var(--paper-warm); }

/* Image placeholder */
.imgph {
  background:
    repeating-linear-gradient(135deg, rgba(212,84,126,.06) 0 8px, rgba(212,84,126,.03) 8px 16px),
    var(--pink-light);
  border: 1px dashed rgba(212,84,126,.45);
  color: var(--pink-deep);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  border-radius: var(--radius-sm);
}
.imgph-dark {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 8px, rgba(255,255,255,.02) 8px 16px),
    rgba(255,255,255,.04);
  border: 1px dashed rgba(255,255,255,.25);
  color: rgba(255,255,255,.55);
}

/* Logo / wordmark */
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  letter-spacing: -0.02em;
  font-weight: 800;
  font-size: 18px;
}
.logo .all { font-family: var(--font-script); font-size: 30px; color: var(--pink); font-weight: 700; line-height: 1; transform: translateY(2px); }
.logo .rest { text-transform: uppercase; font-size: 13px; letter-spacing: 0.08em; }
.logo-dark .rest { color: white; }
.logo-light .rest { color: var(--ink); }

/* Nav */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--pink); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
}

/* Mobile nav hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
}
.nav-hamburger .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-hamburger .bar-top.open  { transform: translateY(7px) rotate(45deg); }
.nav-hamburger .bar-mid.open  { opacity: 0; }
.nav-hamburger .bar-bot.open  { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: white;
  border-top: 1px solid var(--line);
  padding: 12px 24px 20px;
}
.nav-mobile a {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.nav-mobile a.active { color: var(--pink); }
.nav-mobile .btn { width: 100%; text-align: center; justify-content: center; }
@media (max-width: 820px) {
  .nav-links { display: none !important; }
  .nav-hamburger { display: flex; }
}

/* Hero editorial 2-col grid */
.hero-editorial-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 820px) {
  .hero-editorial-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-editorial-grid > div:last-child {
    height: 280px !important;
  }
}

/* Footer mobile */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Hero */
.hero-dark {
  background: var(--dark);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
}
.hero-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 90% 0%, rgba(212,84,126,.25), transparent 70%),
    radial-gradient(40% 50% at 0% 100%, rgba(212,84,126,.18), transparent 70%);
  pointer-events: none;
}
.hero-dark > * { position: relative; }

/* Stats strip */
.stats-strip {
  background: var(--pink);
  color: white;
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.stats-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) { .stats-grid, .stats-grid-4 { grid-template-columns: repeat(2, 1fr); } }
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 13px; opacity: 0.92; line-height: 1.3; }

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 80px 0 40px;
}
footer a:hover { color: var(--pink); }

/* Page hero (sub-pages) */
.page-hero {
  background: var(--dark);
  color: white;
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 80% at 80% 50%, rgba(212,84,126,.22), transparent 70%);
}
.page-hero > * { position: relative; }
.breadcrumb { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb .sep { margin: 0 8px; }

/* Form */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--ink);
  transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--pink);
}
.field textarea { min-height: 130px; resize: vertical; }

/* Accordion */
.acc-item { border-bottom: 1px solid var(--line); }
.acc-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  color: var(--ink);
}
.acc-icon { font-size: 24px; color: var(--pink); transition: transform .25s; }
.acc-item.open .acc-icon { transform: rotate(45deg); }
.acc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  color: var(--ink-soft);
  font-size: 16px;
}
.acc-item.open .acc-a { max-height: 400px; padding-bottom: 22px; }

/* Donation amount selector */
.donate-amounts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.donate-amount {
  flex: 1 0 80px;
  padding: 18px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  transition: all .15s;
}
.donate-amount:hover { border-color: var(--pink); }
.donate-amount.active {
  background: var(--pink);
  color: white;
  border-color: var(--pink);
}

/* Sponsor tier */
.sponsor-tier { padding: 28px 0; border-top: 1px solid var(--line); }
.sponsor-tier:first-child { border-top: none; }
.sponsor-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sponsor-platinum { color: #888; }
.sponsor-gold { color: #B8860B; }
.sponsor-silver { color: #888; }
.sponsor-bronze { color: #8B5A2B; }
.sponsor-row { display: flex; flex-wrap: wrap; gap: 14px; }
.sponsor-pill {
  padding: 10px 18px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  background: white;
}

/* Step list */
.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  align-items: flex-start;
}
.step:first-child { border-top: none; }
.step-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pink-light);
  color: var(--pink-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  font-family: var(--font-display);
}

/* Pink ribbon icon */
.ribbon-icon { width: 18px; height: 22px; display: inline-block; }

/* Utilities */
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 40px; }
.mt-6 { margin-top: 64px; }
.muted { color: var(--ink-muted); }
.lead { font-size: clamp(17px, 1.4vw, 20px); color: var(--ink-soft); line-height: 1.55; }
.lead-light { color: rgba(255,255,255,.85); }
.max-prose { max-width: 720px; }

/* Grid helpers */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Donate band */
.donate-band {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.donate-band::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
@media (max-width: 720px) { .donate-band { padding: 36px 24px; } }

/* Tag */
.tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--pink-light);
  color: var(--pink-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Editorial split (used on Home about + Our Story founder) */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 32px; } }

/* Quote */
.quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.quote::before { content: "\201C"; color: var(--pink); margin-right: 4px; }
.quote::after { content: "\201D"; color: var(--pink); }

/* Golf Tournament page responsive grids */
.golf-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}
.golf-recap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.golf-details-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
}
.schedule-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
}
@media (max-width: 820px) {
  .golf-hero-grid,
  .golf-recap-grid,
  .golf-details-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .schedule-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* Tweaks variants — button shape */
.btn-shape-rounded { --btn-radius: 10px; }
.btn-shape-pill { --btn-radius: 999px; }
.btn-shape-sharp { --btn-radius: 0; }
