/* ============================================================
   EVO Martial Arts — shared stylesheet
   Design tokens follow the original Claude Design mockup.
   ============================================================ */

:root {
  --bg: #000000;
  --bg-panel: #0a0a0c;
  --bg-card: #0e0e11;
  --border: #2c2c30;
  --text: #f4f4f5;
  --text-muted: #c2c2c6;
  --text-faint: #7d7d85;
  --gold: #d8b06a;
  --gold-soft: #c9a15f;
  --blue: #5b9fd6;
  --blue-strong: #2f6fb0;
  --blue-hover: #3a7ec0;
  --star: #d9ab4a;

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --section-pad-y: 64px;
  --section-pad-x: clamp(20px, 4vw, 56px);
  --max-width: 1280px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: var(--blue); text-decoration: none; }
a:hover { color: #7db3e0; }
::selection { background: var(--blue-strong); color: white; }
img, video { max-width: 100%; display: block; }
h1, h2, h3 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
}
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}
.section {
  padding: var(--section-pad-y) var(--section-pad-x);
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-strong);
  color: white;
  border: 2px solid var(--gold);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Anton', sans-serif;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: var(--blue-hover); color: white; }
.btn:focus-visible { outline: 3px solid #a9cdec; outline-offset: 3px; }
.btn.btn-block { display: flex; width: 100%; }
.btn.btn-ghost {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text);
}
.btn.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }

@keyframes ctaPop {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(47,111,176,0.6); }
  50% { transform: scale(1.06); box-shadow: 0 0 0 14px rgba(47,111,176,0); }
}
@keyframes ctaMega {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47,111,176,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(47,111,176,0); }
}
@keyframes ctaWidgetPulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(0,0,0,0.5), 0 0 0 0 rgba(47,111,176,0.6); }
  50% { box-shadow: 0 4px 14px rgba(0,0,0,0.5), 0 0 0 8px rgba(47,111,176,0); }
}
.cta-pop { animation: ctaPop 1.8s ease-in-out infinite; }
.cta-mega { animation: ctaMega 2.6s ease-in-out infinite; }
.cta-widget { animation: ctaWidgetPulse 2s ease-in-out infinite; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 400;
  background: rgba(10,10,12,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(216,176,106,0.25);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px var(--section-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 40px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  font-size: 14px;
}
.nav-links a.plain { color: var(--text-muted); }
.nav-links a.plain:hover { color: var(--blue); }
.nav-back { color: var(--text-muted); font-weight: 600; font-size: 14px; }
.nav-back:hover { color: var(--gold); }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}
.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 20px var(--section-pad-x) 28px;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--border);
}
.nav-drawer.open { display: flex; }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- Widget button ---------- */
.widget-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--blue-strong);
  color: white;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 14px rgba(0,0,0,0.5);
}
.widget-btn:hover { background: var(--blue-hover); }
.widget-btn.visible { display: flex; }

/* ---------- Popup ---------- */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup-overlay.open { display: flex; }
.popup-card {
  position: relative;
  background: var(--bg-card);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  max-width: 420px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  overflow: hidden;
}
.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.4);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  font-size: 18px;
  z-index: 2;
}
.popup-card img { width: 100%; height: 200px; object-fit: cover; }
.popup-body { padding: 24px 26px 26px; }
.popup-body h3 { font-size: 26px; margin: 0 0 12px; }
.popup-body p { color: var(--text-muted); font-size: 14px; line-height: 1.55; margin: 0 0 18px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.92) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 64px var(--section-pad-x) 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.hero h1 { font-size: clamp(40px, 7vw, 76px); margin-bottom: 16px; }
.hero p.lead { font-size: 18px; color: var(--text-muted); max-width: 560px; margin: 0 0 26px; line-height: 1.5; }
.stat-strip {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}
.stat-tile {
  background: rgba(14,14,17,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
}
.stat-tile .stat-value { font-family: 'Anton', sans-serif; font-size: 20px; text-transform: uppercase; }
.stat-tile .stat-label { font-size: 11px; letter-spacing: 1.5px; color: var(--text-faint); margin-top: 4px; }

/* ---------- Generic page header (non-home pages) ---------- */
.page-header { text-align: center; padding: 56px var(--section-pad-x) 32px; max-width: 720px; margin: 0 auto; }
.page-header h1 { font-size: clamp(34px, 6vw, 54px); margin: 10px 0 14px; }
.page-header p.lead { color: var(--text-muted); font-size: 16px; line-height: 1.6; }
.page-header .logo-repeat { height: 44px; margin: 0 auto 18px; }

/* ---------- Section headings ---------- */
.section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 5vw, 42px); margin-bottom: 12px; }
.section-head p { color: var(--text-muted); font-size: 16px; line-height: 1.6; }

