/* ==========================================================================
   Murcon Safety Solutions
   ========================================================================== */

:root {
  --green-900: #0b3b22;
  --green-800: #0f4d2c;
  --green-700: #14603a;
  --lime-500: #7ab929;
  --lime-600: #5f9a1f;
  --ink-900: #111512;
  --ink-700: #3a423d;
  --ink-500: #656e68;
  --line: #e3e7e4;
  --bg-tint: #f5f7f5;
  --white: #ffffff;

  --wrap: 1200px;
  --gutter: 24px;
  --radius: 2px;
  --shadow-sm: 0 1px 2px rgba(17, 21, 18, 0.06);
  --shadow-md: 0 12px 32px rgba(17, 21, 18, 0.1);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink-700);
  font-family: "Barlow", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--green-700);
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink-900);
  font-family: "Archivo", "Barlow", "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 12px 18px;
  background: var(--green-800);
  color: var(--white);
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

:focus-visible {
  outline: 3px solid var(--lime-500);
  outline-offset: 2px;
}

/* --------------------------------------------------------------- Buttons -- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-family: "Archivo", "Barlow", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn svg {
  flex: none;
  transition: transform 0.25s var(--ease);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn--primary {
  background: var(--green-800);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--green-900);
}

.btn--ghost {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink-900);
}

.btn--ghost:hover {
  border-color: var(--green-800);
  color: var(--green-800);
}

.btn--light {
  background: var(--white);
  color: var(--green-900);
}

.btn--light:hover {
  background: #eef2ee;
}

.btn--outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Archivo", "Barlow", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-900);
}

.textlink svg {
  transition: transform 0.25s var(--ease);
}

.textlink:hover {
  color: var(--green-800);
}

.textlink:hover svg {
  transform: translateX(4px);
}

/* ---------------------------------------------------------------- Header -- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 92px;
}

.logo img {
  height: 72px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.nav a {
  position: relative;
  padding: 6px 0;
  font-family: "Archivo", "Barlow", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-900);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--green-800);
  transition: right 0.25s var(--ease);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  right: 0;
}

.site-header .btn {
  padding: 13px 20px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink-900);
  transition: transform 0.25s var(--ease), opacity 0.2s linear;
}

.nav-toggle span {
  margin: 0 auto;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* ------------------------------------------------------------------ Hero -- */

.hero {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 0;
}

.hero__copy {
  padding: 78px 56px 78px 0;
  max-width: 620px;
}

.hero__title {
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  text-transform: uppercase;
}

.hero__title span {
  display: block;
  color: var(--green-800);
}

.hero__lead {
  margin: 26px 0 18px;
  max-width: 30ch;
  font-family: "Archivo", "Barlow", sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink-900);
}

.hero__text {
  max-width: 46ch;
  color: var(--ink-700);
}

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

.hero__media {
  position: relative;
  align-self: stretch;
  min-height: 460px;
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

@media (min-width: 861px) {
  /* Bleed the hero photo to the right edge of the viewport, but never pull it
     inwards on screens narrower than the content wrapper. */
  .hero__media {
    margin-right: min(0px, calc((100vw - var(--wrap)) / -2));
  }
}

/* --------------------------------------------------------------- Pillars -- */

.pillars {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.pillar {
  display: flex;
  flex-direction: column;
  padding: 34px 30px 30px;
  border-right: 1px solid var(--line);
  transition: background-color 0.25s var(--ease);
}

.pillar:first-child {
  padding-left: 0;
}

.pillar:last-child {
  padding-right: 0;
  border-right: 0;
}

.pillar:hover {
  background: var(--bg-tint);
}

.pillar__head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pillar__icon {
  flex: none;
  color: var(--green-800);
}

.pillar h3 {
  font-size: 1.0625rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pillar__rule {
  width: 34px;
  height: 3px;
  margin: 16px 0 14px;
  background: var(--lime-500);
}

.pillar p {
  flex: 1 1 auto;
  font-size: 0.9375rem;
  color: var(--ink-500);
}

/* -------------------------------------------------------------- Sections -- */

.section {
  padding: 92px 0;
}

.section--tint {
  background: var(--bg-tint);
}

/* Sections targeted by the pillar "Find out more" links.
   scroll-margin keeps the title clear of the sticky header. */
/* The four home page pillar sections, targeted by the "Find out more" links. */
.section--pillar {
  scroll-margin-top: 93px; /* matches the sticky header height incl. border */
}

.section--pillar h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  text-transform: uppercase;
}

.rule-lime {
  width: 56px;
  height: 4px;
  margin-top: 20px;
  background: var(--lime-500);
}

.section--dark {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.82);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: "Archivo", "Barlow", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-800);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--lime-500);
}

