:root {
  --bg: #081018;
  --bg-soft: #0d1721;
  --surface: #0f1923;
  --surface-2: #13202c;
  --text: #f3f6f9;
  --muted: #b4bfca;
  --muted-strong: #d2dae2;
  --line: rgba(255, 255, 255, 0.11);
  --line-soft: rgba(255, 255, 255, 0.07);
  --accent: #d6aa4a;
  --accent-strong: #f0c96e;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
  --shell: 1420px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(214, 170, 74, 0.09), transparent 26rem),
    linear-gradient(180deg, #0a121a 0%, #081018 100%);
}

body.menu-open {
  overflow: hidden;
}

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

figure,
blockquote,
dl,
dd {
  margin: 0;
}

address {
  font-style: normal;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

[id] {
  scroll-margin-top: 6rem;
}

:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 120;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #ffffff;
  color: #081018;
  transition: top 140ms ease;
}

.skip-link:focus {
  top: 1rem;
}

.shell {
  width: min(calc(100% - 1.5rem), var(--shell));
  margin: 0 auto;
}

.section {
  padding: clamp(2.6rem, 5vw, 4.8rem) 0;
}

main > .section + .section {
  border-top: 1px solid var(--line-soft);
}

.section-kicker,
.course-duration,
.hero-highlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9fb6d1;
}

.section-kicker::before,
.hero-highlight-tag::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent);
}

.section-head {
  max-width: 46rem;
  margin-bottom: 1.75rem;
}

.section-head h2,
.hero-copy h1,
.about-copy h2,
.cta-copy h2,
.location-card h3 {
  margin: 0.5rem 0 0;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.01em;
}

.section-head h2,
.about-copy h2,
.cta-copy h2 {
  font-size: clamp(2.1rem, 4.3vw, 3.7rem);
  line-height: 0.94;
}

.section-head p:last-child,
.hero-text,
.about-copy > p,
.location-card p,
.cta-copy p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.68;
  font-size: 0.98rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 14, 22, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.is-scrolled {
  background: rgba(7, 14, 22, 0.96);
}

.header-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.8rem;
  min-height: 4.8rem;
  padding: 0.7rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand img {
  width: 3.45rem;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  background: #000000;
  border: 1px solid var(--line);
}

.brand-copy {
  display: grid;
  min-width: 0;
}

.brand-copy strong {
  font-size: 1rem;
  line-height: 1.05;
}

