@import url("tokens.css?v=aef05da8");

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--text);
  font-size: var(--step-0);
  line-height: 1.6;
  text-wrap: pretty;
}
::selection { background: var(--green-100); color: var(--green-950); }

img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { text-wrap: balance; margin: 0; }
h1 {
  font-family: var(--display);
  font-size: var(--step-3);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.035em;
}
h2 {
  font-family: var(--display);
  font-size: var(--step-2);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 var(--s5);
}
/* a heading belongs to what follows it: space above is larger than space below,
   and lists get a rule so the heading never sits directly on the first item */
:is(h2, h3) + .facts, :is(h2, h3) + .service-list, h2 + .kit, h2 + ul, h2 + ol {
  margin-top: var(--s6);
  padding-top: var(--s5);
  border-top: 1px solid var(--border);
}
.band-dark h2 + .facts, .band-dark h2 + .kit, .band-dark h2 + ul {
  border-top-color: rgb(255 255 255 / 0.18);
}
h3 + p, h2 + p { margin-top: 0; }
h3 { font-size: var(--step-1); font-weight: 600; line-height: 1.25; letter-spacing: -0.01em; }
p { margin: 0 0 var(--s4); max-width: 62ch; }
:where(main) a:not(.btn) { color: var(--green-700); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
:where(main) a:not(.btn):hover { color: var(--green-950); text-decoration-thickness: 2px; }
:where(main) a:not(.btn):visited { color: var(--green-800); }
.btn, .btn:hover, .btn:visited { text-decoration: none; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: var(--radius-1); }
.tabular { font-variant-numeric: tabular-nums; }

.skip {
  position: absolute; left: var(--s4); top: -60px; z-index: 60;
  background: var(--green-800); color: var(--on-dark); padding: var(--s3) var(--s4);
  border-radius: var(--radius-2); transition: top 150ms var(--ease-in);
}
.skip:focus { top: var(--s4); }

/* ---------- layout ---------- */
.wrap { width: min(1280px, 100% - 40px); margin-inline: auto; }
.wrap-narrow { width: min(720px, 100% - 40px); margin-inline: auto; }
@media (min-width: 900px) { .wrap { width: min(1280px, 100% - 80px); } .wrap-narrow { width: min(760px, 100% - 80px); } }
section { scroll-margin-top: 96px; padding-block: clamp(56px, 8vw, 120px); }
section.tight { padding-block: clamp(36px, 5vw, 72px); }
.section-label {
  font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: 700; color: var(--green-600); margin: 0 0 var(--s5);
  display: flex; align-items: center; gap: var(--s3);
}
.section-label::after { content: ""; height: 1px; background: currentColor; opacity: 0.28; flex: 1; }
.band-dark .section-label { color: var(--lime); }
.band-dark .section-label::after { background: rgb(247 245 236 / 0.22); }
.lede { font-size: var(--step-1); line-height: 1.4; max-width: 36ch; color: var(--ink-muted); }
.band-dark .lede { color: var(--green-200); }

/* ---------- header ---------- */
.topbar { display: none; background: var(--green-950); color: var(--green-200); font-size: var(--step--1); padding-block: var(--s2); }
@media (min-width: 760px) { .topbar { display: block; } }
.topbar .wrap { display: flex; flex-wrap: wrap; gap: var(--s2) var(--s5); justify-content: space-between; }
.topbar a:not(.btn) { color: var(--green-100); text-decoration: none; }
.topbar a:hover { color: var(--on-dark); text-decoration: underline; }

.masthead { background: var(--green-800); color: var(--on-dark); position: sticky; top: 0; z-index: 40; }
.masthead .wrap { display: flex; align-items: center; justify-content: space-between; gap: var(--s4); min-height: 64px; }
@media (min-width: 700px) { .masthead .wrap { min-height: 78px; } }
.brand { display: flex; align-items: center; gap: var(--s3); text-decoration: none; }
.brand img { width: 148px; height: auto; }
@media (min-width: 700px) { .brand img { width: 188px; } }
.nav { display: none; }
@media (min-width: 1000px) {
  .nav { display: block; }
  .nav-inner { display: flex; gap: var(--s5); align-items: center; }
  .nav-contact { display: none; }   /* panel-only: the topbar carries this on desktop */
}
.nav a:not(.btn) {
  color: #e7efe6; text-decoration: none; font-size: var(--step--1); font-weight: 600;
  padding: var(--s2) 0; border-bottom: 2px solid transparent;
  transition: border-color 150ms var(--ease-hover), color 150ms var(--ease-hover);
}
.nav a:not(.btn):hover { color: var(--on-dark); border-bottom-color: var(--lime); }
.nav a:not(.btn)[aria-current="page"] { color: var(--on-dark); border-bottom-color: var(--on-dark); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  min-height: 50px; padding: var(--s3) var(--s6);
  font: inherit; font-weight: 700; font-size: var(--step-0); letter-spacing: -0.005em;
  border-radius: var(--radius-pill); border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: background-color 160ms var(--ease-hover), color 160ms var(--ease-hover),
              border-color 160ms var(--ease-hover), transform 120ms var(--ease-hover);
}
.btn-primary { background: var(--accent); color: var(--on-dark); }
.btn-primary:hover { background: var(--accent-deep); }
.btn-primary:active { transform: scale(0.985); background: var(--green-950); }
.nav .btn-primary { min-height: 44px; padding-inline: var(--s5); }
.btn-secondary { background: transparent; color: inherit; border-color: currentColor; }
.btn-secondary:hover { background: rgb(247 245 236 / 0.12); }
.btn-secondary:active { transform: scale(0.985); }
.btn-on-light.btn-secondary { color: var(--green-800); border-color: var(--border-strong); }
.btn-on-light.btn-secondary:hover { background: var(--green-50); border-color: var(--green-700); }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.45; cursor: not-allowed; transform: none; }
.btn.is-loading { pointer-events: none; }
.btn.is-loading::before {
  content: ""; width: 15px; height: 15px; border-radius: var(--radius-pill);
  border: 2px solid currentColor; border-top-color: transparent; animation: spin 700ms linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- hero ---------- */
.hero { position: relative; isolation: isolate; background: var(--green-900); color: var(--on-dark); padding-block: 0; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 58%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(95deg, rgb(1 48 3 / 0.93) 0%, rgb(1 48 3 / 0.86) 44%, rgb(1 48 3 / 0.55) 74%, rgb(1 48 3 / 0.38) 100%),
    linear-gradient(to top, rgb(1 48 3 / 0.60), rgb(1 48 3 / 0) 42%);
}
.hero-copy { padding-block: clamp(48px, 10vw, 168px); max-width: 44rem; }
.hero h1 { max-width: 14ch; }
.hero h1 em { font-style: normal; color: var(--lime); }
.hero p { color: #e7efe5; max-width: 42ch; font-size: var(--step-0); line-height: 1.5; margin-top: var(--s5); }
@media (min-width: 760px) { .hero p { font-size: var(--step-1); line-height: 1.45; } }
.hero-credential {
  font-size: 0.82rem; color: #cfe0d2; border-top: 1px solid rgb(255 255 255 / 0.22);
  padding-top: var(--s4); margin-top: var(--s6); max-width: 58ch; line-height: 1.45; letter-spacing: 0.005em;
}
.hero-credential .full { display: none; }
@media (min-width: 760px) {
  .hero-credential { font-size: var(--step--1); margin-top: var(--s7); }
  .hero-credential .full { display: inline; }
  .hero-credential .short { display: none; }
}
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s6); }
@media (max-width: 520px) { .hero-actions { display: grid; grid-template-columns: 1fr; } .hero-actions .btn { width: 100%; } }
.reveal { animation: rise 620ms var(--ease-in) both; }
.reveal-2 { animation-delay: 90ms; }
.reveal-3 { animation-delay: 180ms; }

