:root {
  --green: #3e690a;
  --deep: #002312;
  --lime: #80c200;
  --orange: #f28c18;
  --white: #ffffff;
  --gray: #2f342f;
  --muted: #687266;
  --soft: #f7faf5;
  --mist: #eef4ea;
  --line: rgba(0, 35, 18, 0.12);
  --shadow: 0 18px 54px rgba(0, 35, 18, 0.1);
  --card-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(128, 194, 0, 0.9) 18%, rgba(62, 105, 10, 0.96) 52%, rgba(0, 35, 18, 0.98) 100%);
  --card-gradient-soft: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 250, 245, 0.95) 34%, rgba(128, 194, 0, 0.18) 64%, rgba(0, 35, 18, 0.08) 100%);
  --curve: 30px;
  --section-space: clamp(74px, 9vw, 116px);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray);
  background: linear-gradient(180deg, var(--white), #fbfdf8 38%, var(--white));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: block;
  min-height: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 35, 18, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  backdrop-filter: blur(22px) saturate(1.2);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.utility-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(16px, 2.8vw, 34px);
  min-height: 30px;
  padding: 6px clamp(18px, 5vw, 72px) 0;
  color: rgba(0, 35, 18, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  max-height: 36px;
  overflow: hidden;
  transition: max-height 180ms ease, min-height 180ms ease, padding 180ms ease, opacity 140ms ease, transform 180ms ease;
}

.utility-nav span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.utility-nav i {
  color: var(--green);
  font-size: 0.82rem;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 32px);
  min-height: 76px;
  padding: 7px clamp(18px, 5vw, 72px) 15px;
  transition: min-height 180ms ease, padding 180ms ease;
}

.brand {
  display: flex;
  align-items: center;
  width: min(218px, 50vw);
  transition: width 180ms ease;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 34px);
  color: var(--deep);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.main-nav a {
  position: relative;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--lime);
  content: "";
  transition: width 180ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  width: 100%;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 36px rgba(0, 35, 18, 0.08);
}

.site-header.is-scrolled .utility-nav {
  max-height: 0;
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(-8px);
}

.site-header.is-scrolled .header-main {
  min-height: 66px;
  padding-top: 6px;
  padding-bottom: 10px;
}

.site-header.is-scrolled .brand {
  width: min(190px, 46vw);
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hamburger {
  display: none;
  position: relative;
  z-index: 30;
  flex: 0 0 38px;
  width: 36px;
  height: 32px;
  color: var(--deep);
  background: none;
  cursor: pointer;
}

.hamburger span {
  display: none;
}

.hamburger i {
  display: block;
  color: var(--deep);
  font-size: 24px;
  font-weight: 900;
  line-height: 32px;
  text-align: right;
}

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 126px));
  overflow: hidden;
  background: var(--deep);
}

.hero::before {
  position: absolute;
  right: -5%;
  bottom: -132px;
  left: -5%;
  z-index: 4;
  height: 238px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 58% 58% 0 0;
  content: "";
  pointer-events: none;
  transform: none;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img,
.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroImage 24s infinite;
}

.hero-media .image-two {
  animation-delay: 6s;
}

.hero-media .image-three {
  animation-delay: 12s;
}

.hero-media .image-four {
  animation-delay: 18s;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 35, 18, 0.9), rgba(0, 35, 18, 0.55) 46%, rgba(242, 140, 24, 0.2)),
    linear-gradient(0deg, rgba(0, 35, 18, 0.64), transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  width: min(calc(100% - 36px), var(--max));
  max-width: var(--max);
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 88px) 0 clamp(150px, 14vw, 184px);
  color: var(--white);
}

.hero-carousel {
  position: relative;
  width: min(710px, 54vw);
  min-height: clamp(340px, 34vw, 410px);
}

.hero-service-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 54px);
  color: var(--white);
  background: var(--card-gradient);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 34px;
  box-shadow: 0 26px 80px rgba(0, 35, 18, 0.34);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
  z-index: 0;
  animation: serviceSlide 24s infinite;
}

.hero-service-card::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 46%);
  content: "";
  pointer-events: none;
}

.hero-service-card > * {
  position: relative;
  z-index: 1;
}

.hero-service-card.slide-two {
  animation-delay: 6s;
}

.hero-service-card.slide-three {
  animation-delay: 12s;
}

.hero-service-card.slide-four {
  animation-delay: 18s;
}

.hero-service-card.slide-four h1 {
  font-size: clamp(3.15rem, 5.4vw, 5.2rem);
}

.hero-service-card.slide-four p:not(.eyebrow) {
  max-width: 590px;
}

.hero-service-card h1 {
  max-width: 650px;
  font-size: clamp(3.5rem, 6vw, 5.8rem);
  font-weight: 300;
  line-height: 1;
}

.hero-service-card p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
}

.hero-service-card .button {
  flex: 0 0 auto;
  width: fit-content;
  min-width: 164px;
  margin-top: 26px;
  color: var(--white);
  background: #2f342f;
  box-shadow: 0 12px 32px rgba(0, 35, 18, 0.24);
}

