/* ============================================================
   GOLDEN OAK COMBAT CLUB — shared design system
   Dark athletic black/gold. Barlow Condensed display, Inter body.
   Used by every page. See SITE-SPEC.md for the token source.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --black: #0e0e0e;        /* page background */
  --charcoal: #181818;     /* cards / alternate sections */
  --charcoal-2: #222222;   /* borders / elevation */
  --gold: #fde256;         /* primary — matches logo */
  --gold-deep: #e3c435;    /* hover / accents */
  --bone: #f5f2ea;         /* light sections / text on dark */
  --gray-text: #b7b2a6;    /* secondary text on dark */
  --ink: #1c1a15;          /* text on light */

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --radius: 2px;
  --container: 1160px;
  --section-pad: clamp(4rem, 8vw, 6.5rem);
  --nav-height: 72px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 12px);
}

body {
  margin: 0;
  background: var(--black);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-deep); }

ul { padding-left: 1.2rem; }

::selection { background: var(--gold); color: var(--black); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(3.25rem, 8vw, 4.5rem); }   /* 52–72px */
h2 { font-size: clamp(2.25rem, 5vw, 3.25rem); }  /* 36–52px */
h3 { font-size: clamp(1.5rem, 3vw, 1.9rem); }
h4 { font-size: 1.25rem; }

p { margin: 0 0 1.1em; }

.text-gold { color: var(--gold); }

.lead {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--gray-text);
}

/* Small gold label above a heading */
.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

.section { padding-block: var(--section-pad); }
.section--charcoal { background: var(--charcoal); }
.section--bone { background: var(--bone); color: var(--ink); }
.section--bone .lead,
.section--bone .card-text { color: #55503f; }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }

/* Centered CTA row after a section's content */
.section-cta { text-align: center; margin-top: clamp(2rem, 5vw, 3rem); }

/* ---------- Buttons ----------
   Solid buttons carry a clipped corner (echoes the logo's triangle
   geometry); hovers translate up-left with a hard offset shadow —
   sharp and athletic, no bounce. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.15rem;
  line-height: 1;
  padding: 1.05rem 2.2rem;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  min-height: 44px;
  transition: background-color 0.15s ease, border-color 0.15s ease,
              color 0.15s ease, transform 0.15s ease, filter 0.15s ease;
}

/* Arrow glyph on full-size buttons (nav-size buttons stay clean) */
.btn::after {
  content: "\2192";
  font-weight: 800;
  transition: transform 0.15s ease;
}
.btn--sm::after { content: none; }
.btn:hover::after,
.btn:focus-visible::after { transform: translateX(4px); }

/* Clipped corner on solid CTAs only (outline borders would break at the cut) */
.btn--primary,
.cta-band .btn--dark {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}

.btn--primary { background: var(--gold); color: var(--black); }
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--bone);
  border-color: var(--bone);
  color: var(--black);
  transform: translate(-2px, -2px);
  filter: drop-shadow(4px 4px 0 var(--gold-deep)); /* follows the clipped shape */
}

.btn--outline { background: transparent; color: var(--gold); }
.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.btn--lg { font-size: 1.35rem; padding: 1.2rem 2.7rem; }
.btn--sm { font-size: 1rem; padding: 0.7rem 1.3rem; }
.btn--primary.btn--sm {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}

/* ---------- Sticky nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid var(--charcoal-2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--nav-height);
}

.nav-logo img { height: 40px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex: 1;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
  color: var(--bone);
  padding: 0.5rem 0.15rem;
  display: inline-block;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

/* Narrow desktop (961–1180px): tighten so the menu never wraps */
@media (min-width: 961px) and (max-width: 1180px) {
  .nav-menu { gap: 1.1rem; }
  .nav-links { gap: 0.95rem; }
  .nav-links a { font-size: 1rem; letter-spacing: 0.04em; }
  .nav-actions { gap: 0.9rem; }
  .brand-sub { display: none; }
}

.nav-links a:hover,
.nav-links a:focus-visible { color: var(--gold); }
.nav-links a[aria-current="page"] { color: var(--gold); border-bottom-color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 1.25rem; }

.nav-phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--bone);
  white-space: nowrap;
}
.nav-phone:hover { color: var(--gold); }

/* Hamburger (hidden on desktop) */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--gold);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--gold);
  color: var(--black);
  padding-block: 0.7rem;
}

.trust-strip ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-strip li {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 1rem;
  white-space: nowrap;
}

