/* ========================================
   Base
======================================== */

:root {
  --color-black: #050505;
  --color-white: #ffffff;
  --color-blue: #4BAA47;
  --color-blue-hover: #41963E;
  --color-blue-deep: #1F4A25;
  --header-height: 106px;
  --page-padding: clamp(1rem, 4vw, 4rem);
  --content-width: 1440px;
  --font-sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--color-white);
  background: var(--color-white);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body.is-contact-open {
  overflow: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================
   Header
======================================== */

.site-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  min-height: var(--header-height);
  background: var(--color-black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
  display: grid;
  grid-template-columns: minmax(150px, 220px) 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  width: 100%;
  min-height: var(--header-height);
  margin-inline: auto;
  padding-inline: clamp(0.75rem, 2vw, 2rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand img {
  display: block;
  width: clamp(145px, 12vw, 185px);
  height: auto;
}

.primary-navigation {
  justify-self: center;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 2.25vw, 2.75rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding-block: 0.75rem;
  color: transparent;
  background:
    linear-gradient(
      90deg,
      var(--color-blue) 0 50%,
      var(--color-white) 50% 100%
    );
  background-position: 100% 0;
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.045em;
  white-space: nowrap;
  transition: background-position 260ms ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background-position: 0 0;
}

.nav-list a.is-current:not(.locations-link),
.nav-list a[aria-current="page"]:not(.locations-link) {
  background-position: 0 0;
}

.locations-link svg {
  width: 11px;
  height: 8px;
  fill: none;
  stroke: var(--color-white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
  transition: stroke 260ms ease;
}

.locations-link:hover svg,
.locations-link:focus-visible svg {
  stroke: var(--color-blue);
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.45rem;
  color: var(--color-white);
  background: var(--color-blue);
  border: 1px solid var(--color-blue);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(90, 185, 85, 0.25);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.contact-button:hover,
.contact-button:focus-visible {
  background: var(--color-blue-hover);
  border-color: var(--color-blue-hover);
  box-shadow: 0 12px 34px rgba(90, 185, 85, 0.35);
  transform: translateY(-2px);
}

.contact-button:focus-visible,
.nav-list a:focus-visible,
.menu-toggle:focus-visible,
.icon-btn:focus-visible,
.btn:focus-visible,
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 3px solid rgba(90, 185, 85, 0.55);
  outline-offset: 4px;
}

.contact-button-mobile,
.menu-toggle {
  display: none;
}


/* ========================================
   Hero
======================================== */

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(3, 7, 8, 0.82) 0%,
      rgba(3, 7, 8, 0.66) 28%,
      rgba(3, 7, 8, 0.24) 58%,
      rgba(3, 7, 8, 0.04) 100%
    ),
    url("images/hero-office.svg") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 22%;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.18), transparent);
  pointer-events: none;
}

.hero__content {
  width: min(100%, 1440px);
  margin-inline: auto;
  padding:
    clamp(4rem, 9vh, 7rem)
    clamp(1.25rem, 5vw, 5rem)
    clamp(4rem, 8vh, 6rem);
}

.hero__content::before {
  position: absolute;
  z-index: -1;
  width: min(720px, 58vw);
  height: min(620px, 70vh);
  content: "";
  background: rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  filter: blur(70px);
  transform: translate(-22%, -18%);
  pointer-events: none;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.25rem;
  color: var(--color-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero__eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 999px;
}

.hero__title {
  max-width: 820px;
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 7.5vw, 7.5rem);
  font-weight: 700;
  line-height: 0.91;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero__title span {
  color: var(--color-blue);
}

.hero__text {
  max-width: 610px;
  margin: 1.65rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.025em;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.hero__button:hover,
.hero__button:focus-visible {
  transform: translateY(-2px);
}

.hero__button:focus-visible {
  outline: 3px solid rgba(75, 170, 71, 0.5);
  outline-offset: 4px;
}

.hero__button--primary {
  color: var(--color-white);
  background: var(--color-blue);
  border: 1px solid var(--color-blue);
  box-shadow: 0 14px 36px rgba(75, 170, 71, 0.24);
}

.hero__button--primary:hover,
.hero__button--primary:focus-visible {
  background: var(--color-blue-hover);
  border-color: var(--color-blue-hover);
  box-shadow: 0 18px 42px rgba(75, 170, 71, 0.32);
}

.hero__button--secondary {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero__button--secondary:hover,
.hero__button--secondary:focus-visible {
  color: var(--color-black);
  background: var(--color-white);
  border-color: var(--color-white);
}

@media (max-width: 720px) {
  .hero {
    min-height: calc(100svh - var(--header-height));
    align-items: end;
    background:
      linear-gradient(
        180deg,
        rgba(3, 7, 8, 0.1) 0%,
        rgba(3, 7, 8, 0.5) 42%,
        rgba(3, 7, 8, 0.82) 100%
      ),
      url("images/hero-office.svg") 64% center / cover no-repeat;
  }

  .hero__content {
    padding: 5rem 1rem 3.25rem;
  }

  .hero__content::before {
    width: 100%;
    height: 55%;
    filter: blur(55px);
    transform: translate(-10%, 10%);
  }

  .hero__eyebrow {
    margin-bottom: 1rem;
  }

  .hero__title {
    font-size: clamp(3rem, 15vw, 5rem);
    line-height: 0.94;
  }

  .hero__text {
    max-width: 34rem;
    margin-top: 1.2rem;
    line-height: 1.6;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }

  .hero__button {
    width: 100%;
  }
}


/* ========================================
   Trust strip
======================================== */

.trust-strip {
  position: relative;
  z-index: 2;
  color: #1b211d;
  background:
    linear-gradient(90deg, rgba(75, 170, 71, 0.05), transparent 34%),
    #f5f1e8;
  border-top: 1px solid rgba(75, 170, 71, 0.2);
  border-bottom: 1px solid rgba(27, 33, 29, 0.08);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 1440px);
  margin-inline: auto;
  padding: 1.35rem clamp(1.25rem, 4vw, 4rem);
}

.trust-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  min-width: 0;
  padding: 0.9rem clamp(1rem, 2vw, 1.75rem);
}

.trust-item + .trust-item {
  border-left: 1px solid rgba(27, 33, 29, 0.12);
}

.trust-item__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--color-blue);
  flex: 0 0 auto;
}

.trust-item__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.trust-item h2 {
  margin: 0;
  color: #151a17;
  font-size: clamp(0.82rem, 1vw, 0.98rem);
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.trust-item p {
  margin: 0.4rem 0 0;
  color: rgba(27, 33, 29, 0.68);
  font-size: 0.82rem;
  line-height: 1.45;
}

@media (max-width: 1050px) {
  .trust-strip__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-item:nth-child(3) {
    border-left: 0;
  }

  .trust-item:nth-child(n + 3) {
    border-top: 1px solid rgba(27, 33, 29, 0.12);
  }
}

@media (max-width: 620px) {
  .trust-strip__inner {
    grid-template-columns: 1fr;
    padding-block: 0.5rem;
  }

  .trust-item {
    padding: 1.15rem 0.25rem;
  }

  .trust-item + .trust-item,
  .trust-item:nth-child(3) {
    border-top: 1px solid rgba(27, 33, 29, 0.12);
    border-left: 0;
  }

  .trust-item__icon {
    width: 46px;
    height: 46px;
  }
}


/* ========================================
   Services showcase
======================================== */

.services-showcase {
  padding: clamp(3.75rem, 7vw, 5.75rem) 0 clamp(4rem, 7vw, 6rem);
  background:
    linear-gradient(180deg, rgba(75, 170, 71, 0.04), transparent 32%),
    #ffffff;
}

.services-showcase__inner {
  width: min(100%, 1520px);
  margin-inline: auto;
  padding-inline: clamp(0.85rem, 3vw, 3rem);
}

.services-showcase__top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1.5rem 2rem;
  align-items: end;
  margin-bottom: 2.2rem;
}

