/* JW Learning inner pages — desktop and mobile refinement pass */

:root {
  --navy: #17324d;
  --navy-deep: #102438;
  --gold: #caa45d;
  --cream: #f7f3ea;
  --paper: #fffdf8;
  --ink: #22303b;
  --muted: #66737f;
  --line: #e5ded2;
  --max: 1240px;
}

body.inner-page {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.inner-page *,
body.inner-page *::before,
body.inner-page *::after {
  box-sizing: border-box;
}

body.inner-page img {
  max-width: 100%;
}

body.inner-page .container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

body.inner-page h1,
body.inner-page h2,
body.inner-page h3,
body.inner-page p {
  margin-top: 0;
}

body.inner-page h1,
body.inner-page h2,
body.inner-page h3 {
  color: var(--navy-deep);
  letter-spacing: -.035em;
}

body.inner-page h1 {
  margin-bottom: 0;
  font-size: clamp(3.35rem, 5.1vw, 5.45rem);
  line-height: .99;
}

body.inner-page h2 {
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 3.5vw, 4rem);
  line-height: 1.04;
}

body.inner-page h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.22;
}

body.inner-page p {
  margin-bottom: 18px;
}

body.inner-page a {
  color: inherit;
}

body.inner-page .eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.35;
  text-transform: uppercase;
}

/* Header */
body.inner-page .site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(255,253,248,.97);
}

body.inner-page .nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

body.inner-page .brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
}

body.inner-page .brand-name {
  color: var(--navy-deep);
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.15;
}

body.inner-page .brand-subtitle {
  margin-top: 4px;
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .055em;
  line-height: 1.2;
  text-transform: uppercase;
}

body.inner-page .primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

body.inner-page .primary-nav a {
  color: var(--navy-deep);
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
}

body.inner-page .primary-nav a[aria-current="page"]:not(.nav-cta) {
  color: var(--gold);
}

body.inner-page .nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--navy);
  color: white !important;
}

body.inner-page .menu-toggle {
  display: none;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--navy-deep);
  font: inherit;
  font-weight: 800;
}

/* Shared page structures */
body.inner-page .page-hero {
  padding: 64px 0 68px;
  background: var(--cream);
}

body.inner-page .page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: clamp(54px, 7vw, 110px);
  align-items: end;
}

