/* ─── Reset & Base ────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold:    #C8A96E;
  --gold-dk: #9A7A45;
  --bg:      #080808;
  --bg2:     #0F0F0F;
  --white:   #F0EBE1;
  --gray:    #6B6B6B;
  --gray-lt: #A0A0A0;
}

html { font-size: 16px; scroll-behavior: auto; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ─── Custom Cursor ───────────────────────────────── */
#cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none;
}
#cursor-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  position: absolute; transform: translate(-50%,-50%);
  transition: transform .15s ease;
}
#cursor-ring {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(200,169,110,.45);
  position: absolute; transform: translate(-50%,-50%);
  transition: width .25s ease, height .25s ease, border-color .25s ease;
}
body.hovering #cursor-ring {
  width: 56px; height: 56px;
  border-color: var(--gold);
}

/* ─── Scrollbar ───────────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dk); border-radius: 2px; }

/* ─── Loader ──────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 24px;
}
#loader .logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: .2em;
  color: var(--white);
  overflow: hidden;
}
#loader .logo-text span { display: inline-block; }
#loader-bar-wrap {
  width: 180px; height: 1px;
  background: rgba(255,255,255,.1);
}
#loader-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
}
#loader-pct {
  font-size: .75rem;
  letter-spacing: .3em;
  color: var(--gray);
}

/* ─── Nav ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s ease, padding .4s ease;
}
nav.scrolled {
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(12px);
  padding: 14px 48px;
  border-bottom: 1px solid rgba(200,169,110,.12);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; letter-spacing: .15em;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo .logo-icon {
  width: 32px; height: 32px;
  border: 1.5px solid var(--gold);
  display: grid; place-items: center;
  color: var(--gold); font-size: .8rem;
  transform: rotate(45deg);
}
.nav-logo .logo-icon span { transform: rotate(-45deg); display: block; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gray-lt); text-decoration: none;
  transition: color .3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold); font-size: .75rem;
  letter-spacing: .15em; text-transform: uppercase;
  text-decoration: none; cursor: none;
  transition: background .3s, color .3s;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }

/* Scroll progress line */
#scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 200;
  height: 2px; width: 0%; background: var(--gold);
  transition: none;
}

/* ─── Sections base ───────────────────────────────── */
section { position: relative; }