/* ---------- structure ---------- */
.grid { display: grid; gap: var(--s6); }
.cols-2 { display: grid; gap: var(--s6); grid-template-columns: 1fr; }
@media (min-width: 820px) { .cols-2 { grid-template-columns: 1fr 1fr; gap: var(--s7); } }
/* text-only sections: heading sits in a left rail so the measure stays readable
   and the space beside it is doing a job */
.rail { display: grid; gap: var(--s4); }
.rail > p { max-width: 62ch; }
@media (min-width: 900px) {
  .rail { grid-template-columns: 19rem 1fr; column-gap: var(--s9); row-gap: 0; align-items: start; }
  .rail > :is(h2, h3) { margin: 0; position: sticky; top: 108px; }
  .rail-body > :last-child { margin-bottom: 0; }
}

.split { display: grid; gap: var(--s7); align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: 0.85fr 1.15fr; gap: var(--s9); } }

/* two sections of the same value in a row need a keyline, or the seam disappears */
/* section jump links */
.jump { display: flex; flex-wrap: wrap; gap: var(--s2); margin-top: var(--s7); }
.jump a {
  font-size: 0.84rem; font-weight: 600; text-decoration: none;
  color: var(--green-800); background: var(--bone);
  border: 1px solid var(--border); border-radius: var(--radius-pill);
  padding: var(--s2) var(--s4); line-height: 1.4;
  transition: background-color 150ms var(--ease-hover), border-color 150ms var(--ease-hover), color 150ms var(--ease-hover);
}
.jump a:hover { background: var(--green-800); border-color: var(--green-800); color: var(--on-dark); }
.jump a:active { background: var(--green-950); border-color: var(--green-950); }

