:root {
  --green-900: #243217;
  --green-800: #2a391a;
  --green-700: #405a22;
  --green-300: #a4c1a4;
  --blue-300: #8baeb5;
  --cream: #f8f5f2;
  --warm: #f4eae0;
  --gold: #d8a465;
  --ink: #263024;
  --muted: #62705c;
  --white: #fff;
  --shadow: 0 20px 55px rgba(42, 57, 26, .14);
  --radius: 8px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html,
body { overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Nunito, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--green-700); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--green-900); }
h1, h2, h3 {
  color: var(--green-800);
  font-family: "Source Serif 4", Georgia, serif;
  line-height: 1.08;
  margin: 0 0 18px;
  letter-spacing: 0;
}
h1 { font-size: clamp(2.7rem, 6vw, 5.8rem); max-width: 880px; }
h2 { font-size: clamp(2rem, 3.5vw, 3.25rem); }
h3 { font-size: 1.45rem; }
p { margin: 0 0 18px; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 20;
  background: var(--green-900);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}
.skip-link:focus { top: 12px; }
.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;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 245, 242, .94);
  border-bottom: 1px solid rgba(64, 90, 34, .14);
  backdrop-filter: blur(16px);
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 24px;
}
.brand img { width: 230px; }
.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}
.site-nav a,
.nav-group__button {
  border-radius: 999px;
  color: var(--green-800);
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: .91rem;
  font-weight: 800;
  padding: 9px 13px;
  text-decoration: none;
}
.site-nav a:hover,
.site-nav a[aria-current="page"],
.nav-group:hover .nav-group__button,
.nav-group:focus-within .nav-group__button,
.nav-group.is-active .nav-group__button {
  background: var(--warm);
  color: var(--green-900);
}
.nav-group {
  position: relative;
}
.nav-group::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-group__button::after {
  content: "";
  display: inline-block;
  width: .45em;
  height: .45em;
  margin-left: .45em;
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-.16em) rotate(45deg);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: grid;
  min-width: 190px;
  padding: 10px;
  background: var(--white);
  border: 1px solid rgba(64, 90, 34, .14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease;
}
.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown,
.nav-group.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(64, 90, 34, .25);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green-800);
  margin: 4px auto;
}
.hero,
.page-hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}
.hero__media,
.page-hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img,
.page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(248,245,242,.95) 0%, rgba(248,245,242,.76) 42%, rgba(248,245,242,.1) 100%),
    linear-gradient(0deg, rgba(42,57,26,.35), rgba(42,57,26,.05));
}
.hero__content,
.page-hero__content { padding: 120px 0 80px; }
.hero__content p,
.page-hero__content p {
  max-width: 660px;
  font-size: 1.28rem;
  color: var(--green-900);
}
.eyebrow {
  color: var(--green-700);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .11em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  align-items: center;
  border: 2px solid var(--green-700);
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button--primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(64, 90, 34, .2);
}
.button--primary:hover { background: var(--green-900); color: var(--white); }
.button--ghost { background: rgba(255, 255, 255, .72); color: var(--green-800); }
.section { padding: 88px 0; }
.section--intro,
.section--sage { background: var(--white); }
.section--sage { background: #edf2ea; }
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.prose { max-width: 760px; }
.vision-section {
  max-width: 1100px;
}
.vision-statement {
  max-width: 1040px;
  margin-bottom: 24px;
}
.vision-copy {
  max-width: 760px;
  color: var(--ink);
  font-size: 1.28rem;
}
.feature-grid,
.values-grid,
.programme-grid,
.team-grid,
.two-cards,
.stats {
  display: grid;
  gap: 22px;
}
.feature-grid { grid-template-columns: repeat(4, 1fr); }
.feature-card,
.value-card,
.programme-card,
.team-card,
.info-card,
.contact-card,
.contact-form,
.fee-panel {
  background: var(--white);
  border: 1px solid rgba(64, 90, 34, .12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.feature-card__icon {
  align-items: center;
  background: var(--green-700);
  border-radius: 999px;
  display: inline-flex;
  height: 62px;
  justify-content: center;
  margin-bottom: 22px;
  width: 62px;
}
.feature-card__icon svg {
  fill: none;
  height: 30px;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 30px;
}
.stats { grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat strong {
  color: var(--blue-300);
  display: block;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
}
.stat span { color: var(--green-800); font-weight: 900; }
.image-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.image-text--reverse img { order: 2; }
.image-text img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}
.image-text__mark {
  box-shadow: none !important;
  width: min(320px, 75%) !important;
  margin: 0 auto;
}
.text-link {
  font-weight: 900;
}
.values-grid { grid-template-columns: repeat(2, 1fr); }
.home-logo-section {
  display: grid;
  place-items: center;
  padding: 42px 20px 10px;
  background: var(--white);
}
.home-logo-section img {
  width: min(180px, 42vw);
}
.programme-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  max-width: 980px;
  margin-inline: auto;
}
.programme-card {
  min-width: 0;
}
.programme-card ul {
  margin: 20px 0 0;
  padding-left: 20px;
}
.programme-card li { margin-bottom: 8px; }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
}
.team-grid { grid-template-columns: repeat(4, 1fr); }
.team-grid--small { grid-template-columns: repeat(2, minmax(0, 320px)); justify-content: center; }
.team-card { text-align: center; }
.team-card__photo {
  aspect-ratio: 1;
  border: 4px solid var(--green-300);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(42, 57, 26, .12);
  height: 128px;
  margin: 0 auto 18px;
  object-fit: cover;
  width: 128px;
}
.fee-panel { display: grid; gap: 14px; }
.fee-row {
  align-items: center;
  border-bottom: 1px solid rgba(64, 90, 34, .14);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 14px;
}
.fee-row span { color: var(--muted); display: block; font-size: .95rem; }
.two-cards { grid-template-columns: repeat(2, 1fr); }
.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 32px;
  align-items: start;
}
.contact-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
.contact-list li {
  border-bottom: 1px solid rgba(64, 90, 34, .14);
  display: grid;
  gap: 4px;
  padding: 13px 0;
}
address { font-style: normal; }
.contact-form {
  display: grid;
  gap: 12px;
}
.contact-form label { color: var(--green-800); font-weight: 900; }
.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(64, 90, 34, .24);
  border-radius: var(--radius);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-link:focus,
