/* ============================================================
   VIA Jiu Jitsu Academy — Landing Page Styles
   Colors: Black #202426 | Olive #A8AD8B | White #EFF1F1
   Font: System / Arial only — zero render-blocking
   ============================================================ */

:root {
  --black:      #202426;
  --olive:      #A8AD8B;
  --olive-dark: #8a8f70;
  --white:      #EFF1F1;
  --dark-gray:  #2C2C2C;
  --mid-gray:   #909090;
  --light-gray: #F2F2F2;
  --rule-gray:  #CCCCCC;
  --font: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

*, *::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);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--olive); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============================================================
   UTILITY
   ============================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(32,36,38,0.85);
  border-bottom: 1px solid rgba(168, 173, 139, 0.2);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: backdrop-filter 0.3s, background 0.3s;
}

nav.scrolled {
  background: rgba(32,36,38,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Nav CTA — persistent conversion at every scroll depth */
.nav-cta {
  display: inline-block;
  background: var(--olive);
  color: var(--black);
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 18px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-cta:hover {
  background: var(--olive-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

.nav-logo {
  height: 22px;
  width: auto;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 64px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(32,36,38,0.72) 0%, rgba(32,36,38,0.85) 60%, rgba(32,36,38,1) 100%),
    url('/assets/via-home-hero.jpg') 70% center / cover no-repeat;
}

/* ── Hero fade-in animation ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%       { transform: translateY(6px); opacity: 1; }
}

.hero-inner {
  max-width: 860px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Staggered fade-in for each child */
.hero-inner > * {
  opacity: 0;
  animation: heroFadeUp 0.7s ease forwards;
}
.hero-inner > *:nth-child(1) { animation-delay: 0.05s; }
.hero-inner > *:nth-child(2) { animation-delay: 0.15s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.30s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.42s; }
.hero-inner > *:nth-child(5) { animation-delay: 0.55s; }
.hero-inner > *:nth-child(6) { animation-delay: 0.65s; }
.hero-inner > *:nth-child(7) { animation-delay: 0.72s; }
.hero-inner > *:nth-child(8) { animation-delay: 0.80s; }
.hero-inner > *:nth-child(9) { animation-delay: 0.88s; }

/* Olive accent line above h1 */
.hero h1::before {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--olive);
  margin: 0 auto 20px;
}

.hero h1 {
  font-size: clamp(48px, 9vw, 82px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: clamp(11px, 2vw, 20px);
  color: rgba(239,241,241,0.65);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: -8px;
}

.hero-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: clamp(15px, 1.8vw, 20px);
  color: rgba(239,241,241,0.7);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 8px;
}

.hero-sub-logo {
  height: 1.2em;
  width: auto;
  display: inline;
  vertical-align: middle;
  margin-bottom: 0.12em;
  opacity: 0.85;
}

/* Offer Box — frosted glass */
.offer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(168,173,139,0.5);
  padding: 28px 64px;
  background: rgba(32,36,38,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(168,173,139,0.15);
}

/* ── Signup watermark ── */
.signup-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  opacity: 0.02;
  z-index: 0;
  mix-blend-mode: screen;
}

/* ── Scroll progress bar ── */
.scroll-progress {
  position: fixed;
  top: 64px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--olive);
  z-index: 200;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ── Pull quote ── */
.pull-quote {
  padding: 96px 24px;
  text-align: center;
  border-top: 1px solid rgba(168,173,139,0.15);
  border-bottom: 1px solid rgba(168,173,139,0.15);
  background:
    linear-gradient(to bottom, rgba(32,36,38,0.88) 0%, rgba(32,36,38,0.80) 50%, rgba(32,36,38,0.88) 100%),
    url('/assets/via-academy-rise.jpg') center 30% / cover no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pull-quote-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.pull-quote-mark {
  display: block;
  font-size: 96px;
  line-height: 0.6;
  color: var(--olive);
  opacity: 0.3;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.pull-quote p {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

/* Scroll indicator */
.hero::after {
  content: '';
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--olive), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
  animation-delay: 1.5s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.offer-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive);
}

.offer-was {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: rgba(239,241,241,0.45);
  text-decoration: line-through;
  line-height: 1;
}

.offer-price {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.offer-per {
  font-size: 0.45em;
  font-weight: 400;
  color: var(--white);
}

.offer-limit {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
}

.offer-opening {
  font-size: 13px;
  font-weight: 600;
  color: var(--olive);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ── Countdown Timer ── */
.offer-countdown {
  margin: 14px 0 4px;
  text-align: center;
}

.offer-countdown.expired { display: none; }

.countdown-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 8px;
}

.countdown-units {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 44px;
}

.countdown-num {
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.countdown-unit-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  margin-top: 4px;
}

.countdown-sep {
  font-size: 40px;
  font-weight: 900;
  color: var(--olive);
  opacity: 0.4;
  padding-bottom: 18px;
  line-height: 1;
}

/* Compact form variant */
.form-countdown {
  width: 100%;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(168,173,139,0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.form-countdown.expired { display: none; }

.form-countdown-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  white-space: nowrap;
}

.form-countdown-timer {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

/* ── Signup section countdown (large, above form) ── */
.signup-countdown {
  text-align: center;
  margin-bottom: 24px;
  padding: 32px 0;
  border-top: 1px solid rgba(168,173,139,0.15);
  border-bottom: 1px solid rgba(168,173,139,0.15);
}
.signup-countdown.expired { display: none; }
.signup-countdown-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 12px;
}
.signup-countdown-units {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
}
.signup-cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
}
.signup-cd-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  margin-top: 4px;
}
.signup-scarcity {
  font-size: 14px;
  font-weight: 700;
  color: var(--olive);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  padding: 16px;
  border-left: 3px solid var(--olive);
  background: rgba(168,173,139,0.06);
  text-align: left;
}

/* Hero hook — pattern interrupt line above H1 */
.hero-hook {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  opacity: 0.85;
}

/* Hero proof — authority/social proof line */
.hero-proof {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(168, 173, 139, 0.8);
}

/* Hero fear-reducer micro-copy under CTA */
.hero-no-risk {
  font-size: 13px;
  color: rgba(239, 241, 241, 0.4);
  letter-spacing: 0.06em;
}

/* Hero spots static text */
.hero-spots {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
}

/* Counter */
.counter-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.counter-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--olive);
  min-width: 48px;
  text-align: right;
}

.counter-label {
  font-size: 13px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Button pulse ── */
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(168,173,139,0); }
  50%       { box-shadow: 0 0 0 8px rgba(168,173,139,0.18); }
}