body.inner-page .page-hero-grid > p {
  max-width: 570px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

body.inner-page .section {
  padding: 76px 0;
}

body.inner-page .section-alt {
  background: var(--cream);
}

body.inner-page .split-copy,
body.inner-page .section-heading {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(52px, 7vw, 104px);
  align-items: start;
}

body.inner-page .split-copy > div:first-child h2,
body.inner-page .section-heading > div:first-child h2 {
  max-width: 560px;
}

body.inner-page .prose,
body.inner-page .section-heading > p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

body.inner-page .prose strong {
  color: var(--ink);
  font-weight: 700;
}

body.inner-page .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

body.inner-page .button-primary {
  background: var(--navy);
  color: white;
}

body.inner-page .button-gold {
  background: #d8ae5c;
  color: var(--navy-deep);
}

/* Approach */
body.inner-page .pillar-grid {
  width: min(calc(100% - 48px), var(--max));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

body.inner-page .pillar-card {
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
}

body.inner-page .pillar-card.featured {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
}

body.inner-page .pillar-card.featured h3,
body.inner-page .pillar-card.featured p {
  color: white;
}

body.inner-page .pillar-label {
  display: block;
  margin-bottom: 46px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

body.inner-page .pillar-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

body.inner-page .cycle-section {
  background: var(--paper);
}

body.inner-page .cycle-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(520px, 1.2fr);
  gap: clamp(56px, 7vw, 104px);
  align-items: center;
}

body.inner-page .cycle-layout > div:first-child > p:last-child {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

body.inner-page .cycle-visual {
  position: relative;
  width: min(100%, 610px);
  aspect-ratio: 1;
  margin-inline: auto;
  border: 2px solid rgba(202,164,93,.65);
  border-radius: 50%;
}

body.inner-page .cycle-visual::before {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px dashed rgba(202,164,93,.45);
  border-radius: 50%;
}

body.inner-page .cycle-centre,
body.inner-page .cycle-node {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

body.inner-page .cycle-centre {
  inset: 33%;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy-deep);
}

body.inner-page .cycle-centre span {
  font-size: .95rem;
}

body.inner-page .cycle-centre strong {
  margin-top: 6px;
  font-size: 1.1rem;
  text-transform: uppercase;
}

body.inner-page .cycle-node {
  width: 22%;
  aspect-ratio: 1;
  border: 7px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(16,36,56,.12);
  color: var(--navy-deep);
}

body.inner-page .cycle-node small {
  margin-bottom: 4px;
  font-size: .62rem;
  font-weight: 800;
}

body.inner-page .cycle-node strong {
  font-size: .88rem;
}

body.inner-page .cycle-node.n1 { top: -5%; left: 39%; background: #d8ae5c; }
body.inner-page .cycle-node.n2 { top: 18%; right: -5%; background: #aebd9f; }
body.inner-page .cycle-node.n3 { bottom: 18%; right: -5%; background: #8eadaa; color: white; }
body.inner-page .cycle-node.n4 { bottom: -5%; left: 39%; background: #a8c0d3; }
body.inner-page .cycle-node.n5 { bottom: 18%; left: -5%; background: #d79b79; }
body.inner-page .cycle-node.n6 { top: 18%; left: -5%; background: var(--navy-deep); color: white; }

body.inner-page .three-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.45);
}

body.inner-page .three-outcomes article {
  min-height: 205px;
  padding: 32px;
}

body.inner-page .three-outcomes article + article {
  border-left: 1px solid var(--line);
}

body.inner-page .three-outcomes article > span {
  color: var(--gold);
  font-size: .76rem;
  font-weight: 800;
}

body.inner-page .three-outcomes h3 {
  margin-top: 34px;
}

body.inner-page .three-outcomes p {
  margin-bottom: 0;
  color: var(--muted);
}

/* Support */
body.inner-page .support-tabs-section {
  padding-top: 64px;
}

body.inner-page .tabs {
  display: grid;
  grid-template-columns: minmax(240px, .32fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

body.inner-page .tab-list {
  position: sticky;
  top: 104px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.inner-page .tab-list button {
  width: 100%;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: transparent;
  color: var(--navy-deep);
  font: inherit;
  font-size: .9rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

body.inner-page .tab-list button[aria-selected="true"] {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
  box-shadow: 0 14px 32px rgba(16,36,56,.12);
}

body.inner-page .tab-panels {
  min-width: 0;
}

body.inner-page .tab-panels section {
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--paper);
}

body.inner-page .tab-panels section[hidden] {
  display: none;
}

body.inner-page .tab-panels h2 {
  max-width: 800px;
  font-size: clamp(2.2rem, 3.2vw, 3.55rem);
}

body.inner-page .tab-panels section > p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

body.inner-page .detail-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

body.inner-page .detail-chips span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--navy-deep);
  font-size: .8rem;
  font-weight: 700;
}

body.inner-page .check-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

body.inner-page .check-list > div {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

body.inner-page .check-list strong {
  color: var(--navy-deep);
  font-size: 1.05rem;
}

body.inner-page .check-list p {
  max-width: 700px;
  margin: 6px 0 0;
  color: var(--muted);
}

/* About */
body.inner-page .about-hero {
  padding: 58px 0 62px;
  background: var(--cream);
}

body.inner-page .about-hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, .78fr) minmax(0, 1.22fr);
  gap: clamp(58px, 7vw, 104px);
  align-items: center;
}

body.inner-page .about-hero figure,
body.inner-page .about-teaching-grid figure {
  margin: 0;
}

body.inner-page .about-hero figure {
  width: min(100%, 430px);
}

body.inner-page .about-hero figure img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 26px;
  box-shadow: 0 22px 52px rgba(16,36,56,.1);
}

body.inner-page .about-hero h1 {
  max-width: 790px;
  font-size: clamp(3.25rem, 4.7vw, 5rem);
}

body.inner-page .about-hero .lead {
  max-width: 760px;
  margin-top: 26px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.68;
}

body.inner-page .about-credentials {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

body.inner-page .about-credentials span {
  padding: 17px 16px;
  color: var(--navy-deep);
  font-size: .76rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

body.inner-page .about-credentials span + span {
  border-left: 1px solid var(--line);
}

body.inner-page .about-teaching-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  gap: clamp(54px, 7vw, 96px);
  align-items: center;
}

body.inner-page .about-teaching-grid > div p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.68;
}

body.inner-page .about-teaching-grid figure {
  width: min(100%, 540px);
  justify-self: end;
}

body.inner-page .about-teaching-grid figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 54%;
  border-radius: 24px;
  box-shadow: 0 20px 46px rgba(16,36,56,.09);
}

body.inner-page .focus-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(54px, 7vw, 104px);
}

/* Contact */
body.inner-page.contact-page .contact-hero {
  padding: 58px 0 48px;
  background: var(--cream);
}

body.inner-page .contact-intro {
  max-width: 980px;
}

body.inner-page .contact-intro h1 {
  max-width: 900px;
}

body.inner-page .contact-intro .contact-prompt {
  margin: 18px 0 0;
  color: var(--navy-deep);
  font-size: 1.2rem;
  font-weight: 800;
}

body.inner-page .contact-intro p:last-child {
  max-width: 760px;
  margin-top: 14px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

body.inner-page .contact-section {
  padding-top: 56px;
}

body.inner-page .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}

body.inner-page .enquiry-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--cream);
}

body.inner-page .enquiry-form label {
  display: block;
  margin-bottom: 18px;
  color: var(--navy-deep);
  font-weight: 800;
}

body.inner-page .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

body.inner-page .enquiry-form input,
body.inner-page .enquiry-form select,
body.inner-page .enquiry-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #d8d0c4;
  border-radius: 13px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
}

