/* ===== DESIGN TOKENS ===== */
:root {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* Fonts */
  --font-display: 'Cabinet Grotesk', 'Helvetica Neue', sans-serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;
}

/* ===== COLOR PALETTE: Military Discipline + Warm Fitness ===== */
:root, [data-theme="light"] {
  --color-bg:             #f5f4f0;
  --color-surface:        #ffffff;
  --color-surface-2:      #fafaf8;
  --color-surface-offset: #eae8e3;
  --color-divider:        #d6d4cf;
  --color-border:         #c8c5be;

  --color-text:           #1a1a18;
  --color-text-muted:     #5c5b57;
  --color-text-faint:     #9a9893;
  --color-text-inverse:   #f5f4f0;

  /* Primary: Dark navy blue */
  --color-primary:        #011520;
  --color-primary-hover:  #021e2e;
  --color-primary-active: #00101a;

  /* Accent: Semper Fi red / USMC red */
  --color-accent:         #c41e2a;
  --color-accent-hover:   #a8181f;
  --color-accent-active:  #8f1319;

  /* Dark section backgrounds */
  --color-dark-bg:        #011520;
  --color-dark-surface:   #021e2e;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
}

[data-theme="dark"] {
  --color-bg:             #111310;
  --color-surface:        #1a1c18;
  --color-surface-2:      #1f211d;
  --color-surface-offset: #161814;
  --color-divider:        #2a2c28;
  --color-border:         #353732;

  --color-text:           #d4d3cf;
  --color-text-muted:     #8a897f;
  --color-text-faint:     #5a5955;
  --color-text-inverse:   #1a1a18;

  --color-primary:        #2a6496;
  --color-primary-hover:  #1d5280;
  --color-primary-active: #15436b;

  --color-accent:         #e0333f;
  --color-accent-hover:   #c41e2a;
  --color-accent-active:  #a8181f;

  --color-dark-bg:        #010e17;
  --color-dark-surface:   #011520;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.3);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.4);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:             #111310;
    --color-surface:        #1a1c18;
    --color-surface-2:      #1f211d;
    --color-surface-offset: #161814;
    --color-divider:        #2a2c28;
    --color-border:         #353732;
    --color-text:           #d4d3cf;
    --color-text-muted:     #8a897f;
    --color-text-faint:     #5a5955;
    --color-text-inverse:   #1a1a18;
    --color-primary:        #2a6496;
    --color-primary-hover:  #1d5280;
    --color-primary-active: #15436b;
    --color-accent:         #e0333f;
    --color-accent-hover:   #c41e2a;
    --color-accent-active:  #a8181f;
    --color-dark-bg:        #010e17;
    --color-dark-surface:   #011520;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.3);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.4);
  }
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.container--narrow {
  max-width: var(--content-default);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: var(--header-top, var(--banner-offset, 0px));
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-4) 0;
  background: linear-gradient(to bottom, rgba(1,21,32,0.6) 0%, transparent 100%);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header--scrolled {
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.header--scrolled .header__logo {
  color: var(--color-text);
}

.header--scrolled .header__logo-text span {
  color: var(--color-text-muted);
}

.header--scrolled .header__nav-links a {
  color: var(--color-text-muted);
}

.header--scrolled .header__nav-links a:hover {
  color: var(--color-text);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: #f5f4f0;
}

.header__logo-icon {
  height: 64px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 640px) {
  .header__logo-icon {
    height: 48px;
  }
}

.header__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}

.header__logo-text span {
  display: block;
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(245, 244, 240, 0.7);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.header__nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}

.header__nav-links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(245, 244, 240, 0.7);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.header__nav-links a:hover {
  color: #f5f4f0;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.theme-toggle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: rgba(245, 244, 240, 0.7);
}

.theme-toggle:hover {
  color: #f5f4f0;
  background: rgba(255,255,255,0.1);
}

.header--scrolled .theme-toggle {
  color: var(--color-text-muted);
}

.header--scrolled .theme-toggle:hover {
  color: var(--color-text);
  background: var(--color-surface-offset);
}

/* Mobile nav */
.mobile-menu-btn {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--color-text);
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: flex; }
  .header__nav { display: none; }
  .header__nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    padding: var(--space-6);
    border-bottom: 1px solid var(--color-divider);
    box-shadow: var(--shadow-md);
  }
  .header__nav.open .header__nav-links {
    flex-direction: column;
    gap: var(--space-4);
  }
  .header__nav.open .header__nav-links a {
    font-size: var(--text-base);
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: all var(--transition-interactive);
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
}

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

.btn--accent {
  background: var(--color-accent);
  color: #fff;
}

.btn--accent:hover {
  background: var(--color-accent-hover);
}

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

