:root {
  --navy: #07165e;
  --navy-2: #0c237a;
  --purple: #7e3dbb;
  --pink: #ef2e5a;
  --orange: #ff8a00;
  --yellow: #ffc928;
  --green: #77b82a;
  --blue: #13a8e2;
  --cream: #fff8e8;
  --blush: #fff0f5;
  --mist: #eef9ff;
  --ink: #1f2937;
  --muted: #667085;
  --line: #e7edf7;
  --white: #ffffff;
  --shadow-sm: 0 12px 30px rgba(7, 22, 94, 0.08);
  --shadow: 0 26px 70px rgba(7, 22, 94, 0.15);
  --max: 1180px;
  --font-body: "Nunito Sans", "DejaVu Sans", "Avenir Next", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Baloo 2", "Nunito Sans", "DejaVu Sans", ui-sans-serif, system-ui, sans-serif;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 201, 40, 0.08) 0 1px, transparent 1px 96px),
    linear-gradient(180deg, rgba(19, 168, 226, 0.06) 0 1px, transparent 1px 96px),
    linear-gradient(180deg, #fffdf7 0%, #ffffff 42%, #fff7fb 100%);
}

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

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

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

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

.skip-link:focus {
  z-index: 99;
  width: auto;
  height: auto;
  top: 1rem;
  left: 1rem;
  clip: auto;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--navy);
}

.top-strip {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
  padding: 0.64rem 1rem;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 850;
  background: var(--navy);
}

.top-strip span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 0.45rem;
  border-radius: 999px;
  background: var(--yellow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 0.72rem max(1rem, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(231, 237, 247, 0.9);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 122px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.26rem;
}

.site-nav a {
  padding: 0.76rem 0.9rem;
  border-radius: 8px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 850;
}

.site-nav a:hover {
  background: var(--cream);
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 14px 34px rgba(239, 46, 90, 0.22);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--navy);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: min(var(--max), calc(100% - 2rem));
  min-height: calc(100vh - 124px);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 9%;
  right: 44%;
  width: 95px;
  height: 95px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  clip-path: polygon(50% 0, 61% 34%, 98% 35%, 68% 56%, 79% 92%, 50% 70%, 21% 92%, 32% 56%, 2% 35%, 39% 34%);
  opacity: 0.7;
}

.hero::after {
  content: "";
  position: absolute;
  right: -5%;
  bottom: 3%;
  width: 52%;
  height: 70%;
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.7) 0 42px, transparent 43px),
    linear-gradient(135deg, rgba(255, 201, 40, 0.28), rgba(19, 168, 226, 0.18));
  transform: rotate(-2deg);
  z-index: -1;
}

.eyebrow {
  margin: 0 0 0.82rem;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.76);
}

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

h1 {
  max-width: 11.2ch;
  margin-bottom: 1.15rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 7.2vw, 7rem);
  line-height: 0.9;
}

h2 {
  max-width: 13ch;
  margin-bottom: 1rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  line-height: 1;
}

h3 {
  margin-bottom: 0.55rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.18;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.lead {
  max-width: 58ch;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.86rem 1.12rem;
  border: 0;
  border-radius: 8px;
  font-weight: 950;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 14px 34px rgba(239, 46, 90, 0.24);
}

.button.secondary {
  color: var(--navy);
  background: var(--yellow);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-metrics div,
.promise-stack article,
.brand-system,
.journey-map article,
.day-item,
.gallery-card,
.partner-option,
.quote-card,
.faq-card,
.contact-panels article,
.enquiry-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.hero-metrics div {
  padding: 1rem;
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: var(--pink);
  font-size: 1.1rem;
}

.hero-metrics span {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.hero-art {
  position: relative;
}

.hero-browser {
  overflow: hidden;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 0.44rem;
  padding-bottom: 1rem;
}

.browser-top i {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--pink);
}

.browser-top i:nth-child(2) {
  background: var(--orange);
}

.browser-top i:nth-child(3) {
  background: var(--green);
}

.browser-top span {
  margin-left: auto;
  padding: 0.36rem 0.65rem;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  background: var(--mist);
}

.hero-logo-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 380px;
  padding: 2rem;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 248, 232, 0.95), rgba(238, 249, 255, 0.95)),
    repeating-linear-gradient(45deg, rgba(7, 22, 94, 0.05) 0 1px, transparent 1px 18px);
}