/* ---------- Program cards ---------- */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 8px;
}
.program-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.program-card .thumb { width: 100%; height: 160px; object-fit: cover; background: #1a1a1f; }
.program-card .thumb.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #14141a, #1c1c22);
}
.program-card .body { padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.program-card .age-badge {
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 700;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 3px 8px;
  margin-bottom: 10px;
}
.program-card h3 { font-size: 18px; margin-bottom: 8px; }
.program-card p { color: var(--text-muted); font-size: 14px; line-height: 1.5; flex: 1; margin: 0 0 14px; }
.program-card .see-schedule { font-size: 13px; font-weight: 700; color: var(--blue); }

/* ---------- Schedule table ---------- */
.schedule-wrap { margin-top: 48px; }
.schedule-wrap h3 { font-size: 22px; margin-bottom: 20px; }
.schedule-table { width: 100%; border-collapse: collapse; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.schedule-table th, .schedule-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.schedule-table th { color: var(--gold); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; }
.schedule-table td.ages { color: var(--text-muted); }
.schedule-table td.times { color: var(--text-muted); }
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-scroll { overflow-x: auto; }

/* ---------- Results ---------- */
.results-section {
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.results-grid img { border-radius: var(--radius-md); border: 1px solid var(--border); }
.results-grid .caption { font-size: 12px; color: var(--text-faint); margin-top: 8px; }
.results-grid h2 { font-size: clamp(26px, 4.5vw, 38px); margin: 6px 0 18px; }
.results-grid p { color: var(--text-muted); line-height: 1.6; margin: 0 0 14px; font-size: 15px; }
@media (max-width: 860px) { .results-grid { grid-template-columns: 1fr; } }

/* ---------- Feature strip ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 40px 0;
}
.feature-item .num { font-family: 'Anton', sans-serif; color: var(--gold); font-size: 14px; margin-bottom: 8px; }
.feature-item h3 { font-size: 17px; margin-bottom: 8px; }
.feature-item p { color: var(--text-muted); font-size: 14px; line-height: 1.55; margin: 0; }
.feature-caption { text-align: center; color: var(--text-muted); font-size: 14px; max-width: 640px; margin: 0 auto 28px; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.video-grid video { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius-md); border: 1px solid var(--border); }

/* ---------- Events grid ---------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.event-card .freq { font-size: 11px; letter-spacing: 1.5px; color: var(--gold); font-weight: 700; margin-bottom: 10px; }
.event-card h3 { font-size: 18px; margin-bottom: 8px; }
.event-card p { color: var(--text-muted); font-size: 14px; line-height: 1.55; margin: 0 0 14px; }

/* ---------- Event list page (Events.html) ---------- */
.event-row {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-bottom: 16px;
}
.event-row .freq { font-size: 11px; letter-spacing: 1.5px; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
.event-row h3 { font-size: 19px; margin-bottom: 8px; }
.event-row p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin: 0 0 14px; }
.event-row .toggle-more { color: var(--blue); font-weight: 700; font-size: 13px; background: none; border: none; padding: 0; }
.event-row .more-text { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-top: 10px; display: none; }
.event-row .more-text.open { display: block; }
.event-row .row-cta { margin-top: 4px; }

/* ---------- Testimonial carousel ---------- */
.reviews-section { max-width: 2560px; margin: 0 auto; overflow: hidden; }
.carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px var(--section-pad-x);
  overflow-x: hidden;
  scroll-behavior: smooth;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: min(420px, 86vw);
  transition: transform 0.4s ease, opacity 0.4s ease;
  flex-shrink: 0;
}
.review-card .stars { color: var(--star); font-size: 14px; margin-bottom: 10px; }
.review-card .name { font-weight: 700; margin-bottom: 6px; font-size: 14px; }
.review-card .badge { font-size: 11px; color: var(--text-faint); margin-bottom: 10px; }
.review-card p { color: var(--text-muted); font-size: 14px; line-height: 1.55; margin: 0; }
.review-card mark { background: rgba(217,171,74,0.22); color: #f2d9a0; padding: 0 2px; }
.carousel-controls { display: flex; justify-content: center; gap: 14px; margin-top: 20px; }
.carousel-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border); color: var(--text);
  display: flex; align-items: center; justify-content: center;
}
.carousel-arrow:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Membership ---------- */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  align-items: stretch;
}
.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan-card.featured { border-color: var(--blue-strong); transform: scale(1.03); }
.plan-card .ribbon {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #1a1305; font-size: 10px; font-weight: 800;
  letter-spacing: 1px; padding: 4px 10px; border-radius: var(--radius-sm);
}
.plan-card h3 { font-size: 16px; margin-bottom: 10px; }
.plan-card .price { font-family: 'Anton', sans-serif; font-size: 32px; margin-bottom: 4px; }
.plan-card .price span { font-size: 13px; font-family: 'Inter', sans-serif; color: var(--text-faint); font-weight: 500; text-transform: none; }
.plan-card p.desc { color: var(--text-muted); font-size: 13px; line-height: 1.5; flex: 1; margin: 0 0 18px; }
.membership-footnote { text-align: center; color: var(--text-muted); font-size: 14px; margin-top: 28px; }

