/* ================================================================
   GoLiveMore — Sportswear Bold homepage
   Type:  Anton (display) + Manrope (body)
   Color: ink, paper, single accent (#ff4422)
   ================================================================ */

:root {
  --ink: #0a0a0a;
  --ink-2: #1a1a1a;
  --paper: #f5f1e8;
  --paper-2: #ebe6d7;
  --accent: #ff4422;
  --accent-deep: #cc3014;
  --muted: #6d6d6d;
  --muted-light: #a8a8a8;
  --line: rgba(10, 10, 10, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);

  --container: 1280px;
  --pad-x: 40px;
  --pad-section: 140px;

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 20px;

  --ff-display: 'Anton', 'Oswald', 'Archivo Black', sans-serif;
  --ff-body: 'Manrope', system-ui, sans-serif;
}

* { box-sizing: border-box; }

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

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

/* ── Containers ─────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ── Section themes ─────────────────────────────────────────────── */
.section { padding: var(--pad-section) 0; position: relative; overflow: clip; }
.section--ink { background: var(--ink); color: var(--paper); }
.section--paper { background: var(--paper); color: var(--ink); }
.section--paper-2 { background: var(--paper-2); color: var(--ink); }
.section--accent { background: var(--accent); color: var(--ink); }

/* ── Typography ─────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 24px;
}
.section--ink .eyebrow { color: var(--accent); }
.section--accent .eyebrow { color: var(--ink); }

.h-display {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 0.94;
  text-transform: uppercase;
  margin: 0;
}

.h-display--xxl { font-size: clamp(72px, 11vw, 168px); }
.h-display--xl  { font-size: clamp(56px, 7.5vw, 120px); }
.h-display--l   { font-size: clamp(40px, 5vw, 80px); }
.h-display--m   { font-size: clamp(32px, 3.6vw, 56px); }

.lede { font-size: clamp(18px, 1.3vw, 22px); line-height: 1.5; color: var(--muted); max-width: 56ch; }
.section--ink .lede { color: var(--muted-light); }
.section--accent .lede { color: var(--ink); }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-accent  { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn-ink     { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-paper   { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-outline-paper { background: transparent; color: var(--paper); border-color: rgba(255,255,255,0.4); }
.btn-outline-paper:hover { border-color: var(--paper); }
.btn-outline-ink { background: transparent; color: var(--ink); border-color: rgba(10,10,10,0.3); }
.btn-outline-ink:hover { border-color: var(--ink); }

.btn-arrow::after {
  content: '→';
  font-size: 16px;
  letter-spacing: 0;
  transition: transform 0.15s ease;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(10, 10, 10, 0.0);
  color: var(--paper);
  transition: background 0.25s ease, padding 0.25s ease;
}
.nav.is-scrolled { background: rgba(10,10,10,0.92); backdrop-filter: blur(8px); padding: 12px 0; }

.nav-row {
  display: flex; align-items: center; gap: 40px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--ff-display); font-style: italic; font-size: 28px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.nav-brand img { height: 28px; width: auto; filter: invert(1); }

.nav-links { display: flex; gap: 32px; margin-left: auto; }
.nav-links a {
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  opacity: 0.78; transition: opacity 0.15s ease;
}
.nav-links a:hover { opacity: 1; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 11px 18px; font-size: 11px; }

/* Hamburger toggle — hidden on desktop, shown ≤1100px */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 11px;
  background: transparent;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 100%; height: 2px;
  background: var(--paper);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 880px;
  height: 100vh;
  max-height: 1000px;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.55;
  filter: contrast(1.05) grayscale(0.15);
}
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.75) 38%, rgba(10,10,10,0.25) 70%, rgba(10,10,10,0.1) 100%);
}

