*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0B1D3A;
  --navy-light: #132B52;
  --navy-mid: #1A3A6B;
  --gold: #D4A054;
  --gold-light: #E8C88A;
  --gold-dark: #B8863A;
  --cream: #FAF6F0;
  --cream-dark: #F0E8DA;
  --warm-white: #FDFCFA;
  --text-dark: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #7A7A7A;
  --coral: #D4705A;
  --sage: #7A9E7E;
  --sage-light: #E8F0E8;
  --sky: #5B8DB8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text-dark);
  background: var(--warm-white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

/* ==================== NAV ==================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(11,29,58,0.95);
  backdrop-filter: blur(12px);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  border-bottom: 1px solid rgba(212,160,84,0.2);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  color: white; font-size: 1.15rem; font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--navy) !important;
  padding: 0.5rem 1.25rem; border-radius: 4px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.mobile-toggle { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 7rem 2rem 4rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    /* Large dot grid */
    radial-gradient(circle 1.5px at 30px 30px, rgba(212,160,84,0.18) 1.5px, transparent 1.5px),
    /* Medium offset dot grid */
    radial-gradient(circle 1px at 15px 15px, rgba(255,255,255,0.06) 1px, transparent 1px),
    /* Subtle diagonal crosshatch */
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(91,141,184,0.03) 60px,
      rgba(91,141,184,0.03) 61px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 60px,
      rgba(91,141,184,0.03) 60px,
      rgba(91,141,184,0.03) 61px
    ),
    /* Warm glow bottom-left */
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(212,160,84,0.06) 0%, transparent 70%),
    /* Cool glow top-right */
    radial-gradient(ellipse 40% 35% at 85% 15%, rgba(91,141,184,0.05) 0%, transparent 70%);
  background-size:
    60px 60px,
    30px 30px,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%;
}

.hero-layout {
  position: relative; z-index: 3;
  max-width: 1200px; width: 100%;
  display: grid; grid-template-columns: 1fr 380px; gap: 3.5rem;
  align-items: center;
}
.hero-left { }
.hero-badge {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(212,160,84,0.4);
  padding: 0.4rem 1.2rem; border-radius: 100px;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.8s ease both;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: white; font-weight: 700;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.8s ease 0.15s both;
  max-width: 600px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.6);
  max-width: 520px; margin-bottom: 2.5rem;
  font-weight: 300; line-height: 1.8;
  animation: fadeUp 0.8s ease 0.3s both;
}

/* Hero Pillar Cards */
.hero-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-pillar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 1.5rem 1.25rem;
  transition: all 0.3s; cursor: default;
}
.hero-pillar:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(212,160,84,0.25);
  transform: translateY(-3px);
}
.hero-pillar-icon {
  width: 40px; height: 40px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 0.9rem;
}
.hero-pillar-icon.arts { background: rgba(212,112,90,0.15); color: var(--coral); }
.hero-pillar-icon.entre { background: rgba(212,160,84,0.15); color: var(--gold); }
.hero-pillar-icon.hist { background: rgba(91,141,184,0.15); color: var(--sky); }
.hero-pillar h4 {
  font-size: 0.95rem; color: white; margin-bottom: 0.35rem;
  font-family: 'Playfair Display', serif;
}
.hero-pillar p {
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
  line-height: 1.55; margin-bottom: 0.9rem;
}
.hero-pillar-btn {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: all 0.3s;
  padding: 0.4rem 0; border-bottom: 1px solid transparent;
}
.hero-pillar-btn.arts-btn { color: var(--coral); }
.hero-pillar-btn.arts-btn:hover { border-color: var(--coral); }
.hero-pillar-btn.entre-btn { color: var(--gold); }
.hero-pillar-btn.entre-btn:hover { border-color: var(--gold); }
.hero-pillar-btn.hist-btn { color: var(--sky); }
.hero-pillar-btn.hist-btn:hover { border-color: var(--sky); }

/* Hero LLC CTA (Right Side) */
.hero-right {
  animation: fadeUp 0.8s ease 0.5s both;
}
.hero-llc-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,160,84,0.2);
  border-radius: 14px; padding: 2.25rem;
  backdrop-filter: blur(8px);
  position: relative; overflow: hidden;
}
.hero-llc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--coral));
}
.hero-llc-badge {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); background: rgba(212,160,84,0.1);
  padding: 0.3rem 0.75rem; border-radius: 4px;
  margin-bottom: 1rem;
}
.hero-llc-card h3 {
  font-size: 1.4rem; color: white; margin-bottom: 0.6rem;
  line-height: 1.3;
}
.hero-llc-card > p {
  font-size: 0.88rem; color: rgba(255,255,255,0.5);
  line-height: 1.65; margin-bottom: 1.5rem;
}
.hero-llc-features {
  list-style: none; margin-bottom: 1.75rem;
}
.hero-llc-features li {
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
  padding: 0.35rem 0; padding-left: 1.3rem; position: relative;
}
.hero-llc-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--gold); font-weight: 700; font-size: 0.8rem;
}
.hero-llc-btn {
  display: block; width: 100%; padding: 0.9rem;
  background: var(--gold); color: var(--navy);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.88rem; font-weight: 700;
  text-align: center; border-radius: 6px;
  border: none; cursor: pointer; transition: all 0.3s;
  letter-spacing: 0.03em;
  text-decoration: none;
}
.hero-llc-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.hero-llc-free {
  text-align: center; margin-top: 0.6rem;
  font-size: 0.72rem; color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

.btn {
  display: inline-block; padding: 0.9rem 2rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  text-decoration: none; border-radius: 4px;
  letter-spacing: 0.03em; transition: all 0.3s;
  cursor: pointer; border: none;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { border: 1px solid rgba(255,255,255,0.3); color: white; background: transparent; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ==================== MISSION ==================== */
.mission-strip { padding: 5rem 2rem; text-align: center; background: var(--warm-white); }
.mission-strip h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--navy); max-width: 800px; margin: 0 auto 1.5rem; font-weight: 600;
}
.mission-strip p { font-size: 1.05rem; color: var(--text-mid); max-width: 680px; margin: 0 auto; }
.mission-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 900px; margin: 3rem auto 0; }
.pillar { text-align: center; padding: 2rem 1.5rem; }
.pillar-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-size: 1.4rem;
}
.pillar-icon.biz { background: rgba(212,160,84,0.12); color: var(--gold-dark); }
.pillar-icon.art { background: rgba(212,112,90,0.12); color: var(--coral); }
.pillar-icon.comm { background: rgba(122,158,126,0.12); color: var(--sage); }
.pillar h4 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
.pillar p { font-size: 0.9rem; color: var(--text-light); }

/* ==================== SECTIONS ==================== */
.section { padding: 6rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.75rem;
}
.section h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--navy); margin-bottom: 1rem; }
.section > .section-inner > p.section-desc {
  font-size: 1.05rem; color: var(--text-mid);
  max-width: 620px; margin-bottom: 3rem; line-height: 1.8;
}

