:root {
  --ink: #18211d;
  --muted: #5f6b65;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --line: #dfe5dd;
  --sage: #667c64;
  --coral: #d76a57;
  --marigold: #f0b84a;
  --teal: #2b7f86;
  --shadow: 0 22px 60px rgba(24, 33, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(24, 33, 29, 0.12);
}

.brand-logo {
  display: block;
  width: 46px;
  height: 40px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 700;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
}

.header-cta {
  background: rgba(255, 255, 255, 0.17);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 58% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 24, 19, 0.88) 0%, rgba(15, 24, 19, 0.72) 42%, rgba(15, 24, 19, 0.2) 100%),
    linear-gradient(0deg, rgba(15, 24, 19, 0.72) 0%, rgba(15, 24, 19, 0) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  padding: 132px 0 clamp(38px, 8vh, 86px);
  margin-left: clamp(18px, 7vw, 96px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--marigold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button.primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 16px 34px rgba(215, 106, 87, 0.32);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero-stats span {
  min-width: 164px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
}

.hero-stats strong {
  display: block;
  color: #fff;
  font-size: 1.32rem;
  line-height: 1.12;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 90px);
  padding: clamp(52px, 8vw, 92px) clamp(18px, 7vw, 96px);
  background: var(--ink);
  color: #fff;
}

.intro-band h2,
.section-heading h2,
.split-section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro-band p:last-child {
  align-self: end;
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.68;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.proof-strip div {
  padding: 24px clamp(18px, 4vw, 44px);
  background: #fff;
}

.proof-strip strong {
  display: block;
  color: var(--teal);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  line-height: 1;
}

.proof-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.section {
  padding: clamp(58px, 8vw, 106px) clamp(18px, 7vw, 96px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: clamp(30px, 5vw, 54px);
}

.media-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 54px);
}

.media-section-heading h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

.media-section-heading .section-kicker {
  color: var(--teal);
}

.section-photo {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(24, 33, 29, 0.12);
  aspect-ratio: 16 / 9;
}

.section-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#student-learning .section-photo img {
  object-position: center 58%;
}

#parents .section-photo img {
  object-position: center 62%;
}

.section-heading .section-kicker,
.split-section .section-kicker {
  color: var(--teal);
}

.process-section {
  background: #fff;
}

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

.process-grid article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
}

.process-topline,
.package-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}

.process-grid .process-topline > span:first-child,
.package-label {
  display: inline-flex;
  min-height: 20px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(43, 127, 134, 0.28);
  border-radius: 50%;
  color: var(--teal);
  background: #edf3ea;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
}

.process-grid h3 {
  margin: 0 0 12px;
  font-size: 1.34rem;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.whole-school {
  background: #fff;
}

.approach-heading {
  max-width: 960px;
  margin: 0 auto clamp(34px, 6vw, 64px);
  text-align: center;
}

.approach-heading .section-kicker {
  color: var(--teal);
}

.approach-heading h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.04;
}

.approach-heading p {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.58;
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.72fr) minmax(0, 1fr);
  grid-template-areas:
    "students core educators"
    "families core systems";
  gap: 16px;
  align-items: center;
}

