/* Bedford School of Music Entertainment — design system */
:root {
  --ink: #0d1016;
  --ink-soft: #161a24;
  --stage: #1c2230;
  --fog: #a8b0c0;
  --mist: #d5dae4;
  --paper: #f5f6f8;
  --white: #ffffff;
  --spot: #e8a845;
  --spot-hot: #f2bc5c;
  --live: #3aa8a0;
  --live-deep: #2a7f79;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(13, 16, 22, 0.1);
  --shadow: 0 24px 60px rgba(8, 10, 16, 0.35);
  --radius: 2px;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 4.5rem;
  --max: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--spot);
  margin-bottom: 0.85rem;
}

.lead {
  font-size: 1.125rem;
  color: var(--fog);
  max-width: 38rem;
}

.text-muted {
  color: var(--fog);
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease),
    border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.theme-light {
  background: rgba(13, 16, 22, 0.88);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-logo {
  display: block;
  height: 2.5rem;
  width: auto;
  max-width: min(240px, 58vw);
  object-fit: contain;
}

.hero-logo {
  display: block;
  width: min(100%, 26rem);
  height: auto;
  margin: 0 0 1rem;
  opacity: 0;
  transform: translateY(28px);
  animation: riseIn 0.9s var(--ease) 0.15s forwards;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.45));
}

.footer-brand-logo {
  display: block;
  height: 2.75rem;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--white);
  line-height: 1.15;
}

.brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fog);
}

.hero-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--spot);
  margin: 0 0 0.85rem;
  opacity: 0;
  transform: translateY(16px);
  animation: riseIn 0.9s var(--ease) 0.28s forwards;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mist);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.15rem;
  background: var(--spot);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--spot-hot);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--spot);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--spot-hot);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--stage);
}

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(13, 16, 22, 0.2);
}

.btn-outline-dark:hover {
  border-color: var(--ink);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: clamp(30rem, 78svh, 42rem);
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 45% at 78% 18%, rgba(232, 168, 69, 0.28), transparent 55%),
    radial-gradient(ellipse 45% 40% at 12% 88%, rgba(58, 168, 160, 0.22), transparent 50%),
    radial-gradient(ellipse 80% 60% at 50% 120%, rgba(0, 0, 0, 0.55), transparent 60%),
    linear-gradient(145deg, #0a0c12 0%, #171c28 45%, #10151f 100%);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.28;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 18px,
      rgba(255, 255, 255, 0.015) 18px,
      rgba(255, 255, 255, 0.015) 19px
    );
  animation: heroDrift 22s ease-in-out infinite alternate;
}

.hero-media img,
.hero-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  mix-blend-mode: luminosity;
  transform: scale(1.04);
  animation: heroDrift 22s ease-in-out infinite alternate;
}

.hero-media.has-video .hero-poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
  animation: none;
  transform: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  border: 0;
  transform: translate(-62%, -50%) scale(1.42);
}

.hero-media.has-photo::after,
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(8, 10, 16, 0.88) 0%, rgba(8, 10, 16, 0.55) 48%, rgba(8, 10, 16, 0.35) 100%);
}

.hero-media.has-video::after {
  background:
    linear-gradient(105deg, rgba(8, 10, 16, 0.94) 0%, rgba(8, 10, 16, 0.78) 38%, rgba(8, 10, 16, 0.52) 62%, rgba(8, 10, 16, 0.72) 100%),
    linear-gradient(to top, rgba(8, 10, 16, 0.7) 0%, transparent 48%),
    radial-gradient(ellipse 55% 45% at 58% 52%, rgba(8, 10, 16, 0.62), transparent 72%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 1.5rem) 0 2.75rem;
}

/* Split hero — copy left, video right */
.hero-split {
  display: block;
  min-height: clamp(28rem, 72svh, 40rem);
  background: var(--ink);
}

.hero-split .hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(28rem, 72svh, 40rem);
}