.section--dark .eyebrow {
  color: var(--lime-500);
}

.section__head {
  max-width: 720px;
  margin-bottom: 52px;
}

.section__head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  text-transform: uppercase;
}

.section__head p {
  margin-top: 18px;
  font-size: 1.0625rem;
}

/* Sentence-case heading, as used by the client-supplied page designs. */
.section__head--sentence h2 {
  text-transform: none;
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.section__head--center .eyebrow {
  justify-content: center;
}

/* ------------------------------------------------------------ Page hero -- */

.page-hero {
  padding: 76px 0 70px;
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.8);
}

.page-hero h1 {
  max-width: 20ch;
  font-size: clamp(2.2rem, 4.6vw, 3.5rem);
  color: var(--white);
  text-transform: uppercase;
}

.page-hero p {
  max-width: 58ch;
  margin: 20px 0 0;
  font-size: 1.0625rem;
}

.page-hero .eyebrow {
  color: var(--lime-500);
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.62);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.62);
}

.breadcrumb a:hover {
  color: var(--white);
}

/* Breadcrumb sitting on a light background rather than the dark hero. */
.breadcrumb--ink,
.breadcrumb--ink a {
  color: var(--ink-500);
}

.breadcrumb--ink a:hover {
  color: var(--green-800);
}

/* ------------------------------------------------------------ Two column -- */

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 64px;
}

.split__copy h2 {
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  text-transform: uppercase;
}

.split__media img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
}

.split--reverse .split__media {
  order: 2;
}

.ticks li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 12px;
  color: var(--ink-700);
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 10px;
  border-left: 2.5px solid var(--lime-500);
  border-bottom: 2.5px solid var(--lime-500);
  transform: rotate(-45deg);
}

.section--dark .ticks li {
  color: rgba(255, 255, 255, 0.82);
}

/* --------------------------------------------------------------- Prompts -- */
/* Temporary scaffolding: content-gathering questions shown in place of copy.
   Delete these blocks (and this section of the stylesheet) once the real
   content lands. */

.draft-note {
  padding: 14px 0;
  background: #fff8e6;
  border-bottom: 1px solid #f0e0b8;
  font-size: 0.875rem;
  color: #6b5518;
}

.draft-note strong {
  color: #4a3a0d;
}

.prompt {
  display: flex;
  flex-direction: column;
  padding: 28px 30px;
  background: #fbfcfb;
  border: 1.5px dashed #c2ccc6;
  border-left: 4px solid var(--lime-500);
  border-radius: var(--radius);
}

.prompt__label {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 5px 10px;
  background: var(--green-800);
  border-radius: var(--radius);
  font-family: "Archivo", "Barlow", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.prompt h3 {
  font-size: 1.0625rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.prompt > p {
  margin: 12px 0 0;
  font-size: 0.9375rem;
  color: var(--ink-500);
}

.prompt ul {
  margin-top: 16px;
}

.prompt ul li {
  position: relative;
  margin-bottom: 11px;
  padding-left: 22px;
  font-size: 0.9375rem;
  color: var(--ink-700);
}

.prompt ul li:last-child {
  margin-bottom: 0;
}

.prompt ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 2px;
  background: var(--lime-600);
}

/* ----------------------------------------------------------------- Cards -- */

.cards {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  display: flex;
  flex-direction: column;
  padding: 32px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease),
    border-color 0.28s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  border-color: #cfd8d2;
  box-shadow: var(--shadow-md);
}

.card__icon {
  margin-bottom: 20px;
  color: var(--green-800);
}

.card h3 {
  font-size: 1.125rem;
  letter-spacing: 0.02em;
}

.card p {
  margin: 14px 0 0;
  font-size: 0.9375rem;
  color: var(--ink-500);
}

.card ul {
  margin-top: 16px;
}

.card .textlink {
  margin-top: 22px;
}

.card--flush {
  padding: 0;
  overflow: hidden;
}

.card--flush img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.card--flush .card__body {
  padding: 26px 28px 30px;
}

/* ----------------------------------------------------------------- Stats -- */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.stat__num {
  font-family: "Archivo", "Barlow", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}