/* ---------- Visit / map ---------- */
.visit-section { background: var(--bg-panel); border-top: 1px solid var(--border); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; max-width: var(--max-width); margin: 0 auto; }
.visit-info h2 { font-size: clamp(26px, 4.5vw, 38px); margin-bottom: 18px; }
.visit-info .row { display: flex; gap: 12px; margin-bottom: 14px; font-size: 15px; color: var(--text-muted); }
.visit-info .row a { color: var(--text); }
.visit-info .row a:hover { color: var(--blue); }
.map-embed { width: 100%; height: 320px; border: 1px solid var(--border); border-radius: var(--radius-md); }
@media (max-width: 860px) { .visit-grid { grid-template-columns: 1fr; } }

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; padding: 72px var(--section-pad-x); }
.final-cta h2 { font-size: clamp(28px, 5vw, 44px); margin-bottom: 14px; }
.final-cta p { color: var(--text-muted); margin: 0 0 28px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-panel); border-top: 1px solid var(--border); padding: 48px var(--section-pad-x) 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; max-width: var(--max-width); margin: 0 auto; }
.footer-brand img { height: 36px; margin-bottom: 14px; }
.footer-brand p { color: var(--text-faint); font-size: 13px; line-height: 1.6; max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-size: 12px; letter-spacing: 1.5px; color: var(--gold); margin: 0 0 16px; text-transform: uppercase; }
.footer-col a, .footer-col p { display: block; color: var(--text-faint); font-size: 13px; margin-bottom: 10px; line-height: 1.5; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom { max-width: var(--max-width); margin: 32px auto 0; padding-top: 20px; border-top: 1px solid var(--border); color: var(--text-faint); font-size: 12px; text-align: center; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Forms (signup pages / book trial) ---------- */
.form-shell { max-width: 480px; margin: 0 auto; padding: 24px var(--section-pad-x) 72px; }
.form-panel { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 7px; }
.field input, .field select {
  width: 100%;
  background: #141418;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
}
.field input:focus, .field select:focus { outline: 2px solid var(--blue); border-color: var(--blue); }
.field-check { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.field-check input { width: auto; margin-top: 3px; }
.field-divider { border: none; border-top: 1px solid var(--border); margin: 22px 0 16px; }
.field-note { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-faint); margin-bottom: 12px; }
.form-footer-note { text-align: center; color: var(--text-faint); font-size: 13px; margin-top: 20px; }

/* Confirmation panel */
.confirm-panel { display: none; text-align: center; }
.confirm-panel.show { display: block; }
.form-panel.hidden { display: none; }

/* ---------- Step progress indicator ---------- */
.step-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 24px;
  padding: 0 var(--section-pad-x);
}
.step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  color: var(--text-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.step-dot.active {
  border-color: var(--gold);
  color: var(--gold);
}
.step-dot.done {
  border-color: var(--blue-strong);
  background: var(--blue-strong);
  color: white;
}
.step-line {
  width: 32px;
  height: 1.5px;
  background: var(--border);
}

/* ---------- Step panel transitions ---------- */
.step-panel {
  animation: stepFadeIn 0.3s ease;
}
@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Iframe booking step ---------- */
.iframe-panel { padding: 0; overflow: hidden; }
.iframe-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.iframe-newtab-link {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
}
.iframe-newtab-link:hover { color: var(--blue); }
.iframe-caption {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--text-faint);
  margin: 10px 0 0;
}
.iframe-wrap {
  position: relative;
  margin-top: 10px;
}
.iframe-wrap iframe {
  width: 100%;
  height: 700px;
  border: 0;
  display: block;
  background: white;
}
.iframe-loading {
  position: absolute;
  inset: 0;
  background: #0e0e11;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 13px;
  transition: opacity 0.25s ease;
}
.iframe-loading.hidden { opacity: 0; pointer-events: none; }
.spinner {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Book Trial step 2 program picker ---------- */
.program-picker { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.program-pick-btn {
  text-align: left;
  background: #141418;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}
.program-pick-btn:hover { border-color: var(--gold); }
.program-pick-btn.selected { background: var(--blue-strong); border-color: var(--gold); color: white; }
.step-back { background: none; border: none; color: var(--text-muted); font-size: 13px; font-weight: 600; padding: 0; margin-bottom: 16px; }
.step-back:hover { color: var(--gold); }

/* Contact icons row (book trial footer) */
.contact-icons { display: flex; justify-content: center; gap: 16px; margin-top: 18px; }
.contact-icons a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); }
.contact-icons a:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Coaches ---------- */
.coach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.coach-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.coach-card .photo { width: 100%; height: 220px; object-fit: cover; background: #1a1a1f; }
.coach-card .photo.placeholder {
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-family: 'Anton', sans-serif; font-size: 32px;
  background: linear-gradient(135deg, #14141a, #1c1c22);
}
.coach-card .body { padding: 16px 18px 20px; }
.coach-card h3 { font-size: 16px; margin-bottom: 2px; }
.coach-card .role { font-size: 12px; color: var(--gold); font-weight: 700; letter-spacing: 0.5px; margin-bottom: 10px; }
.coach-card p { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* ---------- News / announcements ---------- */
.news-list { display: flex; flex-direction: column; gap: 14px; max-width: 720px; margin: 0 auto; }
.news-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  gap: 18px;
  align-items: baseline;
}
.news-item .news-date { font-size: 11px; letter-spacing: 1px; color: var(--gold); font-weight: 700; white-space: nowrap; text-transform: uppercase; }
.news-item .news-body h3 { font-size: 15px; margin-bottom: 6px; }
.news-item .news-body p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }
@media (max-width: 560px) { .news-item { flex-direction: column; gap: 6px; } }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