.hero-dots {
  position: absolute;
  bottom: clamp(54px, 7vw, 82px);
  left: clamp(18px, 5vw, 72px);
  z-index: 6;
  display: flex;
  justify-content: flex-start;
  gap: 12px;
}

.hero-dots span {
  width: 58px;
  height: 4px;
  background: rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  animation: dotActive 24s infinite;
}

.hero-dots span:first-child {
  background: var(--white);
}

.hero-dots span:nth-child(2) {
  animation-delay: 6s;
}

.hero-dots span:nth-child(3) {
  animation-delay: 12s;
}

.hero-dots span:nth-child(4) {
  animation-delay: 18s;
}

@keyframes serviceSlide {
  0%,
  20% {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
    z-index: 2;
  }

  25%,
  95% {
    opacity: 0;
    pointer-events: none;
    transform: translateX(18px);
    visibility: hidden;
    z-index: 0;
  }

  100% {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
    z-index: 2;
  }
}

@keyframes heroImage {
  0%,
  20%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  25%,
  95% {
    opacity: 0;
    transform: scale(1.04);
  }
}

@keyframes dotActive {
  0%,
  20%,
  100% {
    background: var(--white);
    opacity: 1;
  }

  25%,
  95% {
    background: rgba(255, 255, 255, 0.62);
    opacity: 0.78;
  }
}

.eyebrow,
.section-kicker {
  max-width: 100%;
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark,
.section-kicker {
  color: var(--green);
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.8vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  color: var(--deep);
  font-size: clamp(2rem, 3.4vw, 3.9rem);
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-copy {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.04rem, 1.55vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
}

.button.primary {
  color: var(--deep);
  background: var(--lime);
  box-shadow: 0 10px 30px rgba(128, 194, 0, 0.22);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.06);
}

.button.light {
  color: var(--deep);
  background: var(--white);
}

.hero-service-card .button.primary {
  color: var(--white);
  background: #2f342f;
  box-shadow: 0 12px 32px rgba(0, 35, 18, 0.24);
}

.service-overview {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto clamp(56px, 8vw, 86px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-overview a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 20px 22px;
  color: var(--deep);
  border-right: 1px solid var(--line);
  font-weight: 900;
  line-height: 1.12;
  text-decoration: none;
}

.service-overview a:last-child {
  border-right: 0;
}

.service-overview i,
.at-glance div > i,
.service-lines a > i,
dl i,
.contact-list a > i {
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--soft);
  border: 1px solid var(--line);
}

.service-overview i {
  width: 42px;
  height: 42px;
}

.intro-band,
.services-intro,
.contact-layout,
.address-band {
  padding: clamp(72px, 9vw, 112px) clamp(18px, 6vw, 88px);
}

.intro-band {
  position: relative;
  overflow: hidden;
}

.intro-band::after {
  position: absolute;
  top: clamp(30px, 5vw, 62px);
  right: clamp(18px, 6vw, 88px);
  width: clamp(74px, 10vw, 128px);
  height: clamp(34px, 5vw, 58px);
  border: 1px solid var(--line);
  border-left: 6px solid var(--lime);
  content: "";
  pointer-events: none;
  transform: skewX(-14deg);
}

.intro-band > *,
.services-intro,
.contact-layout,
.address-band {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 36px), var(--max));
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.intro-grid h2,
.services-intro h2 {
  margin-bottom: 0;
}

.intro-grid p,
.services-intro p,
.split-copy p,
.image-led p,
.mission-section p,
.service-feature p,
.contact-panel p {
  font-size: 1.04rem;
  color: var(--muted);
}

.mini-proof,
.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.mini-proof span,
.check-list span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 9px 12px;
  color: var(--deep);
  background: var(--soft);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 850;
}

.mini-proof i,
.check-list i {
  color: var(--green);
}

.corporate-hub {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  width: min(calc(100% - 36px), var(--max));
  max-width: var(--max);
  margin: 0 auto clamp(64px, 8vw, 96px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hub-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 7vw, 88px) clamp(28px, 6vw, 72px) clamp(46px, 7vw, 88px) 0;
}

.hub-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
}

.hub-links {
  display: grid;
  border-left: 1px solid var(--line);
  background: var(--soft);
}

.hub-links a {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 172px;
  padding: clamp(24px, 4vw, 42px);
  color: var(--deep);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.hub-links a:last-child {
  border-bottom: 0;
}

.hub-links span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hub-links strong {
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.05;
}

.hub-links p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
}