.hero-split .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 1.25rem) clamp(1.25rem, 4vw, 3rem) 2.25rem clamp(1.25rem, 5vw, 4rem);
  background:
    radial-gradient(ellipse 80% 70% at 0% 100%, rgba(58, 168, 160, 0.12), transparent 55%),
    radial-gradient(ellipse 55% 45% at 88% 12%, rgba(232, 168, 69, 0.16), transparent 55%),
    linear-gradient(145deg, #0a0c12 0%, #171c28 55%, #10151f 100%);
}

.hero-split .hero-media {
  position: relative;
  inset: auto;
  height: 100%;
  min-height: 100%;
  container-type: size;
}

.hero-split .hero-media.has-video .hero-poster {
  opacity: 0.35;
  object-fit: cover;
  object-position: center center;
}

.hero-split .hero-media.has-video::after {
  background:
    linear-gradient(90deg, rgba(8, 10, 16, 0.82) 0%, transparent 24%),
    linear-gradient(to top, rgba(8, 10, 16, 0.4) 0%, transparent 32%);
}

.hero-split .hero-video iframe {
  top: 50%;
  left: 50%;
  width: max(100cqw, calc(100cqh * 16 / 9));
  height: max(100cqh, calc(100cqw * 9 / 16));
  min-width: unset;
  min-height: unset;
  transform: translate(-50%, -50%);
  transform-origin: center center;
}

.hero-split .hero h1 {
  max-width: 14ch;
}

.hero-split .lead {
  max-width: 34ch;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.04em;
  max-width: 10ch;
  margin-bottom: 0.35rem;
  opacity: 0;
  transform: translateY(28px);
  animation: riseIn 0.9s var(--ease) 0.15s forwards;
}

.hero-brand span {
  display: block;
  color: var(--spot);
  font-size: 0.22em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.hero-subbrand {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--mist);
  margin: 0 0 1.1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: riseIn 0.9s var(--ease) 0.28s forwards;
}

.hero h1 {
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  font-weight: 600;
  max-width: 16ch;
  margin-bottom: 0.9rem;
  opacity: 0;
  transform: translateY(24px);
  animation: riseIn 0.9s var(--ease) 0.35s forwards;
}

.hero .lead {
  opacity: 0;
  transform: translateY(20px);
  animation: riseIn 0.9s var(--ease) 0.5s forwards;
}

.hero .btn-row {
  opacity: 0;
  transform: translateY(16px);
  animation: riseIn 0.9s var(--ease) 0.65s forwards;
}

.hero-meta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  font-size: 0.85rem;
  color: var(--mist);
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.8s forwards;
}

.hero-meta strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 58svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}

.page-hero .hero-content {
  padding: calc(var(--nav-h) + 3.5rem) 0 3.5rem;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  max-width: 14ch;
  opacity: 0;
  transform: translateY(24px);
  animation: riseIn 0.85s var(--ease) 0.2s forwards;
}

.page-hero .lead {
  opacity: 0;
  transform: translateY(18px);
  animation: riseIn 0.85s var(--ease) 0.4s forwards;
}

/* ——— Sections ——— */
.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.75rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--ink);
}

.section-dark .section-head h2,
.section-stage .section-head h2,
.section-live .section-head h2 {
  color: var(--white);
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-dark .text-muted,
.section-dark .lead {
  color: var(--fog);
}

.section-stage {
  background:
    radial-gradient(ellipse 70% 60% at 0% 0%, rgba(232, 168, 69, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 50% at 100% 100%, rgba(58, 168, 160, 0.1), transparent 45%),
    var(--ink-soft);
  color: var(--white);
}

.section-live {
  background:
    linear-gradient(160deg, #123532 0%, #0f1c22 55%, #12151c 100%);
  color: var(--white);
}

/* Pathway cards — interactive destinations, not decorative cards */
.pathways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pathway {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 22rem;
  padding: 1.75rem;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  transition: transform 0.4s var(--ease);
}

.pathway:hover {
  transform: translateY(-4px);
}

.pathway-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #12151c;
}

.pathway-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.pathway:hover .pathway-bg img {
  transform: scale(1.06);
}

.pathway::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(8, 10, 16, 0.2) 0%,
    rgba(8, 10, 16, 0.45) 40%,
    rgba(8, 10, 16, 0.92) 100%
  );
}