/* ==================== COMPETITION ==================== */
.comp-section { background: var(--cream); }
.comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.comp-card {
  background: white; border-radius: 8px; padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 2px 20px rgba(0,0,0,0.03);
}
.comp-card h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 1rem; }
.comp-card ul { list-style: none; padding: 0; }
.comp-card li {
  padding: 0.5rem 0; font-size: 0.95rem; color: var(--text-mid);
  border-bottom: 1px solid rgba(0,0,0,0.04); padding-left: 1.5rem; position: relative;
}
.comp-card li::before { content: '→'; position: absolute; left: 0; color: var(--gold-dark); font-weight: 600; }
.comp-card li:last-child { border-bottom: none; }
.prize-showcase { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.prize-card {
  background: white; border-radius: 8px; text-align: center; padding: 2rem 1.5rem;
  border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 2px 20px rgba(0,0,0,0.03); transition: transform 0.3s;
}
.prize-card:hover { transform: translateY(-4px); }
.prize-card.grand { background: var(--navy); color: white; border: 1px solid rgba(212,160,84,0.3); }
.prize-amount { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); margin-bottom: 0.25rem; }
.prize-card.grand .prize-amount { color: var(--gold-light); }
.prize-label { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); }
.prize-card.grand .prize-label { color: rgba(255,255,255,0.7); }
.timeline { position: relative; padding-left: 3rem; margin-top: 2rem; }
.timeline::before { content: ''; position: absolute; left: 12px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--gold), var(--gold-dark)); }
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); position: absolute; left: -2.35rem; top: 0.45rem; box-shadow: 0 0 0 4px rgba(212,160,84,0.15); }
.timeline-item h4 { font-size: 1rem; color: var(--navy); margin-bottom: 0.25rem; }
.timeline-item p { font-size: 0.9rem; color: var(--text-mid); }

/* ==================== ACADEMY ==================== */
.academy-section { background: var(--warm-white); }
.course-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.course-card {
  background: var(--cream); border-radius: 8px; padding: 2rem;
  transition: all 0.3s; border: 1px solid transparent; cursor: default;
}
.course-card:hover { border-color: rgba(212,160,84,0.3); box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.course-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: rgba(212,160,84,0.2); line-height: 1; margin-bottom: 0.75rem; }
.course-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.5rem; }
.course-card p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 0.75rem; }
.course-meta { font-size: 0.78rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

/* ==================== WEBSITES ==================== */
.websites-section { background: var(--cream); }
.web-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }
.web-feature { text-align: center; padding: 2rem; }
.web-feature-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 0.5rem; }
.web-feature h4 { font-size: 1rem; color: var(--navy); margin-bottom: 0.5rem; }
.web-feature p { font-size: 0.88rem; color: var(--text-mid); }

/* ==================== LLC SECTION ==================== */
.llc-section { background: var(--navy); color: white; }
.llc-section .section-label { color: var(--gold-light); }
.llc-section h2 { color: white; }
.llc-section p.section-desc { color: rgba(255,255,255,0.8); }
.llc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.llc-steps { list-style: none; }
.llc-step { display: flex; gap: 1.25rem; margin-bottom: 1.5rem; align-items: flex-start; }
.llc-step-num {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(212,160,84,0.15); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem;
}
.llc-step-text h4 { font-size: 1rem; color: white; margin-bottom: 0.2rem; font-family: 'Source Sans 3', sans-serif; font-weight: 600; }
.llc-step-text p { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.llc-cta-box {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(212,160,84,0.2);
  border-radius: 12px; padding: 3rem; text-align: center;
}
.llc-cta-box h3 { font-size: 1.5rem; color: white; margin-bottom: 0.75rem; }
.llc-cta-box p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; font-size: 0.95rem; }

/* ==================== SPONSOR ==================== */
.sponsor-section { background: var(--warm-white); }
.sponsor-tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.tier-card { border-radius: 8px; padding: 2.5rem; border: 1px solid rgba(0,0,0,0.08); background: white; }
.tier-card.featured { background: var(--navy); color: white; border-color: rgba(212,160,84,0.3); }
.tier-price { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); margin-bottom: 0.25rem; }
.tier-name { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-light); margin-bottom: 1.5rem; }
.tier-card.featured .tier-name { color: rgba(255,255,255,0.6); }
.tier-card ul { list-style: none; }
.tier-card li { padding: 0.45rem 0; font-size: 0.9rem; color: var(--text-mid); padding-left: 1.5rem; position: relative; }
.tier-card.featured li { color: rgba(255,255,255,0.75); }
.tier-card li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ==================== SUPPORT ==================== */
.support-section {
  background: var(--cream);
  color: var(--text-dark);
  text-align: center;
}
.support-section .section-label { color: var(--gold-dark); }
.support-section h2 { color: var(--navy); max-width: 700px; margin: 0 auto 1rem; }
.support-section p { color: var(--text-mid); max-width: 580px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.support-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.support-card {
  background: white; border: 1px solid rgba(11,29,58,0.08);
  border-radius: 10px; padding: 2rem; text-align: center; transition: all 0.3s;
}
.support-card:hover {
  border-color: rgba(212,160,84,0.3);
  box-shadow: 0 8px 30px rgba(11,29,58,0.06);
  transform: translateY(-4px);
}
.support-card h4 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
.support-card p { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 1rem; line-height: 1.6; }

/* Support card links */
.support-card-link {
  text-decoration: none; color: inherit;
  display: block; cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
}
button.support-card-link {
  width: 100%; text-align: center;
  font-family: 'Source Sans 3', sans-serif;
}
.support-card-action {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-dark);
}

/* ==================== FOOTER ==================== */
footer {
  background: var(--navy); border-top: 1px solid rgba(212,160,84,0.15);
  padding: 3rem 2rem 2rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand h3 { font-size: 1.2rem; color: white; margin-bottom: 0.75rem; }
.footer-brand h3 span { color: var(--gold); }
.footer-logo-link { text-decoration: none; }
.footer-logo-link:hover h3 { opacity: 0.85; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-col h5 {
  font-family: 'Source Sans 3', sans-serif; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 1rem;
}
.footer-col a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 0.5rem; transition: color 0.3s; }
.footer-col a:hover { color: white; }
.footer-bottom {
  max-width: 1100px; margin: 2rem auto 0; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin: 0; }
.footer-bottom span { color: var(--gold); }
.footer-legal {
  display: flex; align-items: center; gap: 1.25rem;
}
.footer-legal a {
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
  text-decoration: none; transition: color 0.3s;
}
.footer-legal a:hover { color: var(--gold); }
@media (max-width: 700px) {
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}

/* ==================== ABOUT SECTION ==================== */
.about-section { background: var(--warm-white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; margin-bottom: 4rem;
}
.about-image-photo {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 10px; display: block;
  box-shadow: 0 8px 32px rgba(11,29,58,0.08);
}
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p {
  font-size: 0.95rem; color: var(--text-mid); margin-bottom: 1rem; line-height: 1.8;
}
.about-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.about-pillar {
  background: white; border-radius: 10px; padding: 2rem 1.75rem;
  border: 1px solid rgba(0,0,0,0.06); position: relative; overflow: hidden;
  transition: all 0.3s;
}
.about-pillar:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.about-pillar-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.arts-accent { background: var(--coral); }
.entre-accent { background: var(--gold); }
.hist-accent { background: var(--sky); }
.about-pillar-icon {
  font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--gold-dark);
}
.about-pillar h4 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
.about-pillar p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 0.75rem; }
.about-pillar-link {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none; transition: all 0.3s;
}
.arts-link { color: var(--coral); }
.arts-link:hover { border-bottom: 1px solid var(--coral); }
.entre-link { color: var(--gold-dark); }
.entre-link:hover { border-bottom: 1px solid var(--gold-dark); }
.hist-link { color: var(--sky); }
.hist-link:hover { border-bottom: 1px solid var(--sky); }