.at-glance {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(calc(100% - 36px), var(--max));
  max-width: var(--max);
  margin: 0 auto clamp(72px, 8vw, 104px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.at-glance div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px 16px;
  align-content: start;
  min-height: 150px;
  padding: clamp(24px, 3.4vw, 34px);
  border-right: 1px solid var(--line);
}

.at-glance div > i {
  grid-row: span 2;
  width: 42px;
  height: 42px;
}

.at-glance div:nth-child(2) {
  background: var(--white);
  color: var(--gray);
}

.at-glance div:nth-child(3) {
  background: var(--white);
}

.at-glance div:last-child {
  border-right: 0;
}

.at-glance strong,
.service-number {
  display: block;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  margin-bottom: 22px;
  letter-spacing: 0.08em;
}

.at-glance span {
  grid-column: 2;
  display: block;
  max-width: 220px;
  color: inherit;
  font-size: clamp(1.06rem, 1.4vw, 1.34rem);
  font-weight: 900;
  line-height: 1.08;
}

.split-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  width: min(calc(100% - 36px), var(--max));
  max-width: var(--max);
  min-height: 540px;
  margin: 0 auto;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-feature::before {
  position: absolute;
  top: -1px;
  right: -1px;
  width: clamp(72px, 9vw, 118px);
  height: clamp(72px, 9vw, 118px);
  border-top: 4px solid var(--lime);
  border-right: 4px solid var(--lime);
  content: "";
  pointer-events: none;
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 86px) clamp(18px, 5vw, 64px) clamp(48px, 7vw, 86px) 0;
}

.service-lines {
  display: grid;
  align-content: stretch;
  background: var(--soft);
  border-left: 1px solid var(--line);
}

.service-lines a {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: end;
  min-height: 132px;
  padding: clamp(24px, 3.4vw, 38px);
  overflow: hidden;
  color: var(--deep);
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.15rem, 2.25vw, 2rem);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.service-lines a > i {
  width: 44px;
  height: 44px;
  background: var(--white);
  font-size: 1rem;
}

.service-lines a::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--orange);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 180ms ease;
}

.service-lines a:hover::before {
  transform: scaleY(1);
}

.text-link {
  width: fit-content;
  color: var(--deep);
  font-weight: 900;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}

.image-led {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1fr);
  align-items: center;
  width: min(calc(100% - 36px), var(--max));
  max-width: var(--max);
  gap: clamp(32px, 6vw, 82px);
  padding: clamp(72px, 9vw, 112px) 0;
  margin: 0 auto;
}

.image-led.reverse img {
  order: 2;
}

.image-led img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--curve);
  box-shadow: var(--shadow);
}

.director-feature img {
  aspect-ratio: 3 / 4;
  object-position: center top;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(42px, 6vw, 66px) clamp(18px, 6vw, 88px);
  color: var(--white);
  background: var(--deep);
  border-radius: var(--curve) var(--curve) 0 0;
}

.cta-band p {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(150px, 0.72fr));
  gap: 30px;
  padding: clamp(46px, 6vw, 72px) clamp(18px, 6vw, 88px);
  color: var(--white);
  background:
    radial-gradient(circle at 14% 0%, rgba(128, 194, 0, 0.18), transparent 28%),
    linear-gradient(135deg, #171717 0%, #102017 100%);
  border-radius: var(--curve) var(--curve) 0 0;
}

.site-footer img {
  width: 220px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
  color: var(--lime);
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  display: block;
  max-width: 360px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-brand p:first-of-type {
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 850;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 500px;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.page-hero > div::before {
  display: block;
  width: 74px;
  height: 6px;
  margin-bottom: 22px;
  background: var(--lime);
  clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
  content: "";
}

.page-hero.compact {
  min-height: 420px;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 35, 18, 0.88), rgba(0, 35, 18, 0.52), rgba(0, 35, 18, 0.16)),
    linear-gradient(0deg, rgba(0, 35, 18, 0.52), transparent);
  content: "";
}

.page-hero img {
  position: absolute;
  inset: 0;
}

.page-hero > div {
  position: relative;
  z-index: 2;
  width: min(860px, calc(100% - 36px));
  padding: 0 0 clamp(50px, 7vw, 82px) clamp(18px, 7vw, 96px);
}

.page-hero h1 {
  margin-bottom: 0;
  font-size: clamp(2.55rem, 5vw, 4.9rem);
}

.facts-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  width: min(calc(100% - 36px), var(--max));
  max-width: var(--max);
  gap: clamp(26px, 5vw, 56px);
  padding: 0 0 clamp(80px, 10vw, 118px);
  margin: 0 auto;
}

.facts-panel {
  padding: clamp(30px, 5vw, 58px);
  border-left: 4px solid var(--lime);
  background: var(--soft);
}

dl {
  display: grid;
  gap: 0;
  margin: 0;
}

dl div {
  display: grid;
  grid-template-columns: 42px minmax(170px, 0.42fr) 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

dl i {
  width: 42px;
  height: 42px;
}

dt {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: var(--deep);
  font-weight: 800;
}

.credential-stack {
  display: grid;
  align-content: start;
  gap: 12px;
}

.credential-stack span {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  padding: 17px 20px;
  color: var(--deep);
  background: var(--soft);
  border: 1px solid var(--line);
  font-weight: 900;
}

.credential-stack i,
.section-icon {
  color: var(--green);
}

.section-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  background: var(--soft);
  border: 1px solid var(--line);
}

