:root {
  --white: #ffffff;
  --forest: #17382f;
  --forest-deep: #0f2922;
  --ink: #111111;
  --red: #d94836;
  --grey: #626862;
  --line: #d7dcda;
  --water: #b8d8dd;
  --surface: #f3f6f5;
  --max: 1240px;
  --pad: clamp(20px, 4vw, 56px);
  --section: clamp(72px, 9vw, 132px);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 4px; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 16px;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--white);
  color: var(--forest);
  border: 2px solid var(--forest);
}
.skip-link:focus { transform: none; }
.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; }
.shell { width: min(calc(100% - (var(--pad) * 2)), var(--max)); margin-inline: auto; }
.eyebrow { margin: 0 0 18px; color: var(--grey); font-size: .74rem; font-weight: 800; letter-spacing: .14em; line-height: 1.3; text-transform: uppercase; }
.kicker-line { display: block; }
.kicker-line::before { display: none; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 750; letter-spacing: -.045em; line-height: 1.04; }
h1 { margin-bottom: 24px; font-size: clamp(2.75rem, 5.1vw, 5.4rem); }
h2 { margin-bottom: 24px; font-size: clamp(2.1rem, 3.7vw, 4rem); }
h3 { margin-bottom: 12px; font-size: clamp(1.35rem, 2vw, 2rem); }
p { margin-bottom: 1.15em; }
.lead { max-width: 62ch; color: #3f4743; font-size: clamp(1.08rem, 1.4vw, 1.3rem); line-height: 1.55; }
.small { font-size: .88rem; line-height: 1.55; }
.muted { color: var(--grey); }
.text-link { display: inline-flex; align-items: center; min-height: 44px; padding: 0; color: var(--forest); font-weight: 750; text-decoration: none; background: transparent; border: 0; cursor: pointer; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; min-height: 84px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--forest); text-decoration: none; }
.brand img { width: 46px; height: 48px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 1.12rem; letter-spacing: -.03em; }
.brand-copy small { margin-top: 6px; color: var(--grey); font-size: .58rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); margin-left: auto; }
.desktop-nav a { position: relative; padding-block: 30px; font-size: .87rem; font-weight: 700; text-decoration: none; }
.desktop-nav a::after { display: none; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--red); }
.header-actions { display: flex; align-items: center; gap: 12px; margin-left: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.button-primary:hover { background: #bc3627; border-color: #bc3627; }
.button-secondary { color: var(--forest); background: transparent; border-color: var(--forest); }
.button-secondary:hover { color: var(--white); background: var(--forest); }
.button-light { color: var(--white); background: transparent; border-color: var(--white); }
.button-light:hover { color: var(--forest); background: var(--white); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.menu-button { display: none; width: 48px; height: 48px; padding: 12px; background: transparent; border: 2px solid var(--forest); border-radius: 50%; }
.menu-button span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--forest); }
.mobile-nav { padding: 16px var(--pad) 28px; background: var(--white); border-top: 1px solid var(--line); }
.mobile-nav > a:not(.button) { display: block; min-height: 48px; padding: 11px 0; font-weight: 750; text-decoration: none; border-bottom: 1px solid var(--line); }
.mobile-nav .button { width: 100%; margin-top: 18px; }

.programme-banner { color: var(--white); background: var(--red); }
.programme-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; min-height: 62px; padding-block: 10px; }
.programme-banner p { margin: 0; font-size: .91rem; line-height: 1.35; }
.programme-links { display: flex; flex: 0 0 auto; align-items: center; gap: 24px; }
.programme-links a { display: inline-flex; align-items: center; min-height: 42px; color: var(--white); font-size: .81rem; font-weight: 800; text-decoration: none; }

