:root {
  --teal: #3bbfbf;
  --dark-teal: #2a9595;
  --teal-pale: #cbe9e9;
  --pink: #e8699a;
  --pink-pale: #f5d9e6;
  --amber: #f0b429;
  --amber-pale: #fae8b0;
  --ink: #1c2e2e;
  --muted: #6a8888;
  --background: #f9eef2;
  --white: #fffdfb;
  --shadow: 0 24px 70px rgba(28, 46, 46, 0.13);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Fredoka", system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 6%, rgba(203, 233, 233, 0.82) 0 13rem, transparent 13.1rem),
    radial-gradient(circle at 96% 2%, rgba(245, 217, 230, 0.82) 0 11rem, transparent 11.1rem),
    var(--background);
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(42, 149, 149, 0.18) 1.2px, transparent 1.2px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  opacity: 0.38;
  z-index: -2;
}

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

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

.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 16px auto 0;
  padding: 12px 14px 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 253, 251, 0.78);
  box-shadow: 0 18px 55px rgba(28, 46, 46, 0.1);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 260px;
  height: auto;
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}

.nav a {
  transition: color 180ms ease;
}

.nav a:hover {
  color: var(--dark-teal);
}

.header-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  border-radius: 999px;
  overflow: hidden;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.header-cta {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(232, 105, 154, 0.24);
}

.button::before,
.header-cta::before {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  transform: scale(0);
  transition: transform 380ms ease;
  z-index: -1;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-3px);
}

.button:hover::before,
.header-cta:hover::before {
  transform: scale(8);
}

.button.primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(232, 105, 154, 0.28);
}

.button.secondary {
  background: var(--white);
  color: var(--dark-teal);
  box-shadow: inset 0 0 0 2px rgba(59, 191, 191, 0.18), 0 16px 36px rgba(28, 46, 46, 0.08);
}

.button.secondary.light {
  background: rgba(255, 255, 255, 0.88);
}

.hero-wrap {
  position: relative;
  margin-top: -94px;
  padding-top: 94px;
  background: var(--white);
  overflow: clip;
}

.hero-wrap::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 0;
  width: 310px;
  height: 310px;
  border-radius: 62% 38% 46% 54% / 55% 48% 52% 45%;
  background: rgba(203, 233, 233, 0.72);
}

.hero-wrap::after {
  content: "";
  position: absolute;
  right: -130px;
  top: -40px;
  width: 300px;
  height: 300px;
  border-radius: 38% 62% 54% 46% / 48% 55% 45% 52%;
  background: rgba(245, 217, 230, 0.62);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.86fr);
  gap: 42px;
  align-items: center;
  min-height: 820px;
  padding: 100px 0 88px;
  z-index: 1;
}

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

.hero-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(240, 180, 41, 0.24);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-pill::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.22);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--dark-teal);
  font-size: 18px;
  font-weight: 600;
}

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

h1,
h2,
h3 {
  font-weight: 500;
}

h1 {
  max-width: 680px;
  margin-bottom: 44px;
  font-size: clamp(32px, 3.4vw, 42px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 24px;
  color: #315050;
  font-size: 22px;
  line-height: 1.48;
}

.hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-details li {
  position: relative;
  padding: 11px 15px 11px 34px;
  border-radius: 999px;
  background: rgba(255, 253, 251, 0.78);
  box-shadow: inset 0 0 0 1px rgba(42, 149, 149, 0.1), 0 12px 28px rgba(28, 46, 46, 0.06);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.hero-details li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--teal);
  transform: translateY(-50%);
}

.hero-details .teal-dot {
  color: var(--dark-teal);
}

.hero-details .pink-dot {
  color: #a93467;
}

.hero-details .pink-dot::before {
  background: var(--pink);
}

.hero-details .amber-dot {
  color: #8a6100;
}

.hero-details .amber-dot::before {
  background: var(--amber);
}

.open-days {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  width: 100%;
  margin: 16px 0 0;
  padding: 32px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff5cc, var(--amber-pale));
  color: #7b5700;
  box-shadow: 0 18px 44px rgba(240, 180, 41, 0.16);
}

.open-days strong {
  display: block;
  margin-bottom: 12px;
  color: var(--amber);
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
}

.open-day-list {
  display: grid;
  gap: 8px;
  width: 100%;
}