.trust-strip li + li::before { content: "\00B7"; margin-right: 2.5rem; font-weight: 800; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,14,14,0.55) 0%, rgba(14,14,14,0.35) 40%, rgba(14,14,14,0.92) 100%);
}
/* Full-bleed page heroes: keep the copy column readable and the photo's
   subjects out from under the text - push subjects right, shade the left. */
.hero--page .hero-media img { object-position: 72% 30%; }
.hero--page .hero-media::after {
  background:
    linear-gradient(90deg, rgba(14,14,14,0.88) 0%, rgba(14,14,14,0.62) 38%, rgba(14,14,14,0.18) 68%, rgba(14,14,14,0.30) 100%),
    linear-gradient(180deg, rgba(14,14,14,0.25) 0%, rgba(14,14,14,0.15) 55%, rgba(14,14,14,0.9) 100%);
}

.hero-content {
  padding-block: clamp(3.5rem, 9vw, 6rem);
  max-width: 780px;
}

.hero .lead { max-width: 560px; color: var(--bone); opacity: 0.92; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

/* The anxiety-killer line — gold rule, quiet confidence */
.hero-note {
  margin-top: 1.75rem;
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 460px;
}

/* Small text link under the hero CTAs (e.g. "what to expect") */
.hero-sublink {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--gray-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  min-height: 44px;
  line-height: 44px;
}
.hero-sublink:hover, .hero-sublink:focus-visible { color: var(--gold); }

/* ---------- Split hero (homepage): copy left, tall photo bleeding
   to the top/right edge with a gold accent rule ---------- */
.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 6.5fr) minmax(0, 5fr);
  align-items: center;
  min-height: min(82vh, 780px);
  background: var(--black);
}

/* Photo sits first in the DOM (so it stacks on top on mobile) but
   renders on the right on desktop */
.hero-split .hero-photo { order: 2; }

.hero-split .hero-copy {
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
  padding-right: clamp(1.5rem, 4vw, 3.5rem);
  /* Align the copy's left edge with .container content */
  padding-left: max(clamp(1.25rem, 4vw, 2rem), calc((100vw - var(--container)) / 2));
  max-width: 720px;
}

.hero-split .hero-ctas { margin-top: 1.75rem; }

/* Headline shares the row with the photo — scale a touch tighter
   than the full-bleed hero so it never wraps mid-word */
.hero-split h1 { font-size: clamp(3rem, 6vw, 4.25rem); }

.hero-photo {
  position: relative;
  align-self: stretch;
  border-left: 4px solid var(--gold);
}
.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
/* Soft blend into the dark copy column */
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 14, 14, 0.35) 0%, rgba(14, 14, 14, 0) 28%);
  pointer-events: none;
}

@media (max-width: 860px) {
  .hero-split { display: block; min-height: 0; }
  .hero-photo {
    border-left: 0;
    border-bottom: 3px solid var(--gold);
    aspect-ratio: 4 / 5;
  }
  .hero-photo img { position: static; height: 100%; }
  .hero-photo::after {
    background: linear-gradient(180deg, rgba(14, 14, 14, 0.15) 60%, rgba(14, 14, 14, 0.75) 100%);
  }
  .hero-split .hero-copy { padding-block: 2.5rem 3rem; max-width: none; }
}

/* ---------- Cards / programs grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--charcoal);
  border: 1px solid var(--charcoal-2);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.card:hover { border-color: var(--gold-deep); transform: translateY(-3px); }

.card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }

.card-tag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius);
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.card-text { color: var(--gray-text); font-size: 1rem; margin: 0; flex: 1; }

.card-link {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
  margin-top: 1rem;
  display: inline-block;
  min-height: 44px;
  line-height: 44px;
}
.card-link::after { content: " \2192"; }

/* Buttons inside a card body (text-only cards, e.g. waitlist cards) */
.card-body .btn { margin-top: 1rem; align-self: flex-start; }

/* Make an entire card clickable via a stretched link on its heading */
.card { position: relative; }
.card-cover-link::after { content: ""; position: absolute; inset: 0; }
.card-cover-link { color: inherit; }
.card-cover-link:hover { color: inherit; }

/* Featured card (flagship program) — full row, split layout */
.card--featured { grid-column: 1 / -1; flex-direction: row; }
.card--featured .card-media { aspect-ratio: auto; flex: 1 1 46%; min-height: 320px; }
.card--featured .card-body { flex: 1 1 54%; justify-content: center; padding: clamp(1.5rem, 4vw, 3rem); }
.card--featured .card-text { flex: 0 1 auto; font-size: 1.05rem; }

