:root {
  --ink: #071d3c;
  --ink-soft: #29405f;
  --blue: #123bd1;
  --blue-dark: #092a9c;
  --blue-pale: #edf2ff;
  --yellow: #ffdf22;
  --yellow-soft: #fff7c2;
  --green: #008638;
  --red: #e42f3c;
  --white: #ffffff;
  --cloud: #f5f7fb;
  --line: #dce3ed;
  --shadow-sm: 0 10px 30px rgba(7, 29, 60, 0.08);
  --shadow-lg: 0 24px 70px rgba(7, 29, 60, 0.16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 4px solid rgba(18, 59, 209, 0.28);
  outline-offset: 4px;
}

::selection {
  color: var(--ink);
  background: var(--yellow);
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 6vw, 5.6rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.75rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 12px 18px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

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

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

.narrow {
  width: min(calc(100% - 40px), 790px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(76px, 10vw, 128px);
}

.section-sm {
  padding-block: clamp(52px, 7vw, 86px);
}

.section-cloud {
  background: var(--cloud);
}

.section-blue {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.84);
  background: var(--ink);
}

.section-blue h2,
.section-blue h3 {
  color: var(--white);
}

.section-blue::before {
  position: absolute;
  width: 380px;
  height: 380px;
  border: 70px solid rgba(255, 223, 34, 0.1);
  border-radius: 50%;
  content: "";
  top: -210px;
  right: -110px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 4px;
  border-radius: 99px;
  background: var(--yellow);
  content: "";
}

.section-blue .eyebrow {
  color: var(--yellow);
}

.lead {
  max-width: 700px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.section-blue .lead {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(38px, 6vw, 62px);
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading.center .lead {
  margin-inline: auto;
}

.accent {
  position: relative;
  z-index: 0;
  display: inline-block;
}

.accent::after {
  position: absolute;
  z-index: -1;
  right: -0.04em;
  bottom: 0.08em;
  left: -0.04em;
  height: 0.22em;
  border-radius: 99px;
  background: var(--yellow);
  content: "";
  transform: rotate(-1.5deg);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: 15px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 12px 28px rgba(255, 223, 34, 0.28);
}

.button-primary:hover {
  background: #ffe64d;
  box-shadow: 0 16px 34px rgba(255, 223, 34, 0.35);
}

.button-blue {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(18, 59, 209, 0.2);
}

.button-blue:hover {
  background: var(--blue-dark);
}

.button-outline {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.button-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.button-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.topbar {
  color: rgba(255, 255, 255, 0.9);
  background: var(--ink);
  font-size: 0.9rem;
}

.topbar-inner {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar p {
  margin: 0;
}

.topbar a {
  font-weight: 800;
  text-decoration: none;
}

.topbar a:hover {
  color: var(--yellow);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(220, 227, 237, 0.72);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(7, 29, 60, 0.08);
}

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

.brand {
  display: flex;
  min-width: 230px;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 238px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav > a:not(.button) {
  position: relative;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 780;
  text-decoration: none;
}

.site-nav > a:not(.button):hover,
.site-nav > a[aria-current="page"]:not(.button) {
  color: var(--blue);
  background: var(--blue-pale);
}

.nav-book {
  min-height: 46px;
  margin-left: 8px;
  padding: 11px 17px;
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 3px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(58px, 8vw, 108px);
  background:
    radial-gradient(circle at 7% 8%, rgba(255, 223, 34, 0.24), transparent 26%),
    linear-gradient(180deg, #f9fbff 0%, #fff 100%);
}

.hero::after {
  position: absolute;
  width: 640px;
  height: 640px;
  border: 84px solid rgba(18, 59, 209, 0.045);
  border-radius: 50%;
  content: "";
  right: -340px;
  bottom: -410px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(42px, 7vw, 88px);
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
}

.hero-copy .lead {
  max-width: 650px;
  margin-bottom: 30px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 750;
}

.check {
  display: inline-grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  place-items: center;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.3 / 1;
  border: 9px solid var(--white);
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 18% center;
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 29, 60, 0.38));
  content: "";
}

.hero-badge {
  position: absolute;
  z-index: 2;
  right: -16px;
  bottom: 28px;
  display: grid;
  min-width: 178px;
  min-height: 110px;
  padding: 18px;
  border: 5px solid var(--white);
  border-radius: 24px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: var(--shadow-sm);
  place-items: center;
  text-align: center;
  transform: rotate(-3deg);
}

.hero-badge strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero-badge span {
  display: block;
  margin-top: 3px;
  font-size: 0.8rem;
  font-weight: 800;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
}

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

.trust-item {
  display: flex;
  min-height: 118px;
  align-items: center;
  gap: 16px;
  padding: 26px clamp(18px, 3vw, 38px);
}

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

.trust-number {
  color: var(--blue);
  font-size: 2.15rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: 1rem;
  line-height: 1.2;
}

.trust-item span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.87rem;
  line-height: 1.4;
}

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

.card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.card:hover {
  border-color: rgba(18, 59, 209, 0.34);
  box-shadow: 0 18px 44px rgba(7, 29, 60, 0.12);
  transform: translateY(-5px);
}

.card-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 16px;
  color: var(--blue);
  background: var(--blue-pale);
  font-size: 1.05rem;
  font-weight: 900;
  place-items: center;
}

.card:nth-child(2) .card-icon {
  color: #855b00;
  background: var(--yellow-soft);
}

.card:nth-child(3) .card-icon {
  color: #9d1d29;
  background: #fff0f1;
}

.card p {
  color: var(--ink-soft);
}

.lesson-finder {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  grid-template-columns: 0.78fr 1.22fr;
}

.finder-intro {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 62px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--blue);
}

.finder-intro h2,
.finder-intro .eyebrow {
  color: var(--white);
}

.finder-intro .eyebrow::before {
  background: var(--yellow);
}

.finder-intro::after {
  position: absolute;
  right: -88px;
  bottom: -128px;
  width: 290px;
  height: 290px;
  border: 48px dashed rgba(255, 223, 34, 0.26);
  border-radius: 50%;
  content: "";
}

.finder-form {
  padding: clamp(34px, 5vw, 62px);
}

.finder-form fieldset {
  margin: 0 0 28px;
  padding: 0;
  border: 0;
}

.finder-form legend {
  margin-bottom: 14px;
  font-size: 1.05rem;
  font-weight: 900;
}

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

.choice {
  position: relative;
}

.choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice label {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 2px solid var(--line);
  border-radius: 13px;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 780;
  line-height: 1.25;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.choice label::before {
  width: 18px;
  height: 18px;
  border: 2px solid #9daabd;
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 4px var(--white);
}

.choice input:checked + label {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-pale);
}

.choice input:checked + label::before {
  border-color: var(--blue);
  background: var(--blue);
}

.choice input:focus-visible + label {
  outline: 4px solid rgba(18, 59, 209, 0.24);
  outline-offset: 2px;
}

.finder-result {
  margin-top: 24px;
  padding: 22px;
  border: 2px solid var(--yellow);
  border-radius: 16px;
  background: #fffdf0;
}

.finder-result[hidden] {
  display: none;
}

.finder-result h3 {
  font-size: 1.28rem;
}

.finder-result p {
  margin-bottom: 16px;
  color: var(--ink-soft);
}

.split {
  display: grid;
  align-items: center;
  gap: clamp(42px, 7vw, 86px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split.reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  height: 520px;
  min-height: 0;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.split-media .instructor-photo {
  aspect-ratio: auto;
  object-position: 18% center;
}

.split-media .road-photo {
  aspect-ratio: auto;
  object-position: center;
}

.photo-note {
  position: absolute;
  right: -18px;
  bottom: 26px;
  max-width: 220px;
  padding: 18px 20px;
  border-radius: 18px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: var(--shadow-sm);
  font-weight: 850;
  line-height: 1.3;
}

.tick-list,
.plain-list {
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.tick-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--ink-soft);
}

.tick-list li::before {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  content: "✓";
  font-size: 0.78rem;
  font-weight: 900;
  place-items: center;
  transform: translateY(2px);
}

.area-panel {
  display: grid;
  align-items: center;
  gap: clamp(30px, 6vw, 70px);
  padding: clamp(34px, 6vw, 68px);
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.8);
  background: var(--ink);
  grid-template-columns: 1fr 0.9fr;
}

.area-panel h2,
.area-panel h3,
.area-panel .eyebrow {
  color: var(--white);
}

.suburb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.suburb-list li {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.88rem;
  font-weight: 760;
}

.area-checker {
  padding: 28px;
  border-radius: 24px;
  color: var(--ink);
  background: var(--white);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.92rem;
  font-weight: 850;
}

.input {
  width: 100%;
  min-height: 54px;
  padding: 12px 15px;
  border: 2px solid var(--line);
  border-radius: 13px;
  color: var(--ink);
  background: var(--white);
}

.input:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(18, 59, 209, 0.12);
}

.area-result {
  margin-top: 16px;
  padding: 16px;
  border-radius: 12px;
  color: var(--ink-soft);
  background: var(--cloud);
  font-size: 0.94rem;
}

.area-result.is-positive {
  color: #075627;
  background: #e8f8ee;
}

.steps {
  display: grid;
  gap: 22px;
  counter-reset: steps;
  grid-template-columns: repeat(3, 1fr);
}

.step {
  position: relative;
  padding: 30px 28px;
  border-top: 5px solid var(--yellow);
  border-radius: 0 0 20px 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  counter-increment: steps;
}

.step::before {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 13px;
  color: var(--white);
  background: var(--blue);
  content: counter(steps);
  font-weight: 900;
  place-items: center;
}

.step p {
  color: var(--ink-soft);
}

.cta-banner {
  position: relative;
  display: grid;
  overflow: hidden;
  align-items: center;
  gap: 30px;
  padding: clamp(38px, 6vw, 68px);
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.82);
  background: var(--blue);
  grid-template-columns: 1fr auto;
}

.cta-banner::before {
  position: absolute;
  right: 80px;
  bottom: -110px;
  width: 320px;
  height: 190px;
  border: 26px dashed rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.cta-banner h2 {
  color: var(--white);
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(62px, 9vw, 112px);
  background:
    radial-gradient(circle at 84% 25%, rgba(255, 223, 34, 0.28), transparent 24%),
    var(--blue-pale);
}

.page-hero::after {
  position: absolute;
  width: 330px;
  height: 330px;
  border: 48px solid rgba(18, 59, 209, 0.06);
  border-radius: 50%;
  content: "";
  right: -120px;
  bottom: -230px;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 880px;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 760;
}

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

.lesson-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.lesson-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.lesson-card.featured {
  border: 3px solid var(--blue);
  box-shadow: 0 22px 54px rgba(18, 59, 209, 0.16);
}

.lesson-tag {
  align-self: flex-start;
  margin-bottom: 22px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-pale);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.lesson-card.featured .lesson-tag {
  color: var(--ink);
  background: var(--yellow);
}

.lesson-card p {
  color: var(--ink-soft);
}

.lesson-card .tick-list {
  flex: 1;
}

.lesson-card .button {
  align-self: flex-start;
}

.notice {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 22px;
  border: 1px solid #cbd7fc;
  border-radius: 16px;
  color: var(--ink-soft);
  background: var(--blue-pale);
}

.notice strong {
  color: var(--ink);
}

.notice-mark {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
  place-items: center;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.feature-row {
  display: grid;
  gap: 18px;
  align-items: start;
  grid-template-columns: 48px 1fr;
}

.feature-row .card-icon {
  width: 48px;
  height: 48px;
  margin: 0;
  border-radius: 14px;
}

.feature-row p {
  margin: 0;
  color: var(--ink-soft);
}

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

.value-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.value-card .card-icon {
  margin-bottom: 18px;
}

.value-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

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

.area-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.area-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.area-card h3::before {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 3px solid var(--white);
  border-radius: 50% 50% 50% 0;
  background: var(--red);
  box-shadow: 0 0 0 3px var(--red);
  content: "";
  transform: rotate(-45deg);
}

.area-card p {
  color: var(--ink-soft);
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
  box-shadow: 0 7px 24px rgba(7, 29, 60, 0.05);
}

.faq-item summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1.3;
  list-style: none;
}

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

.faq-item summary::after {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 10px;
  color: var(--blue);
  background: var(--blue-pale);
  content: "+";
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
  place-items: center;
  transition: transform 160ms ease;
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--ink-soft);
}

.contact-grid {
  display: grid;
  align-items: start;
  gap: 34px;
  grid-template-columns: 0.95fr 1.05fr;
}

.contact-card {
  padding: clamp(30px, 5vw, 50px);
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.8);
  background: var(--ink);
  box-shadow: var(--shadow-lg);
}