.credential-stack span:nth-child(even) {
  color: var(--deep);
  background: #f9fcf2;
}

.mission-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(calc(100% - 36px), var(--max));
  max-width: var(--max);
  gap: clamp(24px, 4vw, 46px);
  margin: 0 auto;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mission-section > div {
  padding: clamp(44px, 6vw, 72px) 0;
  background: var(--white);
}

.services-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.service-nav {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(calc(100% - 36px), var(--max));
  margin: -38px auto 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-nav a {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 76px;
  padding: 18px 20px;
  color: var(--deep);
  border-right: 1px solid var(--line);
  font-weight: 900;
  text-decoration: none;
}

.service-nav a:last-child {
  border-right: 0;
}

.service-nav i {
  color: var(--green);
}

.service-feature {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(320px, 0.78fr);
  width: min(calc(100% - 36px), var(--max));
  max-width: var(--max);
  gap: clamp(20px, 4vw, 52px);
  align-items: center;
  padding: clamp(48px, 7vw, 88px) 0;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.service-feature.alternate {
  background: var(--white);
}

.service-feature img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--curve);
  box-shadow: var(--shadow);
}

.service-feature h2 {
  font-size: clamp(2rem, 3vw, 3.35rem);
}

.ppe-carousel {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--curve);
  box-shadow: var(--shadow);
}

.ppe-carousel-track {
  display: flex;
  animation: ppeCarousel 28s infinite;
}

.ppe-carousel:hover .ppe-carousel-track {
  animation-play-state: paused;
}

.ppe-slide {
  display: grid;
  flex: 0 0 100%;
  gap: 14px;
  align-content: start;
  min-width: 0;
  margin: 0;
  padding: clamp(12px, 2vw, 18px);
}

.ppe-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: linear-gradient(180deg, #f7f9f4, #eef3ea);
  border-radius: 18px;
  box-shadow: none;
}

.ppe-slide figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--deep);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.15;
}

.ppe-slide figcaption span {
  color: var(--green);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ppe-carousel-dots {
  position: absolute;
  right: 18px;
  top: 18px;
  display: flex;
  gap: 7px;
}

.ppe-carousel-dots span {
  width: 22px;
  height: 4px;
  background: rgba(0, 35, 18, 0.22);
  border-radius: 999px;
  animation: ppeDot 28s infinite;
}

.ppe-carousel-dots span:nth-child(2) {
  animation-delay: 5.6s;
}

.ppe-carousel-dots span:nth-child(3) {
  animation-delay: 11.2s;
}

.ppe-carousel-dots span:nth-child(4) {
  animation-delay: 16.8s;
}

.ppe-carousel-dots span:nth-child(5) {
  animation-delay: 22.4s;
}

.service-catalog {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
  width: min(calc(100% - 36px), var(--max));
  max-width: var(--max);
  margin: 0 auto var(--section-space);
}

.service-detail-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
  min-height: 430px;
  padding: clamp(18px, 3vw, 28px);
  overflow: hidden;
  background: var(--card-gradient-soft);
  border: 1px solid var(--line);
  border-radius: var(--curve);
  box-shadow: 0 22px 64px rgba(0, 35, 18, 0.08);
}

.service-detail-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(80px, 10vw, 140px);
  height: clamp(58px, 8vw, 100px);
  background: linear-gradient(135deg, rgba(128, 194, 0, 0.38), rgba(0, 35, 18, 0.08));
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%);
  content: "";
  pointer-events: none;
}

.service-detail-card > * {
  position: relative;
  z-index: 1;
}

.service-detail-card.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
}

.service-detail-card.reverse .service-media {
  order: 2;
}

.service-media {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--deep);
  box-shadow: 0 20px 58px rgba(0, 35, 18, 0.1);
}

.service-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(0.98) contrast(0.98);
}

.service-media figcaption {
  position: absolute;
  left: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  color: var(--white);
  background: rgba(0, 35, 18, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  backdrop-filter: blur(16px);
}

.service-media figcaption i {
  color: var(--lime);
}

.service-media figcaption span {
  font-size: 0.72rem;
  font-weight: 900;
}

.service-detail-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(14px, 2vw, 24px) clamp(4px, 2vw, 18px);
}

.service-detail-body h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 2.65vw, 3rem);
}

.service-detail-body p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 24px;
  color: #5f6b5d;
  font-size: clamp(1rem, 1.18vw, 1.08rem);
}

.service-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 35, 18, 0.08);
  border-radius: 16px;
  font-size: 0.93rem;
  font-weight: 760;
  line-height: 1.25;
}

.service-points li::before {
  flex: 0 0 auto;
  color: var(--green);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f00c";
}

.ppe-product-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
}

