/* ============================================================
   PEAK PERFORMANCE RUN COACHING — Style System
   Brand: Chinese Black #141414 | Davy's Grey #585858 | Bright Gray #EEEEEE
   Display: Clash Display | Body: Plus Jakarta Sans
============================================================ */

/* ---- TOKENS ---- */
:root {
  /* Brand colours */
  --color-black:   #141414;
  --color-grey:    #585858;
  --color-light:   #EEEEEE;
  --color-white:   #FFFFFF;
  --color-accent:  #FFFFFF;

  /* Semantic */
  --color-bg:           var(--color-black);
  --color-surface:      #1c1b1b;
  --color-surface-2:    #222222;
  --color-border:       #2a2a2a;
  --color-text:         var(--color-light);
  --color-text-muted:   var(--color-grey);
  --color-text-faint:   #3a3a3a;

  /* Fonts */
  --font-display: 'Clash Display', 'Helvetica Neue', sans-serif;
  --font-body:    'Plus Jakarta Sans', 'Helvetica Neue', sans-serif;

  /* 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);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* 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;

  /* Layout */
  --content-narrow:  640px;
  --content-default: 1000px;
  --content-wide:    1240px;

  /* Radii */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 200ms var(--ease);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img, picture, video { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5 { text-wrap: balance; line-height: 1.1; }
p, li { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; }
a, button, [role='button'], input, textarea, select {
  transition: color var(--transition), background var(--transition),
              border-color var(--transition), opacity var(--transition),
              box-shadow var(--transition);
}
:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal, .reveal-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-fade {
  transform: none;
}
.reveal.visible, .reveal-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- SECTION COMMON ---- */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-grey);
  margin-bottom: var(--space-4);
}
.section-eyebrow--light { color: rgba(238,238,238,0.5); }
.section-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: var(--space-6);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.section-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 52ch;
  margin-bottom: var(--space-10);
}

/* ---- 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;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn--primary {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}
.btn--primary:hover {
  background: var(--color-light);
  border-color: var(--color-light);
}
.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.35);
}
.btn--ghost:hover {
  border-color: var(--color-white);
  background: rgba(255,255,255,0.06);
}
.btn--sm {
  font-size: var(--text-xs);
  padding: var(--space-3) var(--space-5);
}
.btn--full { width: 100%; }
.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.25);
}
.btn--outline:hover {
  border-color: var(--color-white);
  background: rgba(255,255,255,0.06);
}

/* ============================================================
   NAV
============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(20,20,20,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav--hidden { transform: translateY(-100%); }
.nav--scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.4); }
.nav__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}
.nav__logo-mark { flex-shrink: 0; }
.nav__logo-img {
  height: 32px;
  width: auto;
  display: block;
  border-radius: 2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}
.nav__links a {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-grey);
}
.nav__links a:hover { color: var(--color-white); }
.nav__cta {
  font-size: var(--text-xs) !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white) !important;
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-sm);
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.nav__cta:hover {
  border-color: var(--color-white) !important;
  background: rgba(255,255,255,0.06);
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: var(--space-6);
  gap: var(--space-4);
  background: var(--color-black);
  border-top: 1px solid var(--color-border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.nav__mobile.open { max-height: 500px; }
.nav__mobile-link {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-grey);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
}
.nav__mobile-link:hover { color: var(--color-white); }
.nav__mobile-cta {
  display: inline-block;
  margin-top: var(--space-4);
  padding: var(--space-4) var(--space-8);
  background: var(--color-white);
  color: var(--color-black);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  text-align: center;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(var(--space-16), 8vw, var(--space-32));
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% center;
  filter: grayscale(20%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20,20,20,0.55) 0%,
    rgba(20,20,20,0.3) 35%,
    rgba(20,20,20,0.75) 65%,
    rgba(20,20,20,0.99) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--content-wide);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-6);
  padding-top: 80px;
}
.hero__eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(238,238,238,0.5);
  margin-bottom: var(--space-5);
  transition-delay: 0.05s;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.0;
  margin-bottom: var(--space-6);
  max-width: 16ch;
  transition-delay: 0.1s;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.hero__headline em {
  font-style: normal;
  color: var(--color-light);
  opacity: 0.55;
}
.hero__sub {
  font-size: var(--text-lg);
  color: rgba(238,238,238,0.7);
  max-width: 44ch;
  margin-bottom: var(--space-10);
  line-height: 1.55;
  transition-delay: 0.15s;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  transition-delay: 0.2s;
}
.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   STATS
============================================================ */
.stats {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-10) var(--space-6);
}
.stats__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-10);
  text-align: center;
}
.stats__num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.stats__label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-grey);
}
.stats__divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT
============================================================ */
.about {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) var(--space-6);
}
.about__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.about__image-col {
  position: relative;
}
.about__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.about__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: transform 0.6s var(--ease);
}
.about__img-wrap:hover img { transform: scale(1.03); }
.about__badge {
  position: absolute;
  bottom: -var(--space-6);
  right: -var(--space-6);
  width: 120px;
  height: 120px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 3px solid var(--color-black);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.about__badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__body {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
  max-width: 52ch;
  line-height: 1.7;
}
.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.tag {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-grey);
  border: 1px solid var(--color-border);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full, 9999px);
}

