:root {
  --bg: #ffffff;
  --bg-soft: #f4f7f8;
  --bg-ink: #101820;
  --surface: #ffffff;
  --surface-strong: #e9eef0;
  --text: #18222b;
  --muted: #596875;
  --quiet: #7a8791;
  --navy: #14324a;
  --navy-dark: #0c2436;
  --amber: #d79a2b;
  --amber-soft: #fff4dc;
  --line: #d9e1e5;
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.13);
  --radius: 8px;
  --radius-lg: 14px;
  --container: min(1160px, calc(100vw - 40px));
  --header-height: 76px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--amber);
  color: #111;
  padding: 10px 14px;
  border-radius: 4px;
  font-weight: 800;
  transition: transform 160ms ease;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 max(20px, calc((100vw - 1160px) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 225, 229, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: 0;
  color: var(--navy-dark);
  white-space: nowrap;
}

.brand img {
  width: 52px;
  height: 34px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 4px;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a,
.header-cta,
.button,
.text-link,
.direct-links a,
.option-list a {
  text-decoration: none;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--navy);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
  border-radius: 4px;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.header-cta:hover {
  color: #ffffff;
  background: var(--navy);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--navy);
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.section-pad {
  padding: 94px max(20px, calc((100vw - 1160px) / 2));
}

.hero {
  min-height: min(820px, calc(100vh - var(--header-height)));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
  align-items: center;
  gap: 72px;
  padding-top: 74px;
  padding-bottom: 70px;
  overflow: hidden;
}

.hero-content {
  max-width: 690px;
}

.location-line,
.section-label {
  margin: 0 0 16px;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  color: var(--bg-ink);
  font-size: clamp(3rem, 5.7vw, 5.35rem);
  line-height: 0.96;
  letter-spacing: 0;
  max-width: 760px;
  overflow-wrap: normal;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 22px;
  color: var(--bg-ink);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--bg-ink);
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-copy {
  width: 100%;
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.55;
  overflow-wrap: break-word;
}

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

.section-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.section-actions.left {
  justify-content: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.2;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

.button-primary {
  color: #ffffff;
  background: var(--navy);
  box-shadow: 0 15px 35px rgba(20, 50, 74, 0.22);
}

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

.button-secondary {
  color: var(--navy);
  border-color: var(--line);
  background: #ffffff;
}

.button-secondary:hover {
  border-color: var(--navy);
}

.micro-copy {
  width: 100%;
  max-width: 560px;
  margin-top: 20px;
  color: var(--quiet);
  font-size: 0.96rem;
  overflow-wrap: break-word;
}

.hero-choice {
  display: grid;
  gap: 6px;
  max-width: 560px;
  margin-top: 16px;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 850;
}

.hero-choice span {
  display: block;
}

.hero-media {
  position: relative;
  min-width: 0;
  width: 100%;
  isolation: isolate;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -24px -28px auto auto;
  width: 54%;
  height: 72%;
  background: var(--amber-soft);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.media-note {
  position: absolute;
  left: -30px;
  bottom: 28px;
  max-width: 290px;
  padding: 18px 20px;
  color: #ffffff;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: 0 22px 48px rgba(12, 36, 54, 0.24);
}

.media-note strong,
.media-note span {
  display: block;
}

.media-note strong {
  margin-bottom: 5px;
  font-size: 0.98rem;
  line-height: 1.25;
}

.media-note span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  line-height: 1.45;
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  padding: 0 max(20px, calc((100vw - 1160px) / 2));
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-bar div {
  padding: 28px 18px;
  background: var(--bg-soft);
}

.proof-bar span,
.proof-bar strong {
  display: block;
}

.proof-bar span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-bar strong {
  color: var(--bg-ink);
  font-size: 1rem;
  line-height: 1.25;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 46px;
}

.hero > *,
.process > *,
.split-section > *,
.growth > *,
.contact > *,
.coach-card > *,
.section-heading > * {
  min-width: 0;
}

.section-heading.narrow {
  display: block;
  max-width: 780px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading p:not(.section-label) {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading h2 + p {
  margin-top: 18px;
  margin-bottom: 0;
}

.page-hero {
  max-width: 940px;
}

.page-hero h1 {
  max-width: 850px;
}

.page-hero p:not(.section-label) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.benefit,
.quick-fact,
.story,
.option-list article,
.promise-list article,
.difference-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.benefit {
  padding: 26px;
}

.icon-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 44px;
  color: var(--navy);
  background: var(--amber-soft);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.benefit p,
.quick-fact p,
.steps p,
.split-copy p,
.growth-copy p,
.coach-copy p,
.history-intro p,
.history-item p,
.story p,
.option-list p,
.promise-list p,
.difference-grid p,
.faq-list p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
}

.quick-facts {
  background: #ffffff;
}

.quick-facts-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.quick-facts-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

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

.quick-fact {
  padding: 24px;
}

.quick-fact span,
.quick-fact strong {
  display: block;
}

.quick-fact span {
  margin-bottom: 18px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-fact strong {
  margin-bottom: 10px;
  color: var(--bg-ink);
  font-size: 1.04rem;
  line-height: 1.25;
}

.quick-fact p {
  margin-bottom: 0;
}

.promise {
  background: #ffffff;
}

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

.promise-list article {
  display: grid;
  align-content: start;
  min-height: 260px;
  padding: 24px;
}

.promise-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 34px;
  color: var(--navy);
  background: var(--amber-soft);
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 900;
}

.promise-list h3 {
  margin-bottom: 12px;
  color: var(--bg-ink);
  font-size: 1.02rem;
  font-weight: 850;
  line-height: 1.25;
}

.promise-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.55;
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 60px;
  background: var(--bg-ink);
}

.process .section-label,
.process h2 {
  color: #ffffff;
}

.process-copy p:not(.section-label) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

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

.steps article {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 40px;
  color: #111;
  background: var(--amber);
  border-radius: 50%;
  font-weight: 900;
}

.steps h3 {
  color: #ffffff;
}

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

.split-section,
.growth,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.split-section {
  background: var(--bg-soft);
}

.safety-panel {
  margin-top: 30px;
  padding: 8px 0 2px;
}

.simple-panel {
  margin: 28px 0 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.simple-panel h3 {
  margin-bottom: 16px;
}

.simple-panel .check-list {
  margin-top: 0;
}

.image-panel img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.split-copy p,
.growth-copy p,
.coach-copy p,
.contact-copy p {
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 48%, #ffffff 49% 55%, transparent 56%),
    var(--amber);
}

.growth {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 58%, var(--amber-soft) 58%, var(--amber-soft) 100%);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--navy);
  font-weight: 900;
  border-bottom: 2px solid var(--amber);
}

.growth-visual {
  justify-self: stretch;
  display: flex;
  justify-content: center;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--amber-soft);
}

.growth-flow-card {
  width: min(420px, 100%);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.growth-flow-card h3 {
  margin-bottom: 24px;
  color: var(--bg-ink);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.08;
}

.flow-step {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.flow-step strong,
.flow-step span {
  display: block;
}

.flow-step strong {
  margin-bottom: 4px;
  color: var(--bg-ink);
  font-weight: 900;
  line-height: 1.22;
}

.flow-step span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.35;
}

.flow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--navy);
  border-radius: 50%;
  background: var(--amber-soft);
}

.flow-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-arrow {
  width: 2px;
  height: 28px;
  margin: 4px auto;
  background: var(--amber);
  position: relative;
}

.flow-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--amber);
  border-bottom: 2px solid var(--amber);
  transform: translateX(-50%) rotate(45deg);
}

