:root {
  --ink: #102027;
  --muted: #52666f;
  --paper: #f6f8f7;
  --surface: #ffffff;
  --line: #dce4e0;
  --green: #1f6f5b;
  --green-dark: #164e43;
  --coral: #d95f43;
  --gold: #d8a928;
  --shadow: 0 20px 60px rgba(16, 32, 39, 0.16);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 56px);
  color: #ffffff;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(13, 27, 42, 0.96);
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(16, 32, 39, 0.18);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: min(300px, 48vw);
  height: auto;
  max-height: 46px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  border-radius: 8px;
  padding: 10px 13px;
  color: currentColor;
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.is-open .site-nav a:hover,
.site-header.is-open .site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: currentColor;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  padding: 150px clamp(18px, 6vw, 70px) 54px;
  overflow: hidden;
  color: #ffffff;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 32, 39, 0.84), rgba(16, 32, 39, 0.58) 50%, rgba(16, 32, 39, 0.24)),
    linear-gradient(0deg, rgba(16, 32, 39, 0.32), rgba(16, 32, 39, 0.04));
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd36a;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.1rem, 8vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  width: min(650px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.06rem, 2vw, 1.3rem);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button.primary {
  background: var(--gold);
  color: #15231d;
  box-shadow: 0 16px 38px rgba(216, 169, 40, 0.28);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.icon {
  font-size: 1.1rem;
  line-height: 1;
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-self: end;
  width: min(880px, 100%);
  margin-top: 64px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding: 20px;
}

.hero-panel div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-panel span,
.contact-card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1rem, 2vw, 1.24rem);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.trust-item {
  padding: clamp(24px, 4vw, 42px);
  background: #ffffff;
}

.trust-item strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.15rem;
}

.trust-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.section,
.split-section,
.contact-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) clamp(18px, 4vw, 32px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.74fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: end;
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.about-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

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

.service-card {
  display: grid;
  min-height: 260px;
  align-content: start;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 24px;
  box-shadow: 0 12px 32px rgba(16, 32, 39, 0.05);
}

.service-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: rgba(31, 111, 91, 0.11);
  color: var(--green);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.step h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.18;
}

.service-card p,
.step p {
  margin: 0;
  color: var(--muted);
}

.accent-card {
  background: var(--green-dark);
  color: #ffffff;
}

.accent-card p {
  color: rgba(255, 255, 255, 0.78);
}

.accent-card .service-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #ffd36a;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.split-copy {
  position: sticky;
  top: 110px;
}

.split-copy h2 {
  margin-bottom: 20px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 26px;
  border-bottom: 2px solid var(--coral);
  color: var(--green-dark);
  font-weight: 850;
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 22px;
}

.step > span {
  color: var(--coral);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}

.soft-section {
  max-width: none;
  background: #eaf0ed;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(26px, 6vw, 88px);
  max-width: var(--max);
  margin: 0 auto;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.contact-copy h2 {
  margin-bottom: 20px;
}

.contact-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(31, 111, 91, 0.18);
  border-radius: 8px;
  background: var(--green-dark);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.contact-card > * {
  padding: 22px 24px;
}

.contact-card > * + * {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-card a:hover,
.contact-card a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.contact-card span {
  color: rgba(255, 255, 255, 0.62);
}

.contact-card strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(18px, 5vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer p {
  margin: 0;
}

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

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: grid;
    visibility: hidden;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #0d1b2a;
    padding: 8px;
    color: #ffffff;
    box-shadow: 0 18px 44px rgba(16, 32, 39, 0.14);
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 160ms ease,
      transform 160ms ease,
      visibility 160ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .hero {
    min-height: 880px;
  }

  .hero-panel,
  .trust-band,
  .section-heading,
  .split-section,
  .about-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-panel div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

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

  .split-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-logo {
    width: min(230px, 58vw);
    max-height: 36px;
  }

  .hero {
    min-height: 820px;
    padding: 118px 18px 30px;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.7rem, 15vw, 4.1rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-panel {
    margin-top: 42px;
  }

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

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

  .step {
    grid-template-columns: 52px 1fr;
    padding: 18px;
  }
}