.brand-copy span:last-child {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.85rem;
  min-width: 0;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.header-phone:hover,
.header-phone:focus-visible {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  min-height: 2.9rem;
  padding: 0 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.9rem;
  font-weight: 600;
}

.social-link,
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.social-link svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.social-link:hover,
.social-link:focus-visible,
.footer-social:hover,
.footer-social:focus-visible {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.nav-cta,
.button,
.mobile-callbar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.2rem;
  border-radius: 12px;
  font-weight: 700;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.nav-cta,
.button-primary,
.button-card,
.mobile-callbar {
  background: linear-gradient(180deg, var(--accent-strong) 0%, var(--accent) 100%);
  color: #081018;
  box-shadow: 0 10px 24px rgba(188, 141, 45, 0.22);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button:hover,
.button:focus-visible,
.mobile-callbar:hover,
.mobile-callbar:focus-visible {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 2.9rem;
  padding: 0 0.95rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
}

.menu-icon {
  position: relative;
  width: 1rem;
  height: 0.75rem;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, top 160ms ease, bottom 160ms ease;
}

.menu-icon::before {
  top: 0;
}

.menu-icon::after {
  bottom: 0;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  top: 0.32rem;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
  bottom: 0.32rem;
  transform: rotate(-45deg);
}

.menu-label {
  font-size: 0.9rem;
  font-weight: 600;
}

.mobile-only {
  display: none;
}

.hero {
  padding-top: clamp(0.75rem, 1.7vw, 1.35rem);
  padding-bottom: clamp(1.9rem, 3.6vw, 3rem);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
  gap: clamp(1.6rem, 3vw, 3.2rem);
}

.hero-copy {
  max-width: 44rem;
  padding-top: 0.25rem;
}

.hero-copy h1 {
  max-width: 11ch;
  margin: 0.5rem 0 0;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(3.2rem, 6vw, 5.9rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
}

.hero-highlight {
  max-width: 35rem;
  margin-top: 1rem;
  padding: 1.05rem 1.15rem;
  border: 1px solid rgba(214, 170, 74, 0.28);
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(214, 170, 74, 0.12), rgba(214, 170, 74, 0.05));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.hero-highlight p {
  margin: 0.55rem 0 0;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 1.95rem);
  line-height: 1.02;
  font-weight: 700;
  color: var(--text);
}

.hero-text {
  max-width: 34rem;
  margin-top: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.45rem;
}

.hero-actions .button-primary {
  min-width: 12rem;
}

.hero-address {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  align-items: center;
  margin-top: 1rem;
  color: var(--muted-strong);
  font-size: 0.93rem;
}

.text-link {
  font-weight: 600;
  color: var(--accent-strong);
}

.hero-media {
  position: relative;
  min-height: 28rem;
  border-radius: 18px;
  overflow: hidden;
  background: #060b10;
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 15, 0.08), rgba(5, 10, 15, 0.5));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-callout {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  max-width: 18.5rem;
  padding: 0.85rem 0.95rem;
  border-left: 4px solid var(--accent);
  background: rgba(10, 16, 24, 0.84);
  backdrop-filter: blur(8px);
}

.hero-callout-label {
  display: block;
  margin-bottom: 0.4rem;
  color: #c5d3e2;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-callout strong {
  display: block;
  line-height: 1.25;
}

.hero-callout a {
  display: inline-flex;
  margin-top: 0.7rem;
  color: var(--accent-strong);
  font-size: 0.92rem;
  font-weight: 700;
}

.trust-bar {
  padding-top: 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
}

.trust-point {
  padding: 1rem 1.15rem;
  min-height: 6.15rem;
}

.trust-point + .trust-point {
  border-left: 1px solid var(--line-soft);
}

.trust-point strong {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.1rem;
  line-height: 1.05;
}

.trust-point span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.eligibility {
  padding-top: 1.4rem;
}

.eligibility-card {
  padding: 1.35rem;
  border: 1px solid rgba(214, 170, 74, 0.24);
  border-left: 4px solid var(--accent);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(214, 170, 74, 0.09), rgba(255, 255, 255, 0.03));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.eligibility-card h2 {
  margin: 0.5rem 0 0;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.95;
}

.eligibility-intro {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.eligibility-list {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.eligibility-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted-strong);
  line-height: 1.55;
}

.eligibility-list li::before {
  content: "";
  position: absolute;
  top: 0.52rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--accent);
}

.eligibility-warning,
.section-note {
  margin: 1rem 0 0;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(214, 170, 74, 0.22);
  background: rgba(214, 170, 74, 0.08);
  color: var(--muted-strong);
  line-height: 1.55;
}

.eligibility-warning strong {
  color: var(--text);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.course-card {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.018));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.course-top {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
}

.course-top h3 {
  margin: 0.4rem 0 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 2rem;
  line-height: 0.95;
}

.course-price {
  margin: 0;
  padding-left: 1rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 700;
  color: var(--accent-strong);
  white-space: nowrap;
}

.course-summary {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.course-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--line-soft);
}

.course-facts dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94aecb;
}

.course-facts dd {
  margin-top: 0.4rem;
  color: var(--muted-strong);
  line-height: 1.55;
  font-size: 0.93rem;
}

.course-card details {
  padding-top: 0.95rem;
  border-top: 1px solid var(--line-soft);
}

.course-card summary {
  position: relative;
  padding-right: 1.4rem;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
}

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

.course-card summary::after {
  content: "+";
  position: absolute;
  top: -0.05rem;
  right: 0;
  color: var(--accent-strong);
  font-size: 1.1rem;
}

.course-card details[open] summary::after {
  content: "-";
}

.details-list {
  display: grid;
  gap: 0.65rem;
  margin: 0.9rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.button-card {
  width: 100%;
}

.about-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 34rem);
  align-items: start;
  gap: clamp(1.4rem, 3vw, 2.6rem);
}

.about-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.about-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--muted-strong);
  line-height: 1.55;
}

.about-list li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
}

.about-photo,
.centre-feature {
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 1.1 / 0.92;
  object-fit: cover;
}

.about-photo figcaption,
.centre-feature figcaption {
  padding: 0.8rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.centre-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 19rem;
  gap: 1rem;
  align-items: start;
}

