/* ================================================
   PORTIA'S PRECISION FITNESS
   Production Stylesheet — portiasprecisionfitnessllc.com
   ================================================ */

/* === CUSTOM PROPERTIES === */
:root {
  --black:          #0E0E0E;
  --white:          #FFFFFF;
  --pink:           #E8447A;
  --blush:          #F7D4E0;
  --charcoal:       #2B2B2B;
  --charcoal-mid:   #3A3A3A;
  --overlay-dark:   rgba(14, 14, 14, 0.76);
  --overlay-deeper: rgba(14, 14, 14, 0.88);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Montserrat', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-w:        1160px;
  --gutter:       clamp(24px, 5vw, 72px);
  --section-py:   clamp(52px, 6vw, 88px);
  --radius-media: 10px;

  --ease-base:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t:            0.32s var(--ease-base);
  --t-fast:       0.18s ease;

  --shadow-card:       0 4px 28px rgba(0, 0, 0, 0.07);
  --shadow-card-hover: 0 24px 64px rgba(0, 0, 0, 0.16);
  --radius-pill:  100px;
}

/* === RESET === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  scroll-behavior: auto; /* Lenis handles smooth scroll */
}

body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1vw, 16.5px);
  line-height: 1.72;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--pink);
  color: var(--white);
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

ul, ol { list-style: none; }

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

input, select, textarea {
  font-family: var(--font-body);
}

/* === TYPOGRAPHY SCALE === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.012em;
}

.t-label {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--pink);
  display: block;
  margin-bottom: 18px;
}

.t-display {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.t-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1.12;
}

.t-h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 400;
  line-height: 1.18;
}

.t-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.32;
}

.t-body-lg {
  font-size: clamp(0.95rem, 1.1vw, 1.0625rem);
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.75);
}

.t-body-dark {
  font-size: clamp(0.95rem, 1.1vw, 1.0625rem);
  line-height: 1.78;
  color: rgba(14, 14, 14, 0.72);
}

/* === LAYOUT UTILITIES === */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section--charcoal {
  background: var(--charcoal);
  color: var(--white);
}

/* === PINK DIVIDERS === */
.divider-full {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--pink) 18%, var(--pink) 82%, transparent);
}

.divider-short {
  display: block;
  width: 44px;
  height: 2px;
  background: var(--pink);
  margin: 0 auto 26px;
}

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

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--t), box-shadow var(--t), padding var(--t);
}

.nav.is-scrolled {
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--gutter);
  max-width: calc(var(--max-w) + var(--gutter) * 2);
  margin: 0 auto;
  transition: padding var(--t);
}

.nav.is-scrolled .nav__inner {
  padding-top: 14px;
  padding-bottom: 14px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.01em;
  flex-shrink: 0;
  transition: opacity var(--t-fast);
  line-height: 1.2;
}

.nav__logo:hover { opacity: 0.82; }

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

.nav__link {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--t-fast);
  white-space: nowrap;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--pink);
  transition: width var(--t);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--white);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
}

.nav__cta {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--pink);
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  display: inline-block;
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}

.nav__cta:hover {
  transform: translateY(-1px);
  background: #d63169;
  box-shadow: 0 8px 24px rgba(232, 68, 122, 0.35);
}

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.nav__hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: transform var(--t), opacity var(--t);
}

/* Mobile overlay nav */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--black);
  opacity: 1;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-base);
  pointer-events: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.nav__mobile.is-open {
  transform: translateX(0);
  pointer-events: all;
}

.nav__mobile-link {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5.5vw, 2.5rem);
  color: var(--white);
  text-align: center;
  transition: color var(--t-fast);
  line-height: 1;
}

.nav__mobile-link:hover,
.nav__mobile-link.is-active { color: var(--pink); }

.nav__mobile-link--cta {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--pink);
  border-radius: var(--radius-pill);
  padding: 16px 40px;
  margin-top: 16px;
  transition: transform var(--t-fast);
}

.nav__mobile-link--cta:hover { transform: scale(1.03); }

.nav--open {
  background: var(--black) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

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

/* === BUTTONS === */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 38px;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-pill);
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  line-height: 1;
}

.btn--pink {
  background: var(--pink);
  color: var(--white);
}

.btn--pink:hover {
  transform: translateY(-2px);
  background: #d63169;
  box-shadow: 0 12px 32px rgba(232, 68, 122, 0.38);
}

.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.38);
}

.btn--ghost-white:hover {
  transform: translateY(-2px);
  border-color: var(--pink);
  color: var(--pink);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--black);
  border: 1.5px solid rgba(14, 14, 14, 0.3);
}

