/* ============ Design Tokens ============ */
:root {
  --bg: #F4F0E8;
  --bg-alt: #EAE4D5;
  --ink: #141414;
  --ink-soft: #2B2B2B;
  --muted: #6B6760;
  --line: #1414141A;
  --card: #FFFDF8;
  --lime: #D4FF3D;
  --lime-deep: #B8E82A;
  --coral: #FF6B3D;
  --dark: #0F0F0F;
  --dark-2: #1A1A1A;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.08);

  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
}

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ============ Layout ============ */
.container {
  width: min(1280px, 92%);
  margin: 0 auto;
}
.section { padding: 100px 0; }
.section--tight { padding: 70px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--ink);
  display: inline-block;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 26px; border-radius: var(--radius-pill);
  font-weight: 500; font-size: 15px;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--lime { background: var(--lime); color: var(--ink); }
.btn--lime:hover { background: var(--lime-deep); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; }
.btn--ghost { border: 1px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn .arr { display: inline-block; transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ============ Navigation ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 240, 232, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 20px; letter-spacing: -0.02em;
}
.logo__mark {
  width: 34px; height: 34px; border-radius: 10px; background: var(--ink);
  display: grid; place-items: center; color: var(--lime);
  font-weight: 700; font-family: var(--font-sans);
}
.nav__links { display: flex; gap: 30px; align-items: center; }
.nav__links a {
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  transition: color .2s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a.active { color: var(--ink); }
.nav__cta { display: flex; gap: 12px; align-items: center; }
.nav__toggle { display: none; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--ink); }
.nav__toggle span { display: block; width: 16px; height: 1.5px; background: var(--ink); margin: 3px auto; }

/* ============ Hero ============ */
.hero {
  padding: 60px 0 40px;
  position: relative;
}
.hero__grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 60px; align-items: center;
}
.hero__title {
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 500;
  letter-spacing: -0.03em;
}
.hero__title em {
  font-style: italic; color: var(--ink);
  background: linear-gradient(180deg, transparent 64%, var(--lime) 64%);
  padding: 0 8px;
}
.hero__lead {
  max-width: 420px; margin-top: 26px;
  font-size: 17px; color: var(--ink-soft); line-height: 1.6;
}
.hero__cta {
  margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap;
}
.hero__meta {
  margin-top: 48px; display: flex; gap: 40px; flex-wrap: wrap;
}
.hero__meta .stat strong {
  display: block; font-family: var(--font-display);
  font-size: 38px; line-height: 1;
}
.hero__meta .stat span {
  font-size: 12px; color: var(--muted);
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em;
}

.hero__visual {
  position: relative; aspect-ratio: 4/5;
}
.hero__visual img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  background: var(--bg-alt);
}
.hero__badge {
  position: absolute; left: 20px; bottom: 20px;
  background: var(--card); border-radius: var(--radius);
  padding: 14px 18px; display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-md);
  max-width: 260px;
}
.hero__badge .dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--lime); display: grid; place-items: center;
}
.hero__badge small { font-size: 11px; color: var(--muted); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; }
.hero__badge strong { display: block; font-size: 15px; margin-top: 2px; }

.hero__tape {
  position: absolute; top: 34px; right: -40px;
  background: var(--ink); color: var(--lime);
  padding: 10px 24px; border-radius: var(--radius-pill);
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  transform: rotate(6deg);
}