.band { background: var(--bone); }
.band + .band, .band:first-child { border-top: 1px solid var(--border); }
.band-dark + .band-dark { border-top: 1px solid rgb(255 255 255 / 0.16); }
.band + section:not(.band):not(.band-dark), section:not(.band):not(.band-dark) + .band { border-top: 0; }

.band-dark { background: var(--green-900); color: var(--on-dark); }
.band-dark p { color: #d5e2d6; }
.band-dark a:not(.btn) { color: var(--green-100); }
.band-dark a:not(.btn):hover { color: var(--lime); }

/* feature cards with image */
.feature { display: flex; flex-direction: column; }
.feature picture { display: block; overflow: hidden; border-radius: var(--radius-2); }
.feature img {
  aspect-ratio: 4 / 3; object-fit: cover; width: 100%;
  transition: transform 700ms var(--ease-in), filter 400ms var(--ease-hover);
}
.feature:hover img { transform: scale(1.02); }
.feature-body { padding: var(--s5) 0 0; display: flex; flex-direction: column; gap: var(--s3); flex: 1; border-top: 1px solid var(--ink); margin-top: var(--s5); }
.feature h3 { font-family: var(--display); font-size: var(--step-2); font-weight: 700; letter-spacing: -0.025em; }
.feature p { margin: 0; }
.feature .more { margin-top: auto; font-weight: 600; }

.service-list { list-style: none; margin: 0; padding: 0; }
.service-list li {
  border-top: 1px solid var(--border); padding: var(--s5) 0; display: grid; gap: var(--s2);
}
.service-list li:last-child { border-bottom: 1px solid var(--border); }
@media (min-width: 760px) { .service-list li { grid-template-columns: 17rem 1fr; gap: var(--s6); align-items: baseline; } }
.service-list b { font-weight: 700; font-size: var(--step-1); font-family: var(--display); letter-spacing: -0.02em; }
.service-list span { color: var(--ink-muted); }
.band-dark .service-list li { border-top-color: rgb(255 255 255 / 0.18); }
.band-dark .service-list li:last-child { border-bottom-color: rgb(255 255 255 / 0.18); }
.band-dark .service-list span { color: #cbdccd; }
.band-dark .service-list b a { color: var(--on-dark); text-decoration: none; }
.band-dark .service-list b a:hover { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }
.band-dark h1 em { font-style: normal; color: var(--lime); }

.kit { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s5); counter-reset: kit; }
.kit li {
  border-left: 2px solid var(--lime); padding-left: var(--s5); counter-increment: kit; position: relative;
}
.kit li::before {
  content: counter(kit, decimal-leading-zero); position: absolute; left: calc(-1 * var(--s7));
  font-family: var(--display); font-weight: 700; font-size: var(--step--1); color: var(--lime); display: none;
}
@media (min-width: 620px) { .kit li::before { display: block; } .kit { padding-left: var(--s7); } }
.kit b { display: block; font-weight: 700; font-size: var(--step-1); font-family: var(--display); letter-spacing: -0.02em; }
.kit span { color: #cbdccd; }

.facts { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s5); }
.facts li { display: grid; grid-template-columns: 1.1rem 1fr; gap: var(--s4); align-items: start; }
.facts li::before { content: ""; width: 9px; height: 9px; margin-top: 0.55em; border-radius: var(--radius-pill); background: var(--green-600); }

figure { margin: 0; }
figcaption { font-family: var(--text); font-style: normal; font-size: 0.94rem; color: var(--ink-muted); margin-top: var(--s4); max-width: 46ch; line-height: 1.4; }
.band-dark figcaption { color: var(--green-200); }
.photo { border-radius: var(--radius-3); overflow: hidden; }
.photo img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.photo-tall img { aspect-ratio: 4 / 5; }

.pullquote {
  font-family: var(--display); font-size: var(--step-2); line-height: 1.12; letter-spacing: -0.028em;
  max-width: 22ch; margin: 0; font-weight: 700;
}

.placeholder {
  border: 1px dashed var(--border-strong); background: var(--surface);
  padding: var(--s6); border-radius: var(--radius-3); color: var(--ink-muted);
  font-size: var(--step--1); max-width: 64ch;
}
.placeholder b { color: var(--ink); }

.trustbar { display: grid; gap: var(--s6); }
@media (min-width: 760px) { .trustbar { grid-template-columns: repeat(4, 1fr); } }
.trustbar div { border-top: 2px solid var(--green-800); padding-top: var(--s4); }
.trustbar div b { display: block; font-family: var(--display); font-size: var(--step-1); font-weight: 700; letter-spacing: -0.02em; margin-bottom: var(--s2); }
.trustbar div span { font-size: var(--step--1); color: var(--ink-muted); }

/* ---------- forms ---------- */
.field { display: grid; gap: var(--s2); margin-bottom: var(--s5); max-width: 32rem; }
.field label { font-size: var(--step--1); font-weight: 700; }
.field input, .field select, .field textarea {
  font: inherit; padding: var(--s3) var(--s4); min-height: 50px;
  border: 1.5px solid var(--border-strong); border-radius: var(--radius-2);
  background: var(--surface); color: var(--ink);
  transition: border-color 150ms var(--ease-hover);
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--green-600); }
.field .hint { font-size: var(--step--1); color: var(--ink-muted); margin: 0; }
.field .error { font-size: var(--step--1); color: var(--danger); font-weight: 600; margin: 0; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--danger); }