.open-days p {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 14px;
  align-items: center;
  margin: 0;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 253, 251, 0.48);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
}

.open-days p span:first-child {
  color: #6f4e00;
  min-width: 0;
}

.open-days p span:last-child {
  flex: 0 0 auto;
  color: #8a6100;
}

.calendar-icon {
  position: relative;
  width: 28px;
  height: 28px;
  border: 3px solid var(--amber);
  border-radius: 7px;
}

.calendar-icon::before,
.calendar-icon::after {
  content: "";
  position: absolute;
  top: -8px;
  width: 4px;
  height: 10px;
  border-radius: 999px;
  background: var(--amber);
}

.calendar-icon::before {
  left: 6px;
}

.calendar-icon::after {
  right: 6px;
}

.calendar-icon span {
  position: absolute;
  left: 3px;
  right: 3px;
  top: 8px;
  height: 3px;
  border-radius: 999px;
  background: var(--amber);
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  box-shadow: inset 0 0 0 1px rgba(42, 149, 149, 0.1);
}

.button.secondary.teal-button {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(59, 191, 191, 0.26);
}

.button.secondary.teal-button:hover {
  background: var(--dark-teal);
  box-shadow: 0 18px 40px rgba(59, 191, 191, 0.26);
}

.hero-address {
  position: relative;
  margin: 32px 0 0;
  padding-left: 28px;
  color: #d99a13;
  font-size: 19px;
  font-weight: 500;
}

.hero-address::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.35em;
  width: 13px;
  height: 13px;
  border-radius: 50% 50% 50% 0;
  background: var(--amber);
  transform: rotate(-45deg);
}

.hero-address::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--white);
}

.hero-art {
  position: relative;
  min-height: 610px;
}

.photo-bubble,
.shape,
.dotted-ring {
  position: absolute;
}

.photo-bubble {
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
  z-index: 4;
}

.photo-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-bubble-main {
  right: 4%;
  bottom: 54px;
  width: min(470px, 82vw);
  aspect-ratio: 1 / 1;
  border-radius: 62% 38% 52% 48% / 58% 44% 56% 42%;
  animation: floaty 7s ease-in-out infinite;
}

.shape {
  border-radius: 48% 52% 45% 55%;
  mix-blend-mode: multiply;
  opacity: 0.92;
  animation: drift 9s ease-in-out infinite;
}

.shape-teal {
  right: 12%;
  bottom: 18px;
  width: 440px;
  height: 430px;
  background: var(--teal);
}

.shape-pink {
  right: -16px;
  top: 86px;
  width: 300px;
  height: 300px;
  background: var(--pink);
  animation-delay: 650ms;
}

.shape-amber {
  left: 30px;
  bottom: 0;
  width: 240px;
  height: 250px;
  background: var(--amber);
  animation-delay: 1.1s;
}

.dotted-ring {
  width: 150px;
  height: 150px;
  border: 4px dashed rgba(59, 191, 191, 0.42);
  border-radius: 50%;
  animation: rotate 24s linear infinite;
}

.ring-one {
  right: 0;
  top: 0;
}

.ring-two {
  right: 10px;
  bottom: 22px;
  width: 96px;
  height: 96px;
  border-color: rgba(232, 105, 154, 0.34);
}

.trust {
  margin-top: 0;
  padding: 84px 0 96px;
}

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

.trust-card,
.mini-stat,
.outcome-card,
.journey-track article,
.quote-grid blockquote,
.day-timeline article,
.learning-grid article,
.info-card,
.accordion,
.location-card,
.visit-form {
  border-radius: var(--radius);
  background: rgba(255, 253, 251, 0.82);
  box-shadow: 0 18px 54px rgba(28, 46, 46, 0.08);
}

.trust-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: max-content minmax(280px, 0.95fr) minmax(260px, 1fr);
  gap: 30px;
  align-items: center;
  padding: 34px 40px;
}

.trust-mark {
  display: inline-flex;
  margin: 0;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--teal-pale);
  color: var(--dark-teal);
  font-weight: 500;
}

.trust-card h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.04;
}

.trust-card p {
  max-width: 430px;
  margin: 0;
}