.pillar-card {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(24, 33, 29, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pillar-card:hover {
  transform: translateY(-3px);
  border-color: currentColor;
  box-shadow: 0 20px 44px rgba(24, 33, 29, 0.12);
}

.pillar-card h3 {
  margin: 0 0 8px;
  font-size: 1.28rem;
  text-transform: uppercase;
}

.pillar-card p {
  margin: 0;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.45;
}

.pillar-number {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 800;
}

.pillar-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 22px;
  color: currentColor;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.students-card {
  grid-area: students;
  background: #f0f6ed;
  color: #3c7b48;
}

.educators-card {
  grid-area: educators;
  background: #edf5fb;
  color: #2368ad;
}

.families-card {
  grid-area: families;
  background: #fff8e7;
  color: #d79a10;
}

.systems-card {
  grid-area: systems;
  background: #f2edf8;
  color: #7451a5;
}

.students-card .pillar-number {
  background: #3c7b48;
}

.educators-card .pillar-number {
  background: #2368ad;
}

.families-card .pillar-number {
  background: #d79a10;
}

.systems-card .pillar-number {
  background: #7451a5;
}

.approach-core {
  grid-area: core;
  display: grid;
  place-items: center;
  gap: 14px;
  min-height: 300px;
  padding: 30px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(251, 250, 246, 0.96), #fff),
    #fff;
  box-shadow: 0 20px 50px rgba(24, 33, 29, 0.12);
  text-align: center;
}

.approach-logo {
  display: block;
  width: 86px;
  height: 76px;
  object-fit: contain;
  padding: 10px;
  border: 1px solid rgba(16, 24, 60, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(24, 33, 29, 0.08);
}

.approach-core strong {
  color: #10183c;
  font-size: clamp(1.16rem, 1.8vw, 1.54rem);
  line-height: 1.16;
}

.approach-core small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.safeguarding-foundation {
  width: min(760px, 100%);
  margin: 26px auto 0;
  padding: 18px;
  border-radius: 8px;
  background: #fde8e4;
  color: #5b1924;
  text-align: center;
}

.safeguarding-foundation h3 {
  margin: 0 0 16px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.foundation-list span {
  padding: 10px;
  border: 1px solid rgba(91, 25, 36, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.25;
}

.approach-outcome {
  width: min(900px, 100%);
  margin: 28px auto 0;
  padding: 20px 28px;
  border-radius: 8px;
  background: #26175b;
  color: #fff;
}

.approach-outcome p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.78);
}

.approach-outcome strong {
  display: block;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.18;
}

.service-menu {
  background: #fff;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
  box-shadow: 0 18px 42px rgba(24, 33, 29, 0.08);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(24, 33, 29, 0.12);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--teal);
}

.service-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

.service-meta {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.28rem, 2vw, 1.65rem);
  line-height: 1.18;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.52;
}

.service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px 0 0;
  margin: auto 0 0;
  list-style: none;
}

.service-points li {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
}

.service-students::before {
  background: #3c7b48;
}

.service-students .card-icon {
  color: #3c7b48;
  border-color: rgba(60, 123, 72, 0.24);
  background: #f0f6ed;
}

.service-teachers::before {
  background: #2368ad;
}

.service-teachers .card-icon {
  color: #2368ad;
  border-color: rgba(35, 104, 173, 0.24);
  background: #edf5fb;
}

.service-systems::before {
  background: #7451a5;
}

.service-systems .card-icon {
  color: #7451a5;
  border-color: rgba(116, 81, 165, 0.24);
  background: #f2edf8;
}

.service-parents::before {
  background: #d79a10;
}

.service-parents .card-icon {
  color: #d79a10;
  border-color: rgba(215, 154, 16, 0.24);
  background: #fff8e7;
}

.service-featured {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 30px;
  border-radius: 8px;
  background: #10183c;
  color: #fff;
  box-shadow: 0 24px 52px rgba(24, 33, 29, 0.14);
}

.service-featured::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--coral);
}

.service-featured .service-topline {
  justify-content: flex-start;
  margin-bottom: 22px;
}

.service-featured .service-meta,
.service-featured p {
  color: rgba(255, 255, 255, 0.76);
}

.service-featured .card-icon {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.service-featured h3 {
  max-width: 780px;
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.service-featured p {
  max-width: 760px;
  margin: 0;
  font-weight: 650;
  line-height: 1.58;
}

.service-stack {
  display: grid;
  gap: 8px;
}

.service-stack span {
  position: relative;
  padding: 12px 14px 12px 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
  font-weight: 800;
}

.service-stack span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 14px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  transform: translateY(-50%);
}

.service-featured > .service-link {
  position: absolute;
  right: 30px;
  bottom: 24px;
  color: #fff;
}

.service-link {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.alt-section {
  background: #edf3ea;
}

.offering-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.52fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 62px);
  padding: clamp(22px, 3.5vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.alt-section .offering-panel {
  box-shadow: none;
}

.offering-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

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

.offering-group {
  display: flex;
  flex-direction: column;
  min-height: 148px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
}

.offering-group h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.22;
}

.offering-group ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: auto 0 0;
  list-style: none;
}

