:root {
  --ink: #111318;
  --ink-soft: #242830;
  --paper: #f4f1e9;
  --paper-deep: #e8e3d7;
  --white: #ffffff;
  --teal: #17b9bd;
  --teal-dark: #087b7f;
  --lime: #c9ef40;
  --magenta: #b3117f;
  --orange: #ff5733;
  --violet: #8b69b7;
  --blue: #2873d6;
  --line: rgba(17, 19, 24, 0.17);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 26px 80px rgba(17, 19, 24, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

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

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

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

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

.shell {
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 820;
  letter-spacing: -0.02em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-small {
  min-height: 44px;
  padding-inline: 19px;
  font-size: 0.86rem;
}

.button-primary {
  background: var(--lime);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.arrow-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(17, 19, 24, 0.35);
  padding-bottom: 5px;
  color: var(--ink);
  font-weight: 780;
  letter-spacing: -0.02em;
  transition: color 160ms ease, border-color 160ms ease;
}

.arrow-link > span:last-child {
  font-size: 1.2em;
}

.arrow-link:hover,
.arrow-link:focus-visible {
  border-color: var(--magenta);
  color: var(--magenta);
}

.arrow-link-light {
  border-color: rgba(255, 255, 255, 0.46);
  color: var(--white);
}

.arrow-link-light:hover,
.arrow-link-light:focus-visible {
  border-color: var(--lime);
  color: var(--lime);
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--magenta);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--lime);
}

.section-heading {
  max-width: 850px;
}

.section-heading h2,
.section-title-row h2 {
  margin: 0;
  font-size: clamp(2.75rem, 5.2vw, 5.6rem);
  font-weight: 860;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.section-heading-copy {
  max-width: 780px;
  margin: 28px 0 0;
  color: #565961;
  font-size: 1.12rem;
  line-height: 1.7;
}

.content-section-dark .section-heading-copy,
.content-section-dark .section-label {
  color: rgba(255, 255, 255, 0.68);
}

.content-section {
  padding-block: clamp(88px, 10vw, 150px);
}

.content-section-dark {
  background: var(--ink);
  color: var(--white);
}

.content-section-soft {
  background: #ebe7de;
}

.split-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.8fr);
  gap: clamp(54px, 9vw, 140px);
  align-items: start;
}

.compact-split {
  gap: clamp(40px, 6vw, 86px);
}

.prose-stack {
  display: grid;
  gap: 22px;
  align-self: end;
}

.prose-stack p,
.lead-copy {
  margin: 0;
  color: #4a4d55;
  font-size: 1.08rem;
  line-height: 1.72;
}

.content-section-dark .prose-stack p,
.content-section-dark .lead-copy {
  color: rgba(255, 255, 255, 0.72);
}

.prose-stack ul,
.tick-list {
  display: grid;
  gap: 12px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.prose-stack li,
.tick-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.55;
}

.prose-stack li::before,
.tick-list li::before {
  position: absolute;
  left: 0;
  color: var(--magenta);
  content: "●";
}

/* Header */

.global-header {
  position: relative;
  z-index: 50;
  background: var(--ink);
  color: var(--white);
}

.global-header-overlay {
  position: absolute;
  inset: 0 0 auto;
  background: linear-gradient(180deg, rgba(6, 7, 10, 0.78), transparent);
}

.header-inner {
  display: grid;
  min-height: 108px;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.21);
}

.brand {
  display: inline-flex;
  width: 76px;
  height: 76px;
  align-items: center;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 1.65vw, 28px);
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 680;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--lime);
}

.mobile-nav {
  display: none;
}

/* Home */

.home-hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  isolation: isolate;
  background: #090a0d url("/images/bcis-performance-hero.jpg") center top / cover no-repeat;
  color: var(--white);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.97) 0%, rgba(5, 6, 8, 0.82) 34%, rgba(5, 6, 8, 0.04) 74%),
    linear-gradient(0deg, rgba(5, 6, 8, 0.76), transparent 46%);
  content: "";
}

.hero-content {
  display: flex;
  min-height: 850px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 170px 0 90px;
}

.home-hero h1 {
  max-width: 830px;
  margin: 0;
  font-size: clamp(4.2rem, 8vw, 8rem);
  font-weight: 880;
  letter-spacing: -0.082em;
  line-height: 0.86;
}

.home-hero h1 em {
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-copy {
  max-width: 610px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.79);
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  line-height: 1.56;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 36px;
}