.btn--outline:hover {
  border-color: var(--color-text);
}

.btn--lg {
  font-size: var(--text-sm);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-md);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100dvh - var(--banner-offset, 0px));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 21, 32, 0.92) 0%, rgba(1, 21, 32, 0.75) 45%, rgba(1, 21, 32, 0.35) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.6) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--space-24);
  padding-bottom: var(--space-16);
  max-width: 680px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-6);
}

.hero__badge::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--color-accent);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #f5f4f0;
  line-height: 1.02;
  margin-bottom: var(--space-6);
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.hero__title-accent {
  color: var(--color-accent);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: rgba(245, 244, 240, 0.75);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Hero stat strip */
.hero__stats {
  list-style: none;
  margin: var(--space-10) 0 0;
  padding: var(--space-6) 0 0;
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
  border-top: 1px solid rgba(245, 244, 240, 0.18);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: 0.02em;
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.7);
}

@media (max-width: 640px) {
  .hero__stats {
    gap: var(--space-5);
  }
  .hero__stat-num {
    font-size: 1.25rem;
  }
}

/* ===== OFFER BANNER ===== */
.offer-banner {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  width: 100%;
  padding: 10px var(--space-6);
  background: linear-gradient(90deg, #c41e3a 0%, #a01828 100%);
  color: #f5f4f0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
  transition: filter 0.2s ease;
  flex-wrap: wrap;
}

.offer-banner:hover {
  filter: brightness(1.1);
}

.offer-banner__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f5f4f0;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(245, 244, 240, 0.7);
  animation: offerPulse 2s infinite;
}

@keyframes offerPulse {
  0%   { box-shadow: 0 0 0 0 rgba(245, 244, 240, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(245, 244, 240, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 244, 240, 0); }
}

.offer-banner__text strong {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.offer-banner__cta {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .offer-banner {
    font-size: 0.78rem;
    padding: 8px var(--space-4);
    gap: var(--space-2);
  }
}

.hero__scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(245, 244, 240, 0.5);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== SECTION FOUNDATIONS ===== */
.section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

.section__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.section__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* Universal centering for any centered section header */
[class*="__header"] {
  text-align: center;
}

[class*="__header"] .section__eyebrow,
[class*="__header"] .section__title,
[class*="__header"] .section__desc {
  margin-left: auto;
  margin-right: auto;
}

/* ===== MISSION SECTION ===== */
.mission {
  background: var(--color-surface);
}

.mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.mission__text { max-width: 520px; }

.mission__quote {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  font-style: italic;
  color: var(--color-text-muted);
  border-left: 3px solid var(--color-accent);
  padding-left: var(--space-6);
  margin-top: var(--space-8);
}

.mission__quote cite {
  display: block;
  font-style: normal;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-top: var(--space-2);
}

.mission__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.mission__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .mission__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .mission__image { order: -1; }
}

/* ===== SERVICES ===== */
.services {
  background: var(--color-bg);
}

.services__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.services__header .section__title { margin-inline: auto; }
.services__header .section__desc { margin-inline: auto; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-divider);
  transition: box-shadow var(--transition-interactive), transform var(--transition-interactive);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.service-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card__image img {
  transform: scale(1.04);
}

.service-card__body {
  padding: var(--space-6);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.service-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.service-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.service-card__meta span {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

/* ===== PRICING TABLE ===== */
.pricing {
  background: var(--color-dark-bg);
  color: #f5f4f0;
}

.pricing .section__eyebrow { color: var(--color-accent); }
.pricing .section__title { color: #f5f4f0; }
.pricing .section__desc { color: rgba(245, 244, 240, 0.65); }

.pricing__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.pricing__categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  max-width: var(--content-wide);
  margin-inline: auto;
}

.pricing-group {
  background: var(--color-dark-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid rgba(255,255,255,0.08);
}

.pricing-group__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--color-accent);
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.pricing-item__name {
  font-size: var(--text-sm);
  color: rgba(245, 244, 240, 0.9);
}

.pricing-item__duration {
  font-size: var(--text-xs);
  color: rgba(245, 244, 240, 0.45);
  margin-left: var(--space-1);
}

.pricing-item__price {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: #f5f4f0;
  white-space: nowrap;
}

.pricing-item__price--free {
  color: var(--color-accent);
}

/* ===== BOOKING CTA ===== */
.booking-cta {
  background: var(--color-primary);
  text-align: center;
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
}

.booking-cta__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-3);
}

.booking-cta__desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-8);
  max-width: 500px;
  margin-inline: auto;
}

.booking-cta .btn--accent {
  font-size: var(--text-sm);
  padding: var(--space-4) var(--space-10);
}

/* ===== TEAM ===== */
.team {
  background: var(--color-surface);
}