.marquee {
  overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 18px 0; margin-top: 60px; background: var(--bg-alt);
}
.marquee__track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: marquee 34s linear infinite;
  font-family: var(--font-display); font-size: 34px; font-style: italic;
  color: var(--ink);
}
.marquee__track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee__track .dot-sep { width: 10px; height: 10px; background: var(--lime); border-radius: 50%; display: inline-block; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============ Workouts Intro (Stats Benefits) ============ */
.benefits {
  background: var(--ink); color: #fff; border-radius: 34px;
  padding: 70px 60px; margin: 80px auto 0;
  width: min(1280px, 92%);
}
.benefits__head {
  display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap;
  gap: 30px; margin-bottom: 60px;
}
.benefits__title {
  color: #fff; font-size: clamp(36px, 4.4vw, 64px); max-width: 640px;
}
.benefits__title em {
  font-style: italic; padding: 0 8px;
  background: linear-gradient(180deg, transparent 10%, var(--lime) 10%, var(--lime) 92%, transparent 92%);
  color: var(--ink);
  border-radius: 0;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.benefits__lead { max-width: 340px; color: #b7b4ad; font-size: 15px; }
.benefits__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.benefit {
  background: #1E1E1E; border-radius: var(--radius); padding: 28px;
  border: 1px solid #2a2a2a;
  transition: background .25s ease, transform .25s ease;
}
.benefit:hover { background: #252525; transform: translateY(-4px); }
.benefit__num {
  font-family: var(--font-mono); font-size: 12px; color: var(--lime); letter-spacing: 0.1em;
}
.benefit__metric {
  font-family: var(--font-display); font-size: 56px; font-weight: 500;
  color: #fff; margin: 18px 0 6px; line-height: 1;
}
.benefit__metric span { color: var(--muted); font-size: 18px; }
.benefit h4 { color: #fff; font-size: 20px; margin-bottom: 10px; }
.benefit p { color: #a5a29a; font-size: 14px; line-height: 1.55; }

/* ============ Section Heading ============ */
.sec-head {
  display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap;
  gap: 30px; margin-bottom: 60px;
}
.sec-head h2 { font-size: clamp(36px, 4.6vw, 72px); max-width: 720px; }
.sec-head h2 em { font-style: italic; background: linear-gradient(180deg, transparent 60%, var(--lime) 60%); padding: 0 6px; }
.sec-head p { max-width: 360px; color: var(--muted); font-size: 15px; }
.sec-head__right { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }

/* ============ About Coach ============ */
.coach__grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center;
}
.coach__visual {
  position: relative;
  aspect-ratio: 4/5;
}
.coach__visual img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-lg);
}
.coach__stamp {
  position: absolute; right: -30px; top: 40px;
  width: 150px; height: 150px; border-radius: 50%;
  background: var(--lime); display: grid; place-items: center;
  font-family: var(--font-display); font-style: italic;
  font-size: 22px; text-align: center; line-height: 1.2;
  transform: rotate(-8deg);
  box-shadow: var(--shadow-md);
}
.coach__title {
  font-size: clamp(36px, 4.6vw, 68px); margin: 20px 0 26px;
}
.coach__title em { font-style: italic; background: linear-gradient(180deg, transparent 60%, var(--lime) 60%); padding: 0 6px;}
.coach__bio { color: var(--ink-soft); font-size: 16px; line-height: 1.7; max-width: 500px; }
.coach__bio + .coach__bio { margin-top: 16px; }

.creds {
  margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.cred {
  padding: 22px; background: var(--card); border-radius: var(--radius);
  border: 1px solid var(--line);
}
.cred strong {
  display: block; font-family: var(--font-display); font-size: 32px;
  line-height: 1; margin-bottom: 8px;
}
.cred span { color: var(--muted); font-size: 13px; }

/* ============ Workout Types ============ */
.types__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.type {
  background: var(--card); border-radius: var(--radius-lg); padding: 36px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 20px;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative; overflow: hidden;
}
.type:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.type--hero {
  background: var(--ink); color: #fff;
  grid-column: span 2;
  flex-direction: row; align-items: center; justify-content: space-between;
  padding: 46px;
}
.type--hero h3 { color: #fff; }
.type__top {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.type--hero .type__top { color: #a5a29a; }
.type__tag { background: var(--lime); color: var(--ink); padding: 6px 12px; border-radius: var(--radius-pill); font-family: var(--font-mono); font-size: 11px; }
.type h3 { font-size: 32px; line-height: 1.1; }
.type--hero h3 { font-size: clamp(40px, 4vw, 60px); max-width: 520px; }
.type p { color: var(--muted); font-size: 15px; line-height: 1.6; max-width: 420px; }
.type--hero p { color: #a5a29a; }
.type__meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em;
}
.type--hero .type__meta { border-top: 1px solid #2a2a2a; color: #a5a29a; }
.type__meta span strong { color: var(--ink); display: block; font-family: var(--font-sans); font-size: 15px; text-transform: none; letter-spacing: 0; margin-top: 4px; }
.type--hero .type__meta span strong { color: #fff; }
.type--hero img {
  width: 40%; max-width: 340px; aspect-ratio: 4/5;
  object-fit: cover; border-radius: var(--radius);
}

/* ============ Schedule Table ============ */
.schedule {
  background: var(--bg-alt); border-radius: 34px;
  padding: 60px; margin: 0 auto; width: min(1280px, 92%);
}
.schedule__table {
  background: var(--card); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--line);
  margin-top: 40px;
}
.schedule__row {
  display: grid; grid-template-columns: 130px 150px 1fr 170px 120px;
  gap: 20px;
  padding: 22px 28px; border-bottom: 1px solid var(--line);
  align-items: center;
  transition: background .2s ease;
}
.schedule__row .schedule__cta-cell { justify-self: end; }
.schedule__level { display: flex; }
.level-pill { white-space: nowrap; display: inline-block; }
.schedule__row:last-child { border-bottom: 0; }
.schedule__row--head {
  background: var(--ink); color: #fff;
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
}
.schedule__row:not(.schedule__row--head):hover { background: var(--bg-alt); }
.schedule__day strong { display: block; font-family: var(--font-display); font-size: 22px; }
.schedule__day span { font-size: 12px; color: var(--muted); font-family: var(--font-mono); text-transform: uppercase; }
.schedule__time { font-family: var(--font-mono); font-size: 14px; color: var(--ink); }
.schedule__workout { display: flex; flex-direction: column; gap: 4px; }
.schedule__workout strong { font-size: 17px; }
.schedule__workout span { font-size: 13px; color: var(--muted); }
.schedule__level { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; }
.level-pill { padding: 5px 12px; border-radius: var(--radius-pill); background: var(--bg-alt); }
.level-pill--all { background: var(--lime); }
.level-pill--adv { background: var(--ink); color: #fff; }

.schedule__group {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.schedule__group:last-child { border-bottom: 0; }
.schedule__day-col strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  padding-top: 8px;
}
.schedule__slots {
  display: flex;
  flex-direction: column;
}
.schedule__slot {
  display: grid;
  grid-template-columns: 150px 1fr 170px 120px;
  gap: 20px;
  padding: 8px 0;
  align-items: center;
  transition: background .2s ease;
}
.schedule__slot + .schedule__slot {
  border-top: 1px dashed var(--line);
  margin-top: 4px;
  padding-top: 14px;
}
.schedule__slot .schedule__cta-cell { justify-self: end; }

.price-pill {
  display: inline-block; white-space: nowrap;
  padding: 5px 12px; border-radius: var(--radius-pill);
  background: var(--bg-alt); color: var(--ink);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em;
}
.price-pill--free { background: var(--lime); }
.price-pill--member { background: var(--ink); color: #fff; }
.price-pill--muted { background: transparent; color: var(--muted); }

.schedule__row--rest {
  background: transparent;
  opacity: 0.65;
}
.schedule__row--rest:hover { background: transparent !important; }

.pricing-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 10px 0 28px;
}
.pricing-strip__item {
  padding: 18px 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pricing-strip__item strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
}
.pricing-strip__item span {
  font-size: 13px;
  color: var(--muted);
}
.pricing-strip__item a { text-decoration: underline; }

.membership {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 50px;
}
.membership__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  margin-top: 34px;
  align-items: start;
}
.membership__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.membership__list li {
  padding: 14px 18px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 15px;
  line-height: 1.5;
}
.membership__list strong { display: block; margin-bottom: 2px; }
.membership__card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
}
.membership__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}
.membership__amount {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  font-weight: 600;
}
.membership__unit {
  color: #a5a29a;
  font-size: 15px;
}
.membership__card .btn { background: var(--lime); color: var(--ink); }

@media (max-width: 900px) {
  .pricing-strip { grid-template-columns: 1fr; }
  .membership { padding: 30px; }
  .membership__grid { grid-template-columns: 1fr; gap: 30px; }
}
.schedule__foot {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: 18px; margin-top: 30px;
}
.schedule__note {
  font-size: 14px; color: var(--muted); display: flex; gap: 10px; align-items: center;
}
.schedule__note .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--lime);
  box-shadow: 0 0 0 0 var(--lime);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 255, 61, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(212, 255, 61, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 255, 61, 0); }
}

/* ============ Reviews ============ */
.reviews__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.review {
  background: var(--card); border-radius: var(--radius-lg); padding: 34px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 20px;
}
.review--accent { background: var(--lime); }
.review__stars { color: var(--ink); letter-spacing: 3px; font-size: 14px; }
.review__quote {
  font-family: var(--font-display); font-size: 22px; line-height: 1.35; font-weight: 500;
  flex: 1;
}
.review__author { display: flex; align-items: center; gap: 14px; margin-top: 10px; }
.review__avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--bg-alt);
  overflow: hidden; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 18px;
}
.review__author strong { display: block; font-size: 15px; }
.review__author span { font-size: 12px; color: var(--muted); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; }

/* ============ Community CTA ============ */
.community-cta {
  position: relative; overflow: hidden;
  background: var(--ink); color: #fff; border-radius: 34px;
  padding: 80px 60px; width: min(1280px, 92%); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center;
}
.community-cta h2 { color: #fff; font-size: clamp(36px, 4.2vw, 64px); max-width: 560px; }
.community-cta h2 em {
  font-style: italic; padding: 0 8px;
  background: linear-gradient(180deg, transparent 10%, var(--lime) 10%, var(--lime) 92%, transparent 92%);
  color: var(--ink);
  border-radius: 0;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.community-cta p { color: #a5a29a; margin-top: 20px; max-width: 450px; font-size: 16px; line-height: 1.6; }
.community-cta__right {
  display: flex; flex-direction: column; gap: 14px; align-items: flex-end;
}
.community-cta__visual {
  position: absolute; right: -60px; bottom: -60px; width: 360px; height: 360px;
  border-radius: 50%; background: var(--lime);
  opacity: .15; filter: blur(2px);
}

/* ============ Blog Preview ============ */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.post-card {
  background: var(--card); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card__img {
  aspect-ratio: 4/3; overflow: hidden; background: var(--bg-alt);
}
.post-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .post-card__img img { transform: scale(1.05); }
.post-card__body { padding: 28px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.post-card__meta {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase;
}
.post-card h3 { font-size: 24px; line-height: 1.2; }
.post-card__excerpt { color: var(--muted); font-size: 14px; line-height: 1.6; flex: 1; }
.post-card__more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em;
}
.post-card__more .arr { transition: transform .2s ease; }
.post-card:hover .post-card__more .arr { transform: translateX(4px); }

/* ============ Contact Form ============ */
.contact {
  background: var(--bg-alt); border-radius: 34px;
  padding: 70px 60px; width: min(1280px, 92%); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px;
}
.contact__intro h2 { font-size: clamp(36px, 4.2vw, 64px); }
.contact__intro h2 em { font-style: italic; background: linear-gradient(180deg, transparent 60%, var(--lime) 60%); padding: 0 6px; }
.contact__intro p { color: var(--muted); margin-top: 24px; font-size: 16px; line-height: 1.6; max-width: 400px; }
.contact__details { margin-top: 40px; display: flex; flex-direction: column; gap: 18px; }
.contact__detail { display: flex; align-items: center; gap: 14px; }
.contact__detail .icon {
  width: 42px; height: 42px; border-radius: 50%; background: var(--lime);
  display: grid; place-items: center;
}
.contact__detail strong { display: block; font-size: 15px; }
.contact__detail span { font-size: 13px; color: var(--muted); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; }

.form {
  background: var(--card); border-radius: var(--radius-lg); padding: 38px;
  display: flex; flex-direction: column; gap: 18px;
  border: 1px solid var(--line);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__field {
  display: flex; flex-direction: column; gap: 6px;
}
.form__field label {
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted);
}
.form__field input, .form__field textarea, .form__field select {
  padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg); font-size: 15px;
  transition: border-color .2s ease, background .2s ease;
}
.form__field input:focus, .form__field textarea:focus, .form__field select:focus {
  outline: none; border-color: var(--ink); background: #fff;
}
.form__field textarea { min-height: 120px; resize: vertical; font-family: inherit; }
.form__interest {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.form__interest label {
  padding: 10px 14px; border: 1px solid var(--line); border-radius: var(--radius-pill);
  cursor: pointer; font-size: 13px; transition: all .2s ease;
  font-family: var(--font-sans); letter-spacing: 0; text-transform: none; color: var(--ink);
}
.form__interest input { display: none; }
.form__interest input:checked + span { background: var(--ink); color: #fff; padding: 10px 14px; border-radius: var(--radius-pill); margin: -10px -14px; }

/* ============ Footer ============ */
.footer {
  background: var(--ink); color: #cfccc5; padding: 80px 0 40px;
  margin-top: 100px;
}
.footer__top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px;
  padding-bottom: 60px; border-bottom: 1px solid #2a2a2a;
}
.footer__brand h3 { color: #fff; font-size: clamp(44px, 5vw, 72px); line-height: 1; margin-bottom: 26px; }
.footer__brand h3 em { font-style: italic; color: var(--lime); }
.footer__brand p { max-width: 320px; font-size: 15px; line-height: 1.6; }
.footer h5 { color: #fff; font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 20px; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 15px; color: #cfccc5; transition: color .2s ease; }
.footer ul a:hover { color: var(--lime); }
.footer__bottom {
  padding-top: 30px; display: flex; justify-content: space-between;
  font-size: 13px; color: #8c8880; flex-wrap: wrap; gap: 14px;
}

/* ============ Modal ============ */
.modal {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.55);
  display: none; align-items: center; justify-content: center;
  z-index: 100; padding: 20px;
}
.modal.open { display: flex; }
.modal__card {
  background: var(--bg); border-radius: var(--radius-lg);
  padding: 40px; max-width: 520px; width: 100%;
  position: relative; max-height: 90vh; overflow: auto;
}
.modal__close {
  position: absolute; top: 18px; right: 18px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ink); color: #fff; display: grid; place-items: center;
}
.modal h3 { font-size: 32px; margin-bottom: 8px; }
.modal p { color: var(--muted); margin-bottom: 24px; }

/* ============ Blog Page Styles ============ */
.page-hero {
  padding: 80px 0 60px; text-align: left;
}
.page-hero__eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
}
.page-hero h1 { font-size: clamp(52px, 7vw, 120px); margin-top: 20px; font-weight: 500; }
.page-hero h1 em { font-style: italic; background: linear-gradient(180deg, transparent 60%, var(--lime) 60%); padding: 0 8px; }
.page-hero p { max-width: 580px; margin-top: 26px; color: var(--ink-soft); font-size: 17px; line-height: 1.6; }

.filters {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px;
}
.filter-pill {
  padding: 10px 18px; border-radius: var(--radius-pill);
  border: 1px solid var(--line); font-size: 13px;
  transition: all .2s ease; cursor: pointer;
}
.filter-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.filter-pill:hover:not(.active) { background: var(--bg-alt); }

.featured-post {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px;
  margin-bottom: 60px; background: var(--card);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line);
}
.featured-post img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.featured-post__body { padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.featured-post__tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  color: var(--muted); text-transform: uppercase; margin-bottom: 20px;
}
.featured-post__tag::before { content: ""; width: 8px; height: 8px; background: var(--lime); border-radius: 50%; }
.featured-post h2 { font-size: clamp(32px, 3.8vw, 54px); line-height: 1.1; margin-bottom: 20px; }
.featured-post p { color: var(--muted); font-size: 16px; line-height: 1.6; margin-bottom: 30px; }
.featured-post__meta {
  display: flex; gap: 20px; align-items: center;
  font-size: 13px; color: var(--muted); font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 30px;
}

/* ============ Blog Post Page ============ */
.article {
  max-width: 820px; margin: 0 auto; padding: 80px 0;
}
.article__breadcrumb {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin-bottom: 30px;
}
.article__breadcrumb a:hover { color: var(--ink); }
.article h1 {
  font-size: clamp(42px, 5.5vw, 84px); font-weight: 500; margin-bottom: 30px;
}
.article__meta {
  display: flex; gap: 30px; flex-wrap: wrap; align-items: center;
  padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  margin-bottom: 50px;
}
.article__author { display: flex; gap: 14px; align-items: center; }
.article__author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.article__author strong { display: block; font-size: 14px; }
.article__author span { font-size: 12px; color: var(--muted); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; }
.article__pub { font-size: 13px; color: var(--muted); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; }
.article__cover {
  aspect-ratio: 16/9; overflow: hidden; border-radius: var(--radius-lg);
  margin-bottom: 50px;
}
.article__cover img { width: 100%; height: 100%; object-fit: cover; }
.article__body {
  font-size: 17px; line-height: 1.75; color: var(--ink-soft);
}
.article__body p { margin-bottom: 22px; }
.article__body h2 { font-size: 34px; margin: 50px 0 20px; color: var(--ink); }
.article__body h3 { font-size: 24px; margin: 36px 0 16px; color: var(--ink); }
.article__body blockquote {
  border-left: 4px solid var(--lime); padding: 10px 0 10px 24px;
  margin: 30px 0; font-family: var(--font-display); font-size: 24px; font-style: italic;
  color: var(--ink);
}
.article__body ul { padding-left: 20px; margin-bottom: 22px; }
.article__body ul li { margin-bottom: 10px; list-style: disc; }
.article__body strong { color: var(--ink); }
.article__tags {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 50px; padding-top: 30px; border-top: 1px solid var(--line);
}
.article__tags .tag {
  padding: 8px 14px; border-radius: var(--radius-pill); border: 1px solid var(--line); font-size: 12px;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em;
}

/* ============ Community Page ============ */
.community-hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  padding: 60px 0;
}
.community-hero__visual {
  aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden;
  position: relative;
}
.community-hero__visual img { width: 100%; height: 100%; object-fit: cover; }

.ride-card {
  background: var(--ink); color: #fff; border-radius: var(--radius-lg);
  padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
  align-items: center; margin-bottom: 60px;
}
.ride-card h3 { color: #fff; font-size: 40px; }
.ride-card p { color: #a5a29a; margin-top: 16px; font-size: 16px; line-height: 1.6; }
.ride-card__time {
  background: var(--lime); color: var(--ink); padding: 26px;
  border-radius: var(--radius); text-align: center;
}
.ride-card__time strong { display: block; font-family: var(--font-display); font-size: 52px; line-height: 1; margin-bottom: 8px; }
.ride-card__time span { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; }

.member-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.member {
  background: var(--card); border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--line); text-align: center;
}
.member__avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 14px;
  background: var(--bg-alt); display: grid; place-items: center;
  font-family: var(--font-display); font-size: 28px;
}
.member strong { display: block; font-size: 16px; }
.member span { font-size: 12px; color: var(--muted); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; }
.member p { margin-top: 12px; font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ============ Two-tone highlight (for dark backgrounds) ============ */
.hl-split {
  font-style: italic; padding: 0 8px;
  background: linear-gradient(180deg, transparent 10%, var(--lime) 10%, var(--lime) 92%, transparent 92%);
  color: var(--ink);
  border-radius: 0;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* ============ Utility ============ */
.accent-lime { background: var(--lime); }
.text-muted { color: var(--muted); }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 40px; }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .section { padding: 70px 0; }
  .hero__grid, .coach__grid, .contact, .community-cta, .community-hero, .featured-post { grid-template-columns: 1fr; gap: 40px; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid, .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .member-grid { grid-template-columns: repeat(2, 1fr); }
  .types__grid { grid-template-columns: 1fr; }
  .type--hero { flex-direction: column; align-items: flex-start; grid-column: span 1; }
  .type--hero img { width: 100%; }
  .schedule__row { grid-template-columns: 110px 110px 1fr 140px; gap: 14px; padding: 16px 18px; }
  .schedule__row .schedule__cta-cell { display: none; }
  .schedule__group { grid-template-columns: 90px 1fr; gap: 14px; padding: 16px 18px; }
  .schedule__slot { grid-template-columns: 120px 1fr 110px; gap: 12px; }
  .schedule__slot .schedule__cta-cell { display: none; }
  .community-cta { padding: 50px 30px; }
  .benefits { padding: 50px 30px; }
  .schedule, .contact { padding: 40px 25px; }
  .featured-post__body { padding: 30px; }
  .ride-card { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-grid; place-items: center; }
  .nav__cta .btn:not(.btn--lime) { display: none; }
  .benefits__grid, .blog-grid, .reviews__grid, .member-grid { grid-template-columns: 1fr; }
  .creds { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__meta { gap: 26px; }
  .schedule__row { grid-template-columns: 100px 1fr; gap: 8px; }
  .schedule__row .schedule__time, .schedule__row .schedule__level { display: none; }
  .schedule__group { grid-template-columns: 70px 1fr; gap: 10px; }
  .schedule__slot { grid-template-columns: 1fr 90px; gap: 8px; }
  .schedule__slot .schedule__time { display: none; }
  .article h1 { font-size: 42px; }
  .coach__stamp { right: 10px; width: 120px; height: 120px; font-size: 18px; }
}

/* ============ Toast ============ */
.toast-stack {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  pointer-events: auto;
  min-width: 280px;
  max-width: 380px;
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--line);
  border-left: 4px solid var(--lime-deep);
  border-radius: var(--radius);
  padding: 16px 44px 16px 18px;
  box-shadow: var(--shadow-md);
  font-size: 15px;
  line-height: 1.45;
  position: relative;
  transform: translateX(120%);
  opacity: 0;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .25s ease;
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast.toast--error { border-left-color: var(--coral); }
.toast__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 2px;
}
.toast__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
}
.toast__close:hover { background: var(--bg-alt); color: var(--ink); }
@media (max-width: 560px) {
  .toast-stack { top: 12px; right: 12px; left: 12px; }
  .toast { min-width: 0; max-width: none; }
}