.choices { display: grid; gap: var(--s3); margin-bottom: var(--s6); }
@media (min-width: 640px) { .choices { grid-template-columns: 1fr 1fr; } }
.choice {
  text-align: left; background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius-2); padding: var(--s4) var(--s5); font: inherit; cursor: pointer; min-height: 68px;
  transition: border-color 150ms var(--ease-hover), background-color 150ms var(--ease-hover), transform 120ms var(--ease-hover);
}
.choice:hover { border-color: var(--green-600); background: var(--green-50); }
.choice:active { transform: scale(0.99); }
.choice[aria-pressed="true"] { border-color: var(--green-800); background: var(--green-50); }
.choice b { display: block; font-weight: 700; }
.choice span { font-size: var(--step--1); color: var(--ink-muted); }

.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(108px, 1fr)); gap: var(--s3); }
.slot {
  font: inherit; font-weight: 600; min-height: 50px; background: var(--surface);
  border: 1.5px solid var(--border); border-radius: var(--radius-pill); cursor: pointer; font-variant-numeric: tabular-nums;
  transition: background-color 150ms var(--ease-hover), border-color 150ms var(--ease-hover), transform 120ms var(--ease-hover);
}
.slot:hover { border-color: var(--green-600); background: var(--green-50); }
.slot:active { transform: scale(0.98); }
.slot[aria-pressed="true"] { background: var(--green-800); color: var(--on-dark); border-color: var(--green-800); }
.slot[disabled] { color: var(--ink-muted); background: var(--bg); text-decoration: line-through; cursor: not-allowed; }

.booking-head {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s4);
  margin-bottom: var(--s5); padding-bottom: var(--s4); border-bottom: 1px solid var(--border);
}
.booking-title {
  margin: 0; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-muted);
}
.booking-exit {
  font: inherit; font-size: 0.86rem; font-weight: 600; color: var(--ink-muted);
  background: transparent; border: 0; border-radius: var(--radius-pill);
  padding: var(--s2) var(--s3); margin-right: calc(-1 * var(--s3)); cursor: pointer;
  min-height: 40px; display: inline-flex; align-items: center; gap: var(--s2);
  transition: color 150ms var(--ease-hover), background-color 150ms var(--ease-hover);
}
.booking-exit span { font-size: 1.1em; line-height: 1; }
.booking-exit:hover { color: var(--ink); background: var(--bone); }
.booking-exit:active { background: var(--bg); }

