@font-face {
  font-family: LexendLocal;
  src: local("Lexend");
  font-display: swap;
}
:root {
  --ink: #0a0a0a;
  --paper: #fff;
  --blue: #73c8f2;
  --blue-strong: #006da8;
  --green: #0b713b;
  --green-soft: #dff2de;
  --yellow: #ffc526;
  --coral: #f26a5b;
  --coral-soft: #fff0ed;
  --blue-soft: #e9f7fd;
  --muted: #5d6368;
  --line: #d9dde0;
  --max: 86rem;
  --pad: clamp(1.25rem, 4vw, 5rem);
  --radius: 1.25rem;
  --shadow: 0 1rem 3rem rgba(8, 20, 28, 0.12);
  font-family:
    LexendLocal, "Atkinson Hyperlegible", "Avenir Next", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}
* {
  box-sizing: border-box;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
}
button,
input,
select,
textarea {
  font: inherit;
  font-size: 1rem;
}
button,
a {
  touch-action: manipulation;
}
:focus-visible {
  outline: 0.22rem solid var(--yellow);
  outline-offset: 0.2rem;
}
.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: 0.75rem;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  height: 5.5rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  position: relative;
  z-index: 20;
}
.header-inner {
  max-width: var(--max);
  height: 100%;
  padding: 0 var(--pad);
  margin: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  text-decoration: none;
}
.brand img {
  width: 3.7rem;
  height: 3.7rem;
  object-fit: contain;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  margin-left: auto;
}
.site-nav ul {
  display: flex;
  gap: clamp(0.8rem, 2vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  text-decoration: none;
  font-weight: 600;
}
.site-nav li a {
  padding: 0.75rem 0.1rem;
  border-bottom: 0.15rem solid transparent;
}
.site-nav li a:hover,
.site-nav li a[aria-current="page"] {
  border-color: var(--blue-strong);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.nav-account[data-authenticated="true"] {
  border-color: var(--blue-strong);
  color: var(--blue-strong);
  background: var(--blue-soft);
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--ink);
  font-weight: 750;
}
.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border: 2px solid transparent;
  border-radius: 0.55rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-dark {
  background: var(--ink);
  color: #fff;
}
.button-blue {
  background: var(--blue-strong);
  color: #fff;
}
.button-outline {
  border-color: var(--ink);
  background: #fff;
}
.button-light {
  background: #fff;
  color: var(--ink);
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.text-link {
  font-weight: 750;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
  padding-bottom: 0.2rem;
}
.section {
  max-width: var(--max);
  margin: auto;
  padding: clamp(4.5rem, 8vw, 8rem) var(--pad);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(3rem, 6.4vw, 6.8rem);
  max-width: 12ch;
}
h2 {
  font-size: clamp(2.25rem, 4.5vw, 4.7rem);
}
h3 {
  font-size: 1.2rem;
}
p {
  max-width: 65ch;
}
.lead {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.55;
}
.hero {
  min-height: calc(82vh - 5.5rem);
  display: grid;
  grid-template-columns: minmax(22rem, 1.05fr) minmax(28rem, 0.95fr);
  position: relative;
  overflow: hidden;
}
.hero-copy {
  align-self: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 4vw, 5.5rem);
  z-index: 2;
}
.hero-copy h1 {
  font-size: clamp(3.4rem, 5.8vw, 6rem);
  margin-bottom: 1.7rem;
}
.hero-copy p {
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  max-width: 31rem;
  margin-bottom: 2.2rem;
}
.hero-media {
  min-height: 37rem;
  overflow: hidden;
  border-radius: 10rem 0 0 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.track {
  position: absolute;
  left: -3rem;
  bottom: -1rem;
  width: 48%;
  height: 8rem;
  pointer-events: none;
}
.track path {
  fill: none;
  stroke: var(--green);
  stroke-width: 4;
  stroke-dasharray: 12 10;
}
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 10rem);
  align-items: start;
}
.intro h2 {
  max-width: 11ch;
}
.programme-band {
  max-width: none;
  background: var(--blue);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}
