:root {
  --ink: #10201c;
  --muted: #5e6d68;
  --paper: #ffffff;
  --surface: #f5faf7;
  --surface-strong: #eaf4ef;
  --emerald: #0b6f58;
  --emerald-dark: #063d32;
  --teal: #0f8279;
  --gold: #c49343;
  --coral: #b65a4f;
  --rose: #b85f79;
  --sky: #347da1;
  --plum: #6850a7;
  --line: #dce8e2;
  --shadow: 0 18px 48px rgba(8, 42, 34, 0.14);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

main section {
  scroll-margin-top: 128px;
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(220, 232, 226, 0.86);
  backdrop-filter: blur(16px);
}

.top-banner {
  color: #ffffff;
  background: linear-gradient(90deg, var(--emerald-dark), var(--teal));
}

.top-banner__inner {
  width: min(100% - 40px, var(--container));
  min-height: 42px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.92rem;
}

.top-banner p {
  margin: 0;
}

.top-banner a {
  flex: 0 0 auto;
  font-weight: 800;
  color: #ffe7ae;
}

.nav {
  width: min(100% - 40px, var(--container));
  height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--ink);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--emerald);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(11, 111, 88, 0.26);
}

.brand-text {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #31413c;
  font-size: 0.95rem;
  font-weight: 750;
}

.nav-links a {
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--emerald);
}

.nav-cta {
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  color: #ffffff;
  background: var(--emerald);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(5, 32, 27, 0.92) 0%, rgba(5, 32, 27, 0.72) 40%, rgba(5, 32, 27, 0.18) 74%, rgba(5, 32, 27, 0.02) 100%),
    linear-gradient(180deg, rgba(5, 32, 27, 0.06), rgba(5, 32, 27, 0.28));
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: 96px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 640px;
  margin: 0;
  font-size: 4.7rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.22rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--gold);
  color: #15110a;
  box-shadow: 0 14px 30px rgba(196, 147, 67, 0.28);
}

.button--light {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.button--outline {
  border-color: var(--line);
  background: var(--paper);
  color: var(--emerald-dark);
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 14px;
  margin-top: 42px;
}

.hero__metrics div {
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.hero__metrics strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.hero__metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.trust-strip {
  padding: 24px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-strip__grid div {
  padding: 4px 0 4px 18px;
  border-left: 3px solid var(--gold);
}

.trust-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.trust-strip strong {
  display: block;
  margin-top: 3px;
  font-size: 1rem;
}

.section,
.gallery-band,
.pricing-section,
.faq-band,
.contact-section {
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.process-copy h2,
.why-copy h2,
.teachers-layout h2,
.faq-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.process-copy p,
.why-copy p,
.teachers-layout p,
.faq-copy p,
.contact-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.gallery-band {
  overflow: hidden;
  background: var(--surface);
}

.photo-marquee {
  width: 100%;
  overflow: hidden;
  padding: 10px 0 14px;
}

.photo-track {
  width: max-content;
  display: flex;
  gap: 18px;
  animation: marquee 48s linear infinite;
}

.photo-marquee:hover .photo-track {
  animation-play-state: paused;
}

.photo-tile {
  width: 330px;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.photo-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-tile figcaption {
  padding: 14px 16px;
  color: var(--ink);
  font-weight: 850;
}

.scene-section {
  background: var(--paper);
}

.scene-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.875fr 0.875fr;
  gap: 18px;
}

.scene-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.scene-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scene-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(180deg, transparent, rgba(5, 32, 27, 0.86));
  content: "";
}

.scene-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 24px;
  color: #ffffff;
}

.scene-card span {
  color: #ffe1a2;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.scene-card h3 {
  margin: 8px 0 0;
  font-size: 1.45rem;
  line-height: 1.18;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.program-card,
.price-card,
.review-card,
.why-list article,
.teacher-points div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(8, 42, 34, 0.07);
}

.program-card {
  --card-bg: #ffffff;
  --card-line: var(--line);
  --card-accent: var(--emerald);
  --card-icon-bg: var(--surface-strong);
  --card-icon-color: var(--emerald);
  position: relative;
  min-height: 240px;
  padding: 26px;
  overflow: hidden;
  border-color: var(--card-line);
  background: var(--card-bg);
}

.program-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--card-accent);
  content: "";
}

.program-card:nth-child(1) {
  --card-bg: #eef8f3;
  --card-line: #cfe9dd;
  --card-accent: var(--emerald);
  --card-icon-bg: #d8f0e5;
  --card-icon-color: var(--emerald-dark);
}

