/* Turf Monsters Training Academy — static preview */
:root {
  --bg: #07080c;
  --bg-2: #0b0d12;
  --bg-3: #10131a;
  --bg-4: #151922;
  --lime: #68e807;
  --lime-hover: #7af51c;
  --lime-dim: rgba(104, 232, 7, 0.12);
  --purple: #680bb2;
  --purple-soft: rgba(104, 11, 178, 0.28);
  --text: #f5f6f8;
  --muted: #9aa3b2;
  --dim: #6d7686;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --header-h: 76px;
  --max: 1180px;
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 0.95; letter-spacing: 0.02em; margin: 0; text-transform: uppercase; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
}
.kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--lime);
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 46ch;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-lime {
  background: var(--lime);
  color: #0b0d12;
  box-shadow: 0 0 0 0 rgba(104, 232, 7, 0.35);
}
.btn-lime:hover { background: var(--lime-hover); box-shadow: 0 10px 28px rgba(104, 232, 7, 0.22); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn-purple {
  background: var(--purple);
  color: #fff;
}
.btn-purple:hover { filter: brightness(1.12); }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(7, 8, 12, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: min(1280px, calc(100% - 36px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 48px;
  width: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 10px;
  color: var(--muted);
  transition: color 0.15s ease;
}
.nav a:hover,
.nav a.is-active { color: var(--text); }
.nav a.is-active { color: var(--lime); }
.header-cta { margin-left: 8px; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 4px;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: min(820px, calc(100svh - var(--header-h)));
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  filter: saturate(0.92) contrast(1.05);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,8,12,0.28) 0%, rgba(7,8,12,0.18) 28%, rgba(7,8,12,0.72) 68%, #07080c 100%),
    linear-gradient(90deg, rgba(7,8,12,0.55) 0%, rgba(7,8,12,0.12) 55%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 72px 0 88px;
}
.hero h1 {
  font-size: clamp(3.4rem, 11vw, 8.4rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.86;
  max-width: 12ch;
}
.hero .subhead {
  margin: 18px 0 32px;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.page-hero {
  position: relative;
  min-height: 340px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero .hero-media { position: absolute; inset: 0; }
.page-hero .hero-media img {
  width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9);
}
.page-hero .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,8,12,0.35), rgba(7,8,12,0.88) 80%, #07080c);
}
.page-hero .hero-content { position: relative; z-index: 1; padding: 64px 0 48px; }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); max-width: 16ch; }
.page-hero .lead { margin-top: 14px; color: #c9ced8; }

/* Stats */
.stats {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 148px;
}
.stat {
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.stat:last-child { border-right: 0; }
.stat b {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: 0.04em;
  color: var(--lime);
  font-weight: 600;
  line-height: 1;
}
.stat span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

/* Sections */
.section { padding: 96px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 40px;
}
.section-head h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); max-width: 14ch; }
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}
.split-copy h2 { margin-bottom: 18px; font-size: clamp(2.1rem, 4vw, 3.2rem); }
.split-copy p { color: var(--muted); font-size: 1.05rem; }
.split-visual {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  display: grid;
  place-items: center;
}
.split-visual img { max-height: 340px; width: auto; }