/* ---------- Coach preview strip ---------- */
.coach-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.coach-card { text-align: center; }
.coach-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--charcoal-2);
  margin-bottom: 1rem;
}
.coach-card h3 { margin-bottom: 0.2em; }
.coach-card .coach-creds { color: var(--gray-text); font-size: 0.95rem; margin: 0; }

/* ---------- Value blocks (Why Golden Oak) ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem 1.75rem;
}

.value-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.4rem;
}

.value h3 { font-size: 1.35rem; }
.value p { color: var(--gray-text); font-size: 1rem; margin: 0; }
.section--bone .value p { color: #55503f; }

/* ---------- Testimonials ----------
   Verbatim member quotes: charcoal-adjacent cards with a gold accent
   rule. Lead card spans the row as a large pull-quote. */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: #131313;
  border: 1px solid var(--charcoal-2);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.testimonial blockquote {
  margin: 0 0 1rem;
  color: var(--bone);
  font-size: 1.05rem;
  flex: 1;
}

.testimonial blockquote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 0.6;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.testimonial figcaption {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
  color: var(--gray-text);
}
.testimonial figcaption::before { content: "\2014\00A0"; color: var(--gold); }

/* Lead pull-quote card — full row, display type */
.testimonial--lead { grid-column: 1 / -1; padding: clamp(1.75rem, 4vw, 2.75rem); }
.testimonial--lead blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.25;
  color: var(--bone);
  max-width: 26em;
}

/* Landscape community photo under the quotes */
.testimonials-photo {
  margin-top: 1.5rem;
  border: 1px solid var(--charcoal-2);
  border-radius: var(--radius);
  overflow: hidden;
}
.testimonials-photo img { width: 100%; height: auto; }

/* ---------- Schedule table ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.schedule-table th,
.schedule-table td {
  border: 1px solid var(--charcoal-2);
  padding: 0.9rem 1rem;
  text-align: left;
  vertical-align: top;
  font-size: 1rem;
}

.schedule-table thead th {
  background: var(--charcoal);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.05rem;
  color: var(--gold);
}

.schedule-table tbody th {
  background: var(--charcoal);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
  white-space: nowrap;
}

.schedule-table .slot-time {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.schedule-note { color: var(--gray-text); margin-top: 1.25rem; font-size: 1rem; }

/* Schedule + tall side photo (open-mat energy next to the class table) */
.schedule-split {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(240px, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.schedule-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--charcoal-2);
  border-radius: var(--radius);
}
.schedule-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 960px) {
  .schedule-split { grid-template-columns: 1fr; }
  .schedule-photo { aspect-ratio: 4 / 3; }
}

/* ---------- Forms (used on free-class / kids waitlist) ---------- */
.form {
  background: var(--charcoal);
  border: 1px solid var(--charcoal-2);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 560px;
}

.form-grid { display: grid; gap: 1.1rem; }

.form-field { display: flex; flex-direction: column; gap: 0.35rem; }

.form-field label {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  color: var(--bone);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--black);
  border: 1px solid var(--charcoal-2);
  border-radius: var(--radius);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 0.9rem;
  min-height: 44px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}

.form .btn { width: 100%; margin-top: 0.5rem; }

.form-fallback { color: var(--gray-text); font-size: 1rem; margin-top: 1.1rem; text-align: center; }

/* ---------- Final CTA band ---------- */
.cta-band {
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding-block: clamp(3.5rem, 7vw, 5rem);
}

.cta-band h2 { font-size: clamp(2.5rem, 6vw, 3.75rem); color: var(--black); }

.cta-band p { max-width: 560px; margin-inline: auto; font-weight: 500; }

.cta-band .btn--dark {
  background: var(--black);
  border-color: var(--black);
  color: var(--gold);
}
.cta-band .btn--dark:hover,
.cta-band .btn--dark:focus-visible {
  background: #262626;
  border-color: #262626;
  color: var(--gold);
  transform: translate(-2px, -2px);
  filter: drop-shadow(4px 4px 0 rgba(14, 14, 14, 0.3));
}

.cta-band .cta-phone {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--black);
}
.cta-band .cta-phone:hover { color: #3a3427; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--charcoal-2);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  font-size: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand img { height: 44px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: var(--gray-text); max-width: 280px; }

.footer-col h4 {
  color: var(--gold);
  letter-spacing: 0.12em;
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
}

.footer-col address { font-style: normal; color: var(--gray-text); }
.footer-col p, .footer-col li { color: var(--gray-text); }

.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.45rem; }
.footer-col a { color: var(--gray-text); }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--charcoal-2);
  padding-block: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  color: var(--gray-text);
  font-size: 0.9rem;
}