/* CTA Button */
.btn-primary {
  display: inline-block;
  background: var(--olive);
  color: var(--black);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 18px 48px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  -webkit-appearance: none;
  animation: btnPulse 3s ease-in-out infinite;
  animation-delay: 2s;
}

/* Hero CTA — fade-in delay baked into shorthand to avoid nth-child animation-delay override */
#hero-cta {
  animation: heroFadeUp 0.7s ease 0.7s forwards, btnPulse 3s ease-in-out 3s infinite;
  margin-bottom: -12px; /* tighten gap to no-risk line below */
}

.btn-primary:hover {
  background: var(--olive-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* ── Section scroll reveal ── */
@keyframes sectionReveal {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
}

.reveal.visible {
  animation: sectionReveal 0.7s ease forwards;
}

/* ============================================================
   SECTIONS — Shared
   ============================================================ */
.section {
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Section counter — ordinal label above each visible h2 */
main { counter-reset: section-counter; }

.section h2:not(.sr-only) {
  counter-increment: section-counter;
}

.section h2:not(.sr-only)::before {
  content: counter(section-counter, decimal-leading-zero);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--olive);
  opacity: 0.5;
  margin-bottom: 10px;
}

.section h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 8px;
  padding-bottom: 16px;
  position: relative;
}

.section h2::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--olive);
  margin-top: 12px;
}

.section-intro {
  font-size: 19px;
  color: var(--mid-gray);
  margin-bottom: 48px;
  line-height: 1.55;
}

/* ============================================================
   WHY VIA — 3 Cards
   ============================================================ */