/* ==================== SPONSOR CTA IN COMPETITION ==================== */
.comp-sponsor-cta {
  text-align: center; margin-top: 3.5rem; padding: 1rem 0 0.5rem;
}
.comp-sponsor-cta h3 {
  font-size: 1.5rem; color: var(--navy); margin-bottom: 0.6rem;
}
.comp-sponsor-cta p {
  font-size: 0.98rem; color: var(--text-mid); margin-bottom: 1.5rem;
  max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.7;
}

/* ==================== SPONSOR MODAL ==================== */
.sponsor-modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(11,29,58,0.95); backdrop-filter: blur(8px);
  display: none; overflow-y: auto; padding: 2rem;
}
.sponsor-modal-overlay.open { display: flex; align-items: flex-start; justify-content: center; }
.sponsor-modal {
  background: white; border-radius: 12px; max-width: 900px; width: 100%;
  margin: 3rem auto; position: relative; animation: fadeUp 0.4s ease;
}
.sponsor-modal-header {
  padding: 2.5rem 2.5rem 0; text-align: center;
}
.sponsor-modal-header h2 { font-size: 1.8rem; color: var(--navy); margin-bottom: 0.5rem; }
.sponsor-modal-header p { font-size: 0.95rem; color: var(--text-mid); max-width: 550px; margin: 0 auto; }
.sponsor-modal-close {
  position: absolute; top: 16px; right: 20px; background: none; border: none;
  font-size: 1.5rem; color: var(--text-light); cursor: pointer; padding: 4px 8px;
  transition: color 0.3s;
}
.sponsor-modal-close:hover { color: var(--navy); }
.sponsor-modal-body { padding: 2rem 2.5rem; }
.sponsor-modal-tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
.spm-tier {
  border-radius: 10px; padding: 2rem; border: 1px solid rgba(0,0,0,0.08);
}
.spm-tier.featured { background: var(--navy); color: white; }
.spm-tier .tier-price { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); margin-bottom: 0.2rem; }
.spm-tier .tier-name { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 1.25rem; }
.spm-tier.featured .tier-name { color: rgba(255,255,255,0.5); }
.spm-tier ul { list-style: none; }
.spm-tier li { padding: 0.4rem 0; font-size: 0.85rem; color: var(--text-mid); padding-left: 1.3rem; position: relative; }
.spm-tier.featured li { color: rgba(255,255,255,0.7); }
.spm-tier li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.sponsor-form-section { border-top: 1px solid rgba(0,0,0,0.06); padding-top: 2rem; }
.sponsor-form-section h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.5rem; text-align: center; }
.sponsor-form-section > p { font-size: 0.88rem; color: var(--text-mid); text-align: center; margin-bottom: 1.5rem; }
.sponsor-form { max-width: 500px; margin: 0 auto; }
.sponsor-form .sf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.sponsor-form .sf-full { margin-bottom: 1rem; }
.sponsor-form label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 0.35rem; }
.sponsor-form input, .sponsor-form select, .sponsor-form textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid rgba(0,0,0,0.12);
  border-radius: 6px; font-family: 'Source Sans 3', sans-serif; font-size: 0.9rem;
  color: var(--text-dark); outline: none; transition: border-color 0.3s;
}
.sponsor-form input:focus, .sponsor-form select:focus, .sponsor-form textarea:focus { border-color: var(--gold); }
.sponsor-form textarea { resize: vertical; min-height: 80px; }
.sponsor-form .sf-submit {
  display: block; width: 100%; padding: 0.9rem; margin-top: 1rem;
  background: var(--gold); color: var(--navy); border: none; border-radius: 6px;
  font-family: 'Source Sans 3', sans-serif; font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: all 0.3s;
}
.sponsor-form .sf-submit:hover { background: var(--gold-light); }

/* ==================== ANIMATIONS ==================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==================== LLC TOOL (STANDALONE PAGE) ==================== */
.llc-tool-page {
  background: var(--cream);
  min-height: 100vh;
  padding: 7rem 1.5rem 5rem;
  position: relative;
}
.llc-tool-page::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle 1px at 20px 20px, rgba(212,160,84,0.08) 1px, transparent 1px),
    radial-gradient(circle 0.5px at 10px 10px, rgba(11,29,58,0.04) 0.5px, transparent 0.5px);
  background-size: 40px 40px, 20px 20px;
  pointer-events: none;
  z-index: 0;
}
.llc-tool-page > * { position: relative; z-index: 1; }

.llc-tool { font-family: 'Source Sans 3', sans-serif; color: var(--text-dark); line-height: 1.5; }
.llc-tool .wrap { max-width: 680px; margin: 0 auto; }

.llc-tool .logo-area { text-align: center; margin-bottom: 2.5rem; }
.llc-tool .logo-sub {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 0.5rem; font-weight: 600;
}
.llc-tool .logo-main {
  font-family: 'Playfair Display', serif; font-size: 2.2rem;
  color: var(--navy); font-weight: 700; line-height: 1.2;
}
.llc-tool .logo-desc { font-size: 0.95rem; color: var(--text-mid); margin-top: 0.5rem; }

/* Progress */
.llc-tool .prog-top {
  display: flex; justify-content: space-between; margin-bottom: 0.5rem;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 600;
}
.llc-tool .prog-bar {
  height: 3px; background: rgba(11,29,58,0.08);
  border-radius: 2px; overflow: hidden; margin-bottom: 0.75rem;
}
.llc-tool .prog-fill {
  height: 100%; background: var(--gold);
  border-radius: 2px; transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
}
.llc-tool .prog-steps { display: flex; justify-content: space-between; gap: 4px; margin-bottom: 1.5rem; }
.llc-tool .prog-step {
  font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(11,29,58,0.3); text-align: center; flex: 1; transition: all 0.3s;
}
.llc-tool .prog-step.on { color: var(--gold-dark); }
.llc-tool .prog-step.cur { color: var(--navy); font-weight: 700; }

/* Card */
.llc-tool .card {
  background: white;
  border: 1px solid rgba(11,29,58,0.06);
  border-radius: 14px;
  padding: 2.5rem 2.25rem;
  box-shadow: 0 4px 30px rgba(11,29,58,0.04);
}
.llc-tool .step { display: none; }
.llc-tool .step.active { display: block; animation: fadeUp 0.5s ease forwards; }

.llc-tool .sec-title {
  font-family: 'Playfair Display', serif; font-size: 1.5rem;
  color: var(--navy); margin-bottom: 0.5rem; font-weight: 700;
}
.llc-tool .lbl {
  display: block; font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--navy);
  margin-bottom: 0.4rem; font-weight: 700;
}
.llc-tool .lbl .req { color: var(--coral); }
.llc-tool .help { font-size: 0.82rem; color: var(--text-light); margin-bottom: 0.5rem; line-height: 1.55; }
.llc-tool .fg { margin-bottom: 1.25rem; }

/* Form inputs */
.llc-tool input[type="text"],
.llc-tool input[type="email"],
.llc-tool input[type="tel"],
.llc-tool input[type="date"],
.llc-tool select,
.llc-tool textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--warm-white);
  border: 1px solid rgba(11,29,58,0.15);
  border-radius: 6px; color: var(--text-dark);
  font-size: 0.95rem; outline: none;
  font-family: 'Source Sans 3', sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none; appearance: none;
}
.llc-tool input:focus, .llc-tool select:focus, .llc-tool textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,160,84,0.15);
}
.llc-tool select { background: white; cursor: pointer; }
.llc-tool ::placeholder { color: var(--text-light); opacity: 0.6; }

