/* ════════════════════════════════════════════════════════════════════════
   Gabriel Nuo Coaching – Stylesheet v3
   Helles, warmes Editorial-Design · kräftiger Orange-Akzent
   Athletisch, hochwertig, viel Weißraum · Laptop / Tablet / Mobile
   ════════════════════════════════════════════════════════════════════════ */

:root {
  /* Akzent (energetisch, motivierend) */
  --brand: #f1551f;          /* Hauptakzent – kräftiges Orange */
  --brand-2: #ff8a3d;        /* Sekundär – Amber für Gradients */
  --brand-dark: #c8400f;
  --brand-ink: #ffffff;      /* Text auf Akzent-Flächen */

  /* Flächen – warmes Bone/Cream */
  --bg: #f4f1ea;
  --bg-2: #ece7db;           /* leicht dunklere Alt-Sektion */
  --surface: #ffffff;        /* Cards */
  --surface-2: #faf8f3;

  /* Dunkle Kontrast-Flächen */
  --dark: #161412;
  --dark-2: #211e1a;

  /* Linien & Text */
  --border: #e3ddcf;
  --border-light: #d6cfbd;
  --ink: #1a1712;            /* Haupttext (warmes Schwarz) */
  --text: #1a1712;
  --muted: #6e6757;          /* gedämpfter Text */

  --shadow: 0 26px 60px -28px rgba(40,28,10,.32);
  --shadow-sm: 0 10px 24px -16px rgba(40,28,10,.30);
  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 76rem;
  --font-head: "Archivo", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .logo, .price, .stats strong, .cta-banner h2 {
  font-family: var(--font-head);
  letter-spacing: -.02em;
  line-height: 1.08;
  font-weight: 800;
}
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin: 0 0 .5rem; }
h3 { font-size: 1.2rem; margin: 0 0 .4rem; font-weight: 700; }
p { margin: 0 0 .75rem; }
a { color: inherit; text-decoration: none; transition: color .15s; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.4rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 3rem 0; }
.muted { color: var(--muted); }
.link-accent { color: var(--brand); font-weight: 700; }
.link-accent:hover { color: var(--brand-dark); }
.text-center { text-align: center; }

.eyebrow {
  display: inline-block; font-family: var(--font-head);
  font-size: .78rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--brand); margin-bottom: .7rem;
}

/* ── Dunkle Sektion (Kontrast-Band) ─────────────────────────────────────── */
.section-dark {
  background: var(--dark);
  color: #f4f1ea;
  position: relative; overflow: hidden;
}
.section-dark::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(640px 320px at 85% 0%, rgba(241,85,31,.22), transparent 60%);
  pointer-events:none;
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .muted { color: rgba(244,241,234,.66); }
.section-dark .card {
  background: var(--dark-2); border-color: rgba(255,255,255,.10); color: #f4f1ea;
}
.section-dark .card:hover { border-color: rgba(241,85,31,.5); }