/* ============================================================
   FULL-BLEED DIVIDER
============================================================ */
.fullbleed-divider {
  position: relative;
  height: clamp(300px, 50vw, 600px);
  overflow: hidden;
}
.fullbleed-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(20%);
}
.fullbleed-divider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,20,20,0.7) 0%, rgba(20,20,20,0.1) 100%);
  display: flex;
  align-items: center;
  padding: 0 clamp(var(--space-8), 8vw, var(--space-24));
}
.fullbleed-divider__quote {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-white);
  max-width: 18ch;
  line-height: 1.1;
}

/* ============================================================
   PLANS
============================================================ */
.plans {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) var(--space-6);
  background: var(--color-surface);
}
.plans__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}
.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}
.plan-card {
  background: var(--color-black);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.25s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.plan-card:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.plan-card__tag {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  z-index: 2;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--color-white);
  color: var(--color-black);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
}
.plan-card__img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
}
.plan-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: transform 0.5s var(--ease), filter 0.4s var(--ease);
}
.plan-card:hover .plan-card__img img {
  transform: scale(1.04);
  filter: grayscale(0%);
}
.plan-card__body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space-4);
}
.plan-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.plan-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}
.plan-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.plan-card__features li {
  font-size: var(--text-xs);
  color: var(--color-grey);
  padding-left: var(--space-5);
  position: relative;
}
.plan-card__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-border);
}
.plan-card__footer {
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.plan-card__price {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-white);
}
.plan-card__buy { flex-shrink: 0; }

/* Plan level buttons (10K + Half Marathon dual-level cards) */
.plan-card__levels {
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.plan-level {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-4);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.plan-level:hover {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.07);
}
.plan-level__label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.plan-level__desc {
  font-size: var(--text-xs);
  color: var(--color-grey);
  line-height: 1.5;
}
.plan-card__coming-soon {
  font-size: var(--text-xs);
  color: var(--color-grey);
  text-align: center;
  letter-spacing: 0.06em;
  margin-top: var(--space-2);
}
.plans__note {
  font-size: var(--text-xs);
  color: var(--color-grey);
  text-align: center;
  letter-spacing: 0.05em;
}

/* ============================================================
   WHY
============================================================ */
.why {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) var(--space-6);
}
.why__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}
.why__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-8) var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  transition: border-color 0.25s var(--ease);
}
.why__item:hover { border-color: rgba(255,255,255,0.15); }
.why__icon {
  color: var(--color-grey);
}
.why__item h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.why__item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================================
   FULL-BLEED IMAGE
============================================================ */
.fullbleed-image {
  height: clamp(260px, 45vw, 520px);
  overflow: hidden;
}
.fullbleed-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(20%);
}

