/* ============================================================
   JW Athletics — Global Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600&display=swap');

:root {
  --color-black:    #111111;
  --color-maroon:   #6b2d3a;
  --color-athletic-blue: #0000ff;
  --color-stadium-grey: #e0e0e0;
  --color-gold:     #c8961a;
  --color-gold-hover: #b07e12;
  --color-white:    #ffffff;
  --color-charcoal: #1e1e1e;
  --color-dark:     #2a2a2a;
  --color-muted:    #888888;

  --font-heading: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --nav-height: 108px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-black);
  color: var(--color-white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ============================================================
   Shared Utilities
   ============================================================ */

.placeholder-img {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    #2a2a2a 0px,
    #2a2a2a 12px,
    #333 12px,
    #333 24px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease;
}

.btn--gold {
  background: var(--color-gold);
  color: var(--color-black);
}

.btn--gold:hover {
  background: var(--color-gold-hover);
}

.btn--gold .btn-arrow {
  font-size: 1rem;
}

.btn--outline {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.btn--outline:hover {
  background: rgba(200, 150, 26, 0.12);
}

/* ============================================================
   Navigation
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 100px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links li a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-white);
  transition: color 0.2s;
}

.nav__links li a:hover,
.nav__link--active {
  color: var(--color-gold);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ============================================================
   Social Sidebar (left rail)
   ============================================================ */

.social-sidebar {
  position: fixed;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.social-sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: color 0.2s;
}

.social-sidebar a:hover {
  color: var(--color-gold);
}

.social-sidebar svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  padding-left: 60px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: var(--nav-height);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.hero__bg .placeholder-img {
  font-size: 0.85rem;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: absolute;
  top: var(--nav-height);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.35) 60%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--color-white);
  margin-bottom: 16px;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-white);
  line-height: 1.5;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* ============================================================
   About Section
   ============================================================ */

.about {
  display: block;
  min-height: 0;
  background: var(--color-white);
}

.about__text {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 72px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.about__intro {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 28px;
}

.about__portrait {
  display: block;
  width: 200px;
  height: auto;
  flex-shrink: 0;
}

.about__copy {
  width: fit-content;
  max-width: 100%;
}

.about__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 3.6vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0.03em;
  color: #000000;
  margin-bottom: 14px;
  white-space: nowrap;
}

.about__divider {
  width: 100%;
  height: 2px;
  background: var(--color-athletic-blue);
  margin-bottom: 24px;
}

.about__body {
  font-size: 0.9rem;
  line-height: 1.68;
  color: #000000;
  width: 100%;
  max-width: none;
  text-align: left;
}

.about__body p {
  margin-bottom: 14px;
}

.about__body p:last-child {
  margin-bottom: 0;
}

.about__body ul {
  margin: 0 0 14px 1.2em;
}

.about__body ul li {
  margin-bottom: 4px;
}

/* ============================================================
   Booking Section
   ============================================================ */

.booking {
  background: var(--color-dark);
  padding: 80px 40px;
}

.booking__inner {
  max-width: 900px;
  margin: 0 auto;
}

.booking__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.08em;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 18px;
}

.booking__pricing-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.booking__pricing-cta .btn {
  padding: 16px 32px;
  font-size: 0.9rem;
}

.booking__pricing-cta .btn-arrow {
  font-size: 1.15rem;
}

/* ── Custom booking calendar root ─────────────────────────── */

.bk-calendar {
  background: #272727;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  padding: 28px;
}

.bk-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.bk-calendar__nav {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
  line-height: 1;
}

.bk-calendar__nav:hover:not(:disabled) {
  border-color: var(--color-athletic-blue);
  color: var(--color-athletic-blue);
}

.bk-calendar__nav:disabled {
  opacity: 0.25;
  cursor: default;
}

.bk-calendar__month-label {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.08em;
  color: var(--color-white);
  text-align: center;
}

.bk-calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}

.bk-calendar__weekdays span {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding: 6px 0 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bk-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-top: 8px;
}

/* ── Day cells ─────────────────────────────────────────────── */

.bk-day {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 2px;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  user-select: none;
}

