/* ============================================
   Sullivan County Ballaz — Global Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&display=swap');

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

:root {
  --bg:        #0a0a0a;
  --accent:    #6B1A2A;
  --white:     #FFFFFF;
  --red:       #8B0000;
  --gray:      #1a1a1a;
  --gray-mid:  #2a2a2a;
  --gray-text: #aaaaaa;
  --nav-h:     72px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.8rem, 8vw, 5.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

p { color: var(--gray-text); }

.text-white { color: var(--white) !important; }
.text-accent { color: var(--accent); }

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section--dark   { background: var(--bg); }
.section--gray   { background: var(--gray); }
.section--border { border-top: 1px solid var(--gray-mid); }

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 48px;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 20px 0 40px;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 2px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}

.btn--primary:hover {
  background: var(--red);
  border-color: var(--red);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--bg);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 1rem;
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-mid);
  height: var(--nav-h);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav__logo img {
  height: 50px;
  width: 50px;
  object-fit: contain;
  border-radius: 50%;
}

.nav__logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  line-height: 1.1;
  color: var(--white);
}

.nav__logo-text span {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__links a.active {
  color: var(--accent);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.99);
  border-bottom: 2px solid var(--accent);
  padding: 24px 20px 32px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav__mobile a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: var(--gray-text);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-mid);
  transition: color 0.2s;
}

.nav__mobile a:last-child { border-bottom: none; }

.nav__mobile a:hover,
.nav__mobile a.active {
  color: var(--accent);
}

/* ---------- Hero ---------- */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(107,26,42,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero__logo {
  width: clamp(160px, 35vw, 280px);
  height: clamp(160px, 35vw, 280px);
  object-fit: contain;
  margin: 0 auto 32px;
  filter: drop-shadow(0 0 40px rgba(107,26,42,0.4));
}

.hero__eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero__title {
  margin-bottom: 20px;
  color: var(--white);
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--gray-text);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--gray);
  border: 1px solid var(--gray-mid);
  border-top: 3px solid var(--accent);
  padding: 32px 28px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-top-color: var(--red);
  transform: translateY(-3px);
}

.card__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  line-height: 1;
}

.card__label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.card__title {
  margin-bottom: 12px;
  color: var(--white);
}

.card__body {
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ---------- Mission Strip ---------- */
.mission {
  padding: 72px 0;
  background: var(--accent);
  position: relative;
}

.mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.35) 0%, transparent 60%);
  pointer-events: none;
}

.mission__inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.mission__label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}

.mission blockquote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  letter-spacing: 0.03em;
  line-height: 1.2;
  color: var(--white);
}

/* ---------- Stat Bar ---------- */
.stat-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 160px;
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid var(--gray-mid);
}

.stat:last-child { border-right: none; }

.stat__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-text);
}

/* ---------- Callout Box ---------- */
.callout {
  background: var(--gray);
  border: 2px solid var(--accent);
  border-radius: 2px;
  padding: 36px;
  text-align: center;
}

.callout__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.callout__note {
  font-size: 0.9rem;
  color: var(--gray-text);
}

/* ---------- Info List ---------- */
.info-list {
  display: grid;
  gap: 16px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--gray);
  border-left: 3px solid var(--accent);
}

.info-item__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-item__body h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  font-size: 1rem;
}

.info-item__body p {
  font-size: 0.9rem;
}

/* ---------- Schedule Cards ---------- */
.schedule-card {
  background: var(--gray);
  border: 1px solid var(--gray-mid);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: border-color 0.2s;
}

.schedule-card:hover {
  border-color: var(--accent);
}

.schedule-card__date {
  flex-shrink: 0;
  text-align: center;
  background: var(--accent);
  width: 72px;
  height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.schedule-card__date .month {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.schedule-card__date .day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  color: var(--white);
  line-height: 1;
}

.schedule-card__info h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.schedule-card__info p {
  font-size: 0.875rem;
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gray-mid);
  color: var(--gray-text);
  margin-top: 8px;
}

.badge--tbd {
  background: rgba(107,26,42,0.2);
  color: var(--accent);
  border: 1px solid rgba(107,26,42,0.4);
}

/* ---------- Form ---------- */
.interest-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  flex-wrap: wrap;
}

.interest-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  background: var(--gray);
  border: 1px solid var(--gray-mid);
  border-radius: 2px;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.interest-form input[type="email"]::placeholder { color: var(--gray-text); }

.interest-form input[type="email"]:focus {
  border-color: var(--accent);
}

/* ---------- Coach Spotlight ---------- */
.coach-card {
  background: var(--gray);
  border: 1px solid var(--gray-mid);
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: start;
  border-top: 3px solid var(--accent);
}

.coach-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  flex-shrink: 0;
  border: 3px solid var(--accent);
}