.coach {
  background: var(--bg-soft);
}

.coach-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 54px;
  align-items: stretch;
  width: var(--container);
  margin: 0 auto;
}

.coach-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.coach-copy {
  align-self: center;
}

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

.credential-grid span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 16px;
  color: var(--navy-dark);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.25;
}

.uksca {
  width: min(340px, 100%);
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.difference {
  background: #ffffff;
}

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

.difference-grid article {
  padding: 28px;
}

.difference-grid p {
  margin-bottom: 0;
}

.standards {
  background: #ffffff;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.standard {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.standard-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 34px;
  color: var(--navy);
  background: var(--amber-soft);
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 900;
}

.standard p {
  margin-bottom: 0;
  color: var(--muted);
}

.academy-history {
  background: #ffffff;
}

.history-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: start;
}

.history-layout > * {
  min-width: 0;
}

.history-intro {
  max-width: 560px;
}

.history-intro p:not(.section-label) {
  font-size: 1.08rem;
}

.history-timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.history-timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 42px;
  width: 2px;
  background: var(--line);
}

.history-item {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.history-year {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  min-height: 46px;
  padding: 8px 10px;
  border: 1px solid rgba(222, 160, 36, 0.3);
  border-radius: 999px;
  color: var(--navy);
  background: var(--amber-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.history-item div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.history-item h3 {
  margin-bottom: 10px;
}

.history-item p {
  margin-bottom: 0;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.story {
  overflow: hidden;
}

.story img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: top center;
}

.story div {
  padding: 24px;
}

.story-meta {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.35;
}

.options {
  background: var(--bg-ink);
}

.options .section-label,
.options h2 {
  color: #ffffff;
}

.options .section-heading p:not(.section-label) {
  color: rgba(255, 255, 255, 0.72);
}

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

.option-list article {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 28px;
  background: #ffffff;
}

.option-list p {
  flex: 1;
}

.option-list a {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 20px;
  color: var(--navy);
  font-weight: 900;
  border-bottom: 2px solid var(--amber);
}

.offer-compare {
  background: #ffffff;
}

.offer-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.offer-summary article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.offer-summary-label {
  margin: 0 0 10px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.offer-summary h3 {
  margin-bottom: 10px;
  color: var(--bg-ink);
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1;
}

.offer-summary p:not(.offer-summary-label) {
  color: var(--muted);
}

.offer-summary ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.offer-summary li {
  position: relative;
  padding-left: 22px;
  color: var(--bg-ink);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.45;
}

.offer-summary li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(16, 24, 32, 0.06);
}

.comparison-table {
  width: 100%;
  min-width: 850px;
  border-collapse: collapse;
}

.comparison-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--bg-ink);
  font-weight: 900;
}

.comparison-table thead th {
  background: var(--bg-soft);
  color: var(--navy);
}

.comparison-table thead th:first-child,
.comparison-table tbody th {
  width: 24%;
}

.comparison-table td {
  width: 38%;
  color: var(--muted);
  line-height: 1.55;
}

.comparison-table td strong {
  color: var(--bg-ink);
}

.comparison-table a {
  color: var(--navy);
  font-weight: 900;
  border-bottom: 2px solid var(--amber);
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

.offer-note {
  max-width: 820px;
  margin: 24px 0 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 34px;
  max-width: 940px;
}

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

.faq-preview-actions {
  margin-top: 8px;
}

.faq-group-title {
  margin: 0 0 2px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--bg-ink);
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--amber);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-answer {
  display: grid;
  gap: 12px;
  max-width: 800px;
  padding: 0 24px 24px;
}

.faq-answer p {
  margin: 0;
  padding: 0;
  max-width: 760px;
}

.contact {
  background: var(--bg-soft);
}

.direct-links {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-details {
  display: grid;
  gap: 5px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-details p {
  margin: 0;
}

.contact-details strong {
  color: var(--bg-ink);
}

.direct-links a {
  display: inline-flex;
  width: fit-content;
  color: var(--navy);
  font-weight: 850;
  border-bottom: 2px solid var(--amber);
}

.enquiry-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.enquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--bg-ink);
  font-size: 0.88rem;
  font-weight: 850;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--text);
  background: #ffffff;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(20, 50, 74, 0.12);
}