.trust-card p,
.mini-stat span,
.outcome-card p,
.team-card span,
.journey-track p,
.final-inner p,
.day-timeline p,
.learning-grid p,
.info-card p,
.location-card p,
.location-card li,
.quote-grid blockquote,
.testimonial-feature blockquote {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.mini-stat {
  min-height: 210px;
  padding: 28px;
}

.mini-stat strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.08;
}

.mini-stat.highlight {
  grid-column: span 2;
  background: var(--ink);
  color: var(--white);
}

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

.section-heading {
  max-width: 800px;
  margin-bottom: 42px;
}

.section-intro {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.section-heading h2,
.final-inner h2,
.testimonial-feature h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 52px);
  line-height: 1.03;
}

.why {
  padding: 20px 0 100px;
}

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

.outcome-card {
  position: relative;
  grid-column: span 2;
  min-height: 330px;
  padding: 28px;
  overflow: hidden;
}

.outcome-card.wide {
  grid-column: span 3;
  min-height: 280px;
}

.outcome-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 132px;
  height: 132px;
  border-radius: 58% 42% 52% 48% / 44% 60% 40% 56%;
  background: currentColor;
  opacity: 0.16;
}

.outcome-card span {
  display: inline-flex;
  margin-bottom: 54px;
  color: currentColor;
  font-size: 18px;
  font-weight: 500;
}

.outcome-card h3 {
  margin-bottom: 14px;
  font-size: 29px;
  line-height: 1.05;
}

.outcome-card.teal {
  color: var(--dark-teal);
}

.outcome-card.pink {
  color: var(--pink);
}

.outcome-card.amber {
  color: #c38300;
}

.outcome-card.ink {
  color: var(--ink);
}

.day {
  padding: 100px 0;
}

.day-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.day-photo {
  min-height: 560px;
  overflow: hidden;
  border: 12px solid rgba(255, 253, 251, 0.86);
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.day-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.day-timeline {
  display: grid;
  gap: 16px;
}

.day-timeline article {
  position: relative;
  min-height: 140px;
  padding: 24px 26px 24px 112px;
}

.day-timeline span {
  position: absolute;
  left: 26px;
  top: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 8px;
  border-radius: 22px;
  background: var(--teal-pale);
  color: var(--dark-teal);
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.day-timeline article:nth-child(2) span {
  background: var(--pink-pale);
  color: #a93467;
}

.day-timeline article:nth-child(3) span {
  background: var(--amber-pale);
  color: #8a6100;
}

.day-timeline article:nth-child(4) span {
  background: var(--ink);
  color: var(--white);
}

.day-timeline h3,
.learning-grid strong,
.info-card h3,
.location-card h2 {
  margin: 0 0 10px;
  font-weight: 500;
  line-height: 1.08;
}

.day-timeline h3 {
  font-size: 28px;
}

.learning {
  position: relative;
  padding: 96px 0;
  background: var(--white);
  overflow: hidden;
}

.learning::after {
  content: "";
  position: absolute;
  right: -86px;
  bottom: -86px;
  width: 240px;
  height: 240px;
  border: 4px dashed rgba(59, 191, 191, 0.32);
  border-radius: 50%;
}

.learning-inner {
  position: relative;
  z-index: 1;
}

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

.learning-grid article {
  min-height: 250px;
  padding: 28px;
}

.learning-grid strong {
  display: block;
  color: var(--dark-teal);
  font-size: 31px;
}

.learning-grid article:nth-child(2) strong {
  color: var(--pink);
}

.learning-grid article:nth-child(3) strong {
  color: #c38300;
}

.learning-grid article:nth-child(4) strong {
  color: var(--ink);
}

.facilities {
  padding: 100px 0;
}

.info-card h3 {
  font-size: 30px;
}

.facility-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 200px);
  grid-template-areas:
    "big1 big1 b c"
    "big1 big1 d f"
    "g h big2 big2"
    "i h big2 big2";
  gap: 18px;
}

.facility-photo {
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 253, 251, 0.82);
  box-shadow: 0 18px 54px rgba(28, 46, 46, 0.08);
}

.pos-big1 { grid-area: big1; }
.pos-b { grid-area: b; }
.pos-c { grid-area: c; }
.pos-d { grid-area: d; }
.pos-f { grid-area: f; }
.pos-g { grid-area: g; }
.pos-h { grid-area: h; }
.pos-i { grid-area: i; }
.pos-big2 { grid-area: big2; }

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