.llc-tool .row { display: grid; gap: 0.75rem; }
.llc-tool .r2 { grid-template-columns: 1fr 1fr; }
.llc-tool .r21 { grid-template-columns: 2fr 1fr; }
.llc-tool .r3 { grid-template-columns: 1fr auto 1fr; }
.llc-tool .r4 { grid-template-columns: 1fr auto 1fr auto; }

/* Option buttons */
.llc-tool .opt-grid { display: grid; gap: 0.6rem; }
.llc-tool .opt {
  padding: 1rem 1rem; background: var(--warm-white);
  border: 1px solid rgba(11,29,58,0.12); border-radius: 8px;
  color: var(--text-mid); font-size: 0.85rem;
  cursor: pointer; transition: all 0.3s;
  text-align: left; font-family: 'Source Sans 3', sans-serif; width: 100%;
}
.llc-tool .opt:hover {
  border-color: var(--gold); background: rgba(212,160,84,0.04);
}
.llc-tool .opt.on {
  background: rgba(212,160,84,0.08);
  border-color: var(--gold); color: var(--navy);
}
.llc-tool .opt .ot { font-weight: 700; margin-bottom: 0.25rem; font-size: 0.92rem; color: var(--navy); }
.llc-tool .opt.on .ot { color: var(--navy); }
.llc-tool .opt .od { font-size: 0.8rem; opacity: 0.85; line-height: 1.55; color: var(--text-mid); }

.llc-tool .badge {
  display: inline-block; font-size: 0.65rem; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.2rem 0.55rem; border-radius: 4px;
  background: var(--gold); color: var(--navy);
  margin-left: 0.5rem; vertical-align: middle; font-weight: 700;
}

/* Info panels */
.llc-tool .info {
  background: rgba(212,160,84,0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0; padding: 0.9rem 1rem;
  margin: 1rem 0; font-size: 0.85rem; color: var(--text-mid); line-height: 1.65;
}
.llc-tool .info strong { color: var(--navy); }
.llc-tool .info-green {
  background: rgba(122,158,126,0.08);
  border-left: 3px solid var(--sage);
  border-radius: 0 6px 6px 0; padding: 0.9rem 1rem;
  margin: 1rem 0; font-size: 0.85rem; color: var(--text-mid); line-height: 1.65;
}
.llc-tool .info-green strong { color: var(--sage); }

/* Checkbox */
.llc-tool .chk {
  display: flex; gap: 0.65rem; cursor: pointer; margin-bottom: 0.75rem;
  font-size: 0.85rem; color: var(--text-mid); line-height: 1.55; align-items: flex-start;
}
.llc-tool .chk input {
  margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; width: 16px; height: 16px;
}

/* Navigation buttons */
.llc-tool .nav { display: flex; justify-content: space-between; margin-top: 1.75rem; gap: 0.75rem; }
.llc-tool .btn-back {
  padding: 0.85rem 1.75rem; background: transparent;
  border: 1px solid rgba(11,29,58,0.15); border-radius: 6px;
  color: var(--text-mid); font-size: 0.85rem; cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  letter-spacing: 0.05em; font-weight: 600; transition: all 0.3s;
}
.llc-tool .btn-back:hover { border-color: var(--navy); color: var(--navy); }
.llc-tool .btn-next {
  padding: 0.85rem 2.25rem; background: var(--navy);
  border: 1px solid var(--navy); border-radius: 6px;
  color: white; font-size: 0.85rem; font-weight: 700;
  cursor: pointer; font-family: 'Source Sans 3', sans-serif;
  letter-spacing: 0.08em; text-transform: uppercase; transition: all 0.3s;
}
.llc-tool .btn-next:hover { background: var(--navy-light); }
.llc-tool .btn-next:disabled, .llc-tool .btn-next.off { opacity: 0.4; cursor: not-allowed; }

/* Submit button */
.llc-tool .btn-submit {
  padding: 1.1rem 3rem;
  background: var(--gold); border: none; border-radius: 8px;
  color: var(--navy); font-size: 1rem; font-weight: 700;
  cursor: pointer; font-family: 'Source Sans 3', sans-serif;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(212,160,84,0.3);
}
.llc-tool .btn-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
.llc-tool .btn-submit:disabled {
  opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none;
  background: var(--text-light); color: white;
}

/* Review */
.llc-tool .rv-sec { margin-bottom: 1.25rem; }
.llc-tool .rv-head {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 700; margin-bottom: 0.5rem;
  padding-bottom: 0.5rem; border-bottom: 1px solid rgba(212,160,84,0.25);
}
.llc-tool .rv-row {
  display: flex; justify-content: space-between; padding: 0.65rem 0;
  border-bottom: 1px solid rgba(11,29,58,0.06);
  font-size: 0.85rem; gap: 1rem;
}
.llc-tool .rv-row .rv-l { color: var(--text-light); }
.llc-tool .rv-row .rv-v { color: var(--text-dark); text-align: right; }
.llc-tool .rv-total {
  display: flex; justify-content: space-between; padding: 0.75rem 0;
  font-size: 0.95rem; font-weight: 700;
}
.llc-tool .rv-total .rv-l { color: var(--navy); }
.llc-tool .rv-total .rv-v { color: var(--sage); }

/* Governor items */
.llc-tool .gov-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.8rem 0.9rem;
  background: var(--warm-white);
  border: 1px solid rgba(11,29,58,0.08); border-radius: 6px;
  margin-bottom: 0.5rem;
}
.llc-tool .gov-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.llc-tool .gov-addr { font-size: 0.78rem; color: var(--text-light); }
.llc-tool .gov-actions { display: flex; gap: 0.5rem; }
.llc-tool .gov-btn {
  background: transparent; border: none; cursor: pointer;
  font-size: 0.85rem; font-family: 'Source Sans 3', sans-serif; padding: 0.25rem 0.5rem;
}
.llc-tool .gov-edit { color: var(--gold-dark); }
.llc-tool .gov-rm { color: var(--coral); }
.llc-tool .gov-add {
  width: 100%; padding: 0.9rem;
  background: transparent; border: 1px dashed rgba(212,160,84,0.4);
  border-radius: 6px; color: var(--gold-dark); font-size: 0.9rem;
  cursor: pointer; font-family: 'Source Sans 3', sans-serif; font-weight: 600;
}
.llc-tool .gov-add:hover { background: rgba(212,160,84,0.04); }
.llc-tool .gov-form {
  padding: 1.25rem; background: var(--warm-white);
  border: 1px solid rgba(11,29,58,0.08); border-radius: 10px; margin-top: 0.5rem;
}
.llc-tool .gov-form-title {
  font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem;
}

/* Signature & payment boxes */
.llc-tool .sig-box, .llc-tool .pay-box {
  padding: 1.25rem; background: var(--warm-white);
  border: 1px solid rgba(11,29,58,0.08); border-radius: 10px;
}
.llc-tool .pay-box { margin-top: 1.25rem; }
.llc-tool .sig-head {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 700; margin-bottom: 1rem;
}
.llc-tool .pay-line {
  display: flex; justify-content: space-between; padding: 0.5rem 0;
  font-size: 0.9rem; border-bottom: 1px solid rgba(11,29,58,0.06);
}
.llc-tool .pay-line.total {
  border-bottom: none; padding-top: 0.75rem; font-size: 1rem; font-weight: 700;
}
.llc-tool .pay-line .pl { color: var(--text-light); }
.llc-tool .pay-line .pv { color: var(--text-dark); }
.llc-tool .pay-line.total .pl { color: var(--navy); }
.llc-tool .pay-line.total .pv { color: var(--sage); }