.btn--ghost-dark:hover {
  transform: translateY(-2px);
  border-color: var(--pink);
  color: var(--pink);
}

/* === HERO — HOMEPAGE === */
.hero {
  position: relative;
  min-height: 68dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

/* === HERO — INNER PAGES === */
.hero--inner {
  min-height: 40dvh;
}

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

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 8s ease-out;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 14, 14, 0.82) 0%,
    rgba(14, 14, 14, 0.68) 50%,
    rgba(14, 14, 14, 0.86) 100%
  );
  z-index: 1;
}

/* CSS grain — no JS, no image file */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 100px var(--gutter) 56px;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero--inner .hero__content {
  padding-top: 112px;
  padding-bottom: 48px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 auto 22px;
  max-width: 17ch;
}

.hero--inner .hero__title {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
}

.hero__title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.hero__title .word-inner {
  display: inline-block;
}

.hero__sub {
  font-size: clamp(0.95rem, 1.15vw, 1.0625rem);
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.88);
  max-width: 52ch;
  margin: 0 auto 36px;
  font-family: var(--font-body);
}

/* Scroll cue at bottom of hero */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.hero__scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--pink), transparent);
  transform-origin: top center;
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1);    opacity: 1;   }
  50%       { transform: scaleY(0.5); opacity: 0.5; }
}

/* === GOOGLE REVIEWS === */
.reviews-track-wrap {
  overflow: hidden;
  width: 100%;
  margin-top: clamp(20px, 4vw, 40px);
  mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
}

.reviews-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: reviewsScroll 46s linear infinite;
}

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

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

.review-card {
  background: var(--charcoal);
  border: 1px solid rgba(232, 68, 122, 0.22);
  border-radius: var(--radius-media);
  padding: 28px 30px;
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.review-card__stars {
  color: var(--pink);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-card__text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 20px;
  flex: 1;
}

.review-card__author {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
}

.reviews-google-attr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(28px, 4vw, 44px);
  flex-wrap: wrap;
  text-align: center;
}

.reviews-google-attr__stars {
  color: var(--pink);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.reviews-google-attr__label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
}

.reviews-google-attr__link {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  transition: color var(--t-fast);
}

.reviews-google-attr__link:hover { color: var(--white); }

@media (max-width: 640px) {
  .review-card { width: 260px; padding: 24px 22px; }
  .reviews-track-wrap {
    mask-image: linear-gradient(to right, transparent, black 24px, black calc(100% - 24px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 24px, black calc(100% - 24px), transparent);
  }
}

/* === MARQUEE STRIP === */
.marquee {
  overflow: hidden;
  background: var(--black);
  padding: clamp(18px, 2.5vw, 28px) 0;
  border-top: 1px solid rgba(232, 68, 122, 0.35);
  border-bottom: 1px solid rgba(232, 68, 122, 0.35);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeMove 30s linear infinite;
}

.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee__item {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.15rem, 1.9vw, 1.6rem);
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  padding: 0 30px;
}

.marquee__dot {
  width: 6px;
  height: 6px;
  background: var(--pink);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marqueeMove {
  to { transform: translateX(-50%); }
}

/* === SECTION INTRO — centered by default === */
.section-intro {
  margin: 0 auto clamp(44px, 6vw, 72px);
  max-width: 64ch;
  text-align: center;
}

.section-intro .divider-short {
  margin-left: auto;
  margin-right: auto;
}

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

/* === PINK ACCENT LINE UNDER HEADING === */
.heading-bar {
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
}

.heading-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--pink);
}

/* === 50/50 SPLIT SECTIONS === */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.split--img-left > .split__media {
  order: -1;
}

.split__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 620px;
  background: var(--charcoal);
  align-self: center;
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.9s var(--ease-base);
}

.split__media:hover img {
  transform: scale(1.03);
}

.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(48px, 6vw, 80px) clamp(40px, 5.5vw, 76px);
}

.split__content--bar {
  border-left: 3px solid var(--pink);
}

.split__content p {
  color: rgba(14, 14, 14, 0.72);
  max-width: 46ch;
  margin-bottom: 28px;
}

.section--dark .split__content p {
  color: rgba(255, 255, 255, 0.72);
}

.split__content h2,
.split__content h3 {
  margin-bottom: 18px;
}

