:root {
  --ink: #17202a;
  --muted: #5f6b7a;
  --paper: #fbf7ef;
  --surface: #ffffff;
  --line: #e7e0d4;
  --red: #ba2d2d;
  --red-dark: #8e1f1f;
  --jade: #176b5b;
  --gold: #d59632;
  --blue: #315b8f;
  --plum: #6f3453;
  --paper-deep: #f3eadc;
  --shadow: 0 20px 50px rgba(35, 31, 25, 0.12);
  --page-x: clamp(20px, 5vw, 72px);
  --section-y: clamp(56px, 8vw, 96px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 1px 1px, rgba(23, 32, 42, 0.055) 1px, transparent 0) 0 0 / 22px 22px,
    linear-gradient(90deg, rgba(186, 45, 45, 0.035) 1px, transparent 1px) 0 0 / 96px 96px,
    var(--paper);
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: rgba(186, 45, 45, 0.14);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(var(--page-x), env(safe-area-inset-right)) 14px max(var(--page-x), env(safe-area-inset-left));
  background: rgba(251, 247, 239, 0.93);
  border-bottom: 1px solid rgba(231, 224, 212, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: inline-flex;
  width: 74px;
  height: 54px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(35, 31, 25, 0.1);
}

.brand-mark img {
  display: block;
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  line-height: 1.25;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #374151;
  font-size: 15px;
}

.main-nav a {
  padding: 8px 0;
}

.nav-cta {
  padding: 9px 15px !important;
  color: #fff;
  background: var(--jade);
  border-radius: 8px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  white-space: nowrap;
}

.language-switch a,
.language-switch span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 5px 9px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.language-switch span {
  color: #fff;
  background: var(--red);
}

.language-switch a {
  color: var(--muted);
}

.language-switch a:hover {
  color: var(--ink);
  background: #f7f3ec;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
  min-height: calc(100svh - 74px);
  padding: clamp(44px, 6vw, 92px) var(--page-x) 52px;
  background:
    linear-gradient(115deg, rgba(186, 45, 45, 0.12), transparent 38%),
    linear-gradient(25deg, rgba(23, 107, 91, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), transparent 58%),
    var(--paper);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6.8vw, 76px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.25;
}

.hero-lede,
.section-copy p,
.results-panel p,
.contact-section p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  touch-action: manipulation;
}

.button.primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 26px rgba(186, 45, 45, 0.22);
}

.button.secondary {
  color: var(--jade);
  background: #fff;
  border-color: rgba(23, 107, 91, 0.25);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin: 0;
}

.hero-stats div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-stats dt {
  color: var(--red-dark);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.hero-stats dd {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  padding: 24px;
}

.hero-visual::before {
  position: absolute;
  inset: 0 4% 2% 12%;
  content: "";
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, rgba(213, 150, 50, 0.2), transparent 44%),
    linear-gradient(25deg, rgba(49, 91, 143, 0.18), transparent 46%),
    #efe4d3;
  border-radius: 8px;
  transform: rotate(-3deg);
}

.photo-card {
  position: relative;
  z-index: 1;
  min-height: 470px;
  margin: 0;
  overflow: hidden;
  background: #141a21;
  border: 10px solid #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(20, 26, 33, 0.34), transparent 44%),
    linear-gradient(180deg, transparent 48%, rgba(20, 26, 33, 0.7));
}

.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.photo-card figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  display: grid;
  gap: 4px;
  color: #fff;
}

.photo-card figcaption strong {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.12;
}

.photo-card figcaption span {
  color: rgba(255, 255, 255, 0.82);
}

.learning-dashboard {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 46px;
  display: grid;
  gap: 10px;
  width: min(330px, 80%);
}

.learning-dashboard div {
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(231, 224, 212, 0.92);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(35, 31, 25, 0.14);
}

.learning-dashboard strong {
  color: var(--red-dark);
}

.learning-dashboard span {
  color: var(--muted);
  font-size: 14px;
}

.lesson-board {
  position: relative;
  display: grid;
  min-height: 500px;
  padding: 26px;
  overflow: hidden;
  background: #1f473f;
  border: 12px solid #c99d64;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.board-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.character-card {
  display: grid;
  width: min(58vw, 210px);
  height: min(58vw, 210px);
  place-items: center;
  justify-self: center;
  align-self: center;
  color: #fef6df;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  font-size: clamp(92px, 13vw, 152px);
  font-weight: 900;
}

.lesson-lines {
  display: grid;
  gap: 12px;
  align-self: end;
}

.lesson-lines span {
  height: 10px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 8px;
}

.lesson-lines span:nth-child(2) {
  width: 72%;
}

.lesson-lines span:nth-child(3) {
  width: 52%;
}