.booking-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-3);
  padding: clamp(20px, 4vw, 48px); max-width: 780px; box-shadow: var(--shadow);
}
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s2);
  list-style: none; padding: 0; margin: 0 0 var(--s7); font-size: 0.78rem;
}
.steps li {
  color: var(--ink-muted); display: grid; gap: var(--s2); font-weight: 600;
  border-top: 3px solid var(--border); padding-top: var(--s3); line-height: 1.2;
}
.steps li[aria-current="step"] { color: var(--ink); border-top-color: var(--green-800); }
.steps li.is-done { border-top-color: var(--green-600); color: var(--ink); }
.steps li b { color: var(--green-600); font-family: var(--display); font-weight: 700; }

.panel { display: none; }
.panel.is-active { display: block; animation: rise 320ms var(--ease-in) both; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- sticky action bar ----------
   Full-bleed, and it gets out of the way whenever the same two actions are
   already on screen, so the page never shows the CTA twice. */
.mobilebar {
  position: fixed; inset: auto 0 0 0; z-index: 50;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgb(255 255 255 / 0.16);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(0);
  transition: transform 260ms cubic-bezier(0.4, 0, 0.2, 1), opacity 200ms linear;
  border-top: 1px solid rgb(205 224 166 / 0.30);
}
.mobilebar[data-tucked="true"] { transform: translateY(101%); opacity: 0; pointer-events: none; }
.mobilebar a {
  min-height: 56px; font-size: 0.86rem; padding-inline: var(--s3);
  white-space: nowrap; border-radius: 0; border: 0;
}
.mobilebar .btn-secondary { color: var(--on-dark); background: var(--green-950); }
.mobilebar .btn-secondary:hover { background: var(--green-900); color: var(--on-dark); }
.mobilebar .btn-secondary:active { background: var(--green-900); transform: none; }
.mobilebar .btn-primary:active { transform: none; }
@media (min-width: 1000px) { .mobilebar { display: none; } }
@media (max-width: 999px) { body { padding-bottom: 76px; } }

/* ---------- footer ---------- */
footer.site {
  background: var(--green-950); color: var(--green-100);
  padding-block: var(--s9) var(--s6);
  border-top: 1px solid rgb(205 224 166 / 0.30);
}
footer.site .grid { grid-template-columns: 1fr; gap: var(--s7); }
@media (min-width: 800px) { footer.site .grid { grid-template-columns: 1.5fr 1fr 1fr; } }
footer.site .foot-head { font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.12em; color: var(--lime); margin-bottom: var(--s4); font-weight: 700; }
footer.site ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s3); }
footer.site a:not(.btn) { color: var(--green-100); text-decoration: none; }
footer.site a:not(.btn):hover { color: var(--lime); text-decoration: underline; }
footer.site img { width: 200px; margin-bottom: var(--s5); }
.colophon { margin-top: var(--s8); padding-top: var(--s5); border-top: 1px solid rgb(247 245 236 / 0.16); font-size: var(--step--1); color: var(--green-200); display: flex; flex-wrap: wrap; gap: var(--s4); justify-content: space-between; }

/* ---------- mobile menu ---------- */
.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s3);
  font: inherit; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; line-height: 1;
  text-transform: uppercase; color: var(--on-dark); background: transparent;
  border: 1.5px solid rgb(247 245 236 / 0.4); border-radius: var(--radius-pill);
  min-height: 44px; padding: 0 var(--s5); cursor: pointer;
  transition: background-color 150ms var(--ease-hover);
}
/* uppercase tracking adds a trailing space after the last letter; pull it back
   so the pair reads optically centred, and reserve width so Menu/Close don't resize the button */
.menu-toggle .label { margin-right: -0.08em; min-width: 6.1ch; text-align: center; }
/* label swap: starts dimmed and slightly raised, never fully transparent, so a
   frozen animation still leaves the word readable */