/* ── Header ──────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(244,241,234,.82);
  backdrop-filter: blur(14px) saturate(140%);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 4.6rem; gap: 1rem; }
.logo { display: flex; align-items: center; gap: .65rem; font-weight: 800; font-size: 1.05rem; }
.logo-mark {
  width: 2.4rem; height: 2.4rem; border-radius: 12px;
  background: var(--ink); color: #fff;
  display: grid; place-items: center; font-size: .8rem; font-weight: 900;
}
.nav { display: flex; gap: .1rem; align-items: center; }
.nav a { padding: .5rem .8rem; border-radius: 10px; color: var(--muted); font-size: .92rem; font-weight: 600; }
.nav a:hover { color: var(--ink); background: rgba(0,0,0,.04); }
.nav a.active { color: var(--brand); }
.nav-toggle { display: none; background: none; border: none; color: var(--ink); font-size: 1.6rem; cursor: pointer; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.7rem; border-radius: 999px;
  font-family: var(--font-head);
  font-size: .92rem; font-weight: 700; border: none; cursor: pointer;
  transition: transform .15s, box-shadow .2s, background .2s, border-color .2s, color .2s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 12px 26px -12px rgba(241,85,31,.75); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 16px 32px -12px rgba(241,85,31,.8); }
.btn-secondary { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-secondary:hover { background: var(--ink); color: #fff; }
.section-dark .btn-secondary { color: #fff; border-color: rgba(255,255,255,.5); }
.section-dark .btn-secondary:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero { padding: 5.5rem 0 4.5rem; position: relative; overflow: hidden; }
.hero::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(720px 380px at 78% 12%, rgba(241,85,31,.12), transparent 62%);
  pointer-events:none;
}
.hero-grid { position: relative; display: grid; gap: 3.5rem; align-items: center; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.05fr .95fr; } }
.hero-inner { position: relative; max-width: 38rem; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin: 0; font-weight: 900; }
.hero h1 span { color: var(--brand); display: block; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.3rem; }
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 3rem; padding-top: 1.8rem; border-top: 1px solid var(--border); max-width: 30rem; }
.stats strong { font-size: 1.9rem; color: var(--ink); display: block; }
.stats span { font-size: .82rem; }

.hero-photo-wrap { position: relative; max-width: 440px; margin: 0 auto; }
.hero-photo-wrap::after {
  content:""; position:absolute; right:-16px; bottom:-16px;
  width: 64%; height: 64%; border-radius: var(--radius); z-index:-1;
  background: var(--brand); opacity:.16;
}
.coach-photo-wrap {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--surface);
  box-shadow: var(--shadow);
}
.coach-photo-wrap--accent { box-shadow: var(--shadow); }
.coach-photo { width: 100%; height: auto; display: block; object-fit: cover; object-position: center top; }
.hero-coach-photo { max-height: 500px; object-fit: cover; border-radius: var(--radius); }
.coach-about-grid { align-items: center; gap: 3.5rem; }
@media (min-width: 768px) { .coach-about-grid, .coach-coaching-intro { grid-template-columns: .85fr 1.15fr; } }

.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .4rem 1rem; border-radius: 999px;
  border: 1px solid var(--brand); background: rgba(241,85,31,.08);
  color: var(--brand-dark); font-size: .8rem; font-weight: 700; margin-bottom: 1.1rem;
}

/* ── Grids ───────────────────────────────────────────────────────────────── */
.grid-2, .grid-3, .grid-4 { display: grid; gap: 1.5rem; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(3,1fr); }
  .grid-4 { grid-template-columns: repeat(4,1fr); }
}
@media (min-width: 600px) and (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

/* ── Cards ───────────────────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.85rem;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--border-light); }
.card.featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 1.5px rgba(241,85,31,.35), var(--shadow-sm);
}
.card h3 { margin: 0 0 .5rem; }
.price { color: var(--brand); font-size: 1.85rem; font-weight: 800; }
blockquote.card { margin: 0; }
blockquote.card footer { color: var(--ink); }

/* Highlight-Card (Akzent-Tönung) */
.card-highlight {
  background: linear-gradient(180deg, rgba(241,85,31,.06), var(--surface));
  border-color: rgba(241,85,31,.35);
}

/* ── CTA Banner ──────────────────────────────────────────────────────────── */
.cta-banner {
  position: relative; overflow: hidden;
  background: var(--ink); color: #fff;
  border-radius: 28px; padding: 4rem 2rem; text-align: center;
  box-shadow: var(--shadow);
}
.cta-banner::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(520px 240px at 50% -20%, rgba(241,85,31,.4), transparent 62%);
}
.cta-banner h2 { margin: 0 0 .75rem; font-size: clamp(1.9rem,4vw,2.7rem); color: #fff; position: relative; }
.cta-banner p { position: relative; color: rgba(255,255,255,.75); font-weight: 500; }
.cta-banner .btn { background: var(--brand); color: #fff; margin-top: 1.3rem; position: relative; }
.cta-banner .btn:hover { background: var(--brand-2); }

/* ── Bild-Platzhalter (nummeriert) ──────────────────────────────────────── */
.img-slot { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--radius); }
.img-ph {
  width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .4rem;
  border-radius: var(--radius); border: 2px dashed var(--border-light);
  background:
    repeating-linear-gradient(45deg, rgba(241,85,31,.03) 0 14px, transparent 14px 28px),
    var(--surface-2);
  color: var(--muted); text-align: center; padding: 1.25rem;
}
.img-ph-num { font-family: var(--font-head); font-weight: 900; font-size: 2.6rem; color: var(--brand); line-height: 1; }
.img-ph-file { font-size: .8rem; font-weight: 700; color: var(--ink); background: rgba(241,85,31,.10); border: 1px solid rgba(241,85,31,.3); padding: .15rem .65rem; border-radius: 999px; }
.img-ph-hint { font-size: .78rem; max-width: 22rem; }

/* ── Footer (dunkel) ─────────────────────────────────────────────────────── */
.site-footer { border-top: none; margin-top: 0; padding: 4rem 0 1.75rem; background: var(--dark); color: rgba(244,241,234,.7); }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand { font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: #fff; }
.footer-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(244,241,234,.5); margin-bottom: .85rem; font-weight: 700; }
.site-footer a { display: block; color: rgba(244,241,234,.7); margin-bottom: .55rem; font-size: .9rem; }
.site-footer a:hover { color: var(--brand-2); }
.site-footer .muted { color: rgba(244,241,234,.55); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; color: rgba(244,241,234,.55); }
.footer-bottom a { display: inline; }

/* ── Formulare ───────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; margin-bottom: .4rem; font-size: .85rem; color: var(--ink); font-weight: 600; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .8rem 1rem; border-radius: 12px;
  border: 1px solid var(--border-light); background: var(--surface); color: var(--ink);
  font-family: inherit; font-size: .95rem; transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(241,85,31,.16);
}
.form-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.alert { padding: 1rem; border-radius: 12px; margin-bottom: 1rem; }
.alert-success { background: rgba(34,160,90,.12); color: #1c7a45; border: 1px solid rgba(34,160,90,.3); }
.alert-error { background: rgba(220,50,50,.1); color: #b23030; border: 1px solid rgba(220,50,50,.3); }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq details { margin-bottom: .85rem; border: 1px solid var(--border); border-radius: 14px; padding: 1rem 1.25rem; background: var(--surface); transition: border-color .2s, box-shadow .2s; }
.faq details[open] { border-color: var(--border-light); box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-weight: 700; list-style: none; font-family: var(--font-head); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--brand); font-weight: 800; }
.faq details[open] summary::after { content: "−"; }

/* ── Mobile-Nav ──────────────────────────────────────────────────────────── */
.nav-erstgespraech-mobile { display: none; }
@media (max-width: 960px) {
  .hide-mobile { display: none; }
  .nav-toggle { display: block; }
  .nav { display: none; position: absolute; top: 4.6rem; left: 0; right: 0; background: var(--surface); flex-direction: column; align-items: stretch; padding: 1rem; border-bottom: 1px solid var(--border); gap: .25rem; box-shadow: var(--shadow-sm); }
  .nav.open { display: flex; }
  .nav a { min-height: 44px; display: flex; align-items: center; }
  .nav-erstgespraech-mobile { display: flex; color: var(--brand) !important; font-weight: 700; margin-top: .5rem; border-top: 1px solid var(--border); padding-top: 1rem !important; }
  .btn { min-height: 44px; }
}

/* ── Admin ───────────────────────────────────────────────────────────────── */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar { width: 14rem; background: var(--surface); border-right: 1px solid var(--border); padding: 1rem; flex-shrink: 0; }
.admin-sidebar a { display: block; padding: .55rem .8rem; border-radius: 10px; color: var(--muted); font-size: .9rem; margin-bottom: .2rem; }
.admin-sidebar a:hover, .admin-sidebar a.active { background: rgba(241,85,31,.08); color: var(--brand); }
.admin-main { flex: 1; padding: 2rem; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.admin-table th, .admin-table td { text-align: left; padding: .8rem; border-bottom: 1px solid var(--border); }
.stat-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr)); margin-bottom: 2rem; }
.stat-card strong { font-size: 2rem; color: var(--brand); display: block; }