.score-panel {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(300px, calc(100% - 48px));
  padding: 18px;
  color: var(--ink);
  background: #fffaf0;
  border: 1px solid rgba(213, 150, 50, 0.38);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.score-panel strong {
  display: block;
  margin-bottom: 6px;
}

.score-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.trust-band {
  padding: 0 var(--page-x) 48px;
}

.trust-band div {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  color: #fff;
  background:
    linear-gradient(90deg, var(--blue), var(--plum));
  border-radius: 8px;
}

.trust-band strong {
  color: #ffe0a6;
}

.section {
  padding: var(--section-y) var(--page-x);
}

.proof {
  background:
    linear-gradient(180deg, #fff, #fffaf3);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.proof-grid article {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 241, 0.98));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(35, 31, 25, 0.06);
}

.proof-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.proof-grid p {
  margin: 0;
  color: var(--muted);
}

.parent-concerns {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(180px, 0.42fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), transparent 38%),
    repeating-linear-gradient(90deg, rgba(23, 107, 91, 0.045) 0 1px, transparent 1px 26px),
    var(--paper-deep);
}

.concern-copy p {
  color: var(--muted);
  font-size: 18px;
}

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

.concern-grid div {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  font-weight: 800;
}

.texture-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  aspect-ratio: 1;
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(23, 107, 91, 0.96), rgba(23, 32, 42, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.texture-card span {
  display: grid;
  place-items: center;
  color: #fff5df;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 64px);
  background:
    linear-gradient(180deg, #fff, #fffaf3);
}

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

.programme-card,
.method-steps article {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(35, 31, 25, 0.06);
}

.programme-card:nth-child(1) {
  border-top: 5px solid var(--gold);
}

.programme-card:nth-child(2) {
  border-top: 5px solid var(--jade);
}

.programme-card:nth-child(3) {
  border-top: 5px solid var(--red);
}

.programme-card:nth-child(4) {
  border-top: 5px solid var(--blue);
}

.level {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.programme-card p,
.method-steps p {
  margin: 0;
  color: var(--muted);
}

.method {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), transparent),
    var(--paper-deep);
}

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

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.method-steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.conversion-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  background:
    linear-gradient(120deg, var(--red-dark), var(--plum));
}

.conversion-strip h2 {
  max-width: 860px;
  margin-bottom: 0;
}

.conversion-strip .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.conversion-strip .button.primary {
  flex: 0 0 auto;
  color: var(--red-dark);
  background: #fff;
  box-shadow: none;
}

.results {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: #fff;
}

.results-panel {
  padding: clamp(28px, 5vw, 46px);
  color: #fff;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 16px),
    var(--jade);
  border-radius: 8px;
}

.results-panel .eyebrow,
.results-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.path-list {
  display: grid;
  gap: 14px;
}

.path-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.path-list strong {
  color: var(--red-dark);
  font-size: 20px;
  white-space: nowrap;
}

.path-list span {
  color: var(--muted);
  text-align: right;
}

.testimonials {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(49, 91, 143, 0.08), transparent 44%),
    #f7f3ec;
}

.quote-block {
  align-self: center;
  max-width: 780px;
}

.quote-block p {
  margin-bottom: 16px;
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 900;
  line-height: 1.2;
}

.quote-block span {
  color: var(--muted);
  font-weight: 800;
}

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

.feature-list div {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.faq {
  background: #fff;
}

.accordion {
  max-width: 920px;
}

.faq-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item::after {
  content: "+";
  color: var(--red);
  font-size: 24px;
  line-height: 1;
}

.faq-item[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  display: none;
  max-width: 760px;
  padding: 0 0 22px;
  color: var(--muted);
}

.faq-answer.open {
  display: block;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  padding: var(--section-y) var(--page-x);
  color: #fff;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, rgba(23, 107, 91, 0.96), rgba(23, 32, 42, 0.96)),
    var(--jade);
}

.contact-section .eyebrow,
.contact-section p {
  color: rgba(255, 255, 255, 0.78);
}

.location-list {
  display: grid;
  gap: 12px;
  max-width: 680px;
  margin-top: 28px;
}

.location-list h3 {
  margin: 0 0 2px;
  color: #fff;
  font-size: 18px;
}

.location-list address {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-style: normal;
}

.location-list strong {
  color: #fff;
}

.location-list a {
  color: #ffe0a6;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 4vw, 34px);
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  font-size: 16px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--jade);
  box-shadow: 0 0 0 3px rgba(23, 107, 91, 0.13);
}

