@import "tailwindcss";

:root {
  --ink: #102a31;
  --muted: #5f7175;
  --cream: #f7f4ed;
  --paper: #fffdf8;
  --teal: #0d706d;
  --teal-dark: #07504f;
  --teal-deep: #073e3e;
  --mint: #b8e0d5;
  --coral: #f26f5b;
  --line: #dce5e1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body), Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display), Arial, sans-serif;
  letter-spacing: -0.045em;
}

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

.section {
  padding: 112px 0;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow.light {
  color: #9bd6ca;
}

.utility-bar {
  color: #d5ece7;
  background: var(--teal-deep);
  font-size: 0.875rem;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.utility-inner a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
}

.utility-inner svg {
  width: 14px;
}

.site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(7, 62, 62, 0.08);
  background: rgba(255, 253, 248, 0.97);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.brand-logo {
  width: auto;
  height: 42px;
  object-fit: contain;
  background: #041e20;
  padding: 6px 8px;
  border-radius: 4px;
}

.brand-light .brand-logo {
  background: rgba(255, 255, 255, 0.08);
}

.brand strong,
.brand small {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.brand strong {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand small {
  margin-top: 5px;
  color: var(--teal);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.brand-light strong {
  color: white;
}

.brand-light small {
  color: #9bd6ca;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 1rem;
  font-weight: 700;
}

.main-nav > a:not(.nav-cta) {
  transition: color 0.2s ease;
}

.main-nav > a:not(.nav-cta):hover {
  color: var(--teal);
}

.nav-cta {
  padding: 11px 18px;
  color: white;
  border-radius: 3px;
  background: var(--teal);
}

.menu-toggle,
.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: white;
  background: #063b3c;
}

.hero-photo {
  object-fit: cover;
  object-position: center 35%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(4, 30, 32, 0.88) 0%, rgba(4, 30, 32, 0.62) 48%, rgba(4, 30, 32, 0.34) 100%),
    linear-gradient(to top, rgba(4, 30, 32, 0.55), transparent 42%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 660px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 80px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-top: 24px;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(3.7rem, 6.2vw, 6.2rem);
  font-weight: 700;
  line-height: 0.98;
}

.hero h1 em {
  color: #b8e0d5;
  font-style: normal;
}

.hero-copy > p {
  max-width: 630px;
  margin-bottom: 36px;
  color: #d7ebe7;
  font-size: 1.35rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 23px;
  border-radius: 3px;
  font-size: 1rem;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  box-shadow: 0 12px 24px rgba(7, 46, 46, 0.16);
  transform: translateY(-2px);
}

.button svg,
.text-link svg,
.card-link svg {
  width: 18px;
}

.button-coral {
  color: #102a31;
  background: var(--coral);
}

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

.button-dark {
  color: white;
  background: var(--teal-deep);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-size: 1rem;
  font-weight: 800;
}

.light-link {
  color: white;
}

.hero-side {
  position: relative;
  z-index: 2;
  min-height: 320px;
}

.vision-note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  background: rgba(4, 41, 42, 0.72);
  box-shadow: 0 18px 40px rgba(2, 32, 34, 0.25);
  backdrop-filter: blur(8px);
}

.vision-note svg {
  width: 28px;
  color: #9bd6ca;
}

.vision-note span {
  color: #b8d8d4;
  font-size: 0.875rem;
  line-height: 1.35;
}

.vision-note strong {
  display: block;
  color: white;
  font-size: 1rem;
}

.note-one {
  right: 0;
  bottom: 40px;
}

.note-two {
  top: 80px;
  left: 20px;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 7px rgba(242, 111, 91, 0.18);
}

.trust-strip {
  position: relative;
  z-index: 3;
  min-height: 100px;
  display: flex;
  align-items: center;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #bfdbd6;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.trust-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--coral);
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 120px;
}

.intro-with-photo {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 70px;
}

.intro-photo {
  overflow: hidden;
  min-height: 520px;
  border-radius: 4px;
}

.intro-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.intro h2,
.section-heading h2,
.model h2,
.story-copy h2,
.principles h2,
.contact-intro h2,
.simple-cta h2 {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4.2vw, 4.15rem);
  line-height: 1.08;
}

.intro-copy {
  padding-top: 30px;
}

.lead {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.6;
}

.intro-copy > p:not(.lead),
.story-copy > p:not(.lead),
.contact-intro > p {
  color: var(--muted);
}

.intro-copy .text-link {
  margin-top: 20px;
}

.programmes {
  background: var(--cream);
}

.section-heading {
  margin-bottom: 55px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.section-heading > p {
  max-width: 420px;
  margin: 0 0 6px;
  color: var(--muted);
}

.programme-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #d7dfda;
  border-left: 1px solid #d7dfda;
}

.programme-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-right: 1px solid #d7dfda;
  border-bottom: 1px solid #d7dfda;
  background: rgba(255, 255, 255, 0.44);
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.programme-card:hover {
  position: relative;
  z-index: 2;
  background: white;
  box-shadow: 0 24px 50px rgba(21, 59, 57, 0.1);
  transform: translateY(-5px);
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 50px;
}

.programme-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dcefeb;
  color: var(--teal);
}