.ppe-product-strip figure {
  display: grid;
  gap: 8px;
  align-content: space-between;
  min-height: 132px;
  margin: 0;
  padding: 10px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(0, 35, 18, 0.08);
  border-radius: 16px;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
}

.ppe-product-strip img {
  width: 100%;
  height: 78px;
  object-fit: contain;
}

@keyframes ppeCarousel {
  0%,
  16%,
  100% {
    transform: translateX(0);
  }

  20%,
  36% {
    transform: translateX(-100%);
  }

  40%,
  56% {
    transform: translateX(-200%);
  }

  60%,
  76% {
    transform: translateX(-300%);
  }

  80%,
  96% {
    transform: translateX(-400%);
  }
}

@keyframes ppeDot {
  0%,
  16%,
  100% {
    background: var(--green);
  }

  20%,
  96% {
    background: rgba(0, 35, 18, 0.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ppe-carousel-track,
  .ppe-carousel-dots span {
    animation: none;
  }
}

.service-number {
  display: grid;
  gap: 12px;
  justify-items: center;
  margin-bottom: 0;
  color: var(--green);
}

.service-number i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--soft);
  border: 1px solid var(--line);
  font-size: 1.05rem;
}

.service-number span {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.contact-panel h2 {
  margin-bottom: 18px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  background: transparent;
}

.contact-list a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 14px;
  align-items: center;
  padding: 18px 20px;
  background: var(--white);
  color: var(--deep);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-list a > i {
  grid-row: span 2;
  width: 42px;
  height: 42px;
}

.contact-list a[href^="mailto"],
.contact-list a[href^="https"] {
  font-size: clamp(0.92rem, 1.35vw, 1.08rem);
  line-height: 1.24;
}

.contact-list span {
  color: var(--green);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.enquiry-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 44px);
  color: var(--deep);
  background: var(--soft);
  border: 1px solid var(--line);
}

.enquiry-form label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px 10px;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.enquiry-form label i {
  color: var(--green);
  line-height: 1.6;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--deep);
  background: var(--white);
  font: inherit;
}

.enquiry-form textarea {
  resize: vertical;
}

.enquiry-form select option {
  color: var(--deep);
}

.address-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 34px;
  align-items: stretch;
  background: var(--soft);
  border-radius: var(--curve);
}

.address-band h2 {
  margin-bottom: 0;
}

.map-placeholder {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 35, 18, 0.88), rgba(62, 105, 10, 0.78)),
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(255, 255, 255, 0.1) 20px 21px);
}

.map-placeholder > i {
  width: fit-content;
  margin-bottom: auto;
  color: var(--lime);
  font-size: 1.4rem;
}

.map-placeholder span {
  color: var(--lime);
  font-weight: 900;
  text-transform: uppercase;
}

.map-placeholder strong {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.map-frame {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--curve);
  box-shadow: 0 18px 50px rgba(0, 35, 18, 0.14);
}

.hub-links a,
.at-glance div,
.service-lines a,
.service-nav a,
.mini-proof span,
.check-list span,
.credential-stack span,
.contact-list a {
  color: var(--white);
  background: var(--card-gradient);
  border-color: rgba(255, 255, 255, 0.24);
  border-radius: var(--curve);
  box-shadow: 0 18px 50px rgba(0, 35, 18, 0.14);
}

.hub-links a,
.service-lines a,
.service-nav a,
.contact-list a {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hub-links a:hover,
.service-lines a:hover,
.service-nav a:hover,
.contact-list a:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(0, 35, 18, 0.22);
}

.hub-links p,
.contact-list a,
.mini-proof span,
.check-list span,
.credential-stack span {
  color: rgba(255, 255, 255, 0.92);
}

.hub-links span {
  color: var(--lime);
}

.contact-list span {
  color: rgba(255, 255, 255, 0.74);
}

.hub-links strong,
.service-lines a,
.service-nav a,
.at-glance strong,
.at-glance span {
  color: var(--white);
}

.service-overview,
.service-nav,
.contact-list {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(0, 35, 18, 0.08);
  border-radius: var(--curve);
  overflow: hidden;
}

.facts-panel,
.mission-section > div,
.service-feature,
.enquiry-form {
  background: var(--card-gradient-soft);
  border: 1px solid var(--line);
  border-radius: var(--curve);
  box-shadow: 0 18px 50px rgba(0, 35, 18, 0.08);
}

.mission-section,
.service-feature {
  border: 0;
}

.mission-section > div,
.service-feature,
.enquiry-form {
  position: relative;
  overflow: hidden;
}

.mission-section > div::after,
.service-feature::after,
.enquiry-form::after {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(80px, 10vw, 140px);
  height: clamp(58px, 8vw, 100px);
  background: linear-gradient(135deg, rgba(128, 194, 0, 0.42), rgba(0, 35, 18, 0.1));
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%);
  content: "";
  pointer-events: none;
}

.mission-section > div > *,
.service-feature > *,
.enquiry-form > * {
  position: relative;
  z-index: 1;
}