.hero-logo-card::before,
.hero-logo-card::after {
  content: "";
  position: absolute;
  border-radius: 8px;
}

.hero-logo-card::before {
  top: 28px;
  left: 26px;
  width: 82px;
  height: 82px;
  background: var(--yellow);
  clip-path: polygon(50% 0, 62% 34%, 98% 35%, 68% 56%, 79% 92%, 50% 70%, 21% 92%, 32% 56%, 2% 35%, 39% 34%);
}

.hero-logo-card::after {
  right: 28px;
  bottom: 28px;
  width: 96px;
  height: 44px;
  background: var(--blue);
}

.hero-logo-card img {
  position: relative;
  z-index: 1;
  width: min(100%, 390px);
  filter: drop-shadow(0 18px 20px rgba(7, 22, 94, 0.14));
}

.hero-photo-card {
  min-height: 450px;
  padding: 0;
  overflow: hidden;
  background: var(--navy);
}

.hero-photo-card::before {
  z-index: 1;
  top: 24px;
  left: 24px;
  opacity: 0.92;
}

.hero-photo-card::after {
  z-index: 1;
  right: 24px;
  bottom: 24px;
  opacity: 0.92;
}

.hero-photo-card .hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.hero-logo-badge {
  position: absolute;
  z-index: 2;
  left: 1.2rem;
  bottom: 1.2rem;
  width: min(245px, 44%);
  padding: 0.8rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.hero-logo-badge img {
  width: 100%;
}

.hero-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.hero-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 5px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.hero-schedule {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.hero-schedule div {
  padding: 0.92rem;
  border-radius: 8px;
  background: var(--navy);
}

.hero-schedule div:nth-child(2) {
  background: var(--purple);
}

.hero-schedule div:nth-child(3) {
  background: var(--green);
}

.hero-schedule span,
.hero-schedule strong {
  display: block;
  color: var(--white);
}

.hero-schedule span {
  margin-bottom: 0.28rem;
  opacity: 0.72;
  font-size: 0.76rem;
  font-weight: 850;
}

.hero-schedule strong {
  font-size: 0.9rem;
  line-height: 1.35;
}

.floating-card {
  position: absolute;
  width: min(245px, 46%);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.floating-card b,
.floating-card span {
  display: block;
}

.floating-card b {
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.floating-card span {
  color: #344054;
  font-size: 0.88rem;
  line-height: 1.45;
}

.care-card {
  left: -1.2rem;
  bottom: 5.6rem;
  background: var(--yellow);
}

.partner-card {
  top: 7rem;
  right: -1.4rem;
  background: var(--blush);
}

.logo-marquee {
  display: flex;
  gap: 0.75rem;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 clamp(3rem, 6vw, 5rem);
  overflow-x: auto;
}

.logo-marquee span {
  flex: 0 0 auto;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  color: var(--navy);
  font-weight: 950;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.logo-marquee span:nth-child(2n) {
  color: var(--white);
  background: var(--purple);
}

.logo-marquee span:nth-child(3n) {
  color: var(--navy);
  background: var(--yellow);
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.section-kicker {
  max-width: 790px;
  margin-bottom: 2rem;
}

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

.section-kicker.centered h2,
.section-kicker.centered p {
  margin-inline: auto;
}

.section-kicker p {
  max-width: 70ch;
}

.about-layout,
.learning-day,
.testimonials,
.contact-section {
  display: grid;
  grid-template-columns: minmax(310px, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.photo-pair {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.photo-pair img,
.journey-map img,
.partner-option img,
.quote-card img,
.contact-photo {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.photo-pair img {
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
}

.promise-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.promise-stack article,
.brand-system,
.quote-card,
.faq-card {
  padding: 1.2rem;
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.85rem;
  padding: 0.38rem 0.62rem;
  border-radius: 8px;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mini-badge.pink {
  background: var(--pink);
}

.mini-badge.blue {
  background: var(--blue);
}

.mini-badge.green {
  background: var(--green);
}

.mini-badge.orange {
  color: var(--navy);
  background: var(--yellow);
}

.brand-system {
  position: sticky;
  top: 108px;
  background: var(--navy);
}

.brand-system h3,
.brand-system p {
  color: var(--white);
}

.colour-row {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.colour-row span {
  flex: 1;
  height: 48px;
  border-radius: 8px;
  background: var(--swatch);
}

.identity-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.mini-poster,
.mini-social {
  min-height: 165px;
  padding: 1rem;
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.7) 0 36px, transparent 37px),
    linear-gradient(135deg, var(--yellow), var(--orange));
}

.mini-social {
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.7) 0 36px, transparent 37px),
    linear-gradient(135deg, var(--pink), var(--purple));
}

.mini-poster span,
.mini-poster strong,
.mini-social span,
.mini-social strong {
  display: block;
  color: var(--navy);
}

.mini-social span,
.mini-social strong {
  color: var(--white);
}

.mini-poster span,
.mini-social span {
  margin-bottom: 0.5rem;
  font-size: 0.86rem;
  font-weight: 850;
}

.mini-poster strong,
.mini-social strong {
  font-size: 1.45rem;
  line-height: 1.05;
}

.parent-experience {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - var(--max)) / 2));
  background: linear-gradient(180deg, #ffffff, var(--mist));
}

.journey-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.journey-map article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 1.25rem;
}

.journey-map img {
  aspect-ratio: 4 / 3;
  margin: -1.25rem -1.25rem 1rem;
  width: calc(100% + 2.5rem);
  max-width: none;
  border-radius: 8px 8px 0 0;
}

.journey-map article::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 88px;
  height: 88px;
  border-radius: 8px;
  background: rgba(255, 201, 40, 0.38);
  transform: rotate(12deg);
}

.journey-map span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 8px;
  color: var(--white);
  font-weight: 950;
  background: var(--purple);
}

.journey-map article:nth-child(2) span {
  background: var(--pink);
}

.journey-map article:nth-child(3) span {
  background: var(--orange);
}

.journey-map article:nth-child(4) span {
  background: var(--green);
}

.learning-day {
  align-items: center;
}

.check-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 0.65rem;
  color: var(--navy);
  font-weight: 850;
}

.check-list li::before {
  content: "";
  flex: 0 0 18px;
  height: 18px;
  margin-top: 0.2rem;
  border-radius: 5px;
  background: var(--green);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.45);
}

.day-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.day-item {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 1.25rem;
  color: var(--navy);
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.8) 0 40px, transparent 41px),
    linear-gradient(135deg, #fff3d1, #ffe4ed);
}