.why-via {
  border-top: 1px solid rgba(168,173,139,0.15);
  background-color: var(--black);
  background-image: radial-gradient(circle, rgba(168,173,139,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}


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

.card {
  background: #1a1c1e;
  padding: 36px 28px;
  border-top: 2px solid var(--olive);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(168,173,139,0.2);
}

.card h3 {
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--olive);
  margin-bottom: 14px;
}

.card p {
  font-size: 16px;
  color: #c0c0c0;
  line-height: 1.68;
}

/* ============================================================
   MEMBERSHIP COMPARE
   ============================================================ */
.membership {
  border-top: 1px solid rgba(168,173,139,0.15);
  border-bottom: 1px solid rgba(168,173,139,0.15);
  background-color: #1a1c1e;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 18px,
    rgba(168,173,139,0.025) 18px,
    rgba(168,173,139,0.025) 19px
  );
}

.compare-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.compare-col {
  background: #202426;
}

.compare-header {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.charter .compare-header {
  background: rgba(168,173,139,0.08);
  border-top: 2px solid var(--olive);
}

.regular .compare-header {
  border-top: 2px solid var(--mid-gray);
}

.compare-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
}

.regular .compare-tag {
  color: var(--mid-gray);
}

.compare-price {
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.compare-per {
  font-size: 0.4em;
  font-weight: 400;
  color: var(--mid-gray);
}

.compare-list {
  list-style: none;
  padding: 0 32px 32px;
}

.compare-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 15px;
  color: #c0c0c0;
  padding-left: 20px;
  position: relative;
}

.compare-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--olive);
  border-radius: 50%;
}

.regular .compare-list li::before {
  background: var(--mid-gray);
}

/* ============================================================
   SOCIAL PROOF STRIP
   ============================================================ */
.proof {
  padding: 60px 24px;
  border-bottom: 1px solid rgba(168,173,139,0.15);
}

.stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 40px;
}

.stat-number {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--olive);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(168,173,139,0.2);
  flex-shrink: 0;
}

/* ============================================================
   SIGNUP FORM
   ============================================================ */
.signup-section {
  border-bottom: 1px solid rgba(168,173,139,0.15);
  background-color: var(--black);
  background-image: radial-gradient(circle, rgba(168,173,139,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}


.signup-inner {
  max-width: 580px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
}

.form-group input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(168,173,139,0.25);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  padding: 14px 16px; /* 44px min touch target */
  width: 100%;
  -webkit-appearance: none;
  transition: border-color 0.15s;
  min-height: 44px;
}

.form-group input::placeholder {
  color: rgba(239,241,241,0.25);
}

.form-group input:focus {
  outline: none;
  border-color: var(--olive);
  background: rgba(168,173,139,0.05);
}

.form-group input:invalid:not(:placeholder-shown) {
  border-color: #c0392b;
}

.form-disclaimer {
  font-size: 12px;
  color: var(--mid-gray);
  margin-bottom: 20px;
  line-height: 1.5;
}

.btn-submit {
  width: 100%;
  font-size: 15px;
  padding: 18px;
}

.form-message {
  margin-top: 12px;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 0;
}

.form-error {
  background: rgba(192, 57, 43, 0.1);
  border-left: 3px solid #c0392b;
  color: #e74c3c;
}

/* Success state */
.form-success, .form-soldout {
  text-align: center;
  padding: 48px 24px;
}

.success-icon {
  font-size: 40px;
  color: var(--olive);
  margin-bottom: 16px;
}

.form-success h3, .form-soldout h3 {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.form-success p, .form-soldout p {
  font-size: 16px;
  color: #c0c0c0;
  margin-bottom: 8px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.success-tagline {
  color: var(--olive) !important;
  font-weight: 700;
  font-size: 13px !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 16px !important;
}

/* ============================================================
   FAQ — Accordion
   ============================================================ */
.faq-section {
  border-bottom: 1px solid rgba(168,173,139,0.15);
  background-color: #1a1c1e;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 18px,
    rgba(168,173,139,0.025) 18px,
    rgba(168,173,139,0.025) 19px
  );
}

.faq-list {
  display: flex;
  flex-direction: column;
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid rgba(168,173,139,0.15);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  padding: 24px 0;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: color 0.15s;
}

.faq-q:hover { color: var(--olive); }

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(168,173,139,0.4);
  border-radius: 50%;
  position: relative;
  transition: border-color 0.15s, transform 0.3s;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--olive);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s, opacity 0.3s;
}