.menu-toggle .label.is-swapping { animation: label-swap 220ms cubic-bezier(0.4, 0, 0.2, 1); }
@keyframes label-swap {
  from { opacity: 0.45; }
  to   { opacity: 1; }
}
.menu-toggle:hover { background: rgb(247 245 236 / 0.12); }
.menu-toggle:active { background: rgb(247 245 236 / 0.2); }
@media (min-width: 1000px) { .menu-toggle { display: none; } }
@media (max-width: 999px) {
  .masthead { position: sticky; }
  .nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--green-800);
    border-top: 1px solid rgb(255 255 255 / 0.16);
    box-shadow: 0 24px 40px -20px rgb(1 48 3 / 0.55);
    max-height: calc(100dvh - 64px);
    overflow-y: auto; overscroll-behavior: contain;
  }
  .nav.is-open { display: block; animation: nav-drop 240ms cubic-bezier(0.4, 0, 0.2, 1); }
  .nav-inner {
    display: grid;
    width: min(1280px, 100% - 40px); margin-inline: auto;
    padding-block: var(--s2) var(--s6);
  }
  .nav-inner > a:not(.btn) {
    padding: var(--s4) 0; border-bottom: 1px solid rgb(255 255 255 / 0.12);
    color: #eef4ec; text-decoration: none; font-weight: 600; font-size: 1.02rem;
    transition: color 150ms var(--ease-hover);
  }
  .nav a:not(.btn):active { color: var(--lime); }
  .nav a:not(.btn)[aria-current="page"] { color: var(--lime); }
  .nav a.btn { margin-top: var(--s6); justify-self: stretch; }
  .nav.is-open a {
    animation: nav-item 260ms cubic-bezier(0.4, 0, 0.2, 1);
    animation-delay: calc(40ms + var(--i, 0) * 22ms);
  }
  .nav-contact {
    margin-top: var(--s5); padding-top: var(--s4);
    border-top: 1px solid rgb(255 255 255 / 0.12);
    font-size: 0.86rem; color: var(--green-200); display: grid; gap: var(--s2);
  }
  .nav-contact a {
    color: var(--lime); text-decoration: none; font-weight: 700;
    font-size: 1.02rem; padding: 0; border-bottom: 0;
  }
  .nav-contact span { color: var(--green-200); }
  body.nav-open { overflow: hidden; }

  /* Hamburger → close. Two stages on one curve: the bars translate to the centre,
     then the outer two rotate. Reversed on the way back. The visible line is the
     pseudo-element, so translation and rotation can be timed independently. */
  .menu-toggle .bars { display: grid; gap: 4px; width: 17px; flex: none; }
  .menu-toggle .bars i {
    display: block; height: 2px; position: relative;
    transform: translateY(0);
    transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1) 170ms;
  }
  .menu-toggle .bars i::before {
    content: ""; position: absolute; inset: 0;
    background: currentColor; border-radius: 1px;
    transform: rotate(0deg);
    transition: transform 170ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
                opacity 120ms linear 170ms;
  }
  .menu-toggle[aria-expanded="true"] .bars i {
    transition-delay: 0ms;
  }
  .menu-toggle[aria-expanded="true"] .bars i::before {
    transition-delay: 170ms, 0ms;
  }
  .menu-toggle[aria-expanded="true"] .bars i:nth-child(1) { transform: translateY(6px); }
  .menu-toggle[aria-expanded="true"] .bars i:nth-child(3) { transform: translateY(-6px); }
  .menu-toggle[aria-expanded="true"] .bars i:nth-child(1)::before { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .bars i:nth-child(3)::before { transform: rotate(-45deg); }
  .menu-toggle[aria-expanded="true"] .bars i:nth-child(2)::before { opacity: 0; transition-delay: 0ms, 0ms; }
}

/* Slide only — never fade. A frozen or interrupted animation must never leave
   navigation invisible, so opacity is not animated here. */
@keyframes nav-drop {
  from { transform: translateY(-8px); }
  to   { transform: none; }
}
@keyframes nav-item {
  from { transform: translateY(-5px); }
  to   { transform: none; }
}

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