/* ─── HERO ────────────────────────────────────────── */
#hero {
  height: 100vh; min-height: 700px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1555597673-b21d5c935865?auto=format&fit=crop&w=1920&q=85');
  background-size: cover; background-position: center top;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,8,8,.88) 0%,
    rgba(8,8,8,.55) 50%,
    rgba(8,8,8,.25) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 8vw 9vh;
  max-width: 900px;
}
.hero-eyebrow {
  font-size: .72rem; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 16px;
  opacity: 0;
}
.hero-eyebrow::before {
  content: ''; width: 40px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 12vw, 11rem);
  line-height: .92; letter-spacing: .02em;
  overflow: hidden;
}
.hero-title .line { overflow: hidden; display: block; }
.hero-title .line span { display: block; }
.hero-title em {
  font-style: normal;
  -webkit-text-stroke: 1px rgba(200,169,110,.5);
  color: transparent;
}
.hero-sub {
  margin-top: 28px;
  font-size: 1.05rem; font-weight: 300; line-height: 1.7;
  color: rgba(240,235,225,.65);
  max-width: 460px;
  opacity: 0;
}
.hero-actions {
  margin-top: 40px; display: flex; align-items: center; gap: 28px;
  opacity: 0;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 36px;
  background: var(--gold); color: var(--bg);
  font-size: .8rem; letter-spacing: .15em; text-transform: uppercase;
  text-decoration: none; font-weight: 500; cursor: none;
  transition: background .3s, transform .3s;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.15);
  transform: translateX(-101%);
  transition: transform .4s ease;
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-arrow { font-size: 1rem; transition: transform .3s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-ghost {
  color: var(--white); font-size: .8rem;
  letter-spacing: .15em; text-transform: uppercase;
  text-decoration: none; cursor: none;
  display: flex; align-items: center; gap: 8px;
  transition: color .3s;
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost svg { transition: transform .3s; }
.btn-ghost:hover svg { transform: translateX(4px); }

.hero-scroll-hint {
  position: absolute; bottom: 40px; right: 8vw; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0;
}
.hero-scroll-hint span {
  font-size: .65rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gray); writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px; background: var(--gray);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: -100%;
  left: 0; width: 100%; height: 100%; background: var(--gold);
  animation: scrollLine 1.8s ease infinite;
}
@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ─── Marquee ─────────────────────────────────────── */
.marquee-section {
  background: var(--gold);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  display: inline-flex; align-items: center; gap: 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; letter-spacing: .15em;
  color: var(--bg); padding: 0 40px;
}
.marquee-track span::before {
  content: '✦'; font-size: .7rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── About / Manifesto ───────────────────────────── */
#manifesto {
  padding: 160px 8vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.manifesto-left { position: relative; }
.manifesto-img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: top;
  display: block;
}
.manifesto-img-accent {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover; object-position: center;
  border: 4px solid var(--bg);
  z-index: 2;
}
.manifesto-number {
  position: absolute; top: -20px; left: -12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 8rem; line-height: 1;
  color: rgba(200,169,110,.08);
  z-index: -1;
  user-select: none;
}
.section-label {
  font-size: .7rem; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.section-label::before {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}
.manifesto-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1; letter-spacing: .03em;
  margin-bottom: 32px;
}
.manifesto-body {
  color: rgba(240,235,225,.6);
  line-height: 1.9; font-size: .95rem;
  margin-bottom: 24px;
}
.manifesto-pillars {
  margin-top: 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pillar {
  border-top: 1px solid rgba(200,169,110,.2);
  padding-top: 20px;
}
.pillar-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: .9rem; color: var(--gold); letter-spacing: .1em;
}
.pillar-name {
  font-size: .85rem; font-weight: 500; letter-spacing: .05em;
  margin: 6px 0 8px;
}
.pillar-desc {
  font-size: .78rem; color: var(--gray-lt); line-height: 1.6;
}

/* ─── Stats ───────────────────────────────────────── */
#stats {
  background: var(--gold);
  padding: 80px 8vw;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.stat-item {
  padding: 0 40px;
  border-right: 1px solid rgba(8,8,8,.15);
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.stat-item:first-child { border-left: none; }
.stat-item:last-child  { border-right: none; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 1; color: var(--bg);
  letter-spacing: .02em;
}
.stat-num sup { font-size: .45em; vertical-align: top; margin-top: .3em; }
.stat-label {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(8,8,8,.6); margin-top: 8px;
}

/* ─── Disciplines horizontal scroll ──────────────── */
#disciplines-wrapper { overflow: hidden; }

.disciplines-sticky {
  position: sticky; top: 0;
  width: 100%; height: 100vh;
  overflow: hidden;
  display: flex; align-items: center;
}
.disc-label-fixed {
  position: absolute; top: 48px; left: 8vw; z-index: 10;
}
.disciplines-track {
  display: flex;
  height: 100%;
  will-change: transform;
}
.disc-panel {
  min-width: 100vw; height: 100%;
  position: relative;
  display: flex; align-items: flex-end;
  flex-shrink: 0;
  overflow: hidden;
}
.disc-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  will-change: transform;
  transform: scale(1.08);
  transition: transform .6s ease;
}
.disc-panel:hover .disc-bg { transform: scale(1.03); }
.disc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,8,8,.92) 0%,
    rgba(8,8,8,.4) 50%,
    rgba(8,8,8,.1) 100%
  );
}
.disc-content {
  position: relative; z-index: 2;
  padding: 0 8vw 9vh;
  max-width: 640px;
}
.disc-index {
  font-family: 'Bebas Neue', sans-serif;
  font-size: .9rem; letter-spacing: .3em;
  color: var(--gold); margin-bottom: 16px;
}
.disc-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: .9; letter-spacing: .02em;
  margin-bottom: 24px;
}
.disc-kanji {
  position: absolute; right: 8vw; top: 50%;
  transform: translateY(-50%);
  font-family: 'Noto Serif', serif;
  font-size: clamp(6rem, 16vw, 16rem);
  color: rgba(200,169,110,.06);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.disc-desc {
  font-size: 1rem; font-weight: 300; line-height: 1.75;
  color: rgba(240,235,225,.65);
  max-width: 420px; margin-bottom: 28px;
}
.disc-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 32px;
}
.disc-tag {
  padding: 6px 16px;
  border: 1px solid rgba(200,169,110,.35);
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold-dk);
}
.disc-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--white); text-decoration: none; cursor: none;
  transition: color .3s;
}
.disc-link::after { content: '→'; transition: transform .3s; }
.disc-link:hover { color: var(--gold); }
.disc-link:hover::after { transform: translateX(6px); }

