:root {
  --ink: #17201b;
  --muted: #5d6960;
  --paper: #fbfaf6;
  --white: #ffffff;
  --green: #27624b;
  --green-dark: #143e31;
  --copper: #b65f35;
  --blue: #407d96;
  --line: #dfe5dc;
  --shadow: 0 18px 55px rgba(19, 33, 26, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  background: rgba(20, 44, 37, 0.66);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
  font-weight: 760;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

.brand-name {
  font-size: 1rem;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-links a,
.header-cta,
.button {
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

.header-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
  font-weight: 750;
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 88vh;
  padding: 118px clamp(20px, 5.6vw, 88px) 58px;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 24, 20, 0.82) 0%, rgba(12, 24, 20, 0.58) 38%, rgba(12, 24, 20, 0.08) 74%),
    linear-gradient(0deg, rgba(12, 24, 20, 0.34), rgba(12, 24, 20, 0.04));
}

.hero-content {
  max-width: 820px;
  color: var(--white);
}

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

.hero .eyebrow {
  color: #ffd0b8;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

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

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  cursor: pointer;
}

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

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--green-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.12);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.intro-band {
  padding: 20px clamp(18px, 5vw, 72px);
  background: var(--green-dark);
  color: var(--white);
}

.intro-band div {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.intro-band span {
  color: rgba(255, 255, 255, 0.8);
}

.section,
.split-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 34px);
}

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

.section-heading p:not(.eyebrow),
.split-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 270px;
  padding: 26px;
}

.service-number {
  display: block;
  margin-bottom: 34px;
  color: var(--blue);
  font-weight: 850;
}

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

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
  max-width: none;
  padding-left: clamp(18px, 7vw, 96px);
  padding-right: clamp(18px, 7vw, 96px);
  background: #eef4ef;
}

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

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

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid #cfdcd1;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.step span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 850;
}

.step p {
  margin-bottom: 0;
  align-self: center;
}

.contact-section {
  padding-bottom: clamp(72px, 9vw, 120px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: 22px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 740;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cdd7cf;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffefa;
  font: inherit;
}

textarea {
  min-height: 124px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(64, 125, 150, 0.32);
  outline-offset: 2px;
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-card {
  padding: clamp(22px, 3vw, 30px);
}

.contact-card dl {
  display: grid;
  gap: 18px;
  margin: 26px 0 0;
}

.contact-card div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-card dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 6px 0 0;
  font-weight: 760;
}

.contact-card a {
  color: var(--green);
}

.site-footer {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 24px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #10251d;
  font-size: 0.92rem;
}

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

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
  }

  .brand-name {
    white-space: normal;
  }

  .hero {
    min-height: 84vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 24, 20, 0.86) 0%, rgba(12, 24, 20, 0.64) 62%, rgba(12, 24, 20, 0.26) 100%),
      linear-gradient(0deg, rgba(12, 24, 20, 0.38), rgba(12, 24, 20, 0.08));
  }

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

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

  .intro-band div,
  .site-footer {
    display: grid;
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 66px;
    padding: 10px 14px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    max-width: 124px;
    font-size: 0.9rem;
    line-height: 1.12;
  }

  .header-cta {
    font-size: 0.88rem;
  }

  .hero {
    min-height: 82vh;
    padding-top: 98px;
  }

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

  h1 {
    font-size: 2.45rem;
  }

  .step {
    grid-template-columns: 42px 1fr;
    padding: 15px;
  }

  .step span {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 360px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .header-cta {
    display: none;
  }

  .brand-name {
    max-width: calc(100vw - 92px);
  }

  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  h1 {
    font-size: 2rem;
  }

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