body.inner-page .enquiry-form textarea {
  resize: vertical;
}

body.inner-page .enquiry-form input:focus,
body.inner-page .enquiry-form select:focus,
body.inner-page .enquiry-form textarea:focus {
  outline: 3px solid rgba(202,164,93,.25);
  border-color: var(--gold);
}

body.inner-page .form-submit {
  margin-top: 2px;
}

body.inner-page .form-status {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .82rem;
}

body.inner-page .form-status:empty {
  display: none;
}

body.inner-page .form-status.is-error {
  color: #9f2f2f;
}

body.inner-page .enquiry-form.is-success {
  min-height: 0;
  display: block;
  padding: 30px;
}

body.inner-page .form-success h3 {
  margin-bottom: 10px;
  font-size: 1.7rem;
}

body.inner-page .form-success p {
  margin-bottom: 0;
  color: var(--muted);
}

body.inner-page .contact-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
}

body.inner-page .contact-card,
body.inner-page .service-snapshot {
  padding: 28px;
  border-radius: 22px;
}

body.inner-page .contact-card {
  background: var(--navy-deep);
  color: white;
}

body.inner-page .contact-card .eyebrow {
  color: #ead7af;
}

body.inner-page .contact-card ol {
  margin: 20px 0 0;
  padding-left: 20px;
}

body.inner-page .contact-card li {
  margin-bottom: 18px;
  padding-left: 5px;
}

body.inner-page .contact-card li:last-child {
  margin-bottom: 0;
}

body.inner-page .contact-card strong,
body.inner-page .contact-card span {
  display: block;
}

body.inner-page .contact-card span {
  margin-top: 5px;
  color: #d5dde4;
  font-size: .92rem;
}

body.inner-page .service-snapshot {
  border: 1px solid var(--line);
  background: var(--paper);
}

body.inner-page .service-snapshot strong {
  color: var(--navy-deep);
}

body.inner-page .service-snapshot p {
  margin: 8px 0 0;
  color: var(--muted);
}

/* Shared CTA */
body.inner-page .home-cta {
  padding-top: 34px;
  padding-bottom: 76px;
}

body.inner-page .cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 42px 48px;
  border-radius: 28px;
  background: var(--navy-deep);
  color: white;
}

body.inner-page .cta-panel h2 {
  max-width: 880px;
  margin-bottom: 10px;
  color: white;
  font-size: clamp(2rem, 3vw, 3.25rem);
}

body.inner-page .cta-panel p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: #d5dde4;
}

body.inner-page .cta-panel .eyebrow {
  color: #ead7af;
}

/* Footer */
body.inner-page .site-footer {
  padding: 34px 0 46px;
}