.bk-day--empty {
  color: transparent;
  background: transparent;
  border-color: transparent;
}

.bk-day--empty-future {
  color: rgba(255, 255, 255, 0.35);
}

.bk-day--past {
  color: rgba(255, 255, 255, 0.28);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.15);
}

.bk-day--available {
  color: var(--color-white);
  background: var(--color-athletic-blue);
  cursor: pointer;
  transition: background 0.15s;
  font-weight: 700;
}

.bk-day--available:hover,
.bk-day--available:focus {
  background: #0000cc;
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}

.bk-day--full {
  color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.bk-day__dot {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-white);
}

.bk-day__badge {
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

/* ── Legend ────────────────────────────────────────────────── */

.bk-calendar__legend {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.bk-legend {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.bk-legend::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  flex-shrink: 0;
}

.bk-legend--available::before { background: var(--color-athletic-blue); }
.bk-legend--full::before      { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); }
.bk-legend--past::before      { background: rgba(255,255,255,0.08); }

/* ── Loading state ─────────────────────────────────────────── */

.bk-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 32px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ── Booking panel (session info + form) ───────────────────── */

.bk-panel {
  margin-top: 24px;
  background: var(--color-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--color-athletic-blue);
  border-radius: 2px;
}

.bk-panel__inner {
  padding: 32px 28px 36px;
  position: relative;
}

.bk-panel__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 2px;
  transition: border-color 0.2s;
}

.bk-panel__close:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.bk-panel__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--color-white);
  margin-bottom: 4px;
}

.bk-panel__subtitle {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 20px;
}

/* ── Session picker list ───────────────────────────────────── */

.bk-session-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.bk-session-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  text-align: left;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.15s, border-color 0.15s;
}

.bk-session-btn:hover {
  background: rgba(0, 0, 255, 0.15);
  border-color: var(--color-athletic-blue);
}

.bk-session-btn__title {
  font-weight: 600;
  font-size: 0.9rem;
  flex: 1;
}

.bk-session-btn__meta {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.bk-session-btn__spots {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
  white-space: nowrap;
}

/* ── Session info block (above form) ───────────────────────── */

.bk-session-info {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bk-session-info__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--color-white);
  margin-bottom: 4px;
}

.bk-session-info__meta,
.bk-session-info__location {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 6px;
}

.bk-session-info__spots {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* ── Booking form ──────────────────────────────────────────── */

.bk-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bk-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bk-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bk-form__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.bk-form__req {
  color: var(--color-athletic-blue);
}

.bk-form__input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px 14px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.bk-form__input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.bk-form__input:focus {
  border-color: var(--color-athletic-blue);
  background: rgba(0, 0, 255, 0.06);
}

.bk-form__error {
  background: rgba(200, 40, 40, 0.15);
  border: 1px solid rgba(200, 40, 40, 0.4);
  color: #ff8080;
  font-size: 0.83rem;
  padding: 10px 14px;
  border-radius: 2px;
}

.bk-form__submit {
  align-self: flex-start;
  margin-top: 6px;
  padding: 14px 32px;
  font-size: 0.85rem;
}

.bk-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ── Success screen ────────────────────────────────────────── */

.bk-success {
  text-align: center;
  padding-top: 48px;
  padding-bottom: 48px;
}

.bk-success__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-athletic-blue);
  font-size: 1.8rem;
  color: var(--color-white);
  margin: 0 auto 20px;
}

.bk-success__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: 0.06em;
  color: var(--color-white);
  margin-bottom: 12px;
}

.bk-success__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 460px;
  margin: 0 auto 28px;
}

.bk-success__btn {
  margin: 0 auto;
  padding: 12px 28px;
  font-size: 0.8rem;
}

.pricing-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.pricing-modal.is-open {
  display: flex;
}

.pricing-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.pricing-modal__dialog {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 980px);
  max-height: 92vh;
  background: var(--color-white);
  border: 3px solid var(--color-athletic-blue);
}

