/* ═══════════════════════════════════════════
   TPUSA UH — Design System
   Color: #060c18 base · #cc2a3a red · #c9973a gold
═══════════════════════════════════════════ */

:root {
  --bg:       #060c18;
  --bg-1:     #0a1020;
  --bg-2:     #0d1428;
  --red:      #cc2a3a;
  --red-dim:  rgba(204,42,58,0.08);
  --gold:     #c9973a;
  --gold-dim: rgba(201,151,58,0.08);
  --white:    #ffffff;
  --w90:      rgba(255,255,255,0.90);
  --w60:      rgba(255,255,255,0.60);
  --w40:      rgba(255,255,255,0.40);
  --w25:      rgba(255,255,255,0.25);
  --w10:      rgba(255,255,255,0.10);
  --w05:      rgba(255,255,255,0.05);
  --w03:      rgba(255,255,255,0.03);
  --border:   rgba(255,255,255,0.07);
  --serif:    "Playfair Display", Georgia, serif;
  --sans:     "Inter", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.7, 0, 0.84, 0);
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { overflow-x:hidden; -webkit-font-smoothing:antialiased; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  
  line-height: 1;
}
img, video { display:block; max-width:100%; }
a { color: inherit; }
button { font-family: var(--sans); }
@media (max-width:860px) { body { cursor: auto; } }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 200;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease-out),
              border-color 0.4s var(--ease-out),
              backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(6,12,24,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: var(--border);
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.nav-brand img { height: 36px; width: auto; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-brand-name {
  font-family: var(--serif); font-weight: 700;
  font-size: 14px; color: var(--white); letter-spacing: 0.01em;
}
.nav-brand-sub {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-top: 1px;
}
.nav-links {
  display: flex; align-items: center;
  gap: 2px;
}
.nav-links a {
  display: flex; align-items: center;
  height: 64px; padding: 0 16px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--w60); text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); border-color: var(--red); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-login {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--w40); text-decoration: none;
  display: flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.nav-login:hover { color: var(--white); }
.nav-login svg { width:14px; height:14px; stroke:currentColor; fill:none; stroke-width:1.8; }
.nav-cart {
  color: var(--w60); text-decoration: none;
  position: relative; display: flex; align-items: center;
  transition: color 0.2s;
}
.nav-cart:hover { color: var(--white); }
.nav-cart svg { width:20px; height:20px; stroke:currentColor; fill:none; stroke-width:1.8; }
.cart-badge {
  position: absolute; top:-6px; right:-7px;
  background: var(--red); color: var(--white);
  font-size: 9px; font-weight: 700;
  width: 15px; height: 15px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; padding: 4px; gap: 5px;
  flex-direction: column;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.mobile-menu {
  display: none;
  background: rgba(6,12,24,0.98);
  backdrop-filter: blur(24px);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 16px 24px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--w60); text-decoration: none;
  border-bottom: 1px solid var(--w05);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--white); }

/* ── FIXED ELEMENTS ── */
#cur { display: none !important;
  position: fixed; z-index: 99999; pointer-events: none;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, background 0.3s;
}
#curRing { display: none !important;
  position: fixed; z-index: 99998; pointer-events: none;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out);
}
.cur-hover #cur { display: none !important;
  width: 52px; height: 52px;
  background: rgba(204,42,58,0.1);
  border: 1px solid rgba(204,42,58,0.3);
}
.cur-hover #curRing { display: none !important; border-color: transparent; }
@media (max-width:860px) { #cur, #curRing { display: none !important; display: none; } }

#prog {
  position: fixed; top:0; left:0; z-index: 9999;
  height: 1px; width: 0%; pointer-events: none;
  background: var(--red);
  transition: width 0.1s linear;
}
#curtain {
  position: fixed; inset: 0; z-index: 99997;
  background: var(--red); pointer-events: none;
  transform-origin: right;
}

/* ── ATMOSPHERE ── */
#atmoVideo {
  position: fixed; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.045; pointer-events: none;
  filter: saturate(0.3) brightness(0.6);
}
#atmoGrad {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(6,12,24,0.94) 0%,
    rgba(6,12,24,0.72) 30%,
    rgba(6,12,24,0.72) 70%,
    rgba(6,12,24,0.94) 100%
  );
}
.site-content { position: relative; z-index: 2; }

/* ── DIVIDERS ── */
.dash {
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0, var(--red) 18px,
    transparent 18px, transparent 26px
  );
}
.rule { height: 1px; background: var(--border); }

