:root {
  --green: #205340;
  --green-deep: #123b2d;
  --green-dark: #0d3024;
  --green-soft: #dfe8e1;
  --green-pale: #edf3ee;
  --cream: #f6f2e9;
  --cream-deep: #ece5d7;
  --white: #ffffff;
  --ink: #17201c;
  --muted: #5e6863;
  --line: rgba(32, 83, 64, 0.18);
  --shadow: 0 22px 60px rgba(18, 59, 45, 0.12);
  --radius: 2px;
  --header-height: 88px;
  --container: 1240px;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Arial, Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 5.3vw, 5.6rem);
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(2.5rem, 4vw, 4.35rem);
}

h3 {
  line-height: 1.25;
}

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

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--green-dark);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.section-anchor {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.anchor-alias {
  position: absolute;
  top: calc(var(--header-height) * -1);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--green);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: #d6e5db;
}

.lead {
  font-size: clamp(1.1rem, 1.8vw, 1.36rem);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.footer-nav a:focus-visible,
.contact-links a:focus-visible,
.footer-bottom a:focus-visible,
.brand:focus-visible,
.footer-brand:focus-visible {
  outline: 3px solid #c8a95b;
  outline-offset: 4px;
}

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

.button-primary:hover {
  background: var(--green-deep);
}

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

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(32, 83, 64, 0.1);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  flex: 0 0 auto;
  width: clamp(185px, 18vw, 235px);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 31px);
}

.site-nav a {
  position: relative;
  padding-block: 10px;
  color: #28342e;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-cta {
  min-height: 42px;
  padding: 10px 18px;
  color: var(--white);
  background: var(--green);
}

.site-nav .nav-cta:hover {
  background: var(--green-deep);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  border: 0;
  color: var(--green-deep);
  background: transparent;
  cursor: pointer;
}

.menu-toggle-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle-icon {
  display: grid;
  gap: 5px;
  width: 24px;
}

.menu-toggle-icon span {
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: clamp(
    620px,
    calc(100vh - var(--header-height) - 120px),
    740px
  );
  align-items: center;
  overflow: hidden;
  background: var(--green-pale);
}

.hero-background {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(248, 248, 245, 0.99) 0%,
      rgba(248, 248, 245, 0.96) 27%,
      rgba(248, 248, 245, 0.76) 47%,
      rgba(248, 248, 245, 0.22) 69%,
      rgba(248, 248, 245, 0.03) 100%
    );
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 24%;
  background: linear-gradient(to bottom, rgba(18, 59, 45, 0), rgba(18, 59, 45, 0.12));
  content: "";
  pointer-events: none;
}

.hero-inner {
  display: flex;
  align-items: center;
  padding-block: clamp(86px, 10vw, 146px);
}

.hero-copy {
  display: flex;
  width: min(610px, 52%);
  align-items: flex-start;
  flex-direction: column;
}

.hero-copy h1 {
  max-width: 720px;
}

.hero-intro {
  max-width: 610px;
  margin-bottom: 34px;
  color: #435049;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.strengths {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  color: var(--white);
  background: var(--green);
}

.strength {
  display: grid;
  min-height: 190px;
  align-items: start;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 38px clamp(24px, 3vw, 50px);
}

.strength + .strength {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.strength svg {
  width: 44px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.strength h2 {
  margin-bottom: 9px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
}

.strength p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.55;
}

.section {
  position: relative;
  padding-block: clamp(88px, 10vw, 150px);
}

.section-intro-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 8vw, 120px);
}

.section-copy {
  max-width: 690px;
}

.section-copy p:last-child,
.approach-copy p:last-of-type,
.contact-intro p:last-of-type {
  margin-bottom: 0;
}