.program-card:nth-child(2) {
  --card-bg: #fff7e8;
  --card-line: #f0d9aa;
  --card-accent: var(--gold);
  --card-icon-bg: #f7e7c3;
  --card-icon-color: #7a561b;
}

.program-card:nth-child(3) {
  --card-bg: #eff7fb;
  --card-line: #c8dfec;
  --card-accent: var(--sky);
  --card-icon-bg: #d8edf6;
  --card-icon-color: #1e5e7d;
}

.program-card:nth-child(4) {
  --card-bg: #fff0ed;
  --card-line: #f1cbc4;
  --card-accent: var(--coral);
  --card-icon-bg: #f8d9d3;
  --card-icon-color: #8d3f36;
}

.program-card:nth-child(5) {
  --card-bg: #f4f1fb;
  --card-line: #d8d0ef;
  --card-accent: var(--plum);
  --card-icon-bg: #e4def5;
  --card-icon-color: #4c3a83;
}

.program-card:nth-child(6) {
  --card-bg: #eefafa;
  --card-line: #cae8e8;
  --card-accent: var(--teal);
  --card-icon-bg: #d9f2f0;
  --card-icon-color: #0a5e59;
}

.card-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: var(--card-icon-bg);
  color: var(--card-icon-color);
  font-weight: 950;
}

.program-card h3,
.price-card h3,
.review-card strong,
.why-list h3,
.steps h3 {
  margin: 18px 0 8px;
  font-size: 1.22rem;
  line-height: 1.25;
}

.program-card p,
.price-card li,
.review-card p,
.why-list p,
.steps p,
.teacher-points span {
  color: var(--muted);
}

.program-card p,
.why-list p,
.steps p {
  margin: 0;
}

.process-band {
  padding: 92px 0;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(6, 61, 50, 0.98), rgba(15, 130, 121, 0.92)),
    radial-gradient(circle at 16% 18%, rgba(196, 147, 67, 0.3), transparent 28%);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.process-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.steps span {
  color: #ffe1a2;
  font-weight: 950;
}

.steps h3 {
  color: #ffffff;
}

.steps p {
  color: rgba(255, 255, 255, 0.76);
}