.team {
  padding: 120px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: minmax(0, 860px);
  gap: 18px;
  justify-content: center;
}

.team-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 62% 38% 52% 48% / 58% 44% 56% 42%;
}

.team-card div {
  padding: 0;
}

.team-card p {
  margin-bottom: 10px;
  color: var(--dark-teal);
  font-size: 18px;
  font-weight: 500;
}

.team-card h3 {
  margin-bottom: 18px;
  font-size: 48px;
}

.team-card span {
  font-size: 20px;
  line-height: 1.55;
  color: var(--muted);
}

.testimonials {
  padding: 0 0 100px;
}

.testimonial-feature {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
  margin-bottom: 18px;
  padding: 46px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 92% 10%, rgba(250, 232, 176, 0.9) 0 96px, transparent 97px),
    var(--teal-pale);
  overflow: hidden;
}

.testimonial-feature::after {
  content: "";
  position: absolute;
  right: 38px;
  bottom: -46px;
  width: 148px;
  height: 148px;
  border: 4px dashed rgba(232, 105, 154, 0.3);
  border-radius: 50%;
}

blockquote {
  margin: 0;
}

.testimonial-feature blockquote {
  position: relative;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.35;
  z-index: 1;
}

cite {
  display: block;
  margin-top: 18px;
  color: var(--dark-teal);
  font-style: normal;
  font-weight: 700;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.quote-grid blockquote {
  padding: 30px;
  color: var(--ink);
}

.practical {
  padding: 0 0 100px;
}

.info-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.info-card {
  padding: 30px;
}

.funding-card {
  background:
    radial-gradient(circle at 100% 0, rgba(250, 232, 176, 0.98) 0 88px, transparent 89px),
    rgba(255, 253, 251, 0.86);
}

.funding-card .button {
  margin-top: 18px;
}

.accordion {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.accordion-item {
  display: grid;
  grid-template-columns: minmax(120px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 76px;
  border: 0;
  border-radius: 22px;
  padding: 18px 20px;
  background: var(--background);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: background 220ms ease, transform 220ms ease;
}

.accordion-item:hover,
.accordion-item.open {
  background: var(--teal-pale);
  transform: translateY(-2px);
}

.accordion-item span {
  color: var(--dark-teal);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.accordion-item strong {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.18;
}

.journey {
  padding-bottom: 100px;
}

.journey-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.journey-track::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 45px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--pink), var(--amber));
}

.journey-track article {
  position: relative;
  min-height: 250px;
  padding: 28px;
}

.journey-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
}

.journey-track h3 {
  margin-bottom: 12px;
  font-size: 28px;
}

.location {
  padding: 0 0 100px;
}

.location-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 28px;
  align-items: stretch;
  padding: 34px;
  background:
    radial-gradient(circle at 4% 10%, rgba(203, 233, 233, 0.92) 0 110px, transparent 111px),
    rgba(255, 253, 251, 0.84);
}

.location-card h2 {
  max-width: 620px;
  font-size: clamp(38px, 4.6vw, 50px);
}

.location-card p {
  max-width: 640px;
}

.location-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.location-card li {
  position: relative;
  padding-left: 28px;
}

.location-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pink);
}

.map-panel {
  min-height: 330px;
  border-radius: 30px;
  overflow: hidden;
  background: var(--teal-pale);
  box-shadow: inset 0 0 0 1px rgba(42, 149, 149, 0.12);
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  border: 0;
}

.final-cta {
  position: relative;
  padding: 96px 0;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  mix-blend-mode: screen;
}

.final-cta::before {
  border-radius: 62% 38% 46% 54% / 55% 48% 52% 45%;
}

.final-cta::after {
  border-radius: 38% 62% 54% 46% / 48% 55% 45% 52%;
}

.final-cta::before {
  display: none;
}

.final-cta::after {
  width: 360px;
  height: 360px;
  right: -70px;
  bottom: -90px;
  background: var(--pink);
}

.final-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

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

.final-inner p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 21px;
}

.final-inner .eyebrow {
  color: var(--amber);
}

.visit-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 253, 251, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 18px 54px rgba(0, 0, 0, 0.08);
}

.visit-form label {
  display: grid;
  gap: 8px;
}

.visit-form label.wide {
  grid-column: 1 / -1;
}