.legal-content .card { line-height: 1.75; }
.legal-content .card p { margin: 0 0 1rem; }
.w-full { width: 100%; height: auto; display: block; border-radius: 14px; }
.w-full-btn { width: 100%; margin-top: .5rem; }

.admin-topbar { display: none; align-items: center; justify-content: space-between; padding: .75rem 1rem; background: var(--surface); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 50; }
.admin-menu-toggle { background: none; border: none; color: var(--ink); font-size: 1.5rem; cursor: pointer; padding: .25rem; min-width: 44px; min-height: 44px; }
@media (max-width: 768px) {
  .admin-layout { flex-direction: column; }
  .admin-topbar { display: flex; }
  .admin-sidebar { width: 100%; border-right: none; border-bottom: 1px solid var(--border); padding: 1rem; display: none; }
  .admin-sidebar.open { display: block; }
  .admin-main { padding: 1rem; }
  .admin-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .admin-table { min-width: 36rem; }
  .lead-card-mobile { border: 1px solid var(--border); border-radius: 14px; padding: 1rem; margin-bottom: .75rem; }
  .lead-card-mobile a { color: var(--brand); font-weight: 600; }
  .lead-card-meta { font-size: .8rem; color: var(--muted); margin-top: .25rem; }
}

/* ── Lead-Popup ──────────────────────────────────────────────────────────── */
body.lead-modal-open { overflow: hidden; }
.lead-modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.lead-modal[hidden] { display: none !important; }
.lead-modal-backdrop { position: absolute; inset: 0; background: rgba(26,23,18,.55); backdrop-filter: blur(4px); }
.lead-modal-dialog { position: relative; z-index: 1; width: 100%; max-width: 32rem; max-height: 90vh; overflow-y: auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.9rem; box-shadow: var(--shadow); }
.lead-modal-close { position: absolute; top: .75rem; right: .9rem; background: none; border: none; color: var(--muted); font-size: 1.8rem; line-height: 1; cursor: pointer; }
.lead-modal-close:hover { color: var(--ink); }
.lead-interest-grid { display: grid; gap: .75rem; margin-top: 1.25rem; }
@media (min-width: 480px) { .lead-interest-grid { grid-template-columns: 1fr 1fr; } }
.lead-interest-card { display: flex; flex-direction: column; align-items: flex-start; gap: .25rem; text-align: left; padding: 1rem; border-radius: 14px; border: 1px solid var(--border); background: var(--surface-2); color: var(--ink); cursor: pointer; font: inherit; transition: border-color .15s, box-shadow .15s; }
.lead-interest-card:hover, .lead-interest-card:focus { border-color: var(--brand); outline: none; box-shadow: 0 0 0 1px rgba(241,85,31,.3); }
.lead-interest-icon { font-size: 1.5rem; }
.lead-interest-card strong { font-size: .95rem; }
.lead-interest-card .muted { font-size: .8rem; }
.lead-back { background: none; border: none; color: var(--muted); cursor: pointer; padding: 0; margin-bottom: .75rem; font-size: .875rem; }
.lead-back:hover { color: var(--brand); }
.lead-selected-badge { display: inline-block; margin: .75rem 0; padding: .35rem .75rem; border-radius: 999px; background: rgba(241,85,31,.12); color: var(--brand-dark); font-size: .8rem; }
.lead-privacy { display: flex; gap: .75rem; align-items: flex-start; font-size: .8rem; color: var(--muted); margin: 1rem 0; cursor: pointer; }
.lead-privacy input { margin-top: .2rem; flex-shrink: 0; }
.lead-privacy a { color: var(--brand); text-decoration: underline; }
.lead-success-icon { width: 3rem; height: 3rem; border-radius: 999px; background: rgba(241,85,31,.15); color: var(--brand); display: grid; place-items: center; font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }

.kontakt-interest-grid { display: grid; gap: .75rem; margin: 1.5rem 0 2rem; }
@media (min-width: 640px) { .kontakt-interest-grid { grid-template-columns: repeat(2, 1fr); } }
.kontakt-interest-card { display: flex; flex-direction: column; align-items: flex-start; gap: .25rem; text-align: left; padding: 1rem; border-radius: 14px; border: 1px solid var(--border); background: var(--surface-2); color: var(--ink); cursor: pointer; font: inherit; width: 100%; transition: border-color .15s, box-shadow .15s; }
.kontakt-interest-card:hover, .kontakt-interest-card.selected { border-color: var(--brand); box-shadow: 0 0 0 1px rgba(241,85,31,.25); }

.page-cta-strip { margin-top: 3rem; padding: 2.75rem 2rem; border-radius: 24px; text-align: center; border: 1px solid var(--border-light); background: linear-gradient(180deg, rgba(241,85,31,.06), var(--surface)); }

/* ── 3-Schritte ──────────────────────────────────────────────────────────── */
.step-number { width: 2.7rem; height: 2.7rem; border-radius: 999px; background: var(--brand); border: none; color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; margin-bottom: .9rem; }
.section-dark .step-number { background: var(--brand); }

/* ── Standort-Seiten ─────────────────────────────────────────────────────── */
.breadcrumb { font-size: .875rem; margin-bottom: 1.5rem; color: var(--muted); }
.location-distance-note { margin-top: 1.25rem; padding: .85rem 1rem; border-radius: 12px; background: rgba(241,85,31,.07); border: 1px solid rgba(241,85,31,.2); color: var(--muted); font-size: .875rem; }