.disc-progress {
  position: absolute; right: 40px; top: 50%;
  transform: translateY(-50%); z-index: 10;
  display: flex; flex-direction: column; gap: 10px;
}
.disc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  transition: background .3s, transform .3s;
  cursor: pointer;
}
.disc-dot.active { background: var(--gold); transform: scale(1.4); }

/* ─── Benefits ────────────────────────────────────── */
#benefits { padding: 160px 8vw; }
.benefits-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(200,169,110,.1);
  border: 1px solid rgba(200,169,110,.1);
}
.benefit-card {
  background: var(--bg);
  padding: 48px 36px;
  transition: background .3s;
  position: relative; overflow: hidden;
}
.benefit-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s ease;
}
.benefit-card:hover { background: rgba(200,169,110,.04); }
.benefit-card:hover::after { transform: scaleX(1); }
.benefit-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(200,169,110,.3);
  display: grid; place-items: center;
  margin-bottom: 28px;
  color: var(--gold); font-size: 1.3rem;
}
.benefit-title {
  font-size: 1.1rem; font-weight: 500; letter-spacing: .03em;
  margin-bottom: 14px;
}
.benefit-desc {
  font-size: .88rem; line-height: 1.75;
  color: rgba(240,235,225,.5);
}

/* ─── Schedule ────────────────────────────────────── */
#schedule {
  padding: 160px 8vw;
  background: var(--bg2);
}
.schedule-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 72px;
}
.schedule-note {
  font-size: .82rem; color: var(--gray-lt);
  max-width: 280px; text-align: right; line-height: 1.6;
}
.schedule-grid {
  display: grid;
  grid-template-columns: 100px repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.05);
}
.sg-header {
  background: var(--bg2);
  padding: 20px 16px;
  font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); text-align: center;
}
.sg-header:first-child { text-align: left; color: var(--gray); }
.sg-time {
  background: var(--bg2);
  padding: 22px 16px;
  font-size: .82rem; color: var(--gray);
  display: flex; align-items: center;
}
.sg-cell {
  background: var(--bg2);
  padding: 18px 14px;
  transition: background .3s;
  min-height: 72px;
  display: flex; flex-direction: column; justify-content: center;
  cursor: default;
}
.sg-cell:hover { background: rgba(200,169,110,.06); }
.sg-class {
  font-size: .8rem; font-weight: 500; margin-bottom: 4px;
  display: flex; align-items: center; gap: 8px;
}
.sg-class::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; flex-shrink: 0;
}
.sg-class.jiujitsu::before  { background: #4A90D9; }
.sg-class.judo::before      { background: #E8C547; }
.sg-class.funcional::before { background: #5DBA7A; }
.sg-class.boxe::before      { background: #E05A5A; }
.sg-class.muay::before      { background: #B05CE8; }
.sg-prof {
  font-size: .7rem; color: var(--gray); letter-spacing: .05em;
}
.sparring-banner {
  grid-column: 1 / -1;
  background: rgba(200,169,110,.08);
  border: 1px solid rgba(200,169,110,.2);
  padding: 28px 32px;
  display: flex; align-items: center; gap: 24px;
  margin-top: 1px;
}
.sparring-banner .sb-time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem; color: var(--gold); letter-spacing: .05em;
  white-space: nowrap;
}
.sparring-banner .sb-info { flex: 1; }
.sparring-banner .sb-title {
  font-size: 1rem; font-weight: 500; margin-bottom: 4px;
}
.sparring-banner .sb-desc {
  font-size: .82rem; color: var(--gray-lt); line-height: 1.5;
}
.sparring-banner .sb-day {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
  padding: 8px 20px;
  border: 1px solid rgba(200,169,110,.3);
}

/* ─── Philosophy scrollytelling ──────────────────── */
#philosophy { padding: 0; }
.philosophy-sticky {
  position: sticky; top: 0; height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.philo-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 8vw;
  background: var(--bg);
}
.philo-right { position: relative; overflow: hidden; }
.philo-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0;
  transition: opacity .6s ease;
}
.philo-img.active { opacity: 1; }
.philo-step {
  padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  opacity: .25;
  transition: opacity .5s ease;
}
.philo-step.active { opacity: 1; }
.philo-step:last-child { border-bottom: none; }
.philo-step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: .85rem; letter-spacing: .25em;
  color: var(--gold); margin-bottom: 14px;
}
.philo-step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1; margin-bottom: 16px;
}
.philo-step-body {
  font-size: .9rem; line-height: 1.75;
  color: rgba(240,235,225,.55); max-width: 400px;
}

/* ─── CTA ─────────────────────────────────────────── */
#cta {
  padding: 180px 8vw;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1517838277536-f5f99be501cd?auto=format&fit=crop&w=1920&q=80');
  background-size: cover; background-position: center;
  filter: brightness(.2);
}
.cta-content { position: relative; z-index: 2; }
.cta-eyebrow {
  font-size: .72rem; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: .9; letter-spacing: .02em;
  margin-bottom: 40px;
}
.cta-title em { font-style: normal; color: var(--gold); }
.cta-sub {
  font-size: 1.05rem; color: rgba(240,235,225,.6); line-height: 1.7;
  max-width: 520px; margin: 0 auto 52px;
}
.cta-actions { display: flex; justify-content: center; gap: 20px; }