.pathway-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--spot);
  margin-bottom: 0.5rem;
}

.pathway h3 {
  font-size: 1.55rem;
  margin-bottom: 0.5rem;
}

.pathway p {
  color: var(--mist);
  font-size: 0.98rem;
  margin-bottom: 1.1rem;
}

.pathway-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.pathway-link::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}

.pathway:hover .pathway-link::after {
  transform: translateX(4px);
}

/* Instrument / offer lists */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11.5rem, 1fr));
  gap: 0.65rem;
}

.offer-item {
  padding: 1rem 1.1rem;
  border-top: 2px solid var(--spot);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
  font-size: 0.95rem;
}

.section:not(.section-dark):not(.section-stage):not(.section-live) .offer-item {
  background: var(--white);
  border-top-color: var(--live);
  box-shadow: 0 1px 0 var(--line-dark);
}

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split-media {
  position: relative;
  min-height: 24rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 30%, rgba(232, 168, 69, 0.35), transparent 40%),
    linear-gradient(145deg, #1c2230, #0d1016);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 24rem;
  opacity: 0.5;
  mix-blend-mode: luminosity;
}

.split-media::before {
  content: "";
  position: absolute;
  inset: auto -8% -8% auto;
  width: 45%;
  height: 45%;
  background: var(--spot);
  opacity: 0.85;
  z-index: -1;
}

.split.reverse .split-media {
  background:
    radial-gradient(circle at 30% 70%, rgba(58, 168, 160, 0.35), transparent 40%),
    linear-gradient(145deg, #163034, #0d1016);
}

.split.reverse .split-media::before {
  inset: auto auto -8% -8%;
  background: var(--live);
}

/* Schedule / event rows */
.timeline {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-dark);
}

.section-dark .timeline,
.section-stage .timeline,
.section-live .timeline {
  border-top-color: var(--line);
}

.timeline-row {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: baseline;
}

.section-dark .timeline-row,
.section-stage .timeline-row,
.section-live .timeline-row {
  border-bottom-color: var(--line);
}

.timeline-date {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--spot);
  letter-spacing: 0.02em;
}

.timeline-row h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.timeline-row p {
  margin: 0;
  color: var(--fog);
  font-size: 0.95rem;
}

/* Regions */
.region-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
}

.region-chip {
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--mist);
}

/* Stats strip — avoid putting in hero; OK in later sections */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--spot);
  margin-bottom: 0.25rem;
}

.stat span {
  font-size: 0.9rem;
  color: var(--fog);
}

/* Tutors */
.tutor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.tutor {
  padding: 1.75rem;
  background: var(--white);
  border-left: 3px solid var(--live);
}

.tutor h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.tutor .role {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--live-deep);
  margin-bottom: 0.75rem;
}

.tutor p {
  color: #4a5160;
  margin: 0;
}

/* Contact form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fog);
}

.form-field input,
.form-field textarea,
.form-field select {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--spot);
}

.form-field textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23a8b0c0' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-field option {
  background: var(--ink);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-block h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.contact-block a {
  color: var(--spot);
  font-weight: 600;
}

.contact-block a:hover {
  color: var(--spot-hot);
}

/* CTA band */
.cta-band {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background:
    linear-gradient(120deg, rgba(232, 168, 69, 0.15), transparent 40%),
    var(--ink);
  color: var(--white);
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 18ch;
  margin-inline: auto;
}

.cta-band p {
  color: var(--fog);
  max-width: 32rem;
  margin: 0.75rem auto 0;
}

.cta-band .btn-row {
  justify-content: center;
}