/* === SERVICE PREVIEW CARDS === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-media);
  border-top: 3px solid transparent;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-top-color var(--t);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-top-color: var(--pink);
}

.card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--charcoal);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.card:hover .card__media img {
  transform: scale(1.05);
}

.card__body {
  padding: 30px 26px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.card__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.6vw, 1.55rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--black);
  margin-bottom: 12px;
}

.card__text {
  font-size: 0.9rem;
  line-height: 1.72;
  color: rgba(14, 14, 14, 0.68);
  flex: 1;
  margin-bottom: 24px;
}

.card__link {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--t-fast);
  margin-top: auto;
}

.card__link:hover { gap: 14px; }

.card__arrow {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width var(--t-fast);
}

.card__arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.card:hover .card__arrow { width: 26px; }

/* === SERVICES PAGE GRID (2-col) === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-top: 3px solid transparent;
  border-radius: var(--radius-media);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-top-color var(--t);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-top-color: var(--pink);
}

.service-card__media {
  aspect-ratio: 16 / 9;
  background: var(--charcoal);
  overflow: hidden;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

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

.service-card__body {
  padding: 32px 30px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 14px;
  line-height: 1.15;
}

.service-card__text {
  font-size: 0.9rem;
  line-height: 1.72;
  color: rgba(14, 14, 14, 0.68);
  flex: 1;
  margin-bottom: 26px;
}

.service-card__link {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--t-fast);
  margin-top: auto;
}

.service-card__link:hover { gap: 14px; }

.service-card__link .card__arrow {
  width: 18px;
}

.service-card:hover .service-card__link .card__arrow {
  width: 26px;
}

/* === SOCIAL PROOF STRIP === */
.social-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max-w);
  margin: 0 auto;
}

.stat-block {
  text-align: center;
  padding: clamp(44px, 6vw, 72px) clamp(24px, 3.5vw, 44px);
  border-right: 1px solid rgba(14, 14, 14, 0.07);
}

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

.stat-block__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 400;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.stat-block__label {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
}

.section--dark .stat-block {
  border-right-color: rgba(255, 255, 255, 0.08);
}

.section--dark .stat-block__label {
  color: rgba(255, 255, 255, 0.6);
}

/* === SERVICE AREA PILLS === */
.areas-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 38px;
}

.area-pill {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid rgba(232, 68, 122, 0.5);
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  cursor: default;
}

.area-pill:hover {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}

/* === CTA BANNER === */
.cta-banner {
  text-align: center;
  padding: clamp(80px, 10vw, 128px) var(--gutter);
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 2px;
  background: var(--pink);
}

.cta-banner__heading {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.018em;
  line-height: 1.1;
  margin-bottom: 38px;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* === PULL QUOTE === */
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  line-height: 1.32;
  color: inherit;
}

.pull-quote--center {
  text-align: center;
  margin: 0 auto;
  max-width: 28ch;
}

.pull-quote--pink {
  color: var(--pink);
}

/* === RESULTS GRID === */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.result-card {
  border: 1px solid rgba(232, 68, 122, 0.25);
  border-radius: var(--radius-media);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}

.result-card:hover {
  border-color: var(--pink);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

.result-card__media {
  aspect-ratio: 4 / 5;
  background: var(--charcoal-mid);
  overflow: hidden;
  position: relative;
}

.result-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.result-card:hover .result-card__media img {
  transform: scale(1.04);
}

.result-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.result-card__body {
  padding: 24px 24px 30px;
  text-align: center;
}

.result-card__name {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}

.result-card__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

/* === GET STARTED / CONTACT FORM === */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}

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

.form-label {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(14, 14, 14, 0.7);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  border: 1.5px solid rgba(14, 14, 14, 0.16);
  padding: 15px 18px;
  border-radius: 0;
  outline: none;
  transition: border-color var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--pink);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(14, 14, 14, 0.35);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230E0E0E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 46px;
  cursor: pointer;
}

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

/* Contact info sidebar */
.contact-sidebar {
  padding-top: 12px;
}

.contact-block {
  margin-bottom: 40px;
}

.contact-block__label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
  display: block;
}

.contact-block__value {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.contact-block__value a {
  transition: color var(--t-fast);
}

.contact-block__value a:hover { color: var(--pink); }

.contact-block__address {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(14, 14, 14, 0.65);
}

/* === ABOUT PAGE === */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 64dvh;
}

.about-hero__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 780px;
}

.about-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-hero__content {
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 7vw, 104px) clamp(48px, 5.5vw, 84px);
  color: var(--white);
}

.about-hero__content .t-label {
  margin-top: 0;
}