.hero-stripes {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 200px;
  z-index: 1;
  pointer-events: none;
}
.hero-stripes .stripe {
  position: absolute; left: -10%; right: -10%;
  height: 22px;
  background: var(--accent);
  transform-origin: center;
}
.hero-stripes .stripe-1 { bottom: 110px; transform: rotate(-7deg); opacity: 1; }
.hero-stripes .stripe-2 { bottom: 64px; transform: rotate(-7deg); opacity: 0.45; height: 14px; }
.hero-stripes .stripe-3 { bottom: 28px; transform: rotate(-7deg); opacity: 0.25; height: 8px; }

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 90px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero-headline {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(72px, 13vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.008em;
  text-transform: uppercase;
  margin: 0 0 36px;
  padding-bottom: 6px;
}
.hero-headline .line-accent { color: var(--accent); }

.hero-sub {
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 500;
  color: rgba(245,241,232,0.7);
  max-width: 540px;
  margin: 0 0 48px;
  line-height: 1.55;
}

.hero-cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.hero-badge {
  position: absolute;
  right: var(--pad-x); bottom: 200px;
  z-index: 2;
  text-align: right;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(245,241,232,0.55);
  text-transform: uppercase;
  font-weight: 700;
  max-width: 200px;
  line-height: 1.6;
}
.hero-badge .num {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--paper);
  display: block;
  margin-bottom: 4px;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: var(--paper);
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 16px 24px;
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
}
.stat:first-child { border-left: none; }
.stat-num {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(56px, 6vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.stat-num .accent { color: var(--accent); }
.stat-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 24ch;
  margin-top: 14px;
  line-height: 1.5;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 80px;
}
.services-head .lede { max-width: 480px; justify-self: end; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  position: relative;
  display: flex; flex-direction: column;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px -20px rgba(10,10,10,0.18); }

.svc-card--ink { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.svc-card--accent { background: var(--accent); color: #fff; border-color: var(--accent); }

.svc-card-photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ink-2);
}
.svc-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.svc-card:hover .svc-card-photo img { transform: scale(1.04); }

.svc-card-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(0,0,0,0.78);
  color: #fff;
  padding: 7px 12px;
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}
.svc-card--accent .svc-card-tag { background: var(--ink); }

.svc-card-featured {
  position: absolute; top: 16px; right: 16px;
  background: var(--ink); color: var(--accent);
  padding: 7px 12px;
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
  white-space: nowrap;
}

.svc-card-body {
  padding: 32px;
  display: flex; flex-direction: column;
  gap: 18px;
  flex: 1;
}

.svc-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 48px;
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  padding-bottom: 4px;
}
.svc-sub {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin: -10px 0 0;
}
.svc-card--ink .svc-sub { color: var(--muted-light); }
.svc-card--accent .svc-sub { color: rgba(255,255,255,0.85); }

.svc-bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
  flex: 1;
}
.svc-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.4;
}
.svc-bullets li::before {
  content: '';
  width: 14px; height: 14px;
  flex: 0 0 14px;
  margin-top: 4px;
  background: var(--accent);
  clip-path: polygon(0% 50%, 35% 100%, 100% 0%, 35% 78%);
}
.svc-card--accent .svc-bullets li::before { background: var(--ink); }

.svc-price {
  display: flex; align-items: baseline; gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.svc-card--ink .svc-price { border-top-color: rgba(255,255,255,0.15); }
.svc-card--accent .svc-price { border-top-color: rgba(0,0,0,0.18); }
.svc-price .num {
  font-family: var(--ff-display); font-style: italic;
  font-size: 56px; line-height: 1;
  letter-spacing: -0.03em;
}
.svc-price .unit {
  font-size: 13px; font-weight: 600; color: var(--muted);
}
.svc-card--ink .svc-price .unit { color: var(--muted-light); }
.svc-card--accent .svc-price .unit { color: rgba(0,0,0,0.7); }

.svc-cta {
  width: 100%;
  margin-top: 6px;
}

/* ============================================================
   CALENDAR
   ============================================================ */
.cal-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; flex-wrap: wrap;
  margin-bottom: 56px;
}