/* ── PAGE HERO ── */
.page-hero {
  min-height: 60vh;
  display: flex; align-items: flex-end;
  padding: 0 40px 10vh;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(var(--w03) 1px, transparent 1px),
    linear-gradient(90deg, var(--w03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.4) 50%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.4) 50%, transparent);
}
.page-hero-flare {
  position: absolute; top: -100px; right: 10%;
  width: 500px; height: 500px; pointer-events: none;
  background: radial-gradient(circle, rgba(204,42,58,0.055) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 1200px; width: 100%; }
.page-hero-kicker {
  display: flex; align-items: center; gap: 14px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(201,151,58,0.75);
  margin-bottom: 24px;
  clip-path: inset(0 100% 0 0);
}
.page-hero-kicker-line { width: 28px; height: 1px; background: rgba(201,151,58,0.5); }
.page-hero-h1 {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(52px, 9vw, 120px);
  line-height: 0.88; letter-spacing: -0.03em;
  margin-bottom: 28px;
  overflow: hidden;
}
.page-hero-row { display: block; overflow: hidden; }
.page-hero-inner { display: block; transform: translateY(105%); }
.page-hero-inner em { font-style: italic; color: var(--red); }
.page-hero-sub {
  font-size: clamp(14px, 1.3vw, 17px);
  color: var(--w40); line-height: 1.85;
  max-width: 520px; font-weight: 300;
  opacity: 0; transform: translateY(16px);
}

/* ── SECTIONS ── */
.section { padding: 100px 40px; position: relative; }
.section + .section { border-top: 1px solid var(--border); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-inner.narrow { max-width: 800px; }
.section-inner.wide { max-width: 1400px; }

/* ── KICKER / EYEBROW ── */
.kicker {
  display: flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(204,42,58,0.75);
  margin-bottom: 20px;
}
.kicker-line { width: 24px; height: 1px; background: rgba(204,42,58,0.5); }

/* ── HEADINGS ── */
.display-xl {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(48px, 7.5vw, 100px);
  line-height: 0.9; letter-spacing: -0.03em;
  color: var(--white);
}
.display-xl em { font-style: italic; color: var(--red); }
.display-lg {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 0.92; letter-spacing: -0.025em;
  color: var(--white);
}
.display-lg em { font-style: italic; color: var(--red); }
.display-md {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(26px, 3.5vw, 48px);
  line-height: 1.0; letter-spacing: -0.02em;
  color: var(--white);
}
.display-md em { font-style: italic; color: var(--red); }

/* ── BODY TEXT ── */
.body-lg {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.85; font-weight: 300;
  color: var(--w40);
}
.body-md {
  font-size: 15px; line-height: 1.8;
  font-weight: 300; color: var(--w40);
}
.body-sm {
  font-size: 13px; line-height: 1.75;
  font-weight: 300; color: var(--w40);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px; border-radius: 2px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform 0.2s var(--ease-out);
  font-family: var(--sans);
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::before { transform: scaleX(1); }
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 0 32px rgba(204,42,58,0.25); }
.btn-ghost {
  background: transparent; color: var(--w60);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-ghost::before { background: rgba(255,255,255,0.05); }

/* ── TEXT LINKS ── */
.text-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--w30); text-decoration: none;
  transition: color 0.25s, gap 0.25s;
}
.text-link::after {
  content: '';
  width: 24px; height: 1px;
  background: currentColor; display: inline-block;
  transition: width 0.25s var(--ease-out);
}
.text-link:hover { color: var(--white); gap: 16px; }
.text-link:hover::after { width: 40px; }

/* ── GRID LAYOUTS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.grid-2.center { align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }

/* ── CARDS ── */
.card-grid {
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 3px; overflow: hidden;
}
.card {
  background: var(--bg);
  padding: 40px 32px;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, var(--red), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.card:hover { background: var(--bg-1); }
.card:hover::before { transform: scaleX(1); }
.card-num {
  font-family: var(--serif); font-size: 10px; font-weight: 700;
  color: var(--w10); letter-spacing: 0.12em;
  margin-bottom: 16px; text-transform: uppercase;
}
.card-title {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(17px, 2vw, 22px);
  color: var(--white); line-height: 1.1; margin-bottom: 12px;
}
.card-body {
  font-size: 13px; color: var(--w40);
  line-height: 1.75; font-weight: 300;
}

/* ── LEADER GRID ── */
.leader-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
}
.leader-cell {
  background: var(--bg); overflow: hidden;
  position: relative; aspect-ratio: 3/4;
}
.leader-cell img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  transition: transform 0.6s var(--ease-out), filter 0.4s;
  filter: grayscale(15%);
}
.leader-cell:hover img { transform: scale(1.05); filter: grayscale(0%) brightness(0.55); }
.leader-info-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,12,24,0.95) 0%, transparent 60%);
  display: flex; align-items: flex-end;
  padding: 20px 18px;
  opacity: 0; transition: opacity 0.4s;
}
.leader-cell:hover .leader-info-overlay { opacity: 1; }
.leader-name {
  font-family: var(--serif); font-weight: 800;
  font-size: 16px; color: var(--white); margin-bottom: 3px;
}
.leader-role {
  font-size: 11px; color: var(--w40);
  font-weight: 300; letter-spacing: 0.06em; text-transform: uppercase;
}