.day-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.day-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 22, 94, 0.08), rgba(7, 22, 94, 0.78));
}

.day-item::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 70px;
  height: 70px;
  background: rgba(7, 22, 94, 0.12);
  clip-path: polygon(50% 0, 61% 34%, 98% 35%, 68% 56%, 79% 92%, 50% 70%, 21% 92%, 32% 56%, 2% 35%, 39% 34%);
}

.day-item span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.4rem 0.62rem;
  border-radius: 8px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 950;
  background: var(--navy);
}

.day-item h3 {
  position: relative;
  z-index: 2;
  max-width: 13ch;
  color: var(--white);
  font-size: 1.55rem;
}

.learn {
  background: linear-gradient(135deg, #eaf7ff, #dff6d3);
}

.play {
  background: linear-gradient(135deg, #f4ecff, #ffe3b5);
}

.care {
  background: linear-gradient(135deg, #ffe5ed, #eaf7ff);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(210px, auto);
  gap: 1rem;
}

.gallery-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  min-height: 210px;
  padding: 1.15rem;
  background: linear-gradient(135deg, var(--cream), var(--blush));
}

.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  width: auto;
  height: auto;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(7, 22, 94, 0.02), rgba(7, 22, 94, 0.76));
  transform: none;
}

.gallery-card::after {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 1.1rem;
  z-index: 2;
  width: 86px;
  height: 18px;
  border-radius: 8px;
  background: var(--pink);
  box-shadow: 104px 18px 0 var(--orange), 210px 0 0 var(--green);
}