.stat__label {
  margin-top: 10px;
  font-size: 0.9375rem;
}

/* ----------------------------------------------------------------- Steps -- */

.steps {
  counter-reset: step;
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.step {
  position: relative;
  padding-top: 26px;
  border-top: 3px solid var(--line);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 10px;
  font-family: "Archivo", "Barlow", sans-serif;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--lime-600);
}

.step h3 {
  font-size: 1.0625rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.step p {
  margin: 12px 0 0;
  font-size: 0.9375rem;
  color: var(--ink-500);
}

/* -------------------------------------------------------------- Sectors -- */

.sector-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.sector {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--lime-500);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.sector:hover {
  transform: translateX(3px);
  box-shadow: var(--shadow-md);
}

.sector h3 {
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sector p {
  margin: 6px 0 0;
  font-size: 0.875rem;
  color: var(--ink-500);
}

.sector svg {
  flex: none;
  color: var(--green-800);
}

/* ------------------------------------------------------------------- CTA -- */

.cta {
  position: relative;
  padding: 84px 0;
  background: var(--green-800);
  color: rgba(255, 255, 255, 0.85);
  overflow: hidden;
}

.cta::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  background: rgba(122, 185, 41, 0.16);
  border-radius: 50%;
}

.cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta h2 {
  max-width: 24ch;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--white);
  text-transform: uppercase;
}

.cta p {
  max-width: 52ch;
  margin: 14px 0 0;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ----------------------------------------------------------------- Forms -- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: start;
}

.contact-grid .section__head {
  margin-bottom: 32px;
}

.form {
  position: relative;
  display: grid;
  gap: 18px;
}

.form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-family: "Archivo", "Barlow", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-900);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--ink-900);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(20, 96, 58, 0.12);
}

.field--check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--ink-500);
}

.field--check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--green-800);
}

.form__note {
  font-size: 0.8125rem;
  color: var(--ink-500);
}

.field--honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__status {
  display: none;
  padding: 14px 16px;
  border-left: 3px solid var(--lime-500);
  background: #f0f6ea;
  font-size: 0.9375rem;
  color: var(--green-900);
}

.form__status.is-visible {
  display: block;
}

.contact-aside {
  padding: 34px 32px 28px;
  background: var(--bg-tint);
  border-top: 3px solid var(--green-800);
}

.contact-aside h3 {
  font-size: 1.0625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list {
  margin-top: 26px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  font-size: 0.9375rem;
}

.contact-list li:last-child {
  border-bottom: 0;
}

.contact-list .icon-badge {
  color: var(--green-800);
}

.contact-list strong {
  display: block;
  margin-bottom: 2px;
  font-family: "Archivo", "Barlow", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ink-900);
}

.contact-list a {
  color: var(--ink-500);
}

.contact-list a:hover {
  color: var(--green-800);
}

/* ------------------------------------------------------------------- FAQ -- */

.faq {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  font-family: "Archivo", "Barlow", sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink-900);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  flex: none;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--green-800);
}

.faq details[open] summary::after {
  content: "\2013";
}

.faq details p {
  margin: 0 0 22px;
  max-width: 68ch;
  color: var(--ink-500);
}

/* ---------------------------------------------------------------- Footer -- */

.site-footer {
  padding: 68px 0 0;
  background: var(--ink-900);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9375rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 52px;
}

/* logo-footer.png is a white knockout of the logo with a transparent
   background, so it needs no filter. The supplied logo.png has an opaque
   white background and cannot be used on a dark surface. */
.site-footer img {
  height: 60px;
  width: auto;
  margin-bottom: 22px;
}

.site-footer p {
  max-width: 38ch;
  line-height: 1.55;
}