.programme-band > div:first-child {
  max-width: 42rem;
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
  padding-left: var(--pad);
}
.equipment-shapes {
  min-height: 28rem;
  position: relative;
}
.equipment-shapes i {
  position: absolute;
  border-radius: 50%;
  border: 0.9rem solid var(--green);
}
.equipment-shapes i:nth-child(1) {
  width: 12rem;
  height: 12rem;
  left: 15%;
  top: 25%;
}
.equipment-shapes i:nth-child(2) {
  width: 8rem;
  height: 8rem;
  background: var(--yellow);
  border: 0;
  left: 54%;
  top: 8%;
}
.equipment-shapes i:nth-child(3) {
  width: 7rem;
  height: 16rem;
  background: #1784d1;
  border: 0;
  border-radius: 1rem;
  left: 49%;
  top: 42%;
}
.equipment-shapes i:nth-child(4) {
  width: 5rem;
  height: 5rem;
  background: var(--green);
  border: 0;
  left: 80%;
  top: 55%;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 3rem;
  margin-bottom: 4rem;
}
.section-heading h2 {
  margin: 0;
}
.section-heading p {
  font-size: 1.15rem;
  max-width: 30rem;
}
.path-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  position: relative;
}
.path-list:before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 3%;
  right: 3%;
  border-top: 0.22rem solid var(--blue);
  z-index: -1;
}
.path-list li:nth-child(even) {
  margin-top: 7rem;
}
.path-list span,
.session-steps b {
  width: 3.7rem;
  height: 3.7rem;
  border: 2px solid var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--green);
  font-size: 1.4rem;
  margin-bottom: 2rem;
}
.path-list p {
  font-size: 0.94rem;
  color: var(--muted);
}
.path-list li:nth-child(3n + 1) span {
  border-color: var(--blue-strong);
  color: var(--blue-strong);
  background: var(--blue-soft);
}
.path-list li:nth-child(3n + 2) span {
  border-color: #b86f00;
  color: #704300;
  background: #fff5d6;
}
.path-list li:nth-child(3n) span {
  border-color: #b83227;
  color: #8c241c;
  background: var(--coral-soft);
}
.session {
  max-width: none;
  background: #f7f8f8;
}
.session > h2,
.session > .session-steps {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.session em {
  color: var(--green);
  font-style: normal;
}
.session-steps {
  list-style: none;
  padding: 3rem 0 0;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 2px solid var(--line);
}
.session-steps p {
  color: var(--muted);
}
.session-steps li {
  padding: 1.5rem;
  border-radius: 0.8rem;
}
.session-steps li:nth-child(1) {
  background: var(--blue-soft);
}
.session-steps li:nth-child(2) {
  background: var(--green-soft);
}
.session-steps li:nth-child(3) {
  background: #fff5d6;
}
.session-steps li:nth-child(4) {
  background: var(--coral-soft);
}
.support-band {
  max-width: none;
  background: var(--green);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 8vw;
}
.support-band > div:first-child {
  max-width: 43rem;
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
  padding-left: var(--pad);
}
.support-band aside {
  border: 2px dashed rgba(255, 255, 255, 0.75);
  padding: 2rem;
  margin-right: var(--pad);
  max-width: 34rem;
}
.approach-list {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.approach-list li {
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}
.approach-list span {
  display: block;
  color: var(--blue-strong);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}
.approach-list.large {
  grid-template-columns: repeat(3, 1fr);
}
.mission {
  background: var(--ink);
  color: #fff;
  padding: clamp(4rem, 7vw, 7rem)
    max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}
.mission div + div {
  border-left: 1px solid #555;
  padding-left: 6rem;
}
.mission small {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue);
  font-weight: 800;
}
.mission p {
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1.25;
  font-weight: 700;
  margin: 1rem 0 0;
}
.photo-story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.photo-story picture {
  border-radius: var(--radius);
  overflow: hidden;
}
.photo-story img {
  aspect-ratio: 3/2;
  object-fit: cover;
}
.photo-story picture {
  box-shadow: -0.85rem 0.85rem 0 var(--yellow);
}
.approved-moments {
  padding-top: 1rem;
}
.approved-moments .eyebrow {
  color: var(--green);
}
.approved-moments-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}
.approved-moments-grid figure {
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: #fff;
}
.approved-moments-grid figure:nth-child(3n + 1) {
  box-shadow: 0.65rem 0.65rem 0 var(--yellow);
}
.approved-moments-grid figure:nth-child(3n + 2) {
  box-shadow: 0.65rem 0.65rem 0 var(--blue);
}
.approved-moments-grid figure:nth-child(3n) {
  box-shadow: 0.65rem 0.65rem 0 var(--coral);
}
.approved-moments-grid picture,
.approved-moments-grid img {
  width: 100%;
}
.approved-moments-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.approved-moments-grid figcaption {
  min-height: 4.5rem;
  padding: 1rem 1.1rem;
  font-weight: 650;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 6vw;
}
.accordion details {
  border-top: 1px solid var(--line);
}
.accordion details:last-child {
  border-bottom: 1px solid var(--line);
}
.accordion summary {
  cursor: pointer;
  padding: 1.2rem 0;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion details p {
  color: var(--muted);
  padding-right: 2rem;
}
.cta {
  background: var(--blue);
  padding: 3rem max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.cta h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
  margin-bottom: 0.5rem;
}
.cta p {
  margin: 0;
}
.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 4rem max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)))
    1.5rem;
}
.site-footer .brand img {
  background: #fff;
  border-radius: 50%;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
}
.footer-grid h2 {
  font-size: 1rem;
  letter-spacing: 0;
}
.footer-group summary {
  list-style: none;
  font-size: 1rem;
  font-weight: 750;
  cursor: default;
}
.footer-group summary::-webkit-details-marker {
  display: none;
}
.footer-grid a {
  display: block;
  margin: 0.55rem 0;
  color: #e8e8e8;
}
.footer-grid p {
  color: #c8c8c8;
}
.brand-line {
  font-weight: 700;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  margin-top: 1rem;
}
.social-links a {
  color: #fff;
  font-size: 0.88rem;
}
.social-links a span:not(.visually-hidden) {
  color: #cdd2d4;
}
.footer-legal {
  display: flex;
  gap: 2rem;
  border-top: 1px solid #444;
  margin-top: 3rem;
  padding-top: 1.5rem;
  font-size: 0.85rem;
}
.footer-legal span {
  margin-right: auto;
}
.page-hero {
  min-height: 34rem;
  padding: clamp(5rem, 9vw, 9rem)
    max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  position: relative;
  overflow: hidden;
  background: var(--blue);
}
.page-hero::before,
.page-hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.page-hero::before {
  width: clamp(5rem, 10vw, 9rem);
  aspect-ratio: 1;
  top: 2rem;
  right: 8%;
  background: var(--yellow);
}
.page-hero::after {
  width: clamp(2.75rem, 6vw, 5rem);
  aspect-ratio: 1;
  right: 3%;
  bottom: 20%;
  background: var(--coral);
}
.page-hero.green::before {
  background: var(--yellow);
}
.page-hero.green::after {
  background: var(--blue);
}
.page-hero h1,
.page-hero > p {
  position: relative;
  z-index: 1;
}
.page-hero.green {
  background: var(--green);
  color: #fff;
}
.page-hero h1 {
  margin-bottom: 2rem;
}
.page-hero > p {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  max-width: 38rem;
}
.page-hero .track {
  left: auto;
  right: -4rem;
  bottom: 1rem;
  stroke: #fff;
}
.prose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}
.prose h2,
.prose-grid h2 {
  font-size: clamp(2rem, 3vw, 3.25rem);
  margin-top: 2.5rem;
}
.narrow {
  max-width: 54rem;
}
.approval-note {
  border-left: 0.5rem solid var(--yellow);
  background: #fff9dc;
  padding: 1.3rem 1.5rem;
  margin: 2rem 0;
}
.approval-note p {
  margin: 0;
}
.tick-list {
  list-style: none;
  padding: 0;
}
.tick-list li {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.tick-list li:before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 0.75rem;
}
.listing {
  display: grid;
  gap: 2rem;
}
.listing article,
.empty-state {
  border-top: 3px solid var(--ink);
  padding: 2rem 0;
}
.empty-state {
  max-width: 55rem;
}
.form-section {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 7vw;
  align-items: start;
}
.enquiry-form {
  background: #f4f6f6;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius);
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.field-grid label {
  font-weight: 700;
}
.field-grid input,
.field-grid select,
.field-grid textarea {
  display: block;
  width: 100%;
  margin-top: 0.45rem;
  border: 2px solid #9ca2a7;
  border-radius: 0.35rem;
  background: #fff;
  padding: 0.8rem;
  min-height: 3.5rem;
  line-height: 1.4;
}
.field-grid textarea {
  min-height: 10rem;
  resize: vertical;
}
.field-grid input:focus,
.field-grid select:focus,
.field-grid textarea:focus {
  border-color: var(--ink);
}
.field-grid .full {
  grid-column: 1/-1;
}
.field-grid small {
  display: block;
  font-weight: 400;
  color: var(--muted);
  margin-top: 0.35rem;
}
.checkbox {
  display: flex;
  gap: 0.75rem;
}
.checkbox input {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}
.checkbox span {
  font-weight: 400;
}
.enquiry-form button {
  margin-top: 1.5rem;
}
.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 1rem 0 0;
}
.form-status:not(:empty) {
  padding: 1rem;
  margin-bottom: 1rem;
  border: 2px solid var(--green);
  background: #e9f8ec;
}
.form-status.error {
  border-color: #ad1f22;
  background: #fff0f0;
}
.booking-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 7vw;
  align-items: start;
}
.booking-intro h2,
.booking-section h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}
.booking-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.booking-steps li {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  margin-bottom: 0.7rem;
  padding: 1.25rem;
  border: 0;
  border-left: 0.4rem solid var(--green);
  border-radius: 0.6rem;
  background: var(--green-soft);
}
.booking-steps li:nth-child(2) {
  border-left-color: var(--blue-strong);
  background: var(--blue-soft);
}
.booking-steps li:nth-child(3) {
  border-left-color: #b86f00;
  background: #fff5d6;
}
.booking-steps span {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}
.booking-steps h3,
.booking-steps p {
  margin: 0;
}
.booking-steps p {
  margin-top: 0.35rem;
}
.booking-section {
  padding-top: 0;
}
.booking-app {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(20rem, 0.65fr);
  min-height: 42rem;
  margin-top: 2rem;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0.8rem 0.8rem 0 var(--yellow);
}
.booking-calendar-panel,
.booking-times-panel {
  min-width: 0;
  padding: clamp(1.25rem, 3vw, 2.5rem);
}
.booking-calendar-header {
  display: grid;
  grid-template-columns: 3rem 1fr 3rem;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}