.section-copy p:not(.lead) {
  color: var(--muted);
}

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

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(60px, 8vw, 110px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-card {
  min-height: 210px;
  padding: 40px clamp(22px, 3.5vw, 50px);
}

.stat-card + .stat-card {
  border-left: 1px solid var(--line);
}

.stat-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.stat-card span {
  display: block;
  max-width: 310px;
  color: #53605a;
  font-size: 0.93rem;
}

.section-heading-row {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
  gap: clamp(50px, 8vw, 130px);
  margin-bottom: clamp(50px, 7vw, 90px);
}

.section-heading-row h2 {
  max-width: 800px;
  margin-bottom: 0;
}

.section-heading-row > p {
  margin-bottom: 6px;
  color: var(--muted);
}

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

.service-card {
  position: relative;
  min-height: 330px;
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:not(.service-featured):hover {
  z-index: 1;
  border-color: rgba(32, 83, 64, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-card h3 {
  margin-bottom: 18px;
  color: var(--green-deep);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 400;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.service-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 36px;
  border-radius: 50%;
  color: var(--green);
  background: var(--green-pale);
}

.service-icon svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-featured {
  display: grid;
  min-height: 510px;
  grid-column: span 2;
  grid-row: span 2;
  grid-template-columns: minmax(0, 1.25fr) minmax(230px, 0.75fr);
  gap: clamp(40px, 6vw, 86px);
  color: var(--white);
  border-color: var(--green);
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  overflow: hidden;
}

.service-featured::after {
  position: absolute;
  right: -90px;
  bottom: -150px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.025), 0 0 0 120px rgba(255, 255, 255, 0.018);
  content: "";
}

.service-featured-copy,
.service-points {
  position: relative;
  z-index: 1;
}

.card-kicker {
  display: inline-block;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-featured h3 {
  max-width: 620px;
  margin-bottom: 25px;
  color: var(--white);
  font-size: clamp(2.2rem, 3.2vw, 3.75rem);
}

.service-featured h3 span {
  white-space: nowrap;
}

.service-featured p {
  max-width: 670px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.service-featured .button {
  margin-top: 14px;
}

.service-points {
  align-self: end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-points li {
  display: grid;
  align-items: center;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 13px;
  padding-block: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.86rem;
}

.service-points li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.service-points span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.section-sectors {
  background: var(--green-pale);
}

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

.sector-card {
  position: relative;
  min-height: 390px;
  padding: 34px 30px 38px;
  border-top: 3px solid var(--green);
  background: rgba(255, 255, 255, 0.72);
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.sector-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.sector-number {
  display: block;
  margin-bottom: 36px;
  color: rgba(32, 83, 64, 0.52);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.sector-card svg {
  width: 47px;
  margin-bottom: 35px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.sector-card h3 {
  margin-bottom: 18px;
  color: var(--green-deep);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.sector-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section-approach {
  color: var(--white);
  background: var(--green-dark);
  overflow: hidden;
}

.approach-tree {
  position: absolute;
  top: -12%;
  right: -11%;
  width: min(790px, 62vw);
  opacity: 0.055;
  pointer-events: none;
}

.approach-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(70px, 10vw, 150px);
}

.approach-copy h2 {
  max-width: 620px;
}

.approach-copy .lead {
  color: rgba(255, 255, 255, 0.9);
}

.approach-copy p:not(.lead) {
  color: rgba(255, 255, 255, 0.68);
}

.approach-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.approach-values span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.approach-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.approach-steps li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.approach-steps li:first-child {
  padding-top: 0;
}

.approach-steps > li > span {
  padding-top: 4px;
  color: #9cb9a8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.approach-steps h3 {
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
}

.approach-steps p {
  max-width: 540px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.91rem;
}

.section-contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 9vw, 140px);
}

.contact-intro {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.contact-intro h2 {
  max-width: 500px;
}

.contact-intro .lead {
  max-width: 530px;
  color: var(--muted);
}

.contact-intro address {
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-style: normal;
}

.contact-intro address strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-deep);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list {
  border-top: 1px solid var(--line);
}

.contact-item {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1.1fr);
  gap: 28px;
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item span {
  display: block;
  margin-bottom: 5px;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-item strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.contact-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 4px;
}

.contact-links a {
  color: var(--green-deep);
  font-size: 0.92rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-links a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--green-dark);
}

.footer-main {
  display: flex;
  min-height: 210px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-block: 45px;
}

.footer-brand {
  width: min(265px, 38vw);
  opacity: 0.96;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 30px;
}

.footer-nav a,
.footer-bottom a {
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-nav a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 0.73rem;
  }

  .hero-copy {
    width: min(590px, 56%);
  }

  .strength {
    grid-template-columns: 42px minmax(0, 1fr);
    padding-inline: 25px;
  }

  .strength svg {
    width: 38px;
  }

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

  .sector-card {
    min-height: 330px;
  }
}

@media (max-width: 940px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: min(var(--container), calc(100% - 36px));
  }

  .brand {
    width: 190px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    max-height: calc(100vh - var(--header-height));
    padding: 10px 18px 22px;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 20px 35px rgba(18, 59, 45, 0.13);
    overflow-y: auto;
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(32, 83, 64, 0.09);
    font-size: 0.9rem;
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .site-nav .nav-cta {
    margin-top: 10px;
    border-bottom: 0;
    text-align: center;
  }

  .site-header.is-open .menu-toggle-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-open .menu-toggle-icon span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .menu-toggle-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: 690px;
  }

  .hero::before {
    background:
      linear-gradient(
        90deg,
        rgba(248, 248, 245, 0.98) 0%,
        rgba(248, 248, 245, 0.93) 42%,
        rgba(248, 248, 245, 0.58) 67%,
        rgba(248, 248, 245, 0.12) 100%
      );
  }

  .hero-background img {
    object-position: 58% 26%;
  }

  .hero-inner {
    padding-block: 92px 104px;
  }

  .hero-copy {
    width: min(610px, 70%);
  }

  .hero-copy h1 {
    max-width: 760px;
  }

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

  .strength:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .strength:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .section-intro-grid,
  .section-heading-row,
  .approach-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    align-items: start;
    gap: 28px;
  }

  .section-heading-row > p {
    max-width: 720px;
  }

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

  .stat-card {
    display: grid;
    min-height: 0;
    align-items: center;
    grid-template-columns: minmax(140px, 0.35fr) minmax(0, 1fr);
    gap: 30px;
  }

  .stat-card + .stat-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .stat-card strong {
    margin-bottom: 0;
  }

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

  .service-featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .approach-copy h2 {
    max-width: 780px;
  }

  .approach-steps {
    max-width: 780px;
  }

  .contact-grid {
    gap: 60px;
  }

  .contact-intro {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.3rem, 10vw, 3.5rem);
  }

  .hero {
    min-height: 720px;
    align-items: flex-start;
  }

  .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(248, 248, 245, 0.99) 0%,
        rgba(248, 248, 245, 0.96) 48%,
        rgba(248, 248, 245, 0.74) 68%,
        rgba(248, 248, 245, 0.28) 100%
      );
  }

  .hero-background img {
    object-position: 61% 25%;
  }

  .hero-inner {
    align-items: flex-start;
    padding-block: 66px 160px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

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

  .strength {
    min-height: 0;
    padding: 30px 24px;
  }

  .strength + .strength,
  .strength:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .section {
    padding-block: 82px;
  }

  .section-intro-grid {
    gap: 30px;
  }

  .stats {
    margin-top: 55px;
  }

  .stat-card {
    display: block;
    padding: 32px 12px;
  }

  .stat-card strong {
    margin-bottom: 14px;
  }

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

  .service-featured {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .sector-card {
    min-height: 0;
  }

  .approach-tree {
    width: 780px;
    max-width: none;
    opacity: 0.04;
  }

  .approach-grid {
    gap: 70px;
  }

  .approach-steps li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 16px;
  }

  .contact-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-brand {
    width: 225px;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 22px;
  }
}

@media (max-width: 680px) and (max-height: 720px) {
  .hero {
    min-height: 650px;
  }

  .hero-inner {
    padding-block: 54px 130px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (min-width: 941px) {
  .hero {
    min-height: 0;
    height: clamp(
      580px,
      calc(100vh - var(--header-height) - 120px),
      700px
    );
  }

  .hero-inner {
    padding-block: 60px;
  }
}