.site-footer h4 {
  margin-bottom: 18px;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer a:hover {
  color: var(--lime-500);
}

.site-footer li {
  margin-bottom: 11px;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8125rem;
}

.site-footer__bottom a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Legal pages ----------------------------------------------------------- */

.legal {
  max-width: 760px;
}

.legal__updated {
  margin: 0 0 36px;
  font-size: 0.9375rem;
  color: var(--ink-500);
}

.legal h2 {
  margin: 40px 0 14px;
  font-size: 1.25rem;
  letter-spacing: 0;
  text-transform: none;
}

.legal p {
  margin: 12px 0 0;
  color: var(--ink-500);
}

.legal ul,
.legal ol {
  margin: 12px 0 0;
  padding-left: 1.25em;
}

.legal ul {
  list-style: disc;
}

.legal ol {
  list-style: decimal;
}

.legal li {
  margin-bottom: 8px;
  color: var(--ink-500);
}

.legal li:last-child {
  margin-bottom: 0;
}

.legal a {
  color: var(--green-800);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal a:hover {
  color: var(--lime-600);
}

/* ==========================================================================
   Components for the client-supplied page designs
   ========================================================================== */

/* Shared: circular tinted icon badge ------------------------------------- */

.icon-badge {
  display: grid;
  place-items: center;
  flex: none;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #e7efe2;
  color: var(--green-800);
}

.icon-badge--sm {
  width: 50px;
  height: 50px;
}

/* Shared: dash bullet list ---------------------------------------------- */

.dashlist li {
  position: relative;
  margin-bottom: 11px;
  padding-left: 24px;
  color: var(--ink-700);
}

.dashlist li:last-child {
  margin-bottom: 0;
}

.dashlist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 2px;
  background: var(--lime-600);
}

.dashlist strong {
  color: var(--ink-900);
}

/* Page hero with photographic background -------------------------------- */

.page-hero--photo {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 88px 0 96px;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 45%;
}

.page-hero__bg--tower {
  object-position: 68% 50%;
}

.page-hero__bg--site {
  object-position: 50% 42%;
}

.page-hero__bg--city {
  object-position: 58% 40%;
}

.page-hero--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    95deg,
    rgba(11, 59, 34, 0.94) 0%,
    rgba(11, 59, 34, 0.78) 36%,
    rgba(11, 59, 34, 0.46) 64%,
    rgba(11, 59, 34, 0.28) 100%
  );
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero--contact {
  min-height: 280px;
  padding: 52px 0 58px;
}

.page-hero--contact::after {
  background: linear-gradient(
    90deg,
    rgba(11, 59, 34, 0.96) 0%,
    rgba(11, 59, 34, 0.88) 26%,
    rgba(11, 59, 34, 0.42) 52%,
    rgba(11, 59, 34, 0.18) 78%,
    rgba(11, 59, 34, 0.22) 100%
  );
}

.page-hero--contact .page-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 168px;
}

.page-hero--contact h1 {
  max-width: none;
}

.page-hero__tagline {
  margin: 14px 0 0;
  font-family: "Archivo", "Barlow", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}

.page-hero__claim {
  margin: 28px 0 0;
  max-width: none;
  font-family: "Archivo", "Barlow", sans-serif;
  font-size: clamp(0.8125rem, 1.3vw, 0.9375rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

@media (min-width: 860px) {
  .page-hero__claim {
    position: absolute;
    right: 0;
    bottom: 4px;
    margin: 0;
    text-align: right;
  }
}

/* Service cards --------------------------------------------------------- */

.svc-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.svc-grid + .svc-grid {
  margin-top: 22px;
}

.svc-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.svc-card {
  display: flex;
  flex-direction: column;
  padding: 30px 28px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease),
    border-color 0.28s var(--ease);
}

.svc-card:hover {
  transform: translateY(-4px);
  border-color: #cfd8d2;
  box-shadow: var(--shadow-md);
}

.svc-card .icon-badge {
  margin-bottom: 24px;
}

.svc-card h3 {
  font-size: 1.0625rem;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
}

.svc-card p {
  margin: 14px 0 0;
  font-size: 0.9375rem;
  color: var(--ink-500);
}

.svc-card .textlink {
  margin-top: auto;
  padding-top: 24px;
}

/* Sector cards ---------------------------------------------------------- */

.sector-list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sector-item {
  display: flex;
  gap: 22px;
  padding: 26px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease),
    border-color 0.28s var(--ease);
}

.sector-item:hover {
  transform: translateY(-3px);
  border-color: #cfd8d2;
  box-shadow: var(--shadow-md);
}

.sector-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.sector-item h3 {
  font-size: 1.0625rem;
  letter-spacing: 0;
  text-transform: none;
}

.sector-item__arrow {
  flex: none;
  color: var(--lime-600);
  transition: transform 0.25s var(--ease);
}

.sector-item:hover .sector-item__arrow {
  transform: translateX(4px);
}

.sector-item p {
  margin: 12px 0 0;
  font-size: 0.9375rem;
  color: var(--ink-500);
}

/* Tinted band with supporting image ------------------------------------- */

.svc-grid + .band,
.sector-list + .band {
  margin-top: 22px;
}