.hero-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 1px;
}

.hero-caption span {
  padding: 18px 23px;
  background: rgba(17, 19, 24, 0.88);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.72fr);
  gap: clamp(54px, 9vw, 140px);
  padding-block: clamp(105px, 12vw, 175px);
}

.home-facts {
  background: var(--ink);
  color: var(--white);
}

.home-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.home-facts-grid > div {
  display: flex;
  min-height: 184px;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border-left: 1px solid var(--line-light);
}

.home-facts-grid > div:last-child {
  border-right: 1px solid var(--line-light);
}

.home-facts-grid strong {
  color: var(--lime);
  font-size: clamp(2.3rem, 3.8vw, 4.1rem);
  letter-spacing: -0.065em;
  line-height: 1;
}

.home-facts-grid span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 62px;
}

.home-course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.home-course-card {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 28px;
  border-top: 7px solid var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(17, 19, 24, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-course-card:hover,
.home-course-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.home-course-card > span {
  color: #888b91;
  font-size: 0.75rem;
  font-weight: 830;
  letter-spacing: 0.1em;
}

.home-course-card h3 {
  max-width: 300px;
  margin: auto 0 17px;
  font-size: clamp(1.65rem, 2.5vw, 2.55rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.home-course-card p {
  max-width: 290px;
  margin: 0;
  color: #64676e;
  font-size: 0.86rem;
  line-height: 1.45;
}

.home-course-card > strong {
  position: absolute;
  top: 24px;
  right: 25px;
  font-size: 1.25rem;
}

.home-course-tone-2 { border-color: var(--orange); }
.home-course-tone-3 { border-color: var(--magenta); }
.home-course-tone-4 { border-color: var(--lime); }
.home-course-tone-5 { border-color: var(--blue); }

.home-support {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: #d9cced;
}

.home-support-image {
  min-height: 690px;
}

.home-support-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-support-copy {
  display: flex;
  max-width: 720px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(68px, 8vw, 125px);
}

.home-support-copy h2 {
  margin: 0 0 30px;
  font-size: clamp(3rem, 5vw, 5.7rem);
  letter-spacing: -0.075em;
  line-height: 0.91;
}

.home-support-copy > p:not(.section-label) {
  margin: 0 0 18px;
  color: #4b4055;
  line-height: 1.68;
}

.home-support-copy ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  margin: 18px 0 32px;
  padding: 0;
  list-style: none;
}

.home-support-copy li {
  padding-top: 9px;
  border-top: 1px solid rgba(17, 19, 24, 0.22);
  font-size: 0.87rem;
  font-weight: 750;
}

.home-outcomes .section-heading {
  margin-bottom: 60px;
}

.home-outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.home-outcome-grid article {
  min-height: 295px;
  padding: 36px;
  background: var(--paper);
}

.home-outcome-grid strong {
  display: block;
  color: var(--magenta);
  font-size: clamp(3.6rem, 7vw, 7.5rem);
  letter-spacing: -0.09em;
  line-height: 1;
}

.home-outcome-grid p {
  max-width: 300px;
  margin: 25px 0 0;
  color: #555860;
  line-height: 1.55;
}

.results-note {
  margin: 22px 0 0;
  color: #74767c;
  font-size: 0.78rem;
}

.home-quote {
  padding-block: 110px;
  background: var(--magenta);
  color: var(--white);
}

.home-quote-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: clamp(55px, 9vw, 140px);
  align-items: center;
}

.home-quote blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 6vw, 6.8rem);
  font-style: italic;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.home-quote-grid > div p {
  margin: 0 0 18px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.45;
}

.home-quote-grid > div span {
  display: block;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.home-quote-grid > div a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 4px;
  font-weight: 760;
}

.home-referral {
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: #caecf0;
}

.home-referral-image {
  min-height: 680px;
  overflow: hidden;
}

.home-referral-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% center;
}

.home-referral-copy {
  display: flex;
  max-width: 720px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(68px, 8vw, 125px);
}

.home-referral-copy h2 {
  margin: 0;
  font-size: clamp(3.3rem, 6vw, 6.6rem);
  letter-spacing: -0.08em;
  line-height: 0.91;
}

.home-referral-copy > p:not(.section-label) {
  max-width: 620px;
  margin: 30px 0;
  color: #555860;
  font-size: 1.06rem;
  line-height: 1.7;
}

/* Interior hero */

.page-hero {
  overflow: hidden;
  background: var(--teal-dark);
  color: var(--white);
}

