@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/inter-latin-variable.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("assets/fonts/playfair-display-latin-variable.woff2") format("woff2");
}

:root {
  --color-primary-base: #0b4344;
  --color-primary-rgb: 11, 67, 68;
  --color-secondary-base: #f5f1e8;
  --color-secondary-rgb: 245, 241, 232;
  --color-secondary-muted: #e9e3d8;
  --color-text-primary: #102a2a;
  --color-text-primary-rgb: 16, 42, 42;
  --color-text-muted: #526969;
  --color-accent-spark: #b7d438;
  --color-accent-spark-rgb: 183, 212, 56;
  --color-interactive: #0f5d5e;
  --navy: var(--color-primary-base);
  --navy-deep: var(--color-text-primary);
  --navy-soft: var(--color-interactive);
  --navy-rgb: var(--color-primary-rgb);
  --cream: var(--color-secondary-base);
  --cream-deep: var(--color-secondary-muted);
  --white: #ffffff;
  --white-rgb: 255, 255, 255;
  --gold: var(--color-primary-base);
  --gold-light: var(--color-accent-spark);
  --gold-deep: var(--color-interactive);
  --gold-rgb: var(--color-primary-rgb);
  --charcoal: var(--color-text-primary);
  --charcoal-rgb: var(--color-text-primary-rgb);
  --muted: var(--color-text-muted);
  --line: rgba(var(--navy-rgb), 0.13);
  --line-dark: rgba(var(--white-rgb), 0.16);
  --shadow-sm: 0 12px 30px rgba(var(--navy-rgb), 0.08);
  --shadow-md: 0 24px 60px rgba(var(--navy-rgb), 0.13);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container-max: 1180px;
  --container-pad: 56px;
  --section-gap: clamp(64px, 8vw, 112px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: "Inter", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

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

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

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

input,
textarea,
select {
  width: 100%;
}

p,
h1,
h2,
h3,
dl,
dd,
figure,
blockquote {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  color: var(--white);
  font-size: clamp(3.05rem, 5vw, 5.05rem);
  line-height: 1;
}

h2 {
  font-size: clamp(2.35rem, 4.4vw, 4.2rem);
  line-height: 1.03;
}

h3 {
  font-size: 1.55rem;
  line-height: 1.15;
}

:focus-visible {
  outline: 3px solid rgba(var(--color-accent-spark-rgb), 0.82);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 1000;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  padding: 11px 16px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.skip-link:focus {
  top: 16px;
}

.breadcrumbs {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(var(--color-accent-spark-rgb), 0.18);
  background: var(--navy-deep);
  color: rgba(var(--white-rgb), 0.72);
  padding: 16px 0 0;
  font-size: 0.72rem;
  font-weight: 700;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs li + li::before {
  content: "/";
  color: rgba(var(--color-accent-spark-rgb), 0.75);
}

.breadcrumbs a {
  color: var(--gold-light);
  transition: color 180ms ease;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.container {
  width: min(var(--container-max), calc(100% - var(--container-pad)));
  margin: 0 auto;
}

.section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: var(--section-gap);
  align-items: start;
}

.section-inner-single {
  display: block;
}

.section {
  position: relative;
  padding: 112px 0;
  scroll-margin-top: 90px;
}

.section-intro {
  max-width: 760px;
}

.section-intro h2,
.faq-heading h2,
.enquiry-copy h2,
.about-copy h2,
.diagnostic-approach-layout h2,
.method-simple-layout h2 {
  margin-top: 12px;
}

.eyebrow {
  color: var(--gold-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--gold-light);
}

.lead-copy {
  color: var(--navy-soft);
  font-size: 1.17rem;
  line-height: 1.72;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 23px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  border-color: rgba(var(--color-secondary-rgb), 0.38);
  background: var(--color-primary-base);
  color: var(--color-secondary-base);
  box-shadow:
    inset 0 -2px 0 rgba(var(--color-accent-spark-rgb), 0.58),
    0 14px 30px rgba(var(--navy-rgb), 0.16);
}

.button-primary:hover {
  border-color: var(--color-interactive);
  background: var(--color-interactive);
  color: var(--color-secondary-base);
  box-shadow: 0 18px 36px rgba(var(--navy-rgb), 0.2);
}

.button-secondary {
  border-color: rgba(var(--white-rgb), 0.58);
  background: rgba(var(--white-rgb), 0.055);
  color: var(--color-secondary-base);
}

.button-secondary:hover {
  border-color: var(--color-accent-spark);
  background: var(--color-interactive);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.22);
  background: rgba(var(--color-primary-rgb), 0.97);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(var(--navy-rgb), 0.22);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--gold-rgb), 0.64);
  border-radius: 13px;
  background: rgba(var(--white-rgb), 0.045);
}

.brand-mark img {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.brand-copy small {
  color: rgba(var(--white-rgb), 0.66);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(var(--white-rgb), 0.82);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  white-space: nowrap;
  transition: color 180ms ease;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--color-accent-spark);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  border: 1px solid rgba(var(--color-secondary-rgb), 0.38);
  border-radius: 999px;
  background: var(--color-primary-base);
  color: var(--color-secondary-base);
  padding: 10px 16px;
  box-shadow: inset 0 -2px 0 rgba(var(--color-accent-spark-rgb), 0.58);
}

.nav-cta:hover {
  border-color: var(--color-interactive);
  background: var(--color-interactive);
  color: var(--color-secondary-base);
}

/* Hero */
.hero {
  position: relative;
  min-height: 730px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background-color: var(--navy-deep);
  background-image:
    linear-gradient(rgba(var(--white-rgb), 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--white-rgb), 0.035) 1px, transparent 1px),
    radial-gradient(circle at 84% 24%, rgba(var(--gold-rgb), 0.12), transparent 30%),
    linear-gradient(
      135deg,
      var(--color-text-primary),
      var(--color-primary-base) 58%,
      var(--color-interactive)
    );
  background-size: 44px 44px, 44px 44px, auto, auto;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(
    var(--color-accent-spark),
    var(--color-primary-base),
    transparent 92%
  );
}