.pricing-section {
  background: var(--paper);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.price-card {
  display: flex;
  min-height: 425px;
  flex-direction: column;
  padding: 26px;
  background: linear-gradient(180deg, var(--price-bg, #ffffff), #ffffff 78%);
  border-color: var(--price-line, var(--line));
}

.price-card--featured {
  border-color: rgba(196, 147, 67, 0.8);
  background: linear-gradient(180deg, #fff5df, #ffffff 78%);
  box-shadow: 0 18px 45px rgba(196, 147, 67, 0.22);
}

.price-card:nth-child(1) {
  --price-bg: #eff7fb;
  --price-line: #c8dfec;
}

.price-card:nth-child(3) {
  --price-bg: #eef8f3;
  --price-line: #cfe9dd;
}

.price-card:nth-child(4) {
  --price-bg: #f4f1fb;
  --price-line: #d8d0ef;
}

.plan-kicker {
  width: fit-content;
  margin: 0;
  padding: 5px 10px;
  border-radius: 8px;
  background: var(--surface-strong);
  color: var(--emerald);
  font-size: 0.77rem;
  font-weight: 950;
  text-transform: uppercase;
}

.price-card h3 {
  margin-top: 18px;
}

.price {
  margin: 4px 0 18px;
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 950;
  color: var(--emerald-dark);
}

.price span {
  font-size: 1rem;
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
}

.price-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.price-card .button {
  margin-top: auto;
}

.why-section {
  background: var(--surface);
}

.why-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.why-list article {
  min-height: 170px;
  padding: 24px;
  border-color: var(--benefit-line, var(--line));
  background: var(--benefit-bg, var(--paper));
}

.why-list article:nth-child(1) {
  --benefit-bg: #eef8f3;
  --benefit-line: #cfe9dd;
}

.why-list article:nth-child(2) {
  --benefit-bg: #fff7e8;
  --benefit-line: #f0d9aa;
}

.why-list article:nth-child(3) {
  --benefit-bg: #eff7fb;
  --benefit-line: #c8dfec;
}

.why-list article:nth-child(4) {
  --benefit-bg: #fff0ed;
  --benefit-line: #f1cbc4;
}

.teachers-band {
  padding: 92px 0;
  background: var(--ink);
  color: #ffffff;
}

.teachers-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.teachers-layout p {
  color: rgba(255, 255, 255, 0.74);
}

.teacher-points {
  display: grid;
  gap: 14px;
}

.teacher-points div {
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.teacher-points strong,
.teacher-points span {
  display: block;
}

.teacher-points span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  position: relative;
  padding: 26px;
  border-color: var(--review-line, var(--line));
  background: var(--review-bg, var(--paper));
  overflow: hidden;
}

.review-card::before {
  position: absolute;
  top: 16px;
  right: 20px;
  color: var(--review-mark, var(--gold));
  font-size: 4rem;
  line-height: 1;
  opacity: 0.16;
  content: "\201C";
}

.review-card:nth-child(1) {
  --review-bg: #eef8f3;
  --review-line: #cfe9dd;
  --review-mark: var(--emerald);
}

.review-card:nth-child(2) {
  --review-bg: #fff7e8;
  --review-line: #f0d9aa;
  --review-mark: var(--gold);
}

.review-card:nth-child(3) {
  --review-bg: #f4f1fb;
  --review-line: #d8d0ef;
  --review-mark: var(--plum);
}

.review-card p {
  margin: 0;
  font-size: 1.04rem;
}

.review-card strong {
  display: block;
  color: var(--emerald-dark);
}

.faq-band {
  background: var(--surface-strong);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-section {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(6, 61, 50, 0.98), rgba(12, 91, 78, 0.94)),
    linear-gradient(90deg, rgba(182, 90, 79, 0.16), transparent);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: start;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-methods a {
  width: fit-content;
  color: #ffe1a2;
  font-weight: 850;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 850;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.enquiry-form textarea {
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(196, 147, 67, 0.18);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #ffe1a2;
  font-weight: 850;
}

.footer {
  padding: 56px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  background: #071f1a;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 30px;
}

.brand--footer {
  color: #ffffff;
}

.footer p {
  max-width: 360px;
  margin: 16px 0 0;
}

.footer strong,
.footer a {
  display: block;
}

.footer strong {
  margin-bottom: 10px;
  color: #ffffff;
}

.footer a {
  margin-top: 8px;
}

.footer a:hover,
.footer a:focus-visible {
  color: #ffe1a2;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

@media (max-width: 1040px) {
  .hero h1 {
    font-size: 3.7rem;
  }

  .scene-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .scene-card--wide {
    grid-column: 1 / -1;
  }

  .card-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-layout,
  .why-layout,
  .teachers-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .top-banner__inner {
    min-height: auto;
    padding: 9px 0;
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .nav {
    height: 66px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    inset: 100% 20px auto 20px;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
    gap: 4px;
  }

  .nav-links a {
    padding: 11px 12px;
    border-radius: 8px;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: var(--surface);
  }

  .nav-cta {
    color: #ffffff;
  }

  .hero {
    min-height: 590px;
  }

  .hero__shade {
    background: linear-gradient(90deg, rgba(5, 32, 27, 0.92), rgba(5, 32, 27, 0.62));
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .hero__lead {
    font-size: 1.05rem;
  }

  .hero__metrics {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    gap: 8px;
  }

  .hero__metrics div {
    min-height: auto;
    padding: 12px;
  }

  .hero__metrics strong {
    font-size: 1.55rem;
  }

  .hero__metrics span {
    font-size: 0.78rem;
  }

  .trust-strip__grid,
  .scene-grid,
  .card-grid,
  .review-grid,
  .pricing-grid,
  .steps,
  .why-list,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .section,
  .gallery-band,
  .pricing-section,
  .faq-band,
  .contact-section,
  .process-band,
  .teachers-band {
    padding: 68px 0;
  }

  .section-heading h2,
  .process-copy h2,
  .why-copy h2,
  .teachers-layout h2,
  .faq-copy h2,
  .contact-copy h2 {
    font-size: 2.25rem;
  }

  .photo-tile {
    width: 280px;
  }

  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container,
  .nav,
  .top-banner__inner {
    width: min(100% - 28px, var(--container));
  }

  .brand-text {
    max-width: 180px;
    white-space: normal;
    line-height: 1.1;
  }

  .hero {
    min-height: 560px;
  }

  .hero__content {
    padding-block: 70px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero__actions {
    display: grid;
    max-width: 310px;
  }

  .button {
    width: 100%;
  }

  .price-card,
  .program-card,
  .review-card,
  .why-list article,
  .steps li,
  .enquiry-form {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .photo-track {
    animation: none;
  }
}