.page-hero-magenta { background: #97156f; }
.page-hero-orange { background: #d94e28; }
.page-hero-violet { background: #6d4c92; }
.page-hero-teal { background: #087b7f; }
.page-hero-lime { background: #b7db37; color: var(--ink); }

.page-hero-lime .eyebrow {
  color: #5a6615;
}

.page-hero-grid {
  display: grid;
  min-height: 590px;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.72fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: stretch;
}

.page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 90px;
}

.page-hero h1,
.not-found h1 {
  max-width: 890px;
  margin: 0;
  font-size: clamp(4rem, 7vw, 7.4rem);
  font-weight: 880;
  letter-spacing: -0.082em;
  line-height: 0.87;
}

.page-hero-copy > p:last-child {
  max-width: 710px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.79);
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
  line-height: 1.62;
}

.page-hero-lime .page-hero-copy > p:last-child {
  color: rgba(17, 19, 24, 0.72);
}

.page-hero-image {
  position: relative;
  min-height: 590px;
  margin-right: calc((100vw - min(100vw - 48px, 1280px)) / -2);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.page-hero-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 19, 24, 0.18), transparent 35%);
  content: "";
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-mark {
  display: flex;
  align-items: end;
  justify-content: end;
  padding: 30px 0;
  font-size: clamp(9rem, 19vw, 22rem);
  font-weight: 900;
  letter-spacing: -0.12em;
  line-height: 0.7;
  opacity: 0.1;
}

/* About */

.community-band {
  position: relative;
  aspect-ratio: 16 / 7;
  margin-bottom: clamp(88px, 10vw, 150px);
  overflow: hidden;
  background: var(--ink);
}

.community-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
}

.community-band figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 13px 18px;
  background: rgba(17, 19, 24, 0.86);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-light);
}

.purpose-card {
  min-height: 350px;
  padding: clamp(34px, 5vw, 68px);
  background: var(--ink);
}

.purpose-card-wide {
  grid-column: 1 / -1;
}

.purpose-card p:not(.section-label) {
  max-width: 980px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.35rem, 2.35vw, 2.35rem);
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1.32;
}

.quote-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  padding-block: clamp(100px, 12vw, 170px);
}

.quote-section blockquote {
  max-width: 950px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7.5vw, 8rem);
  font-style: italic;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.quote-section > p {
  align-self: end;
  margin: 0 0 10px;
  color: #777980;
}

.quote-stat {
  position: absolute;
  right: 0;
  bottom: -82px;
  display: flex;
  width: min(440px, 45vw);
  min-height: 180px;
  align-items: center;
  gap: 24px;
  padding: 30px;
  background: var(--lime);
}

.quote-stat strong {
  font-size: 3.5rem;
  letter-spacing: -0.08em;
}

.quote-stat span {
  line-height: 1.45;
}

.facts-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 60px 0 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.facts-list div {
  min-height: 145px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.facts-list dt {
  margin-bottom: 18px;
  color: #777980;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.facts-list dd {
  margin: 0;
  font-weight: 760;
  line-height: 1.4;
}

.ofsted-band {
  padding-block: 66px;
  background: #1c2971;
  color: var(--white);
}

.ofsted-band-inner {
  display: grid;
  grid-template-columns: auto 1fr 0.65fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}

.ofsted-rating {
  display: flex;
  width: 140px;
  height: 140px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 24px 24px 24px 0;
  background: var(--white);
  color: #1c2971;
}

.ofsted-rating span {
  font-size: 1.15rem;
  font-weight: 850;
}

.ofsted-rating strong {
  font-size: 2.3rem;
  letter-spacing: -0.06em;
}

.ofsted-band blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.2vw, 3.4rem);
  font-style: italic;
  line-height: 1.13;
}

.ofsted-band-inner > div:last-child {
  display: grid;
  gap: 18px;
}

.ofsted-band-inner > div:last-child a {
  width: fit-content;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 4px;
}

/* Curriculum */

.course-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.course-index a {
  display: flex;
  min-height: 110px;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.34);
  font-size: 0.92rem;
  font-weight: 780;
  line-height: 1.35;
}

.course-index a:hover,
.course-index a:focus-visible {
  background: var(--white);
}

.course-index span {
  color: var(--magenta);
  font-size: 0.72rem;
}

.course-list {
  padding-block: 100px 140px;
}