/* Errors & disclaimers */
.llc-tool .err { color: var(--coral); font-size: 0.85rem; margin-top: -0.75rem; margin-bottom: 1rem; }
.llc-tool .disc { font-size: 0.78rem; color: var(--text-light); text-align: center; margin-top: 0.75rem; }

/* Success overlay */
.llc-success-overlay {
  position: fixed; inset: 0; z-index: 2100;
  display: none; align-items: center; justify-content: center;
  background: rgba(11,29,58,0.95);
  backdrop-filter: blur(10px);
  padding: 2rem;
}
.llc-success-overlay.show { display: flex; }
.llc-success-overlay .success {
  text-align: center; padding: 2.5rem; max-width: 520px;
  background: white; border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: fadeUp 0.6s ease forwards;
}
.llc-success-overlay .success-icon { font-size: 4rem; margin-bottom: 1rem; }
.llc-success-overlay .success-title {
  font-family: 'Playfair Display', serif; font-size: 1.75rem;
  color: var(--navy); margin-bottom: 1rem; line-height: 1.3; font-weight: 700;
}
.llc-success-overlay .success-body {
  font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.25rem;
}
.llc-success-overlay .success-steps {
  text-align: left; margin: 1.25rem auto; max-width: 400px;
}
.llc-success-overlay .success-step {
  display: flex; gap: 0.75rem; margin-bottom: 0.9rem;
  font-size: 0.88rem; color: var(--text-mid); line-height: 1.5;
}
.llc-success-overlay .success-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(212,160,84,0.15); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem; flex-shrink: 0;
}


/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .comp-grid, .llc-grid, .sponsor-tiers { grid-template-columns: 1fr; }
  .prize-showcase { grid-template-columns: repeat(2, 1fr); }
  .mission-pillars { grid-template-columns: 1fr; }
  .web-features { grid-template-columns: 1fr; }
  .support-options { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .hero-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-right { max-width: 420px; }
  .hero-pillars { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .sponsor-modal-tiers { grid-template-columns: 1fr; }
  .sponsor-form .sf-row { grid-template-columns: 1fr; }
  .llc-tool .r2,.llc-tool .r21,.llc-tool .r3,.llc-tool .r4{grid-template-columns:1fr}
  .llc-tool-page{padding:6rem 1rem 3rem}
  .llc-tool .card{padding:1.75rem 1.25rem}
  .llc-tool .logo-main{font-size:1.75rem}
}
@media (max-width: 600px) {
  .prize-showcase { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 4rem 1.25rem; }
}

/* ==================== INNER PAGE HERO ==================== */
/* Used on pages other than homepage for a simpler hero section */
.page-hero {
  background: var(--navy);
  padding: 9rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle 1.5px at 30px 30px, rgba(212,160,84,0.18) 1.5px, transparent 1.5px),
    radial-gradient(circle 1px at 15px 15px, rgba(255,255,255,0.06) 1px, transparent 1px),
    repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(91,141,184,0.03) 60px, rgba(91,141,184,0.03) 61px),
    repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(91,141,184,0.03) 60px, rgba(91,141,184,0.03) 61px),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(212,160,84,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 85% 15%, rgba(91,141,184,0.05) 0%, transparent 70%);
  background-size: 60px 60px, 30px 30px, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
}
.page-hero .section-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
}
.page-hero .section-label {
  color: var(--gold-light);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 0.75rem;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: white; font-weight: 700;
  margin-bottom: 1rem; max-width: 800px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.65);
  max-width: 650px; line-height: 1.75; font-weight: 300;
}
@media (max-width: 600px) {
  .page-hero { padding: 7rem 1.25rem 4rem; }
  .page-hero h1 { font-size: 2rem; }
}

/* ==================== LEGAL / LONG-FORM PAGES ==================== */
/* Used for Terms, Privacy, and other legal/content-heavy pages */
.legal-content {
  max-width: 780px; margin: 0 auto;
  font-size: 1rem; color: var(--text-mid); line-height: 1.8;
}
.legal-content .last-updated {
  font-size: 0.85rem; color: var(--text-light);
  font-style: italic; margin-bottom: 2.5rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.08);
}
.legal-content h2 {
  font-size: 1.5rem; color: var(--navy);
  margin-top: 2.5rem; margin-bottom: 1rem; font-weight: 700;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 {
  font-size: 1.1rem; color: var(--navy);
  margin-top: 1.75rem; margin-bottom: 0.75rem;
  font-family: 'Source Sans 3', sans-serif; font-weight: 700;
}
.legal-content p { margin-bottom: 1rem; }
.legal-content ul, .legal-content ol {
  margin-bottom: 1rem; padding-left: 1.5rem;
}
.legal-content li { margin-bottom: 0.5rem; }
.legal-content a { color: var(--gold-dark); text-decoration: underline; }
.legal-content a:hover { color: var(--navy); }
.legal-content strong { color: var(--navy); font-weight: 700; }
.legal-content .legal-disclaimer {
  background: rgba(212,160,84,0.08);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem; margin: 2rem 0;
  border-radius: 0 6px 6px 0;
  font-size: 0.95rem;
}
.legal-content .legal-disclaimer strong { color: var(--gold-dark); }
.legal-content .toc {
  background: var(--cream); padding: 1.5rem 2rem;
  border-radius: 8px; margin-bottom: 3rem;
}
.legal-content .toc h3 {
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy); margin-top: 0; margin-bottom: 1rem;
}
.legal-content .toc ol {
  columns: 2; column-gap: 2rem;
  padding-left: 1.25rem; margin-bottom: 0;
}
.legal-content .toc li {
  font-size: 0.9rem; margin-bottom: 0.4rem;
  break-inside: avoid;
}
.legal-content .toc a { color: var(--text-mid); text-decoration: none; }
.legal-content .toc a:hover { color: var(--gold-dark); }
@media (max-width: 600px) {
  .legal-content .toc ol { columns: 1; }
  .legal-content h2 { font-size: 1.3rem; }
}


/* ==================== FREE WEBSITES PAGE ==================== */

/* Hero grid - text left, mockup right */
.fw-hero-grid {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 3.5rem; align-items: center;
  position: relative; z-index: 2;
}

/* Browser mockup illustration */
.fw-hero-mockup {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,160,84,0.2);
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.fw-mockup-bar {
  display: flex; gap: 6px; padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fw-mockup-bar span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.fw-mockup-bar span:first-child { background: rgba(212,160,84,0.4); }
.fw-mockup-body { padding: 20px; }
.fw-mockup-header-block {
  height: 60px; border-radius: 6px;
  background: linear-gradient(135deg, rgba(212,160,84,0.15), rgba(212,160,84,0.05));
  margin-bottom: 16px;
}
.fw-mockup-text-lines { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.fw-mockup-text-lines div {
  height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.08);
}
.fw-mockup-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.fw-mockup-cols div {
  height: 70px; border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.fw-hero-badge-float {
  margin-top: 1rem; text-align: center;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); opacity: 0.7;
}

/* Proof strip */
.fw-proof-strip {
  display: flex; justify-content: center; align-items: center;
  gap: 2.5rem; max-width: 900px; margin: 0 auto;
  flex-wrap: wrap;
}
.fw-proof-item { text-align: center; }
.fw-proof-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.fw-proof-label {
  font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-top: 0.3rem; font-weight: 600;
}
.fw-proof-divider {
  width: 1px; height: 32px;
  background: rgba(255,255,255,0.1);
}

/* Why grid - image left, text right */
.fw-why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}