.faq-icon::before { width: 8px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 8px; }

.faq-q[aria-expanded="true"] .faq-icon {
  border-color: var(--olive);
  transform: rotate(45deg);
}

.faq-a {
  font-size: 16px;
  color: #c0c0c0;
  line-height: 1.72;
  margin-left: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding-bottom: 0;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 24px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  border-top: 1px solid rgba(168,173,139,0.15);
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
}


.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo {
  height: 18px;
  width: auto;
  opacity: 0.7;
}

.footer-address {
  font-style: normal;
  font-size: 13px;
  color: var(--mid-gray);
}

.footer-address a {
  color: var(--mid-gray);
}

.footer-address a:hover {
  color: var(--olive);
}

.footer-tagline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
}

.footer-copy {
  font-size: 11px;
  color: rgba(85,85,85,0.7);
}

/* ============================================================
   SKIP LINK — Keyboard / screen reader navigation
   ============================================================ */
.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  background: var(--olive);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  text-decoration: none;
  z-index: 999999;
  transition: top 0.15s;
}

.skip-link:focus {
  top: 16px;
}

/* ============================================================
   GRAIN OVERLAY — Film texture over entire page
   ============================================================ */
@keyframes grain {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  12%     { transform: translate(-2%,-3%); }
  25%     { transform: translate(3%,1%); }
  37%     { transform: translate(-1%,4%); }
  50%     { transform: translate(4%,-2%); }
  62%     { transform: translate(-3%,2%); }
  75%     { transform: translate(1%,3%); }
  87%     { transform: translate(-2%,-1%); }
}

.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.042;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: grain 0.4s steps(1) infinite;
  will-change: transform;
}

/* ============================================================
   CUSTOM CURSOR — Dual dot + trailing ring (desktop only)
   ============================================================ */
@media (hover: hover) and (pointer: fine) {
  .custom-cursor * { cursor: none !important; }
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--olive);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, opacity 0.3s ease;
  mix-blend-mode: normal;
  opacity: 0; /* hidden until first mousemove */
}

.cursor-ring {
  position: fixed;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(168,173,139,0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.2s ease, opacity 0.3s ease;
  opacity: 0; /* hidden until first mousemove */
}

.cursor-dot.hover { width: 12px; height: 12px; }
.cursor-ring.hover { width: 52px; height: 52px; border-color: rgba(168,173,139,0.8); }

/* ============================================================
   AMBIENT CURSOR GLOW
   ============================================================ */
.cursor-glow {
  position: fixed;
  width: 700px;
  height: 700px;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(168,173,139,0.055) 0%, transparent 65%);
  mix-blend-mode: screen;
  will-change: left, top;
  transition: left 1s cubic-bezier(0.16,1,0.3,1), top 1s cubic-bezier(0.16,1,0.3,1);
  border-radius: 50%;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  overflow: hidden;
  background: var(--olive);
  padding: 13px 0;
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  flex-shrink: 0;
}

.marquee-group span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-sep {
  color: rgba(32,36,38,0.35) !important;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

/* ============================================================
   HEADING CLIP-PATH REVEAL
   ============================================================ */
@keyframes headingReveal {
  from {
    clip-path: inset(0 0 100% 0);
    transform: translateY(6px);
  }
  to {
    clip-path: inset(0 0 -4px 0);
    transform: translateY(0);
  }
}

.section.reveal.visible h2:not(.sr-only) {
  animation: headingReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* ============================================================
   WHO THIS IS FOR
   ============================================================ */
.for-section {
  border-top: 1px solid rgba(168,173,139,0.15);
  background-color: #1a1c1e;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 18px,
    rgba(168,173,139,0.025) 18px,
    rgba(168,173,139,0.025) 19px
  );
}

.for-cards {
  grid-template-columns: repeat(4, 1fr);
}

/* ============================================================
   COMPARE TABLE — Savings callouts
   ============================================================ */
.charter-savings {
  font-size: 12px;
  font-weight: 700;
  color: var(--olive);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.regular-delta {
  font-size: 12px;
  color: var(--mid-gray);
  margin-top: 4px;
}

/* ============================================================
   COACHES
   ============================================================ */
.coaches-section {
  border-top: 1px solid rgba(168,173,139,0.15);
  background-color: #1a1c1e;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 18px,
    rgba(168,173,139,0.025) 18px,
    rgba(168,173,139,0.025) 19px
  );
}

.coaches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.coach-card {
  background: #202426;
  padding: 28px 24px;
  border-top: 2px solid var(--olive);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(168,173,139,0.2);
}

.coach-name {
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 6px;
}

.coach-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 14px;
}

