/* BodyForge premium landing page — fueltheforge.app */

:root {
  --bg-primary: #05070a;
  --bg-secondary: #0b0f14;
  --surface: #111820;
  --surface-elevated: #1c2530;
  --surface-soft: #161d26;
  --forge-blue: #00c8ff;
  --forge-blue-soft: #33d6ff;
  --logo-blue: #2282cf;
  --ember: #ff6a00;
  --ember-soft: #ff8a1f;
  --text: #f4f7fa;
  --text-secondary: #a7b0ba;
  --text-muted: #6f7a86;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.45);
  --shadow-phone: 0 32px 64px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
  --shadow-phone-soft: 0 18px 42px rgba(0, 0, 0, 0.38);
  --phone-hero: min(250px, 38vw);
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --max-w: 1280px;
  --pad-x: clamp(1rem, 3vw, 2rem);
  --phone-compact: min(180px, 30vw);
  --nav-h: 76px;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --section-gap: clamp(4.5rem, 9vw, 7rem);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark only;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.lightbox-open { overflow: hidden; }

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

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

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

:focus-visible {
  outline: 2px solid var(--forge-blue);
  outline-offset: 3px;
}

.container {
  width: min(var(--max-w), calc(100% - var(--pad-x) * 2));
  margin-inline: auto;
}

.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;
}

.wordmark-body { color: var(--logo-blue); }
.wordmark-forge { color: var(--ember); }

.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forge-blue);
}

.section-title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.section-lead {
  margin: 0;
  max-width: 42rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-secondary);
}

.section-header {
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-lead {
  margin-inline: auto;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .phone-frame { animation: none !important; }
}

/* Navigation */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(5, 7, 10, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-nav.is-scrolled {
  background: rgba(5, 7, 10, 0.92);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  object-fit: contain;
}

.brand-wordmark {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav-desktop a:hover { color: var(--text); }

.nav-stores {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.nav-drawer {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  z-index: 99;
  padding: 1.25rem var(--pad-x) 2rem;
  background: rgba(5, 7, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  overflow-y: auto;
}

.nav-drawer.is-open { display: block; }

.nav-drawer-links {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.25rem;
}

.nav-drawer-links a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.nav-drawer-stores {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 1100px) {
  .nav-toggle, .nav-drawer { display: none !important; }
  .nav-desktop, .nav-stores { display: flex; }
}

/* Store buttons */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.store-btn:hover:not(.is-coming-soon):not(.is-unavailable) {
  border-color: rgba(0, 200, 255, 0.35);
  background: rgba(0, 200, 255, 0.08);
  transform: translateY(-1px);
}

.store-btn svg { width: 22px; height: 22px; flex-shrink: 0; }

.store-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.store-btn-text small {
  font-size: 0.625rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.store-btn-text strong {
  font-size: 0.875rem;
  font-weight: 700;
}

.store-btn.is-coming-soon,
.store-btn.is-unavailable {
  opacity: 0.55;
  cursor: not-allowed;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.store-badge img {
  height: 48px;
  width: auto;
}

/* Hero — full-bleed photography, copy + compact phone below */
.hero {
  position: relative;
  padding: 0 0 clamp(3rem, 6vw, 5rem);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Forge Club photography — contained cards, full frame visible */
.hero-photo-panel,
.feature-photo-panel,
.final-cta-photo-panel {
  order: -1;
  width: 100%;
  max-width: 100%;
  height: clamp(220px, 28vw, 340px);
  margin-inline: auto;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #0c1118 0%, #06080c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo-panel img,
.feature-photo-panel img,
.final-cta-photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  filter: saturate(1.06) contrast(1.02);
}

.forge-photo--faces img {
  object-position: center top;
}

.hero-copy-col {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
  padding-top: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 900px) {
  .hero-copy-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) min(180px, 26vw);
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: start;
  }

  .hero-content {
    grid-column: 1;
  }

  .hero-copy-col > .phone-device {
    grid-column: 2;
    justify-self: end;
    align-self: center;
  }
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.hero-sub {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--text-secondary);
}

.hero-trust {
  margin: 1.25rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.hero-pill {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

.phone-device--inline {
  width: var(--phone-compact);
  margin-inline: 0;
  align-self: flex-start;
  flex-shrink: 0;
}

.phone-device--compact {
  width: var(--phone-compact);
  margin-inline: 0;
}

.phone-frame {
  position: relative;
  width: min(290px, 78vw);
  padding: 10px;
  border-radius: 36px;
  background: linear-gradient(160deg, #2a3440 0%, #0e1218 100%);
  box-shadow: var(--shadow-phone-soft);
}

@keyframes phone-float {
  0%, 100% { transform: translateY(0) rotateY(-4deg); }
  50% { transform: translateY(-10px) rotateY(-2deg); }
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 24px;
  border-radius: 0 0 14px 14px;
  background: #0a0d12;
  z-index: 2;
}

.phone-screen {
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 19.5;
  line-height: 0;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #06080c;
}

.phone-reflection {
  position: absolute;
  inset: 0;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 42%);
  pointer-events: none;
}

/* Phone device with in-frame screenshot carousel */
.phone-device {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  width: min(290px, 78vw);
  margin-inline: auto;
}

.phone-device .phone-frame {
  width: 100%;
  animation: none;
}

.phone-screen-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.phone-screen-track::-webkit-scrollbar { display: none; }

.phone-screen-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  margin: 0;
  height: 100%;
}

.phone-screen-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #06080c;
}

.phone-device-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
}

.phone-device-caption {
  flex: 1;
  margin: 0;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  min-height: 1.25rem;
}

.phone-device-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-device-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.phone-device[data-single="true"] .phone-device-controls {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .phone-screen-track { scroll-behavior: auto; }
}

/* Platform intro */
.platform {
  padding: var(--section-gap) 0;
}

.catalogue-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin: 0 auto 2.5rem;
  max-width: 36rem;
}

.catalogue-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  min-width: 9rem;
}

.catalogue-stat-value {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.catalogue-stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pillar-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
}

.pillar-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.pillar-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* Feature sections — full-bleed Forge Club banner, then copy + compact phone */
.feature-section {
  padding: 0;
}

.feature-section--alt {
  background: linear-gradient(180deg, transparent, rgba(11, 15, 20, 0.65) 30%, transparent);
}

.feature-section > .container {
  padding-block: clamp(2rem, 4vw, 3.25rem);
}

.feature-split {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-copy-col {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
  width: 100%;
}

@media (min-width: 900px) {
  .feature-copy-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) min(180px, 26vw);
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: center;
  }

  .feature-copy {
    grid-column: 1;
  }

  .feature-copy-col > .phone-device {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
  }
}

.feature-split--reverse .feature-copy-col {
  order: unset;
}

.feature-split--reverse .feature-photo-panel {
  order: -1;
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.feature-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--forge-blue);
}

.disclaimer {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Coaches */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.coach-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 420px;
}

.coach-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.coach-card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(5, 7, 10, 0.92) 35%);
}