.course-article {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: clamp(28px, 6vw, 88px);
  padding: 82px 0;
  border-top: 6px solid var(--teal);
}

.course-tone-2 { border-color: var(--orange); }
.course-tone-3 { border-color: var(--magenta); }
.course-tone-4 { border-color: var(--lime); }
.course-tone-5 { border-color: var(--blue); }

.course-number {
  color: #c8c4bb;
  font-size: clamp(4.8rem, 8vw, 8.5rem);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.8;
}

.course-main h2 {
  max-width: 930px;
  margin: 8px 0 30px;
  font-size: clamp(2.7rem, 5vw, 5.25rem);
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.course-qualification {
  margin: 0;
  color: #666970;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-copy {
  display: grid;
  max-width: 920px;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 44px;
}

.course-copy p {
  margin: 0;
  color: #53565e;
  line-height: 1.68;
}

.course-copy p:first-child {
  grid-column: 1 / -1;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 650;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.tag-list span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  font-weight: 680;
}

.tag-list-large span {
  padding: 12px 16px;
  font-size: 0.86rem;
}

.experience-note {
  margin: 24px 0 0;
  color: #555860;
}

.outcome-blocks {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.outcome-group {
  border: 1px solid var(--line);
  background: var(--white);
}

.outcome-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 19px;
  border-bottom: 1px solid var(--line);
}

.outcome-heading strong {
  font-size: 0.84rem;
}

.outcome-heading span {
  color: #777980;
  font-size: 0.74rem;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.outcome-grid > div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.outcome-grid > div:last-child {
  border-right: 0;
}

.outcome-grid strong {
  display: block;
  color: var(--magenta);
  font-size: 2.6rem;
  letter-spacing: -0.07em;
}

.outcome-grid p {
  margin: 8px 0 0;
  color: #555860;
  font-size: 0.86rem;
  line-height: 1.4;
}

.outcome-grid small {
  display: block;
  margin-top: 10px;
  color: #888a90;
  line-height: 1.4;
}

.table-wrap {
  margin-top: 55px;
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.45);
  text-align: left;
}

.data-table th,
.data-table td {
  padding: 22px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.5;
}

.data-table thead th {
  color: #73767d;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.data-table tbody th {
  width: 46%;
}

.data-table-dark {
  background: transparent;
}

.data-table-dark th,
.data-table-dark td {
  border-color: var(--line-light);
}

.data-table-dark thead th {
  color: rgba(255, 255, 255, 0.52);
}

.data-table-dark td {
  color: rgba(255, 255, 255, 0.7);
}

.progression-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 60px;
  background: var(--line);
}

.progression-grid article {
  min-height: 155px;
  padding: 25px;
  background: var(--paper);
}

.progression-grid h3 {
  margin: 0 0 20px;
  font-size: 1.15rem;
  line-height: 1.25;
}

.progression-grid p {
  margin: 0;
  color: #70737a;
  font-size: 0.8rem;
}

.progression-outcome {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 30px;
  padding: 32px;
  background: var(--lime);
}

.progression-outcome strong {
  font-size: clamp(3rem, 6vw, 6rem);
  letter-spacing: -0.08em;
}

.progression-outcome p {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 730;
}

.progression-outcome span {
  font-size: 0.8rem;
  font-weight: 760;
}

/* Support */

.support-section {
  padding-block: 100px;
  background: #d8c9ed;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(17, 19, 24, 0.17);
}

.support-grid article {
  min-height: 320px;
  padding: 28px;
  background: #d8c9ed;
}

.number-badge {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 850;
}

.support-grid h2 {
  margin: 72px 0 14px;
  font-size: 1.7rem;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.support-grid p {
  margin: 0;
  color: #554d5f;
  font-size: 0.91rem;
  line-height: 1.52;
}

.wider-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 58px;
}

.wider-support-grid article {
  min-height: 330px;
  padding: 32px;
  background: var(--white);
}

.wider-support-grid h2 {
  margin: 0 0 28px;
  font-size: 2rem;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.wider-support-grid p {
  margin: 0 0 17px;
  color: #5a5d64;
  line-height: 1.62;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 110px;
  padding: clamp(42px, 6vw, 74px);
  background: var(--lime);
}

.cta-panel h2 {
  max-width: 750px;
  margin: 0;
  font-size: clamp(2.5rem, 4.4vw, 4.8rem);
  letter-spacing: -0.07em;
  line-height: 0.96;
}

/* Life */

.facility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 65px;
}