.coach-creds {
  list-style: none;
  padding: 0;
  margin: 0;
}

.coach-creds li {
  font-size: 14px;
  color: #c0c0c0;
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
}

.coach-creds li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: var(--olive);
  border-radius: 50%;
}

/* ============================================================
   FOUNDATION
   ============================================================ */
.foundation-section {
  border-top: 1px solid rgba(168,173,139,0.15);
  border-bottom: 1px solid rgba(168,173,139,0.15);
  background: var(--black);
}

.foundation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.foundation-item {
  padding: 32px 28px;
  border-top: 2px solid var(--olive);
  border-right: 1px solid rgba(168,173,139,0.1);
}

.foundation-item:last-child {
  border-right: none;
}

.foundation-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 12px;
}

.foundation-detail {
  font-size: 15px;
  color: #c0c0c0;
  line-height: 1.65;
}

/* ============================================================
   COACH EMBLEM SLOT — 8th grid cell
   ============================================================ */
.coach-emblem-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168,173,139,0.04);
  border-top-color: rgba(168,173,139,0.3);
  position: relative;
  overflow: hidden;
  min-height: 180px;
  transition: background 0.3s;
}

.coach-emblem-slot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(168,173,139,0.07) 0%, transparent 68%);
}

.coach-emblem-img {
  width: 62%;
  max-width: 96px;
  opacity: 0.22;
  position: relative;
  z-index: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.coach-emblem-slot:hover .coach-emblem-img {
  opacity: 0.38;
  transform: scale(1.04);
}

/* ============================================================
   FOOTER DESIGN CREDIT
   ============================================================ */
.footer-design-credit {
  font-size: 10px;
  color: rgba(85,85,85,0.45);
  letter-spacing: 0.04em;
}

.footer-design-credit a {
  color: rgba(168,173,139,0.4);
  transition: color 0.2s;
  text-decoration: none;
}

.footer-design-credit a:hover {
  color: var(--olive);
  text-decoration: none;
}

/* ============================================================
   FORM SCARCITY BLOCK
   ============================================================ */
.form-scarcity {
  display: flex;
  align-items: baseline;
  gap: 8px;
  background: rgba(168,173,139,0.07);
  border-left: 3px solid var(--olive);
  padding: 14px 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.form-scarcity-number {
  font-size: 28px;
  font-weight: 900;
  color: var(--olive);
  line-height: 1;
  flex-shrink: 0;
}

.form-scarcity-text {
  font-size: 15px;
  color: var(--white);
  line-height: 1.4;
}

/* ============================================================
   BUTTON LOADING SPINNER
   ============================================================ */
@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn-submit.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.btn-submit.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(32,36,38,0.3);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
}

/* ============================================================
   PHOTO BREAK PANELS — Full-viewport atmospheric breaks
   ============================================================ */
.photo-break {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: block;
}

/* ── Panel 1: Facility interior (via-contact-bg.jpg) ── */
/* Embellishment: fine -45° diagonal mesh (screen-print texture) + top/bottom fade */
.photo-break-facility {
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 3px,
      rgba(32,36,38,0.18) 3px,
      rgba(32,36,38,0.18) 4px
    ),
    linear-gradient(
      to bottom,
      rgba(32,36,38,0.94) 0%,
      rgba(32,36,38,0.38) 22%,
      rgba(32,36,38,0.38) 78%,
      rgba(32,36,38,0.94) 100%
    ),
    url('/assets/via-contact-bg.jpg') center center / cover no-repeat;
}

/* Corner bracket — top left */
.photo-break-facility::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 44px;
  width: 56px;
  height: 56px;
  border-top: 1.5px solid rgba(168,173,139,0.5);
  border-left: 1.5px solid rgba(168,173,139,0.5);
  pointer-events: none;
  z-index: 2;
}

