/* ================================================================
   KETTLEBELLBEGINNER.COM — Beginner Funnel Site
   Based on IKU design system. Dark hero, warm tones.
   ================================================================ */

/* ----------------------------------------------------------------
   TOKENS
   ---------------------------------------------------------------- */
:root {
  --amber: #F59E0B;
  --amber-dark: #D97706;
  --amber-light: #FEF3C7;
  --amber-50: #FFFBEB;
  --green: #16a34a;
  --green-dark: #15803d;
  --green-light: #dcfce7;
  --green-50: #f0fdf4;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-50: #eff6ff;
  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50: #F8FAFC;
  --white: #ffffff;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 8px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
}

/* ----------------------------------------------------------------
   RESET
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--slate-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ----------------------------------------------------------------
   LAYOUT
   ---------------------------------------------------------------- */
.section { padding: 80px 24px; }
.section-inner { max-width: 1140px; margin: 0 auto; }

/* ----------------------------------------------------------------
   TYPOGRAPHY
   ---------------------------------------------------------------- */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-50);
  border: 1px solid var(--green-light);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--slate-900);
  letter-spacing: -0.03em;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--slate-500);
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font);
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); }
.btn-amber { background: var(--amber); color: var(--white); }
.btn-amber:hover { background: var(--amber-dark); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-dark); }
.btn-outline {
  background: transparent;
  color: var(--slate-700);
  border: 1.5px solid var(--slate-300);
}
.btn-outline:hover { border-color: var(--slate-900); color: var(--slate-900); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.btn-white { background: var(--white); color: var(--slate-900); font-weight: 700; }
.btn-white:hover { background: var(--slate-50); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ----------------------------------------------------------------
   NAV
   ---------------------------------------------------------------- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--slate-900);
  border-bottom: 1px solid var(--slate-700);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}
.nav-logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}
.nav-logo-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-300);
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--slate-400);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 6px;
  transition: all 0.15s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--green-dark) !important; }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger svg { stroke: var(--slate-300); }

/* Nav dropdowns */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 0; }
.nav-primary {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  padding: 7px 10px 7px 14px !important;
  letter-spacing: -0.01em;
}
.nav-primary:hover { color: var(--green) !important; background: transparent !important; }
.nav-chevron-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid var(--slate-600);
  background: var(--slate-800);
  cursor: pointer;
  color: var(--slate-400);
  transition: all 0.2s;
  padding: 0;
  font-family: var(--font);
  flex-shrink: 0;
}
.nav-chevron-btn:hover { background: var(--green-50); border-color: var(--green); color: var(--green); }
.nav-chevron-btn svg { transition: transform 0.2s; }
.nav-dropdown-open .nav-chevron-btn { background: var(--green); border-color: var(--green); color: var(--white); }
.nav-dropdown-open .nav-chevron-btn svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  min-width: 190px;
  z-index: 101;
  list-style: none;
}
.nav-dropdown-menu::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-open .nav-dropdown-menu { display: block; }
.nav-dropdown:hover .nav-chevron-btn svg { transform: rotate(180deg); }
.nav-dropdown-menu a {
  display: block;
  padding: 9px 20px;
  font-size: 0.84rem;
  color: var(--slate-600);
  text-decoration: none;
  white-space: nowrap;
  font-weight: 500;
  transition: all 0.15s;
}
.nav-dropdown-menu a:hover { background: var(--slate-50); color: var(--slate-900); }
.nav-dropdown-entry {
  font-weight: 700 !important;
  color: var(--slate-900) !important;
  border-bottom: 1px solid var(--slate-100);
  margin-bottom: 4px;
  padding-bottom: 12px !important;
}
.nav-dropdown-entry:hover { color: var(--green) !important; }

@media (max-width: 900px) {
  .nav-logo-text { display: none; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--slate-900);
    flex-direction: column;
    padding: 8px 16px 16px;
    gap: 0;
    border-bottom: 1px solid var(--slate-700);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.nav-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-dropdown-trigger { padding: 4px 0; }
  .nav-primary { flex: 1; padding: 12px 16px !important; font-size: 1.05rem !important; border-radius: 8px; }
  .nav-chevron-btn { width: 36px; height: 36px; margin-right: 4px; }
  .nav-dropdown-menu {
    position: static; transform: none; border: none; box-shadow: none;
    border-radius: 0; padding: 0 0 8px 16px; min-width: 0; display: none;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown.nav-dropdown-open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a { padding: 10px 16px; font-size: 0.9rem; border-radius: 6px; color: var(--slate-500); }
  .nav-cta { text-align: center; margin-left: 0 !important; margin-top: 8px; padding: 12px 18px !important; }
  .nav-hamburger { display: block; }
}

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: 64px 24px 32px;
}
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-top: 12px; max-width: 300px; }
.footer-col h4 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--slate-500); margin-bottom: 16px;
}
.footer-col a {
  display: block; color: var(--slate-400); text-decoration: none;
  font-size: 0.85rem; padding: 5px 0; transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem; flex-wrap: wrap; gap: 16px;
}
.footer-socials { display: flex; gap: 20px; }
.footer-socials a { color: var(--slate-500); text-decoration: none; transition: color 0.2s; font-size: 0.82rem; }
.footer-socials a:hover { color: var(--green); }