.facility-grid article {
  display: grid;
  min-height: 530px;
  grid-template-rows: 275px 1fr;
  overflow: hidden;
  background: var(--white);
}

.facility-grid article:first-child {
  grid-column: 1 / -1;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr;
}

.facility-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-grid article > div {
  padding: 32px;
}

.facility-grid h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 3.6vw, 3.7rem);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.facility-grid p {
  margin: 0 0 15px;
  color: #5b5e65;
  line-height: 1.58;
}

.facility-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.facility-grid li {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.75rem;
}

.impact-band {
  padding-block: 75px;
  background: var(--magenta);
  color: var(--white);
}

.impact-band .shell > p {
  margin: 0 0 35px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.impact-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}

.impact-grid strong {
  font-size: clamp(4.5rem, 8vw, 8.5rem);
  letter-spacing: -0.09em;
  line-height: 0.9;
}

.impact-grid span {
  max-width: 360px;
  font-size: 1.03rem;
  line-height: 1.5;
}

.clubs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 55px;
  background: var(--line-light);
}

.clubs-grid > div {
  padding: clamp(34px, 5vw, 65px);
  background: var(--ink);
}

.clubs-grid h3 {
  margin: 0 0 32px;
  color: var(--lime);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.clubs-grid p {
  margin: 0;
  padding: 17px 0;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

/* Referrals */

.referral-route-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.referral-route-grid article {
  min-height: 390px;
  padding: clamp(32px, 5vw, 62px);
  background: var(--white);
}

.referral-route-grid article:nth-child(2) {
  background: var(--teal);
}

.referral-route-grid h2 {
  max-width: 500px;
  margin: 70px 0 20px;
  font-size: clamp(2.1rem, 3.7vw, 3.8rem);
  letter-spacing: -0.065em;
  line-height: 1;
}

.referral-route-grid p {
  max-width: 520px;
  margin: 0 0 24px;
  color: #54575e;
  line-height: 1.65;
}

.referral-route-grid article:nth-child(2) p {
  color: #163c3e;
}

.referral-route-grid a {
  border-bottom: 1px solid rgba(17, 19, 24, 0.36);
  padding-bottom: 4px;
  font-weight: 780;
}

.process-section {
  padding-block: 110px;
  background: var(--ink);
  color: var(--white);
}

.process-list {
  display: grid;
  margin: 60px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid var(--line-light);
}

.process-list span {
  color: var(--lime);
  font-size: 2.1rem;
  font-weight: 840;
}

.process-list p {
  max-width: 850px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.42;
}

.capacity-note {
  max-width: 970px;
  margin: 38px 0 0 130px;
  padding: 24px;
  border-left: 4px solid var(--orange);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.referral-contact {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 70px;
  align-items: end;
}

.referral-contact h2 {
  margin: 0 0 20px;
  font-size: clamp(3rem, 5vw, 5.5rem);
  letter-spacing: -0.075em;
  line-height: 0.95;
}

.referral-contact p {
  max-width: 700px;
  color: #565960;
  line-height: 1.62;
}

.privacy-note {
  margin-top: 20px !important;
  font-size: 0.78rem;
}

/* Information */

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

.information-grid article {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: clamp(32px, 5vw, 60px);
  background: var(--white);
}

.information-grid article:nth-child(2) { background: #d8c9ed; }
.information-grid article:nth-child(3) { background: #caecf0; }
.information-grid article:nth-child(4) { background: var(--lime); }
.information-grid article:nth-child(5) { background: #ffd6be; }

.information-grid h2 {
  margin: 25px 0 18px;
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.information-grid article > p:not(.section-label) {
  max-width: 560px;
  margin: 0 0 28px;
  color: #555860;
  line-height: 1.58;
}

.information-grid .arrow-link {
  margin-top: auto;
}

.notice-panel {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 45px;
  margin-bottom: 110px;
  padding: 34px;
  border: 1px solid var(--line);
}

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

.notice-panel p {
  margin: 0;
  color: #5b5e65;
  line-height: 1.55;
}

.term-year {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(45px, 8vw, 120px);
  align-items: center;
  padding-block: clamp(90px, 12vw, 160px);
}

.term-year-mark {
  color: #ded8cb;
  font-size: clamp(4.8rem, 11vw, 11rem);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.75;
}

.term-year-copy h2 {
  margin: 0 0 25px;
  font-size: clamp(3rem, 5.6vw, 6rem);
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.term-year-copy > p:not(.section-label) {
  max-width: 680px;
  margin: 0;
  color: #565960;
  line-height: 1.65;
}

.term-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 45px;
  background: var(--line);
  border: 1px solid var(--line);
}

.term-stats > div {
  display: flex;
  min-height: 145px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: var(--paper);
}

.term-stats strong {
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  letter-spacing: -0.07em;
}

.term-stats span {
  max-width: 120px;
  color: #5d6066;
  font-size: 0.78rem;
  line-height: 1.35;
}

.term-cards-section {
  padding-block: clamp(75px, 10vw, 130px);
  background: var(--ink);
}

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

.term-card {
  padding: clamp(28px, 3.6vw, 48px);
  background: #efc8dc;
}

.term-card:nth-child(2) { background: #c9edf0; }
.term-card:nth-child(3) { background: var(--lime); }

.term-card header {
  min-height: 165px;
  border-bottom: 2px solid rgba(14, 15, 18, 0.7);
}

.term-card header p {
  margin: 0 0 20px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.term-card h2 {
  margin: 0;
  font-size: clamp(2.7rem, 4.3vw, 4.6rem);
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.term-card dl {
  margin: 0;
}

.term-period {
  position: relative;
  min-height: 155px;
  padding: 27px 0 24px;
  border-bottom: 1px solid rgba(14, 15, 18, 0.25);
}

.term-period:last-child {
  border: 0;
}

.term-period dt {
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.term-period dd {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 720;
  line-height: 1.38;
}

.term-period > span {
  display: block;
  margin-top: 13px;
  color: rgba(14, 15, 18, 0.62);
  font-size: 0.75rem;
  font-weight: 760;
}

.term-period-holiday::before {
  position: absolute;
  top: 29px;
  right: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.term-details {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(45px, 8vw, 120px);
  padding-block: clamp(85px, 11vw, 140px);
}

.term-details h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(2.7rem, 4.8vw, 5rem);
  letter-spacing: -0.075em;
  line-height: 0.95;
}

.term-details ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.term-details li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: #4e5157;
  font-weight: 650;
  line-height: 1.45;
}

.term-source {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 45px;
  align-items: end;
  margin-bottom: 110px;
  padding: clamp(34px, 5vw, 65px);
  background: #d7f4f1;
}

.term-source h2 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
  letter-spacing: -0.075em;
  line-height: 0.95;
}

.term-source p:not(.section-label) {
  max-width: 760px;
  margin: 0;
  color: #365255;
  line-height: 1.6;
}

.term-source .button {
  white-space: nowrap;
}

.absence-callout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 65px;
  margin-block: 110px;
  padding: clamp(38px, 6vw, 70px);
  background: var(--teal);
}

.absence-callout > div {
  display: flex;
  flex-direction: column;
}

.absence-callout > div > a {
  margin: auto 0 8px;
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
  font-weight: 860;
  letter-spacing: -0.065em;
}

.absence-callout > div > span {
  color: #16484a;
}

.absence-callout ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.absence-callout li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-top: 1px solid rgba(17, 19, 24, 0.22);
  line-height: 1.5;
}

.absence-callout li span {
  font-size: 0.75rem;
  font-weight: 820;
}

.expectation-section > .section-heading {
  margin-bottom: 45px;
}

.expectation-section > .prose-stack,
.expectation-section > .lead-copy {
  max-width: 850px;
}

.expectation-section > h3 {
  margin: 60px 0 24px;
  font-size: 1rem;
  text-transform: uppercase;
}

.two-column-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--line);
  list-style: none;
}

.two-column-list li {
  min-height: 90px;
  padding: 25px;
  background: var(--paper);
  line-height: 1.45;
}

.inline-note {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 35px;
  padding: 28px;
  background: var(--lime);
}

.inline-note p {
  margin: 0;
  line-height: 1.55;
}

.reward-list {
  display: grid;
}

.reward-list > div {
  display: grid;
  grid-template-columns: 72px 52px 1fr;
  gap: 12px;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid var(--line-light);
}

.reward-list strong {
  color: var(--lime);
  font-size: 2rem;
  letter-spacing: -0.06em;
}

.reward-list span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.reward-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.expectation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 45px;
}

.expectation-grid article {
  padding: 30px;
  background: var(--white);
}

.expectation-grid h3,
.replacement-grid h3,
.agreement-grid h3 {
  margin: 0 0 25px;
  font-size: 1.5rem;
  letter-spacing: -0.045em;
}

.expectation-grid ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding-left: 19px;
}

.expectation-grid li {
  color: #585b62;
  line-height: 1.47;
}

.replacement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 20px;
  background: var(--line);
}

.replacement-grid article {
  padding: 25px;
  background: var(--paper);
}

.replacement-grid p {
  margin: 0;
  color: #5d6067;
  line-height: 1.5;
}

.agreement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 55px;
}

.agreement-grid article {
  padding: 30px;
  background: var(--white);
}

.agreement-grid ol {
  display: grid;
  gap: 13px;
  margin: 0;
  padding-left: 24px;
}

.agreement-grid li {
  color: #5b5e65;
  line-height: 1.48;
}

/* Contact */

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-card-grid article {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: clamp(30px, 5vw, 56px);
  background: var(--white);
}

.contact-card-grid article:nth-child(2) { background: #d8c9ed; }
.contact-card-grid article:nth-child(3) { background: var(--lime); }
.contact-card-grid article:nth-child(4) { background: #caecf0; }

.contact-card-grid a:not(.section-label) {
  width: fit-content;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(17, 19, 24, 0.28);
  padding-bottom: 4px;
  font-size: clamp(1.15rem, 2.4vw, 2rem);
  font-weight: 780;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

.contact-card-grid span {
  margin-top: auto;
  color: #5c5f66;
}

.location-section {
  padding-block: 110px;
  background: var(--ink);
  color: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(60px, 9vw, 130px);
}

.location-grid h2 {
  margin: 0 0 30px;
  font-size: clamp(3rem, 5vw, 5.3rem);
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.location-grid address {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
  font-style: normal;
  line-height: 1.65;
}

.travel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-light);
}

.travel-grid article {
  padding: 25px;
  background: var(--ink);
}

.travel-grid article > p {
  margin: 0 0 30px;
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.travel-grid h3 {
  margin: 0 0 24px;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.travel-grid span {
  display: block;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.84rem;
  line-height: 1.5;
}

/* Footer */

.site-footer {
  background: #090a0d;
  color: var(--white);
}

.footer-statement {
  display: grid;
  grid-template-columns: 0.35fr 1fr auto;
  gap: clamp(35px, 6vw, 85px);
  align-items: end;
  padding-block: 90px;
  border-bottom: 1px solid var(--line-light);
}

.footer-statement > p {
  margin: 0;
  color: var(--lime);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-statement h2 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.65fr);
  gap: 55px;
  padding-block: 70px;
}

.footer-brand img {
  width: 82px;
  height: 82px;
}

.footer-brand p {
  margin: 23px 0 12px;
  font-weight: 760;
}

.footer-brand span {
  display: block;
  max-width: 310px;
  color: rgba(255, 255, 255, 0.49);
  font-size: 0.8rem;
  line-height: 1.55;
}

.footer-grid h3 {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.71rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid > div:not(.footer-brand) a {
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  line-height: 1.4;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--lime);
}

.footer-base {
  display: flex;
  min-height: 75px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.72rem;
}

.not-found {
  min-height: 650px;
  padding-block: 120px;
}

.not-found p:not(.section-label) {
  max-width: 650px;
  margin: 30px 0;
  color: #5b5e65;
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 15px;
  }

  .desktop-nav a {
    font-size: 0.8rem;
  }

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

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

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

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

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.84rem;
    font-weight: 780;
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav-panel {
    position: absolute;
    top: 54px;
    right: 0;
    display: grid;
    width: min(78vw, 330px);
    padding: 12px;
    border: 1px solid var(--line-light);
    background: var(--ink);
    box-shadow: var(--shadow);
  }

  .mobile-nav-panel a {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line-light);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
  }

  .mobile-nav-panel a:last-child {
    border: 0;
    color: var(--lime);
  }

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

  .page-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .page-hero-copy {
    padding-block: 80px;
  }

  .page-hero-image {
    min-height: 420px;
    margin: 0 -24px;
    clip-path: none;
  }

  .page-hero-mark {
    display: none;
  }

  .course-article {
    grid-template-columns: 110px 1fr;
  }

  .wider-support-grid,
  .expectation-grid,
  .agreement-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-statement {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

@media (max-width: 760px) {
  .shell {
    width: min(100% - 32px, 1280px);
  }

  .global-header-overlay {
    background: linear-gradient(180deg, rgba(6, 7, 10, 0.92), transparent);
  }

  .header-inner {
    min-height: 86px;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand {
    width: 62px;
    height: 62px;
  }

  .header-cta {
    display: none;
  }

  .home-hero {
    min-height: 790px;
    background-position: 61% top;
  }

  .home-hero::before {
    background:
      linear-gradient(90deg, rgba(5, 6, 8, 0.96), rgba(5, 6, 8, 0.4)),
      linear-gradient(0deg, rgba(5, 6, 8, 0.92), transparent 66%);
  }

  .hero-content {
    min-height: 790px;
    justify-content: flex-end;
    padding: 150px 0 125px;
  }

  .home-hero h1 {
    font-size: clamp(3.6rem, 17vw, 5.8rem);
  }

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

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-caption {
    left: 0;
    right: auto;
    width: 100%;
    overflow-x: auto;
  }

  .hero-caption span {
    flex: 1 0 auto;
    padding-inline: 16px;
  }

  .home-intro,
  .split-content,
  .home-support,
  .home-quote-grid,
  .home-referral,
  .referral-contact,
  .location-grid,
  .term-year,
  .term-details,
  .term-source,
  .absence-callout {
    grid-template-columns: 1fr;
  }

  .term-card-grid {
    grid-template-columns: 1fr;
  }

  .term-card header {
    min-height: 0;
    padding-bottom: 32px;
  }

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

  .home-facts-grid > div {
    min-height: 145px;
    padding: 22px 18px;
    border-bottom: 1px solid var(--line-light);
  }

  .section-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-course-grid,
  .home-outcome-grid,
  .course-index,
  .progression-grid,
  .support-grid,
  .facility-grid,
  .impact-grid,
  .clubs-grid,
  .referral-route-grid,
  .information-grid,
  .contact-card-grid,
  .two-column-list,
  .inline-note {
    grid-template-columns: 1fr;
  }

  .home-course-card {
    min-height: 250px;
  }

  .home-support-image {
    min-height: 460px;
  }

  .home-referral-image {
    min-height: 460px;
  }

  .home-support-copy {
    padding: 70px 24px;
  }

  .home-referral-copy {
    padding: 70px 24px;
  }

  .community-band {
    min-height: 340px;
    aspect-ratio: auto;
  }

  .home-outcome-grid article {
    min-height: 230px;
  }

  .home-quote blockquote {
    font-size: clamp(3.5rem, 15vw, 5.7rem);
  }

  .page-hero h1,
  .not-found h1 {
    font-size: clamp(3.4rem, 15vw, 5.6rem);
  }

  .page-hero-copy {
    padding-block: 65px;
  }

  .page-hero-image {
    min-height: 330px;
    margin: 0 -16px;
  }

  .purpose-grid,
  .ofsted-band-inner {
    grid-template-columns: 1fr;
  }

  .purpose-card-wide {
    grid-column: auto;
  }

  .quote-section {
    display: block;
    padding-bottom: 200px;
  }

  .quote-section > p {
    margin-top: 25px;
  }

  .quote-stat {
    left: 0;
    right: auto;
    width: min(100%, 440px);
    bottom: 20px;
  }

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

  .ofsted-rating {
    width: 125px;
    height: 125px;
  }

  .course-article {
    grid-template-columns: 1fr;
    padding: 65px 0;
  }

  .course-number {
    font-size: 4.8rem;
  }

  .course-copy {
    grid-template-columns: 1fr;
  }

  .course-copy p:first-child {
    grid-column: auto;
  }

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

  .outcome-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .progression-outcome {
    grid-template-columns: 1fr;
  }

  .support-grid article {
    min-height: 260px;
  }

  .facility-grid article,
  .facility-grid article:first-child {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 250px 1fr;
  }

  .impact-grid {
    gap: 45px;
  }

  .impact-grid > div {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-list li {
    grid-template-columns: 55px 1fr;
  }

  .capacity-note {
    margin-left: 0;
  }

  .notice-panel {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .term-year {
    gap: 50px;
  }

  .term-stats {
    grid-template-columns: 1fr;
  }

  .term-stats > div {
    min-height: 110px;
  }

  .term-source {
    align-items: start;
  }

  .absence-callout {
    gap: 45px;
  }

  .absence-callout > div > a {
    margin-top: 30px;
  }

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

  .reward-list > div {
    grid-template-columns: 60px 45px 1fr;
  }

  .data-table {
    min-width: 680px;
  }

  .footer-base {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 24px;
  }
}

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

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