.mission-section > div {
  padding: clamp(36px, 5vw, 58px);
}

.service-feature {
  padding: clamp(34px, 5vw, 54px);
  margin-bottom: clamp(22px, 4vw, 40px);
}

.service-feature.alternate {
  background: var(--card-gradient-soft);
}

.map-placeholder {
  background:
    var(--card-gradient),
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(255, 255, 255, 0.1) 20px 21px);
  border-radius: var(--curve);
  box-shadow: 0 18px 50px rgba(0, 35, 18, 0.14);
}

/* Cohesive flow refinements */
h2 {
  font-size: clamp(1.95rem, 3vw, 3.25rem);
  font-weight: 780;
  line-height: 1.08;
}

.eyebrow,
.section-kicker {
  margin-bottom: 14px;
  color: var(--green);
}

.page-hero {
  min-height: min(660px, calc(100vh - 126px));
  align-items: center;
}

.page-hero.compact {
  min-height: 570px;
}

.page-hero::before {
  position: absolute;
  right: -5%;
  bottom: -132px;
  left: -5%;
  z-index: 3;
  height: 238px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 58% 58% 0 0;
  content: "";
  pointer-events: none;
}

.page-hero::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 35, 18, 0.9), rgba(0, 35, 18, 0.58) 48%, rgba(242, 140, 24, 0.18)),
    linear-gradient(0deg, rgba(0, 35, 18, 0.6), transparent 48%);
}

.page-hero img {
  z-index: 0;
}

.page-hero > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(760px, calc(100% - 36px));
  min-height: clamp(330px, 34vw, 440px);
  margin-left: max(18px, calc((100vw - var(--max)) / 2));
  padding: clamp(32px, 5vw, 56px);
  color: var(--white);
  background: var(--card-gradient);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 34px;
  box-shadow: 0 26px 80px rgba(0, 35, 18, 0.3);
}

.page-hero > div::before,
.page-hero .eyebrow {
  display: none;
}

.page-hero h1 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(3rem, 5.4vw, 5.45rem);
  font-weight: 300;
  line-height: 1;
}

.intro-band,
.services-intro,
.contact-layout,
.address-band {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.intro-band {
  background: var(--white);
}

.intro-band::after {
  border-radius: 16px;
  opacity: 0.72;
}

.intro-grid,
.services-intro {
  gap: clamp(28px, 5vw, 64px);
}

.intro-grid p,
.services-intro p,
.split-copy p,
.image-led p,
.mission-section p,
.service-feature p,
.contact-panel p {
  color: #5f6b5d;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
}

.corporate-hub,
.split-feature,
.at-glance,
.mission-section {
  border: 0;
  background: transparent;
}

.corporate-hub {
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  margin-bottom: var(--section-space);
}

.hub-copy,
.split-copy {
  padding-top: 0;
  padding-bottom: 0;
}

.hub-links,
.service-lines,
.contact-list {
  gap: 14px;
  background: transparent;
  border: 0;
  overflow: visible;
}

.hub-links a {
  min-height: 148px;
  border: 0;
}

.at-glance {
  gap: 16px;
  margin-bottom: var(--section-space);
}

.at-glance div {
  min-height: 144px;
  border: 0;
}

.at-glance span {
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.16;
}

.at-glance div:nth-child(2),
.at-glance div:nth-child(3) {
  color: var(--white);
  background: var(--card-gradient);
}

.at-glance {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: calc(var(--curve) + 10px);
  background: linear-gradient(145deg, #f9fcf6 0%, #edf6e8 100%);
  box-shadow:
    inset 10px 10px 24px rgba(0, 35, 18, 0.055),
    inset -10px -10px 24px rgba(255, 255, 255, 0.88);
}

.at-glance div,
.at-glance div:nth-child(2),
.at-glance div:nth-child(3) {
  color: var(--deep);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--curve);
  background: linear-gradient(145deg, #ffffff 0%, #f5faf1 46%, #e8f4df 100%);
  box-shadow:
    14px 14px 34px rgba(0, 35, 18, 0.11),
    -12px -12px 28px rgba(255, 255, 255, 0.92),
    inset 1px 1px 0 rgba(255, 255, 255, 0.96);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.at-glance div:hover {
  transform: translateY(-3px);
  box-shadow:
    18px 18px 40px rgba(0, 35, 18, 0.13),
    -12px -12px 28px rgba(255, 255, 255, 0.94),
    inset 1px 1px 0 rgba(255, 255, 255, 0.98);
}

.at-glance div > i {
  color: var(--green);
  border: 0;
  border-radius: 17px;
  background: linear-gradient(145deg, #ffffff 0%, #e7f4dd 100%);
  box-shadow:
    8px 8px 18px rgba(0, 35, 18, 0.12),
    -6px -6px 14px rgba(255, 255, 255, 0.95),
    inset 1px 1px 0 rgba(255, 255, 255, 0.98);
}

.at-glance strong {
  color: var(--green);
  margin-bottom: 14px;
}

.at-glance span {
  color: var(--deep);
  font-weight: 850;
}

.split-feature {
  gap: clamp(28px, 5vw, 58px);
  min-height: 0;
  margin-bottom: var(--section-space);
  width: min(calc(100% - 36px), 1320px);
  max-width: 1320px;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
}

.split-feature::before {
  display: none;
}

.service-lines a {
  min-height: 112px;
  align-items: center;
  border: 0;
  font-size: clamp(1.05rem, 1.85vw, 1.58rem);
}

.service-lines a {
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1fr);
  gap: clamp(18px, 2.2vw, 28px);
  min-height: 224px;
  padding: 12px;
}

.service-thumb {
  display: block;
  align-self: stretch;
  min-height: 200px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.18);
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(0.96);
  transform: scale(1.01);
  transition: transform 220ms ease;
}

.service-lines a:hover .service-thumb img {
  transform: scale(1.06);
}

.service-label {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
  max-width: 680px;
  padding-right: 12px;
  font-weight: 200;
  line-height: 1.08;
}

.service-label:has(> i) {
  grid-template-columns: 44px 1fr;
}

.service-label > i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--green);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 16px;
  font-size: 1rem;
}