/* Corner bracket — bottom right */
.photo-break-facility::after {
  content: '';
  position: absolute;
  bottom: 44px;
  right: 44px;
  width: 56px;
  height: 56px;
  border-bottom: 1.5px solid rgba(168,173,139,0.5);
  border-right: 1.5px solid rgba(168,173,139,0.5);
  pointer-events: none;
  z-index: 2;
}

/* ── Panel 2: Academy building (via-academy-building.jpg) ── */
/* Embellishment: horizontal scan lines + side vignette + top/bottom fade */
.photo-break-building {
  background:
    repeating-linear-gradient(
      to bottom,
      transparent,
      transparent 3px,
      rgba(32,36,38,0.10) 3px,
      rgba(32,36,38,0.10) 4px
    ),
    linear-gradient(
      to right,
      rgba(32,36,38,0.88) 0%,
      rgba(32,36,38,0.18) 28%,
      rgba(32,36,38,0.18) 72%,
      rgba(32,36,38,0.88) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(32,36,38,0.94) 0%,
      rgba(32,36,38,0.15) 20%,
      rgba(32,36,38,0.15) 80%,
      rgba(32,36,38,0.94) 100%
    ),
    url('/assets/via-academy-building.jpg') center center / cover no-repeat;
}

/* Targeting reticle — inner ring */
.photo-break-building::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(168,173,139,0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}

/* Targeting reticle — outer ring */
.photo-break-building::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(168,173,139,0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}

/* ── Panel 3: Coaching in action (via-academy-coaching.jpg) ── */
/* Embellishment: vertical scan lines + cinematic top/bottom fade + flipped corner brackets */
.photo-break-coaching {
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 3px,
      rgba(32,36,38,0.09) 3px,
      rgba(32,36,38,0.09) 4px
    ),
    linear-gradient(
      to bottom,
      rgba(32,36,38,0.97) 0%,
      rgba(32,36,38,0.18) 28%,
      rgba(32,36,38,0.18) 72%,
      rgba(32,36,38,0.97) 100%
    ),
    url('/assets/via-academy-coaching.jpg') center 40% / cover no-repeat;
}

/* Corner bracket — top right */
.photo-break-coaching::before {
  content: '';
  position: absolute;
  top: 44px;
  right: 44px;
  width: 56px;
  height: 56px;
  border-top: 1.5px solid rgba(168,173,139,0.5);
  border-right: 1.5px solid rgba(168,173,139,0.5);
  pointer-events: none;
  z-index: 2;
}

/* Corner bracket — bottom left */
.photo-break-coaching::after {
  content: '';
  position: absolute;
  bottom: 44px;
  left: 44px;
  width: 56px;
  height: 56px;
  border-bottom: 1.5px solid rgba(168,173,139,0.5);
  border-left: 1.5px solid rgba(168,173,139,0.5);
  pointer-events: none;
  z-index: 2;
}

/* ── Panel 4: BJJ training (via-academy-bjj.jpg) ── */
.photo-break-bjj {
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 3px,
      rgba(32,36,38,0.08) 3px,
      rgba(32,36,38,0.08) 4px
    ),
    linear-gradient(
      to bottom,
      rgba(32,36,38,0.97) 0%,
      rgba(32,36,38,0.15) 25%,
      rgba(32,36,38,0.15) 75%,
      rgba(32,36,38,0.97) 100%
    ),
    url('/assets/via-academy-bjj.jpg') center 40% / cover no-repeat;
}

/* Corner bracket — top left */
.photo-break-bjj::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 44px;
  width: 56px;
  height: 56px;
  border-top: 1.5px solid rgba(168,173,139,0.5);
  border-left: 1.5px solid rgba(168,173,139,0.5);
  pointer-events: none;
  z-index: 2;
}

/* Corner bracket — bottom right */
.photo-break-bjj::after {
  content: '';
  position: absolute;
  bottom: 44px;
  right: 44px;
  width: 56px;
  height: 56px;
  border-bottom: 1.5px solid rgba(168,173,139,0.5);
  border-right: 1.5px solid rgba(168,173,139,0.5);
  pointer-events: none;
  z-index: 2;
}

/* ============================================================
   TOUR BUTTON + MODAL
   ============================================================ */