.team__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
  max-width: 860px;
  margin-inline: auto;
}

/* Horizontal team rows — wide layout, less scrolling */
.team__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  max-width: 1100px;
  margin-inline: auto;
}

.team-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--space-6);
  align-items: center;
  padding: var(--space-6);
  background: var(--color-bg);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  text-align: left;
}

.team-row__avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.team-row__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-row__name {
  font-size: 1.5rem;
  margin: 0 0 4px;
}

.team-row__role {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin: 0 0 var(--space-3);
  font-weight: 500;
}

.team-row__bio {
  margin: 0;
  line-height: 1.65;
  color: var(--color-text);
}

@media (max-width: 640px) {
  .team-row {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-5);
  }
  .team-row__avatar {
    width: 140px;
    height: 140px;
    margin: 0 auto;
  }
}

.team-card {
  text-align: center;
  padding: var(--space-6);
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-divider);
}

.team-card__avatar {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin: 0 auto var(--space-4);
  overflow: hidden;
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.team-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.team-card__role {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
}

.team-card__bio {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  text-align: left;
}

.team-card__bio em {
  font-style: italic;
  color: var(--color-accent);
}

/* ===== FOUNDER ===== */
.founder {
  background: var(--color-bg);
}

.founder__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-12);
  align-items: center;
}

.founder__image-wrap {
  position: relative;
}

.founder__image-wrap::after {
  content: '';
  position: absolute;
  inset: var(--space-4);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  z-index: 0;
  transform: translate(var(--space-3), var(--space-3));
}

.founder__image {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-surface-offset);
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder__image-placeholder {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-primary);
  opacity: 0.15;
}

.founder__content { max-width: 520px; }

.founder__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.founder__title-line {
  font-size: var(--text-xs);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: var(--space-6);
}

.founder__bio {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.founder__values {
  list-style: none;
  margin-top: var(--space-6);
  display: grid;
  gap: var(--space-3);
}

.founder__values li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text);
  font-weight: 500;
}

.founder__values li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--color-accent);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .founder__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .founder__image-wrap { max-width: 320px; margin-inline: auto; }
}

/* ===== INFO BAR (Hours, Location, Contact) ===== */
.info-bar {
  background: var(--color-dark-bg);
  color: #f5f4f0;
}

.info-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.info-block__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--color-accent);
}

.info-block__title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-3);
  color: #f5f4f0;
}

.info-block__text {
  font-size: var(--text-sm);
  color: rgba(245, 244, 240, 0.7);
  line-height: 1.7;
}

.info-block__text a {
  color: var(--color-accent);
  text-decoration: none;
}

.info-block__text a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .info-bar__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-dark-bg);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-block: var(--space-8);
  text-align: center;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copy {
  font-size: var(--text-xs);
  color: rgba(245, 244, 240, 0.4);
}

.footer__socials {
  display: flex;
  gap: var(--space-4);
  list-style: none;
}

.footer__socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: rgba(245, 244, 240, 0.5);
  background: rgba(255,255,255,0.06);
  text-decoration: none;
  font-size: var(--text-xs);
}

.footer__socials a:hover {
  color: #f5f4f0;
  background: rgba(255,255,255,0.12);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== REVIEWS ===== */
.reviews {
  background: var(--color-bg);
  overflow: hidden;
}

.reviews__header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.reviews__header .section__title { margin-inline: auto; }

.reviews__track {
  display: flex;
  gap: var(--space-5);
  overflow-x: auto;
  padding-bottom: var(--space-4);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  /* Hide scrollbar visually but keep functionality */
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
}

.reviews__track::-webkit-scrollbar {
  height: 4px;
}

.reviews__track::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: var(--radius-full);
}

.review-card {
  flex: 0 0 320px;
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-interactive), transform var(--transition-interactive);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.review-card__stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.review-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}

.review-card__author {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  margin-top: auto;
  margin-bottom: 0;
}

.review-card__source {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.04em;
}

/* ===== EVENTS GALLERY ===== */
.events {
  background: var(--color-surface);
}

.events__header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.events__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

@media (max-width: 768px) {
  .events__grid {
    grid-template-columns: 1fr;
  }
}

.events__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.events__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.events__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.events__item:hover .events__image img {
  transform: scale(1.04);
}

.events__caption {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-align: center;
  font-weight: 500;
}

/* ===== VAGARO EMBED ===== */
.vagaro-embed {
  width: 100%;
  min-height: 600px;
  border: none;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}

/* ===== WHAT TO EXPECT ===== */
.expect {
  background: var(--color-surface);
}

.expect__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.expect__header .section__title { margin-inline: auto; }
.expect__header .section__desc { margin-inline: auto; }

.expect__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.expect-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-divider);
  position: relative;
}