.form-note {
  margin: 0;
  color: var(--quiet);
  font-size: 0.85rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  align-items: start;
  padding: 40px max(20px, calc((100vw - 1160px) / 2));
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy-dark);
}

.site-footer strong {
  display: block;
  color: #ffffff;
  margin-bottom: 8px;
}

.site-footer p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-address {
  max-width: 24rem;
}

.site-footer a {
  color: #ffffff;
  text-decoration-color: rgba(215, 154, 43, 0.8);
  text-underline-offset: 4px;
}

.privacy-page {
  max-width: 880px;
  margin: 0 auto;
}

.privacy-page h1 {
  max-width: 760px;
  margin-bottom: 34px;
  font-size: clamp(3rem, 8vw, 5rem);
}

.privacy-page h2 {
  margin-top: 38px;
  font-size: clamp(1.55rem, 4vw, 2.3rem);
}

.privacy-page p {
  color: var(--muted);
  font-size: 1.05rem;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
    order: 3;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    justify-items: start;
    gap: 0;
    padding: 12px 20px 24px;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 28px 60px rgba(16, 24, 32, 0.15);
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

  .site-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
  }

  .site-header.nav-open .site-nav {
    transform: translateY(0);
  }

  .site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero,
  .process,
  .split-section,
  .growth,
  .contact,
  .coach-card,
  .history-layout,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 44px;
    min-height: auto;
  }

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

  .hero-media {
    max-width: 700px;
  }

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

  .proof-bar div {
    padding: 24px 22px;
  }

  .benefit-grid,
  .quick-facts-grid,
  .story-grid,
  .option-list,
  .standards-grid,
  .promise-list,
  .difference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .growth {
    background: var(--bg);
  }

  .coach-photo img {
    max-height: 680px;
  }

  .history-intro {
    max-width: 780px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
    --container: min(100vw - 28px, 1160px);
  }

  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .site-header {
    padding: 0 14px;
    gap: 12px;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 14px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 14px;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 13px 18px;
    color: #ffffff;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(16, 24, 32, 0.28);
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
  }

  .site-header.nav-open + .mobile-sticky-cta {
    display: none;
  }

  .brand span {
    max-width: 175px;
    white-space: normal;
    font-size: 0.95rem;
    line-height: 1.1;
  }

  .brand img {
    width: 46px;
    height: 30px;
  }

  .section-pad {
    padding: 64px 16px;
  }

  .hero {
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(2.35rem, 10vw, 3.05rem);
    line-height: 0.98;
  }

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

  .hero-actions {
    display: grid;
    max-width: 21rem;
  }

  .hero-copy,
  .hero-choice,
  .micro-copy {
    max-width: 21rem;
  }

  .button {
    width: 100%;
  }

  .hero-media::before {
    inset: -14px -10px auto auto;
  }

  .media-note {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .proof-bar,
  .benefit-grid,
  .quick-facts-grid,
  .offer-summary,
  .steps,
  .story-grid,
  .option-list,
  .standards-grid,
  .history-layout,
  .promise-list,
  .difference-grid,
  .credential-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 32px;
  }

  .benefit,
  .quick-fact,
  .steps article,
  .story div,
  .history-item div,
  .option-list article,
  .standard,
  .promise-list article,
  .difference-grid article,
  .enquiry-form {
    padding: 22px;
  }

  .icon-mark,
  .steps span,
  .standard-number,
  .promise-list span {
    margin-bottom: 24px;
  }

  .promise-list article {
    min-height: 0;
  }

  .section-actions,
  .section-actions.left {
    display: grid;
    justify-content: stretch;
  }

  .growth-visual {
    padding: 18px;
  }

  .growth-flow-card {
    padding: 20px;
  }

  .comparison-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .comparison-table {
    min-width: 0;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table th,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .comparison-table thead th:first-child,
  .comparison-table tbody th,
  .comparison-table td {
    width: 100%;
  }

  .comparison-table tbody {
    display: grid;
    gap: 14px;
  }

  .comparison-table tr {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
  }

  .comparison-table tbody th {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    background: var(--bg-soft);
  }

  .comparison-table td {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .comparison-table td::before {
    display: block;
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.25;
    text-transform: uppercase;
  }

  .comparison-table td:nth-child(2)::before {
    content: "Athletic Development Classes";
  }

  .comparison-table td:nth-child(3)::before {
    content: "The Academy";
  }

  .comparison-table tr:last-child th,
  .comparison-table tr:last-child td,
  .comparison-table td:last-child {
    border-bottom: 0;
  }

  .flow-step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .flow-icon {
    width: 48px;
    height: 48px;
  }

  .flow-icon svg {
    width: 29px;
    height: 29px;
  }

  .history-layout {
    gap: 34px;
  }

  .history-timeline {
    gap: 14px;
  }

  .history-timeline::before {
    left: 32px;
  }

  .history-item {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
  }

  .history-year {
    width: 64px;
    min-height: 42px;
    padding: 7px 8px;
    font-size: 0.68rem;
  }

  .coach-card {
    width: 100%;
  }

  .coach-photo img {
    min-height: 440px;
  }

  .site-footer {
    padding: 34px 16px;
  }

  .site-footer {
    gap: 22px;
  }

  .site-footer p {
    margin-bottom: 6px;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .site-footer strong {
    margin-bottom: 6px;
  }
}

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