.gallery-card span,
.gallery-card h3 {
  position: relative;
  z-index: 3;
}

.gallery-card span {
  width: fit-content;
  margin-bottom: 0.6rem;
  padding: 0.42rem 0.62rem;
  border-radius: 8px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 950;
  background: var(--navy);
}

.gallery-card h3 {
  max-width: 13ch;
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2.4rem);
}

.classroom-wall {
  background: linear-gradient(135deg, #eaf7ff, #dff7d2);
}

.play-wall {
  background: linear-gradient(135deg, #fff3d1, #ffd3a1);
}

.donor-wall {
  background: linear-gradient(135deg, #f4ecff, #ffdce6);
}

.notice-wall {
  background: linear-gradient(135deg, #eef9ff, #fff3d1);
}

.impact-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(260px, 0.8fr) minmax(300px, 1fr);
  gap: 2rem;
  align-items: center;
  padding: clamp(3.5rem, 7vw, 6rem) max(1rem, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(126, 61, 187, 0.45), rgba(7, 22, 94, 0.95)),
    var(--navy);
}

.impact-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.impact-band h2,
.impact-band p {
  color: var(--white);
}

.impact-numbers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.impact-numbers article {
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.impact-numbers strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1;
}

.impact-numbers span {
  display: block;
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.4;
}

.partner-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.partner-option {
  position: relative;
  min-height: 280px;
  padding: 1.25rem;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.partner-option img {
  aspect-ratio: 4 / 3;
  margin-bottom: 1rem;
}

.partner-option::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: var(--cream);
}

.partner-option:hover,
.partner-option.active {
  border-color: rgba(239, 46, 90, 0.55);
  box-shadow: 0 24px 60px rgba(239, 46, 90, 0.16);
  transform: translateY(-4px);
}

.partner-option strong {
  display: block;
  margin-top: 1.1rem;
  color: var(--navy);
}

.support-output {
  margin-top: 1rem;
  padding: 1.1rem;
  border-radius: 8px;
  color: var(--navy);
  background: var(--cream);
}

.support-output span,
.support-output strong {
  display: block;
}

.support-output span {
  margin-bottom: 0.28rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.testimonials {
  align-items: stretch;
}

blockquote {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 950;
  line-height: 1.08;
}

.quote-card img {
  aspect-ratio: 16 / 9;
  margin-bottom: 1.1rem;
}

.contact-photo {
  aspect-ratio: 4 / 3;
  margin-bottom: 1.4rem;
  box-shadow: var(--shadow-sm);
}

.quote-card span {
  display: block;
  margin-top: 1rem;
  color: var(--pink);
  font-weight: 950;
}

.faq-card details {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.faq-card details:first-of-type {
  border-top: 0;
}

.faq-card summary {
  color: var(--navy);
  font-weight: 950;
  cursor: pointer;
}

.faq-card details p {
  margin: 0.7rem 0 0;
}

.contact-section {
  align-items: center;
}

.contact-panels {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.contact-panels article {
  padding: 1rem;
}

.contact-panels strong,
.contact-panels span {
  display: block;
}

.contact-panels strong {
  color: var(--navy);
}

.contact-panels span {
  margin-top: 0.28rem;
  color: var(--muted);
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.enquiry-form label {
  display: grid;
  gap: 0.44rem;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 950;
}

.enquiry-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.92rem 1rem;
  color: var(--ink);
  background: #fbfcff;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--green);
  font-weight: 950;
}

.final-cta {
  display: grid;
  justify-items: center;
  padding: clamp(3.5rem, 7vw, 6rem) 1rem;
  text-align: center;
  background: var(--navy);
}

.final-cta img {
  width: min(320px, 72vw);
  margin-bottom: 1.5rem;
  padding: 1.4rem;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.final-cta h2 {
  max-width: 900px;
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 850;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--cream);
}

.site-footer p {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem;
}

.site-footer nav a {
  color: var(--navy);
  font-weight: 850;
}

@media (max-width: 1040px) {
  .hero,
  .about-layout,
  .learning-day,
  .impact-band,
  .testimonials,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .brand-system {
    position: relative;
    top: auto;
  }

  .journey-map,
  .partner-cards,
  .impact-numbers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .top-strip {
    display: none;
  }

  .site-header {
    min-height: 74px;
    padding-inline: 1rem;
  }

  .brand img {
    width: 98px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.55rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-logo-card {
    min-height: 300px;
    padding: 1rem;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 0.75rem;
  }

  .hero-metrics,
  .hero-schedule,
  .journey-map,
  .day-board,
  .gallery-grid,
  .partner-cards,
  .impact-numbers,
  .identity-preview,
  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .gallery-card.large {
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer {
    display: grid;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

/* --------------------------------------------------------------------------
   Clean layout pass: prevents text/image collisions and keeps the site usable
   across desktop, tablet and mobile widths.
   -------------------------------------------------------------------------- */
html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.hero,
.about-layout,
.learning-day,
.testimonials,
.contact-section,
.impact-band {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

h1,
h2,
h3,
p,
span,
strong,
blockquote,
summary,
label,
a {
  overflow-wrap: break-word;
  word-break: normal;
}

h1 {
  max-width: 12.5ch;
  font-size: clamp(3rem, 5.6vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
}

h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.6vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.section-kicker,
.section-kicker.centered {
  max-width: 850px;
}

.section-kicker.centered h2,
.section-kicker.centered p {
  max-width: 780px;
}

.lead {
  max-width: 62ch;
}

.hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero::before {
  z-index: -1;
  opacity: 0.45;
}

.hero-art {
  display: grid;
  gap: 0.8rem;
  isolation: isolate;
}

.hero-browser {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.browser-top span {
  max-width: 65%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-photo-card {
  min-height: clamp(340px, 36vw, 470px);
}

.hero-logo-badge {
  width: min(225px, 44%);
}

.hero-schedule,
.hero-thumbs,
.hero-metrics,
.impact-numbers,
.partner-cards,
.journey-map,
.day-board,
.gallery-grid,
.identity-preview,
.enquiry-form {
  min-width: 0;
}

.floating-card {
  position: static;
  width: 100%;
  max-width: none;
  box-shadow: var(--shadow-sm);
}

.hero-art .floating-card {
  margin-top: 0;
}

.care-card,
.partner-card {
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
}

.hero-art .care-card,
.hero-art .partner-card {
  display: inline-block;
}

.hero-art > .floating-card {
  align-self: stretch;
}

.promise-stack article,
.journey-map article,
.day-item,
.gallery-card,
.partner-option,
.quote-card,
.faq-card,
.contact-panels article,
.enquiry-form {
  overflow: hidden;
}

.journey-map article > *,
.partner-option > *,
.day-item > *,
.gallery-card > * {
  position: relative;
  z-index: 2;
}

.journey-map article::after,
.partner-option::after,
.day-item::after,
.gallery-card::after {
  pointer-events: none;
}

.journey-map article::after {
  z-index: 1;
  opacity: 0.7;
}

.day-item {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.day-item::after {
  z-index: 1;
  opacity: 0.45;
}

.day-item h3 {
  max-width: 17ch;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1.08;
}

.gallery-grid {
  grid-auto-rows: minmax(245px, auto);
}

.gallery-card {
  min-height: 245px;
}

.gallery-card.large {
  min-height: 506px;
}

.gallery-card::after {
  width: 70px;
  height: 14px;
  box-shadow: 82px 16px 0 var(--orange), 164px 0 0 var(--green);
  opacity: 0.9;
}

.gallery-card h3 {
  max-width: 17ch;
  font-size: clamp(1.25rem, 2.25vw, 2.05rem);
  line-height: 1.08;
}

.impact-band {
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.72fr) minmax(280px, 0.86fr);
}

.impact-band h2 {
  max-width: 690px;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
}

.impact-numbers article {
  min-width: 0;
}

.partner-option {
  display: flex;
  flex-direction: column;
  min-height: auto;
}

.partner-option::after {
  z-index: 0;
  opacity: 0.65;
}

.partner-option strong {
  margin-top: auto;
  padding-top: 1rem;
}

.partner-option img {
  flex: 0 0 auto;
  max-height: 220px;
}

blockquote {
  font-size: clamp(1.45rem, 2.4vw, 2.45rem);
  line-height: 1.14;
}

.faq-card h2,
.contact-copy h2 {
  max-width: 650px;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
}

.enquiry-form {
  padding: clamp(1rem, 2vw, 1.5rem);
}

.final-cta h2 {
  max-width: 760px;
}

.site-footer {
  align-items: center;
}

@media (max-width: 1120px) {
  .hero,
  .about-layout,
  .learning-day,
  .impact-band,
  .testimonials,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .impact-band {
    text-align: left;
  }

  .impact-photo {
    max-width: 560px;
  }

  .brand-system {
    position: relative;
    top: auto;
  }
}

@media (max-width: 900px) {
  .top-strip {
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;
  }

  .site-header {
    min-height: 74px;
    padding-inline: 1rem;
  }

  .brand img {
    width: 104px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.55rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .journey-map,
  .partner-cards,
  .impact-numbers,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section,
  .hero,
  .logo-marquee {
    width: min(100% - 1.25rem, var(--max));
  }

  h1 {
    max-width: 10.5ch;
    font-size: clamp(3rem, 14vw, 3.85rem);
    line-height: 0.96;
  }

  h2,
  .faq-card h2,
  .contact-copy h2,
  .impact-band h2 {
    font-size: clamp(2rem, 9.5vw, 2.55rem);
    line-height: 1.04;
  }

  .lead {
    font-size: 1.02rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .browser-top span {
    max-width: 56%;
    font-size: 0.72rem;
  }

  .hero-photo-card {
    min-height: 290px;
  }

  .hero-logo-badge {
    width: min(185px, 56%);
    left: 0.8rem;
    bottom: 0.8rem;
    padding: 0.55rem;
  }

  .hero-logo-card::before {
    width: 60px;
    height: 60px;
  }

  .hero-logo-card::after {
    width: 72px;
    height: 34px;
  }

  .hero-metrics,
  .hero-schedule,
  .journey-map,
  .day-board,
  .gallery-grid,
  .partner-cards,
  .impact-numbers,
  .identity-preview,
  .enquiry-form,
  .photo-pair {
    grid-template-columns: 1fr;
  }

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

  .gallery-card.large {
    min-height: 260px;
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-card::after {
    width: 54px;
    box-shadow: 66px 14px 0 var(--orange), 132px 0 0 var(--green);
  }

  .partner-option img {
    max-height: none;
  }

  .site-footer {
    display: grid;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .site-header {
    min-height: 68px;
  }

  .brand img {
    width: 88px;
  }

  .hero {
    padding-top: 1.4rem;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 3.35rem);
  }

  h2,
  .faq-card h2,
  .contact-copy h2,
  .impact-band h2 {
    font-size: clamp(1.85rem, 10.5vw, 2.25rem);
  }

  .section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero-browser,
  .brand-system,
  .enquiry-form,
  .quote-card,
  .faq-card {
    border-radius: 14px;
  }

  .hero-thumbs {
    gap: 0.45rem;
  }

  .hero-thumbs img {
    border-width: 3px;
  }

  .day-item,
  .gallery-card {
    min-height: 235px;
  }

  .impact-band {
    padding-inline: 0.75rem;
  }
}