.programme-icon svg {
  width: 24px;
}

.coral .programme-icon {
  color: #b34838;
  background: #fbe2dc;
}

.blue .programme-icon {
  color: #356b93;
  background: #dfebf4;
}

.green .programme-icon {
  color: #4f7a50;
  background: #e4efdf;
}

.red .programme-icon {
  color: #ad4850;
  background: #f6dfe0;
}

.gold .programme-icon {
  color: #9a7220;
  background: #f5eacc;
}

.purple .programme-icon {
  color: #755c8c;
  background: #eae0ef;
}

.navy .programme-icon {
  color: #344e71;
  background: #e0e7ef;
}

.programme-number {
  color: #91a09d;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 800;
}

.programme-card h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
  line-height: 1.25;
}

.programme-card p {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.card-link {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 0.9375rem;
  font-weight: 800;
}

.impact {
  color: white;
  background: #092f33;
}

.impact-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 100px;
  margin-bottom: 70px;
}

.impact-heading h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.7rem, 4.7vw, 4.6rem);
  line-height: 1.05;
}

.impact-heading > p {
  margin-bottom: 8px;
  color: #b7d0cc;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.impact-stat {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 35px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.impact-stat strong {
  color: #b8e0d5;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.impact-stat span {
  margin-top: 15px;
  color: #c4d7d4;
  font-size: 0.95rem;
  font-weight: 700;
}

.impact-callout {
  margin-top: 44px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 26px 30px;
  border-radius: 5px;
  background: var(--teal);
}

.cost-mark {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
}

.impact-callout span {
  font-weight: 800;
}

.impact-callout p {
  max-width: 620px;
  margin: 5px 0 0;
  color: #d7ebe7;
  font-size: 1rem;
}

.model {
  background: var(--paper);
}

.model-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.model-photo {
  overflow: hidden;
  min-height: 460px;
  border-radius: 4px;
}

.model-photo img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.gallery {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  min-height: 220px;
  background: #d8e4e0;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.photo-grid.wide {
  grid-template-columns: repeat(3, 1fr);
}

.photo-tile {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 0;
  border: 0;
  background: #d8e4e0;
  cursor: zoom-in;
  text-align: left;
}

.photo-tile img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.photo-grid.wide .photo-tile,
.photo-grid.wide .photo-tile img {
  min-height: 280px;
  height: 280px;
}

.photo-tile:hover img {
  transform: scale(1.04);
}