body.inner-page .footer-grid {
  padding-top: 28px;
  display: grid;
  grid-template-columns: 1fr auto auto 1fr;
  gap: 34px;
  align-items: start;
  border-top: 1px solid var(--line);
}

body.inner-page .footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

body.inner-page .footer-grid a {
  color: var(--muted);
  text-decoration: none;
}

body.inner-page .footer-grid p {
  margin: 4px 0 0;
  color: var(--muted);
}

body.inner-page .footer-tagline {
  margin: 4px 0 0;
  color: var(--muted);
  text-align: right;
}

@media (max-width: 980px) {
  body.inner-page .page-hero-grid,
  body.inner-page .split-copy,
  body.inner-page .section-heading,
  body.inner-page .cycle-layout,
  body.inner-page .about-hero-grid,
  body.inner-page .about-teaching-grid,
  body.inner-page .focus-grid,
  body.inner-page .contact-grid {
    grid-template-columns: 1fr;
  }

  body.inner-page .page-hero-grid,
  body.inner-page .split-copy,
  body.inner-page .section-heading {
    gap: 26px;
  }

  body.inner-page .cycle-layout {
    gap: 48px;
  }

  body.inner-page .tabs {
    grid-template-columns: 1fr;
  }

  body.inner-page .tab-list {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  body.inner-page .about-hero figure,
  body.inner-page .about-teaching-grid figure {
    justify-self: start;
  }

  body.inner-page .contact-aside {
    position: static;
  }

  body.inner-page .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  body.inner-page .footer-tagline {
    text-align: left;
  }
}

@media (max-width: 760px) {
  body.inner-page .container {
    width: min(calc(100% - 40px), var(--max));
  }

  body.inner-page .site-header {
    position: sticky;
    top: 0;
  }

  body.inner-page .nav-wrap {
    min-height: 72px;
  }

  body.inner-page .menu-toggle {
    display: block;
  }

  body.inner-page .primary-nav {
    position: absolute;
    top: 62px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
    box-shadow: 0 20px 50px rgba(16,36,56,.14);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  body.inner-page .primary-nav.is-open {
    display: flex;
  }

  body.inner-page .primary-nav a {
    padding: 11px 12px;
  }

  body.inner-page .nav-cta {
    justify-content: center;
    margin-top: 5px;
  }

  body.inner-page h1 {
    font-size: clamp(2.65rem, 12vw, 3.55rem);
    line-height: 1.01;
  }

  body.inner-page h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.06;
  }

  body.inner-page .eyebrow {
    margin-bottom: 10px;
    font-size: .72rem;
    letter-spacing: .085em;
  }

  body.inner-page .page-hero {
    padding: 42px 0 46px;
  }

  body.inner-page .page-hero-grid {
    gap: 22px;
  }

  body.inner-page .page-hero-grid > p {
    font-size: .98rem;
    line-height: 1.6;
  }

  body.inner-page .section {
    padding: 50px 0;
  }

  body.inner-page .split-copy,
  body.inner-page .section-heading {
    gap: 16px;
  }

  body.inner-page .prose,
  body.inner-page .section-heading > p,
  body.inner-page .cycle-layout > div:first-child > p:last-child {
    font-size: .96rem;
    line-height: 1.65;
  }

  /* Approach mobile */
  body.inner-page .pillar-grid {
    width: min(calc(100% - 40px), var(--max));
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }

  body.inner-page .pillar-card {
    min-height: 0;
    padding: 24px;
    border-radius: 20px;
  }

  body.inner-page .pillar-label {
    margin-bottom: 28px;
  }

  body.inner-page .cycle-layout {
    gap: 34px;
  }

  body.inner-page .cycle-visual {
    width: min(88vw, 520px);
  }

  body.inner-page .cycle-node {
    border-width: 5px;
  }

  body.inner-page .cycle-node strong {
    font-size: .72rem;
  }

  body.inner-page .cycle-node small {
    font-size: .54rem;
  }

  body.inner-page .cycle-centre span {
    font-size: .78rem;
  }

  body.inner-page .cycle-centre strong {
    font-size: .86rem;
  }

  body.inner-page .three-outcomes {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  body.inner-page .three-outcomes article {
    min-height: 0;
    padding: 24px;
  }

  body.inner-page .three-outcomes article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  body.inner-page .three-outcomes h3 {
    margin-top: 24px;
  }

  /* Support mobile */
  body.inner-page .support-tabs-section {
    padding-top: 44px;
  }

  body.inner-page .tabs {
    gap: 20px;
  }

  body.inner-page .tab-list {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }

  body.inner-page .tab-list button {
    min-height: 58px;
    padding: 11px 12px;
    border-radius: 13px;
    font-size: .78rem;
    line-height: 1.25;
    text-align: center;
  }

  body.inner-page .tab-panels section {
    padding: 24px 20px;
    border-radius: 20px;
  }

  body.inner-page .tab-panels h2 {
    font-size: clamp(1.95rem, 8.5vw, 2.5rem);
  }

  body.inner-page .tab-panels section > p:not(.eyebrow) {
    font-size: .96rem;
    line-height: 1.62;
  }

  body.inner-page .detail-chips {
    margin-top: 22px;
  }

  body.inner-page .detail-chips span {
    font-size: .72rem;
  }

  body.inner-page .check-list > div {
    padding: 18px 0;
  }

  /* About mobile */
  body.inner-page .about-hero {
    padding: 38px 0 46px;
  }

  body.inner-page .about-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  body.inner-page .about-hero-grid > div {
    order: 1;
  }

  body.inner-page .about-hero figure {
    order: 2;
    width: 100%;
  }

  body.inner-page .about-hero h1 {
    font-size: clamp(2.65rem, 11vw, 3.4rem);
  }

  body.inner-page .about-hero .lead {
    margin-top: 18px;
    font-size: .96rem;
    line-height: 1.62;
  }

  body.inner-page .about-hero figure img {
    height: 310px;
    object-position: center 19%;
    border-radius: 20px;
  }

  body.inner-page .about-credentials {
    margin-top: 24px;
    grid-template-columns: 1fr;
  }

  body.inner-page .about-credentials span {
    padding: 11px 8px;
    font-size: .72rem;
    text-transform: none;
  }

  body.inner-page .about-credentials span + span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  body.inner-page .about-teaching-grid {
    gap: 28px;
  }

  body.inner-page .about-teaching-grid figure {
    width: 100%;
    order: -1;
  }

  body.inner-page .about-teaching-grid figure img {
    border-radius: 20px;
  }

  /* Contact mobile */
  body.inner-page.contact-page .contact-hero {
    padding: 38px 0 42px;
  }

  body.inner-page .contact-intro .contact-prompt {
    margin-top: 14px;
    font-size: 1rem;
  }

  body.inner-page .contact-intro p:last-child {
    font-size: .95rem;
  }

  body.inner-page .contact-section {
    padding-top: 36px;
  }

  body.inner-page .contact-grid {
    gap: 28px;
  }

  body.inner-page .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  body.inner-page .enquiry-form {
    padding: 20px;
    border-radius: 20px;
  }

  body.inner-page .enquiry-form label {
    margin-bottom: 14px;
    font-size: .88rem;
  }

  body.inner-page .enquiry-form textarea[name="goals"] {
    min-height: 120px;
  }

  body.inner-page .form-submit {
    width: 100%;
  }

  body.inner-page .contact-aside {
    gap: 12px;
  }

  body.inner-page .contact-card,
  body.inner-page .service-snapshot {
    padding: 22px 20px;
    border-radius: 18px;
  }

  /* CTA + footer mobile */
  body.inner-page .home-cta {
    padding-top: 18px;
    padding-bottom: 52px;
  }

  body.inner-page .cta-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 24px;
    border-radius: 22px;
  }

  body.inner-page .cta-panel h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  body.inner-page .cta-panel .button {
    width: 100%;
  }

  body.inner-page .site-footer {
    padding: 28px 0 34px;
  }

  body.inner-page .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 22px;
  }

  body.inner-page .footer-grid > div:nth-child(2) {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 18px;
  }

  body.inner-page .footer-tagline {
    margin-top: 2px;
    text-align: left;
  }
}

@media (max-width: 440px) {
  body.inner-page .tab-list {
    grid-template-columns: 1fr;
  }

  body.inner-page .tab-list button {
    min-height: 50px;
    text-align: left;
  }
}