/* ---------- Subpage hero (shorter than homepage) ---------- */
.hero--page { min-height: min(70vh, 620px); }

/* ---------- Credential chips (coach creds under a headline) ---------- */
.cred-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
}

.cred-list li {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  color: var(--gold);
  border: 1px solid var(--gold-deep);
  border-radius: var(--radius);
  padding: 0.35rem 0.75rem;
  white-space: nowrap;
}

/* ---------- Split section (text + media, alternating) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--charcoal-2);
  border-radius: var(--radius);
}

/* Put the media on the right on desktop (source order: media first) */
.split--media-right .split-media { order: 2; }

/* Small portrait (e.g. 300x400 coach photo) — don't stretch past native size */
.split-media--portrait img {
  width: min(100%, 340px);
  margin-inline: auto;
}

/* ---------- Feature list (gold square bullets) ---------- */
.feature-list {
  list-style: none;
  margin: 1.25rem 0;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.6rem;
  color: var(--gray-text);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--gold);
}

.section--bone .feature-list li { color: #55503f; }

/* ---------- FAQ accordion (native details/summary) ---------- */
.faq { max-width: 760px; }

.faq details {
  background: var(--charcoal);
  border: 1px solid var(--charcoal-2);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}

.faq summary {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.15rem;
  padding: 1rem 3rem 1rem 1.25rem;
  cursor: pointer;
  min-height: 44px;
  list-style: none;
  position: relative;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.faq details[open] summary::after { content: "\2212"; }

.faq details > p {
  padding: 0 1.25rem 1.1rem;
  margin: 0;
  color: var(--gray-text);
}

.faq details > ul {
  padding: 0 1.25rem 1.1rem 2.5rem;
  margin: 0;
  color: var(--gray-text);
}

/* ---------- Responsive: split collapses to one column ---------- */
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--media-right .split-media { order: 0; }
}

/* ---------- Utilities ---------- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-toggle { display: block; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    border-bottom: 1px solid var(--charcoal-2);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem clamp(1.25rem, 4vw, 2rem) 1.5rem;
    gap: 1rem;
  }
  .nav-menu.is-open { display: flex; }

  .nav-links { flex-direction: column; gap: 0; }
  .nav-links a { display: block; padding: 0.7rem 0.15rem; font-size: 1.2rem; border-bottom: 0; }
  .nav-links a[aria-current="page"] { border-bottom: 0; }

  .nav-actions { flex-direction: column; align-items: stretch; text-align: center; gap: 0.9rem; }
  .nav-actions .btn { width: 100%; }
  .nav-phone { padding: 0.5rem 0; font-size: 1.2rem; }

  .card--featured { flex-direction: column; }
  .card--featured .card-media { min-height: 0; aspect-ratio: 16 / 10; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }

  .hero { min-height: 78vh; }
  .hero-ctas .btn { width: 100%; text-align: center; }

  .trust-strip ul { flex-direction: column; align-items: center; gap: 0.35rem; }
  .trust-strip li + li::before { content: none; margin: 0; }

  .cta-band .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card, .card:hover { transition: none; transform: none; }
  .btn, .btn::after { transition: none; }
  .btn:hover, .btn:focus-visible { transform: none; }
  .btn:hover::after, .btn:focus-visible::after { transform: none; }
}

/* ---------- Focus visibility (keyboard users) ---------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.btn--primary:focus-visible,
.trust-strip :focus-visible,
.cta-band :focus-visible { outline-color: var(--black); }

/* ===== Brand lockup: emblem image + live text (crisp at any size) ===== */
.nav-logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 44px; height: auto; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 22px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold);
}
.brand-sub {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 4.5px; text-transform: uppercase;
  color: var(--bone);
}
.footer-brand .brand-lockup { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.footer-brand .brand-mark { width: 52px; }
@media (max-width: 480px) {
  .brand-sub { display: none; }
  .brand-name { font-size: 20px; }
}

/* Gymdesk embedded widgets: give them a card surface on our dark pages */
.gymdesk-embed {
  background: var(--bone); border-radius: 2px; padding: 24px;
}

/* Funnel page: step headings between booking widget and fallback form */
.funnel-step-head {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: 1rem;
}
.funnel-step-head--alt {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--charcoal-2);
}