.pricing-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 2px solid var(--color-black);
  background: var(--color-white);
  color: var(--color-black);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.pricing-modal__image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 92vh;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .bk-form__row {
    grid-template-columns: 1fr;
  }

  .bk-session-btn {
    flex-wrap: wrap;
    gap: 8px;
  }

  .bk-calendar {
    padding: 16px 12px;
  }

  .bk-panel__inner {
    padding: 24px 18px 28px;
  }
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
  background: var(--color-charcoal);
  padding: 60px 60px 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__logo-img {
  height: 110px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.footer__socials {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-white);
  transition: color 0.2s;
}

.footer__socials a:hover {
  color: var(--color-gold);
}

.footer__socials svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  display: block;
}

.footer__contact h4,
.footer__menu h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 14px;
}

.footer__contact p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
}

.footer__menu ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__menu ul li a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
  position: relative;
  padding-left: 12px;
}

.footer__menu ul li a::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

.footer__menu ul li a:hover {
  color: var(--color-white);
}

.footer__bottom {
  padding: 20px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.06em;
}

/* ============================================================
   Speed School Page (sized for 100% zoom; reference mock was 67%)
   ============================================================ */

.page-speed-school .footer {
  background: var(--color-black);
}

.page-speed-school .footer__menu ul li a::before {
  content: '+';
  color: var(--color-gold);
}

.speed-school {
  padding-top: var(--nav-height);
}

.speed-school-hero {
  background: var(--color-black);
  padding: 105px 48px 90px;
  text-align: center;
}

.speed-school-hero__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.speed-school-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3.4rem, 9vw, 5.6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 22px;
}

.speed-school-hero__divider {
  width: 72px;
  height: 2px;
  background: var(--color-white);
  margin: 0 auto 36px;
}

.speed-school-hero__intro {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  max-width: 900px;
  margin: 0 auto;
}

.speed-school-detail {
  background: var(--color-dark);
  padding: 105px 48px 120px;
  text-align: center;
}

.speed-school-detail__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.speed-school-detail__body {
  font-size: clamp(0.95rem, 1.35vw, 1.1rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
  max-width: 960px;
  margin: 0 auto 48px;
}

.speed-school-detail__cta {
  min-width: 210px;
  justify-content: center;
  padding: 14px 36px;
  font-size: 0.85rem;
}

/* ============================================================
   About Page
   ============================================================ */

.page-about .footer {
  background: var(--color-black);
}

.page-about .footer__menu ul li a::before {
  content: '+';
  color: var(--color-athletic-blue);
}

.about-page {
  padding-top: var(--nav-height);
}

.about-intro {
  background: var(--color-white);
  padding: 105px 48px 90px;
  text-align: center;
}

.about-intro__inner {
  max-width: 900px;
  margin: 0 auto;
}

.about-intro__title {
  font-family: var(--font-heading);
  font-size: clamp(3.4rem, 9vw, 5.6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-black);
  line-height: 1;
  margin-bottom: 22px;
}

.about-intro__divider {
  width: min(620px, 72%);
  height: 3px;
  background: var(--color-athletic-blue);
  margin: 0 auto 48px;
}

.about-intro__content {
  text-align: left;
}

.about-intro__content p {
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  line-height: 1.85;
  color: var(--color-black);
  margin-bottom: 24px;
}

.about-intro__list {
  margin: 0 0 28px 1.2em;
}

.about-intro__list li {
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  line-height: 1.85;
  color: var(--color-black);
  margin-bottom: 6px;
  list-style: disc;
}

.about-coach-heading {
  background: var(--color-athletic-blue);
  padding: 72px 48px 64px;
  text-align: center;
}

.about-coach-heading__inner {
  max-width: 900px;
  margin: 0 auto;
}

.about-coach-heading__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 22px;
}

.about-coach-heading__divider {
  width: min(420px, 55%);
  height: 3px;
  background: var(--color-white);
  margin: 0 auto;
}

.about-coach-bio {
  background: var(--color-stadium-grey);
  padding: 80px 48px 100px;
}

.about-coach-bio__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 380px) 1fr;
  gap: 56px;
  align-items: start;
}

.about-coach-bio__photo img {
  display: block;
  width: 100%;
  height: auto;
}

.about-coach-bio__name {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-athletic-blue);
  line-height: 1;
  margin-bottom: 8px;
}