.coach-card-body h3 {
  margin: 0.25rem 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.coach-role {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forge-blue);
}

.coach-card-body p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.coach-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.coach-tag {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

/* Feature showcase */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.showcase-group {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
}

.showcase-group h3 {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
}

.showcase-items {
  display: grid;
  gap: 0.65rem;
}

.showcase-item {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.showcase-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--forge-blue);
}

/* Why section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.why-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
}

.why-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.why-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* Gallery — single phone presentation */
.gallery-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.gallery-layout .phone-device {
  width: min(300px, 82vw);
}

.gallery-hint {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
}

.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 7, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.gallery-lightbox.is-open { display: flex; }

.lightbox-inner {
  max-width: min(420px, 92vw);
  text-align: center;
}

.lightbox-inner img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.lightbox-caption {
  margin: 1rem 0 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.25rem;
}

/* Final CTA — full-bleed photo banner */
.final-cta {
  position: relative;
  padding: 0 0 clamp(3rem, 6vw, 5rem);
}

.final-cta-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.final-cta-copy-col {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
  padding-top: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 900px) {
  .final-cta-copy-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) min(180px, 26vw);
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: start;
  }

  .final-cta-copy {
    grid-column: 1;
  }

  .final-cta-copy-col > .phone-device {
    grid-column: 2;
    justify-self: end;
    align-self: center;
  }
}

.final-cta-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.final-cta-copy p {
  margin: 0 0 1.5rem;
  color: var(--text-secondary);
  max-width: 28rem;
}

.privacy-note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 48rem;
  margin-inline: auto;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 600;
}

.faq-trigger svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--text-muted);
}

.faq-item.is-open .faq-trigger svg { transform: rotate(180deg); }

.faq-panel {
  display: none;
  padding: 0 1.25rem 1.1rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.faq-item.is-open .faq-panel { display: block; }

/* Footer */
.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 18rem;
}

.footer-col h4 {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--forge-blue); }

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.cta-logo {
  width: auto;
  height: 48px;
  margin-bottom: 1.25rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-photo-panel,
  .feature-photo-panel,
  .final-cta-photo-panel {
    height: clamp(200px, 36vw, 300px);
  }

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

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

@media (max-width: 768px) {
  .pillar-grid,
  .coaches-grid,
  .showcase-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .coach-card { min-height: 360px; }
  .coach-card img { min-height: 360px; }
}

@media (max-width: 360px) {
  .store-row { flex-direction: column; }
  .store-btn { width: 100%; justify-content: center; }
}