/* ── TIMELINE ── */
.timeline { }
.tl-item {
  display: grid; grid-template-columns: 72px 1fr;
  gap: 32px; padding: 32px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0; transform: translateY(16px);
}
.tl-item:last-child { border-bottom: none; }
.tl-year {
  font-family: var(--serif); font-weight: 900;
  font-size: 12px; color: rgba(204,42,58,0.6);
  letter-spacing: 0.06em; padding-top: 4px;
}
.tl-title {
  font-family: var(--serif); font-weight: 800;
  font-size: 20px; color: var(--white); margin-bottom: 8px; line-height: 1.2;
}
.tl-body {
  font-size: 14px; color: var(--w40);
  line-height: 1.75; font-weight: 300;
}

/* ── SPEAKER GRID ── */
.speaker-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border-radius: 3px; overflow: hidden;
}
.speaker-item {
  background: var(--bg); padding: 40px 28px; text-align: center;
  transition: background 0.3s;
}
.speaker-item:hover { background: var(--bg-1); }
.speaker-init {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--red-dim); border: 1px solid rgba(204,42,58,0.14);
  color: var(--white); font-family: var(--serif);
  font-size: 17px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.speaker-name {
  font-family: var(--serif); font-weight: 800;
  font-size: 15px; color: var(--white); margin-bottom: 4px;
}
.speaker-title { font-size: 12px; color: var(--w30); font-weight: 300; }

/* ── FORM FIELDS ── */
.field { margin-bottom: 32px; }
.field-label {
  display: block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--w25); margin-bottom: 12px;
}
.field-input, .field-area {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 12px 0; color: var(--white);
  font-size: 16px; font-family: var(--sans); font-weight: 300;
  outline: none; transition: border-color 0.25s;
}
.field-input:focus, .field-area:focus {
  border-color: rgba(204,42,58,0.5);
}
.field-input::placeholder, .field-area::placeholder { color: var(--w10); }
.field-area { min-height: 100px; resize: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

/* ── SUBMIT BUTTON ── */
.submit-btn {
  display: flex; align-items: center; gap: 16px;
  background: none; border: none; cursor: pointer; padding: 0;
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.02em; color: var(--white);
  transition: gap 0.3s var(--ease-out);
  margin-top: 48px;
}
.submit-btn em { font-style: italic; color: var(--red); }
.submit-btn-arrow {
  font-family: var(--sans); font-size: 0.45em; font-weight: 300;
  color: rgba(204,42,58,0.5);
  transition: color 0.3s, transform 0.3s var(--ease-out);
}
.submit-btn:hover { gap: 28px; }
.submit-btn:hover .submit-btn-arrow { color: var(--red); transform: translateX(6px); }

/* ── FAQ ── */
.faq-list { }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; padding: 22px 0; cursor: pointer;
  font-size: 15px; font-weight: 400; color: var(--w60);
  user-select: none; transition: color 0.2s;
}
.faq-question:hover { color: var(--white); }
.faq-chevron { color: var(--red); font-size: 18px; transition: transform 0.3s var(--ease-out); flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer-inner {
  padding: 0 0 22px;
  font-size: 14px; color: var(--w30); line-height: 1.8; font-weight: 300;
}

/* ── SUCCESS STATE ── */
.form-success { display: none; padding: 60px 0; }
.form-success.show { display: block; }
.success-heading {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 0.92; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 16px;
}
.success-heading em { font-style: italic; color: var(--red); }
.success-body { font-size: 15px; color: var(--w35); font-weight: 300; line-height: 1.8; }

/* ── DONATE ── */
.amount-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 3px;
  overflow: hidden; margin-bottom: 32px;
}
.amount-btn {
  background: var(--bg); padding: 28px 16px; text-align: center;
  cursor: pointer; border: none; width: 100%;
  transition: background 0.2s;
}
.amount-btn:hover, .amount-btn.active { background: var(--red-dim); }
.amount-num {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(20px, 2.5vw, 32px); color: var(--white);
  display: block; margin-bottom: 4px;
}
.amount-label { font-size: 11px; color: var(--w25); font-weight: 300; }
.donate-cta {
  display: block; width: 100%; text-align: center;
  background: var(--red); color: var(--white); text-decoration: none;
  padding: 18px; font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: none; cursor: pointer; font-family: var(--sans);
  transition: opacity 0.2s;
}
.donate-cta:hover { opacity: 0.88; }
.impact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
  border-radius: 3px; overflow: hidden; margin-bottom: 32px;
}
.impact-cell {
  background: var(--bg); padding: 32px 28px; position: relative;
}
.impact-cell::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.impact-amount {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(26px, 3vw, 38px); color: var(--gold); margin-bottom: 8px;
}
.impact-desc { font-size: 13px; color: var(--w35); line-height: 1.65; font-weight: 300; }
.goal-track { height: 1px; background: var(--w05); margin: 28px 0 10px; overflow: hidden; position: relative; }
.goal-fill { position: absolute; top: 0; left: 0; height: 100%; background: linear-gradient(to right, var(--red), var(--gold)); width: 0%; transition: width 1.8s var(--ease-out); }
.goal-labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--w20); font-weight: 300; }