.image-led {
  padding-top: 0;
  padding-bottom: var(--section-space);
}

.image-led img,
.service-feature img {
  box-shadow: 0 20px 58px rgba(0, 35, 18, 0.1);
}

.section-icon,
.service-overview i,
.at-glance div > i,
.service-lines a > i,
.service-number i,
dl i,
.contact-list a > i {
  border-radius: 16px;
}

.mission-section {
  margin-bottom: var(--section-space);
}

.mission-section > div,
.service-feature,
.enquiry-form,
.address-band {
  box-shadow: 0 22px 64px rgba(0, 35, 18, 0.08);
}

.service-nav {
  margin-top: -58px;
  margin-bottom: clamp(48px, 7vw, 80px);
  border: 0;
  box-shadow: 0 24px 70px rgba(0, 35, 18, 0.14);
}

.service-nav a {
  min-height: 88px;
  border: 0;
}

.services-intro {
  padding-top: clamp(32px, 6vw, 72px);
}

.service-feature {
  grid-template-columns: 56px minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(22px, 4vw, 46px);
  margin-bottom: clamp(28px, 4vw, 46px);
}

.service-feature h2 {
  font-size: clamp(1.8rem, 2.55vw, 2.85rem);
}

.service-number {
  color: var(--deep);
}

.service-number span {
  color: var(--green);
}

.contact-layout {
  gap: clamp(34px, 6vw, 78px);
}

.enquiry-form {
  gap: 20px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  min-height: 52px;
  border-color: rgba(0, 35, 18, 0.1);
}

.address-band {
  gap: clamp(28px, 5vw, 58px);
  background: var(--card-gradient-soft);
}

.cta-band {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  box-shadow: 0 24px 70px rgba(0, 35, 18, 0.12);
}

.site-footer {
  margin-top: clamp(18px, 3vw, 34px);
}