.about-coach-bio__role {
  font-size: 1rem;
  font-style: italic;
  color: var(--color-black);
  margin-bottom: 18px;
}

.about-coach-bio__rule {
  width: 100%;
  height: 1px;
  background: var(--color-athletic-blue);
  margin-bottom: 24px;
}

.about-coach-bio__body {
  font-size: clamp(0.92rem, 1.25vw, 1rem);
  line-height: 1.85;
  color: var(--color-black);
  margin-bottom: 28px;
}

.about-coach-bio__body p {
  margin-bottom: 1em;
}

.about-coach-bio__body p:last-child {
  margin-bottom: 0;
}

.about-coach-bio__label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-athletic-blue);
  margin-bottom: 10px;
}

.about-coach-bio__list {
  margin: 0 0 24px 1.1em;
}

.about-coach-bio__list li {
  font-size: clamp(0.92rem, 1.25vw, 1rem);
  line-height: 1.75;
  color: var(--color-black);
  margin-bottom: 4px;
  list-style: disc;
}

/* ============================================================
   Testimonials Page
   ============================================================ */

.page-testimonials .footer {
  background: var(--color-black);
}

.page-testimonials .footer__menu ul li a::before {
  content: '+';
  color: var(--color-athletic-blue);
}

.testimonials-page {
  padding-top: var(--nav-height);
}

.testimonials-intro {
  background: var(--color-white);
  padding: 105px 48px 90px;
  text-align: center;
}

.testimonials-intro__inner {
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-intro__title {
  font-family: var(--font-heading);
  font-size: clamp(3.4rem, 9vw, 5.6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-black);
  line-height: 1;
  margin-bottom: 22px;
}

.testimonials-intro__divider {
  width: min(620px, 72%);
  height: 3px;
  background: var(--color-athletic-blue);
  margin: 0 auto 36px;
}

.testimonials-intro__lead {
  font-size: clamp(0.95rem, 1.35vw, 1.15rem);
  line-height: 1.8;
  color: var(--color-black);
  max-width: 760px;
  margin: 0 auto;
}

.testimonials-grid {
  background: var(--color-stadium-grey);
  padding: 80px 48px 100px;
}

.testimonials-grid__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.testimonial-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--color-athletic-blue);
  padding: 48px 28px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card__mark {
  position: absolute;
  top: 14px;
  left: 24px;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--color-athletic-blue);
  opacity: 0.22;
  pointer-events: none;
}

.testimonial-card__quote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-black);
  margin: 0 0 24px;
  flex-grow: 1;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 18px;
  border-top: 1px solid var(--color-stadium-grey);
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-athletic-blue);
  line-height: 1.1;
}

.testimonial-card__role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.testimonials-cta {
  background: var(--color-athletic-blue);
  padding: 80px 48px 88px;
  text-align: center;
}

.testimonials-cta__inner {
  max-width: 760px;
  margin: 0 auto;
}

.testimonials-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 22px;
}

.testimonials-cta__divider {
  width: min(420px, 55%);
  height: 3px;
  background: var(--color-white);
  margin: 0 auto 28px;
}

.testimonials-cta__text {
  font-size: clamp(0.95rem, 1.35vw, 1.1rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 32px;
}

.testimonials-cta__btn {
  justify-content: center;
  padding: 14px 36px;
  font-size: 0.85rem;
}

/* ============================================================
   Football Academy / Plans Page
   ============================================================ */

.page-plans .footer {
  background: var(--color-black);
}

.page-plans .footer__menu ul li a::before {
  content: '+';
  color: var(--color-gold);
}

.plans {
  padding-top: var(--nav-height);
  background: var(--color-charcoal);
}

.plans-hero {
  padding: 72px 48px 56px;
}

.plans-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.plans-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 12px;
}

.plans-hero__title-rule {
  display: flex;
  align-items: flex-end;
  gap: 0;
  margin-bottom: 36px;
}

.plans-hero__title-accent {
  display: block;
  width: 120px;
  height: 2px;
  background: var(--color-gold);
  flex-shrink: 0;
}

.plans-hero__title-line {
  display: block;
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.plans-hero__intro {
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.9);
  max-width: 100%;
}