/* Placeholder boxes */
.fw-why-photo {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 10px; display: block;
  box-shadow: 0 8px 32px rgba(11,29,58,0.08);
}
.fw-placeholder-box {
  aspect-ratio: 4/3; border-radius: 10px;
  background: var(--cream); border: 2px dashed rgba(212,160,84,0.3);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.5rem;
}
.fw-placeholder-icon { font-size: 2.5rem; opacity: 0.5; }
.fw-placeholder-box span {
  font-size: 0.8rem; color: var(--text-light);
  letter-spacing: 0.05em; font-weight: 500;
}

/* Quote callout */
.fw-quote {
  margin-top: 2rem; padding: 1.5rem;
  background: rgba(212,160,84,0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
}
.fw-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; color: var(--navy);
  font-style: italic; line-height: 1.7;
  margin-bottom: 0.5rem;
}
.fw-quote span {
  font-size: 0.82rem; color: var(--gold-dark);
  font-weight: 600;
}

/* Feature grid */
.fw-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.fw-feature {
  background: white; padding: 2rem 1.75rem;
  border-radius: 10px; border: 1px solid rgba(11,29,58,0.06);
  transition: all 0.3s;
}
.fw-feature:hover {
  border-color: rgba(212,160,84,0.3);
  box-shadow: 0 8px 30px rgba(11,29,58,0.06);
  transform: translateY(-4px);
}
.fw-feature-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.fw-feature h3 {
  font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem;
}
.fw-feature p {
  font-size: 0.9rem; color: var(--text-mid); line-height: 1.7;
}

/* Steps timeline */
.fw-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative; max-width: 1000px; margin: 0 auto;
}
.fw-steps::before {
  content: ''; position: absolute;
  top: 28px; left: 5%; right: 5%;
  height: 2px; background: var(--gold);
  opacity: 0.2; z-index: 0;
}
.fw-step { text-align: center; position: relative; z-index: 1; padding: 0 1rem; }
.fw-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  border: 3px solid rgba(212,160,84,0.25);
}
.fw-step-content h3 {
  font-size: 1.05rem; color: var(--navy);
  margin-bottom: 0.4rem;
  font-family: 'Source Sans 3', sans-serif; font-weight: 700;
}
.fw-step-content p {
  font-size: 0.88rem; color: var(--text-mid); line-height: 1.65;
}

/* Showcase grid */
.fw-showcase-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.fw-showcase-item {
  background: white; border-radius: 10px;
  border: 1px solid rgba(11,29,58,0.06);
  overflow: hidden; transition: all 0.3s;
}
.fw-showcase-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(11,29,58,0.08);
}
.fw-showcase-img {
  overflow: hidden;
}
.fw-showcase-img img {
  width: 100%; display: block;
  aspect-ratio: 16/10; object-fit: cover; object-position: top;
  transition: transform 0.4s;
}
.fw-showcase-item:hover .fw-showcase-img img {
  transform: scale(1.03);
}
.fw-showcase-info {
  padding: 1rem 1.25rem;
}
.fw-showcase-info h4 {
  font-size: 1rem; color: var(--navy); margin-bottom: 0.15rem;
}
.fw-showcase-info p {
  font-size: 0.82rem; color: var(--text-light);
}

/* Who Qualifies */
.fw-qualify-grid {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 4rem; align-items: start;
}
.fw-qualify-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.fw-qualify-list li {
  padding: 1rem 0 1rem 2rem;
  font-size: 0.95rem; color: var(--text-mid);
  line-height: 1.7; border-bottom: 1px solid rgba(11,29,58,0.06);
  position: relative;
}
.fw-qualify-list li::before {
  content: '✓'; position: absolute; left: 0; top: 1rem;
  color: var(--gold); font-weight: 700; font-size: 1rem;
}
.fw-qualify-list li:last-child { border-bottom: none; }
.fw-qualify-list li strong {
  display: block; color: var(--navy); margin-bottom: 0.25rem;
}
.fw-qualify-list li a { color: var(--gold-dark); text-decoration: underline; }
.fw-qualify-list li a:hover { color: var(--navy); }
.fw-note {
  font-size: 0.9rem; color: var(--text-light);
  font-style: italic; padding: 1rem 1.25rem;
  background: rgba(212,160,84,0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0; margin-top: 0.5rem;
}

/* Stats */
.fw-stats { display: flex; flex-direction: column; gap: 1rem; }
.fw-stat-card {
  background: var(--navy); color: white;
  padding: 1.75rem 1.5rem; border-radius: 12px;
  border: 1px solid rgba(212,160,84,0.2);
  text-align: center; position: relative; overflow: hidden;
}
.fw-stat-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold);
}
.fw-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; color: var(--gold);
  font-weight: 700; line-height: 1; margin-bottom: 0.5rem;
}
.fw-stat-label {
  font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
  font-weight: 700; margin-bottom: 0.75rem;
}
.fw-stat-card p {
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  line-height: 1.6; margin: 0;
}

/* Funding (navy) */
.fw-funding-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-bottom: 2rem;
}
.fw-funding-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 2rem 1.75rem;
  transition: all 0.3s;
}
.fw-funding-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(212,160,84,0.3);
}
.fw-funding-icon { color: var(--gold); font-size: 1.3rem; margin-bottom: 0.75rem; }
.fw-funding-card h4 {
  font-size: 1.1rem; color: white; margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}
.fw-funding-card p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.fw-funding-cta {
  text-align: center; padding: 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,160,84,0.15);
  border-radius: 12px;
}
.fw-funding-cta p {
  color: rgba(255,255,255,0.7); font-size: 0.95rem;
  max-width: 600px; margin: 0 auto 1.25rem; line-height: 1.7;
}

/* FAQ two-column */
.fw-faq-layout {
  display: grid; grid-template-columns: 320px 1fr;
  gap: 4rem; align-items: start;
}
.fw-faq { }
.fw-faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(11,29,58,0.1);
}
.fw-faq-item:first-child { padding-top: 0; }
.fw-faq-item:last-child { border-bottom: none; }
.fw-faq-item h3 {
  font-size: 1rem; color: var(--navy); margin-bottom: 0.5rem;
  font-family: 'Source Sans 3', sans-serif; font-weight: 700;
}
.fw-faq-item p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; }
.fw-faq-item a { color: var(--gold-dark); text-decoration: underline; }
.fw-faq-item a:hover { color: var(--navy); }

/* Bottom CTA */
.fw-bottom-cta { max-width: 680px; margin: 0 auto; }
.fw-bottom-cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--navy); margin-bottom: 1rem;
}
.fw-bottom-cta p { font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; }