.hero-bridge {
  position: absolute;
  right: -4%;
  bottom: -9%;
  width: 88%;
  height: 74%;
  opacity: 0.11;
}

.hero-bridge path {
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 2.2;
  vector-effect: non-scaling-stroke;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(410px, 0.78fr);
  gap: clamp(60px, 8vw, 112px);
  align-items: center;
  padding: 96px 0 104px;
}

.hero-copy {
  max-width: 710px;
}

.hero-copy h1 {
  margin-top: 17px;
}

.mobile-title-break {
  display: none;
}

.hero-lede {
  max-width: 660px;
  margin-top: 26px;
  color: var(--white);
  font-size: 1.24rem;
  font-weight: 600;
  line-height: 1.6;
}

.hero-body {
  max-width: 660px;
  margin-top: 15px;
  color: rgba(var(--white-rgb), 0.74);
}

.hero .button-row {
  margin-top: 32px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
  list-style: none;
  color: rgba(var(--white-rgb), 0.72);
  font-size: 0.72rem;
  line-height: 1.5;
}

.hero-trust li {
  position: relative;
  border-top: 1px solid rgba(var(--gold-rgb), 0.38);
  padding: 13px 0 0 14px;
}

.hero-trust li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent-spark);
}

.diagnostic-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(var(--gold-rgb), 0.42);
  border-radius: var(--radius-lg);
  background: rgba(var(--color-secondary-rgb), 0.97);
  color: var(--charcoal);
  padding: 28px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.31);
  transform: rotate(1.3deg);
}

.diagnostic-card::after {
  content: "y";
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(var(--navy-rgb), 0.24);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
}

.diagnostic-heading {
  display: grid;
  gap: 3px;
  padding-right: 32px;
}

.diagnostic-kicker {
  color: var(--gold-deep);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.diagnostic-heading strong {
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.68rem;
  line-height: 1.12;
}

.diagnostic-student {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.status-pill {
  border-radius: 999px;
  background: rgba(var(--color-accent-spark-rgb), 0.22);
  color: var(--color-text-primary);
  padding: 6px 9px;
}

.diagnostic-map {
  position: relative;
  height: 170px;
  margin: 18px 0 12px;
  overflow: hidden;
  border-radius: 13px;
  background-image:
    linear-gradient(rgba(var(--navy-rgb), 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--navy-rgb), 0.075) 1px, transparent 1px);
  background-size: 24px 24px;
}

.diagnostic-map svg {
  position: absolute;
  inset: 8px 10px 10px 26px;
  width: calc(100% - 36px);
  height: calc(100% - 18px);
  overflow: visible;
}

.map-path-shadow,
.map-path {
  fill: none;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.map-path-shadow {
  stroke: rgba(var(--color-accent-spark-rgb), 0.2);
  stroke-width: 10;
}

.map-path {
  stroke: var(--color-accent-spark);
  stroke-width: 3;
}

.map-axis {
  position: absolute;
  z-index: 2;
  background: rgba(var(--navy-rgb), 0.34);
}

.map-axis-x {
  right: 12px;
  bottom: 18px;
  left: 16px;
  height: 1px;
}

.map-axis-y {
  top: 12px;
  bottom: 18px;
  left: 16px;
  width: 1px;
}

.map-point {
  position: absolute;
  z-index: 3;
  width: 10px;
  height: 10px;
  border: 2px solid var(--cream);
  border-radius: 50%;
  background: var(--color-accent-spark);
  box-shadow: 0 0 0 2px rgba(var(--color-accent-spark-rgb), 0.24);
}

.point-one {
  top: 94px;
  left: 29%;
}

.point-two {
  top: 72px;
  left: 60%;
}

.point-three {
  top: 35px;
  right: 9%;
}

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

.diagnostic-list div {
  display: grid;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: 11px;
}

.diagnostic-list dt {
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 700;
}

.diagnostic-list dd {
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
}

.trend-up {
  color: var(--color-interactive);
}

.diagnostic-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.5;
}

/* Why this works */
.problem-section {
  overflow: hidden;
  background: var(--cream);
}

.problem-section::after {
  display: none;
}

.problem-layout {
  position: relative;
  z-index: 1;
}

.problem-intro h2 {
  max-width: 690px;
}

.problem-copy {
  display: grid;
  gap: 18px;
  padding-top: 0;
}

.problem-copy > p:not(.lead-copy) {
  color: var(--muted);
}

.process-chain {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 4px;
}

.process-chain span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(var(--gold-rgb), 0.36);
  border-radius: 999px;
  background: rgba(var(--white-rgb), 0.64);
  color: var(--navy);
  padding: 9px 16px;
  font-size: 0.76rem;
  font-weight: 800;
}