.plans-cards {
  padding: 0 48px 100px;
}

.plans-cards__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.plan-card {
  border: 1px solid rgba(255, 255, 255, 0.85);
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.plan-card__title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1.45;
  margin-bottom: 28px;
  min-height: 2.9em;
}

.plan-card__price {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.plan-card__price-currency {
  font-size: 0.85em;
}

.plan-card__desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 16px;
  flex-grow: 0;
}

.plan-card__validity {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
}

.plan-card__buy {
  display: block;
  width: calc(100% + 48px);
  margin: 0 -24px 28px;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  background: var(--color-gold);
  color: var(--color-black);
  border: none;
  cursor: not-allowed;
  opacity: 0.95;
}

.plan-card__features {
  margin: 0;
  padding: 0;
}

.plan-card__features li {
  position: relative;
  padding-left: 28px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 14px;
  list-style: none;
}

.plan-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  transform: rotate(-45deg);
}

/* ============================================================
   Stub Pages (shared inner page layout)
   ============================================================ */

.page-header {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 60px;
  padding-left: 60px;
  padding-right: 60px;
  background: var(--color-maroon);
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.03em;
}

.page-content {
  padding: 80px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.page-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
  .plans-cards__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .testimonials-grid__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 0 20px;
  }

  .nav__logo-img {
    height: 88px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--color-black);
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav--open .nav__links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__links li {
    width: 100%;
  }

  .nav__links li a {
    display: block;
    padding: 16px 24px;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
  }

  .nav--open .nav__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav--open .nav__toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav--open .nav__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .social-sidebar {
    display: none;
  }

  .hero {
    padding-left: 28px;
    padding-bottom: 60px;
  }

  .hero__img {
    object-position: center top;
  }

  .about {
    min-height: 0;
  }

  .about__text {
    padding: 52px 28px;
  }

  .about__intro {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .about__heading {
    white-space: normal;
  }

  .about__portrait {
    width: min(200px, 70vw);
  }

  .footer {
    padding: 48px 28px 0;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__socials {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .page-header,
  .page-content {
    padding-left: 28px;
    padding-right: 28px;
  }

  .pricing-modal {
    padding: 18px;
  }

  .pricing-modal__dialog {
    max-width: 96vw;
    max-height: 88vh;
  }

  .pricing-modal__image {
    max-height: 88vh;
  }

  .pricing-modal__close {
    top: 8px;
    right: 8px;
    width: 38px;
    height: 38px;
  }

  .speed-school-hero,
  .speed-school-detail {
    padding-left: 28px;
    padding-right: 28px;
  }

  .speed-school-hero {
    padding-top: 72px;
    padding-bottom: 64px;
  }

  .speed-school-detail {
    padding-top: 72px;
    padding-bottom: 80px;
  }

  .about-intro,
  .about-coach-heading,
  .about-coach-bio {
    padding-left: 28px;
    padding-right: 28px;
  }

  .about-intro {
    padding-top: 72px;
    padding-bottom: 64px;
  }

  .about-coach-heading {
    padding-top: 56px;
    padding-bottom: 48px;
  }

  .about-coach-bio {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .about-coach-bio__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-coach-bio__photo {
    max-width: 360px;
    margin: 0 auto;
  }

  .plans-hero,
  .plans-cards {
    padding-left: 28px;
    padding-right: 28px;
  }

  .plans-hero {
    padding-top: 56px;
    padding-bottom: 40px;
  }

  .plans-cards {
    padding-bottom: 72px;
  }

  .plans-cards__grid {
    max-width: none;
    gap: 36px;
  }

  .plan-card__title {
    min-height: 0;
  }

  .plan-card__buy {
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
  }

  .testimonials-intro,
  .testimonials-grid,
  .testimonials-cta {
    padding-left: 28px;
    padding-right: 28px;
  }

  .testimonials-intro {
    padding-top: 72px;
    padding-bottom: 64px;
  }

  .testimonials-grid {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .testimonials-grid__inner {
    grid-template-columns: 1fr;
    max-width: 460px;
    gap: 24px;
  }

  .testimonials-cta {
    padding-top: 64px;
    padding-bottom: 72px;
  }
}
