@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --black: #0a0a0a;
  --white: #f5f5f0;
  --grey: #1a1a1a;
  --mid-grey: #2e2e2e;
  --light-grey: #888;
  --accent: #f5f5f0;
  --red: #e63329;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1200px;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: 0.02em; line-height: 1; }
h1 { font-size: clamp(3.5rem, 9vw, 8rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
p { font-weight: 300; line-height: 1.75; color: #b0b0a8; }
a { color: inherit; text-decoration: none; }

/* ─── CONTAINER ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ─── NAV ─── */
header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,245,240,0.06);
  z-index: 100;
}
.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--white);
}
.logo-text span { color: var(--red); }
nav ul { list-style: none; display: flex; gap: 36px; }
nav ul li a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  transition: color 0.2s;
}
nav ul li a:hover, nav ul li a.active { color: var(--white); }
.nav-cta {
  background: var(--white);
  color: var(--black) !important;
  padding: 8px 20px;
  border-radius: 2px;
  font-weight: 500 !important;
  letter-spacing: 0.1em;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover { background: var(--red) !important; color: var(--white) !important; }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white); margin: 5px 0;
  transition: all 0.3s;
}
.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: var(--black); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 40px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.06em;
  color: var(--white);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--red); }
.mobile-nav.open { display: flex; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(230,51,41,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(245,245,240,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(245,245,240,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-text { padding: 80px 60px 80px 0; }
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--red);
}
.hero h1 { margin-bottom: 28px; }
.hero h1 em { font-style: normal; color: var(--red); }
.hero-sub {
  font-size: 1.05rem;
  max-width: 420px;
  margin-bottom: 48px;
  color: #888;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--white);
  color: var(--black);
  padding: 14px 32px;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--red); color: var(--white); }
.btn-outline {
  border: 1px solid rgba(245,245,240,0.2);
  color: var(--white);
  padding: 14px 32px;
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--white); background: rgba(245,245,240,0.06); }

/* Hero ball SVG side */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
}
.hero-ball-wrap {
  position: relative;
  width: 420px;
  max-width: 100%;
}
.hero-ball-wrap svg { width: 100%; height: auto; }

/* ─── STATS BAR ─── */
.stats-bar {
  border-top: 1px solid rgba(245,245,240,0.06);
  border-bottom: 1px solid rgba(245,245,240,0.06);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 0 40px;
  border-right: 1px solid rgba(245,245,240,0.06);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--white);
  margin-bottom: 4px;
}
.stat-num span { color: var(--red); }
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-grey);
}

/* ─── SECTIONS ─── */
section { padding: 100px 0; }
.section-tag {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--red);
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(245,245,240,0.06);
  margin-top: 60px;
}
.service-card {
  background: var(--black);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card:hover { background: var(--grey); }
.service-num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(245,245,240,0.04);
  position: absolute;
  top: 20px; right: 28px;
  line-height: 1;
  transition: color 0.3s;
}
.service-card:hover .service-num { color: rgba(230,51,41,0.1); }
.service-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(245,245,240,0.12);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
}
.service-card h3 { margin-bottom: 16px; font-size: 1.6rem; }
.service-card p { font-size: 0.92rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: gap 0.2s;
}
.service-link:hover { gap: 14px; color: var(--red); }

/* ─── ABOUT SPLIT ─── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 { margin-bottom: 28px; }
.about-text p { margin-bottom: 20px; }
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.about-bg-rect {
  position: absolute;
  inset: 20px 0 0 20px;
  border: 1px solid rgba(245,245,240,0.08);
  border-radius: 2px;
}
.about-main-rect {
  position: absolute;
  inset: 0 20px 20px 0;
  background: var(--grey);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-ball-svg { width: 60%; opacity: 0.85; }
.about-tag-box {
  position: absolute;
  bottom: -10px; left: -10px;
  background: var(--red);
  padding: 20px 28px;
}
.about-tag-box p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.04em;
}

/* ─── WHY US ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(245,245,240,0.06);
  margin-top: 60px;
}
.why-item {
  background: var(--black);
  padding: 40px;
  display: flex;
  gap: 24px;
  transition: background 0.2s;
}
.why-item:hover { background: var(--grey); }
.why-check {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.why-check svg { width: 12px; height: 12px; stroke: var(--red); }
.why-item h3 { font-size: 1.2rem; margin-bottom: 8px; }
.why-item p { font-size: 0.88rem; }

/* ─── PARTNERSHIPS ─── */
.partner-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}
.partner-steps { margin-top: 60px; }
.step {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(245,245,240,0.06);
}
.step:first-child { border-top: 1px solid rgba(245,245,240,0.06); }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(245,245,240,0.1);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
}
.step h3 { font-size: 1.4rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; }

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light-grey);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--grey);
  border: 1px solid rgba(245,245,240,0.08);
  color: var(--white);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(245,245,240,0.3); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.contact-info { padding-top: 8px; }