.process-chain span:not(:last-child) {
  margin-right: 17px;
}

.process-chain span:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  right: -22px;
  color: var(--gold-deep);
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
}

.process-chain .missing-step {
  border-color: rgba(var(--color-accent-spark-rgb), 0.58);
  background: rgba(var(--color-accent-spark-rgb), 0.18);
  color: var(--navy);
}

/* Diagnostic approach */
.diagnostic-approach-section {
  overflow: hidden;
  background: var(--navy);
  color: rgba(var(--white-rgb), 0.74);
  padding: clamp(112px, 12vw, 168px) 0;
}

.diagnostic-approach-layout {
  align-items: start;
}

.diagnostic-approach-section h2 {
  color: var(--white);
  max-width: 760px;
}

.diagnostic-approach-copy {
  position: relative;
  display: grid;
  gap: 20px;
}

.diagnostic-approach-copy::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--section-gap) / -2);
  width: 1px;
  background: rgba(var(--color-accent-spark-rgb), 0.52);
}

.diagnostic-approach-copy > p:not(.lead-copy) {
  color: rgba(var(--white-rgb), 0.72);
}

.diagnostic-approach-copy .lead-copy {
  color: var(--white);
}

.diagnostic-approach-copy a {
  color: var(--gold-light);
  font-weight: 800;
}

.diagnostic-points {
  display: grid;
  gap: 14px;
  margin-top: 8px;
  list-style: none;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 750;
}

.diagnostic-points li {
  position: relative;
  padding-left: 25px;
}

.diagnostic-points li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 12px;
  height: 2px;
  background: var(--color-accent-spark);
}

/* Method */
.method-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--cream-deep);
  color: var(--charcoal);
}

.method-simple-layout {
  align-items: start;
}

.method-steps-simple {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3.2vw, 42px);
}

.method-step {
  border-top: 1px solid rgba(var(--gold-rgb), 0.46);
  padding-top: 22px;
}

.method-step h3 {
  margin-top: 12px;
  color: var(--navy);
  font-size: 1.38rem;
}

.method-step p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.68;
}

.step-number {
  color: var(--gold-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1;
}

/* About */
/* Editorial quote */
.editorial-quote-section {
  background: var(--cream);
  padding: clamp(118px, 14vw, 190px) 0;
}

.editorial-quote-layout {
  max-width: none;
}

.editorial-quote-layout blockquote {
  margin-top: 24px;
}

.editorial-quote-layout blockquote p {
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.45rem, 5vw, 5.25rem);
  font-weight: 650;
  line-height: 1.02;
}

.editorial-quote-layout > p:last-child {
  max-width: 520px;
  margin: 34px 0 0 auto;
  color: var(--muted);
  font-size: 1.02rem;
}

/* About */
.about-section {
  overflow: hidden;
  background: var(--color-secondary-base);
  padding: clamp(112px, 12vw, 170px) 0;
}

.about-layout {
  align-items: center;
}

.about-layout-single .about-copy {
  max-width: 890px;
  margin: 0 auto;
}

.about-layout-single .about-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
}

.about-visual {
  position: relative;
  min-height: 700px;
}

.about-visual::before {
  content: "";
  position: absolute;
  top: -30px;
  right: 54px;
  bottom: 70px;
  left: 0;
  border: 1px solid rgba(var(--gold-rgb), 0.34);
  border-radius: var(--radius-lg);
}