.about-section {
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

/* Long-form editorial text sections — centered blocks */
.editorial-section {
  max-width: 66ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.editorial-section .divider-short {
  margin-left: auto;
  margin-right: auto;
}

.editorial-section + .editorial-section {
  margin-top: clamp(48px, 6vw, 72px);
}

/* === FOOTER === */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.65);
  border-top: 1px solid rgba(232, 68, 122, 0.3);
}

.footer__main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(60px, 7vw, 88px) var(--gutter) 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 32px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
  transition: opacity var(--t-fast);
}

.footer__logo:hover { opacity: 0.8; }

.footer__tagline {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pink);
  display: block;
  margin-bottom: 22px;
}

.footer__desc {
  font-size: 0.875rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.45);
  max-width: 30ch;
}

.footer__col-head {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  display: block;
  margin-bottom: 20px;
}

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

.footer__nav-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--t-fast);
}

.footer__nav-link:hover { color: var(--pink); }

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contact-item {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
}

.footer__contact-item a {
  transition: color var(--t-fast);
}

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

.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(32px, 4vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
}

.footer__areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__area-tag {
  font-family: var(--font-sans);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

/* === UTILITY CLASSES === */
.text-pink  { color: var(--pink); }
.text-white { color: var(--white); }
.text-black { color: var(--black); }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mt-16 { margin-top: 64px; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.mb-8  { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }

/* Visibility for GSAP — elements start visible, JS sets initial states */
.fade-target {
  will-change: transform, opacity;
}

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

/* Tablet and below */
@media (max-width: 1024px) {
  .cards-grid        { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap      { gap: 48px; }
}

@media (max-width: 900px) {
  .split             { grid-template-columns: 1fr; }
  .split__media      { min-height: 300px; max-height: 400px; order: 0 !important; }
  .split__content    { text-align: center; align-items: center; }
  .split__content p  { margin-left: auto; margin-right: auto; }
  .split__content .divider-short { margin-left: auto; margin-right: auto; }
  .split__content--bar {
    border-left: none;
    border-top: 3px solid var(--pink);
    padding-top: 40px;
  }
  .split--img-left > .split__media { order: 0; }
  .about-hero        { grid-template-columns: 1fr; min-height: auto; }
  .about-hero__media { min-height: 340px; max-height: 46dvh; }
  .about-hero__content {
    min-height: auto;
    padding: clamp(56px, 8vw, 88px) var(--gutter);
    text-align: center;
    align-items: center;
  }
  .footer__grid      { grid-template-columns: 1fr 1fr; }
  .results-grid      { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap      { grid-template-columns: 1fr; gap: 52px; }
  .form-row          { grid-template-columns: 1fr; }
  .nav__links        { display: none; }
  .nav__hamburger    { display: flex; }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --gutter:     22px;
    --section-py: 48px;
  }
  .hero               { min-height: 56dvh; }
  .hero--inner        { min-height: 34dvh; }
  .cards-grid         { grid-template-columns: 1fr; }
  .services-grid      { grid-template-columns: 1fr; }
  .social-proof       { grid-template-columns: 1fr; }
  .stat-block         {
    border-right: none;
    border-bottom: 1px solid rgba(14, 14, 14, 0.07);
    padding: 36px 24px;
  }
  .stat-block:last-child { border-bottom: none; }
  .section--dark .stat-block { border-bottom-color: rgba(255, 255, 255, 0.08); }
  .results-grid       { grid-template-columns: 1fr; }
  .footer__grid       { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .footer__desc       { margin-left: auto; margin-right: auto; }
  .footer__bottom     { flex-direction: column; align-items: center; }
  .footer__areas      { display: none; }
  .hero__content      { padding-top: 100px; padding-bottom: 64px; }
  .hero__scroll       { display: none; }

  /* Center all section images on mobile */
  .split__media img,
  .card__media img,
  .service-card__media img,
  .result-card__media img,
  .about-hero__media img {
    object-position: center center;
    margin-left: auto;
    margin-right: auto;
  }
  .split__media,
  .card__media,
  .service-card__media,
  .result-card__media,
  .about-hero__media {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Small phone — 375px */
@media (max-width: 390px) {
  .hero__title         { font-size: 2.3rem; }
  .hero--inner .hero__title { font-size: 2rem; }
  .cta-banner__heading { font-size: 1.9rem; }
  .pull-quote          { font-size: 1.4rem; }
  .t-h2                { font-size: 1.7rem; }
  .about-hero__content { padding: 48px 22px; }
}

/* === PRICING TIERS === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid rgba(14, 14, 14, 0.1);
  border-radius: var(--radius-media);
  padding: 40px 30px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--pink);
}

.pricing-card--featured {
  border-color: var(--pink);
  box-shadow: 0 8px 40px rgba(232, 68, 122, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pricing-card__duration {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(14, 14, 14, 0.55);
  margin-bottom: 16px;
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-card__price span {
  font-size: 1rem;
  color: rgba(14, 14, 14, 0.5);
}

.pricing-card__save {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 20px;
  min-height: 1.2em;
}

.pricing-card__details {
  font-size: 0.9rem;
  line-height: 1.72;
  color: rgba(14, 14, 14, 0.65);
  margin-bottom: 28px;
  flex: 1;
}

.pricing-card .btn {
  width: 100%;
  text-align: center;
}

/* Premium coaching card */
.coaching-highlight {
  background: var(--black);
  border: 1.5px solid rgba(232, 68, 122, 0.4);
  border-radius: var(--radius-media);
  padding: 44px 40px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(44px, 6vw, 64px);
  position: relative;
}

.coaching-highlight__label {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
  display: block;
}

.coaching-highlight__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.15;
}

.coaching-highlight__price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}

.coaching-highlight__price span {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
}

.coaching-highlight__desc {
  font-size: 0.9rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.65);
  max-width: 44ch;
  margin: 0 auto 28px;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
}

/* === CHALLENGE PAGE === */
.challenge-includes {
  max-width: 600px;
  margin: 0 auto;
}

.challenge-price-banner {
  background: var(--pink);
  border-radius: var(--radius-media);
  padding: 28px 32px;
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.challenge-price-banner__amount {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.challenge-price-banner__label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.challenge-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.challenge-check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.challenge-check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.challenge-check-icon::after {
  content: '';
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg) translateY(-1px);
}

.challenge-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: clamp(44px, 6vw, 64px);
}

.challenge-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(232, 68, 122, 0.08);
  border: 1px solid rgba(232, 68, 122, 0.2);
  border-radius: var(--radius-pill);
  padding: 12px 22px;
}

.challenge-benefit__icon {
  font-size: 1.1rem;
  line-height: 1;
}

.challenge-benefit__text {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}

.challenge-schedule {
  max-width: 640px;
  margin: 0 auto;
}

.challenge-schedule__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.challenge-day {
  background: rgba(14, 14, 14, 0.03);
  border: 1px solid rgba(14, 14, 14, 0.08);
  border-radius: var(--radius-media);
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.challenge-day--rest {
  background: rgba(232, 68, 122, 0.06);
  border-color: rgba(232, 68, 122, 0.2);
}

.challenge-day__name {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
}

.challenge-day__workout {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.25;
}

.challenge-dates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.challenge-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 20px;
  border: 1px solid rgba(232, 68, 122, 0.25);
  border-radius: var(--radius-media);
}

.challenge-date-block__icon {
  font-size: 1.6rem;
  line-height: 1;
}

.challenge-date-block__label {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.challenge-date-block__value {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  color: var(--white);
  text-align: center;
  line-height: 1.2;
}

.challenge-date-block__note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  line-height: 1.5;
}

.challenge-radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.challenge-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 14px 18px;
  border: 1.5px solid rgba(14, 14, 14, 0.14);
  border-radius: 6px;
  transition: border-color var(--t-fast), background var(--t-fast);
}

.challenge-radio:hover {
  border-color: var(--pink);
  background: rgba(232, 68, 122, 0.04);
}

.challenge-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.challenge-radio__mark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(14, 14, 14, 0.25);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--t-fast);
}

.challenge-radio__mark::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
  transform: scale(0);
  transition: transform var(--t-fast);
}

.challenge-radio input[type="radio"]:checked ~ .challenge-radio__mark {
  border-color: var(--pink);
}

.challenge-radio input[type="radio"]:checked ~ .challenge-radio__mark::after {
  transform: scale(1);
}

.challenge-radio input[type="radio"]:checked ~ .challenge-radio__label {
  color: var(--black);
  font-weight: 500;
}

.challenge-radio__label {
  font-size: 0.95rem;
  color: rgba(14, 14, 14, 0.7);
  transition: color var(--t-fast);
}

@media (max-width: 640px) {
  .challenge-schedule__grid { grid-template-columns: repeat(2, 1fr); }
  .challenge-dates { grid-template-columns: 1fr; max-width: 320px; }
  .challenge-benefits { gap: 10px; }
  .challenge-benefit { padding: 10px 16px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