.offering-group li {
  padding: 8px 10px;
  border: 1px solid rgba(43, 127, 134, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
}

.student-testimonials {
  padding: clamp(48px, 7vw, 82px) clamp(18px, 7vw, 96px);
  background: #edf3ea;
}

.student-testimonials .section-heading {
  max-width: 780px;
}

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

.student-testimonial-grid blockquote {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: clamp(24px, 4vw, 38px);
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(24, 33, 29, 0.08);
}

.student-testimonial-grid p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.8vw, 1.38rem);
  font-weight: 800;
  line-height: 1.42;
}

.student-testimonial-grid cite {
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--muted);
  font-style: normal;
}

.student-testimonial-grid cite strong {
  color: var(--teal);
  font-size: 1.02rem;
}

.student-testimonial-grid cite span {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.safeguarding-note {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 76px);
  padding: clamp(46px, 7vw, 80px) clamp(18px, 7vw, 96px);
  background: var(--ink);
  color: #fff;
}

.safeguarding-note h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 3.4rem);
  line-height: 1.04;
}

.safeguarding-note p:last-child {
  align-self: end;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.72;
}

.resources-section {
  background: #fff;
}

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

.resource-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.resource-card figure {
  display: grid;
  place-items: center;
  position: relative;
  height: 270px;
  margin: 0;
  background: #f4f8fb;
}

.resource-card img {
  display: block;
  position: absolute;
  inset: 16px;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(24, 33, 29, 0.12);
  object-fit: contain;
}

.resource-card div {
  padding: 24px;
}

.resource-card h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.resource-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.partnership-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.partnership-grid article {
  display: flex;
  flex-direction: column;
  min-height: 370px;
  padding: 26px;
  background: #fff;
}

.package-topline {
  margin-bottom: 26px;
}

.package-topline .card-icon {
  flex-basis: 42px;
  width: 42px;
  height: 42px;
  border-color: rgba(102, 124, 100, 0.28);
  color: var(--sage);
  background: #f4f5ef;
  font-size: 1.18rem;
}

.partnership-grid h3 {
  margin: 0 0 14px;
  font-size: 1.28rem;
}

.partnership-grid p,
.speaker-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.partnership-grid p {
  min-height: 104px;
}

.package-list {
  display: grid;
  gap: 9px;
  padding: 18px 0 0;
  margin: auto 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.package-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.package-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.78fr);
  gap: clamp(30px, 7vw, 100px);
  padding: clamp(58px, 8vw, 106px) clamp(18px, 7vw, 96px);
  background: #edf3ea;
}

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

.speaker-list div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid #cbd8ca;
}

.speaker-list span {
  color: var(--coral);
  font-weight: 800;
}

.attend-section {
  background: #fff;
}

.testimonial-section {
  padding: clamp(48px, 7vw, 86px) clamp(18px, 7vw, 96px);
  background: #edf3ea;
}

.testimonial-section blockquote {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 5vw, 48px);
  border-left: 6px solid var(--teal);
  background: #fff;
  box-shadow: var(--shadow);
}

.testimonial-section p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.18;
}