.visit-form span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 600;
}

.visit-form input,
.visit-form textarea {
  width: 100%;
  border: 0;
  border-radius: 18px;
  padding: 15px 16px;
  background: rgba(255, 253, 251, 0.95);
  color: var(--ink);
  font: 500 17px/1.25 "Fredoka", system-ui, sans-serif;
  outline: 3px solid transparent;
  transition: outline-color 180ms ease, background 180ms ease;
}

.visit-form textarea {
  resize: vertical;
}

.visit-form input:focus,
.visit-form textarea:focus {
  background: var(--white);
  outline-color: rgba(240, 180, 41, 0.55);
}

.visit-form .button {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.visit-form .button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 600;
}

.form-status[hidden] {
  display: none;
}

.form-status--success {
  background: rgba(255, 253, 251, 0.95);
  color: var(--dark-teal);
}

.form-status--error {
  background: rgba(255, 235, 235, 0.95);
  color: #8b1e1e;
}

.turnstile-wrap {
  display: flex;
  justify-content: flex-start;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0;
  color: var(--muted);
}

.site-footer img {
  width: 210px;
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer a {
  color: var(--dark-teal);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.cursor-orb {
  position: fixed;
  left: 0;
  top: 0;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 191, 191, 0.16), transparent 68%);
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 200ms ease;
  z-index: -1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2.5px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 280ms ease, opacity 200ms ease;
  pointer-events: none;
}

.mobile-nav {
  display: none;
}

.mobile-bottom-bar {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-18px) rotate(1deg);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(12px, -16px, 0) rotate(4deg);
  }
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .cursor-orb {
    display: none;
  }
}