/* Responsive */
@media (max-width: 900px) {
  .fw-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .fw-hero-image { max-width: 400px; }
  .fw-why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .fw-qualify-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .fw-funding-grid { grid-template-columns: 1fr; }
  .fw-showcase-grid { grid-template-columns: 1fr; }
  .fw-faq-layout { grid-template-columns: 1fr; gap: 2rem; }
  .fw-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .fw-steps::before { display: none; }
  .fw-proof-strip { gap: 1.5rem; }
  .fw-proof-divider { display: none; }
}
@media (max-width: 600px) {
  .fw-steps { grid-template-columns: 1fr; }
}

/* ==================== SECTION CTA ROW ==================== */
/* Side-by-side button row at bottom of sections */
.section-cta-row {
  display: flex; gap: 1rem; justify-content: center;
  margin-top: 3rem; flex-wrap: wrap;
}
.section-cta-row .btn {
  min-width: 220px; text-align: center;
}

/* Outline Navy Button */
.btn-outline-navy {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .section-cta-row { flex-direction: column; align-items: stretch; }
  .section-cta-row .btn { width: 100%; }
}

/* ==================== DONATION / SUPPORT PAGE ==================== */

/* Main layout: form left, impact right */
.donate-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}

/* Donation form card */
.donate-form-col { position: sticky; top: 90px; }
.donate-form-card {
  background: white; border-radius: 14px;
  border: 1px solid rgba(11,29,58,0.06);
  box-shadow: 0 4px 30px rgba(11,29,58,0.06);
  overflow: hidden;
}
.donate-form-header {
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid rgba(11,29,58,0.06);
}
.donate-form-header h2 {
  font-size: 1.5rem; color: var(--navy); margin-bottom: 0.35rem;
}
.donate-form-header p {
  font-size: 0.92rem; color: var(--text-mid);
}
.donate-embed {
  padding: 1.5rem 1.5rem 0.5rem;
  min-height: 400px;
}
.donate-tax-note {
  margin-top: 1rem; padding: 1rem 1.25rem;
  background: rgba(212,160,84,0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
}
.donate-tax-note p {
  font-size: 0.82rem; color: var(--text-light);
  line-height: 1.65; margin: 0;
}

/* Impact cards */
.donate-impact-col h2 {
  margin-bottom: 0.5rem;
}
.donate-impact-cards {
  display: flex; flex-direction: column; gap: 1rem;
}
.donate-impact-card {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: white; border-radius: 10px;
  border: 1px solid rgba(11,29,58,0.06);
  transition: all 0.3s;
}
.donate-impact-card:hover {
  border-color: rgba(212,160,84,0.3);
  box-shadow: 0 4px 20px rgba(11,29,58,0.05);
  transform: translateY(-2px);
}
.donate-impact-icon {
  font-size: 1.8rem; flex-shrink: 0; margin-top: 0.1rem;
}
.donate-impact-text h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; color: var(--gold-dark);
  margin-bottom: 0.25rem; font-weight: 700;
}
.donate-impact-text p {
  font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; margin: 0;
}

/* Quote */
.donate-quote {
  margin-top: 2rem; padding: 1.5rem;
  background: rgba(212,160,84,0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
}
.donate-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; color: var(--navy);
  font-style: italic; line-height: 1.7;
  margin-bottom: 0.5rem;
}
.donate-quote span {
  font-size: 0.82rem; color: var(--gold-dark); font-weight: 600;
}

/* Other ways to help */
.donate-ways-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.donate-way-card {
  background: white; padding: 2rem 1.75rem;
  border-radius: 10px; border: 1px solid rgba(11,29,58,0.06);
  transition: all 0.3s;
}
.donate-way-card:hover {
  border-color: rgba(212,160,84,0.3);
  box-shadow: 0 8px 30px rgba(11,29,58,0.06);
  transform: translateY(-4px);
}
.donate-way-icon { font-size: 2rem; margin-bottom: 1rem; }
.donate-way-card h3 {
  font-size: 1.15rem; color: var(--navy); margin-bottom: 0.5rem;
}
.donate-way-card p {
  font-size: 0.9rem; color: var(--text-mid); line-height: 1.7;
  margin-bottom: 1rem;
}
.donate-way-link {
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--gold-dark); text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.donate-way-link:hover { border-color: var(--gold-dark); }

/* Programs grid (navy section) */
.donate-programs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.donate-program-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 2rem 1.5rem;
  text-align: center; text-decoration: none;
  transition: all 0.3s; display: block;
}
.donate-program-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(212,160,84,0.3);
  transform: translateY(-4px);
}
.donate-program-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--gold); line-height: 1;
  margin-bottom: 0.75rem;
}
.donate-program-card h4 {
  font-size: 1rem; color: white;
  margin-bottom: 0.5rem;
  font-family: 'Source Sans 3', sans-serif; font-weight: 700;
}
.donate-program-card p {
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  line-height: 1.6; margin-bottom: 1rem;
}
.donate-program-link {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold);
}

/* Responsive */
@media (max-width: 900px) {
  .donate-layout { grid-template-columns: 1fr; gap: 3rem; }
  .donate-form-col { position: static; }
  .donate-ways-grid { grid-template-columns: 1fr; }
  .donate-programs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .donate-programs-grid { grid-template-columns: 1fr; }
}

/* ==================== CONTACT PAGE ==================== */

.contact-layout {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 4rem; align-items: start;
}

/* Contact form card */
.contact-form-card {
  background: white; border-radius: 14px;
  border: 1px solid rgba(11,29,58,0.06);
  box-shadow: 0 4px 30px rgba(11,29,58,0.06);
  padding: 2.5rem;
}
.contact-form-card h2 {
  font-size: 1.5rem; color: var(--navy); margin-bottom: 0.35rem;
}

/* Reuse llc-tool form styles */
.contact-form-card .lbl {
  display: block; font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--navy);
  margin-bottom: 0.4rem; font-weight: 700;
}
.contact-form-card .lbl .req { color: var(--coral); }
.contact-form-card .fg { margin-bottom: 1.25rem; }
.contact-form-card .row { display: grid; gap: 0.75rem; }
.contact-form-card .r2 { grid-template-columns: 1fr 1fr; }
.contact-form-card input[type="text"],
.contact-form-card input[type="email"],
.contact-form-card input[type="tel"],
.contact-form-card select,
.contact-form-card textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--warm-white);
  border: 1px solid rgba(11,29,58,0.15);
  border-radius: 6px; color: var(--text-dark);
  font-size: 0.95rem; outline: none;
  font-family: 'Source Sans 3', sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none; appearance: none;
}
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,84,0.15);
}
.contact-form-card select { background: white; cursor: pointer; }
.contact-form-card ::placeholder { color: var(--text-light); opacity: 0.6; }
.contact-form-card textarea { resize: vertical; min-height: 120px; }