/* ─── Footer ──────────────────────────────────────── */
footer {
  background: #050505;
  padding: 72px 8vw 40px;
  border-top: 1px solid rgba(200,169,110,.1);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-brand .fb-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; letter-spacing: .15em;
  color: var(--white); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.footer-brand p {
  font-size: .85rem; color: var(--gray); line-height: 1.7;
  max-width: 260px;
}
.footer-social {
  display: flex; gap: 12px; margin-top: 28px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(200,169,110,.2);
  display: grid; place-items: center;
  color: var(--gray-lt); text-decoration: none;
  font-size: .8rem; transition: border-color .3s, color .3s;
  cursor: none;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-size: .85rem; color: var(--gray); text-decoration: none;
  transition: color .3s; cursor: none;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.05);
  font-size: .72rem; color: var(--gray); letter-spacing: .05em;
}

/* ─── Reveal classes ──────────────────────────────── */
.reveal-up    { opacity: 0; transform: translateY(40px); }
.reveal-left  { opacity: 0; transform: translateX(-40px); }
.reveal-right { opacity: 0; transform: translateX(40px); }

/* ─── Mobile ──────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  #manifesto { grid-template-columns: 1fr; gap: 48px; padding: 80px 6vw; }
  .manifesto-img-accent { display: none; }
  #stats { grid-template-columns: 1fr 1fr; gap: 1px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(8,8,8,.15); padding: 32px 24px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: 80px repeat(5,1fr); font-size: .7rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .philosophy-sticky { grid-template-columns: 1fr; }
  .philo-right { display: none; }
  #cta { padding: 100px 6vw; }
  .hero-content { padding: 0 6vw 8vh; }
  .disc-content { padding: 0 6vw 8vh; }
}
@media (max-width: 600px) {
  #stats { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: 64px repeat(5,1fr); }
  .sg-header, .sg-time, .sg-class, .sg-prof { font-size: .62rem; }
}