.cal-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  padding: 6px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
}
.cal-tab {
  background: transparent;
  border: none;
  color: rgba(245,241,232,0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
.cal-tab:hover { color: var(--paper); }
.cal-tab.is-active { background: var(--accent); color: #fff; }

.cal-month {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.cal-month-label {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 32px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}
.cal-nav { display: flex; gap: 10px; }
.cal-nav button {
  width: 44px; height: 44px;
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.cal-nav button:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); }

/* ── Booking cards (open Cal.com popup) ─────────────────────────── */
.book-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.book-card {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  padding: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  color: var(--paper);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.book-card:hover { transform: translateY(-4px); border-color: var(--accent); background: rgba(255, 255, 255, 0.06); }

.book-card-dur {
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255, 68, 34, 0.45);
  border-radius: 999px;
  padding: 5px 12px;
}
.book-card-title {
  font-family: var(--ff-display); font-style: italic;
  font-size: 32px; line-height: 0.98; letter-spacing: -0.01em; text-transform: uppercase;
  margin: 4px 0 0; padding-bottom: 2px;
}
.book-card-desc { font-size: 14px; color: var(--muted-light); line-height: 1.5; margin: 0; flex: 1; }
.book-card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--paper);
  margin-top: 8px;
  transition: color 0.15s ease, gap 0.15s ease;
}
.book-card:hover .book-card-cta { color: var(--accent); gap: 12px; }

/* Featured card spans the full width, accent fill */
.book-card--featured {
  grid-column: 1 / -1;
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}
.book-card--featured .book-card-dur { color: var(--ink); border-color: rgba(10, 10, 10, 0.3); }
.book-card--featured .book-card-desc { color: rgba(10, 10, 10, 0.78); max-width: 60ch; }
.book-card--featured .book-card-cta { color: var(--ink); }
.book-card--featured:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: #fff; transform: translateY(-4px); }
.book-card--featured:hover .book-card-dur,
.book-card--featured:hover .book-card-cta { color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.book-card--featured:hover .book-card-desc { color: rgba(255, 255, 255, 0.85); }

@media (max-width: 600px) {
  .book-grid { grid-template-columns: 1fr; }
  .book-card { padding: 24px; }
  .book-card-title { font-size: 28px; }
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}
.cal-day {
  display: flex; flex-direction: column;
  gap: 10px;
}
.cal-day-head {
  display: flex; flex-direction: column;
  align-items: flex-start;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.cal-day-head .dow {
  font-size: 10px; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.55);
  white-space: nowrap;
}
.cal-day-head .today-badge {
  display: inline-block;
  font-size: 9px; font-weight: 800; letter-spacing: 0.16em;
  color: var(--accent);
  margin-top: 4px;
  text-transform: uppercase;
}
.cal-day-head .num {
  font-family: var(--ff-display); font-style: italic;
  font-size: 30px; line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.cal-day-head.is-today .num { color: var(--accent); }

.cal-slot {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-sm);
  padding: 10px 0;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}
.cal-slot:hover:not(.is-unavailable) {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.cal-slot:active:not(.is-unavailable) { transform: scale(0.97); }
.cal-slot.is-unavailable {
  opacity: 0.22;
  cursor: not-allowed;
  text-decoration: line-through;
}
.cal-slot.is-selected {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.cal-summary {
  margin-top: 48px;
  padding: 24px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cal-summary-text { font-size: 16px; }
.cal-summary-text .accent { color: var(--accent); font-weight: 800; }

/* ============================================================
   ABOUT / FOUNDER
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--ink-2);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-tag {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--accent); color: #fff;
  padding: 8px 14px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
}
.about-quote {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 24px 0 48px;
  padding-bottom: 6px;
}
.about-quote .accent { color: var(--accent); }
.about-body { font-size: 16px; line-height: 1.6; color: var(--muted); margin-bottom: 24px; max-width: 50ch; }
.about-creds {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 32px 0;
}
.about-cred {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}
.about-cred-title {
  font-family: var(--ff-display); font-style: italic;
  font-size: 22px;
  line-height: 1.06;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 2px;
}
.about-cred-body { font-size: 13px; color: var(--muted); line-height: 1.4; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.testi {
  display: flex; flex-direction: column;
  gap: 20px;
  padding: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  margin: 0;
}
.testi-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.2em;
}
.testi-text {
  font-size: 17px;
  line-height: 1.55;
  font-weight: 500;
  font-style: italic;
  color: var(--paper);
  flex: 1;
  margin: 0;
}
.testi-author {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 18px;
}
.testi-author-name {
  font-size: 14px; font-weight: 700;
}
.testi-author-role {
  font-size: 12px; color: var(--muted-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============================================================
   COMMUNITY
   ============================================================ */
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.event-card {
  position: relative;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: flex; flex-direction: column; gap: 14px;
}
.event-card-year {
  font-size: 11px; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent);
}
.event-card-title {
  font-family: var(--ff-display); font-style: italic;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  padding-bottom: 2px;
  margin: 0;
}
.event-card-body { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.partner-logo {
  display: flex; align-items: center; justify-content: center;
  height: 84px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  transition: transform 0.15s ease, border-color 0.15s ease;
  text-align: center;
  padding: 0 8px;
}
.partner-logo:hover { transform: translateY(-2px); border-color: var(--ink); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final {
  background: var(--accent);
  color: var(--ink);
  padding: 160px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final .h-display { font-size: clamp(72px, 11vw, 168px); line-height: 0.96; padding-bottom: 8px; }
.cta-final .lede { margin: 56px auto 48px; color: rgba(10,10,10,0.7); max-width: 50ch; }
.cta-final-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}
.footer-brand {
  font-family: var(--ff-display); font-style: italic;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 2px;
}
.footer-tag { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-light); }
.footer-col h4 {
  font-size: 12px; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted-light);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; opacity: 0.85; transition: opacity 0.15s ease, color 0.15s ease; }
.footer-col a:hover { opacity: 1; color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--muted-light);
  letter-spacing: 0.04em;
}

/* donate.html footer + final-CTA layout (logo lockup variant) */
.footer-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px;
  text-align: center;
}
.footer-inner .footer-brand {
  display: flex; align-items: center; gap: 12px;
  font-size: 36px;
  margin-bottom: 0;
}
.footer-inner .footer-brand img { height: 30px; width: auto; filter: invert(1); }
.footer-copy { font-size: 13px; color: var(--muted-light); letter-spacing: 0.04em; margin: 0; }

.cta-final-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 40px;
}

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .nav-toggle { display: flex; }
  .nav-cta { margin-left: auto; }
  /* Nav links collapse into a drop-down drawer */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    margin-left: 0;
    padding: 8px var(--pad-x) 20px;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--line-light);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a {
    opacity: 1;
    font-size: 15px;
    letter-spacing: 0.08em;
    min-height: 48px;
    display: flex; align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .partners-row { grid-template-columns: repeat(3, 1fr); }
  .cal-grid { grid-template-columns: repeat(2, 1fr); }
  .services-head { grid-template-columns: 1fr; }
  .services-head .lede { justify-self: start; }
}