@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------------
   HERO — Dark, full-width with background image
   ---------------------------------------------------------------- */
.hero {
  padding: 140px 24px 80px;
  background:
    linear-gradient(to right, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.75) 60%, rgba(15,23,42,0.5) 100%),
    url('/images/homepage-banner-001.jpg') center center / cover no-repeat;
  color: var(--white);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--amber));
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text { max-width: 580px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
  letter-spacing: -0.03em;
}
.hero-tagline {
  font-size: 1.1rem;
  color: var(--slate-300);
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-tagline strong { color: var(--white); font-weight: 600; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-note {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--slate-400);
  font-style: italic;
}

/* Hero right — stats */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px 20px;
  transition: border-color 0.2s;
}
.hero-stat:hover { border-color: var(--green); }
.hero-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--slate-400);
  font-weight: 500;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-text { max-width: 100%; }
}
@media (max-width: 768px) {
  .hero {
    background:
      linear-gradient(to bottom, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.85) 100%),
      url('/images/homepage-banner-001.jpg') center top / cover no-repeat;
  }
}
@media (max-width: 480px) {
  .hero { padding: 120px 24px 64px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-stat { padding: 18px 14px; }
  .hero-stat-number { font-size: 1.4rem; }
}

/* ----------------------------------------------------------------
   PAGE HERO (inner pages)
   ---------------------------------------------------------------- */
.page-hero {
  padding: 128px 24px 64px;
  background: var(--slate-900);
  color: var(--white);
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--amber));
}
.page-hero .section-inner { max-width: 720px; }
.page-hero .section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--white); }
.page-hero .section-desc { margin-bottom: 0; color: var(--slate-300); }
.page-hero .section-label {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: var(--green);
}

@media (max-width: 768px) {
  .page-hero { padding: 110px 24px 48px; }
}

/* ----------------------------------------------------------------
   INSTRUCTOR CARDS
   ---------------------------------------------------------------- */
.instructor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.instructor-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.instructor-card:hover { border-color: var(--green); }
.instructor-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--slate-200);
}
.instructor-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 4px;
}
.instructor-title {
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 8px;
}
.instructor-bio {
  font-size: 0.85rem;
  color: var(--slate-500);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .instructor-grid { grid-template-columns: 1fr; }
  .instructor-card { flex-direction: column; align-items: center; text-align: center; }
}

/* ----------------------------------------------------------------
   CTA BUTTONS ROW (3 prominent CTAs)
   ---------------------------------------------------------------- */
.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
}
.cta-row .btn { padding: 16px 32px; font-size: 1rem; }

/* ----------------------------------------------------------------
   TESTIMONIALS / REVIEWS
   ---------------------------------------------------------------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 28px 24px;
}
.review-stars { color: var(--amber); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 0.9rem; color: var(--slate-600); line-height: 1.7; margin-bottom: 18px; }
.review-author { font-size: 0.82rem; font-weight: 700; color: var(--slate-900); }
.review-source { font-size: 0.75rem; color: var(--slate-400); margin-top: 2px; }

/* Featured testimonial (large) */
.review-featured {
  background: var(--green-50);
  border: 1px solid var(--green-light);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  margin-bottom: 48px;
}
.review-featured .review-text {
  font-size: 1.15rem;
  color: var(--slate-700);
  max-width: 700px;
  margin: 0 auto 20px;
  font-style: italic;
}

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