.hero { background: var(--forest); color: var(--white); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); min-height: min(730px, calc(100vh - 84px)); }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(64px, 8vw, 116px) clamp(30px, 5vw, 72px) clamp(64px, 8vw, 116px) 0; }
.hero .eyebrow, .page-hero .eyebrow, .section-dark .eyebrow, .cta .eyebrow { color: rgba(255,255,255,.72); }
.hero h1 { max-width: 720px; }
.hero .lead { color: rgba(255,255,255,.82); }
.hero .button-secondary { color: var(--white); border-color: rgba(255,255,255,.76); }
.hero .button-secondary:hover { color: var(--forest); background: var(--white); }
.hero-signature { margin-top: 38px; padding-top: 20px; color: rgba(255,255,255,.72); font-family: Georgia, serif; font-size: 1rem; font-style: italic; border-top: 1px solid rgba(184,216,221,.55); }
.hero-media { position: relative; min-height: 560px; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-media::after { position: absolute; inset: auto 0 0; height: 5px; background: var(--water); content: ""; }
.hero-home { position: relative; min-height: min(790px, calc(100dvh - 146px)); overflow: hidden; isolation: isolate; background: #291d19; }
.hero-home::before { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(20,40,33,.93) 0%, rgba(20,40,33,.8) 38%, rgba(20,40,33,.18) 72%, rgba(20,40,33,.08) 100%); content: ""; }
.hero-home::after { position: absolute; z-index: -1; inset: auto 0 0; height: 28%; background: linear-gradient(0deg, rgba(8,24,20,.44), transparent); content: ""; pointer-events: none; }
.hero-home .hero-grid { grid-template-columns: minmax(0, .62fr) minmax(0, .38fr); min-height: inherit; }
.hero-home .hero-copy { max-width: 710px; padding-block: clamp(78px, 10vw, 148px); }
.hero-home h1 { max-width: 680px; font-size: clamp(3.25rem, 6vw, 6.25rem); line-height: .94; text-shadow: 0 2px 22px rgba(5,18,14,.22); }
.hero-home .lead { max-width: 58ch; color: rgba(255,255,255,.9); }
.hero-home .hero-signature { max-width: 560px; margin-top: 34px; color: rgba(255,255,255,.86); border-top-color: rgba(255,255,255,.42); }
.hero-home .hero-media { position: absolute; z-index: -2; inset: 0; min-height: 100%; }
.hero-home .hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero-home .hero-media::after { display: none; }
.hero-scroll-cue { position: absolute; right: max(var(--pad), calc((100vw - var(--max)) / 2)); bottom: 30px; display: flex; align-items: center; gap: 14px; min-height: 44px; color: var(--white); font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.hero-scroll-cue span:last-child { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; transition: transform .18s ease-out, background .18s ease-out; }
.hero-scroll-cue:hover span:last-child { color: var(--forest); background: var(--white); transform: translateY(3px); }

@keyframes hero-image-enter { from { opacity: .45; transform: scale(1.06); } to { opacity: 1; transform: scale(1); } }
@keyframes hero-copy-enter { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: no-preference) {
  .hero-home .hero-media img { animation: hero-image-enter 1.5s var(--ease-out) both; }
  .hero-home .hero-copy > * { animation: hero-copy-enter .75s var(--ease-out) both; }
  .hero-home .hero-copy > :nth-child(1) { animation-delay: .18s; }
  .hero-home .hero-copy > :nth-child(2) { animation-delay: .27s; }
  .hero-home .hero-copy > :nth-child(3) { animation-delay: .36s; }
  .hero-home .hero-copy > :nth-child(4) { animation-delay: .45s; }
  .hero-home .hero-copy > :nth-child(5) { animation-delay: .54s; }
}
.page-hero { padding: clamp(62px, 7vw, 102px) 0; color: var(--white); background: var(--forest); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); align-items: center; gap: clamp(42px, 7vw, 100px); }
.page-hero h1 { font-size: clamp(2.8rem, 5vw, 5rem); }
.page-hero .lead { color: rgba(255,255,255,.82); }
.page-hero-media { position: relative; min-height: 460px; border-left: 6px solid var(--water); }
.page-hero-media img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.page-hero-media video { width: 100%; }

.trust-strip { color: var(--forest); background: #f5dfd8; border-top: 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 112px; padding: 26px 24px; border-right: 1px solid rgba(23,56,47,.22); }
.trust-item:first-child { border-left: 1px solid rgba(23,56,47,.22); }
.trust-item strong { display: block; margin-bottom: 4px; font-size: .95rem; }
.trust-item span { color: #5d5a55; font-size: .78rem; line-height: 1.4; }

.motion-ready [data-reveal] {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(34px);
  transition: opacity .85s var(--ease-out), filter .85s var(--ease-out), transform .85s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}
.motion-ready [data-reveal="visual"] { transform: translateY(28px) scale(.965); }
.motion-ready [data-reveal].is-visible { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }

.section { padding: var(--section) 0; }
.section-sm { padding: clamp(56px, 6vw, 88px) 0; }
.section-dark { color: var(--white); background: var(--forest); }
.section-dark .lead, .section-dark .muted { color: rgba(255,255,255,.76); }
.section-grey { background: var(--surface); }
.section-head { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr); align-items: end; gap: 44px; margin-bottom: clamp(40px, 6vw, 76px); }
.section-head h2, .section-head p:last-child { margin-bottom: 0; }
.section-head > p { max-width: 52ch; color: var(--grey); }
.section-dark .section-head > p { color: rgba(255,255,255,.7); }

.need-list { border-top: 2px solid var(--ink); }
.need-row { display: grid; grid-template-columns: 64px minmax(0, 1.1fr) minmax(230px, .7fr); align-items: center; gap: clamp(20px, 4vw, 56px); min-height: 220px; padding: 28px 0; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); }
.need-number { align-self: start; padding-top: 8px; color: var(--red); font-size: .78rem; font-weight: 800; letter-spacing: .12em; }
.need-copy h3 { margin-bottom: 10px; font-size: clamp(1.7rem, 3vw, 3.1rem); transition: color .18s ease; }
.need-copy p { max-width: 56ch; margin: 0; color: var(--grey); }
.need-image { height: 162px; overflow: hidden; background: var(--surface); }
.need-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.86); transition: transform .35s ease, filter .2s ease; }
.need-arrow { display: none; }
.need-row:hover h3 { color: var(--red); }
.need-row:hover .need-image img { transform: scale(1.04); filter: saturate(1); }