@media (max-width: 1060px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 120;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 110;
    padding: 90px 28px 48px;
    background: rgba(255, 253, 251, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transform: translateX(100%);
    transition: transform 360ms cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    overflow-y: auto;
  }

  .mobile-nav-close {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    padding: 0;
    border: 0;
    background: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
  }

  .mobile-nav a {
    display: block;
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid rgba(42, 149, 149, 0.14);
    font-size: 26px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    transition: color 180ms ease;
  }

  .mobile-nav a:last-child {
    border-bottom: 0;
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus {
    color: var(--dark-teal);
  }

  body.nav-open .mobile-nav {
    transform: translateX(0);
    pointer-events: auto;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }
}

@media (max-width: 1060px) {
  .section-shell,
  .site-footer {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-radius: 0;
    width: 100%;
    margin: 0;
    padding: 0 20px;
    min-height: 72px;
    border: 0;
    border-bottom: 1px solid rgba(42, 149, 149, 0.12);
    box-shadow: 0 1px 16px rgba(28, 46, 46, 0.07);
    z-index: 100;
  }

  .brand img {
    width: 200px;
  }

  .header-cta {
    display: none;
  }

  .hero-details {
    display: flex;
    margin: 0;
  }

  .hero-art {
    position: relative;
    overflow: hidden;
    min-height: 120px;
    margin: 0;
  }

  .hero-art .dotted-ring {
    display: none;
  }

  /* shapes sit behind the centered photo (photo has z-index:2) */
  .shape-teal {
    width: 160px;
    height: 150px;
    right: 0;
    top: 15%;
    left: auto;
    bottom: auto;
  }

  .shape-pink {
    width: 100px;
    height: 100px;
    right: 10%;
    top: 0;
    left: auto;
    bottom: auto;
  }

  .shape-amber {
    width: 95px;
    height: 100px;
    left: 0;
    top: 20%;
    right: auto;
    bottom: auto;
  }

  .photo-bubble-main {
    position: relative;
    right: auto;
    bottom: auto;
    width: 62%;
    aspect-ratio: 3 / 2;
    border-radius: 62% 38% 46% 54% / 55% 48% 52% 45%;
    margin: 0 auto;
    animation: none;
    z-index: 2;
  }

  .hero-actions {
    display: grid;
    margin-top: 20px;
  }

  .hero-address {
    font-size: 12px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
  }

  .hero-copy {
    display: contents;
  }

  h1 {
    order: 1;
    font-size: clamp(30px, 8vw, 38px);
    margin: 16px 0 0;
    text-align: center;
  }

  .hero-topline { order: 2; margin: 12px 0 0; justify-content: center; }
  .hero-lede { order: 3; margin: 14px 0 0; padding: 0; font-size: 18px; line-height: 1.45; text-align: center; }
  .hero-address { order: 4; margin: 6px 0 0; padding-left: 22px; text-align: left; }
  .hero-details { order: 5; justify-content: center; flex-wrap: wrap; margin: 0; }
  .hero-art { order: 6; margin-top: 20px; }
  .open-days { order: 7; margin: 0; }
  .hero-actions { order: 8; display: none; }

  .hero-lede {
    font-size: 18px;
  }

  .final-inner p:not(.eyebrow) {
    font-size: 18px;
  }

  .hero-details li {
    font-size: 13px;
    padding: 6px 10px 6px 32px;
  }



  .open-days {
    grid-template-columns: 24px 1fr;
    align-items: center;
    padding: 6px 10px;
    gap: 6px;
    width: 65%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2px;
    margin-bottom: 24px;
  }

  .open-days strong {
    font-size: 13px;
    margin-bottom: 3px;
  }

  .open-days p {
    display: grid;
    grid-template-columns: 1fr max-content;
    gap: 4px;
    font-size: 12px;
    padding: 4px 8px;
  }

  .final-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .team-card {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
  }

  .team-card img {
    width: 78%;
    margin: 0 auto;
  }

  .team-card div {
    text-align: center;
    padding: 0 12px 24px;
  }

  .team-card h3 {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .team-card span {
    font-size: 17px;
  }

  .trust-grid,
  .outcome-grid,
  .team-grid,
  .quote-grid,
  .journey-track,
  .learning-grid,
  .visit-form,
  .day-layout,
  .testimonial-feature,
  .final-inner,
  .info-layout {
    grid-template-columns: 1fr;
  }

  .facility-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .facility-photo {
    width: calc(50% - 9px);
  }

  .facility-photo img {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .pos-big1 {
    width: 100%;
    order: -1;
  }

  .pos-big1 img {
    aspect-ratio: 16 / 10;
  }

  .pos-big2 {
    display: none;
  }

  .trust-card {
    grid-template-columns: 1fr;
    gap: 18px;
    grid-row: auto;
  }

  .outcome-card,
  .outcome-card.wide {
    grid-column: auto;
  }

  .mini-stat.highlight {
    grid-column: auto;
  }

  .outcome-card {
    min-height: 240px;
  }

  .outcome-card span {
    margin-bottom: 30px;
  }

  .day {
    padding: 64px 0;
  }

  .day-photo {
    min-height: 300px;
    border-radius: 28px;
  }

  .day-timeline article {
    min-height: 0;
    padding: 22px;
  }

  .day-timeline span {
    position: static;
    width: auto;
    min-height: 44px;
    margin-bottom: 18px;
    border-radius: 999px;
  }

  .learning,
  .facilities {
    padding: 64px 0;
  }

  .learning-grid article {
    min-height: 0;
  }

  .team {
    padding: 80px 0 96px;
  }

  .practical,
  .location {
    padding-bottom: 64px;
  }

  .testimonials {
    padding-bottom: 64px;
  }

  .accordion-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .location-card {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .map-panel {
    min-height: 260px;
  }

  .visit-form label.wide {
    grid-column: auto;
  }

  .testimonial-feature {
    padding: 28px;
  }

  .testimonial-feature blockquote {
    font-size: 22px;
  }

  .journey-track::before {
    display: none;
  }

  .journey-track article {
    min-height: 0;
  }

  .journey-track span {
    margin-bottom: 28px;
  }

  .site-footer {
    display: grid;
    gap: 18px;
    padding-bottom: calc(24px + 76px + env(safe-area-inset-bottom));
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-bottom-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 30;
    padding: 10px 14px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 253, 251, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(42, 149, 149, 0.12);
    box-shadow: 0 -6px 24px rgba(28, 46, 46, 0.08);
  }

  .mobile-bottom-bar .button {
    min-height: 48px;
    font-size: 16px;
    padding: 12px 16px;
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .section-heading h2,
  .final-inner h2,
  .testimonial-feature h2 {
    font-size: clamp(24px, 9vw, 36px);
  }

  .section-shell,
  .site-footer {
    width: min(100% - 20px, 1160px);
  }

  .photo-bubble-main {
    width: 78%;
  }
}