.contact-card h2,
.contact-card h3,
.contact-card .eyebrow {
  color: var(--white);
}

.contact-card a:not(.button) {
  color: var(--yellow);
  font-weight: 900;
}

.contact-number {
  display: block;
  margin: 12px 0 24px;
  color: var(--white) !important;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-decoration: none;
}

.contact-options {
  display: grid;
  gap: 18px;
}

.contact-option {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.contact-option p {
  color: var(--ink-soft);
}

.contact-option .button-row {
  margin-top: 20px;
}

.site-footer {
  padding: 70px 0 24px;
  color: rgba(255, 255, 255, 0.7);
  background: #05142a;
}

.footer-grid {
  display: grid;
  gap: 48px;
  padding-bottom: 54px;
  grid-template-columns: 1.55fr 0.75fr 0.75fr 1fr;
}

.footer-logo {
  width: 260px;
  height: auto;
  margin-bottom: 20px;
  padding: 9px;
  border-radius: 12px;
  background: var(--white);
}

.footer-intro {
  max-width: 380px;
}

.site-footer h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-phone {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
}

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

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

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

@media (max-width: 1060px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 999;
    top: 122px;
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100vh - 122px);
    overflow-y: auto;
    gap: 4px;
    padding: 22px max(20px, calc((100vw - var(--container)) / 2));
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav > a:not(.button) {
    padding: 14px 16px;
    font-size: 1.05rem;
  }

  .nav-book {
    min-height: 54px;
    margin: 8px 0 0;
  }

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

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

  .footer-grid {
    grid-template-columns: 1.35fr repeat(2, 0.8fr);
  }

  .footer-grid > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 70px;
    font-size: 16px;
  }

  .topbar-inner {
    justify-content: center;
  }

  .topbar-inner p:first-child {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: min(220px, 62vw);
  }

  .hero-grid,
  .split,
  .lesson-finder,
  .area-panel,
  .cta-banner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .hero-photo {
    aspect-ratio: 1.3 / 1;
  }

  .split.reverse .split-media {
    order: 0;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: auto;
    padding: 22px 12px;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .lesson-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner .button-row {
    justify-self: start;
  }

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

  .footer-grid > :first-child,
  .footer-grid > :last-child {
    grid-column: 1 / -1;
  }

  .mobile-booking-bar {
    position: fixed;
    z-index: 1100;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 70px;
    padding: 8px 16px max(8px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(7, 29, 60, 0.12);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
  }

  .mobile-booking-bar .button {
    min-height: 52px;
  }
}

@media (max-width: 580px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .nav-wrap {
    min-height: 74px;
  }

  .site-nav {
    top: 114px;
    max-height: calc(100vh - 114px);
  }

  .hero {
    padding-top: 46px;
  }

  .hero-photo {
    border-width: 6px;
    border-radius: 28px;
  }

  .hero-photo {
    aspect-ratio: 1 / 1;
  }

  .hero-photo img {
    object-position: 15% center;
  }

  .hero-badge {
    right: -4px;
    bottom: 14px;
    min-width: 148px;
    min-height: 92px;
    padding: 14px;
  }

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

  .card-grid,
  .values-grid,
  .steps,
  .area-grid,
  .choice-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .finder-intro,
  .finder-form,
  .area-panel,
  .cta-banner,
  .contact-card {
    padding: 30px 22px;
  }

  .split-media img {
    height: 420px;
    min-height: 0;
    border-radius: 28px;
  }

  .photo-note {
    right: 10px;
    bottom: 14px;
    max-width: 190px;
    font-size: 0.9rem;
  }

  .footer-grid > :first-child,
  .footer-grid > :last-child {
    grid-column: auto;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .topbar,
  .site-header,
  .mobile-booking-bar,
  .button-row,
  .site-footer {
    display: none !important;
  }

  body {
    color: #000;
    padding: 0;
    background: #fff;
  }

  .section,
  .page-hero {
    padding-block: 24px;
  }

  .card,
  .lesson-card,
  .contact-card {
    color: #000;
    box-shadow: none;
    break-inside: avoid;
  }
}