.about-visual::after {
  display: none;
}

.about-visual img {
  position: absolute;
  inset: 0 0 72px 0;
  width: 100%;
  height: calc(100% - 72px);
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: 55% center;
  box-shadow: var(--shadow-md);
}

.about-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 210px;
  display: grid;
  border-radius: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 21px;
  box-shadow: var(--shadow-md);
}

.about-visual figcaption strong {
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.about-visual figcaption span {
  margin-top: 5px;
  font-size: 0.7rem;
  line-height: 1.45;
}

.about-copy {
  display: grid;
  gap: 20px;
}

.about-copy > p:not(.eyebrow, .lead-copy) {
  color: var(--muted);
}

.about-points {
  display: grid;
  gap: 11px;
  margin-top: 5px;
  list-style: none;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
}

.about-points li {
  position: relative;
  padding-left: 24px;
}

.about-points li::before {
  content: "";
  position: absolute;
  top: 0.67em;
  left: 0;
  width: 12px;
  height: 1px;
  background: var(--color-accent-spark);
}

/* Weekly tuition */
.weekly-tuition-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--color-secondary-base);
}

.weekly-tuition-layout {
  align-items: start;
}

.weekly-tuition-copy {
  display: grid;
  gap: 20px;
}

.weekly-tuition-copy > p:not(.lead-copy) {
  color: var(--muted);
}

.weekly-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 10px 0 4px;
}

.weekly-flow article {
  border: 1px solid rgba(var(--gold-rgb), 0.28);
  border-radius: var(--radius-sm);
  background: rgba(var(--white-rgb), 0.64);
  padding: 20px;
}

.weekly-flow span {
  color: var(--gold-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.02rem;
  font-weight: 700;
}

.weekly-flow h3 {
  margin-top: 8px;
  font-size: 1.26rem;
}

.weekly-flow p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.62;
}

.about-section .button-secondary,
.offers-section .button-secondary,
.weekly-tuition-section .button-secondary,
.problem-section .button-secondary {
  border-color: rgba(var(--navy-rgb), 0.18);
  background: rgba(var(--navy-rgb), 0.04);
  color: var(--navy);
}

.about-section .button-secondary:hover,
.offers-section .button-secondary:hover,
.weekly-tuition-section .button-secondary:hover,
.problem-section .button-secondary:hover {
  border-color: rgba(var(--navy-rgb), 0.34);
  background: rgba(var(--navy-rgb), 0.08);
  color: var(--navy);
}

/* Offers */
.offers-section {
  overflow: hidden;
  background: var(--cream-deep);
}

.offers-section::before {
  display: none;
}

.offers-heading {
  position: relative;
  z-index: 1;
  align-items: start;
  scroll-margin-top: 110px;
}

.offers-heading > p {
  color: var(--muted);
}

.progress-paths {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  margin-top: 48px;
}

.trial-path {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(var(--gold-rgb), 0.62);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: clamp(28px, 5vw, 54px);
  box-shadow: 0 22px 60px rgba(var(--navy-rgb), 0.1);
}

.trial-copy {
  max-width: 760px;
}