.contact-info h3 { font-size: 1.8rem; margin-bottom: 20px; }
.contact-info p { margin-bottom: 40px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid rgba(245,245,240,0.1);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
}
.contact-detail-text { font-size: 0.9rem; color: #888; }
.contact-detail-text strong { color: var(--white); display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2px; font-weight: 400; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--white);
  padding: 80px 0;
}
.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner h2 {
  color: var(--black);
  font-size: clamp(2rem, 4vw, 3.5rem);
}
.btn-black {
  background: var(--black);
  color: var(--white);
  padding: 16px 36px;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s;
  display: inline-block;
  white-space: nowrap;
}
.btn-black:hover { background: var(--red); }

/* ─── FOOTER ─── */
footer {
  background: var(--grey);
  border-top: 1px solid rgba(245,245,240,0.06);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245,245,240,0.06);
  margin-bottom: 32px;
}
.footer-brand p { font-size: 0.88rem; margin-top: 16px; max-width: 260px; }
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--light-grey);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 0.9rem; color: #888; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: #555; }

/* ─── PAGE HEADERS ─── */
.page-header {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  border-bottom: 1px solid rgba(245,245,240,0.06);
}
.page-header .section-tag { margin-bottom: 20px; }
.page-header h1 { max-width: 800px; }
.page-header p { max-width: 560px; margin-top: 24px; font-size: 1.05rem; }

/* ─── PROGRAM CARDS ─── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(245,245,240,0.06);
  margin-top: 60px;
}
.program-card {
  background: var(--black);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.program-card.featured { background: var(--grey); }
.program-card:hover { background: var(--mid-grey); }
.program-card-tag {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.program-card h3 { font-size: 1.8rem; margin-bottom: 16px; }
.program-card p { font-size: 0.9rem; margin-bottom: 28px; }
.program-details { list-style: none; }
.program-details li {
  font-size: 0.85rem;
  color: #888;
  padding: 8px 0;
  border-bottom: 1px solid rgba(245,245,240,0.05);
  display: flex;
  gap: 10px;
}
.program-details li::before { content: '—'; color: var(--red); flex-shrink: 0; }

/* ─── ABOUT PAGE ─── */
.timeline { margin-top: 60px; }
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(245,245,240,0.06);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(245,245,240,0.15);
}
.timeline-item h3 { font-size: 1.4rem; margin-bottom: 10px; }

/* ─── PHILOSOPHY GRID ─── */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(245,245,240,0.06);
  margin-top: 60px;
}
.philosophy-item {
  background: var(--black);
  padding: 40px;
  transition: background 0.2s;
}
.philosophy-item:hover { background: var(--grey); }
.philosophy-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(245,245,240,0.06);
  margin-bottom: 16px;
  line-height: 1;
}
.philosophy-item h3 { font-size: 1.4rem; margin-bottom: 12px; }

/* ─── QUOTE BLOCK ─── */
.quote-block {
  background: var(--grey);
  padding: 80px;
  position: relative;
  overflow: hidden;
}
.quote-block::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(245,245,240,0.03);
  position: absolute;
  top: -60px; left: 40px;
  line-height: 1;
  pointer-events: none;
}
.quote-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.2;
  max-width: 800px;
  color: var(--white);
  position: relative;
}
.quote-attribution {
  margin-top: 32px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  position: relative;
}

/* ─── UTILITY ─── */
.divider { height: 1px; background: rgba(245,245,240,0.06); }
.text-red { color: var(--red); }
.mt-60 { margin-top: 60px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: calc(var(--nav-h) + 60px) 0 80px; }
  .hero-visual { display: none; }
  .hero-text { padding: 0; max-width: 600px; }
  .about-split { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .partner-intro { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 24px; }
  .stat:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2rem; }
  nav ul { display: none; }
  .hamburger { display: block; }
  .nav-cta-desktop { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner .container { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .quote-block { padding: 48px 32px; }
  .timeline-item { grid-template-columns: 80px 1fr; gap: 20px; }
}