.band {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 40px;
  background: linear-gradient(90deg, #eef3ec 0%, #e9f0e6 100%);
  border-radius: var(--radius);
  overflow: hidden;
}

.band__copy {
  padding: 58px 20px 58px 52px;
}

.band__copy h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}

.band__copy > p {
  margin: 18px 0 0;
  max-width: 48ch;
}

.band__copy .btn {
  margin-top: 26px;
}

.band__kicker + .btn {
  margin-top: 0;
}

.band__kicker {
  margin: 22px 0 26px;
  font-family: "Archivo", "Barlow", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--green-800);
}

.band__media {
  align-self: stretch;
  min-height: 300px;
}

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

.band--pad .band__media {
  padding: 34px 34px 34px 0;
}

.band--pad .band__media img {
  height: auto;
}

.band--portal {
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
  gap: 0;
  align-items: stretch;
  min-height: 0;
  background: #ece9e2;
}

.band--portal .band__copy {
  padding: 44px 36px 44px 48px;
  background: #eef3ec;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.band--portal .band__media {
  min-height: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: #ece9e2;
}

.band--portal .band__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: right center;
}

.band--copy {
  grid-template-columns: 1fr;
}

.band--copy .band__copy {
  padding: 52px;
  max-width: 720px;
}

/* About: story split with angled photo ---------------------------------- */

.story {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: stretch;
}

.story__copy {
  padding: 0 56px 0 0;
}

.story__copy h1,
.story__copy h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.02;
}

.story__lead {
  margin: 26px 0 22px;
  font-family: "Archivo", "Barlow", sans-serif;
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink-900);
}

.story__lead span {
  display: block;
  color: var(--green-800);
}

.story__copy p strong {
  color: var(--green-900);
}

.story__turn {
  margin: 30px 0 18px;
  font-family: "Archivo", "Barlow", sans-serif;
  font-size: 1.3125rem;
  font-weight: 700;
  color: var(--green-800);
}

.story__close {
  margin-top: 28px;
  font-family: "Archivo", "Barlow", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--green-800);
}

.story__media {
  position: relative;
  min-height: 560px;
}

.story__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Angled left edge, mirroring the diagonal in the supplied design, where the
     photo is widest at the top and cuts back in towards the bottom. */
  clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
}

/* Statistic band -------------------------------------------------------- */

.statband {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #eef3ec;
  border-radius: var(--radius);
}

.story + .statband {
  margin-top: 56px;
}

.statband__item {
  padding: 40px 26px;
  text-align: center;
  border-right: 1px solid #dbe4d7;
}

.statband__item:last-child {
  border-right: 0;
}

.statband .icon-badge {
  margin: 0 auto 20px;
}

.statband__value {
  font-family: "Archivo", "Barlow", sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-900);
}

.statband__value--num {
  font-size: 2.75rem;
  letter-spacing: -0.01em;
}

.statband__label {
  margin: 8px 0 0;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
}

/* Home pillar detail: two bordered panels ------------------------------- */

.detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 42px;
}

.panel {
  display: flex;
  flex-direction: column;
  padding: 34px 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--lime-500);
  border-radius: var(--radius);
}

.panel__title {
  font-size: clamp(1.1875rem, 1.9vw, 1.4375rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.panel > p {
  margin: 18px 0 0;
  color: var(--ink-500);
}

.panel h4 {
  margin: 26px 0 14px;
  font-family: "Archivo", "Barlow", sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink-900);
}

.panel .dashlist {
  font-size: 0.9375rem;
}

.panel__aside {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.9375rem;
  color: var(--ink-500);
}

.panel__aside strong {
  color: var(--ink-900);
}

/* Testimonial ----------------------------------------------------------- */

.quote {
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 30px 32px;
  background: #eef3ec;
  border-radius: var(--radius);
}

.quote blockquote,
.quote footer {
  margin: 0;
}

.quote__mark {
  flex: none;
  margin-top: 2px;
  color: var(--green-800);
}

.quote p {
  margin: 0;
  font-size: 0.9375rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink-700);
}

.quote__rule {
  width: 30px;
  height: 3px;
  margin: 18px 0 14px;
  background: var(--lime-500);
}

.quote__name {
  font-family: "Archivo", "Barlow", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink-900);
}

.quote__org {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--ink-500);
}

/* Highlight panel (Monitor: "know where you stand") --------------------- */