.testimonial-section cite {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: clamp(50px, 7vw, 86px) clamp(18px, 7vw, 96px);
  background: #26175b;
  color: #fff;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

.final-cta p:not(.section-kicker) {
  max-width: 640px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.final-cta .button {
  white-space: nowrap;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 32px clamp(18px, 7vw, 96px);
  background: var(--sage);
  color: #fff;
}

.footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.footer-logo {
  display: block;
  width: 64px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 16px;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
}

.footer-button {
  background: #fff;
  color: var(--ink);
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 860px;
  }

  .hero-content {
    width: min(680px, calc(100% - 36px));
  }

  .intro-band,
  .split-section,
  .media-section-heading,
  .safeguarding-note,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .process-grid,
  .resources-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .service-card {
    min-height: 280px;
  }

  .service-featured {
    grid-template-columns: 1fr;
    align-items: start;
    padding-bottom: 76px;
  }

  .approach-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "core core"
      "students educators"
      "families systems";
  }

  .approach-core {
    min-height: 230px;
    border-radius: 8px;
  }

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

  .offering-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .site-header {
    min-height: 66px;
    padding: 12px 16px;
    gap: 10px;
  }

  .brand {
    padding: 7px 8px;
  }

  .brand-logo {
    width: 38px;
    height: 34px;
  }

  .header-cta {
    min-height: 40px;
    max-width: 190px;
    padding: 0 12px;
    font-size: 0.82rem;
    text-align: center;
  }

  .hero {
    min-height: min(820px, 96svh);
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(15, 24, 19, 0.9) 0%, rgba(15, 24, 19, 0.76) 66%, rgba(15, 24, 19, 0.36) 100%),
      linear-gradient(0deg, rgba(15, 24, 19, 0.74) 0%, rgba(15, 24, 19, 0) 50%);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding-top: 104px;
    padding-bottom: 24px;
  }

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

  .hero-copy {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .button {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    text-align: center;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
  }

  .hero-stats span {
    min-width: 0;
    padding: 10px;
    font-size: 0.72rem;
  }

  .hero-stats strong {
    font-size: 1rem;
  }

  .intro-band,
  .section,
  .safeguarding-note,
  .testimonial-section,
  .final-cta {
    padding: 44px 16px;
  }

  .intro-band h2,
  .section-heading h2,
  .media-section-heading h2,
  .approach-heading h2,
  .safeguarding-note h2,
  .final-cta h2 {
    font-size: clamp(1.82rem, 9vw, 2.35rem);
    line-height: 1.08;
  }

  .section-heading,
  .media-section-heading,
  .approach-heading {
    margin-bottom: 26px;
  }

  .proof-strip div {
    padding: 20px 16px;
  }

  .proof-strip strong {
    font-size: 1.9rem;
  }

  .proof-strip,
  .process-grid,
  .resources-grid,
  .service-grid,
  .student-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 22px;
  }

  .service-grid {
    gap: 12px;
  }

  .service-topline {
    margin-bottom: 18px;
  }

  .service-featured {
    margin-top: 12px;
    padding: 24px;
  }

  .service-featured > .service-link {
    position: static;
  }

  .service-stack {
    grid-template-columns: 1fr;
  }

  .resource-card figure {
    height: 240px;
  }

  .process-grid article,
  .partnership-grid article {
    min-height: auto;
    padding: 22px;
  }

  .partnership-grid p {
    min-height: auto;
  }

  .package-list {
    margin-top: 18px;
  }

  .process-topline,
  .package-topline {
    margin-bottom: 22px;
  }

  .card-icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    font-size: 1.12rem;
  }

  .approach-heading {
    text-align: left;
  }

  .approach-heading p {
    margin-left: 0;
  }

  .approach-grid,
  .foundation-list {
    grid-template-columns: 1fr;
  }

  .approach-grid {
    grid-template-areas:
      "core"
      "students"
      "educators"
      "families"
      "systems";
  }

  .pillar-card {
    min-height: auto;
    padding: 22px;
  }

  .pillar-link {
    padding-top: 18px;
    font-size: 0.74rem;
  }

  .approach-core {
    min-height: 220px;
    padding: 24px;
  }

  .approach-logo {
    width: 74px;
    height: 66px;
    padding: 8px;
  }

  .approach-outcome {
    padding: 22px;
  }

  .offering-groups,
  .partnership-grid {
    grid-template-columns: 1fr;
  }

  .offering-panel {
    padding: 20px;
    gap: 20px;
  }

  .offering-group {
    min-height: auto;
  }

  .section-photo {
    aspect-ratio: 4 / 3;
  }

  .testimonial-section blockquote {
    padding: 24px;
  }

  .testimonial-section p {
    font-size: 1.3rem;
    line-height: 1.26;
  }

  .footer-logo {
    width: 56px;
    height: 50px;
  }

  .final-actions {
    justify-content: stretch;
  }

  .final-cta .button {
    width: 100%;
    white-space: normal;
  }

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

@media (max-width: 380px) {
  .site-header {
    padding: 10px 12px;
  }

  .brand-logo {
    width: 34px;
    height: 30px;
  }

  .header-cta {
    max-width: 160px;
    font-size: 0.76rem;
  }

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

  .hero-stats span {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px;
    align-items: baseline;
  }

  .hero-stats strong {
    display: inline;
  }
}