/* Footer */
.site-footer {
  background: #080a0e;
  color: var(--fog);
  padding: 3.5rem 0 2rem;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-legal {
  margin: 0 0 0.75rem;
  color: var(--fog);
  font-size: 0.9rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* Sound-wave decorative line */
.wave-rule {
  height: 2px;
  width: 100%;
  max-width: 8rem;
  background: linear-gradient(90deg, var(--spot), transparent);
  margin: 1.25rem 0 0;
  border: none;
}

/* Steps */
.section-steps {
  padding: clamp(2.75rem, 5vw, 4rem) 0;
  background:
    radial-gradient(ellipse 70% 90% at 50% -30%, rgba(232, 168, 69, 0.14), transparent 55%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-soft) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.step {
  padding: 1.5rem 1.35rem 1.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--spot);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.step:nth-child(2) {
  border-top-color: var(--live);
}

.step:nth-child(3) {
  border-top-color: var(--spot-hot);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--spot);
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
}

.step:nth-child(2) .step-num {
  color: var(--live);
}

.step:nth-child(3) .step-num {
  color: var(--spot-hot);
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.step p {
  margin: 0;
  color: var(--fog);
  font-size: 0.98rem;
}

/* Quotes */
.section-quotes {
  background: var(--white);
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.quote {
  margin: 0;
  padding: 1.5rem 1.5rem 1.35rem;
  background: var(--paper);
  border-top: 3px solid var(--spot);
}

.quote p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 1rem;
}

.quote footer {
  font-size: 0.85rem;
  color: #667084;
  font-style: normal;
}

.quote-note {
  margin: 1.25rem 0 0;
  font-size: 0.8rem;
  color: #8a93a3;
}

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.price-card {
  padding: 1.5rem 1.6rem;
  background: var(--white);
  border-top: 3px solid var(--live);
}

.price-card.featured {
  border-top-color: var(--spot);
  background: var(--ink);
  color: var(--white);
}

.price-card .price-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--live-deep);
  margin-bottom: 0.5rem;
}

.price-card.featured .price-label {
  color: var(--spot);
}

.price-card .price-amount {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.price-card .price-amount span {
  font-size: 0.45em;
  font-weight: 500;
  opacity: 0.75;
}

.price-card p {
  margin: 0;
  color: #4a5160;
  font-size: 0.95rem;
}

.price-card.featured p {
  color: var(--fog);
}

.price-note {
  margin-top: 1.25rem;
  color: #4a5160;
  font-size: 0.95rem;
}

.tutor-photo {
  margin: -0.25rem 0 1rem;
  overflow: hidden;
  max-height: 14rem;
}

.tutor-photo img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
}

/* Mobile call bar */
.mobile-call {
  display: none;
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.25rem;
  background: var(--spot);
  color: var(--ink);
  font-weight: 700;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

body {
  padding-bottom: 0;
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroDrift {
  to {
    transform: scale(1.1) translate(-1.5%, 1%);
  }
}

/* ——— Responsive ——— */
@media (max-width: 960px) {
  .pathways,
  .split,
  .tutor-grid,
  .footer-grid,
  .stat-row,
  .steps,
  .quotes,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .hero-split .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    min-height: clamp(32rem, 92svh, 44rem);
  }

  .hero-split .hero-media {
    order: 1;
    min-height: 0;
  }

  .hero-split .hero-content {
    order: 2;
    padding: 1.75rem 1.25rem 2rem;
  }

  .split-media,
  .split-media img {
    min-height: 18rem;
  }

  .contact-layout {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 780px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    background: rgba(13, 16, 22, 0.97);
    backdrop-filter: blur(16px);
    padding: 1.25rem 1.25rem 1.75rem;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }

  .nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .nav-cta {
    width: 100%;
  }

  .timeline-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-brand {
    max-width: 8ch;
  }

  .mobile-call {
    display: flex;
  }

  body {
    padding-bottom: 5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-media img,
  .hero-poster {
    animation: none;
  }

  .hero-video {
    display: none;
  }
}