.booking-calendar-header h3,
.booking-times-heading h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  text-align: center;
}
.calendar-nav {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}
.calendar-nav:hover {
  color: #fff;
  background: var(--ink);
}
.calendar-nav svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.4rem;
}
.calendar-weekdays {
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}
.calendar-day,
.calendar-spacer {
  min-width: 0;
  min-height: 4.6rem;
}
.calendar-day {
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  color: #767d80;
  background: #f4f6f6;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
}
.calendar-day.available {
  border: 2px solid var(--green);
  color: var(--ink);
  background: #e8f7ec;
  cursor: pointer;
}
.calendar-day.available:hover,
.calendar-day[aria-pressed="true"] {
  color: #fff;
  background: var(--green);
}
.calendar-day i {
  position: absolute;
  bottom: 0.55rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: currentColor;
}
.calendar-status {
  min-height: 1.7rem;
  margin: 1.4rem 0 0;
  color: var(--muted);
}
.calendar-key {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.82rem;
}
.calendar-key span {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}
.calendar-key i {
  width: 0.75rem;
  height: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 0.18rem;
  background: #f4f6f6;
}
.calendar-key i.available {
  border-color: var(--green);
  background: #e8f7ec;
}
.booking-times-panel {
  border-left: 2px solid var(--ink);
  background: #e9f7fd;
}
.booking-times-heading h3 {
  text-align: left;
}
.booking-times-heading p {
  margin: 0.35rem 0 1.5rem;
  color: var(--muted);
}
.booking-times {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}
.booking-times > p {
  grid-column: 1 / -1;
}
.time-option {
  min-height: 3.2rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.time-option:hover,
.time-option:focus-visible {
  color: #fff;
  background: var(--ink);
}
.booking-confirm-form {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #9bc8dc;
}
.booking-confirm-form > label {
  display: block;
  margin-top: 1rem;
  font-size: 0.92rem;
  font-weight: 800;
}
.booking-confirm-form input:not([type="checkbox"]) {
  display: block;
  width: 100%;
  min-height: 3rem;
  margin-top: 0.35rem;
  padding: 0.65rem 0.75rem;
  border: 2px solid #79878d;
  border-radius: 0.4rem;
  background: #fff;
  font: inherit;
}
.booking-confirm-form textarea {
  display: block;
  width: 100%;
  min-height: 5.5rem;
  margin-top: 0.35rem;
  padding: 0.65rem 0.75rem;
  resize: vertical;
  border: 2px solid #79878d;
  border-radius: 0.4rem;
  background: #fff;
  font: inherit;
}
.booking-confirm-form label small {
  display: block;
  margin-top: 0.4rem;
  color: #3f4a4f;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.45;
}
.booking-confirm-form .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-weight: 400;
}
.booking-confirm-form .checkbox input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.18rem;
  flex: 0 0 auto;
}
.booking-confirm-form .button {
  width: 100%;
  margin-top: 1.25rem;
}
.selected-slot {
  position: relative;
  padding: 1rem 5rem 1rem 1rem;
  border-left: 5px solid var(--green);
  background: #fff;
}
.selected-slot span,
.selected-slot strong {
  display: block;
}
.selected-slot span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.selected-slot button {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: 0;
  color: #005f91;
  background: transparent;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}