/* ── MERCH ── */
.merch-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
}
.merch-item { background: var(--bg); overflow: hidden; }
.merch-img { aspect-ratio: 1; overflow: hidden; }
.merch-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.merch-item:hover .merch-img img { transform: scale(1.04); }
.merch-info { padding: 24px 22px; border-top: 1px solid var(--border); }
.merch-name { font-family: var(--serif); font-weight: 800; font-size: 19px; color: var(--white); margin-bottom: 4px; }
.merch-price { font-size: 13px; color: var(--w30); font-weight: 300; margin-bottom: 20px; }
.size-row { display: flex; gap: 5px; margin-bottom: 14px; flex-wrap: wrap; }
.size-btn {
  background: transparent; border: 1px solid rgba(255,255,255,0.1);
  color: var(--w40); padding: 6px 12px;
  font-size: 11px; font-weight: 600; cursor: pointer;
  border-radius: 1px; letter-spacing: 0.06em;
  transition: all 0.2s; font-family: var(--sans);
}
.size-btn:hover, .size-btn.selected { background: var(--red); border-color: var(--red); color: var(--white); }
.buy-btn {
  width: 100%; background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--w50); padding: 13px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; cursor: pointer; text-align: center;
  text-decoration: none; display: block;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  font-family: var(--sans);
}
.buy-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }

/* ── FEATURES LIST ── */
.feature-list { }
.feature-item {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 20px; align-items: start;
  padding: 28px 0; border-bottom: 1px solid var(--border);
}
.feature-item:last-child { border-bottom: none; }
.feature-num {
  font-family: var(--serif); font-size: 11px; font-weight: 700;
  color: var(--w10); padding-top: 4px;
}
.feature-title { font-family: var(--serif); font-weight: 800; font-size: 18px; color: var(--white); margin-bottom: 5px; }
.feature-body { font-size: 13px; color: var(--w35); line-height: 1.7; font-weight: 300; }

/* ── CONTACT INFO ── */
.contact-detail { margin-bottom: 36px; }
.contact-label { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--w25); margin-bottom: 10px; }
.contact-value { font-family: var(--serif); font-weight: 700; font-size: 18px; color: var(--white); text-decoration: none; line-height: 1.4; transition: color 0.2s; }
.contact-value:hover { color: var(--w60); }
.social-links { display: flex; gap: 10px; margin-top: 4px; }
.social-link {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--w30); text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 9px 16px; border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: rgba(255,255,255,0.35); color: var(--w70); }

/* ── FOOTER ── */
footer {
  background: var(--bg); position: relative; z-index: 2;
  border-top: 1px solid var(--border);
  padding: 72px 40px 36px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 64px; margin-bottom: 56px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand img { height: 40px; width: auto; }
.footer-brand-name { font-family: var(--serif); font-weight: 700; font-size: 16px; color: var(--white); }
.footer-brand-sub { font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.footer-tagline { font-size: 14px; color: var(--w30); line-height: 1.7; font-weight: 300; max-width: 280px; }
.footer-col h4 { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--w25); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 14px; color: var(--w40); text-decoration: none; margin-bottom: 12px; font-weight: 300; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 13px; color: var(--w35); line-height: 1.7; font-weight: 300; }
.footer-col .contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-col .contact-row svg { width:14px; height:14px; stroke:var(--red); fill:none; stroke-width:1.8; flex-shrink:0; margin-top:3px; }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 12px; color: var(--w20); font-weight: 300; }
.footer-links { display: flex; align-items: center; gap: 20px; }
.footer-links a { font-size: 12px; color: var(--w25); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--w60); }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--w30); text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: rgba(255,255,255,0.3); color: var(--white); }
.footer-social svg { width:14px; height:14px; fill:currentColor; }

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
  .grid-2 { gap: 60px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width:860px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .page-hero { padding: 0 24px 8vh; }
  .section { padding: 72px 24px; }
  .grid-2 { grid-template-columns: 1fr; gap: 48px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .leader-grid { grid-template-columns: repeat(2, 1fr); }
  .speaker-grid { grid-template-columns: repeat(2, 1fr); }
  .merch-grid { grid-template-columns: 1fr; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 56px 24px 28px; }
}
@media (max-width:480px) {
  .leader-grid { grid-template-columns: 1fr; }
}