/* their pairing: lime on the dark green grounds */
.hero .btn-primary, .band-dark .btn-primary, .mobilebar .btn-primary {
  background: var(--lime); color: var(--green-950);
}
.hero .btn-primary:hover, .band-dark .btn-primary:hover, .mobilebar .btn-primary:hover { background: var(--lime-deep); }
.hero .btn-primary:active, .band-dark .btn-primary:active, .mobilebar .btn-primary:active { background: #a6c078; }
.masthead .btn-primary { background: var(--lime); color: var(--green-950); }
.masthead .btn-primary:hover { background: var(--lime-deep); }
.trustbar div { border-top-color: var(--green-800); }

/* ---------- service groups ---------- */
.group {
  border-top: 2px solid var(--ink);
  padding-top: var(--s5);
  margin-top: clamp(56px, 7vw, 104px);
}
.group:first-of-type { margin-top: 0; }
.group-head { display: grid; gap: var(--s3); margin-bottom: var(--s8); }
@media (min-width: 900px) {
  .group-head { grid-template-columns: 19rem 1fr; column-gap: var(--s9); align-items: baseline; }
}
.group-head h2 { margin: 0; font-size: var(--step-2); }
.group-head .group-note { margin: 0; color: var(--ink-muted); max-width: 52ch; }
.group-head .group-index {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green-600);
}

.service { padding-block: var(--s7); border-top: 1px solid var(--border); scroll-margin-top: 108px; }
.service:first-of-type { border-top: 0; padding-top: 0; }
.service h3 { font-size: var(--step-1); font-family: var(--display); letter-spacing: -0.02em; }
.band-dark .service { border-top-color: rgb(255 255 255 / 0.16); }

/* image-led service: photo and copy share the row, photo leads on wide screens */
.service-figure { display: grid; gap: var(--s6); align-items: center; }
@media (min-width: 900px) {
  .service-figure { grid-template-columns: 1fr 1fr; gap: var(--s9); }
  .service-figure.is-reversed > figure { order: 2; }
}
.service-figure figure { border-radius: var(--radius-3); overflow: hidden; }
.service-figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.service-figure figcaption { padding-top: var(--s3); }

/* one wide image moment per page */
.plate { position: relative; isolation: isolate; color: var(--on-dark); border-radius: var(--radius-3); overflow: hidden; }
.plate img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; object-position: 60% 55%; }
@media (max-width: 700px) { .plate img { aspect-ratio: 4 / 3; } }
.plate-copy {
  position: absolute; inset: auto 0 0 0; padding: clamp(20px, 4vw, 48px);
  background: linear-gradient(to top, rgb(1 48 3 / 0.92), rgb(1 48 3 / 0.55) 60%, rgb(1 48 3 / 0));
}
.plate-copy p { margin: 0; max-width: 46ch; color: #e7efe5; }
.plate-copy .plate-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--lime); margin-bottom: var(--s2);
}

/* ---------- FAQ ---------- */
.qa-list { border-top: 1px solid var(--border); max-width: 68rem; }
.qa { border-bottom: 1px solid var(--border); scroll-margin-top: 116px; }
.qa > summary {
  display: flex; align-items: baseline; gap: var(--s4);
  padding: var(--s5) 0; cursor: pointer; list-style: none;
  font-family: var(--display); font-size: var(--step-1); font-weight: 600;
  line-height: 1.25; letter-spacing: -0.01em;
}
.qa > summary::-webkit-details-marker { display: none; }
.qa-q { flex: 1; text-wrap: balance; }
.qa > summary::after {
  content: ""; flex: none; width: 11px; height: 11px; margin-top: 0.35em;
  border-right: 2px solid var(--green-600); border-bottom: 2px solid var(--green-600);
  transform: rotate(45deg); transition: transform 160ms var(--ease-in);
}
.qa[open] > summary::after { transform: rotate(-135deg); }
.qa > summary:hover .qa-q { color: var(--green-800); }
.qa-link {
  flex: none; color: var(--green-600); text-decoration: none; font-weight: 700;
  opacity: 0; transition: opacity 120ms var(--ease-in);
}
.qa > summary:hover .qa-link, .qa-link:focus-visible, .qa[open] .qa-link { opacity: 1; }
@media (hover: none) { .qa-link { opacity: 1; } }
.qa-a { padding-bottom: var(--s5); }
.qa-a > p { margin-bottom: 0; }
.qa:target > summary .qa-q { color: var(--green-800); }