/* Tools */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tool-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.tool-card:hover { border-color: rgba(104, 232, 7, 0.45); transform: translateY(-3px); }
.tool-card figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  background: #000;
  overflow: hidden;
}
.tool-card figure img,
.tool-card figure video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tool-card .body { padding: 22px 22px 26px; }
.tool-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.tool-card p { color: var(--muted); font-size: 0.95rem; }
.tool-card .body a {
  display: inline-block;
  margin-top: 16px;
  color: var(--lime);
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

/* Membership */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.tier {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.tier:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.tier.featured {
  border-color: var(--purple);
  background: linear-gradient(180deg, rgba(104,11,178,0.18), var(--bg-3) 42%);
}
.tier .tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 18px;
}
.tier.featured .tag { color: #d7b6ff; }
.tier h3 { font-size: 1.55rem; margin-bottom: 12px; line-height: 1.05; }
.tier p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.tier .btn { margin-top: 22px; }

.cta-band {
  margin-top: 28px;
  background:
    linear-gradient(90deg, rgba(7,8,12,0.55), rgba(7,8,12,0.72)),
    url("../assets/cages.jpg") center/cover no-repeat;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.cta-band h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 8px; }
.cta-band p { color: #d0d5de; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 12px;
}
.gallery a, .gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #000;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery a:hover img { transform: scale(1.04); }
.gallery .wide { grid-row: 1 / span 2; }
.layout-strip {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #10131a;
  padding: 18px;
}
.layout-strip img { width: 100%; height: auto; object-fit: contain; }

/* Directions */
.directions {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.directions .inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.directions h2 { margin: 10px 0 16px; font-size: clamp(2rem, 4vw, 3rem); }
.directions p, .directions a { color: var(--muted); }
.contact-list { list-style: none; padding: 0; margin: 18px 0 0; }
.contact-list li { margin: 8px 0; }
.contact-list a:hover { color: var(--lime); }

/* Cards generic */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: rgba(104, 232, 7, 0.4); transform: translateY(-3px); }
.card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.card p { color: var(--muted); }
.card .btn { margin-top: 22px; }

/* Merch */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.merch-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.merch-card:hover { transform: translateY(-3px); border-color: var(--lime); }
.merch-visual {
  aspect-ratio: 4 / 5;
  background: #0e1118;
  display: grid;
  place-items: center;
  padding: 32px;
  border-bottom: 1px solid var(--line);
}
.merch-visual img { max-height: 72%; width: auto; }
.merch-card .body { padding: 20px 20px 24px; }
.merch-card h3 { font-size: 1.25rem; }
.merch-card .price {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--lime);
  letter-spacing: 0.04em;
}

/* Form */
.form {
  display: grid;
  gap: 14px;
}
.form label {
  display: grid;
  gap: 6px;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--muted);
}
.form input,
.form textarea {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--text);
  outline: none;
}
.form input:focus,
.form textarea:focus { border-color: var(--lime); }
.form textarea { min-height: 140px; resize: vertical; }