.coach-card__role {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.coach-card h3 {
  color: var(--white);
  margin-bottom: 16px;
}

/* ---------- Pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-mid);
}

.pillar {
  background: var(--gray);
  padding: 48px 32px;
  text-align: center;
}

.pillar__icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.pillar h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.pillar p {
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ---------- Alert / Notice ---------- */
.notice {
  background: rgba(107,26,42,0.12);
  border: 1px solid rgba(107,26,42,0.4);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  border-radius: 2px;
}

.notice p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

/* ---------- Page Hero (sub-pages) ---------- */
.page-hero {
  padding: 80px 20px 72px;
  background: var(--bg);
  border-bottom: 1px solid var(--gray-mid);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(107,26,42,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  max-width: 800px;
}

.page-hero h1 { color: var(--white); }

/* ---------- Two-col ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.two-col--wide {
  grid-template-columns: 1.2fr 0.8fr;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--gray);
  border-top: 1px solid var(--gray-mid);
  padding: 56px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 16px;
}

.footer__brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 4px;
}

.footer__brand-tag {
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer__col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--gray-text);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--accent); }

.footer__contact p {
  font-size: 0.9rem;
  color: var(--gray-text);
  margin-bottom: 8px;
}

.footer__contact a {
  color: var(--accent);
  transition: color 0.2s;
}

.footer__contact a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid var(--gray-mid);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--gray-text);
}

.footer__credit {
  font-size: 0.8rem;
  color: var(--gray-text);
}

.footer__credit a {
  color: var(--accent);
  font-weight: 600;
  transition: color 0.2s;
}

.footer__credit a:hover { color: var(--white); }

/* ============================================
   ANIMATIONS
   ============================================ */

/* ── Hero entrance ── */
@keyframes heroLogoIn {
  from { opacity: 0; transform: scale(0.82); filter: blur(4px); }
  to   { opacity: 1; transform: scale(1);    filter: blur(0); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroCTAIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-ready.hero__logo    { animation: heroLogoIn 0.9s cubic-bezier(0.34, 1.3, 0.64, 1) 0.1s both; }
.hero-ready.hero__eyebrow { animation: heroFadeUp 0.6s ease 0.55s both; }
.hero-ready.hero__title   { animation: heroFadeUp 0.7s ease 0.75s both; }
.hero-ready.hero__sub     { animation: heroFadeUp 0.6s ease 1.0s both; }
.hero-ready.hero__cta     { animation: heroCTAIn  0.6s ease 1.2s both; }

/* ── Scroll reveal states ── */
.will-reveal[data-reveal="fadeUp"] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.will-reveal[data-reveal="fadeLeft"] {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.will-reveal[data-reveal="scaleIn"] {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease,
              transform 0.7s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.revealed[data-reveal] {
  opacity: 1 !important;
  transform: none !important;
}

/* ── Nav scrolled shadow ── */
.nav--scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

/* ── Accent glow pulse on hero logo ── */
@keyframes glowPulse {
  0%, 100% { filter: drop-shadow(0 0 24px rgba(107,26,42,0.35)); }
  50%       { filter: drop-shadow(0 0 48px rgba(107,26,42,0.65)); }
}
.hero__logo {
  animation: heroLogoIn 0.9s cubic-bezier(0.34, 1.3, 0.64, 1) 0.1s both,
             glowPulse 4s ease-in-out 1.2s infinite;
}
/* Override when hero-ready is set (re-declare to keep glow) */
.hero-ready.hero__logo {
  animation: heroLogoIn 0.9s cubic-bezier(0.34, 1.3, 0.64, 1) 0.1s both,
             glowPulse 4s ease-in-out 1.2s infinite;
}

/* ── Card hover lift ── */
.card {
  will-change: transform;
}

/* ── Button shimmer on hover ── */
.btn--primary {
  position: relative;
  overflow: hidden;
}
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.5s ease;
}
.btn--primary:hover::after {
  left: 150%;
}

/* ── Divider grow animation ── */
@keyframes dividerGrow {
  from { width: 0; opacity: 0; }
  to   { width: 48px; opacity: 1; }
}
.revealed .divider,
.divider.revealed {
  animation: dividerGrow 0.5s ease forwards;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* ---------- Tablet: 768px ---------- */
@media (max-width: 900px) {
  .card-grid--3 {
    grid-template-columns: 1fr 1fr;
  }

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

  .two-col,
  .two-col--wide {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .coach-card {
    grid-template-columns: 1fr;
  }

  .coach-avatar {
    width: 90px;
    height: 90px;
    font-size: 2.4rem;
  }

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

  .stat-bar {
    flex-wrap: wrap;
  }

  .stat {
    min-width: 50%;
    border-right: none;
    border-bottom: 1px solid var(--gray-mid);
  }

  .stat:nth-child(odd) {
    border-right: 1px solid var(--gray-mid);
  }
}

/* ---------- Mobile: 375px ---------- */
@media (max-width: 640px) {
  :root { --nav-h: 64px; }

  .section { padding: 56px 0; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }

  .card-grid--3 {
    grid-template-columns: 1fr;
  }

  .hero__logo {
    width: clamp(140px, 55vw, 200px);
    height: clamp(140px, 55vw, 200px);
  }

  .hero { padding: 40px 20px 56px; }

  .callout { padding: 28px 20px; }

  .schedule-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .schedule-card__date {
    width: 60px;
    height: 60px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .interest-form {
    flex-direction: column;
  }

  .interest-form input[type="email"] { min-width: 0; }

  .stat { min-width: 100%; border-right: none; }
  .stat:nth-child(odd) { border-right: none; }

  .mission blockquote { font-size: 1.5rem; }

  .page-hero { padding: 56px 20px 48px; }
}

/* ---------- iPad specific (768px) ---------- */
@media (min-width: 641px) and (max-width: 900px) {
  .hero__logo {
    width: 220px;
    height: 220px;
  }

  .hero__title { font-size: 4rem; }
}