/* Contact info cards */
.contact-info-col {
  display: flex; flex-direction: column; gap: 1.25rem;
}
.contact-info-card {
  background: white; border-radius: 10px;
  border: 1px solid rgba(11,29,58,0.06);
  padding: 1.5rem 1.75rem;
  transition: all 0.3s;
}
.contact-info-card:hover {
  border-color: rgba(212,160,84,0.2);
  box-shadow: 0 4px 20px rgba(11,29,58,0.04);
}
.contact-info-icon {
  font-size: 1.5rem; margin-bottom: 0.75rem;
}
.contact-info-card h3 {
  font-size: 1.05rem; color: var(--navy); margin-bottom: 0.35rem;
  font-family: 'Source Sans 3', sans-serif; font-weight: 700;
}
.contact-info-card a {
  color: var(--gold-dark); text-decoration: none;
  font-weight: 600; font-size: 1.05rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.contact-info-card a:hover { border-color: var(--gold-dark); }
.contact-info-card p {
  font-size: 0.88rem; color: var(--text-mid);
  line-height: 1.6; margin-top: 0.35rem;
}
.contact-address {
  font-size: 0.95rem !important; color: var(--text-dark) !important;
  line-height: 1.7 !important; font-weight: 500;
}

/* Quick links */
.contact-quick-links {
  background: var(--cream); border-radius: 10px;
  padding: 1.5rem 1.75rem;
}
.contact-quick-links h3 {
  font-size: 0.95rem; color: var(--navy); margin-bottom: 1rem;
  font-family: 'Source Sans 3', sans-serif; font-weight: 700;
}
.contact-quick-link {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(11,29,58,0.06);
  text-decoration: none; color: var(--text-mid);
  font-size: 0.9rem; transition: color 0.3s;
}
.contact-quick-link:last-child { border-bottom: none; }
.contact-quick-link:hover { color: var(--gold-dark); }
.contact-quick-icon {
  color: var(--gold); font-weight: 700;
  font-size: 0.85rem; flex-shrink: 0;
}

/* Social buttons */
.contact-social-links {
  display: flex; gap: 0.75rem; justify-content: center;
  flex-wrap: wrap;
}
.contact-social-btn {
  display: inline-block; padding: 0.7rem 1.75rem;
  border: 1.5px solid var(--navy);
  border-radius: 6px; color: var(--navy);
  text-decoration: none; font-size: 0.85rem;
  font-weight: 600; letter-spacing: 0.03em;
  transition: all 0.3s;
}
.contact-social-btn:hover {
  background: var(--navy); color: white;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form-card .r2 { grid-template-columns: 1fr; }
}

/* ==================== ABOUT PAGE ==================== */

/* Hero grid with stats */
.about-hero-grid {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 3.5rem; align-items: center;
  position: relative; z-index: 2;
}
.about-hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.about-hero-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 1.5rem; text-align: center;
  transition: all 0.3s;
}
.about-hero-stat:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(212,160,84,0.3);
}
.about-hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 0.4rem;
}
.about-hero-stat-label {
  font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  font-weight: 600;
}

/* Mission grid */
.about-mission-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-mission-grid p {
  font-size: 1.02rem; color: var(--text-mid);
  line-height: 1.85; margin-bottom: 1.25rem;
}
.about-mission-image .fw-placeholder-box {
  aspect-ratio: 4/3;
}

/* Three pillars */
.about-pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.about-pillar-card {
  background: white; border-radius: 12px;
  padding: 2.25rem 2rem; position: relative; overflow: hidden;
  border: 1px solid rgba(11,29,58,0.06);
  transition: all 0.3s;
}
.about-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(11,29,58,0.06);
}
.about-pillar-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.about-pillar-icon {
  font-size: 1.3rem; color: var(--gold); margin-bottom: 1rem;
}
.about-pillar-card h3 {
  font-size: 1.25rem; color: var(--navy); margin-bottom: 0.6rem;
}
.about-pillar-card > p {
  font-size: 0.92rem; color: var(--text-mid); line-height: 1.7;
  margin-bottom: 1.25rem;
}
.about-pillar-programs {
  display: flex; flex-direction: column; gap: 0.4rem;
}
.about-pillar-programs a {
  font-size: 0.82rem; font-weight: 600; color: var(--gold-dark);
  text-decoration: none; transition: color 0.3s;
}
.about-pillar-programs a:hover { color: var(--navy); }
.about-pillar-coming {
  font-size: 0.8rem; color: var(--text-light);
  font-style: italic;
}

/* Board of Directors */
.board-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.board-card {
  background: white; border-radius: 12px;
  padding: 2rem 1.75rem; text-align: center;
  border: 1px solid rgba(11,29,58,0.06);
  transition: all 0.3s;
}
.board-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(11,29,58,0.06);
}
.board-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  letter-spacing: 0.05em;
}
.board-card h3 {
  font-size: 1.1rem; color: var(--navy); margin-bottom: 0.2rem;
}
.board-role {
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold-dark);
  font-weight: 700; margin-bottom: 0.75rem;
}
.board-card p {
  font-size: 0.88rem; color: var(--text-mid); line-height: 1.65;
}

/* Annual Report */
.about-report-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.about-report-note {
  padding: 1.25rem 1.5rem;
  background: rgba(212,160,84,0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  font-size: 0.92rem; color: rgba(255,255,255,0.7); line-height: 1.65;
}
.about-report-note strong { color: var(--gold); }
.about-report-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
.about-report-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 1.75rem 1.5rem;
  text-align: center;
}
.about-report-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 0.5rem;
}
.about-report-label {
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  font-weight: 700; margin-bottom: 0.6rem;
}
.about-report-stat p {
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
  line-height: 1.55; margin: 0;
}

/* Press & Media */
.about-press-layout {
  display: grid; grid-template-columns: 380px 1fr;
  gap: 4rem; align-items: start;
}

.press-contact-card {
  background: white; border-radius: 10px;
  border: 1px solid rgba(11,29,58,0.06);
  padding: 2rem; margin-top: 0.5rem;
}
.press-contact-card h3 {
  font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem;
  font-family: 'Source Sans 3', sans-serif; font-weight: 700;
}
.press-contact-card p {
  font-size: 0.9rem; color: var(--text-mid); line-height: 1.65;
}
.press-email {
  display: inline-block; margin-top: 0.75rem;
  font-size: 1.1rem; font-weight: 700; color: var(--gold-dark);
  text-decoration: none; border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}
.press-email:hover { border-color: var(--gold-dark); }

.press-kit-card {
  background: white; border-radius: 10px;
  border: 1px solid rgba(11,29,58,0.06);
  padding: 1.75rem 2rem;
}
.press-kit-card h3 {
  font-size: 1rem; color: var(--navy); margin-bottom: 1rem;
  font-family: 'Source Sans 3', sans-serif; font-weight: 700;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(11,29,58,0.08);
}
.press-kit-item {
  display: flex; justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(11,29,58,0.04);
  font-size: 0.9rem;
}
.press-kit-item:last-child { border-bottom: none; }
.press-kit-label { color: var(--text-light); }
.press-kit-value { color: var(--text-dark); font-weight: 600; text-align: right; }
.press-kit-value a { color: var(--gold-dark); text-decoration: none; }
.press-kit-value a:hover { text-decoration: underline; }

.press-boilerplate {
  font-size: 0.9rem; color: var(--text-mid);
  line-height: 1.75; margin: 0;
}

.press-story {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(11,29,58,0.06);
}
.press-story:last-child { border-bottom: none; }
.press-story-tag {
  display: inline-block; font-size: 0.65rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-dark);
  background: rgba(212,160,84,0.1);
  padding: 0.2rem 0.6rem; border-radius: 3px;
  margin-bottom: 0.4rem;
}
.press-story p {
  font-size: 0.88rem; color: var(--text-mid);
  line-height: 1.6; margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-hero-stats { max-width: 400px; }
  .about-mission-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-pillars-grid { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: repeat(2, 1fr); }
  .about-report-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-press-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 600px) {
  .board-grid { grid-template-columns: 1fr; }
  .about-report-stats { grid-template-columns: 1fr; }
}