.centre-feature {
  padding: 0.65rem;
}

.centre-feature img {
  width: 100%;
  border-radius: 12px;
}

.location-card {
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.028);
}

.location-card h3 {
  font-size: 2rem;
  line-height: 0.95;
}

.video-card {
  overflow: hidden;
  max-width: 29rem;
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #060b10;
  box-shadow: var(--shadow);
}

.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #000000;
}

.video-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem 1rem;
  border-top: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.02);
}

.video-card-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.testimonial-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  color: var(--muted-strong);
}

.testimonial-top strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.testimonial-top span {
  color: var(--muted);
  font-size: 0.88rem;
}

.testimonial-rating {
  margin: 0.8rem 0 0;
  color: var(--accent-strong);
  letter-spacing: 0.16em;
  font-size: 0.96rem;
}

.testimonial-quote {
  margin: 0.8rem 0 0;
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
}

.cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 25rem);
  gap: 1rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
}

.cta-panel {
  padding: 1.2rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid var(--line);
}

.cta-phone {
  display: inline-flex;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.92;
  font-weight: 700;
  color: var(--accent-strong);
}

.cta-panel address {
  display: grid;
  gap: 0.2rem;
  margin-top: 0.9rem;
  color: var(--muted-strong);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.site-footer {
  padding: 1.4rem 0 1.7rem;
  border-top: 1px solid var(--line-soft);
}

.footer-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.4rem;
}

.footer-brand {
  flex: 1 1 17rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  align-items: center;
  color: var(--muted-strong);
}

.footer-social {
  width: auto;
  padding: 0 0.95rem;
}

.footer-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.mobile-callbar {
  position: fixed;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 90;
  display: none;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 70ms;
}

.delay-2 {
  transition-delay: 140ms;
}

.delay-3 {
  transition-delay: 210ms;
}

@media (max-width: 1120px) {
  .header-phone {
    display: none;
  }

  .hero-shell,
  .about-shell,
  .centre-layout,
  .cta-shell {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 24rem;
  }

  .about-photo {
    max-width: 46rem;
  }

  .location-card {
    max-width: 28rem;
  }
}

@media (max-width: 980px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }

  .header-shell {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    gap: 0.9rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 0.75rem;
    left: 0.75rem;
    z-index: 50;
    display: grid;
    gap: 0.3rem;
    padding: 0.9rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #0c141c;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.7rem 0.15rem;
    border-bottom: 1px solid var(--line-soft);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-actions {
    justify-self: end;
  }

  .social-link {
    width: 2.7rem;
    height: 2.7rem;
  }

  .courses-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 5.5rem;
  }

  .shell {
    width: min(calc(100% - 1rem), var(--shell));
  }

  .section {
    padding: 2.3rem 0;
  }

  [id] {
    scroll-margin-top: 5.4rem;
  }

  .brand img {
    width: 3rem;
  }

  .brand-copy strong {
    font-size: 0.94rem;
  }

  .brand-copy span:last-child {
    font-size: 0.66rem;
  }

  .hero {
    padding-top: 1.1rem;
    padding-bottom: 1.9rem;
  }

  .hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.6rem, 10vw, 4rem);
  }

  .hero-highlight {
    max-width: none;
  }

  .hero-highlight p {
    font-size: clamp(1.3rem, 6vw, 1.7rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .hero-media {
    min-height: 0;
    aspect-ratio: 5 / 4;
  }

  .hero-callout {
    left: 0.75rem;
    right: 0.75rem;
    max-width: none;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-point {
    min-height: 0;
  }

  .trust-point:nth-child(odd) {
    border-right: 1px solid var(--line-soft);
  }

  .trust-point:nth-child(n + 3) {
    border-top: 1px solid var(--line-soft);
  }

  .trust-point + .trust-point {
    border-left: 0;
  }

  .course-card,
  .testimonial-card,
  .location-card,
  .cta-shell,
  .cta-panel {
    padding: 1rem;
  }

  .course-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .course-price {
    padding-left: 0;
  }

  .course-facts {
    grid-template-columns: 1fr;
  }

  .cta-phone {
    font-size: 2.75rem;
  }

  .video-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-shell {
    align-items: flex-start;
  }

  .footer-links {
    width: 100%;
  }

  .mobile-callbar {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0ms !important;
    animation-duration: 0ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