/* ── Float WhatsApp / Call ───────────────────────────────────────────────── */
.float-actions { position: fixed; bottom: 1.25rem; right: 1.25rem; display: flex; flex-direction: column; gap: .6rem; z-index: 90; }
.float-btn { width: 3.4rem; height: 3.4rem; border-radius: 999px; display: grid; place-items: center; font-size: 1.4rem; text-decoration: none; box-shadow: 0 10px 24px rgba(40,28,10,.35); transition: transform .15s, box-shadow .15s; border: none; cursor: pointer; }
.float-btn:hover { transform: scale(1.08); }
.float-btn-wa { background: #25d366; color: #fff; }
.float-btn-tel { background: var(--brand); color: #fff; }
@media (min-width: 960px) { .float-actions { display: none; } }

/* ── Cookie Consent ──────────────────────────────────────────────────────── */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: var(--surface); border-top: 1px solid var(--border); padding: 1rem 1.4rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; justify-content: space-between; box-shadow: 0 -10px 30px rgba(40,28,10,.12); }
.cookie-banner[hidden] { display: none !important; }
.cookie-banner p { margin: 0; font-size: .875rem; color: var(--muted); flex: 1; min-width: 200px; }
.cookie-banner a { color: var(--brand); }
.cookie-btn-accept { background: var(--brand); color: #fff; border: none; border-radius: 999px; padding: .65rem 1.4rem; font-weight: 700; font-size: .875rem; cursor: pointer; white-space: nowrap; min-height: 44px; }
.cookie-btn-close { background: none; border: 1px solid var(--border-light); border-radius: 999px; color: var(--muted); padding: .65rem 1rem; font-size: .875rem; cursor: pointer; white-space: nowrap; min-height: 44px; }

/* ── Accessibility ───────────────────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 6px; }
.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--brand); color: #fff; padding: .5rem 1rem; border-radius: 0 0 .5rem .5rem; font-weight: 700; z-index: 999; }
.skip-link:focus { top: 0; }

/* ── Utilities ───────────────────────────────────────────────────────────── */
.mt-sm { margin-top: .5rem; } .mt-md { margin-top: 1rem; } .mt-lg { margin-top: 1.5rem; }
.mt-xl { margin-top: 2rem; } .mt-xxl { margin-top: 3rem; }
.max-prose { max-width: 48rem; } .max-narrow { max-width: 52rem; }
.flex-wrap-gap { display: flex; flex-wrap: wrap; gap: 1rem; }
.flex-center { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.hero-lead { font-size: 1.18rem; color: var(--muted); margin-top: 1.4rem; max-width: 36rem; }
.feature-list { list-style: none; padding: 0; margin: .75rem 0 0; color: var(--muted); line-height: 2.15; }
.font-sm { font-size: .875rem; }
.alt-bg { background: var(--bg-2); border-block: 1px solid var(--border); }

@media (max-width: 768px) {
  .hero-photo-wrap { order: -1; max-width: 340px; }
  .coach-coaching-intro { display: flex; flex-direction: column; }
  .coach-coaching-intro .coach-photo-wrap { order: -1; max-width: 340px; margin: 0 auto 1rem; }
  .section { padding: 4rem 0; }
}