.photo-tile-hint {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 14px 16px;
  color: white;
  background: linear-gradient(to top, rgba(4, 30, 32, 0.82), transparent);
  font-size: 0.8125rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.photo-tile:hover .photo-tile-hint,
.photo-tile:focus-visible .photo-tile-hint {
  opacity: 1;
}

.gallery-links {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.gallery-toolbar {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.back-arrow {
  transform: rotate(180deg);
}

.media-hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.media-hub-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 260px auto;
  border: 1px solid var(--line);
  background: white;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.media-hub-card:hover {
  box-shadow: 0 20px 40px rgba(15, 50, 48, 0.1);
  transform: translateY(-4px);
}

.media-hub-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.media-hub-card > div {
  padding: 28px;
}

.media-hub-card span {
  color: var(--teal);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-hub-card h2 {
  margin: 12px 0 10px;
  font-size: 2rem;
}

.media-hub-card p {
  color: var(--muted);
}

.media-hub-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
}

.media-hub-card strong svg {
  width: 18px;
}

.empty-panel {
  max-width: 720px;
  padding: 48px;
  border: 1px dashed #b9cbc6;
  background: var(--cream);
}

.empty-panel h2 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.empty-panel p {
  color: var(--muted);
}

.empty-panel .button {
  margin-top: 18px;
}

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

.video-card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  background: white;
}

.page-programme-grid {
  margin-top: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 20, 22, 0.92);
}

.lightbox-panel {
  width: min(1100px, 100%);
}

.lightbox-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
  color: #d7ebe7;
}

.lightbox-toolbar p {
  margin: 0;
  max-width: 70%;
}

.lightbox-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lightbox-actions button {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  color: white;
  background: transparent;
  cursor: pointer;
}

.lightbox-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(72vh, 760px);
  background: #04191b;
}

.lightbox-image {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(72vh, 760px);
  object-fit: contain;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: white;
  background: rgba(4, 30, 32, 0.7);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.lightbox-nav.prev {
  left: 16px;
}

.lightbox-nav.next {
  right: 16px;
}

.partners {
  background: var(--cream);
  padding-top: 90px;
  padding-bottom: 90px;
}

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

.partner-logo {
  min-height: 110px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  background: white;
}

.partner-logo img {
  width: auto;
  max-width: 150px;
  height: 54px;
  object-fit: contain;
}

.model-grid > div:last-child > p {
  max-width: 600px;
  margin: 26px 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.check-list {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 13px;
  padding-left: 30px;
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 42%, white 42% 54%, transparent 54%)
      4px 5px/8px 7px no-repeat,
    var(--teal);
  content: "";
}

.partner-cta {
  padding: 90px 0;
  color: white;
  background: var(--teal);
}

.partner-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 100px;
}

.partner-inner h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.5rem, 4.5vw, 4.3rem);
  line-height: 1.05;
}

.partner-inner > div:last-child p {
  margin-bottom: 24px;
  color: #c9e0dc;
}

.site-footer {
  padding-top: 80px;
  color: #b8cfcb;
  background: #062d30;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 0.7fr 1fr 1.4fr;
  gap: 65px;
  padding-bottom: 60px;
}

.footer-intro > p {
  max-width: 390px;
  margin: 26px 0;
  font-size: 1rem;
}

.registration {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.registration span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  font-size: 0.875rem;
}

.footer-grid h3 {
  margin-bottom: 20px;
  color: white;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-intro) > a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-contact a,
.footer-contact p {
  display: flex !important;
  align-items: flex-start;
  gap: 9px;
}

.footer-contact svg {
  width: 16px;
  min-width: 16px;
  margin-top: 4px;
  color: #87c8bb;
}

.footer-contact p {
  font-size: 0.9375rem;
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #7fa19c;
  font-size: 0.8125rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  color: white;
  background: var(--teal-deep);
}

.page-hero-photo {
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}

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

.page-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(4, 30, 32, 0.86) 0%,
    rgba(4, 30, 32, 0.55) 100%
  );
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.story-with-photos {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: start;
}

.story-photos {
  display: grid;
  gap: 16px;
}

.story-photos img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.inline-quote {
  margin: 28px 0 0;
  padding: 22px 24px;
  border-left: 4px solid var(--coral);
  background: var(--cream);
  color: var(--teal-deep);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 100px;
}