.highlight {
  display: flex;
  gap: 24px;
  padding: 32px 34px;
  background: #eef3ec;
  border-radius: var(--radius);
}

.highlight > svg {
  flex: none;
  margin-top: 2px;
  color: var(--green-800);
}

.highlight h3 {
  margin: 0 0 16px;
  font-size: 1.1875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.highlight p {
  margin: 0 0 14px;
  font-size: 0.9375rem;
  color: var(--ink-700);
}

.highlight p:last-child {
  margin-bottom: 0;
}

/* "Got a health & safety question?" prompt row -------------------------- */

.ask {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: inherit;
}

.ask__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 54px;
  height: 54px;
  border: 2px solid var(--green-800);
  border-radius: 50%;
  color: var(--green-800);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}

.ask:hover .ask__icon {
  background: var(--green-800);
  color: var(--white);
}

.ask__body {
  min-width: 0;
}

.ask__body strong {
  display: block;
  font-family: "Archivo", "Barlow", sans-serif;
  font-size: 0.9375rem;
  color: var(--ink-900);
}

.ask__body p,
.ask__note {
  display: block;
  margin: 4px 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--ink-500);
}

.ask .textlink {
  flex: none;
  margin-left: auto;
}

.ask .textlink span {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Feature rows (Implement) ---------------------------------------------- */

.feature-row {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}

.feature-row h4 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.feature-row p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink-500);
}

/* Responsive for the above ---------------------------------------------- */

@media (max-width: 1040px) {
  .svc-grid,
  .svc-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sector-list,
  .detail {
    grid-template-columns: 1fr;
  }

  .band,
  .story {
    grid-template-columns: 1fr;
  }

  .band__copy {
    padding: 44px 32px;
  }

  .band--copy .band__copy {
    padding: 44px 32px;
  }

  .band__media {
    min-height: 260px;
  }

  .band--pad .band__media {
    padding: 0 28px 32px;
  }

  .band--portal .band__copy {
    padding: 44px 32px 12px;
  }

  .band--portal .band__media {
    min-height: 0;
  }

  .band--portal .band__media img {
    width: 100%;
    height: auto;
  }

  .story__copy {
    padding: 0;
  }

  .story__media {
    min-height: 340px;
    margin-top: 36px;
  }

  .story__media img {
    clip-path: none;
  }

  .statband {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .statband__item:nth-child(2n) {
    border-right: 0;
  }

  .statband__item:nth-child(-n + 2) {
    border-bottom: 1px solid #dbe4d7;
  }
}

@media (max-width: 620px) {
  .svc-grid,
  .svc-grid--3,
  .statband {
    grid-template-columns: 1fr;
  }

  .statband__item {
    border-right: 0;
    border-bottom: 1px solid #dbe4d7;
  }

  .statband__item:last-child {
    border-bottom: 0;
  }

  .panel {
    padding: 28px 24px;
  }

  .highlight {
    flex-direction: column;
    gap: 18px;
    padding: 26px 24px;
  }

  .ask {
    flex-wrap: wrap;
  }

  .ask .textlink {
    margin-left: 0;
    width: 100%;
  }
}

/* ------------------------------------------------------------- Animation -- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ----------------------------------------------------------- Responsive -- */

@media (max-width: 1180px) {
  .nav,
  .site-header .btn {
    display: none;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-header.is-open .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 8px var(--gutter) 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }

  .site-header.is-open .nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-header__inner {
    position: relative;
  }

  .pillars__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillar {
    padding: 30px 26px;
    border-bottom: 1px solid var(--line);
  }

  .pillar:nth-child(2n) {
    border-right: 0;
    padding-right: 0;
  }

  .pillar:nth-child(2n + 1) {
    padding-left: 0;
  }

  .pillar:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split--reverse .split__media {
    order: 0;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    order: 2;
    padding: 44px 0 56px;
    max-width: none;
  }

  .hero__media {
    order: 1;
    min-height: 320px;
    margin: 0 calc(var(--gutter) * -1);
  }

  .section {
    padding: 66px 0;
  }
}

@media (max-width: 560px) {
  /* Keep the header compact on small screens. */
  .site-header__inner {
    min-height: 78px;
  }

  .logo img {
    height: 56px;
  }

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

  .pillar {
    padding: 26px 0;
    border-right: 0;
  }

  .pillar:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .pillar:last-child {
    border-bottom: 0;
  }

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

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .btn {
    width: 100%;
    justify-content: space-between;
  }
}