/* ----------------------------------------------------------------
   CARDS (general)
   ---------------------------------------------------------------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.card:hover { border-color: var(--slate-300); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon {
  width: 44px; height: 44px;
  background: var(--green-50);
  border: 1px solid var(--green-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg {
  width: 20px; height: 20px;
  stroke: var(--green); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--slate-900); }
.card p { font-size: 0.88rem; color: var(--slate-500); line-height: 1.6; }
.card-link {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 16px; font-size: 0.82rem; font-weight: 600; color: var(--green);
}

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

/* ----------------------------------------------------------------
   STATS ROW
   ---------------------------------------------------------------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--slate-200);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  overflow: hidden;
}
.stats-row-item {
  background: var(--white);
  text-align: center;
  padding: 28px 16px;
}
.stats-row-number {
  font-size: 1.8rem; font-weight: 800; color: var(--slate-900);
  line-height: 1; margin-bottom: 6px; letter-spacing: -0.02em;
}
.stats-row-label { font-size: 0.75rem; color: var(--slate-500); font-weight: 500; }

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

/* ----------------------------------------------------------------
   SPLIT SECTION (text + image/content side by side)
   ---------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

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

/* ----------------------------------------------------------------
   TRANSFORMATION STORY
   ---------------------------------------------------------------- */
.transformation {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.transformation-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.transformation-img img { width: 100%; height: auto; }
.transformation-text h3 {
  font-size: 1.3rem; font-weight: 800; color: var(--slate-900); margin-bottom: 12px;
}
.transformation-text p {
  font-size: 0.95rem; color: var(--slate-500); line-height: 1.7; margin-bottom: 16px;
}

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

/* ----------------------------------------------------------------
   SECTION IMAGES
   ---------------------------------------------------------------- */
.section-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.section-img img { width: 100%; height: auto; display: block; }

/* ----------------------------------------------------------------
   CTA BANNER
   ---------------------------------------------------------------- */
.cta-banner {
  background: var(--slate-900);
  border-radius: 16px;
  padding: 64px 48px;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.cta-banner p {
  font-size: 1rem; color: var(--slate-400);
  max-width: 520px; margin: 0 auto 32px; line-height: 1.6;
}

@media (max-width: 480px) { .cta-banner { padding: 40px 24px; } }

/* ----------------------------------------------------------------
   ALTERNATING SECTIONS
   ---------------------------------------------------------------- */
.section-alt { background: var(--slate-50); }
.section-dark { background: var(--slate-900); color: var(--white); }
.section-dark .section-label {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: var(--green);
}
.section-dark .section-title { color: var(--white); }
.section-dark .section-desc { color: var(--slate-400); }

/* ----------------------------------------------------------------
   EXERCISE LIST
   ---------------------------------------------------------------- */
.exercise-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: center;
}
.exercise-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 24px 16px;
  transition: border-color 0.2s;
}
.exercise-item:hover { border-color: var(--green); }
.exercise-name { font-size: 0.9rem; font-weight: 700; color: var(--slate-900); }
.exercise-desc { font-size: 0.78rem; color: var(--slate-500); margin-top: 4px; }

@media (max-width: 768px) { .exercise-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .exercise-grid { grid-template-columns: repeat(2, 1fr); } }

/* ----------------------------------------------------------------
   PROSE (content pages)
   ---------------------------------------------------------------- */
.prose { max-width: 700px; font-size: 1.02rem; line-height: 1.8; color: var(--slate-600); }
.prose h2 { font-size: 1.5rem; font-weight: 800; color: var(--slate-900); margin: 48px 0 16px; letter-spacing: -0.02em; }
.prose h3 { font-size: 1.2rem; font-weight: 700; color: var(--slate-900); margin: 36px 0 12px; }
.prose p { margin-bottom: 20px; }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 20px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--slate-800); font-weight: 600; }
.prose a { color: var(--green); text-decoration: underline; }
.prose a:hover { color: var(--green-dark); }
.prose blockquote {
  border-left: 3px solid var(--amber);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--amber-50);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--slate-600);
}
.prose img {
  border-radius: 8px;
  margin: 24px 0;
}

/* Legal prose — full-width, readable */
.legal-prose { max-width: 800px; }
.legal-prose h2 { font-size: 1.25rem; margin: 40px 0 12px; }
.legal-prose h3 { font-size: 1.05rem; margin: 28px 0 10px; }

/* ----------------------------------------------------------------
   WEIGHT RECOMMENDATION TABLE
   ---------------------------------------------------------------- */
.weight-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.9rem;
}
.weight-table th {
  background: var(--slate-900);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.weight-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--slate-200);
  color: var(--slate-600);
}
.weight-table tr:hover td { background: var(--slate-50); }
.weight-table .highlight { color: var(--green); font-weight: 700; }

/* ----------------------------------------------------------------
   UTILITIES
   ---------------------------------------------------------------- */
.text-center { text-align: center; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-48 { margin-bottom: 48px; }