.page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 5.8vw, 5.7rem);
  line-height: 1.02;
}

.page-hero-inner > p {
  margin-bottom: 10px;
  color: #c9dfdb;
  font-size: 1.15rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 120px;
}

.story-quote {
  min-height: 360px;
  padding: 42px;
  color: white;
  background: var(--teal);
}

.story-quote > span {
  color: #b8e0d5;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-quote blockquote {
  margin: 85px 0 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.story-copy {
  padding-top: 15px;
}

.story-copy .lead {
  margin-top: 30px;
}

.principles {
  background: var(--cream);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d3ddd8;
}

.principle-grid article {
  min-height: 290px;
  padding: 35px;
  border-right: 1px solid #d3ddd8;
}

.principle-grid article:first-child {
  border-left: 1px solid #d3ddd8;
}

.principle-grid article > span {
  color: var(--coral);
  font-size: 0.8125rem;
  font-weight: 800;
}

.principle-grid h3 {
  margin: 65px 0 13px;
  font-size: 1.7rem;
}

.principle-grid p {
  color: var(--muted);
  font-size: 1.15rem;
}

.credentials {
  padding: 90px 0;
  color: white;
  background: var(--teal-deep);
}

.credentials-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.credentials-grid > div > span {
  color: #9bd6ca;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.credentials h2 {
  margin: 10px 0 0;
  font-size: 3.4rem;
}

.credentials dl {
  margin: 0;
}

.credentials dl > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.credentials dt {
  color: #a9c4c0;
}

.credentials dd {
  margin: 0;
  font-weight: 700;
}

.simple-cta-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

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

.programme-hero.coral {
  background: #974b41;
}

.programme-hero.blue {
  background: #345d7c;
}

.programme-hero.green {
  background: #456949;
}

.programme-hero.red {
  background: #89434a;
}

.programme-hero.gold {
  background: #796022;
}

.programme-hero.purple {
  background: #644f73;
}

.programme-hero.navy {
  background: #314962;
}

.programme-hero-grid {
  min-height: 440px;
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  align-items: center;
}

.programme-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3.4rem, 6.4vw, 6rem);
  line-height: 1;
}

.programme-hero p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.35rem;
}

.programme-hero-icon {
  position: relative;
  display: grid;
  place-items: center;
}

.programme-hero-icon::before,
.programme-hero-icon::after {
  position: absolute;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.programme-hero-icon::after {
  width: 440px;
  height: 440px;
}

.programme-hero-icon svg {
  position: relative;
  z-index: 2;
  width: 120px;
  opacity: 0.85;
}

.detail-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 110px;
}

