:root {
  --ink: #14231d;
  --muted: #5b6861;
  --cream: #f7f3e9;
  --mist: #edf5f1;
  --green: #177a4d;
  --green-dark: #0f5038;
  --blue: #126c88;
  --gold: #d4a73f;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(20, 35, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 52px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(9, 28, 22, 0.86), rgba(9, 28, 22, 0.42));
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  gap: 12px;
}

.brand-logo {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

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

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.header-action {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px clamp(18px, 5vw, 72px) 72px;
  color: var(--white);
}

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

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1770664945615-52203ab54c88?auto=format&fit=crop&fm=jpg&q=80&w=2400");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 24, 19, 0.88) 0%, rgba(6, 24, 19, 0.62) 42%, rgba(6, 24, 19, 0.22) 100%),
    linear-gradient(0deg, rgba(6, 24, 19, 0.72) 0%, rgba(6, 24, 19, 0.04) 50%);
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 6vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.1);
}

.button.dark {
  background: var(--ink);
}

.button.light {
  color: var(--ink);
  border-color: rgba(20, 35, 29, 0.24);
  background: rgba(255, 255, 255, 0.35);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(20, 35, 29, 0.12);
}

.trust-strip div {
  min-height: 132px;
  padding: 30px clamp(20px, 4vw, 46px);
  background: var(--white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 6px;
  font-size: 1.06rem;
}

.trust-strip span {
  color: var(--muted);
}

.section-shell {
  padding: clamp(64px, 10vw, 112px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

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

.service-card {
  min-height: 268px;
  padding: 26px;
  border: 1px solid rgba(20, 35, 29, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(20, 35, 29, 0.08);
}

.service-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
}

.service-card:nth-child(2) .service-icon {
  background: var(--gold);
  color: var(--ink);
}

.service-card:nth-child(3) .service-icon {
  background: var(--green);
}

.service-card:nth-child(4) .service-icon {
  background: var(--green-dark);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.service-card p,
.split-copy p,
.contact-band p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(64px, 10vw, 112px) clamp(18px, 5vw, 72px);
  background: var(--mist);
}

.split-copy {
  max-width: 680px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline div {
  display: grid;
  gap: 6px;
  padding: 22px 24px;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.timeline span {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.timeline strong {
  font-size: 1.1rem;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(44px, 7vw, 76px) clamp(18px, 5vw, 72px);
  color: var(--ink);
  background: var(--gold);
}

.contact-band .eyebrow,
.contact-band p {
  color: rgba(20, 35, 29, 0.72);
}

.contact-band h2 {
  margin-bottom: 10px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 960px) {
  .site-header {
    position: absolute;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

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

  .split-section,
  .contact-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 14px;
  }

  .brand {
    width: 100%;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .site-nav {
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-action {
    min-height: 40px;
  }

  .hero {
    min-height: 94vh;
    padding-top: 190px;
    padding-bottom: 48px;
  }

  h1 {
    font-size: clamp(2.3rem, 14vw, 3.6rem);
  }

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

  .button {
    width: 100%;
  }

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

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

  .site-footer {
    display: grid;
  }
}