/* ============================================================
   COACHING
============================================================ */
.coaching {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) var(--space-6);
  background: var(--color-surface);
}
.coaching__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.coaching__body {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  max-width: 52ch;
  line-height: 1.7;
}
.coaching__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}
.coaching__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}
.coaching__list svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-white);
  opacity: 0.6;
}
.coaching__note {
  font-size: var(--text-xs);
  color: var(--color-grey);
  margin-top: var(--space-4);
  max-width: 44ch;
  line-height: 1.6;
}
.coaching__image-col {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.coaching__image-col > img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: grayscale(15%);
  border-radius: var(--radius-lg);
}
.coaching__stamp {
  position: absolute;
  bottom: var(--space-4);
  right: var(--space-4);
  width: 100px;
  height: 100px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid var(--color-black);
  opacity: 0.85;
}
.coaching__stamp img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   NEWSLETTER
============================================================ */
.newsletter {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) var(--space-6);
  background: var(--color-black);
  border-top: 1px solid var(--color-border);
}
.newsletter__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.newsletter__heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-5);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.newsletter__sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  max-width: 46ch;
  line-height: 1.65;
}
.newsletter__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.newsletter__bullets li {
  font-size: var(--text-sm);
  color: var(--color-grey);
  padding-left: var(--space-5);
  position: relative;
  line-height: 1.5;
}
.newsletter__bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: rgba(238,238,238,0.3);
}
.newsletter__form-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}
.newsletter__form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-6);
  letter-spacing: 0.02em;
}
.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.newsletter__field input {
  width: 100%;
  background: var(--color-black);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text);
  outline: none;
  transition: border-color var(--transition);
}
.newsletter__field input::placeholder { color: var(--color-grey); }
.newsletter__field input:focus { border-color: rgba(255,255,255,0.4); }
.newsletter__disclaimer {
  font-size: var(--text-xs);
  color: var(--color-grey);
  text-align: center;
  margin-top: var(--space-2);
  opacity: 0.7;
}
.newsletter__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  color: var(--color-white);
}
.newsletter__success svg { opacity: 0.6; }
.newsletter__success p {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text-muted);
}

/* ============================================================
   INSTAGRAM STRIP
============================================================ */
.instagram {
  padding: clamp(var(--space-12), 6vw, var(--space-20)) var(--space-6);
  border-top: 1px solid var(--color-border);
}
.instagram__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  align-items: center;
}
.instagram__img-strip {
  display: flex;
  gap: var(--space-3);
  width: 100%;
  overflow: hidden;
}
.instagram__img-strip img {
  flex: 1;
  min-width: 0;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(40%);
  border-radius: var(--radius-md);
  transition: filter 0.35s var(--ease), transform 0.35s var(--ease);
}
.instagram__img-strip img:hover {
  filter: grayscale(0%);
  transform: scale(1.02);
}
.instagram__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-grey);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.instagram__cta span {
  color: var(--color-white);
  font-weight: 600;
}
.instagram__cta:hover { color: var(--color-white); }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--space-12) var(--space-6);
}
.footer__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  align-items: center;
  text-align: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-white);
  line-height: 1.4;
}
.footer__brand-name span {
  font-size: var(--text-xs);
  color: var(--color-grey);
  letter-spacing: 0.2em;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
}
.footer__links a {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-grey);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--color-white); }
.footer__copy {
  font-size: var(--text-xs);
  color: var(--color-grey);
  opacity: 0.5;
  letter-spacing: 0.06em;
}

/* ============================================================
   RESPONSIVE — TABLET
============================================================ */
@media (max-width: 960px) {
  .about__inner,
  .coaching__inner,
  .newsletter__inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .about__image-col { order: -1; }
  .coaching__image-col { order: -1; }
  .plans__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__divider { display: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE
============================================================ */
@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }

  .plans__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }

  .hero__headline { font-size: clamp(2.8rem, 12vw, 5rem); }
  .hero__sub { font-size: var(--text-base); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; text-align: center; }

  .about__badge {
    bottom: var(--space-4);
    right: var(--space-4);
    width: 80px;
    height: 80px;
  }

  .instagram__img-strip { gap: var(--space-2); }

  .stats__inner { gap: 0; }
  .stats__item { padding: var(--space-4) var(--space-6); }

  .fullbleed-divider__quote { font-size: var(--text-xl); }

  .footer__links { gap: var(--space-4); }
}

/* ============================================================
   BUNDLE CARD (within plans grid)
============================================================ */
.plan-card--bundle {
  display: flex;
  flex-direction: column;
}


/* Plan level footer — price + button row */
.plan-level__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: var(--space-2);
}
.plan-level__price {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.02em;
}
.plan-level__price::before {
  content: '';
}

/* Bundle price group */
.plan-card__price-group {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
}
.plan-card__saving {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  background: rgba(255,255,255,0.12);
  padding: 2px var(--space-2);
  border-radius: var(--radius-sm);
}