.detail-grid aside > span {
  color: var(--teal);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-grid aside h2 {
  margin-top: 18px;
  font-size: 2.5rem;
  line-height: 1.15;
}

.detail-copy > p:not(.lead) {
  color: var(--muted);
  font-size: 1.125rem;
}

.detail-cta {
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px;
  border-left: 4px solid var(--coral);
  background: var(--cream);
}

.detail-cta strong {
  max-width: 440px;
  line-height: 1.4;
}

.detail-cta .button {
  min-width: max-content;
}

.related {
  background: var(--cream);
}

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

.related-grid > a {
  min-height: 230px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  padding: 28px;
  border: 1px solid var(--line);
  background: white;
}

.related-grid > a > span {
  color: #91a09d;
  font-size: 0.8125rem;
  font-weight: 800;
}

.related-grid > a > svg:not(.related-arrow) {
  width: 27px;
  color: var(--teal);
}

.related-grid h3 {
  grid-column: 1 / -1;
  align-self: end;
  margin: 0;
  font-size: 1.5rem;
}

.related-arrow {
  width: 20px;
  grid-column: 2;
  color: var(--teal);
}

.contact-hero {
  background:
    radial-gradient(circle at 80% 50%, rgba(242, 111, 91, 0.18), transparent 25%),
    var(--teal-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}

.contact-intro h2 {
  margin: 8px 0 25px;
  font-size: clamp(2.3rem, 3.7vw, 3.6rem);
}

.contact-cards {
  border-top: 1px solid var(--line);
}

.contact-card {
  min-height: 120px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 22px 10px;
  border-bottom: 1px solid var(--line);
}

.contact-icon,
.contact-initials {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: #e2f0ed;
}

.contact-icon svg {
  width: 24px;
}

.contact-initials {
  color: #a54235;
  background: #f9e3df;
  font-size: 0.875rem;
  font-weight: 800;
}

.contact-card small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: 1.125rem;
}

.contact-arrow {
  width: 22px;
  color: var(--teal);
}

@media (max-width: 980px) {
  .main-nav {
    gap: 18px;
  }

  .hero-grid,
  .model-grid {
    gap: 35px;
  }

  .gallery-grid,
  .photo-grid,
  .partner-logos {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .media-hub-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1.5fr 0.7fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

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

  .section {
    padding: 78px 0;
  }

  .utility-inner > span {
    display: none;
  }

  .utility-inner {
    justify-content: flex-end;
  }

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

  .menu-button {
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .menu-button span {
    width: 100%;
    height: 2px;
    background: var(--ink);
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 20px;
    border-top: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 35px rgba(15, 50, 48, 0.12);
  }

  .main-nav a {
    padding: 12px;
  }

  .main-nav .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .menu-toggle:checked ~ .main-nav {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .intro-grid,
  .impact-heading,
  .model-grid,
  .partner-inner,
  .page-hero-inner,
  .story-grid,
  .credentials-grid,
  .programme-hero-grid,
  .detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 730px;
    padding: 70px 0 30px;
    gap: 10px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .hero-copy > p {
    font-size: 1.1rem;
  }

  .hero-side {
    min-height: 180px;
  }

  .note-one {
    right: 0;
    bottom: 5px;
  }

  .note-two {
    top: 0;
    left: 0;
  }

  .trust-strip {
    min-height: 78px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .intro-grid,
  .model-grid,
  .story-grid,
  .detail-grid,
  .contact-grid {
    gap: 45px;
  }

  .intro-photo,
  .intro-photo img,
  .model-photo,
  .model-photo img {
    min-height: 320px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .section-heading,
  .simple-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .programme-card {
    min-height: 340px;
  }

  .impact-heading {
    gap: 28px;
    margin-bottom: 45px;
  }

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

  .impact-stat {
    min-height: 140px;
    padding: 22px;
  }

  .impact-callout {
    grid-template-columns: auto 1fr;
  }

  .impact-callout .button {
    grid-column: 1 / -1;
  }

  .partner-inner {
    gap: 35px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-intro,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .page-hero {
    padding: 80px 0;
  }

  .page-hero-inner {
    gap: 35px;
  }

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

  .principle-grid article {
    min-height: auto;
    border-left: 1px solid #d3ddd8;
    border-bottom: 1px solid #d3ddd8;
  }

  .principle-grid h3 {
    margin-top: 35px;
  }

  .credentials-grid {
    gap: 35px;
  }

  .programme-hero-grid {
    min-height: 510px;
    padding: 65px 0;
  }

  .programme-hero-icon svg {
    width: 85px;
  }

  .programme-hero-icon::before {
    width: 210px;
    height: 210px;
  }

  .programme-hero-icon::after {
    width: 300px;
    height: 300px;
  }

  .detail-cta {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 520px) {
  .brand strong {
    font-size: 1.05rem;
  }

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

  .programme-grid,
  .impact-grid,
  .gallery-grid,
  .photo-grid,
  .photo-grid.wide,
  .partner-logos,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .impact-callout {
    grid-template-columns: 1fr;
  }

  .impact-callout .button {
    grid-column: auto;
  }

  .credentials dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .gallery-links,
  .gallery-toolbar,
  .lightbox-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox-nav.prev {
    left: 8px;
  }

  .lightbox-nav.next {
    right: 8px;
  }
}

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

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