.button:focus,
.site-nav a:focus,
.nav-group__button:focus,
.nav-toggle:focus {
  outline: 3px solid rgba(216, 164, 101, .65);
  outline-offset: 3px;
}
.bot-field { display: none; }
.cf-turnstile { margin: 4px 0; }
.contact-link {
  color: var(--green-700);
  display: inline-flex;
  min-height: 0;
  padding: 0;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}
.contact-link:hover { color: var(--green-900); }
.form-status {
  border-radius: var(--radius);
  font-weight: 800;
  min-height: 0;
}
.form-status:not(:empty) {
  background: #edf2ea;
  color: var(--green-800);
  padding: 12px 14px;
}
.form-status.is-error {
  background: #fff1ee;
  color: #8a2b1c;
}
.form-note {
  color: var(--muted);
  font-size: .92rem;
  margin: 0;
}
.map iframe {
  border: 0;
  display: block;
  height: 420px;
  width: 100%;
}
.site-footer {
  background: var(--green-900);
  color: var(--warm);
  padding: 58px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
}
.footer-logo {
  background: var(--cream);
  border-radius: var(--radius);
  margin-bottom: 18px;
  padding: 10px;
  width: 240px;
}
.site-footer h2 {
  color: var(--white);
  font-family: Nunito, Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.site-footer a { color: var(--white); }
.site-footer a:hover { color: var(--gold); }
@media (max-width: 1040px) {
  .feature-grid,
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  body { font-size: 17px; }
  .nav-shell { min-height: 76px; }
  .brand img { width: 190px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    inset: 76px 20px auto 20px;
    display: none;
    background: var(--white);
    border: 1px solid rgba(64, 90, 34, .14);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 14px;
  }
  .site-nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .site-nav a { padding: 12px; }
  .nav-group {
    display: grid;
  }
  .nav-group__button {
    text-align: left;
    width: 100%;
  }
  .nav-dropdown {
    position: static;
    display: none;
    min-width: 0;
    margin: 4px 0 0 12px;
    padding: 6px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .nav-group.is-open .nav-dropdown,
  .nav-group:focus-within .nav-dropdown {
    display: grid;
  }
  .hero,
  .page-hero { min-height: 560px; }
  .hero::after,
  .page-hero::after { background: linear-gradient(0deg, rgba(248,245,242,.95), rgba(248,245,242,.5)); }
  .split,
  .image-text,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .image-text--reverse img { order: 0; }
  .stats,
  .values-grid,
  .programme-grid,
  .two-cards,
  .gallery { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 64px 0; }
  .hero__content,
  .page-hero__content { padding: 90px 0 60px; }
  .feature-grid,
  .programme-grid,
  .team-grid,
  .team-grid--small { grid-template-columns: 1fr; }
  .site-nav.is-open { grid-template-columns: 1fr; }
  .actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
}