.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.35); border-bottom: 1px solid rgba(255,255,255,.35); }
.method-step { min-height: 370px; padding: 40px clamp(24px, 3vw, 44px) 42px 0; }
.method-step + .method-step { padding-left: clamp(24px, 3vw, 44px); border-left: 1px solid rgba(255,255,255,.35); }
.method-step .number { display: block; margin-bottom: 72px; color: var(--water); font-size: .76rem; font-weight: 800; letter-spacing: .14em; }
.method-step p { color: rgba(255,255,255,.73); }
.method-step .text-link { color: var(--white); }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: clamp(42px, 8vw, 110px); }
.split.reverse > :first-child { order: 2; }
.image-frame { position: relative; padding: 0 18px 18px 0; }
.image-frame::after { position: absolute; z-index: -1; right: 0; bottom: 0; width: 72%; height: 72%; background: var(--forest); content: ""; }
.image-frame.water::after { background: var(--water); }
.image-frame.red::after { background: var(--red); }
.image-frame img { width: 100%; min-height: 520px; max-height: 720px; object-fit: cover; }
.portrait-frame img { object-position: center top; }
.facts { display: grid; grid-template-columns: repeat(2, 1fr); margin: 30px 0 0; border-top: 1px solid var(--line); }
.fact { padding: 20px 18px 20px 0; border-bottom: 1px solid var(--line); }
.fact:nth-child(even) { padding-left: 20px; border-left: 1px solid var(--line); }
.fact strong { display: block; color: var(--forest); }
.fact span { display: block; color: var(--grey); font-size: .86rem; }