.booking-form-status:not(:empty) {
  margin: 1rem 0 0;
  padding: 0.8rem;
  border-left: 4px solid var(--green);
  background: #fff;
}
.booking-form-status.error {
  border-color: #ad1f22;
  color: #7b1719;
}
.booking-success {
  padding: 1.5rem;
  border: 2px solid var(--green);
  background: #fff;
}
.booking-success h3 {
  margin-top: 0;
  font-size: 1.8rem;
}
.booking-fallback {
  margin-top: 1rem;
}
.honeypot {
  position: absolute !important;
  left: -10000px !important;
}
.legal {
  max-width: 55rem;
}
.legal-summary {
  font-size: 1.2rem;
  line-height: 1.65;
}
.legal-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 2rem;
  background: var(--line);
  border: 1px solid var(--line);
}
.legal-meta div {
  min-width: 0;
  padding: 1rem;
  background: #fff;
}
.legal-meta dt {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.legal-meta dd {
  margin: 0.35rem 0 0;
  overflow-wrap: anywhere;
}
.legal-toc {
  margin: 2rem 0 3rem;
  padding: 1.5rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: #f4f6f6;
}
.legal-toc ol {
  columns: 2;
  column-gap: 2rem;
  margin: 0.75rem 0 0;
  padding-left: 1.4rem;
}
.legal-toc li {
  break-inside: avoid;
}
.legal h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin-top: 3rem;
  scroll-margin-top: 7rem;
}
.legal h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  margin-top: 2rem;
}
.legal li {
  margin: 0.75rem 0;
}
@media (max-width: 980px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: auto;
    padding: 0.8rem;
    border: 2px solid var(--ink);
    border-radius: 0.4rem;
  }
  .nav-toggle i,
  .nav-toggle i:before,
  .nav-toggle i:after {
    display: block;
    width: 1.2rem;
    height: 2px;
    background: var(--ink);
    content: "";
  }
  .nav-toggle i:before {
    transform: translateY(-0.35rem);
  }
  .nav-toggle i:after {
    transform: translateY(0.25rem);
  }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 5.5rem;
    background: #fff;
    padding: 1.5rem var(--pad) 2rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    align-items: stretch;
  }
  .site-nav.open {
    display: block;
  }
  .site-nav ul {
    display: grid;
    gap: 0.25rem;
  }
  .site-nav li a {
    display: block;
  }
  .nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
  }
  .nav-actions .nav-cta,
  .nav-actions .nav-account {
    width: 100%;
    margin-top: 0;
  }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding-bottom: 3rem;
  }
  .hero-media {
    min-height: 30rem;
    border-radius: 5rem 0 0 0;
    margin-left: var(--pad);
  }
  .intro,
  .programme-band,
  .support-band,
  .photo-story,
  .prose-grid,
  .form-section,
  .booking-intro {
    grid-template-columns: 1fr;
  }
  .booking-app {
    grid-template-columns: minmax(0, 1fr);
  }
  .booking-times-panel {
    border-top: 2px solid var(--ink);
    border-left: 0;
  }
  .programme-band > div:first-child,
  .support-band > div:first-child {
    margin: 0;
    padding: 0;
  }
  .support-band aside {
    margin: 0;
  }
  .path-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .path-list li:nth-child(even) {
    margin-top: 4rem;
  }
  .session-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .approach-list,
  .approach-list.large {
    grid-template-columns: repeat(2, 1fr);
  }
  .approved-moments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .faq-section {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  :root {
    --pad: 1.25rem;
    --radius: 0.9rem;
    line-height: 1.6;
  }
  html {
    scroll-padding-top: 5rem;
  }
  body {
    font-size: 1.0625rem;
  }
  body.nav-open {
    overflow: hidden;
  }
  .site-header {
    height: 5rem;
    position: sticky;
    top: 0;
    box-shadow: 0 1px 0 var(--line);
  }
  .header-inner {
    padding-inline: var(--pad);
    gap: 1rem;
  }
  .brand img {
    width: 3.45rem;
    height: 3.45rem;
  }
  .nav-toggle {
    min-height: 3.25rem;
    padding: 0.7rem 0.9rem;
    gap: 0.65rem;
    background: #fff;
    border-radius: 0.55rem;
    font-size: 1.0625rem;
  }
  .nav-toggle i,
  .nav-toggle i:before,
  .nav-toggle i:after {
    transition:
      transform 0.18s ease,
      opacity 0.18s ease;
  }
  .nav-toggle[aria-expanded="true"] i {
    background: transparent;
  }
  .nav-toggle[aria-expanded="true"] i:before {
    transform: translateY(0) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] i:after {
    transform: translateY(-2px) rotate(-45deg);
  }
  .site-nav {
    top: 5rem;
    position: fixed;
    max-height: calc(100dvh - 5rem);
    overflow-y: auto;
    padding: 1rem var(--pad) 1.5rem;
    box-shadow: 0 1rem 2.5rem rgba(8, 20, 28, 0.16);
  }
  .site-nav ul {
    gap: 0;
  }
  .site-nav li a {
    min-height: 3.6rem;
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.125rem;
  }
  .site-nav li a[aria-current="page"] {
    color: var(--blue-strong);
    border-bottom-color: var(--blue-strong);
  }
  .nav-actions {
    margin-top: 1rem;
  }
  .nav-actions .nav-cta,
  .nav-actions .nav-account {
    width: 100%;
    margin-top: 0;
  }
  h2 {
    font-size: clamp(2.25rem, 10.8vw, 3.05rem);
    line-height: 1.02;
  }
  h3 {
    font-size: 1.25rem;
  }
  .section {
    padding-block: 4rem;
  }
  .hero-copy {
    padding: 2.35rem var(--pad) 1.5rem;
  }
  .hero-copy h1 {
    max-width: none;
    margin-bottom: 1.25rem;
    font-size: clamp(2.85rem, 12.4vw, 3.4rem);
    line-height: 0.98;
    letter-spacing: -0.048em;
  }
  .hero-copy p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
  }
  .hero-media {
    min-height: 15rem;
    margin: 0;
    border-radius: 2.5rem 0 0 0;
  }
  .hero-media img {
    object-position: 58% center;
  }
  .hero .track {
    bottom: 13.5rem;
    left: -2rem;
    width: 58%;
    height: 4rem;
  }
  .button-row {
    align-items: stretch;
    gap: 0.65rem;
  }
  .button-row .button {
    width: 100%;
  }
  .button {
    min-height: 3.65rem;
    padding-inline: 1rem;
    font-size: 1.05rem;
  }
  .intro {
    gap: 1.25rem;
  }
  .intro h2 {
    max-width: 12ch;
  }
  .programme-band {
    gap: 0;
    padding-bottom: 1.25rem;
  }
  .programme-band h2 {
    max-width: 10ch;
  }
  .equipment-shapes {
    min-height: 13.5rem;
    transform: scale(0.82);
    transform-origin: center;
  }
  .section-heading {
    display: block;
    margin-bottom: 2rem;
  }
  .section-heading h2 {
    margin-bottom: 1rem;
  }
  .section-heading p {
    font-size: 1.0625rem;
    line-height: 1.6;
  }
  .approved-moments-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .approved-moments-grid figure {
    margin-right: 0.55rem;
  }
  .path-list {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
  }
  .path-list:before {
    display: none;
  }
  .path-list li,
  .path-list li:nth-child(even) {
    margin: 0;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 3rem 1fr;
    column-gap: 0.9rem;
    align-items: start;
  }
  .path-list span,
  .session-steps b {
    width: 2.75rem;
    height: 2.75rem;
    margin: 0;
    font-size: 1.0625rem;
  }
  .path-list h3,
  .path-list p {
    grid-column: 2;
  }
  .path-list h3 {
    margin-bottom: 0.35rem;
  }
  .path-list p {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.55;
  }
  .session-steps {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
    border-top: 1px solid var(--line);
  }
  .session-steps li {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 0 0.9rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--line);
  }
  .session-steps b {
    grid-row: 1 / span 2;
  }
  .session-steps h3,
  .session-steps p {
    grid-column: 2;
    margin-bottom: 0;
  }
  .session-steps p {
    font-size: 1.0625rem;
    line-height: 1.55;
  }
  .support-band {
    gap: 1.75rem;
  }
  .support-band aside {
    padding: 1.35rem;
  }
  .support-band .button {
    width: 100%;
  }
  .approach-list,
  .approach-list.large {
    grid-template-columns: 1fr;
    border-left: 0;
    margin-bottom: 1.5rem;
  }
  .approach-list li {
    min-height: 3.5rem;
    padding: 1rem 0;
    display: grid;
    grid-template-columns: 2.2rem 1fr;
    align-items: center;
    border-right: 0;
    font-size: 1.0625rem;
  }
  .approach-list span {
    margin: 0;
  }
  .mission {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-block: 3.5rem;
  }
  .mission div + div {
    padding: 2rem 0 0;
    border-left: 0;
    border-top: 1px solid #555;
  }
  .mission p {
    font-size: 1.55rem;
  }
  .photo-story {
    gap: 2rem;
  }
  .photo-story picture {
    border-radius: 0.9rem;
  }
  .faq-section {
    gap: 1.5rem;
  }
  .accordion summary {
    min-height: 3.5rem;
    align-items: center;
    padding: 0.9rem 0;
    font-size: 1.0625rem;
  }
  .cta {
    display: block;
    padding-block: 2.5rem;
  }
  .cta .button-row {
    margin-top: 1.5rem;
  }
  .cta h2 {
    font-size: 2.45rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .site-footer {
    padding: 2.5rem var(--pad) 1.4rem;
  }
  .site-footer .brand img {
    width: 3.4rem;
    height: 3.4rem;
    filter: none;
    background: #fff;
    border-radius: 50%;
  }
  .footer-grid > div:first-child {
    padding-bottom: 1.5rem;
  }
  .footer-grid > .footer-group {
    border-top: 1px solid #444;
  }
  .footer-group summary {
    min-height: 3.7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1.2rem;
    cursor: pointer;
  }
  .footer-group summary:after {
    content: "+";
    font-size: 1.5rem;
    line-height: 1;
  }
  .footer-group[open] summary:after {
    content: "−";
  }
  .footer-links {
    padding-bottom: 1rem;
  }
  .footer-grid a {
    min-height: 3rem;
    display: flex;
    align-items: center;
    margin: 0;
  }
  .footer-grid p {
    margin-bottom: 0.45rem;
  }
  .footer-legal {
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    margin-top: 1rem;
    font-size: 1.0625rem;
  }
  .footer-legal span {
    width: 100%;
  }
  .field-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .form-section {
    gap: 2rem;
  }
  .form-section > div h2 {
    margin-bottom: 1rem;
  }
  .enquiry-form {
    padding: 1.5rem 0 0;
    background: transparent;
    border-radius: 0;
    border-top: 2px solid var(--ink);
  }
  .field-grid label {
    font-size: 1.0625rem;
  }
  .field-grid input,
  .field-grid select,
  .field-grid textarea {
    margin-top: 0.5rem;
    min-height: 3.75rem;
    padding: 0.9rem 1rem;
    border-color: #70777c;
    border-radius: 0.45rem;
    font-size: 1.0625rem;
  }
  .field-grid textarea {
    min-height: 9.5rem;
  }
  .field-grid small {
    font-size: 1rem;
    line-height: 1.55;
  }
  .checkbox {
    gap: 0.85rem;
    align-items: flex-start;
  }
  .checkbox input {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0.1rem;
  }
  .enquiry-form button {
    width: 100%;
    margin-top: 1.25rem;
  }
  .form-note {
    font-size: 1.0625rem;
    line-height: 1.55;
  }
  .booking-app {
    margin-top: 1.5rem;
    margin-right: 0.45rem;
    box-shadow: 0.45rem 0.45rem 0 var(--yellow);
  }
  .booking-calendar-panel,
  .booking-times-panel {
    padding: 1.1rem;
  }
  .booking-calendar-header {
    grid-template-columns: 2.8rem 1fr 2.8rem;
    gap: 0.4rem;
  }
  .booking-calendar-header h3 {
    font-size: 1.45rem;
  }
  .calendar-nav {
    width: 2.8rem;
    height: 2.8rem;
  }
  .calendar-weekdays {
    font-size: 0.68rem;
    letter-spacing: 0;
  }
  .calendar-weekdays,
  .calendar-grid {
    gap: 0.25rem;
  }
  .calendar-day,
  .calendar-spacer {
    min-height: 3.4rem;
  }
  .calendar-day {
    border-radius: 0.4rem;
    font-size: 1rem;
  }
  .calendar-day i {
    bottom: 0.35rem;
  }
  .booking-times {
    grid-template-columns: 1fr 1fr;
  }
  .time-option {
    min-height: 3.5rem;
    font-size: 1.0625rem;
  }
  .booking-confirm-form > label,
  .booking-confirm-form input:not([type="checkbox"]),
  .booking-confirm-form textarea {
    font-size: 1.0625rem;
  }
  .booking-confirm-form label small {
    font-size: 0.95rem;
  }
  .page-hero {
    min-height: 0;
    padding-block: 3.5rem;
  }
  .page-hero h1 {
    max-width: 9.5ch;
    margin-bottom: 1.15rem;
    font-size: clamp(2.85rem, 12.4vw, 3.4rem);
    line-height: 0.98;
    letter-spacing: -0.048em;
  }
  .page-hero > p {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 30ch;
  }
  .page-hero .track {
    width: 44%;
    height: 3.5rem;
    right: -2rem;
    bottom: -0.5rem;
  }
  .page-hero::before {
    width: 4.25rem;
    top: 1.25rem;
    right: -1.25rem;
  }
  .page-hero::after {
    width: 2.5rem;
    right: 1rem;
    bottom: 0.75rem;
  }
  .legal h2,
  .prose h2,
  .prose-grid h2 {
    font-size: 2.15rem;
    margin-top: 2.25rem;
  }
  .legal-meta {
    grid-template-columns: 1fr;
  }
  .legal-toc ol {
    columns: 1;
  }
}