@media (max-width: 900px) {
  .utility-nav {
    display: none;
  }

  .header-main {
    min-height: 72px;
    padding: 9px 18px;
  }

  .brand {
    width: min(198px, 50vw);
  }

  .site-header.is-scrolled .header-main {
    min-height: 64px;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .site-header.is-scrolled .brand {
    width: min(178px, 46vw);
  }

  .hamburger {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 10px 0;
    background: var(--deep);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .main-nav a {
    color: var(--white);
    padding: 14px 20px;
    font-size: 0.88rem;
  }

  .main-nav a::after {
    display: none;
  }

  .nav-toggle:checked ~ .main-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .intro-grid,
  .corporate-hub,
  .split-feature,
  .image-led,
  .facts-layout,
  .mission-section,
  .services-intro,
  .service-feature,
  .contact-layout,
  .address-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 660px;
  }

  .page-hero,
  .page-hero.compact {
    min-height: 600px;
  }

  .page-hero > div {
    width: min(calc(100% - 48px), 520px);
    min-height: 330px;
    margin-right: auto;
    margin-left: auto;
  }

  .page-hero h1 {
    font-size: clamp(2.25rem, 7.8vw, 3.55rem);
  }

  .hero-content {
    align-items: center;
    padding: 48px 0 128px;
  }

  .hero-carousel {
    width: min(100%, 520px);
    min-height: 380px;
  }

  .hero-service-card {
    padding: clamp(24px, 7vw, 38px);
    border-radius: 30px;
  }

  .hero .eyebrow {
    max-width: 100%;
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .hero-service-card h1 {
    font-size: clamp(2.25rem, 8vw, 3.55rem);
  }

  .hero-service-card.slide-four h1 {
    font-size: clamp(2.05rem, 7.4vw, 3.1rem);
  }

  .hero-service-card p:not(.eyebrow) {
    font-size: 0.95rem;
  }

  .hero-dots {
    bottom: 42px;
    left: 18px;
  }

  .hero-dots span {
    width: 42px;
  }

  .hero-copy {
    max-width: 340px;
  }

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

  .hub-copy {
    padding-right: 0;
  }

  .hub-links {
    border-left: 0;
    border-top: 0;
  }

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

  .service-overview a:nth-child(2),
  .service-nav a:nth-child(2) {
    border-right: 0;
  }

  .service-overview a:nth-child(-n + 2),
  .service-nav a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .at-glance div:nth-child(2) {
    border-right: 0;
  }

  .service-feature {
    gap: 20px;
    padding: clamp(28px, 6vw, 42px);
  }

  .service-detail-card,
  .service-detail-card.reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .service-detail-card.reverse .service-media {
    order: 0;
  }

  .service-media {
    min-height: 0;
  }

  .service-media img {
    min-height: 300px;
    aspect-ratio: 16 / 9;
  }

  .service-detail-body {
    padding: clamp(10px, 3vw, 18px) 6px clamp(8px, 2vw, 12px);
  }

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

  .service-lines a {
    grid-template-columns: minmax(230px, 0.62fr) 1fr;
    min-height: 210px;
  }

  .service-number {
    margin-bottom: 0;
    justify-items: start;
    grid-template-columns: 48px 1fr;
    align-items: center;
  }

  .image-led.reverse img {
    order: 0;
  }

  .cta-band {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 0;
    padding: 0;
  }

  .header-main {
    min-height: 72px;
    padding: 10px 16px;
  }

  .brand {
    width: min(210px, 62vw);
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4.4rem);
  }

  h2 {
    font-size: clamp(1.95rem, 10vw, 3rem);
  }

  .hero {
    min-height: 620px;
  }

  .page-hero,
  .page-hero.compact {
    min-height: 560px;
  }

  .page-hero::before {
    bottom: -74px;
    height: 120px;
  }

  .page-hero > div {
    width: min(310px, calc(100vw - 64px));
    max-width: min(310px, calc(100vw - 64px));
    min-height: 260px;
    margin-right: auto;
    margin-left: 24px;
    padding: 22px;
    border-radius: 22px;
  }

  .page-hero h1 {
    font-size: clamp(1.62rem, 7.2vw, 2.2rem);
  }

  .services-hero h1 {
    font-size: clamp(1.5rem, 6.4vw, 1.95rem);
  }

  .services-hero h1 span,
  .services-intro h2 span {
    display: block;
  }

  .hero::before {
    bottom: -74px;
    height: 120px;
  }

  .hero::after {
    display: none;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(0, 35, 18, 0.96), rgba(0, 35, 18, 0.42));
  }

  .hero-content {
    align-items: flex-end;
    padding: 32px 0 118px;
  }

  .hero-carousel {
    width: min(310px, calc(100vw - 64px));
    min-height: 300px;
  }

  .hero-service-card {
    padding: 22px;
    border-radius: 22px;
  }

  .hero-service-card h1 {
    font-size: clamp(1.62rem, 7.2vw, 2.25rem);
  }

  .hero-service-card.slide-four h1 {
    font-size: clamp(1.46rem, 6.4vw, 1.9rem);
  }

  .hero-service-card p:not(.eyebrow) {
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .hero-service-card .button {
    min-height: 42px;
    margin-top: 18px;
    padding: 10px 16px;
    font-size: 0.76rem;
  }

  .hero-service-card .button {
    width: 100%;
  }

  .hero-actions,
  .cta-band {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .at-glance {
    grid-template-columns: 1fr;
  }

  .service-overview,
  .service-nav {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .service-overview a,
  .service-nav a {
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-detail-card {
    gap: 18px;
    padding: 14px;
    border-radius: 26px;
  }

  .service-media {
    border-radius: 20px;
  }

  .service-media img {
    min-height: 240px;
  }

  .service-detail-body h2 {
    max-width: 300px;
    font-size: clamp(1.55rem, 7.4vw, 2.05rem);
  }

  .services-intro h2 {
    max-width: 310px;
    font-size: clamp(1.85rem, 8.4vw, 2.45rem);
  }

  .services-intro > p {
    max-width: 310px;
  }

  .service-points,
  .ppe-product-strip {
    grid-template-columns: 1fr;
  }

  .service-points li {
    min-height: 0;
  }

  .ppe-product-strip figure {
    grid-template-columns: 84px 1fr;
    align-items: center;
    min-height: 92px;
    text-align: left;
  }

  .service-lines a {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }

  .service-thumb {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .service-label {
    padding: 6px 6px 10px;
  }

  .at-glance div {
    min-height: 128px;
    border-right: 0;
  }

  .page-hero,
  .page-hero.compact {
    min-height: 640px;
  }

  dl div {
    grid-template-columns: 42px 1fr;
    gap: 6px;
  }

  dl dd {
    grid-column: 2;
  }

  .contact-list a {
    padding-right: 0;
  }
}