.tour-btn {
  position: absolute;
  bottom: calc(15% + 170px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: var(--white);
  color: var(--black);
  border: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 20px 52px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.15s, color 0.15s, transform 0.1s, box-shadow 0.15s;
  white-space: nowrap;
  animation: btnPulse 3s ease-in-out 2s infinite;
}
.tour-btn:hover { background: #d4d6d6; transform: translateX(-50%) translateY(-2px); }
.tour-btn-icon { font-size: 18px; }

.tour-modal {
  border: none;
  background: var(--black);
  padding: 0;
  max-width: 92vw;
  width: 960px;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  outline: 1px solid rgba(168,173,139,0.25);
  box-shadow:
    0 0 0 1px rgba(168,173,139,0.12),
    0 40px 120px rgba(0,0,0,0.85),
    0 0 80px rgba(168,173,139,0.06);
}
.tour-modal::backdrop {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
}

.tour-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(168,173,139,0.15);
  background: rgba(168,173,139,0.04);
}
.tour-modal-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
}
.tour-modal-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.5;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.tour-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  opacity: 0.5;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.tour-modal-close:hover { opacity: 1; }
.tour-close-bar {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  position: absolute;
}
.tour-close-bar:first-child { transform: rotate(45deg); }
.tour-close-bar:last-child  { transform: rotate(-45deg); }

.tour-modal-body {
  position: relative;
  background: #000;
  line-height: 0;
}
.tour-video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 75vh;
}

.tour-modal-footer {
  padding: 14px 28px;
  border-top: 1px solid rgba(168,173,139,0.15);
  background: rgba(168,173,139,0.04);
  text-align: center;
}
.tour-modal-footer-text {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  opacity: 0.7;
}

/* ============================================================
   PREFERS-REDUCED-MOTION — Accessibility compliance
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal, .reveal.visible {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .section.reveal.visible h2:not(.sr-only) {
    clip-path: none !important;
    animation: none !important;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .hero-sub {
    white-space: normal;
  }

  .photo-break {
    min-height: 60vh;
  }

  .tour-btn {
    bottom: 140px;
    padding: 16px 36px;
    font-size: 13px;
  }

  .photo-break-facility::before {
    top: 28px;
    left: 28px;
    width: 36px;
    height: 36px;
  }

  .photo-break-facility::after {
    bottom: 28px;
    right: 28px;
    width: 36px;
    height: 36px;
  }

  .photo-break-building {
    background-position-x: left -175px;
  }

  .tour-modal-title { display: none; }

  .photo-break-building::before {
    width: 140px;
    height: 140px;
  }

  .photo-break-building::after {
    width: 260px;
    height: 260px;
  }

  .photo-break-coaching::before {
    top: 28px;
    right: 28px;
    width: 36px;
    height: 36px;
  }

  .photo-break-coaching::after {
    bottom: 28px;
    left: 28px;
    width: 36px;
    height: 36px;
  }

  .photo-break-bjj::before {
    top: 28px;
    left: 28px;
    width: 36px;
    height: 36px;
  }

  .photo-break-bjj::after {
    bottom: 28px;
    right: 28px;
    width: 36px;
    height: 36px;
  }

  .pull-quote {
    min-height: 60vh;
    background-attachment: scroll; /* parallax off on mobile — avoids iOS glitch */
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .for-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .coaches-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .foundation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .foundation-item {
    border-right: none;
    border-bottom: 1px solid rgba(168,173,139,0.1);
  }

  .compare-wrap {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    flex-direction: column;
    gap: 0;
  }

  .stat-divider {
    width: 48px;
    height: 1px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .offer-box {
    padding: 20px 24px;
    width: 100%;
  }

  .compare-header, .compare-list {
    padding-left: 24px;
    padding-right: 24px;
  }

  .stat {
    padding: 20px 24px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 88px 20px 48px;
  }

  .section {
    padding: 56px 20px;
  }

  .card {
    padding: 28px 20px;
  }

  .for-cards {
    grid-template-columns: 1fr;
  }

  .coaches-grid {
    grid-template-columns: 1fr;
  }

  .foundation-grid {
    grid-template-columns: 1fr;
  }

  .coach-card {
    padding: 24px 20px;
  }

  .foundation-item {
    padding: 24px 20px;
  }
}