@media (max-width: 600px) {
  :root { --pad-section: 80px; --pad-x: 20px; }
  .nav-row { gap: 12px; }
  .nav-brand { font-size: 20px; }
  .nav-brand img { height: 20px; }
  .nav-cta .btn { padding: 10px 14px; font-size: 10px; letter-spacing: 0.08em; }

  /* Hero: drop the tall fixed viewport sizing, shrink headline, hide badge */
  .hero { min-height: 0; height: auto; max-height: none; padding: 120px 0 90px; }
  .hero-inner { padding-top: 40px; }
  .hero-headline { font-size: clamp(44px, 14vw, 96px); }
  .hero-badge { display: none; }

  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-left: none; border-top: 1px solid var(--line); padding-top: 24px; }
  .stat:first-child { border-top: none; }
  .partners-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .cal-grid { grid-template-columns: 1fr; }

  /* Larger tap targets for footer links */
  .footer-col a { display: inline-flex; align-items: center; min-height: 40px; }
}

/* ============================================================
   FORM SHARED STYLES
   ============================================================ */
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}
.form-row input,
.form-row select,
.form-row textarea {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-family: var(--ff-body); font-size: 15px; color: var(--ink);
  outline: none; width: 100%;
  transition: border-color 0.15s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--accent); }
.form-row textarea { resize: vertical; }

.form-feedback { font-size: 14px; font-weight: 600; min-height: 20px; }
.form-feedback.is-success { color: #22c55e; }
.form-feedback.is-error { color: var(--accent); }

.stacked-form { display: flex; flex-direction: column; gap: 20px; }

/* Dark section form variant */
.section--ink .form-row label { color: var(--muted-light); }
.section--ink .form-row input,
.section--ink .form-row select,
.section--ink .form-row textarea {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  color: var(--paper);
}
.section--ink .form-row input::placeholder,
.section--ink .form-row textarea::placeholder { color: rgba(245,241,232,0.4); }
.section--ink .form-row input:focus,
.section--ink .form-row select:focus,
.section--ink .form-row textarea:focus { border-color: var(--accent); }
.section--ink select option { background: var(--ink-2); color: var(--paper); }

/* ============================================================
   CAL CONFIRM FORM (inline in cal-summary)
   ============================================================ */
.cal-summary--expanded {
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}
.cal-summary-slot { font-size: 16px; }
.cal-confirm-form { display: flex; flex-direction: column; gap: 16px; }
.cal-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.cal-fields input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-family: var(--ff-body); font-size: 14px;
  color: var(--paper); outline: none; width: 100%;
  transition: border-color 0.15s;
}
.cal-fields input::placeholder { color: rgba(245,241,232,0.4); }
.cal-fields input:focus { border-color: var(--accent); }
.cal-form-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cal-form-actions .form-feedback { flex: 1; }

/* ============================================================
   APP SECTION
   ============================================================ */
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.app-screenshot {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-2);
  box-shadow: 0 32px 80px -20px rgba(0,0,0,0.5);
}
.app-screenshot img { width: 100%; height: auto; display: block; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-aside { padding-top: 8px; }
.contact-details {
  display: flex; flex-direction: column;
  gap: 8px;
  margin-top: 32px;
}
.contact-details a { font-size: 14px; color: var(--muted); transition: color 0.15s; }
.contact-details a:hover { color: var(--accent); }

@media (max-width: 1100px) {
  .app-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .cal-fields { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .cal-fields { grid-template-columns: 1fr; }
}

/* Phone mockup */
.phone-mockup {
  width: 220px;
  height: 420px;
  background: #111;
  border-radius: 36px;
  border: 6px solid #333;
  box-shadow: 0 0 0 2px #222, 0 32px 80px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}
.phone-notch {
  width: 72px;
  height: 20px;
  background: #111;
  border-radius: 0 0 14px 14px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.phone-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 18px;
}
.phone-app-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--paper);
  letter-spacing: 0.04em;
}
