:root {
  --ink: #20242a;
  --muted: #626b76;
  --paper: #fffdf8;
  --wash: #f4f0e6;
  --green: #496c43;
  --green-dark: #2f5036;
  --blue: #305d82;
  --coral: #d76f53;
  --yellow: #efc35a;
  --line: rgba(32, 36, 42, 0.12);
  --shadow: 0 22px 60px rgba(31, 43, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Avenir, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 12px clamp(20px, 4vw, 56px);
  background: rgba(255, 253, 248, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-symbol {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: #fff;
  background: var(--green-dark);
  border-radius: 16px 16px 16px 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.8vw, 34px);
  color: #3d4650;
  font-size: 0.94rem;
  font-weight: 800;
}

.site-nav a {
  padding: 12px 0;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 12px 26px rgba(215, 111, 83, 0.22);
}

.button.secondary {
  color: var(--green-dark);
  background: #fff;
  border-color: rgba(47, 80, 54, 0.24);
}

.button.light {
  color: var(--green-dark);
  background: #fff;
}

.menu-button {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr) minmax(310px, 0.5fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: stretch;
  min-height: calc(100vh - 78px);
  padding: clamp(22px, 4vw, 56px);
  background:
    linear-gradient(100deg, rgba(244, 240, 230, 0.92), rgba(255, 253, 248, 0.7)),
    var(--wash);
}

.hero-image {
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px 42px 8px 8px;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  align-self: center;
  max-width: 710px;
}

.eyebrow,
.panel-kicker,
.age {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.2vw, 6.2rem);
  line-height: 0.96;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 28px;
  color: #3f4852;
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.quick-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.quick-proof div {
  min-height: 104px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quick-proof dt {
  margin-bottom: 5px;
  color: var(--green-dark);
  font-weight: 900;
}

.quick-proof dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.enquiry-panel {
  align-self: center;
  padding: 28px;
  background: var(--paper);
  border: 1px solid rgba(32, 36, 42, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.enquiry-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(1.75rem, 2.4vw, 2.3rem);
  line-height: 1.03;
}

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

form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: #3b4650;
  font-size: 0.84rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(32, 36, 42, 0.16);
  border-radius: 6px;
}

textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.microcopy {
  margin: 14px 0 0;
  font-size: 0.88rem;
  text-align: center;
}

.microcopy a {
  color: var(--green-dark);
  font-weight: 900;
}

.decision-band,
.programmes,
.forest-feature,
.parent-proof,
.site-footer {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.decision-band {
  padding: 62px 0 38px;
}

.section-intro {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-intro.narrow {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.section-intro h2,
.forest-copy h2,
.proof-steps h2 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
}

.section-intro p,
.forest-copy p {
  color: var(--muted);
}

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

.decision-grid article {
  min-height: 270px;
  padding: 26px;
  color: #fff;
  background: var(--green-dark);
  border-radius: 8px;
}

.decision-grid article:nth-child(2) {
  background: var(--blue);
}

.decision-grid article:nth-child(3) {
  color: var(--ink);
  background: var(--yellow);
}

.decision-grid span {
  display: block;
  margin-bottom: 56px;
  font-weight: 900;
  opacity: 0.72;
}

.decision-grid h3,
.programme-list h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.08;
}

.decision-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.decision-grid article:nth-child(3) p {
  color: rgba(32, 36, 42, 0.72);
}

.programmes {
  padding: 56px clamp(18px, 4vw, 46px);
  background: #f8f5ee;
  border-radius: 8px;
}

.programme-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.programme-list article {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.programme-list img {
  width: 160px;
  height: 124px;
  object-fit: cover;
  border-radius: 6px;
}

.programme-list p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.forest-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: center;
  padding: 74px 0 56px;
}

.forest-copy ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.forest-copy li {
  position: relative;
  padding: 14px 16px 14px 44px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.forest-copy li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 19px;
  width: 12px;
  height: 12px;
  background: var(--yellow);
  border-radius: 50%;
}

.forest-images {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
  align-items: end;
}

.forest-images img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.forest-images img:first-child {
  height: 410px;
}

.forest-images img:last-child {
  height: 300px;
}

.parent-proof {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 18px;
  margin-bottom: 56px;
}

.quote-card,
.proof-steps {
  padding: clamp(28px, 4vw, 48px);
  border-radius: 8px;
}

.quote-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  color: #fff;
  background:
    linear-gradient(rgba(47, 80, 54, 0.88), rgba(47, 80, 54, 0.88)),
    url("assets/forest-wide-group.png") center / cover;
}

.quote-mark {
  margin: 0;
  color: var(--yellow);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 0.8;
}

blockquote {
  margin: 0;
}

blockquote p {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

cite {
  font-style: normal;
  font-weight: 900;
}

.proof-steps {
  background: var(--wash);
}

.proof-steps ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  color: #3d4650;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr;
  gap: 28px;
  padding: 34px 0 96px;
  border-top: 1px solid var(--line);
}

.site-footer h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.site-footer p,
.site-footer a:not(.button) {
  display: block;
  color: var(--muted);
}

.site-footer a:not(.button) {
  margin-bottom: 8px;
}

.footer-brand {
  margin-bottom: 12px;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: flex;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(32, 36, 42, 0.18);
}

.floating-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  min-height: 44px;
  padding: 0 16px;
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 900;
  border-right: 1px solid var(--line);
}

.floating-contact a:last-child {
  color: #fff;
  background: var(--coral);
  border-right: 0;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .enquiry-panel {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(720px, 100%);
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-button {
    justify-self: end;
    display: grid;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 12px;
    background: var(--green-dark);
    border: 0;
    border-radius: 50%;
  }

  .menu-button span:not(.sr-only) {
    height: 2px;
    background: #fff;
    border-radius: 999px;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.menu-open .site-nav,
  .site-header.menu-open .header-cta {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .site-nav {
    gap: 0;
  }

  .site-nav a {
    border-bottom: 1px solid var(--line);
  }

  .hero,
  .forest-feature,
  .parent-proof,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 420px;
  }

  .hero-content {
    max-width: none;
  }

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

  .decision-grid article {
    min-height: auto;
  }

  .decision-grid span {
    margin-bottom: 28px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-symbol {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 1.16rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .hero {
    min-height: 0;
    padding: 16px 16px 26px;
  }

  .hero-image {
    min-height: 320px;
    border-radius: 8px 28px 8px 8px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .quick-proof,
  .programme-list article,
  .forest-images,
  .quote-card {
    grid-template-columns: 1fr;
  }

  .programme-list img {
    width: 100%;
    height: 210px;
  }

  .decision-band,
  .programmes,
  .forest-feature,
  .parent-proof,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .forest-images img:first-child,
  .forest-images img:last-child {
    height: 260px;
  }

  .floating-contact {
    right: 10px;
    bottom: 10px;
    left: 10px;
    justify-content: stretch;
  }

  .floating-contact a {
    flex: 1;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
