:root {
  --green: #046a32;
  --green-dark: #034b25;
  --green-deep: #022f18;
  --green-soft: #e9f1ec;
  --red: #dc0f1d;
  --red-dark: #b80e19;
  --ink: #17231d;
  --muted: #5d6962;
  --cream: #f4f2ec;
  --white: #fff;
  --line: #d9e0db;
  --shadow: 0 24px 60px rgba(8, 40, 22, .14);
  --shell: min(1180px, calc(100% - 40px));
  --heading: "Arial Narrow", "Aptos Narrow", "Roboto Condensed", Arial, sans-serif;
  --body: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

::selection { color: var(--white); background: var(--green); }

:focus-visible {
  outline: 3px solid #f0b700;
  outline-offset: 4px;
}

.shell { width: var(--shell); margin-inline: auto; }
.section-intro > *, .about__grid > *, .trust-band__grid > *, .contact__grid > *, .site-footer__main > * { min-width: 0; }
.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; }
.hidden-field { position: absolute !important; left: -10000px !important; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green-deep);
  border-radius: 4px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.topbar {
  position: relative;
  z-index: 31;
  color: #eff7f1;
  background: var(--green-deep);
  font-size: .78rem;
  letter-spacing: .04em;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
}

.topbar p { margin: 0; }
.topbar p span { margin-inline: 9px; color: #86b69b; }

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
}

.topbar svg { width: 14px; fill: currentColor; }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  height: 82px;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(4, 106, 50, .1);
  transition: box-shadow .25s ease, height .25s ease;
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled { height: 72px; box-shadow: 0 10px 35px rgba(8, 40, 22, .1); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--green);
  text-decoration: none;
}

.brand img {
  width: 84px;
  height: 55px;
  object-fit: contain;
}

.brand__words { display: grid; line-height: 1; }