/* ============================================================
   EMAIL MODAL
============================================================ */
.email-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
}
.email-modal.is-open {
  display: flex;
}
.email-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
}
.email-modal__box {
  position: relative;
  background: #1c1c1c;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: var(--space-10) var(--space-8);
  width: 100%;
  max-width: 480px;
  z-index: 1;
}
.email-modal__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-5);
  background: none;
  border: none;
  color: var(--color-light);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.6;
}
.email-modal__close:hover { opacity: 1; }
.email-modal__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-mid);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}
.email-modal__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-light);
  margin-bottom: var(--space-3);
}
.email-modal__body {
  font-size: var(--text-sm);
  color: var(--color-mid);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}
.email-modal__input,
.email-modal__textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--color-light);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-4);
  margin-bottom: var(--space-3);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.email-modal__input::placeholder,
.email-modal__textarea::placeholder { color: var(--color-mid); opacity: 0.6; }
.email-modal__input:focus,
.email-modal__textarea:focus { border-color: rgba(255,255,255,0.4); }
.email-modal__textarea { resize: vertical; }
.email-modal__send {
  margin-top: var(--space-2);
  display: block;
  text-align: center;
}

.footer__logo-img {
  height: 36px;
  width: auto;
  display: block;
}

/* ============================================================
   KIT FORM OVERRIDES
============================================================ */
.seva-form[data-uid="fd0e3f4c9a"] { background: transparent !important; }
.kit-fields { display: flex; flex-direction: column; gap: var(--space-3); }

.kit-input,
.formkit-form[data-uid="fd0e3f4c9a"] .formkit-input {
  width: 100% !important;
  box-sizing: border-box !important;
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: var(--radius-sm) !important;
  color: #EEEEEE !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  padding: 14px 16px !important;
  -webkit-appearance: none !important;
}
.kit-input::placeholder,
.formkit-form[data-uid="fd0e3f4c9a"] .formkit-input::placeholder {
  color: #585858 !important;
  opacity: 1 !important;
}
.kit-input:focus,
.formkit-form[data-uid="fd0e3f4c9a"] .formkit-input:focus {
  outline: none !important;
  border-color: rgba(255,255,255,0.35) !important;
}

.kit-submit,
.formkit-form[data-uid="fd0e3f4c9a"] .formkit-submit {
  width: 100% !important;
  background: #EEEEEE !important;
  color: #141414 !important;
  border: none !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  padding: 14px 24px !important;
  cursor: pointer !important;
  text-transform: uppercase !important;
  transition: opacity 0.2s !important;
  display: block !important;
  text-align: center !important;
}
.kit-submit:hover,
.formkit-form[data-uid="fd0e3f4c9a"] .formkit-submit:hover { opacity: 0.85 !important; }
.kit-submit > span,
.formkit-form[data-uid="fd0e3f4c9a"] .formkit-submit > span {
  color: #141414 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 0 !important;
  display: block !important;
}

.formkit-powered-by-convertkit-container,
.formkit-powered-by-convertkit { display: none !important; }
.formkit-alert-error { color: #f87171; font-size: 12px; list-style: none; padding: 0; margin: 0; }

/* Kill any Kit default background overrides */
.formkit-form[data-uid="fd0e3f4c9a"] { background: transparent !important; max-width: 100% !important; }
.formkit-form[data-uid="fd0e3f4c9a"] [data-style="image"] { background: transparent !important; }
.formkit-form[data-uid="fd0e3f4c9a"] .formkit-column { background: transparent !important; padding: 0 !important; }
.formkit-form[data-uid="fd0e3f4c9a"] .formkit-column:first-of-type { display: none !important; }
.formkit-form[data-uid="fd0e3f4c9a"] .formkit-background { display: none !important; }

/* ============================================================
   CUSTOM KIT FORM
============================================================ */
.custom-kit-form .newsletter__field { margin-bottom: var(--space-3); }
.custom-kit-form input[type="text"],
.custom-kit-form input[type="email"] {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: #EEEEEE;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.custom-kit-form input[type="text"]::placeholder,
.custom-kit-form input[type="email"]::placeholder {
  color: #585858;
  opacity: 1;
}
.custom-kit-form input[type="text"]:focus,
.custom-kit-form input[type="email"]:focus {
  border-color: rgba(255,255,255,0.35);
}

/* ── Plans coaching nudge ─────────────────────────────── */
.plans__coaching-nudge {
  text-align: center;
  margin-top: 2.5rem;
}

.coaching-nudge-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  color: #585858;
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #585858;
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.coaching-nudge-link:hover {
  color: #EEEEEE;
  border-color: #EEEEEE;
}