@media (max-width: 360px) {
  :root {
    --pad: 1.125rem;
  }
  .hero-copy h1,
  .page-hero h1 {
    font-size: 2.8rem;
  }
  .nav-toggle span {
    font-size: 1rem;
  }
  .mission p {
    font-size: 1.55rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* A warmer, playful palette with quiet, readable surfaces. */
:root {
  --ink: #142e39;
  --paper: #fffdf8;
  --blue: #a8dcf1;
  --green: #12634f;
  --coral: #f3a58c;
  --lilac: #e9e0f5;
  --muted: #465962;
}
.hero {
  background: #fff0cd;
}
.hero-copy h1 span {
  color: #a43e34;
}
.hero-copy .eyebrow {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.activity-photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
}
.activity-photo picture {
  display: block;
  height: 100%;
}
.activity-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.activity-photo figcaption {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  width: fit-content;
  max-width: calc(100% - 1.5rem);
  padding: 0.3rem 0.65rem;
  border-radius: 0.4rem;
  background: #fffdf8;
  color: #142e39;
  font-size: 0.7rem;
  line-height: 1.5;
}
.hero > .hero-media {
  border-radius: 7rem 0 0 0;
}
.hero-media img {
  height: 100%;
  object-position: 56% center;
}
.hero .track {
  opacity: 0.35;
}
.programme-band {
  background: #c7e8dc;
  gap: 3rem;
}
.programme-photo {
  border: 0.65rem solid #fffdf8;
  transform: rotate(2deg);
}
.session {
  background: #fff0cd;
}
.session-steps {
  border-color: #dbbd77;
}
.path-list li:nth-child(3n + 1) span,
.session-steps li:nth-child(1) b {
  background: #ffd7c7;
}
.path-list li:nth-child(3n + 2) span,
.session-steps li:nth-child(2) b {
  background: #dcecfb;
}
.path-list li:nth-child(3n) span,
.session-steps li:nth-child(3) b {
  background: #e9e0f5;
}
.approach-list {
  gap: 0.75rem;
  border: 0;
}
.approach-list li {
  border: 0;
  border-radius: 0.9rem;
  background: #dcecfb;
}
.approach-list li:nth-child(4n + 2) {
  background: #ffe2d5;
}
.approach-list li:nth-child(4n + 3) {
  background: #e9e0f5;
}
.approach-list li:nth-child(4n) {
  background: #e1eed8;
}
.approach-list span {
  color: #315567;
}
.mission {
  background: #244b60;
}
.cta {
  background: #ffd0ba;
}
.activity-gallery {
  background: #f1edf8;
  border-radius: 2rem;
}
.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.activity-grid article {
  overflow: hidden;
  border-radius: 1.25rem;
  background: #fff0cd;
}
.activity-grid article:nth-child(2) {
  background: #d6ece5;
}
.activity-grid article:nth-child(3) {
  background: #ffdfd2;
}
.activity-grid .activity-photo {
  border-radius: 0;
}
.activity-card-copy {
  padding: 1.6rem;
}
.activity-card-copy h3 {
  font-size: 1.6rem;
}
.activity-card-copy p {
  margin-bottom: 0;
}
.imagery-note {
  font-size: 0.8rem;
  margin: 1.75rem 0 0;
  color: var(--muted);
  max-width: none;
}
@media (max-width: 980px) {
  .hero > .hero-media {
    min-height: 0;
    margin: 0;
    border-radius: 3rem 0 0 0;
  }
  .hero-media img {
    height: auto;
  }
  .programme-photo {
    margin-top: 2rem;
    transform: none;
  }
  .activity-grid {
    grid-template-columns: 1fr;
  }
  .activity-gallery {
    border-radius: 0;
  }
}
@media (max-width: 620px) {
  .hero .track {
    display: none;
  }
  .hero-copy h1 {
    font-size: clamp(2.6rem, 11.8vw, 3.4rem);
  }
  .approach-list li {
    padding: 1rem;
  }
  .programme-band {
    padding-bottom: 2rem;
  }
}

/* Partner directory */
.partner-intro {
  max-width: 650px;
  margin-bottom: 2rem;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.partner-card {
  border: 1px solid #cddbd5;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
}
.partner-logo {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf4ef;
  padding: 30px;
}
.partner-card:nth-child(3n + 2) .partner-logo {
  background: #fff0d6;
}
.partner-card:nth-child(3n) .partner-logo {
  background: #e9effa;
}
.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.partner-logo span {
  font-size: 64px;
  font-weight: 800;
  color: #196349;
}
.partner-copy {
  padding: 28px;
  overflow-wrap: anywhere;
}
.partner-copy h3 {
  font-size: 26px;
  margin: 0 0 14px;
}
.partner-copy summary {
  cursor: pointer;
  font-weight: 700;
  padding: 12px 0;
}
.partner-copy .text-link {
  display: inline-block;
  margin-top: 20px;
}
.partner-description {
  white-space: pre-line;
}
@media (max-width: 1000px) {
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }
}
.sr-only {position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* Photography across the informational pages. */
.page-hero-photo {display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);align-items:center;gap:clamp(2rem,5vw,5rem);padding-block:clamp(3rem,6vw,6rem)}
.page-hero-photo h1 {font-size:clamp(2.7rem,5.2vw,5.5rem);overflow-wrap:normal}
.page-hero-copy p {font-size:clamp(1.125rem,1.6vw,1.45rem);line-height:1.6;max-width:38rem;margin-bottom:0}
.inner-hero-photo {box-shadow:12px 12px 0 rgba(255,255,255,.3);border:5px solid rgba(255,255,255,.7)}
.inner-hero-photo img {display:block;aspect-ratio:3/2;object-fit:cover}
@media(max-width:980px){.page-hero-photo{grid-template-columns:1fr;gap:2rem}.page-hero-photo h1{max-width:18ch}.inner-hero-photo img{aspect-ratio:3/2}.inner-hero-photo{max-width:680px;width:100%}}
@media(max-width:600px){.page-hero-photo{padding-block:2.5rem 3rem}.page-hero-photo h1{font-size:clamp(2.5rem,10.6vw,3.4rem)}.inner-hero-photo{border-width:3px;box-shadow:7px 7px 0 rgba(255,255,255,.3)}}

.partner-grid .partner-card .partner-logo-light {background:#fff}
.partner-grid .partner-card .partner-logo-dark {background:#142e39}