.service-groups { border-top: 2px solid var(--ink); }
.service-group { display: grid; grid-template-columns: minmax(220px, .36fr) minmax(0, .64fr); gap: clamp(28px, 6vw, 84px); padding: 52px 0; border-bottom: 1px solid var(--line); }
.service-group > h2 { margin: 0; font-size: clamp(1.65rem, 2.4vw, 2.55rem); }
.service-list { display: grid; }
.service-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; padding: 0 0 28px; }
.service-row + .service-row { padding-top: 28px; border-top: 1px solid var(--line); }
.service-row h3 { margin-bottom: 9px; font-size: 1.28rem; letter-spacing: -.025em; }
.service-row p { max-width: 64ch; margin: 0; color: var(--grey); font-size: .95rem; }
.service-row a { align-self: start; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 2px solid var(--ink); }
.feature { padding: 32px clamp(22px, 3vw, 42px) 36px 0; border-bottom: 1px solid var(--line); }
.feature + .feature { padding-left: clamp(22px, 3vw, 42px); border-left: 1px solid var(--line); }
.feature .number { display: block; margin-bottom: 50px; color: var(--red); font-size: .75rem; font-weight: 800; }
.feature p { color: var(--grey); }
.media-panel { background: var(--ink); color: var(--white); }
.media-panel-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .85fr); align-items: stretch; }
.media-panel video, .media-panel img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; background: #050505; }
.media-panel-copy { padding: clamp(42px, 7vw, 94px); }
.media-panel-copy p { color: #c5cbc8; }

.team-intro { display: grid; grid-template-columns: minmax(300px, .65fr) minmax(0, 1.35fr); gap: clamp(40px, 8vw, 110px); align-items: start; }
.team-roster { border-top: 2px solid var(--ink); }
.team-person { display: grid; grid-template-columns: minmax(180px, .55fr) minmax(0, 1fr); gap: 28px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.team-person strong { font-size: 1.1rem; }
.team-person span { color: var(--grey); }
.team-person.featured { display: block; padding: 0; border: 0; }
.team-person.featured img { width: 100%; height: 520px; object-fit: cover; object-position: center top; }
.team-person.featured div { padding: 24px 0; border-bottom: 2px solid var(--ink); }

.partner-rail { display: grid; grid-template-columns: repeat(7, 1fr); align-items: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.partner { display: grid; place-items: center; min-height: 132px; padding: 20px; border-right: 1px solid var(--line); }
.partner:last-child { border-right: 0; }
.partner img { width: 100%; max-width: 130px; max-height: 66px; object-fit: contain; filter: grayscale(1); opacity: .76; transition: filter .18s ease, opacity .18s ease; }
.partner:hover img { filter: none; opacity: 1; }

.location-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .8fr); border: 2px solid var(--ink); }
.location-copy { padding: clamp(36px, 6vw, 76px); }
.location-details { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 34px; }
.location-detail { padding: 20px 20px 20px 0; border-top: 1px solid var(--line); }
.location-detail:nth-child(even) { padding-left: 20px; border-left: 1px solid var(--line); }
.location-detail strong { display: block; margin-bottom: 5px; }
.map-frame { min-height: 520px; border-left: 2px solid var(--ink); }
.map-frame iframe { width: 100%; height: 100%; min-height: 520px; border: 0; }

.quote-block { padding: clamp(44px, 7vw, 88px); background: var(--water); }
.quote-block blockquote { max-width: 900px; margin: 0; color: var(--forest); font-family: Georgia, serif; font-size: clamp(1.55rem, 3vw, 3rem); line-height: 1.25; }
.faq-list { max-width: 920px; border-top: 2px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 54px 24px 0; font-weight: 750; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; right: 6px; content: "+"; color: var(--red); font-size: 1.5rem; }
.faq-list details[open] summary::after { content: "\2212"; }
.faq-list details p { max-width: 70ch; padding: 0 0 24px; color: var(--grey); }

.quiz { max-width: 900px; margin-inline: auto; }
.quiz-progress { height: 4px; margin-bottom: 56px; background: var(--line); }
.quiz-progress span { display: block; width: 25%; height: 100%; background: var(--red); transition: width .25s ease; }
.quiz-step h2 { max-width: 760px; }
.quiz-options { display: grid; gap: 12px; margin-top: 34px; }
.quiz-option { display: grid; grid-template-columns: 38px 1fr; align-items: center; min-height: 82px; padding: 18px 22px; color: var(--ink); text-align: left; background: var(--white); border: 1px solid var(--line); border-radius: 18px; cursor: pointer; }
.quiz-option:hover { border-color: var(--forest); background: var(--surface); }
.quiz-option b { color: var(--red); }
.quiz-option::after { display: none; }
.result-box { padding: clamp(30px, 5vw, 56px); border: 2px solid var(--forest); }
.result-actions { margin-top: 28px; }
.quiz-follow-up { margin-top: clamp(36px, 6vw, 58px); padding-top: clamp(32px, 5vw, 48px); border-top: 1px solid var(--line); }
.quiz-follow-up h3 { max-width: 620px; margin-bottom: 10px; font-size: clamp(1.45rem, 2.5vw, 2rem); }
.quiz-follow-up > p:not(.eyebrow) { max-width: 680px; color: var(--grey); }
.quiz-follow-up form { margin-top: 30px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.field { display: grid; gap: 8px; color: var(--ink); font-size: .82rem; font-weight: 750; }
.field > span { color: var(--grey); font-size: .74rem; font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 12px 14px; color: var(--ink); font: inherit; font-weight: 500; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.field textarea { min-height: 112px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(183, 217, 207, .75); border-color: var(--forest); }
.field-wide { margin-top: 20px; }
.consent { display: flex; align-items: flex-start; gap: 12px; max-width: 700px; margin: 20px 0 24px; color: var(--grey); font-size: .84rem; line-height: 1.5; }
.consent input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--forest); }
.quiz-restart { margin-top: 26px; }

.booking-open { overflow: hidden; }
.booking-modal { position: fixed; z-index: 2000; inset: 0; display: grid; place-items: center; padding: 16px; }
.booking-modal[hidden] { display: none; }
.booking-backdrop { position: absolute; inset: 0; background: rgba(13, 23, 20, .72); backdrop-filter: blur(8px); }
.booking-panel { position: relative; display: grid; grid-template-rows: auto minmax(0, 1fr) auto; width: min(980px, calc(100vw - 32px)); height: min(820px, calc(100dvh - 32px)); overflow: hidden; background: var(--white); border: 1px solid rgba(255,255,255,.42); border-radius: 28px; box-shadow: 0 34px 90px rgba(0,0,0,.32); }
.booking-panel-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding: 22px clamp(22px, 4vw, 38px); border-bottom: 1px solid var(--line); }
.booking-panel-header .eyebrow { margin-bottom: 4px; }
.booking-panel-header h2 { margin: 0; font-size: clamp(1.35rem, 2.2vw, 2rem); }
.booking-close { display: grid; flex: 0 0 auto; place-items: center; width: 46px; height: 46px; padding: 0 0 3px; color: var(--ink); font-size: 1.8rem; line-height: 1; background: var(--surface); border: 1px solid var(--line); border-radius: 50%; cursor: pointer; }
.booking-close:hover, .booking-close:focus-visible { color: var(--white); background: var(--forest); border-color: var(--forest); }
.booking-frame-wrap { position: relative; min-height: 0; background: #f7f7f5; }
.booking-frame-wrap iframe { width: 100%; height: 100%; border: 0; background: var(--white); }
.booking-status { position: absolute; z-index: 1; inset: 28px auto auto 50%; margin: 0; color: var(--grey); font-size: .85rem; transform: translateX(-50%); }
.booking-fallback { display: flex; flex-wrap: wrap; justify-content: center; gap: 5px; padding: 13px 20px; color: var(--grey); font-size: .78rem; text-align: center; border-top: 1px solid var(--line); }
.booking-fallback a { color: var(--forest); font-weight: 750; }

.cta { padding: clamp(58px, 7vw, 94px) 0; color: var(--white); background: var(--forest); border-bottom: 5px solid var(--water); }
.cta-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 46px; }
.cta h2 { max-width: 840px; margin-bottom: 0; }
.cta .eyebrow { color: rgba(255,255,255,.72); }
.site-footer { padding: 68px 0 26px; color: var(--white); background: var(--ink); }
.site-footer .brand { color: var(--white); }
.site-footer .brand-copy small { color: #aeb6b2; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr 1fr 1fr; gap: clamp(28px, 5vw, 74px); }
.site-footer h2 { margin-bottom: 18px; color: var(--water); font-size: .73rem; letter-spacing: .12em; text-transform: uppercase; }
.site-footer p, .site-footer a { color: #c4cac7; }
.site-footer a { display: block; width: fit-content; margin-bottom: 8px; text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 58px; padding-top: 22px; border-top: 1px solid #353535; }
.footer-bottom p { margin: 0; font-size: .78rem; }
.footer-credit a { display: inline; }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .header-actions { margin-left: auto; }
  .header-actions > .button { display: none; }
  .menu-button { display: block; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-right: 34px; }
  .programme-banner-inner { align-items: flex-start; }
  .programme-banner p { max-width: 42ch; }
  .hero-home .hero-grid { grid-template-columns: minmax(0, .75fr) minmax(0, .25fr); }
  .need-row { grid-template-columns: 52px minmax(0, 1fr) 210px; }
  .partner-rail { grid-template-columns: repeat(4, 1fr); }
  .partner:nth-child(4) { border-right: 0; }
  .partner:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  :root { --pad: 20px; --section: 72px; }
  body { font-size: 16px; }
  .header-inner { min-height: 72px; }
  .brand img { width: 40px; height: 42px; }
  .programme-banner-inner { display: grid; gap: 6px; padding-block: 14px; }
  .programme-banner p { font-size: .84rem; }
  .programme-links { display: grid; grid-template-columns: .8fr 1.45fr; gap: 14px; overflow: visible; }
  .programme-links a { min-height: 34px; font-size: .72rem; line-height: 1.25; }
  .hero-grid { width: 100%; grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: 42px var(--pad) 34px; }
  .hero h1 { font-size: clamp(2.35rem, 11.4vw, 3.65rem); }
  .hero-media { min-height: 330px; max-height: 44vh; }
  .hero-signature { display: none; }
  .hero-home { min-height: min(720px, calc(100dvh - 176px)); }
  .hero-home::before { background: linear-gradient(180deg, rgba(17,42,35,.5) 0%, rgba(17,42,35,.8) 52%, rgba(17,42,35,.95) 100%); }
  .hero-home .hero-grid { display: flex; align-items: flex-end; min-height: inherit; }
  .hero-home .hero-copy { width: 100%; padding: 116px var(--pad) 54px; }
  .hero-home h1 { font-size: clamp(2.65rem, 12vw, 4rem); }
  .hero-home .lead { font-size: 1rem; line-height: 1.48; }
  .hero-home .button { min-height: 46px; padding: 11px 14px; font-size: .77rem; }
  .hero-home .hero-media img { object-position: 56% center; }
  .hero-scroll-cue { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { min-height: 98px; padding: 20px; border-bottom: 1px solid rgba(23,56,47,.22); }
  .trust-item:nth-child(odd) { border-left: 1px solid rgba(23,56,47,.22); }
  .section-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 40px; }
  .need-row { grid-template-columns: 42px minmax(0, 1fr); gap: 14px; min-height: 0; padding: 28px 0; }
  .need-image { grid-column: 2 / 3; grid-row: 2; width: 100%; height: 210px; }
  .need-copy h3 { font-size: 1.65rem; }
  .method-grid, .feature-grid { grid-template-columns: 1fr; }
  .method-step { min-height: 0; padding: 30px 0; }
  .method-step + .method-step { padding: 30px 0; border-top: 1px solid rgba(255,255,255,.35); border-left: 0; }
  .method-step .number, .feature .number { margin-bottom: 28px; }
  .feature { padding: 28px 0; }
  .feature + .feature { padding: 28px 0; border-top: 1px solid var(--line); border-left: 0; }
  .split, .page-hero-grid, .media-panel-grid, .team-intro, .location-grid { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: 0; }
  .page-hero { padding: 52px 0 0; }
  .page-hero-media { min-height: 340px; margin-top: 34px; border-top: 5px solid var(--water); border-left: 0; }
  .image-frame img { min-height: 390px; }
  .service-group { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
  .service-row { grid-template-columns: 1fr; gap: 16px; }
  .media-panel video, .media-panel img { min-height: 320px; max-height: 480px; }
  .team-person { grid-template-columns: 1fr; gap: 6px; }
  .team-person.featured img { height: 440px; }
  .partner-rail { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .partner { min-width: 180px; border-bottom: 0 !important; scroll-snap-align: start; }
  .map-frame { min-height: 390px; border-top: 2px solid var(--ink); border-left: 0; }
  .map-frame iframe { min-height: 390px; }
  .cta-inner { grid-template-columns: 1fr; gap: 28px; }
  .cta .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .form-grid { grid-template-columns: 1fr; }
  .booking-modal { padding: 0; }
  .booking-panel { width: 100%; height: 100dvh; border: 0; border-radius: 0; }
  .booking-panel-header { padding: 16px 18px; }
  .booking-panel-header .eyebrow { display: none; }
  .booking-close { width: 42px; height: 42px; }
  .booking-fallback { padding: 10px 14px; }
}

@media (max-width: 470px) {
  h2 { font-size: 2.15rem; }
  .brand-copy small { display: none; }
  .button-row { display: grid; }
  .button-row .button { width: 100%; }
  .hero-media { min-height: 290px; }
  .hero-home { min-height: 640px; }
  .hero-home .hero-copy { padding-top: 108px; }
  .hero-home .button-row { display: flex; }
  .hero-home .button-row .button { width: auto; }
  .programme-links { gap: 10px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 0; border-right: 1px solid #3b3b3b; border-left: 1px solid #3b3b3b; }
  .facts, .location-details { grid-template-columns: 1fr; }
  .fact:nth-child(even), .location-detail:nth-child(even) { padding-left: 0; border-left: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { display: grid; }
}

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