.services-showcase__heading {
  max-width: 52rem;
}

.services-showcase__eyebrow {
  margin: 0 0 0.75rem;
  color: var(--color-blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.services-showcase__title {
  margin: 0;
  color: #101617;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.services-showcase__intro {
  max-width: 34rem;
  margin: 0;
  color: rgba(16, 22, 23, 0.72);
  font-size: 0.98rem;
  line-height: 1.7;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  grid-template-areas:
    "featured schools"
    "featured apartments"
    "featured medical";
  gap: 1.2rem;
}

.service-card {
  min-width: 0;
  background: #ffffff;
  border: 1px solid rgba(16, 22, 23, 0.08);
  border-radius: 1.35rem;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(16, 24, 20, 0.07);
}

.service-card--featured {
  grid-area: featured;
  display: grid;
  grid-template-rows: minmax(320px, 1fr) auto;
  background:
    linear-gradient(180deg, rgba(75, 170, 71, 0.04), rgba(75, 170, 71, 0.015)),
    #ffffff;
}

.service-card--featured .service-card__media {
  min-height: 100%;
}

.service-card--compact {
  display: grid;
  grid-template-columns: minmax(235px, 40%) minmax(0, 1fr);
  align-items: stretch;
}

.service-card--schools {
  grid-area: schools;
}

.service-card--apartments {
  grid-area: apartments;
}

.service-card--medical {
  grid-area: medical;
}

.service-card__media {
  position: relative;
  overflow: hidden;
  background: #edf1f2;
}

.service-card--compact .service-card__media {
  min-height: 215px;
}

.service-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__content {
  position: relative;
  padding: 1.25rem 1.2rem 1.35rem;
}

.service-card--featured .service-card__content {
  padding: 1.55rem 1.4rem 1.6rem;
}

.service-card__badge {
  display: inline-grid;
  place-items: center;
  width: 3.3rem;
  height: 3.3rem;
  margin-bottom: 1rem;
  color: var(--color-white);
  background: var(--color-blue);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(75, 170, 71, 0.24);
}

.service-card__badge svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.service-card__kicker {
  margin: 0 0 0.4rem;
  color: var(--color-blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0;
  color: #101617;
  font-size: 1.18rem;
  font-weight: 760;
  line-height: 1.3;
  letter-spacing: 0.005em;
}

.service-card--compact h3 {
  font-size: 1.02rem;
}

.service-card p {
  margin: 0.7rem 0 0;
  color: rgba(16, 22, 23, 0.72);
  font-size: 0.93rem;
  line-height: 1.65;
}

.services-showcase__actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.services-showcase__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.8rem;
  color: var(--color-white);
  background: var(--color-blue);
  border: 1px solid var(--color-blue);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(75, 170, 71, 0.22);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.services-showcase__button:hover,
.services-showcase__button:focus-visible {
  background: var(--color-blue-hover);
  border-color: var(--color-blue-hover);
  box-shadow: 0 16px 36px rgba(75, 170, 71, 0.28);
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .services-showcase__top {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .services-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "featured featured"
      "schools apartments"
      "medical medical";
  }

  .service-card--compact {
    grid-template-columns: minmax(220px, 42%) minmax(0, 1fr);
  }

  .service-card--medical {
    max-width: none;
  }
}

@media (max-width: 700px) {
  .services-showcase {
    padding-top: 3.25rem;
  }

  .services-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "featured"
      "schools"
      "apartments"
      "medical";
  }

  .service-card--featured {
    grid-template-rows: auto auto;
  }

  .service-card--compact {
    grid-template-columns: 1fr;
  }

  .service-card__media {
    aspect-ratio: 4 / 3;
  }

  .service-card--compact .service-card__media {
    min-height: 0;
  }

  .service-card__content {
    padding: 1.25rem 1rem 1.35rem;
  }

  .services-showcase__button {
    width: 100%;
  }
}

/* ========================================
   Why choose section
======================================== */

.why-section {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: #EEF5F7;
}

.why-section__inner {
  display: grid;
  grid-template-columns: minmax(315px, 0.94fr) minmax(500px, 1.28fr) minmax(315px, 0.94fr);
  gap: clamp(1rem, 1.8vw, 1.35rem);
  width: min(100%, 1840px);
  margin-inline: auto;
  padding-inline: clamp(0.5rem, 1.5vw, 1.25rem);
  align-items: stretch;
}

.why-panel,
.why-section__image {
  min-width: 0;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(12, 19, 16, 0.07);
}

.why-panel {
  padding: clamp(2rem, 4vw, 3rem);
}

.why-panel--dark {
  color: #11181a;
  background:
    linear-gradient(180deg, rgba(75, 170, 71, 0.08), rgba(255, 255, 255, 0.98) 34%),
    #ffffff;
  border: 1px solid rgba(75, 170, 71, 0.14);
}

.why-panel--accent {
  color: #11181a;
  background:
    radial-gradient(circle at top right, rgba(75, 170, 71, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(75, 170, 71, 0.09)),
    #ffffff;
  border: 1px solid rgba(75, 170, 71, 0.16);
}

.why-panel__title {
  margin: 0;
  color: #101617;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: none;
}

.why-panel__title span {
  color: var(--color-blue);
}

.why-panel__title--secondary {
  margin-top: 0;
}

.why-panel__text {
  margin: 1rem 0 1.2rem;
  color: rgba(16, 22, 23, 0.74);
  font-size: 1rem;
  line-height: 1.72;
}

.why-panel__icon {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  color: var(--color-white);
  background: var(--color-blue);
  border: 1px solid var(--color-blue);
  border-radius: 1rem;
  box-shadow: 0 14px 30px rgba(75, 170, 71, 0.22);
}

.why-panel__icon svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.why-list {
  display: grid;
  gap: 0.95rem;
  margin: 1.45rem 0 0;
  padding: 0;
  list-style: none;
}

.why-list li {
  position: relative;
  padding-left: 1.9rem;
  color: rgba(16, 22, 23, 0.82);
  font-size: 0.98rem;
  line-height: 1.6;
}

.why-list li::before {
  position: absolute;
  top: 0.38rem;
  left: 0;
  width: 1rem;
  height: 1rem;
  content: "";
  background: var(--color-blue);
  border-radius: 999px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.why-list li::after {
  position: absolute;
  top: 0.62rem;
  left: 0.31rem;
  width: 0.38rem;
  height: 0.2rem;
  content: "";
  border-bottom: 2px solid var(--color-white);
  border-left: 2px solid var(--color-white);
  transform: rotate(-45deg);
}

.why-list--light li::before {
  background: #101617;
}

.why-section__image {
  background: #dbe6ea;
}

.why-section__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.why-panel__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 1.8rem;
  padding: 0.95rem 1.75rem;
  color: var(--color-white);
  background: var(--color-blue);
  border: 1px solid var(--color-blue);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(75, 170, 71, 0.2);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.why-panel__button:hover,
.why-panel__button:focus-visible {
  background: var(--color-blue-hover);
  border-color: var(--color-blue-hover);
  box-shadow: 0 16px 34px rgba(75, 170, 71, 0.26);
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .why-section__inner {
    grid-template-columns: 1fr;
  }

  .why-section__image {
    min-height: 380px;
    order: 2;
  }

  .why-panel--dark {
    order: 1;
  }

  .why-panel--accent {
    order: 3;
  }
}

@media (max-width: 640px) {
  .why-section {
    padding: 3.5rem 0;
  }

  .why-section__inner {
    width: 100%;
    padding-inline: 0.85rem;
  }

  .why-panel {
    padding: 1.5rem 1.2rem;
    border-radius: 1.15rem;
  }

  .why-section__image {
    min-height: 280px;
    border-radius: 1.15rem;
  }

  .why-panel__title {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

  .why-list li,
  .why-panel__text {
    font-size: 0.95rem;
  }

  .why-panel__button {
    width: 100%;
  }
}

/* ========================================
   Locations section
======================================== */

.locations-section {
  padding: clamp(4.25rem, 7vw, 6.5rem) 0;
  background: #F5F1E8;
}

.locations-section__inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(420px, 1.14fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4.5rem);
  width: min(100%, 1520px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.locations-copy {
  min-width: 0;
}

.locations-copy__eyebrow {
  margin: 0 0 0.95rem;
  color: var(--color-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.locations-copy__title {
  margin: 0;
  color: #101617;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.35rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.locations-copy__lead {
  max-width: 35rem;
  margin: 1.1rem 0 0;
  color: rgba(16, 22, 23, 0.72);
  font-size: 1rem;
  line-height: 1.85;
}

.locations-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.location-card {
  position: relative;
  display: grid;
  gap: 0.4rem;
  width: 100%;
  padding: 1.1rem 1.2rem 1.1rem 1.35rem;
  color: #101617;
  text-align: left;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 22, 23, 0.08);
  border-left: 4px solid transparent;
  border-radius: 1.15rem;
  box-shadow: 0 14px 34px rgba(12, 19, 16, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    border-left-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.location-card:hover,
.location-card:focus-visible,
.location-card.is-active {
  color: var(--color-blue);
  background: #ffffff;
  border-color: rgba(75, 170, 71, 0.18);
  border-left-color: var(--color-blue);
  box-shadow: 0 18px 40px rgba(75, 170, 71, 0.1);
  transform: translateY(-2px);
}

.location-card__name {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.location-card__meta {
  color: rgba(16, 22, 23, 0.64);
  font-size: 0.92rem;
  line-height: 1.6;
}

.location-card:hover .location-card__meta,
.location-card:focus-visible .location-card__meta,
.location-card.is-active .location-card__meta {
  color: rgba(16, 22, 23, 0.78);
}

.locations-map-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.locations-map {
  display: block;
  width: min(100%, 800px);
  max-width: 100%;
  height: auto;
  overflow: hidden;
}

/* Accurate U.S. state map overrides */
.locations-map .state {
  fill: rgba(255, 255, 255, 0.82);
}

.locations-map .borders {
  stroke: #d2d1cb;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.locations-map .map-region {
  fill: #c5d4d7;
  cursor: pointer;
  outline: none;
  transition: fill 180ms ease, stroke 180ms ease, filter 180ms ease;
}

.locations-map .map-region:hover,
.locations-map .map-region:focus,
.locations-map .map-region.is-active {
  fill: var(--color-blue);
  stroke: var(--color-blue-hover);
  filter: drop-shadow(0 4px 8px rgba(75, 170, 71, 0.22));
}

.locations-map .dccircle.map-region {
  stroke-width: 2;
}

.locations-map .ak,
.locations-map .hi,
.locations-map .separator1 {
  display: none;
}

@media (max-width: 980px) {
  .locations-section {
    padding-bottom: 5rem;
  }

  .locations-section__inner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .locations-map-card {
    order: 2;
  }

  .locations-map {
    width: min(100%, 720px);
  }
}

@media (max-width: 640px) {
  .locations-section {
    padding: 3.5rem 0 5.25rem;
  }

  .locations-section__inner {
    padding-inline: 1rem;
  }

  .locations-copy__lead {
    font-size: 0.96rem;
  }

  .location-card {
    padding: 0.95rem 1rem 0.95rem 1.1rem;
  }
}

/* ========================================
   Footer
======================================== */

.site-footer {
  color: rgba(255, 255, 255, 0.88);
  background:
    radial-gradient(circle at top right, rgba(75, 170, 71, 0.14), transparent 28%),
    var(--color-black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(180px, 0.8fr));
  gap: 2rem;
  width: min(100%, 1520px);
  margin-inline: auto;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 4vw, 2rem);
}

.footer-branding {
  max-width: 32rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-brand img {
  display: block;
  width: clamp(170px, 14vw, 220px);
  height: auto;
}

.footer-branding__text {
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
  line-height: 1.75;
}

.footer-column h2 {
  margin: 0 0 1rem;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.6;
  transition: color 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--color-blue);
}

.site-footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 1.35rem;
  padding: 0.85rem 1.3rem;
  color: var(--color-white);
  background: var(--color-blue);
  border: 1px solid var(--color-blue);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.site-footer__button:hover,
.site-footer__button:focus-visible {
  background: var(--color-blue-hover);
  border-color: var(--color-blue-hover);
  box-shadow: 0 12px 28px rgba(90, 185, 85, 0.3);
  transform: translateY(-2px);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  width: min(100%, 1520px);
  margin-inline: auto;
  padding: 1.1rem clamp(1rem, 4vw, 2rem) 1.35rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ========================================
   Contact overlay
======================================== */

.contact {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  overflow: hidden;
  visibility: hidden;
}

.contact.is-visible {
  visibility: visible;
}

.contact__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 12, 20, 0.58);
  opacity: 0;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: opacity 300ms ease;
}

.contact__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  color: #1a1f24;
  background:
    linear-gradient(145deg, rgba(75, 170, 71, 0.07), transparent 42%),
    #F6F3EC;
  transform: translateX(100%);
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact.is-open .contact__backdrop {
  opacity: 1;
}

.contact.is-open .contact__panel {
  transform: translateX(0);
}

.contact__top {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 1.25rem clamp(1.25rem, 4vw, 4rem);
  color: var(--color-white);
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid rgba(90, 185, 85, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.contact__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.icon-btn {
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(90, 185, 85, 0.6);
  border-radius: 0.75rem;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.icon-btn:hover {
  background: rgba(90, 185, 85, 0.2);
  transform: rotate(3deg);
}

.icon-btn__x::before,
.icon-btn__x::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 999px;
}

.icon-btn__x::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.icon-btn__x::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.contact__body {
  width: min(100%, 1500px);
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 5rem) clamp(1.25rem, 4vw, 4rem) 3rem;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.cta-left-title {
  margin: 0 0 1rem;
  color: var(--color-blue-deep);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.cta-left-lead {
  max-width: 42rem;
  margin: 0 0 1.5rem;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.65;
}

.cta-left-subtitle,
.cta-form-title {
  color: #4FA94B;
  margin: 1.6rem 0 1rem;
  color: var(--color-blue-deep);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.cta-left p {
  margin: 0 0 1rem;
  line-height: 1.65;
}

.cta-right {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #FAF8F2;
  border: 1px solid rgba(90, 185, 85, 0.48);
  border-radius: 1rem;
  box-shadow: 0 24px 70px rgba(23, 50, 74, 0.1);
}

.cta-form-title {
  margin-top: 0;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 0.1rem;
  color: #18212a;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(79, 169, 75, 0.52);
  border-radius: 0;
  outline: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(23, 50, 74, 0.68);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-blue-hover);
  background: rgba(90, 185, 85, 0.08);
}

.contact-form textarea,
.contact-form .btn,
.form-result {
  grid-column: 1 / -1;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 250px);
  min-height: 50px;
  margin-top: 0.25rem;
  padding: 0.9rem 1.5rem;
  color: var(--color-white);
  background: var(--color-blue);
  border: 1px solid var(--color-blue);
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.btn:hover {
  box-shadow: 0 12px 26px rgba(23, 50, 74, 0.22);
  transform: translateY(-2px);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-result {
  min-height: 1.25rem;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.cta-bottom {
  margin-top: clamp(2.5rem, 5vw, 5rem);
}

.cta-bottom__rule {
  width: 100%;
  height: 1px;
  background: rgba(79, 169, 75, 0.32);
}

.cta-bottom__inner {
  padding-top: 1.4rem;
}

.cta-bottom__lead {
  margin: 0 0 1.25rem;
  font-size: 1rem;
}

.cta-bottom__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.cta-card {
  min-width: 0;
  padding: 1.1rem;
  background: #FCFAF5;
  border: 1px solid rgba(90, 185, 85, 0.5);
  border-radius: 0.85rem;
}

.cta-card__label {
  color: #4FA94B;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cta-card__value {
  color: #111820;
  display: block;
  overflow-wrap: anywhere;
  font-size: 1rem;
  font-weight: 800;
}

.cta-card__hint,
.cta-card__hint {
  margin-top: 0.45rem;
  font-size: 0.9rem;
}

.cta-bottom__fineprint {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  line-height: 1.55;
}



/* ========================================
   Services page
======================================== */

.services-page {
  background: #ffffff;
}

.services-page-hero {
  background:
    linear-gradient(90deg, rgba(3, 7, 8, 0.82) 0%, rgba(3, 7, 8, 0.64) 30%, rgba(3, 7, 8, 0.2) 62%, rgba(3, 7, 8, 0.04) 100%),
    url("images/services-facility.svg") 62% center / cover no-repeat;
}

.services-page-hero__content .hero__title span {
  display: inline-block;
  max-width: 900px;
  font-size: clamp(2.6rem, 5.3vw, 5.8rem);
}

.services-page-shell {
  width: min(100%, 1520px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.services-page-kicker {
  margin: 0 0 0.75rem;
  color: var(--color-blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.services-page-heading {
  max-width: 760px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.services-page-heading--center {
  margin-inline: auto;
  text-align: center;
}

.services-page-heading h2,
.services-partner__intro h2,
.services-diagnose__copy h2,
.services-final-cta h2 {
  margin: 0;
  color: #101617;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.services-page-heading > p:last-child,
.services-partner__intro > p:last-child,
.services-diagnose__copy > p,
.services-final-cta p {
  margin: 1rem 0 0;
  color: rgba(16, 22, 23, 0.7);
  font-size: 1rem;
  line-height: 1.75;
}

.services-partner {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: #F5F1E8;
}

.services-partner__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.services-partner__intro {
  max-width: 720px;
}

.services-partner__promise {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 22, 23, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 18px 44px rgba(12, 19, 16, 0.05);
}

.services-partner__quote {
  margin: 0;
  color: #101617;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.services-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.6rem;
}

.services-audience span,
.services-diagnostic-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.65rem 0.85rem;
  color: #27302b;
  background: #ffffff;
  border: 1px solid rgba(75, 170, 71, 0.18);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 650;
}

.services-support {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: #ffffff;
}

.services-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.services-support-grid article {
  padding: 1.5rem;
  background: #fbfcfa;
  border: 1px solid rgba(16, 22, 23, 0.08);
  border-radius: 1.25rem;
}

.services-support-grid article > span {
  color: var(--color-blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.services-support-grid h3,
.services-types-grid h3,
.services-process-list h3 {
  margin: 0.7rem 0 0;
  color: #111716;
  font-size: 1.08rem;
  line-height: 1.35;
}

.services-support-grid p,
.services-types-grid p,
.services-process-list p {
  margin: 0.6rem 0 0;
  color: rgba(16, 22, 23, 0.68);
  font-size: 0.93rem;
  line-height: 1.65;
}

.services-diagnose {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: #EEF5F7;
}

.services-diagnose__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.services-diagnose__copy {
  max-width: 670px;
}

.services-inline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 1.5rem;
  padding: 0.85rem 1.35rem;
  color: #ffffff;
  background: var(--color-blue);
  border: 1px solid var(--color-blue);
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.services-inline-cta:hover,
.services-inline-cta:focus-visible {
  background: var(--color-blue-hover);
  box-shadow: 0 12px 28px rgba(75, 170, 71, 0.24);
  transform: translateY(-2px);
}

.services-diagnose__panel {
  padding: clamp(1.6rem, 3vw, 2.3rem);
  background: #ffffff;
  border: 1px solid rgba(16, 22, 23, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 20px 46px rgba(12, 19, 16, 0.05);
}

.services-diagnose__label {
  margin: 0 0 1rem;
  color: #101617;
  font-weight: 750;
}

.services-diagnostic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.services-diagnose__note {
  margin: 1.35rem 0 0;
  padding-top: 1.2rem;
  color: rgba(16, 22, 23, 0.7);
  border-top: 1px solid rgba(16, 22, 23, 0.08);
  line-height: 1.65;
}

.services-process {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: #ffffff;
}

.services-process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.services-process-list li {
  position: relative;
  padding: 1.35rem 1.15rem 1.35rem 1.35rem;
  border-top: 2px solid rgba(75, 170, 71, 0.28);
}

.services-process-list li + li {
  border-left: 1px solid rgba(16, 22, 23, 0.08);
}

.services-process-list li > span {
  display: inline-flex;
  color: var(--color-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.services-types {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: #F5F1E8;
}

.services-types-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.services-types-grid article {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 22, 23, 0.08);
  border-radius: 1.3rem;
  box-shadow: 0 14px 34px rgba(12, 19, 16, 0.04);
}

.services-type-number {
  color: var(--color-blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.services-final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  color: #101617;
  background:
    linear-gradient(90deg, rgba(247, 246, 240, 0.98) 0%, rgba(247, 246, 240, 0.94) 50%, rgba(247, 246, 240, 0.72) 72%, rgba(247, 246, 240, 0.45) 100%),
    url("images/services-facility.svg") 76% center / cover no-repeat;
}

.services-final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.services-final-cta__inner > div {
  max-width: 760px;
}

.services-final-cta h2 {
  color: #101617;
}

.services-final-cta p {
  color: rgba(16, 22, 23, 0.72);
}

@media (max-width: 1050px) {
  .services-partner__grid,
  .services-diagnose__grid {
    grid-template-columns: 1fr;
  }

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

  .services-process-list {
    grid-template-columns: 1fr;
  }

  .services-process-list li + li {
    border-left: 0;
    border-top: 1px solid rgba(16, 22, 23, 0.08);
  }

  .services-process-list li:first-child {
    border-top: 2px solid rgba(75, 170, 71, 0.28);
  }
}

@media (max-width: 700px) {
  .services-page-hero {
    background:
      linear-gradient(180deg, rgba(3, 7, 8, 0.18) 0%, rgba(3, 7, 8, 0.68) 46%, rgba(3, 7, 8, 0.94) 100%),
      url("images/services-facility.svg") 68% center / cover no-repeat;
  }

  .services-support-grid,
  .services-types-grid {
    grid-template-columns: 1fr;
  }

  .services-final-cta__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .services-final-cta .hero__button {
    width: 100%;
  }
}

/* ========================================
   Careers page
======================================== */

.careers-hero {
  background:
    linear-gradient(90deg, rgba(3, 7, 8, 0.78) 0%, rgba(3, 7, 8, 0.58) 30%, rgba(3, 7, 8, 0.2) 62%, rgba(3, 7, 8, 0.04) 100%),
    url("images/careers-team.svg") 58% center / cover no-repeat;
}

.careers-hero .hero__title {
  max-width: 1000px;
}

.careers-hero .hero__title span {
  display: inline-block;
  max-width: 950px;
  margin-top: 0.3em;
  color: var(--color-white);
  font-size: 0.48em;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.careers-shell {
  width: min(100%, 1480px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.careers-section-heading {
  max-width: 720px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.careers-section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.careers-kicker {
  margin: 0 0 0.7rem;
  color: var(--color-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.careers-section-heading h2,
.general-application h2 {
  margin: 0;
  color: #111715;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.careers-section-heading > p:last-child {
  margin: 1rem 0 0;
  color: rgba(17, 23, 21, 0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.careers-why {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: #F5F1E8;
}

.career-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(17, 23, 21, 0.12);
  border-bottom: 1px solid rgba(17, 23, 21, 0.12);
}

.career-value {
  position: relative;
  min-width: 0;
  padding: 1.6rem clamp(1rem, 2vw, 1.6rem) 1.8rem;
}

.career-value + .career-value {
  border-left: 1px solid rgba(17, 23, 21, 0.12);
}

.career-value__number {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--color-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.career-value h3 {
  margin: 0;
  color: #111715;
  font-size: 1.08rem;
}

.career-value p {
  margin: 0.7rem 0 0;
  color: rgba(17, 23, 21, 0.66);
  font-size: 0.94rem;
  line-height: 1.65;
}

.hiring-process {
  padding: clamp(4rem, 7vw, 6.25rem) 0;
  background: #ffffff;
}

.hiring-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.hiring-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  background: #FBFAF6;
  border: 1px solid rgba(17, 23, 21, 0.08);
  border-radius: 1.25rem;
}

.hiring-step__number {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  color: #ffffff;
  background: var(--color-blue);
  border-radius: 999px;
  font-weight: 800;
}

.hiring-step h3 {
  margin: 0.15rem 0 0;
  color: #111715;
  font-size: 1.1rem;
}

.hiring-step p {
  margin: 0.55rem 0 0;
  color: rgba(17, 23, 21, 0.66);
  font-size: 0.94rem;
  line-height: 1.65;
}

.open-roles {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: #EEF5F7;
}

.careers-shell--roles {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.roles-list {
  display: grid;
  gap: 0.85rem;
}

.role-card {
  background: #ffffff;
  border: 1px solid rgba(17, 23, 21, 0.08);
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(12, 19, 16, 0.035);
}

.role-card__summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 1.25rem;
}

.role-card__meta {
  margin: 0 0 0.35rem;
  color: var(--color-blue);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.role-card h3 {
  margin: 0;
  color: #111715;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.role-card__actions {
  display: flex;
  gap: 0.6rem;
}

.role-details-button,
.role-apply-button,
.general-application__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 750;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.role-details-button {
  color: #111715;
  background: transparent;
  border: 1px solid rgba(17, 23, 21, 0.18);
}

.role-apply-button,
.general-application__button {
  color: #ffffff;
  background: var(--color-blue);
  border: 1px solid var(--color-blue);
}

.role-details-button:hover,
.role-details-button:focus-visible {
  color: var(--color-blue);
  border-color: var(--color-blue);
  transform: translateY(-1px);
}

.role-apply-button:hover,
.role-apply-button:focus-visible,
.general-application__button:hover,
.general-application__button:focus-visible {
  background: var(--color-blue-hover);
  border-color: var(--color-blue-hover);
  transform: translateY(-1px);
}

.role-card__details {
  border-top: 1px solid rgba(17, 23, 21, 0.08);
  background: #FBFAF6;
}

.role-card__details[hidden] {
  display: none;
}

.role-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.15rem 1.25rem 1.3rem;
}

.role-detail-grid h4 {
  margin: 0;
  color: #111715;
  font-size: 0.88rem;
}

.role-detail-grid p {
  margin: 0.5rem 0 0;
  color: rgba(17, 23, 21, 0.66);
  font-size: 0.9rem;
  line-height: 1.6;
}

.general-application {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: #ffffff;
}

.general-application__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  background: #0B1110;
  border-radius: 1.5rem;
}

.general-application h2 {
  color: #ffffff;
}

.general-application__box > div > p:last-child {
  max-width: 760px;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* Application overlay */
.application {
  position: fixed;
  inset: 0;
  z-index: 5200;
  overflow: hidden;
  visibility: hidden;
}

.application.is-visible {
  visibility: visible;
}

.application__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 7, 0.62);
  opacity: 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: opacity 280ms ease;
}

.application__panel {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: min(100%, 1180px);
  height: 100%;
  overflow-y: auto;
  color: #131918;
  background: #F6F3EC;
  transform: translateX(100%);
  overscroll-behavior: contain;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.application.is-open .application__backdrop { opacity: 1; }
.application.is-open .application__panel { transform: translateX(0); }

.application__top {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 3vw, 2rem);
  color: #ffffff;
  background: #080B0A;
  border-bottom: 1px solid rgba(75, 170, 71, 0.34);
}

.application__eyebrow {
  margin: 0 0 0.25rem;
  color: var(--color-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.application__title {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}

.application__body {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(2rem, 5vw, 4rem);
}

.application-intro h3,
.application-form-heading h3 {
  margin: 0;
  color: #111715;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.3vw, 2.8rem);
  line-height: 1.05;
}

.application-intro > p:not(.careers-kicker) {
  margin: 1rem 0 0;
  color: rgba(17, 23, 21, 0.68);
  line-height: 1.75;
}

.application-expectations {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(17, 23, 21, 0.12);
}

.application-expectations h4 {
  margin: 0 0 0.65rem;
  color: #111715;
}

.application-expectations ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.15rem;
  color: rgba(17, 23, 21, 0.7);
}

.application-expectations p {
  margin: 0;
  color: rgba(17, 23, 21, 0.7);
  line-height: 1.7;
}

.application-form-wrap {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #FCFAF5;
  border: 1px solid rgba(75, 170, 71, 0.28);
  border-radius: 1.3rem;
}

.application-form-heading {
  margin-bottom: 1.25rem;
}

.application-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.2rem;
}

.application-form label {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
}

.application-form label > span {
  color: rgba(17, 23, 21, 0.74);
  font-size: 0.78rem;
  font-weight: 700;
}

.application-form em {
  font-style: normal;
  font-weight: 500;
  color: rgba(17, 23, 21, 0.5);
}

.application-form input,
.application-form select,
.application-form textarea {
  width: 100%;
  min-width: 0;
  padding: 0.9rem 0.05rem;
  color: #111715;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(75, 170, 71, 0.5);
  border-radius: 0;
  outline: none;
}

.application-form select {
  appearance: auto;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
  border-color: var(--color-blue-hover);
  background: rgba(75, 170, 71, 0.05);
}

.application-form__file,
.application-form__message,
.application-submit,
.application-form__fineprint,
.application-result {
  grid-column: 1 / -1;
}

.application-form__message textarea {
  min-height: 120px;
  resize: vertical;
}

.application-form__file input {
  padding: 0.65rem 0;
}

.application-submit {
  min-height: 50px;
  margin-top: 0.35rem;
  color: #ffffff;
  background: var(--color-blue);
  border: 1px solid var(--color-blue);
  border-radius: 999px;
  font-weight: 800;
}

.application-submit:hover,
.application-submit:focus-visible {
  background: var(--color-blue-hover);
  border-color: var(--color-blue-hover);
}

.application-form__fineprint {
  margin: 0;
  color: rgba(17, 23, 21, 0.58);
  font-size: 0.82rem;
  line-height: 1.55;
}

.application-result {
  min-height: 1.2rem;
  color: #111715;
  font-size: 0.9rem;
  font-weight: 700;
}

body.is-application-open {
  overflow: hidden;
}

@media (max-width: 1050px) {
  .career-values { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .career-value:nth-child(3) { border-left: 0; border-top: 1px solid rgba(17, 23, 21, 0.12); }
  .career-value:nth-child(4) { border-top: 1px solid rgba(17, 23, 21, 0.12); }
  .hiring-steps { grid-template-columns: 1fr; }
  .careers-shell--roles { grid-template-columns: 1fr; gap: 1rem; }
  .application__body { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .careers-hero {
    background:
      linear-gradient(180deg, rgba(3, 7, 8, 0.18) 0%, rgba(3, 7, 8, 0.62) 43%, rgba(3, 7, 8, 0.94) 100%),
      url("images/careers-team.svg") 62% center / cover no-repeat;
  }

  .careers-hero .hero__title span { font-size: 0.52em; }
  .career-values { grid-template-columns: 1fr; }
  .career-value + .career-value,
  .career-value:nth-child(3) { border-left: 0; border-top: 1px solid rgba(17, 23, 21, 0.12); }
  .role-card__summary { grid-template-columns: 1fr; }
  .role-card__actions { width: 100%; }
  .role-details-button,
  .role-apply-button { flex: 1; }
  .role-detail-grid { grid-template-columns: 1fr; }
  .general-application__box { grid-template-columns: 1fr; }
  .general-application__button { width: 100%; }
  .application__panel { width: 100%; }
  .application__body { padding: 1.5rem 1rem 2rem; }
  .application-form { grid-template-columns: 1fr; }
  .application-form__file,
  .application-form__message,
  .application-submit,
  .application-form__fineprint,
  .application-result { grid-column: auto; }
}


/* ========================================
   Responsive navigation
======================================== */

@media (max-width: 1100px) {
  :root {
    --header-height: 90px;
  }

  .header-container {
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 145px;
  }

  .menu-toggle {
    position: relative;
    z-index: 1102;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 10px;
    color: var(--color-white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.75rem;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1098;
    display: block;
    padding: 0;
    background: rgba(0, 0, 0, 0.5);
    border: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  .nav-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
  }

  .primary-navigation {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    display: grid;
    align-content: start;
    gap: 1.4rem;
    width: min(360px, 100%);
    height: 100dvh;
    padding: 6.15rem 1.35rem 1.5rem;
    background: rgba(5, 5, 5, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -24px 0 44px rgba(0, 0, 0, 0.28);
    transform: translateX(104%);
    opacity: 0;
    visibility: hidden;
    transition:
      transform 260ms ease,
      opacity 220ms ease,
      visibility 220ms ease;
  }

  .primary-navigation.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .primary-navigation__eyebrow {
    display: block;
    color: var(--color-blue);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .nav-list {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-list li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-list a {
    width: 100%;
    padding-block: 1rem;
    font-size: 1rem;
    letter-spacing: 0.03em;
  }

  .locations-link {
    justify-content: space-between;
  }

  .contact-button-desktop {
    display: none;
  }

  .contact-button-mobile {
    display: inline-flex;
    width: 100%;
    margin-top: 0.25rem;
  }

  .cta-grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1101px) {
  .nav-backdrop,
  .primary-navigation__eyebrow {
    display: none;
  }
}

@media (max-width: 720px) {
  .contact__top {
    min-height: 74px;
    padding: 0.9rem 1rem;
  }

  .contact__body {
    padding: 1.75rem 1rem 2rem;
  }

  .cta-left-title {
    font-size: clamp(2.2rem, 12vw, 3.6rem);
  }

  .cta-right {
    padding: 1rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form textarea,
  .contact-form .btn,
  .form-result {
    grid-column: auto;
  }

  .cta-bottom__cards {
    grid-template-columns: 1fr;
  }

  .cta-card {
    width: 100%;
  }

  .primary-navigation {
    width: 100%;
    padding-inline: 1rem;
  }

  .site-footer__bottom {
    flex-direction: column;
  }
}

/* ========================================
   Services page — service-focused additions
======================================== */
.service-overview,
.service-category,
.service-plan {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.service-overview,
.service-category {
  background: #ffffff;
}

.service-offering-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-offering-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: clamp(1.35rem, 2.5vw, 1.8rem);
  background: #fbfcfa;
  border: 1px solid rgba(16, 22, 23, 0.08);
  border-radius: 1.25rem;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-offering-card--featured {
  background: #F5F1E8;
  border-color: rgba(75, 170, 71, 0.16);
}

.service-offering-card:hover {
  transform: translateY(-2px);
  border-color: rgba(75, 170, 71, 0.22);
  box-shadow: 0 16px 36px rgba(12, 19, 16, 0.05);
}

.service-offering-card__number,
.service-plan-grid article > span {
  color: var(--color-blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-offering-card h3,
.service-category__list h3,
.service-plan-grid h3 {
  margin: 0;
  color: #111716;
  font-size: 1.08rem;
  line-height: 1.35;
}

.service-offering-card p,
.service-category__list p,
.service-plan-grid p {
  margin: 0.55rem 0 0;
  color: rgba(16, 22, 23, 0.68);
  font-size: 0.94rem;
  line-height: 1.68;
}

.service-category--soft {
  background: #F5F1E8;
}

.service-category__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.service-category__layout--reverse {
  grid-template-columns: minmax(420px, 1.18fr) minmax(0, 0.82fr);
}

.service-category__layout--reverse .service-category__intro {
  grid-column: 2;
  grid-row: 1;
}

.service-category__layout--reverse .service-category__list {
  grid-column: 1;
  grid-row: 1;
}

.service-category__intro {
  max-width: 620px;
  position: sticky;
  top: 8rem;
}

.service-category__intro h2 {
  margin: 0;
  color: #101617;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.service-category__intro > p:last-of-type {
  margin: 1rem 0 0;
  color: rgba(16, 22, 23, 0.7);
  font-size: 1rem;
  line-height: 1.75;
}

.service-category__list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(16, 22, 23, 0.1);
}

.service-category__list article {
  padding: 1.55rem 0;
  border-bottom: 1px solid rgba(16, 22, 23, 0.1);
}

.service-plan {
  background: #EEF5F7;
}

.service-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-plan-grid article {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(16, 22, 23, 0.08);
  border-radius: 1.2rem;
}

.service-plan-grid h3 {
  margin-top: 0.75rem;
}

@media (max-width: 1050px) {
  .service-category__layout,
  .service-category__layout--reverse {
    grid-template-columns: 1fr;
  }

  .service-category__layout--reverse .service-category__intro,
  .service-category__layout--reverse .service-category__list {
    grid-column: auto;
    grid-row: auto;
  }

  .service-category__intro {
    position: static;
  }

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

@media (max-width: 700px) {
  .service-offering-grid,
  .service-plan-grid {
    grid-template-columns: 1fr;
  }

  .service-offering-card {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
}

/* ========================================
   About + Sustainability pages
   ======================================== */
.about-page,
.sustainability-page {
  background: #ffffff;
}

.page-shell {
  width: min(100%, 1480px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.page-kicker {
  margin: 0 0 0.75rem;
  color: var(--color-blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-heading {
  max-width: 780px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.page-heading h2,
.story-grid h2,
.about-approach-grid h2,
.services-final-cta h2 {
  margin: 0;
  color: #101617;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.page-heading > p:last-child,
.story-grid > div:first-child > p:not(.page-kicker),
.about-approach-grid > div:last-child > p:not(.page-kicker),
.services-final-cta p {
  color: rgba(16, 22, 23, 0.7);
  font-size: 1rem;
  line-height: 1.78;
}

.page-heading > p:last-child {
  margin: 1rem 0 0;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(3, 7, 8, 0.8) 0%, rgba(3, 7, 8, 0.62) 31%, rgba(3, 7, 8, 0.2) 63%, rgba(3, 7, 8, 0.04) 100%),
    url("images/about-team.svg") 58% center / cover no-repeat;
}

.sustainability-hero {
  background:
    linear-gradient(90deg, rgba(3, 7, 8, 0.8) 0%, rgba(3, 7, 8, 0.62) 31%, rgba(3, 7, 8, 0.2) 63%, rgba(3, 7, 8, 0.04) 100%),
    url("images/sustainability-facility.svg") 58% center / cover no-repeat;
}

.about-hero .hero__title,
.sustainability-hero .hero__title {
  max-width: 1050px;
}

.about-hero .hero__title span,
.sustainability-hero .hero__title span {
  display: inline-block;
  color: var(--color-white);
}

.story-section,
.sustain-intro {
  padding: clamp(4.25rem, 7vw, 6.75rem) 0;
  background: #F5F1E8;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.story-grid > div:first-child > p:not(.page-kicker) {
  max-width: 760px;
  margin: 1rem 0 0;
}

.story-panel {
  position: relative;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 22, 23, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 18px 50px rgba(20, 28, 24, 0.06);
}

.story-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(1.8rem, 3vw, 2.6rem);
  width: 4rem;
  height: 3px;
  background: var(--color-blue);
}

.story-panel > span {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--color-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-panel p {
  margin: 0;
  color: #101617;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2.05rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.values-section,
.sustain-pillars {
  padding: clamp(4.25rem, 7vw, 6.5rem) 0;
  background: #ffffff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(16, 22, 23, 0.12);
  border-bottom: 1px solid rgba(16, 22, 23, 0.12);
}

.values-grid article {
  min-width: 0;
  padding: clamp(1.5rem, 2.5vw, 2.1rem);
}

.values-grid article + article {
  border-left: 1px solid rgba(16, 22, 23, 0.12);
}

.values-grid article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1.5rem;
  color: var(--color-blue);
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(75, 170, 71, 0.09);
  border-radius: 999px;
}

.values-grid h3 {
  margin: 0;
  color: #101617;
  font-size: 1.12rem;
  line-height: 1.25;
}

.values-grid p {
  margin: 0.7rem 0 0;
  color: rgba(16, 22, 23, 0.67);
  font-size: 0.94rem;
  line-height: 1.68;
}

.about-approach,
.sustain-practice {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  background: #EEF5F1;
}

.about-approach-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.about-visual {
  min-height: clamp(360px, 42vw, 610px);
  overflow: hidden;
  background: #dfe8e1;
  border-radius: 1.6rem;
  box-shadow: 0 22px 54px rgba(13, 22, 18, 0.08);
}

.about-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.about-approach-grid > div:last-child > p:not(.page-kicker) {
  max-width: 720px;
  margin: 1rem 0 0;
}

.approach-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(1.8rem, 4vw, 2.8rem);
  border-top: 1px solid rgba(16, 22, 23, 0.13);
}

.approach-list > div {
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem 1.25rem 1.25rem 0;
  border-bottom: 1px solid rgba(16, 22, 23, 0.13);
}

.approach-list > div:nth-child(even) {
  padding-left: 1.25rem;
  border-left: 1px solid rgba(16, 22, 23, 0.13);
}

.approach-list strong {
  color: #101617;
  font-size: 1rem;
}

.approach-list span {
  color: rgba(16, 22, 23, 0.64);
  font-size: 0.92rem;
  line-height: 1.55;
}

.people-section,
.sustain-commitment {
  padding: clamp(4.25rem, 7vw, 6.5rem) 0;
  background: #ffffff;
}

.people-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.people-tags span {
  padding: 0.85rem 1.15rem;
  color: #101617;
  font-size: 0.93rem;
  font-weight: 700;
  background: #F5F1E8;
  border: 1px solid rgba(16, 22, 23, 0.08);
  border-radius: 999px;
}

.commitment-band {
  display: grid;
  grid-template-columns: repeat(7, auto);
  align-items: center;
  justify-content: start;
  gap: clamp(0.65rem, 2vw, 1.25rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: 1.35rem 1.5rem;
  background: #F5F1E8;
  border: 1px solid rgba(16, 22, 23, 0.08);
  border-radius: 1.25rem;
}

.commitment-band span {
  color: #101617;
  font-weight: 800;
}

.commitment-band b {
  color: var(--color-blue);
  font-weight: 800;
}

.about-page .services-final-cta,
.sustainability-page .services-final-cta {
  padding: clamp(3.6rem, 6vw, 5.25rem) 0;
  background: #111715;
}

.about-page .services-final-cta__inner,
.sustainability-page .services-final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.about-page .services-final-cta h2,
.sustainability-page .services-final-cta h2 {
  color: #ffffff;
}

.about-page .services-final-cta p,
.sustainability-page .services-final-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.7);
}

.about-page .services-final-cta .page-kicker,
.sustainability-page .services-final-cta .page-kicker {
  color: var(--color-blue);
}

@media (max-width: 980px) {
  .story-grid,
  .about-approach-grid {
    grid-template-columns: 1fr;
  }

  .story-panel {
    max-width: 760px;
  }

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

  .values-grid article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(16, 22, 23, 0.12);
  }

  .values-grid article:nth-child(4) {
    border-top: 1px solid rgba(16, 22, 23, 0.12);
  }

  .about-visual {
    min-height: 420px;
  }

  .about-page .services-final-cta__inner,
  .sustainability-page .services-final-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .about-hero,
  .sustainability-hero {
    background-position: 64% center;
  }

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

  .values-grid article + article,
  .values-grid article:nth-child(3),
  .values-grid article:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(16, 22, 23, 0.12);
  }

  .about-visual {
    min-height: 300px;
    border-radius: 1.2rem;
  }

  .approach-list {
    grid-template-columns: 1fr;
  }

  .approach-list > div,
  .approach-list > div:nth-child(even) {
    padding: 1rem 0;
    border-left: 0;
  }

  .commitment-band {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .commitment-band b {
    transform: rotate(90deg);
    transform-origin: left center;
    margin-left: 0.3rem;
  }

  .about-page .services-final-cta .hero__button,
  .sustainability-page .services-final-cta .hero__button {
    width: 100%;
  }
}


/* ========================================
   Refinement pass — Services imagery
======================================== */
.service-photo-showcase {
  display: grid;
  grid-template-columns: 1.35fr 0.825fr 0.825fr;
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3.25rem);
}

.service-photo,
.service-inline-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #e8ece8;
  border-radius: 1.35rem;
}

.service-photo {
  min-height: clamp(250px, 28vw, 390px);
}

.service-photo img,
.service-inline-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}

.service-photo:hover img {
  transform: scale(1.025);
}

.service-photo figcaption {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 0.25rem;
  padding: 2.75rem 1.25rem 1.15rem;
  color: #ffffff;
  background: linear-gradient(180deg, transparent, rgba(4, 10, 7, 0.82));
}

.service-photo figcaption strong {
  font-size: 1rem;
}

.service-photo figcaption span {
  max-width: 34rem;
  color: rgba(255,255,255,.8);
  font-size: 0.84rem;
  line-height: 1.45;
}

.service-inline-photo {
  aspect-ratio: 16 / 10;
  margin-top: 1.75rem;
  box-shadow: 0 18px 40px rgba(12, 19, 16, 0.07);
}

.service-inline-photo img {
  object-position: center;
}

.service-inline-photo--specialty img {
  object-position: 50% 55%;
}

@media (max-width: 900px) {
  .service-photo-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-photo--wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .service-photo-showcase {
    grid-template-columns: 1fr;
  }

  .service-photo--wide {
    grid-column: auto;
  }

  .service-photo {
    min-height: 260px;
  }
}

/* ========================================
   Sustainability — redesigned requested sections
======================================== */
.sustain-design-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.sustain-design-copy {
  max-width: 720px;
  position: sticky;
  top: 8rem;
}

.sustain-design-copy h2,
.sustain-improvement-copy h2 {
  margin: 0;
  color: #101617;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.sustain-design-copy > p:last-child,
.sustain-improvement-copy > p:last-child {
  margin: 1rem 0 0;
  color: rgba(16, 22, 23, 0.7);
  font-size: 1rem;
  line-height: 1.78;
}

.sustain-design-principles {
  display: grid;
  gap: 1rem;
}

.sustain-design-feature {
  position: relative;
  padding: clamp(1.7rem, 3vw, 2.5rem);
  background: #ffffff;
  border: 1px solid rgba(16,22,23,.08);
  border-radius: 1.5rem;
  box-shadow: 0 18px 48px rgba(20,28,24,.055);
}

.sustain-design-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(1.7rem, 3vw, 2.5rem);
  width: 4rem;
  height: 3px;
  background: var(--color-blue);
}

.sustain-design-feature > span {
  display: block;
  margin-bottom: .85rem;
  color: var(--color-blue);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.sustain-design-feature p {
  margin: 0;
  color: #101617;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 2.05rem);
  line-height: 1.25;
  letter-spacing: -.025em;
}

.sustain-design-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(16,22,23,.12);
  border-bottom: 1px solid rgba(16,22,23,.12);
}

.sustain-design-points article {
  display: grid;
  gap: .5rem;
  padding: 1.25rem;
}

.sustain-design-points article + article {
  border-left: 1px solid rgba(16,22,23,.12);
}

.sustain-design-points strong {
  color: #101617;
  font-size: .96rem;
}

.sustain-design-points span {
  color: rgba(16,22,23,.64);
  font-size: .88rem;
  line-height: 1.55;
}

.sustain-improvement-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.sustain-improvement-copy {
  margin: 0;
}

.sustain-improvement-steps {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(16,22,23,.12);
}

.sustain-improvement-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(16,22,23,.12);
}

.sustain-improvement-steps li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  color: var(--color-blue);
  background: rgba(75,170,71,.09);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
}

.sustain-improvement-steps strong {
  display: block;
  color: #101617;
  font-size: 1.03rem;
}

.sustain-improvement-steps p {
  margin: .35rem 0 0;
  color: rgba(16,22,23,.64);
  font-size: .91rem;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .sustain-design-grid,
  .sustain-improvement-layout {
    grid-template-columns: 1fr;
  }

  .sustain-design-copy {
    position: static;
  }

  .sustain-improvement-copy {
    max-width: 780px;
  }
}

@media (max-width: 680px) {
  .sustain-design-points {
    grid-template-columns: 1fr;
  }

  .sustain-design-points article + article {
    border-left: 0;
    border-top: 1px solid rgba(16,22,23,.12);
  }
}

/* ========================================
   Lightweight scroll reveal enhancements
   Content remains visible without JavaScript.
======================================== */
.reveal-ready .reveal-item {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 520ms cubic-bezier(.2,.7,.2,1),
    transform 520ms cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-ready .reveal-item.reveal-left {
  transform: translate3d(-22px, 0, 0);
}

.reveal-ready .reveal-item.reveal-right {
  transform: translate3d(22px, 0, 0);
}

.reveal-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

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

  .reveal-ready .reveal-item,
  .reveal-ready .reveal-item.reveal-left,
  .reveal-ready .reveal-item.reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .service-photo img,
  .service-offering-card,
  .service-inline-cta {
    transition: none;
  }
}


/* ========================================
   Services — Floor & Surface + Specialty redesign
======================================== */
.service-category--visual {
  overflow: clip;
}

.service-category-visual__header {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.service-category-visual__header--reverse {
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
}

.service-category-visual__header--reverse .service-category-visual__intro {
  grid-column: 2;
  grid-row: 1;
}

.service-category-visual__header--reverse .service-category-visual__benefits {
  grid-column: 1;
  grid-row: 1;
}

.service-category-visual__intro {
  max-width: 760px;
}

.service-category-visual__intro h2 {
  margin: 0;
  color: #101617;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.9rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.service-category-visual__intro > p:last-of-type {
  max-width: 660px;
  margin: 1rem 0 0;
  color: rgba(16, 22, 23, 0.7);
  font-size: 1rem;
  line-height: 1.78;
}

.service-category-visual__benefits {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(16, 22, 23, 0.12);
}

.service-category-visual__benefits span {
  position: relative;
  padding: 0.95rem 0 0.95rem 1.35rem;
  color: rgba(16, 22, 23, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(16, 22, 23, 0.1);
}

.service-category-visual__benefits span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.48rem;
  height: 0.48rem;
  background: var(--color-blue);
  border-radius: 50%;
  transform: translateY(-50%);
}

.service-image-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.75fr);
  grid-template-rows: repeat(2, minmax(185px, 1fr));
  gap: 1rem;
  min-height: clamp(480px, 48vw, 660px);
}

.service-image-mosaic--reverse {
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.55fr);
}

.service-image-mosaic--reverse .service-image-mosaic__item--large {
  grid-column: 2;
}

.service-image-mosaic--reverse .service-image-mosaic__item:not(.service-image-mosaic__item--large) {
  grid-column: 1;
}

.service-image-mosaic__item {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
  margin: 0;
  background: #e9ece8;
  border-radius: 1.35rem;
  box-shadow: 0 18px 44px rgba(12, 19, 16, 0.06);
}

.service-image-mosaic__item--large {
  grid-row: 1 / span 2;
}

.service-image-mosaic__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}

.service-image-mosaic__item:hover img {
  transform: scale(1.025);
}

.service-image-mosaic__item figcaption {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 0.3rem;
  padding: 3.5rem 1.25rem 1.2rem;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(3, 8, 6, 0.84) 72%);
}

.service-image-mosaic__item figcaption strong {
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.service-image-mosaic__item figcaption span {
  max-width: 34rem;
  color: rgba(255,255,255,.8);
  font-size: 0.84rem;
  line-height: 1.45;
}

.service-category-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.service-category-card-grid article {
  min-width: 0;
  padding: clamp(1.25rem, 2.5vw, 1.65rem);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 22, 23, 0.08);
  border-radius: 1.2rem;
}

.service-category--soft .service-category-card-grid article {
  background: rgba(255, 255, 255, 0.78);
}

.service-category-card-grid article > span {
  color: var(--color-blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-category-card-grid h3 {
  margin: 0.7rem 0 0;
  color: #111716;
  font-size: 1.08rem;
  line-height: 1.35;
}

.service-category-card-grid p {
  margin: 0.55rem 0 0;
  color: rgba(16, 22, 23, 0.68);
  font-size: 0.94rem;
  line-height: 1.68;
}

.service-category-visual__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(16, 22, 23, 0.1);
}

.service-category-visual__footer p {
  margin: 0;
  color: rgba(16, 22, 23, 0.72);
  font-size: 0.96rem;
}

@media (max-width: 980px) {
  .service-category-visual__header,
  .service-category-visual__header--reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-category-visual__header--reverse .service-category-visual__intro,
  .service-category-visual__header--reverse .service-category-visual__benefits {
    grid-column: auto;
    grid-row: auto;
  }

  .service-category-visual__header--reverse .service-category-visual__intro {
    order: 1;
  }

  .service-category-visual__header--reverse .service-category-visual__benefits {
    order: 2;
  }

  .service-image-mosaic,
  .service-image-mosaic--reverse {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(300px, auto) minmax(220px, auto);
    min-height: 0;
  }

  .service-image-mosaic__item--large,
  .service-image-mosaic--reverse .service-image-mosaic__item--large {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .service-image-mosaic--reverse .service-image-mosaic__item:not(.service-image-mosaic__item--large) {
    grid-column: auto;
  }

  .service-category-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .service-image-mosaic,
  .service-image-mosaic--reverse {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 0.8rem;
  }

  .service-image-mosaic__item,
  .service-image-mosaic__item--large,
  .service-image-mosaic--reverse .service-image-mosaic__item--large,
  .service-image-mosaic--reverse .service-image-mosaic__item:not(.service-image-mosaic__item--large) {
    grid-column: 1;
    grid-row: auto;
    min-height: 240px;
    aspect-ratio: 4 / 3;
  }

  .service-category-visual__footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