.offer-label,
.coming-soon {
  color: var(--gold-deep);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.trial-copy h3 {
  margin-top: 7px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.trial-copy > p:not(.offer-label) {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.trial-details {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-top: 18px;
  list-style: none;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
}

.trial-details li {
  position: relative;
  padding-left: 17px;
}

.trial-details li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 1px;
  background: var(--color-accent-spark);
}

.main-offers {
  max-width: 920px;
}

.offer-path {
  border-top: 1px solid rgba(var(--gold-rgb), 0.42);
  padding-top: 20px;
}

.offer-path + .offer-path {
  margin-top: 18px;
}

.offer-path > span {
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-path > p {
  max-width: 780px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.offer-path strong {
  color: var(--navy);
  font-weight: 700;
}

/* Detail pages */
.detail-page .detail-steps,
.detail-page .mot-steps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mot-list-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 13px 24px;
}

.mot-card-grid {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 34px;
}

.mot-card-grid .offer-path {
  margin-top: 0;
}

.mot-booking-card {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.mot-final-actions {
  margin-top: 32px;
}

.detail-page .enquiry-section .button-secondary,
.detail-page .editorial-quote-section .button-secondary {
  border-color: rgba(var(--navy-rgb), 0.18);
  background: rgba(var(--navy-rgb), 0.04);
  color: var(--navy);
}

.detail-page .enquiry-section .button-secondary:hover,
.detail-page .editorial-quote-section .button-secondary:hover {
  border-color: rgba(var(--navy-rgb), 0.34);
  background: rgba(var(--navy-rgb), 0.08);
}

.enquiry-copy a {
  color: var(--gold-deep);
  font-weight: 800;
}

/* Enquiry form */
.enquiry-section {
  overflow: hidden;
  background: var(--cream-deep);
}

.enquiry-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.enquiry-layout {
  align-items: start;
}

.enquiry-copy {
  position: sticky;
  top: 130px;
}

.enquiry-copy > p.lead-copy {
  margin-top: 24px;
}

.booking-microcopy {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.enquiry-assurance {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 32px;
  border-top: 1px solid var(--line);
  padding-top: 19px;
}

.enquiry-assurance + .enquiry-assurance {
  margin-top: 14px;
}

.enquiry-assurance span {
  color: var(--gold-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

.enquiry-assurance p {
  color: var(--muted);
  font-size: 0.78rem;
}

.enquiry-assurance strong {
  color: var(--navy);
}

.enquiry-form {
  display: grid;
  gap: 21px;
  border: 1px solid rgba(var(--color-secondary-rgb), 0.16);
  border-radius: 24px;
  background: linear-gradient(180deg, var(--navy), var(--color-text-primary));
  color: var(--white);
  padding: clamp(30px, 4.6vw, 46px);
  box-shadow: 0 34px 80px rgba(var(--navy-rgb), 0.2);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-grid {
  display: grid;
  gap: 18px;
}

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

.form-row {
  display: grid;
  gap: 9px;
}

.form-row > label {
  color: var(--white);
  font-size: 0.73rem;
  font-weight: 700;
}

.form-row input,
.form-row textarea,
.form-row select {
  min-height: 49px;
  border: 1px solid rgba(var(--color-secondary-rgb), 0.18);
  border-radius: var(--radius-sm);
  background: rgba(var(--white-rgb), 0.075);
  color: var(--white);
  padding: 12px 14px;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(var(--white-rgb), 0.59);
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: 0;
  border-color: var(--gold-light);
  background: rgba(var(--white-rgb), 0.12);
  box-shadow: 0 0 0 4px rgba(var(--gold-rgb), 0.15);
}

.form-row textarea {
  min-height: 125px;
  resize: vertical;
}

.form-row select option {
  color: var(--charcoal);
}

.appointment-picker {
  min-width: 0;
  border: 1px solid rgba(var(--color-secondary-rgb), 0.16);
  border-radius: 18px;
  background: rgba(var(--white-rgb), 0.055);
  padding: 20px;
}

.appointment-picker legend {
  padding: 0 7px;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.32rem;
  font-weight: 700;
  line-height: 1.2;
}

.appointment-helper {
  color: rgba(var(--white-rgb), 0.72);
  font-size: 0.76rem;
  line-height: 1.6;
}

.appointment-date-selector {
  display: flex;
  gap: 10px;
  max-width: 100%;
  overflow-x: auto;
  padding: 3px 2px 10px;
  scrollbar-color: rgba(var(--color-accent-spark-rgb), 0.55) transparent;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.appointment-date-button,
.appointment-time-button {
  border: 1px solid rgba(var(--color-secondary-rgb), 0.18);
  background: rgba(var(--white-rgb), 0.075);
  color: var(--white);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.appointment-date-button {
  flex: 0 0 88px;
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 2px;
  border-radius: 16px;
  padding: 12px 10px;
  text-align: left;
}

.appointment-date-button span {
  display: block;
}

.appointment-date-day {
  color: rgba(var(--white-rgb), 0.66);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.appointment-date-number {
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.72rem;
  font-weight: 700;
  line-height: 1;
}

.appointment-date-month {
  color: rgba(var(--white-rgb), 0.72);
  font-size: 0.68rem;
  font-weight: 700;
}

.appointment-time-panel {
  display: grid;
  gap: 10px;
}

.appointment-time-label {
  color: rgba(var(--white-rgb), 0.76);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.appointment-time-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.appointment-time-button {
  min-height: 47px;
  border-radius: 999px;
  padding: 10px 12px;
  font-size: 0.78rem;
  font-weight: 800;
}

.appointment-date-button:hover,
.appointment-time-button:hover {
  border-color: rgba(var(--color-accent-spark-rgb), 0.62);
  background: rgba(var(--white-rgb), 0.12);
}

.appointment-date-button.is-selected,
.appointment-date-button[aria-pressed="true"],
.appointment-time-button.is-selected,
.appointment-time-button[aria-pressed="true"] {
  border-color: var(--color-accent-spark);
  background: var(--color-secondary-base);
  color: var(--navy);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.appointment-date-button.is-selected .appointment-date-day,
.appointment-date-button.is-selected .appointment-date-number,
.appointment-date-button.is-selected .appointment-date-month,
.appointment-date-button[aria-pressed="true"] .appointment-date-day,
.appointment-date-button[aria-pressed="true"] .appointment-date-number,
.appointment-date-button[aria-pressed="true"] .appointment-date-month {
  color: var(--navy);
}

.appointment-feedback {
  border-top: 1px solid rgba(var(--color-secondary-rgb), 0.13);
  color: rgba(var(--white-rgb), 0.76);
  padding-top: 12px;
  font-size: 0.72rem;
  line-height: 1.5;
}

.appointment-feedback.is-error,
.form-status.is-error {
  color: #ffe1d9;
}

.form-status {
  border-top: 1px solid rgba(var(--color-secondary-rgb), 0.13);
  color: var(--color-secondary-base);
  padding-top: 14px;
  font-size: 0.76rem;
  line-height: 1.5;
  text-align: center;
}

.form-button {
  width: 100%;
  margin-top: 8px;
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-note {
  color: rgba(var(--white-rgb), 0.7);
  font-size: 0.68rem;
  line-height: 1.5;
  text-align: center;
}

/* FAQ */
.faq-section {
  background: var(--cream);
}

.faq-layout {
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 130px;
}

.faq-heading > p:last-child {
  margin-top: 20px;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  background: rgba(var(--white-rgb), 0.48);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 48px 20px 18px;
  cursor: pointer;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 14px;
  height: 2px;
  background: var(--gold-deep);
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list details[open] summary {
  color: var(--gold-deep);
}

.faq-list details p {
  max-width: 700px;
  padding: 0 50px 21px 18px;
  color: var(--muted);
  font-size: 0.83rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line-dark);
  background: var(--color-primary-base);
  color: rgba(var(--white-rgb), 0.74);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(220px, 0.55fr) minmax(280px, 0.7fr);
  gap: 42px;
  align-items: center;
  padding: 54px 0 42px;
}

.brand-footer .brand-mark {
  width: 58px;
  height: 58px;
  background: rgba(var(--white-rgb), 0.045);
}

.brand-footer .brand-mark img {
  width: 50px;
  height: 50px;
  border-radius: 14px;
}

.footer-brand > p {
  max-width: 380px;
  margin-top: 19px;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.3;
}

.footer-local {
  display: grid;
  gap: 5px;
  border-left: 1px solid var(--line-dark);
  padding-left: 28px;
}

.footer-label {
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-local strong {
  color: var(--white);
  font-size: 0.85rem;
}

.footer-local a {
  width: fit-content;
  color: rgba(var(--white-rgb), 0.74);
  font-size: 0.72rem;
  transition: color 180ms ease;
}

.footer-local a:hover {
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 5px;
  margin-top: 15px;
  border-top: 1px solid var(--line-dark);
  padding-top: 14px;
}

.footer-links a {
  color: var(--gold-light);
  font-weight: 700;
}

.footer-action {
  display: grid;
  gap: 13px;
  justify-items: start;
}

.footer-action > p {
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line-dark);
  padding: 20px 0 24px;
  font-size: 0.68rem;
}

.footer-bottom a {
  color: var(--gold-light);
  font-weight: 700;
}

/* Fixed enquiry helpers */
.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: grid;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition:
    opacity 200ms ease,
    visibility 200ms ease,
    transform 200ms ease;
}

.floating-actions.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-whatsapp,
.back-to-top {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(var(--color-text-primary-rgb), 0.22);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.floating-whatsapp {
  border: 1px solid #075e54;
  background: #128c7e;
  color: var(--white);
}

.floating-whatsapp svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.floating-whatsapp:hover {
  border-color: #064d45;
  background: #075e54;
  transform: translateY(-2px) scale(1.03);
}

.back-to-top {
  border: 1px solid rgba(var(--color-secondary-rgb), 0.58);
  background: var(--color-primary-base);
  color: var(--color-secondary-base);
  font-size: 1.15rem;
}

.back-to-top:hover {
  border-color: var(--color-accent-spark);
  background: var(--color-interactive);
  transform: translateY(-2px);
}

.mobile-cta-bar[hidden] {
  display: none;
}

.mobile-cta-bar {
  display: none;
}

@media (max-width: 1080px) {
  :root {
    --section-gap: 60px;
  }

  .nav-links {
    gap: 17px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    gap: 45px;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-trust li {
    border-top: 0;
    padding-top: 0;
  }

}

@media (max-width: 920px) {
  .section {
    padding: 88px 0;
  }

  .diagnostic-approach-section,
  .editorial-quote-section,
  .about-section {
    padding: 96px 0;
  }

  .nav-shell {
    min-height: auto;
    display: grid;
    gap: 13px;
    padding: 13px 0;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .section-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 78px 0 92px;
  }

  .hero-copy {
    max-width: 790px;
  }

  .diagnostic-card {
    width: min(560px, 100%);
    justify-self: end;
  }

  .problem-copy {
    max-width: 740px;
    padding-top: 0;
  }

  .diagnostic-approach-copy {
    max-width: 740px;
    border-top: 1px solid rgba(var(--color-accent-spark-rgb), 0.52);
    padding-top: 28px;
  }

  .diagnostic-approach-copy::before {
    display: none;
  }

  .method-steps-simple {
    max-width: 760px;
  }

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

  .detail-page .detail-steps,
  .detail-page .mot-steps,
  .mot-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-quote-layout blockquote p {
    max-width: 820px;
  }

  .about-layout {
    gap: 70px;
  }

  .about-visual {
    width: min(720px, 100%);
    min-height: 620px;
    margin-left: 0;
  }

  .about-visual::before {
    left: 0;
    border-left: 1px solid rgba(var(--gold-rgb), 0.34);
    border-radius: var(--radius-lg);
  }

  .about-visual img {
    border-radius: var(--radius-lg);
  }

  .about-visual figcaption {
    right: 0;
  }

  .about-copy {
    max-width: 760px;
  }

  .offers-heading > p {
    max-width: 700px;
  }

  .enquiry-copy,
  .faq-heading {
    position: static;
    max-width: 760px;
  }

  .footer-main {
    gap: 34px;
  }

  .footer-local {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
    padding-top: 25px;
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  :root {
    --container-pad: 36px;
    --section-gap: 34px;
  }

  body {
    font-size: 16px;
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .section {
    padding: 68px 0;
  }

  .diagnostic-approach-section,
  .editorial-quote-section,
  .about-section {
    padding: 78px 0;
  }

  .about-layout-single .about-points {
    grid-template-columns: 1fr;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-mark img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .brand-copy small {
    display: none;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 0 5px;
    font-size: 0.7rem;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-cta {
    padding: 8px 11px;
  }

  .breadcrumbs {
    padding-top: 13px;
    font-size: 0.68rem;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(1.95rem, 6.4vw, 2.35rem);
  }

  .mobile-title-break {
    display: block;
  }

  .hero-grid {
    gap: 60px;
    padding: 64px 0 76px;
  }

  .hero-copy,
  .hero .button-row {
    max-width: min(360px, calc(100vw - 36px));
  }

  .hero-lede,
  .hero-body {
    max-width: 36ch;
  }

  .hero-lede {
    font-size: 0.98rem;
  }

  .hero-body {
    font-size: 0.88rem;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .diagnostic-card {
    width: min(360px, 100%);
    justify-self: start;
    padding: 23px;
    transform: none;
  }

  .diagnostic-map {
    height: 155px;
  }

  .diagnostic-student {
    align-items: flex-start;
    flex-direction: column;
  }

  .problem-section::after,
  .offers-section::before {
    display: none;
  }

  .method-steps-simple {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .weekly-flow {
    grid-template-columns: 1fr;
  }

  .detail-page .detail-steps,
  .detail-page .mot-steps,
  .mot-list-grid,
  .mot-card-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 490px;
  }

  .about-visual::before {
    top: -18px;
    right: 24px;
    left: 0;
  }

  .about-visual figcaption {
    right: 0;
  }

  .trial-path {
    grid-template-columns: 1fr;
  }

  .trial-path .button {
    width: 100%;
  }

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

  .enquiry-form {
    padding: 23px;
  }

  .appointment-picker {
    padding: 17px;
  }

  .appointment-date-selector {
    margin-right: -17px;
    padding-right: 17px;
    scrollbar-width: none;
  }

  .appointment-date-selector::-webkit-scrollbar {
    display: none;
  }

  .appointment-date-button {
    flex-basis: 82px;
  }

  .floating-actions {
    right: 12px;
    bottom: calc(82px + env(safe-area-inset-bottom));
    gap: 8px;
  }

  .floating-actions .floating-whatsapp,
  .floating-actions .back-to-top {
    width: 42px;
    height: 42px;
  }

  .floating-whatsapp:hover {
    transform: translateY(-2px) scale(1.03);
  }

  .mobile-cta-bar:not([hidden]) {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 95;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    border-top: 1px solid rgba(var(--color-primary-rgb), 0.5);
    background: rgba(var(--color-text-primary-rgb), 0.98);
    padding:
      9px max(12px, env(safe-area-inset-right))
      calc(9px + env(safe-area-inset-bottom))
      max(12px, env(safe-area-inset-left));
    box-shadow: 0 -12px 32px rgba(var(--navy-rgb), 0.28);
    backdrop-filter: blur(12px);
  }

  .mobile-cta-bar a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    border-radius: 999px;
    padding: 9px 7px;
    font-size: 0.69rem;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
  }

  .mobile-cta-primary {
    background: var(--color-primary-base);
    color: var(--color-secondary-base);
    box-shadow: inset 0 -2px 0 rgba(var(--color-accent-spark-rgb), 0.58);
  }

  .mobile-cta-secondary {
    background: var(--color-secondary-base);
    color: var(--color-text-primary);
  }

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

@media (max-width: 430px) {
  :root {
    --container-pad: 28px;
  }

  h1 {
    font-size: 2.32rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 8px 10px;
    overflow-x: visible;
    font-size: 0.66rem;
  }

  .nav-cta {
    padding: 7px 10px;
  }

  .hero-grid {
    padding-top: 54px;
  }

  .diagnostic-heading strong {
    font-size: 1.45rem;
  }

  .diagnostic-student {
    align-items: flex-start;
    flex-direction: column;
  }

  .diagnostic-list {
    grid-template-columns: 1fr;
  }

  .editorial-quote-layout blockquote p {
    font-size: 2.18rem;
    line-height: 1.05;
  }

  .editorial-quote-layout > p:last-child {
    margin-top: 24px;
  }

  .about-visual {
    min-height: 420px;
  }

  .about-visual figcaption {
    width: 180px;
  }

  .trial-path {
    padding: 22px;
  }

  .offer-path {
    padding-top: 18px;
  }

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

@media (max-width: 340px) {
  :root {
    --container-pad: 24px;
  }

  body {
    font-size: 15px;
  }

  .section {
    padding: 60px 0;
  }

  h1 {
    font-size: 2.25rem;
    line-height: 1;
  }

  h2 {
    font-size: 1.95rem;
    line-height: 1.06;
  }

  h3 {
    font-size: 1.3rem;
  }

  .nav-shell {
    gap: 10px;
  }

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

  .nav-links {
    flex-wrap: wrap;
    gap: 11px;
    overflow-x: visible;
    font-size: 0.66rem;
  }

  .nav-links .nav-cta {
    display: none;
  }

  .hero {
    background-image:
      radial-gradient(circle at 88% 18%, rgba(var(--gold-rgb), 0.1), transparent 28%),
      linear-gradient(135deg, var(--navy-deep), var(--navy));
    background-size: auto;
  }

  .hero-bridge {
    opacity: 0.055;
  }

  .hero-grid {
    gap: 48px;
    padding: 48px 0 64px;
  }

  .hero-lede {
    margin-top: 21px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-body {
    font-size: 0.86rem;
    line-height: 1.6;
  }

  .hero .button-row {
    margin-top: 26px;
  }

  .button {
    min-height: 49px;
    padding: 12px 16px;
  }

  .diagnostic-card {
    border-radius: 22px;
    padding: 18px;
  }

  .diagnostic-heading strong {
    font-size: 1.35rem;
  }

  .diagnostic-map {
    height: 130px;
    background-size: 28px 28px;
  }

  .diagnostic-list div {
    padding: 10px;
  }

  .editorial-quote-layout blockquote p {
    font-size: 1.95rem;
  }

  .about-visual {
    min-height: 350px;
  }

  .about-visual::before {
    top: -12px;
    right: 13px;
    left: 0;
  }

  .about-visual figcaption {
    right: 0;
    width: 155px;
    padding: 17px;
  }

  .about-visual figcaption strong {
    font-size: 1.55rem;
  }

  .trial-path {
    padding: 18px;
  }

  .offer-path {
    padding-top: 17px;
  }

  .enquiry-form {
    border-radius: 22px;
    padding: 18px;
  }

  .appointment-picker {
    padding: 14px;
  }

  .appointment-picker legend {
    font-size: 1.12rem;
  }

  .appointment-date-selector {
    margin-right: -14px;
    padding-right: 14px;
  }

  .form-row input,
  .form-row textarea,
  .form-row select {
    font-size: 16px;
  }

  .faq-list summary {
    padding: 18px 42px 18px 14px;
    font-size: 0.98rem;
  }

  .faq-list details p {
    padding-right: 18px;
    padding-left: 14px;
  }

  .footer-main {
    gap: 28px;
  }

  .floating-actions {
    right: 8px;
    bottom: calc(80px + env(safe-area-inset-bottom));
  }

  .floating-actions .floating-whatsapp,
  .floating-actions .back-to-top {
    width: 39px;
    height: 39px;
  }

  .mobile-cta-bar:not([hidden]) {
    gap: 7px;
    padding-right: 9px;
    padding-left: 9px;
  }

  .mobile-cta-bar a {
    min-height: 46px;
    padding: 8px 5px;
    font-size: 0.64rem;
  }
}

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

  .button:hover,
  .time-option:hover {
    transform: none;
  }
}