.brand__words strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.brand__words span {
  margin-top: 5px;
  color: var(--muted);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.primary-nav > a:not(.button) {
  position: relative;
  color: #26362d;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button):focus-visible::after { transform: scaleX(1); transform-origin: left; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-deep);
  transition: transform .2s ease, opacity .2s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .025em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button--small { min-height: 44px; padding: 10px 18px; }
.button--red { color: var(--white); background: var(--red); box-shadow: 0 10px 25px rgba(220, 15, 29, .2); }
.button--red:hover { background: var(--red-dark); box-shadow: 0 14px 30px rgba(220, 15, 29, .25); }
.button--green { color: var(--white); background: var(--green); }
.button--green:hover { background: var(--green-dark); }
.button--ghost { color: var(--white); background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .55); backdrop-filter: blur(8px); }
.button--ghost:hover { background: var(--white); color: var(--green-deep); }
.button--light { color: var(--green-deep); background: var(--white); }

.hero {
  position: relative;
  min-height: min(780px, calc(100svh - 38px));
  color: var(--white);
  background: var(--green-deep);
  overflow: hidden;
}

.hero__image, .hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image { object-fit: cover; object-position: 50% 52%; }

.hero__shade {
  background:
    linear-gradient(90deg, rgba(2, 24, 12, .9) 0%, rgba(2, 32, 16, .7) 42%, rgba(2, 31, 16, .22) 72%, rgba(2, 31, 16, .12) 100%),
    linear-gradient(0deg, rgba(2, 24, 12, .38) 0%, transparent 44%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 760px) 1fr;
  gap: 70px;
  align-items: center;
  min-height: min(780px, calc(100svh - 38px));
  padding-block: 100px 126px;
}

.hero__copy { align-self: center; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--green);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span { width: 34px; height: 3px; background: var(--red); }
.eyebrow--light { color: #e7f4eb; }

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(4.2rem, 7.5vw, 7rem);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .88;
  text-wrap: balance;
  text-transform: uppercase;
}

.hero__lede {
  max-width: 650px;
  margin: 28px 0 0;
  color: #e5eee8;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  padding: 0;
  margin: 36px 0 0;
  list-style: none;
  color: #eff6f1;
  font-size: .84rem;
  font-weight: 700;
}

.hero__proof li { display: flex; align-items: center; gap: 8px; }
.hero__proof svg { width: 17px; fill: none; stroke: #90d2ac; stroke-width: 2.6; }

.hero__project-card {
  align-self: end;
  justify-self: end;
  width: min(290px, 100%);
  padding: 28px;
  margin-bottom: 6px;
  background: rgba(3, 75, 37, .88);
  border-top: 4px solid var(--red);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero__project-card span {
  color: #a9d4b9;
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero__project-card strong { display: block; margin-top: 10px; font-family: var(--heading); font-size: 1.45rem; line-height: 1.05; text-transform: uppercase; }
.hero__project-card p { margin: 12px 0 0; color: #dbe9df; font-size: .86rem; line-height: 1.6; }

.hero__scroll {
  position: absolute;
  bottom: 27px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .8);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero__scroll i { width: 1px; height: 30px; background: rgba(255, 255, 255, .55); animation: scroll-pulse 1.8s ease-in-out infinite; }

@keyframes scroll-pulse { 50% { transform: scaleY(.45); transform-origin: top; opacity: .4; } }

.service-strip { color: var(--white); background: var(--red); }

.service-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 34px);
  min-height: 62px;
  padding-block: 14px;
  font-family: var(--heading);
  font-size: clamp(.76rem, 1.1vw, .94rem);
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.service-strip i { width: 4px; height: 4px; border-radius: 50%; background: rgba(255, 255, 255, .55); }

.section { padding-block: clamp(82px, 10vw, 130px); }

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: end;
  margin-bottom: clamp(46px, 6vw, 76px);
}

.section-intro h2,
.about__copy h2,
.trust-band h2,
.contact h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .95;
  text-wrap: balance;
  text-transform: uppercase;
}

.section-intro > p,
.section-intro > div:last-child > p { max-width: 520px; margin: 0; color: var(--muted); font-size: 1.02rem; }

.services { background: var(--cream); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #cbd5ce;
  border-left: 1px solid #cbd5ce;
}

.service-card {
  position: relative;
  min-height: 338px;
  padding: 42px 38px 36px;
  background: rgba(255, 255, 255, .48);
  border-right: 1px solid #cbd5ce;
  border-bottom: 1px solid #cbd5ce;
  overflow: hidden;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.service-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  content: "";
  background: var(--red);
  transition: width .3s ease;
}

.service-card:hover { z-index: 1; color: var(--white); background: var(--green); transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card:hover::after { width: 100%; }

.service-card__number {
  position: absolute;
  top: 24px;
  right: 27px;
  color: #a2aea6;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.service-card__icon { width: 52px; margin-bottom: 36px; fill: none; stroke: var(--green); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; transition: stroke .25s ease; }
.service-card:hover .service-card__icon { stroke: #bfe0ca; }
.service-card:hover .service-card__number { color: #aad1b8; }

.service-card h3 { margin: 0; font-family: var(--heading); font-size: 1.65rem; line-height: 1.05; text-transform: uppercase; }
.service-card p { margin: 18px 0 0; color: var(--muted); font-size: .93rem; transition: color .25s ease; }
.service-card:hover p { color: #e1eee5; }

.projects { background: var(--white); }
.section-intro--projects > div:last-child { align-self: end; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--green);
  font-size: .86rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link:hover { text-decoration: underline; text-underline-offset: 5px; }

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

.project-card {
  position: relative;
  grid-column: span 4;
  min-height: 335px;
  padding: 0;
  background: var(--green-deep);
  border: 0;
  overflow: hidden;
  cursor: zoom-in;
}

.project-card--hero { grid-column: span 8; grid-row: span 2; min-height: 688px; }
.project-card--wide { grid-column: span 6; min-height: 390px; }

.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2, .7, .2, 1), opacity .35s ease; }
.project-card:hover img, .project-card:focus-visible img { transform: scale(1.045); opacity: .82; }

.project-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(2, 31, 16, .8), transparent 56%);
  pointer-events: none;
}

.project-card__overlay {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 23px;
  left: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 14px;
  color: var(--white);
  text-align: left;
}

.project-card__overlay small { grid-column: 1; color: #cbe1d2; font-size: .66rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.project-card__overlay strong { grid-column: 1; font-family: var(--heading); font-size: 1.35rem; line-height: 1.05; text-transform: uppercase; }
.project-card__overlay i { grid-column: 2; grid-row: 1 / span 2; align-self: center; display: grid; place-items: center; width: 42px; height: 42px; font-style: normal; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; transition: background .2s ease, color .2s ease; }
.project-card:hover .project-card__overlay i { color: var(--green-deep); background: var(--white); }

.about { background: var(--cream); overflow: hidden; }

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  gap: clamp(60px, 8vw, 112px);
  align-items: center;
}

.about__visual { position: relative; }
.about__visual::before { position: absolute; z-index: 0; top: -36px; left: -999px; width: 1050px; height: calc(100% + 72px); content: ""; background: var(--green-soft); }
.about__visual img { position: relative; z-index: 1; width: 100%; min-height: 570px; object-fit: cover; box-shadow: var(--shadow); }

.experience-badge {
  position: absolute;
  z-index: 2;
  right: -32px;
  bottom: -34px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 245px;
  padding: 23px 26px;
  color: var(--white);
  background: var(--red);
}

.experience-badge strong { font-family: var(--heading); font-size: 3.15rem; line-height: .8; }
.experience-badge span { font-size: .72rem; font-weight: 800; letter-spacing: .08em; line-height: 1.4; text-transform: uppercase; }

.about__lead { margin: 28px 0 0; color: var(--green-dark); font-size: 1.15rem; font-weight: 700; line-height: 1.65; }
.about__copy > p:not(.eyebrow):not(.about__lead) { margin: 18px 0 0; color: var(--muted); }

.check-list { display: grid; gap: 14px; padding: 0; margin: 30px 0 36px; list-style: none; }
.check-list li { display: grid; grid-template-columns: 26px 1fr; gap: 11px; align-items: start; color: var(--muted); font-size: .93rem; }
.check-list svg { width: 23px; height: 23px; padding: 4px; fill: none; stroke: var(--white); stroke-width: 2.6; background: var(--green); border-radius: 50%; }
.check-list strong { color: var(--ink); }

.trust-band { padding-block: clamp(78px, 9vw, 118px); color: var(--white); background: var(--green-deep); }
.trust-band__grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(520px, 1.22fr); gap: clamp(60px, 8vw, 120px); align-items: center; }
.trust-band h2 { font-size: clamp(2.8rem, 4.7vw, 4.3rem); }
.trust-band__copy > p:not(.eyebrow) { max-width: 560px; margin: 24px 0 30px; color: #c9dbcf; }
.trust-band__stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.2); border-left: 1px solid rgba(255,255,255,.2); }
.trust-band__stats div { min-height: 210px; padding: 37px 24px; border-right: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.trust-band__stats strong { display: block; color: #96cfaa; font-family: var(--heading); font-size: clamp(3.5rem, 6vw, 5.1rem); letter-spacing: -.04em; line-height: .9; }
.trust-band__stats span { display: block; margin-top: 18px; color: #d4e2d8; font-size: .72rem; font-weight: 800; letter-spacing: .07em; line-height: 1.5; text-transform: uppercase; }

.process { background: var(--white); }
.process-list { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding: 0; margin: 0; list-style: none; }
.process-list::before { position: absolute; top: 27px; right: 12.5%; left: 12.5%; height: 1px; content: ""; background: var(--line); }
.process-list li { position: relative; padding: 0 28px 0 0; }
.process-list li:not(:first-child) { padding-left: 28px; }
.process-list li > span { position: relative; z-index: 1; display: grid; place-items: center; width: 55px; height: 55px; color: var(--white); background: var(--green); border: 8px solid var(--white); border-radius: 50%; box-sizing: content-box; font-size: .68rem; font-weight: 900; }
.process-list h3 { margin: 26px 0 10px; font-family: var(--heading); font-size: 1.32rem; line-height: 1.1; text-transform: uppercase; }
.process-list p { margin: 0; color: var(--muted); font-size: .9rem; }

.contact { color: var(--white); background: var(--green-dark); }
.contact__grid { display: grid; grid-template-columns: minmax(340px, .82fr) minmax(500px, 1.18fr); gap: clamp(60px, 9vw, 120px); align-items: start; }
.contact__details > p:not(.eyebrow) { max-width: 560px; margin: 26px 0 0; color: #d0e0d5; }

.contact-methods { display: grid; gap: 12px; margin-top: 40px; }
.contact-methods a { display: flex; align-items: center; gap: 16px; width: fit-content; color: var(--white); text-decoration: none; }
.contact-methods a:hover strong { text-decoration: underline; text-underline-offset: 5px; }
.contact-methods svg { width: 46px; height: 46px; padding: 12px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; }
.contact-methods span { display: grid; }
.contact-methods small { color: #a9c8b4; font-size: .66rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.contact-methods strong { font-size: 1.05rem; }
.contact address { margin-top: 40px; color: #b8cebf; font-size: .9rem; font-style: normal; }

.enquiry-form {
  display: grid;
  gap: 20px;
  padding: clamp(28px, 5vw, 54px);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 70px rgba(0, 22, 10, .28);
}

.form-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 5px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.form-heading p { margin: 0; font-family: var(--heading); font-size: 1.8rem; font-weight: 900; line-height: 1; text-transform: uppercase; }
.form-heading span { color: var(--muted); font-size: .72rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.enquiry-form > label, .form-row label { display: grid; gap: 7px; color: #33443a; font-size: .77rem; font-weight: 800; }

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  color: var(--ink);
  background: #f8faf8;
  border: 1px solid #cfd8d1;
  border-radius: 0;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.enquiry-form input, .enquiry-form select { height: 50px; padding: 0 13px; }
.enquiry-form textarea { min-height: 135px; padding: 12px 13px; resize: vertical; }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { background: var(--white); border-color: var(--green); box-shadow: 0 0 0 3px rgba(4,106,50,.12); }
.enquiry-form textarea::placeholder { color: #8a958e; font-size: .86rem; }

.consent { display: grid !important; grid-template-columns: 18px 1fr; gap: 10px !important; align-items: start; color: var(--muted) !important; font-size: .73rem !important; font-weight: 500 !important; }
.consent input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--green); }
.consent a { color: var(--green); font-weight: 800; }
.button--submit { width: 100%; margin-top: 2px; border: 0; }
.form-note { margin: -4px 0 0; color: var(--muted); font-size: .75rem; text-align: center; }
.form-note a { color: var(--green); font-weight: 800; }

.site-footer { color: #c3d2c8; background: #011f10; }
.site-footer__main { display: grid; grid-template-columns: 1.5fr .65fr 1fr .65fr; gap: clamp(36px, 6vw, 85px); padding-block: 72px 58px; }
.site-footer__brand img { width: 175px; height: auto; padding: 5px; background: var(--white); }
.site-footer__brand p { max-width: 340px; margin: 20px 0 0; color: #9bb2a2; font-size: .85rem; }
.site-footer h2 { margin: 3px 0 20px; color: var(--white); font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; }
.site-footer__main > div:not(.site-footer__brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.site-footer__main a, .site-footer__main span { color: #aabdb0; font-size: .82rem; text-decoration: none; }
.site-footer__main a:hover { color: var(--white); }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; min-height: 69px; border-top: 1px solid rgba(255,255,255,.1); font-size: .7rem; }
.site-footer__bottom p { margin: 0; }
.site-footer__bottom > p { max-width: 850px; line-height: 1.55; }
.site-footer__bottom div { display: flex; gap: 22px; }
.site-footer__bottom a { color: inherit; text-decoration: none; }
.site-footer__bottom a:hover { color: var(--white); }

.mobile-actions { display: none; }

.project-dialog {
  width: min(1100px, calc(100% - 32px));
  max-width: none;
  padding: 0;
  background: #07140d;
  border: 0;
  box-shadow: 0 40px 100px rgba(0,0,0,.45);
}

.project-dialog::backdrop { background: rgba(0, 15, 7, .84); backdrop-filter: blur(8px); }
.project-dialog figure { margin: 0; }
.project-dialog img { width: 100%; max-height: 78vh; object-fit: contain; }
.project-dialog figcaption { padding: 16px 20px; color: var(--white); font-size: .86rem; }
.project-dialog__close { position: absolute; z-index: 2; top: 12px; right: 12px; display: grid; place-items: center; width: 44px; height: 44px; padding: 0 0 4px; color: var(--white); background: rgba(0,0,0,.58); border: 1px solid rgba(255,255,255,.4); border-radius: 50%; font-size: 2rem; line-height: 1; cursor: pointer; }

.utility-page { min-height: 100vh; background: var(--cream); }
.utility-header { background: var(--white); border-bottom: 1px solid var(--line); }
.utility-header .shell { display: flex; align-items: center; justify-content: space-between; min-height: 82px; }
.utility-header .text-link { margin: 0; }
.utility-main { padding-block: clamp(68px, 9vw, 110px); }
.legal-copy { max-width: 830px; padding: clamp(30px, 6vw, 72px); background: var(--white); box-shadow: var(--shadow); }
.legal-copy h1, .thank-you h1 { margin: 0; font-family: var(--heading); font-size: clamp(3.2rem, 8vw, 5.8rem); font-weight: 900; letter-spacing: -.05em; line-height: .9; text-transform: uppercase; }
.legal-copy__updated { margin: 20px 0 36px !important; color: var(--muted); font-size: .8rem; font-weight: 800; }
.legal-copy h2 { margin: 38px 0 10px; color: var(--green-dark); font-family: var(--heading); font-size: 1.55rem; line-height: 1.1; text-transform: uppercase; }
.legal-copy p { margin: 0 0 15px; color: #46544c; }
.legal-copy a { color: var(--green); font-weight: 700; }
.utility-footer { color: #baccc0; background: var(--green-deep); }
.utility-footer .shell { display: flex; align-items: center; justify-content: space-between; gap: 30px; min-height: 72px; font-size: .78rem; }
.utility-footer p { margin: 0; }
.utility-footer a { color: var(--white); }

.thank-you-page { min-height: 100vh; color: var(--ink); background: var(--green-deep) url('/assets/hero-garden.jpg') center / cover no-repeat fixed; }
.thank-you-page::before { position: fixed; inset: 0; content: ""; background: rgba(1, 31, 16, .85); }
.thank-you { position: relative; z-index: 1; display: grid; place-items: center; min-height: 100vh; padding: 28px; }
.thank-you__panel { width: min(680px, 100%); padding: clamp(34px, 7vw, 68px); background: var(--white); box-shadow: 0 35px 90px rgba(0,0,0,.36); text-align: center; }
.thank-you__panel > a:first-child { display: inline-block; }
.thank-you__panel > a:first-child img { width: 145px; padding: 4px; background: var(--white); }
.thank-you__tick { display: grid; place-items: center; width: 56px; height: 56px; margin: 30px auto 25px; color: var(--white); background: var(--green); border-radius: 50%; font-size: 1.7rem; }
.thank-you .eyebrow { justify-content: center; }
.thank-you p:not(.eyebrow) { max-width: 520px; margin: 25px auto 0; color: var(--muted); }
.thank-you p a { color: var(--green); font-weight: 800; }
.thank-you__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 32px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.service-grid .reveal:nth-child(2), .project-grid .reveal:nth-child(2), .process-list .reveal:nth-child(2) { transition-delay: .08s; }
.service-grid .reveal:nth-child(3), .project-grid .reveal:nth-child(3), .process-list .reveal:nth-child(3) { transition-delay: .16s; }
.service-grid .reveal:nth-child(5), .process-list .reveal:nth-child(4) { transition-delay: .08s; }
.service-grid .reveal:nth-child(6) { transition-delay: .16s; }

@media (max-width: 1080px) {
  .primary-nav { gap: 17px; }
  .primary-nav > a:not(.button) { font-size: .83rem; }
  .hero__inner { grid-template-columns: minmax(0, 680px) 1fr; gap: 35px; }
  .hero__project-card { width: 240px; padding: 22px; }
  .service-card { min-height: 350px; padding-inline: 30px; }
  .trust-band__grid { grid-template-columns: 1fr; }
  .trust-band__stats { max-width: 760px; }
  .contact__grid { gap: 50px; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 760px); }
  html { scroll-padding-top: 79px; }
  .topbar { display: none; }
  .site-header, .site-header.is-scrolled { height: 72px; }
  .brand img { width: 72px; height: 47px; }
  .brand__words strong { font-size: 1.18rem; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    gap: 0;
    padding: 30px 24px 35px;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(3,49,24,.16);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform .3s ease, visibility .3s;
  }
  .primary-nav.is-open { transform: translateY(0); visibility: visible; }
  .primary-nav > a:not(.button) { padding: 13px 5px; font-size: 1rem; border-bottom: 1px solid var(--line); }
  .primary-nav > a:not(.button)::after { display: none; }
  .primary-nav .button { margin-top: 20px; }
  .hero, .hero__inner { min-height: 690px; }
  .hero__inner { display: flex; align-items: center; padding-block: 84px 110px; }
  .hero__copy { max-width: 700px; }
  .hero h1 { font-size: clamp(4rem, 12vw, 6rem); }
  .hero__project-card { display: none; }
  .service-strip__inner { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .service-strip__inner::-webkit-scrollbar { display: none; }
  .service-strip span { flex: 0 0 auto; }
  .section-intro { grid-template-columns: 1fr; gap: 25px; }
  .section-intro > p, .section-intro > div:last-child > p { max-width: 650px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card, .project-card--wide { grid-column: span 6; min-height: 330px; }
  .project-card--hero { grid-column: span 12; grid-row: auto; min-height: 510px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { max-width: 680px; }
  .about__visual img { min-height: 500px; }
  .about__copy { max-width: 680px; }
  .process-list { grid-template-columns: 1fr 1fr; gap: 42px 28px; }
  .process-list::before { display: none; }
  .process-list li, .process-list li:not(:first-child) { padding: 0; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__details { max-width: 650px; }
  .enquiry-form { max-width: 760px; }
  .site-footer__main { grid-template-columns: 1.5fr 1fr 1fr; }
  .site-footer__main > div:last-child { grid-column: 2; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 28px); }
  body { padding-bottom: 64px; }
  .brand img { width: 62px; height: 41px; }
  .brand__words strong { font-size: 1.03rem; letter-spacing: .05em; }
  .brand__words span { font-size: .56rem; letter-spacing: .13em; }
  .hero, .hero__inner { min-height: 670px; }
  .hero__image { object-position: 58% 50%; }
  .hero__shade { background: linear-gradient(90deg, rgba(2,24,12,.9), rgba(2,31,16,.48)), linear-gradient(0deg, rgba(2,24,12,.44), transparent 55%); }
  .hero__inner { padding-block: 70px 90px; }
  .hero h1 { font-size: clamp(3.45rem, 16vw, 5rem); }
  .hero__lede { margin-top: 23px; font-size: 1rem; line-height: 1.55; }
  .hero__actions { display: grid; margin-top: 29px; }
  .hero__actions .button { width: 100%; }
  .hero__proof { gap: 9px 16px; margin-top: 25px; font-size: .75rem; }
  .hero__proof li:last-child { display: none; }
  .hero__scroll { display: none; }
  .service-strip__inner { min-height: 54px; }
  .section { padding-block: 78px; }
  .section-intro { margin-bottom: 42px; }
  .section-intro h2, .about__copy h2, .trust-band h2, .contact h2 { font-size: clamp(2.35rem, 10.8vw, 3.1rem); letter-spacing: -.035em; overflow-wrap: break-word; text-wrap: wrap; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 34px 28px 32px; }
  .service-card__icon { margin-bottom: 26px; }
  .project-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .project-card, .project-card--wide, .project-card--hero { grid-column: 1; min-height: 285px; }
  .project-card--hero { min-height: 400px; }
  .project-card__overlay { right: 18px; bottom: 17px; left: 18px; }
  .about__grid { gap: 70px; }
  .about__visual img { min-height: 420px; }
  .experience-badge { right: 0; bottom: -35px; min-width: 215px; padding: 20px; }
  .experience-badge strong { font-size: 2.7rem; }
  .trust-band__grid { gap: 45px; }
  .trust-band__stats { grid-template-columns: 1fr; }
  .trust-band__stats div { min-height: auto; padding: 28px; }
  .trust-band__stats strong { font-size: 4rem; }
  .process-list { grid-template-columns: 1fr; gap: 35px; }
  .process-list li { display: grid; grid-template-columns: 55px 1fr; column-gap: 18px; }
  .process-list li > span { grid-row: span 2; width: 44px; height: 44px; border-width: 5px; }
  .process-list h3 { margin: 3px 0 7px; }
  .process-list p { grid-column: 2; }
  .contact__grid { gap: 48px; }
  .contact-methods strong { font-size: .94rem; }
  .enquiry-form { gap: 17px; padding: 25px 20px; }
  .form-heading { display: grid; gap: 8px; }
  .form-row { grid-template-columns: 1fr; gap: 17px; }
  .site-footer__main { grid-template-columns: 1fr 1fr; gap: 38px 25px; padding-block: 55px 45px; }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__main > div:last-child { grid-column: auto; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 17px; }
  .utility-header .shell { min-height: 72px; }
  .utility-header .text-link { font-size: .72rem; }
  .utility-header .text-link span { display: none; }
  .legal-copy { padding: 30px 22px; }
  .utility-footer .shell { align-items: flex-start; flex-direction: column; justify-content: center; gap: 4px; padding-block: 17px; }
  .thank-you { padding: 15px; }
  .thank-you__panel { padding: 35px 22px; }
  .thank-you h1 { font-size: clamp(2.7rem, 15vw, 4.2rem); }
  .thank-you__actions { display: grid; }
  .mobile-actions {
    position: fixed;
    z-index: 40;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    min-height: 64px;
    color: var(--white);
    background: var(--green-deep);
    box-shadow: 0 -8px 28px rgba(0, 25, 12, .18);
  }
  .mobile-actions a { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .83rem; font-weight: 900; text-decoration: none; }
  .mobile-actions a + a { background: var(--red); }
  .mobile-actions svg { width: 18px; fill: currentColor; }
}

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

@media print {
  .topbar, .site-header, .hero__scroll, .mobile-actions, .project-dialog { display: none !important; }
  body { padding: 0; color: #000; }
  .hero { min-height: auto; padding: 40px 0; color: #000; background: #fff; }
  .hero__image, .hero__shade { display: none; }
  .hero__inner { display: block; min-height: auto; padding: 0; }
  .button { color: #000; border: 1px solid #000; box-shadow: none; }
  .section { padding-block: 45px; }
}