.map-wrap {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  background: #161922;
}
.map-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: var(--muted);
  z-index: 0;
}
.map-fallback strong { display: block; color: var(--text); font-family: var(--font-display); letter-spacing: 0.08em; margin-bottom: 8px; font-size: 1.1rem; }
.map-wrap iframe { position: relative; z-index: 1; width: 100%; height: 100%; min-height: 360px; border: 0; background: transparent; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 28px;
  background: #05060a;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.site-footer .logo img { height: 72px; }
.site-footer p, .site-footer a { color: var(--muted); font-size: 0.95rem; }
.site-footer a:hover { color: var(--lime); }
.site-footer h4 {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
  color: var(--text);
}
.footer-nav { display: grid; gap: 8px; }
.footer-nav a {
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.legal {
  padding-top: 18px;
  color: var(--dim);
  font-size: 0.85rem;
}

.note {
  color: var(--dim);
  font-size: 0.9rem;
  margin-top: 10px;
}

/* Utility */
.mt-8 { margin-top: 8px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

@media (max-width: 980px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: inline-block; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(7, 8, 12, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 12px 18px 22px;
    gap: 2px;
  }
  .nav.is-open a { padding: 14px 8px; font-size: 1rem; color: var(--text); border-bottom: 1px solid var(--line); }
  .header-cta.is-open {
    display: block;
    position: absolute;
    top: auto;
    left: 18px;
    right: 18px;
    margin: 0;
  }
  .nav.is-open .header-cta {
    display: block;
    margin: 16px 0 6px;
  }
  .nav.is-open .header-cta .btn { width: 100%; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .stat:nth-child(2), .stat:nth-child(4) { border-right: 0; }

  .split, .directions .inner, .footer-grid { grid-template-columns: 1fr; }
  .tools-grid, .tier-grid, .card-grid, .merch-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery .wide { grid-row: auto; min-height: 240px; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 32px 24px; }
  .section { padding: 72px 0; }
}

@media (max-width: 560px) {
  :root { --header-h: 68px; }
  .logo img { height: 42px; }
  .container { width: min(var(--max), calc(100% - 28px)); }
  .tools-grid, .tier-grid, .card-grid, .merch-grid, .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .hero-content { padding: 48px 0 56px; }
  .hero h1 { font-size: clamp(3.1rem, 18vw, 4.4rem); }
  .section-head { flex-direction: column; align-items: flex-start; }
  .split-visual { padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

.nav a.btn {
  color: #0b0d12;
  padding: 0 18px;
  min-height: 42px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  margin-left: 8px;
}
.nav a.btn:hover { color: #0b0d12; }

@media (max-width: 980px) {
  .nav.is-open a.btn {
    margin: 14px 0 4px;
    min-height: 48px;
    font-size: 0.92rem;
  }
}

body { overflow-x: hidden; }
.site-header { border-top: 2px solid var(--lime); }
.hero-actions .btn { min-width: 168px; }

@media (max-width: 420px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; min-width: 0; }
  .page-hero { min-height: 280px; }
}


/* Lessons page */
.lessons-hero { min-height: 420px; }
.lessons-hero .lead {
  max-width: 36ch;
  color: #d5dae3;
}

.sport-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.sport-filters button {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(7, 8, 12, 0.55);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.sport-filters button:hover {
  border-color: var(--lime);
  color: var(--lime);
  transform: translateY(-1px);
}
.sport-filters button.is-active {
  background: var(--lime);
  border-color: var(--lime);
  color: #0b0d12;
}
.sport-filters button.is-active:hover { color: #0b0d12; }
.sport-filters button:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.lessons-roster { padding-top: 72px; }

.instructor-list {
  display: grid;
  gap: 28px;
}

.instructor-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) 1.22fr;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 400px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.instructor-card[hidden] { display: none !important; }
.instructor-card:hover {
  transform: translateY(-4px);
  border-color: rgba(104, 232, 7, 0.38);
  box-shadow: var(--shadow);
}
.instructor-card--photo-right {
  grid-template-columns: 1.22fr minmax(260px, 0.78fr);
}
.instructor-card--photo-right .instructor-photo { order: 2; }

.instructor-photo {
  position: relative;
  display: block;
  margin: 0;
  width: 100%;
  min-height: 400px;
  height: 100%;
  background: #05060a;
  overflow: hidden;
}
.instructor-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.instructor-photo--nathan img { object-position: 72% 50%; }
.instructor-photo--madelyn img { object-position: 50% 12%; }
.instructor-photo--mariana img { object-position: 50% 50%; }
.instructor-photo--braxton img { object-position: 50% 12%; }

.instructor-body {
  padding: 36px 40px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.instructor-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}
.chip--baseball {
  color: var(--lime);
  border-color: rgba(104, 232, 7, 0.45);
  background: var(--lime-dim);
}
.chip--softball {
  color: #e4c9ff;
  border-color: rgba(180, 110, 255, 0.45);
  background: var(--purple-soft);
}
.chip--rate {
  color: var(--text);
  border-color: var(--line-strong);
}

.instructor-body h3 {
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.instructor-role {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 16px;
}
.instructor-body > p:not(.instructor-role) {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 54ch;
}
.instructor-body h3 + p:not(.instructor-role) {
  margin-top: 10px;
}

.full-bio {
  margin-top: 10px;
}
.full-bio summary {
  cursor: pointer;
  list-style: none;
  width: fit-content;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  padding: 4px 0;
}
.full-bio summary::-webkit-details-marker { display: none; }
.full-bio summary::marker { content: ""; }
.full-bio summary::after {
  content: " +";
  font-weight: 600;
}
.full-bio[open] summary::after { content: " −"; }
.full-bio summary:hover { color: var(--lime-hover); }
.full-bio summary:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}
.full-bio p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.98rem;
}

.instructor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.instructor-actions .btn:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.instructor-card--text {
  grid-template-columns: 1fr;
  min-height: 0;
  border-left: 4px solid var(--purple);
  background:
    linear-gradient(90deg, rgba(104, 11, 178, 0.16), rgba(104, 11, 178, 0.04) 38%, var(--bg-3) 72%);
}
.instructor-card--text:hover {
  border-color: var(--line);
  border-left-color: var(--purple);
  box-shadow: 0 24px 60px rgba(104, 11, 178, 0.18);
}
.instructor-card--text .instructor-body {
  padding: 40px 44px;
}
.instructor-card--text h3 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.how-it-works {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
  padding-top: 72px;
  padding-bottom: 80px;
}
.how-it-works .section-head { margin-bottom: 28px; }
.how-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.how-step {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.how-step:hover {
  transform: translateY(-3px);
  border-color: rgba(104, 232, 7, 0.35);
}
.how-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
}
.how-step h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}
.how-step p {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .instructor-card,
  .instructor-card--photo-right {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .instructor-card--photo-right .instructor-photo { order: 0; }
  .instructor-photo {
    aspect-ratio: 4 / 5;
    min-height: 0;
    max-height: 520px;
  }
  .instructor-photo--nathan { aspect-ratio: 16 / 10; max-height: none; }
  .instructor-body,
  .instructor-card--text .instructor-body {
    padding: 28px 24px 30px;
  }
  .instructor-actions .btn { width: 100%; }
  .how-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .lessons-hero { min-height: 320px; }
  .instructor-list { gap: 18px; }
  .instructor-photo { aspect-ratio: 4 / 5; max-height: 440px; }
}