.form-note {
  margin: 0;
  color: var(--muted) !important;
  font-size: 13px !important;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 22px var(--page-x) max(22px, env(safe-area-inset-bottom));
  color: #fff;
  background: #141a21;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

.floating-cta {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 30;
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  color: #fff;
  background: var(--red);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(186, 45, 45, 0.28);
  font-weight: 900;
}

.not-found {
  display: grid;
  min-height: 100svh;
  place-content: center;
  padding: var(--page-x);
  text-align: center;
}

.not-found img {
  width: 120px;
  margin: 0 auto 24px;
}

.not-found p {
  max-width: 520px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 18px;
}

@media (min-width: 1280px) {
  .hero,
  .section,
  .contact-section,
  .site-header,
  .site-footer,
  .trust-band {
    max-width: 1440px;
    margin-inline: auto;
  }

  .site-header {
    left: 0;
    right: 0;
  }

  .hero-visual {
    max-width: 620px;
    justify-self: end;
  }
}

@media (max-width: 1180px) {
  .site-header {
    gap: 16px;
  }

  .brand {
    min-width: 180px;
  }

  .header-actions {
    gap: 12px;
  }

  .main-nav {
    gap: 13px;
    font-size: 14px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  }

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

@media (max-width: 980px) {
  :root {
    --page-x: clamp(18px, 4vw, 40px);
    --section-y: clamp(48px, 7vw, 76px);
  }

  .nav-toggle {
    display: block;
  }

  .header-actions {
    position: absolute;
    top: 71px;
    right: var(--page-x);
    left: var(--page-x);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .header-actions.open {
    display: flex;
  }

  .main-nav {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .main-nav a {
    min-height: 44px;
    padding: 10px;
  }

  .language-switch {
    align-self: flex-start;
  }

  .hero,
  .split,
  .parent-concerns,
  .results,
  .testimonials,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 720px;
  }

  .hero-visual {
    min-height: 420px;
    padding: 0;
  }

  .photo-card,
  .photo-card img {
    min-height: 420px;
  }

  .learning-dashboard {
    right: 18px;
    bottom: 24px;
  }

  .lesson-board {
    min-height: 420px;
  }

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

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

  .conversion-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .texture-card {
    max-width: 260px;
  }
}

@media (max-width: 820px) {
  .hero {
    padding-top: 42px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .programme-card,
  .method-steps article {
    padding: 22px;
  }

  .quote-block p {
    font-size: clamp(26px, 6vw, 38px);
  }
}

@media (max-width: 640px) {
  :root {
    --page-x: 16px;
    --section-y: 44px;
  }

  .site-header {
    gap: 12px;
    padding-inline: max(16px, env(safe-area-inset-left)) max(16px, env(safe-area-inset-right));
  }

  .brand {
    min-width: auto;
    max-width: min(70vw, 340px);
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    display: none;
  }

  .hero,
  .section,
  .contact-section {
    padding-inline: 16px;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 38px;
  }

  h1 {
    font-size: clamp(34px, 10.5vw, 46px);
  }

  h2 {
    font-size: clamp(25px, 7.5vw, 34px);
  }

  h3 {
    font-size: 19px;
  }

  .hero-lede,
  .section-copy p,
  .results-panel p,
  .contact-section p {
    font-size: 16px;
  }

  .hero-stats,
  .programme-grid,
  .method-steps,
  .proof-grid,
  .concern-grid {
    grid-template-columns: 1fr;
  }

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

  .button {
    min-height: 50px;
  }

  .trust-band {
    padding-inline: 16px;
  }

  .trust-band div,
  .path-list div {
    align-items: flex-start;
    flex-direction: column;
  }

  .path-list span {
    text-align: left;
  }

  .lesson-board {
    min-height: 360px;
    padding: 18px;
    border-width: 8px;
  }

  .photo-card {
    border-width: 7px;
  }

  .photo-card,
  .photo-card img {
    min-height: 360px;
  }

  .learning-dashboard {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -22px;
    padding-inline: 12px;
  }

  .board-top {
    flex-direction: column;
  }

  .score-panel {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .contact-section {
    padding-bottom: max(44px, env(safe-area-inset-bottom));
  }

  .floating-cta {
    display: inline-flex;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 58px;
    height: 44px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-stats div,
  .proof-grid article,
  .concern-grid div,
  .programme-card,
  .method-steps article,
  .results-panel,
  .contact-form {
    padding: 18px;
  }

  .character-card {
    width: min(68vw, 184px);
    height: min(68vw, 184px);
  }

  .lesson-board {
    min-height: 330px;
  }

  .photo-card,
  .photo-card img {
    min-height: 320px;
  }
}

@media (max-width: 360px) {
  .brand strong {
    max-width: 150px;
    overflow-wrap: anywhere;
    line-height: 1.25;
  }

  .hero-actions {
    margin: 24px 0;
  }

  .trust-band div {
    padding: 16px;
  }
}

@media (max-height: 540px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-visual {
    min-height: 320px;
  }

  .photo-card,
  .photo-card img {
    min-height: 300px;
  }

  .lesson-board {
    min-height: 320px;
  }
}

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