.expect-step__number {
  position: absolute;
  top: calc(-1 * var(--space-5));
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px var(--color-surface);
}

.expect-step__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-4);
  margin-bottom: var(--space-5);
}

.expect-step__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.expect-step__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .expect__steps {
    grid-template-columns: 1fr;
    gap: var(--space-12);
    max-width: 480px;
    margin-inline: auto;
  }
}

/* ===== BENEFITS BREAKDOWN ===== */
.benefits {
  background: var(--color-bg);
}

.benefits__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.benefits__header .section__title { margin-inline: auto; }

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.benefit-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: box-shadow var(--transition-interactive), transform var(--transition-interactive);
}

.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.benefit-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(196, 30, 42, 0.1);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

[data-theme="dark"] .benefit-card__icon {
  background: rgba(224, 51, 63, 0.15);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .benefit-card__icon {
    background: rgba(224, 51, 63, 0.15);
  }
}

.benefit-card__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.benefit-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .benefits__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FAQ ACCORDION ===== */
.faq {
  background: var(--color-surface);
}

.faq__header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.faq__header .section__title { margin-inline: auto; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--color-divider);
}

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

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  transition: background var(--transition-interactive), color var(--transition-interactive);
}

.faq-item__trigger:hover {
  background: var(--color-surface-offset);
}

.faq-item--open .faq-item__trigger {
  color: var(--color-accent);
  background: var(--color-surface-2);
}

.faq-item__icon {
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform var(--transition-interactive);
}

.faq-item--open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item__body p {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ===== GIFT CARDS & REFERRALS ===== */
.gifts {
  background: var(--color-bg);
}

.gifts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-divider);
  box-shadow: var(--shadow-md);
}

.gifts__half {
  padding: clamp(var(--space-8), 5vw, var(--space-12));
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.gifts__half--left {
  background: var(--color-primary);
  color: #f5f4f0;
}

.gifts__half--right {
  background: var(--color-surface);
}

.gifts__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2);
}

.gifts__half--left .gifts__icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.gifts__half--right .gifts__icon {
  background: rgba(196, 30, 42, 0.1);
  color: var(--color-accent);
}

.gifts__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: 1.2;
}

.gifts__half--left .gifts__title {
  color: #f5f4f0;
}

.gifts__half--right .gifts__title {
  color: var(--color-text);
}

.gifts__desc {
  font-size: var(--text-sm);
  line-height: 1.65;
  flex: 1;
}

.gifts__half--left .gifts__desc {
  color: rgba(245, 244, 240, 0.75);
}

.gifts__half--right .gifts__desc {
  color: var(--color-text-muted);
}

.gifts__half--right .btn--outline {
  align-self: flex-start;
}

@media (max-width: 640px) {
  .gifts__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== EMAIL SIGNUP BAR ===== */
.signup-bar {
  background: var(--color-dark-surface);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: var(--space-8);
}

.signup-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.signup-bar__heading {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: #f5f4f0;
  margin-bottom: var(--space-1);
}

.signup-bar__sub {
  font-size: var(--text-sm);
  color: rgba(245, 244, 240, 0.6);
  max-width: 480px;
}

@media (max-width: 640px) {
  .signup-bar__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== VALD + MOVE HEALTH SPLIT ===== */
.vald-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  max-width: 1200px;
  margin-inline: auto;
}

.vald-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.vald-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 30, 58, 0.4);
}

.vald-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.vald-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vald-card__image--contain {
  background: #f5f4f0;
}

.vald-card__image--contain img {
  object-fit: contain;
  padding: var(--space-4);
}

.vald-card__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin: 0 0 var(--space-3);
}

.vald-card__brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.vald-card__brand .vald-card__title {
  margin: 0;
}

.vald-card__body {
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vald-card__eyebrow {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 var(--space-2);
}

.vald-card__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: #f5f4f0;
  margin: 0 0 var(--space-3);
  line-height: 1.2;
}

.vald-card__desc {
  color: rgba(245, 244, 240, 0.75);
  line-height: 1.6;
  margin: 0 0 var(--space-5);
}

.vald-card__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.vald-card__bullets li {
  position: relative;
  padding-left: 22px;
  color: rgba(245, 244, 240, 0.85);
  font-size: 0.95rem;
}

.vald-card__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-weight: 800;
}

.vald-card__pricing {
  display: flex;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.vald-card__price {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.vald-card__price-label {
  font-size: var(--text-sm);
  color: rgba(245, 244, 240, 0.5);
  display: block;
  margin-top: 4px;
}

.vald-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

@media (max-width: 900px) {
  .vald-split {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

/* ===== LEGACY VALD (kept for safety) ===== */
.vald__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.vald__image {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
  .vald__content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}
