:root {
  color-scheme: light;
  --ink: #14201d;
  --ink-soft: #48605b;
  --paper: #f7f4ed;
  --surface: #ffffff;
  --line: #d8ded8;
  --green: #0f6f5c;
  --green-dark: #084a3c;
  --blue: #1b4d89;
  --amber: #d49124;
  --steel: #e9eef1;
  --shadow: 0 24px 70px rgba(15, 31, 28, 0.16);
  --radius: 8px;
  --max: 1160px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 48px);
  color: #fff;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(247, 244, 237, 0.96);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(12, 24, 22, 0.1);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  font-weight: 900;
}

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

.brand strong {
  font-size: 0.96rem;
  line-height: 1.15;
}

.brand small {
  color: currentColor;
  font-size: 0.78rem;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle svg,
.button svg,
.intro-grid svg,
.service-card svg,
.check-list svg,
.proof-grid svg,
.job-location svg,
.contact-methods svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.1;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88vh;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-media img,
.hero-overlay,
.hero-content {
  grid-area: 1 / 1;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 24, 21, 0.82), rgba(10, 24, 21, 0.46) 46%, rgba(10, 24, 21, 0.18)),
    linear-gradient(0deg, rgba(10, 24, 21, 0.56), rgba(10, 24, 21, 0) 38%);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0 54px;
}

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

.hero h1,
.section h2,
.split-content h2,
.testimonial-band h2,
.faq-section h2,
.contact-copy h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 900px;
  font-size: 6.4rem;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.28rem;
}

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

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button.primary {
  background: var(--amber);
  color: #17201b;
  box-shadow: 0 14px 30px rgba(212, 145, 36, 0.24);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #e0a33d;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(10px);
}

.button.ghost {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.is-hidden {
  display: none !important;
}

.hero-facts {
  margin: auto 0 0;
  padding: 42px 0 0;
}

.hero-facts div {
  min-width: 150px;
  border-left: 2px solid var(--amber);
  padding-left: 14px;
}

.hero-facts dt {
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1;
}

.hero-facts dd {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.intro-band {
  background: var(--green-dark);
  color: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.16);
}

.intro-grid a,
.intro-grid span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 18px 22px;
  background: var(--green-dark);
  font-weight: 800;
}

.section,
.split-section,
.testimonial-band,
.faq-section,
.contact-section {
  padding: clamp(64px, 9vw, 116px) clamp(20px, 4vw, 48px);
}

.section,
.faq-section {
  background: var(--paper);
}

.muted {
  background: var(--steel);
}

.section-head,
.two-column,
.service-grid,
.proof-grid,
.quote-grid,
.faq-list,
.job-card,
.contact-section,
.split-section {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
  text-align: center;
}

.section-head.compact {
  margin-bottom: 28px;
}

.section h2,
.split-content h2,
.testimonial-band h2,
.faq-section h2,
.contact-copy h2 {
  font-size: 3.4rem;
}

.section-head p:not(.eyebrow),
.split-content p,
.two-column p,
.contact-copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

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

.service-card,
.proof-grid div,
.quote-grid figure,
.job-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(20, 32, 29, 0.04);
}

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

.service-card svg,
.proof-grid svg {
  color: var(--green);
}

.service-card h3,
.job-card h3 {
  margin: 18px 0 8px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.service-card p,
.proof-grid span,
.quote-grid figcaption,
.job-card p,
.faq-list p {
  color: var(--ink-soft);
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  background: var(--surface);
}

.split-media {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 800;
}

.check-list svg {
  flex: 0 0 auto;
  color: var(--green);
}

.two-column {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(28px, 5vw, 82px);
  align-items: start;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.proof-grid div {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.testimonial-band {
  background: var(--green-dark);
  color: #fff;
}

.testimonial-band .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

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

.quote-grid figure {
  margin: 0;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.quote-grid blockquote {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 750;
}

.quote-grid figcaption {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.jobs-section {
  background: var(--surface);
}

.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
}

.job-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 880px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
  background: var(--green-dark);
  color: #fff;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-methods a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9d4cf;
  border-radius: var(--radius);
  background: #fbfcfb;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15, 111, 92, 0.14);
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--ink-soft);
  font-weight: 700;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 4vw, 48px);
  background: #101917;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: #fff;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

.legal-page {
  background: var(--paper);
}

.legal-main {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(42px, 8vw, 84px) 0;
}

.legal-main h1 {
  margin: 18px 0 32px;
  font-size: 4.4rem;
  line-height: 1;
}

.legal-main h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.legal-main section {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.legal-main p {
  margin: 0;
  color: var(--ink-soft);
}

.legal-main a {
  color: var(--green);
  font-weight: 850;
}

.back-link {
  display: inline-flex;
  color: var(--green);
  font-weight: 900;
}

.offer-page {
  background: #f4f7f5;
}

.offer-header {
  position: sticky;
}

.offer-main {
  padding-top: 24px;
}

.offer-hero,
.offer-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.offer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: stretch;
  padding: 28px 0 24px;
}

.offer-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 380px;
  border-radius: var(--radius);
  background: var(--green-dark);
  color: #fff;
  padding: clamp(28px, 5vw, 56px);
}

.offer-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: 4.4rem;
  line-height: 1;
}

.offer-hero-copy p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.offer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.offer-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 850;
}

.offer-trust svg,
.offer-sidebar svg,
.option-card svg {
  width: 19px;
  height: 19px;
}

.offer-hero-image {
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
}

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

.offer-shell {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 16px 0 clamp(64px, 8vw, 104px);
}

.offer-sidebar,
.offer-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(20, 32, 29, 0.08);
}

.offer-sidebar {
  position: sticky;
  top: 96px;
  padding: 26px;
}

.offer-sidebar h2 {
  margin: 0 0 18px;
  font-size: 1.65rem;
  line-height: 1.1;
}

.offer-sidebar ol {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: offer-steps;
}

.offer-sidebar li {
  position: relative;
  padding-left: 44px;
  counter-increment: offer-steps;
}

.offer-sidebar li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  content: counter(offer-steps);
  font-weight: 950;
}

.offer-sidebar strong,
.offer-sidebar span {
  display: block;
}

.offer-sidebar span {
  color: var(--ink-soft);
}

.sidebar-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: var(--green);
  font-weight: 950;
}

.offer-form {
  min-height: 620px;
  padding: clamp(22px, 4vw, 34px);
}

.offer-progress {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 900;
}

.offer-progress > div {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e1e8e4;
}

.offer-progress span span,
.offer-progress > div span {
  display: block;
}

.offer-progress > div span {
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: var(--amber);
  transition: width 180ms ease;
}

.offer-step {
  display: none;
  min-height: 390px;
  margin: 0;
  border: 0;
  padding: 0;
}

.offer-step.is-active {
  display: block;
}

.offer-step legend {
  display: grid;
  gap: 6px;
  width: 100%;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 950;
  line-height: 1.12;
}

.offer-step legend span {
  color: var(--amber);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.option-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.option-card input {
  position: absolute;
  inset: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.option-card span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 84px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfb;
  padding: 18px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

.option-card input:checked + span {
  border-color: var(--green);
  background: rgba(15, 111, 92, 0.08);
  box-shadow: 0 0 0 3px rgba(15, 111, 92, 0.1);
}

.option-card input:focus-visible + span {
  outline: 3px solid rgba(212, 145, 36, 0.35);
  outline-offset: 2px;
}

.offer-field {
  margin-top: 18px;
}

.step-error {
  min-height: 24px;
  margin: 14px 0 0;
  color: #a23426;
  font-weight: 850;
}

.offer-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 20px;
}

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

  .site-nav {
    position: fixed;
    top: 76px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 18px;
  }

  .site-nav a + a {
    border-top: 1px solid var(--line);
  }

  .intro-grid,
  .service-grid,
  .proof-grid,
  .quote-grid,
  .two-column,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section-head {
    text-align: left;
  }

  .hero h1 {
    font-size: 4.8rem;
  }

  .section h2,
  .split-content h2,
  .testimonial-band h2,
  .faq-section h2,
  .contact-copy h2 {
    font-size: 2.7rem;
  }

  .split-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .split-media,
  .split-media img {
    min-height: 360px;
  }

  .job-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .offer-hero,
  .offer-shell {
    grid-template-columns: 1fr;
  }

  .offer-sidebar {
    position: static;
  }

  .offer-hero-copy h1 {
    font-size: 3.1rem;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand strong {
    max-width: 170px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .site-nav {
    top: 68px;
    right: 12px;
    left: 12px;
  }

  .hero,
  .hero-media img {
    min-height: 92vh;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(10, 24, 21, 0.78), rgba(10, 24, 21, 0.28)),
      linear-gradient(90deg, rgba(10, 24, 21, 0.72), rgba(10, 24, 21, 0.3));
  }

  .hero-content {
    width: min(100% - 32px, var(--max));
    padding-top: 96px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .section h2,
  .split-content h2,
  .testimonial-band h2,
  .faq-section h2,
  .contact-copy h2,
  .legal-main h1 {
    font-size: 2.25rem;
  }

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

  .hero-facts div {
    min-width: 128px;
  }

  .intro-grid {
    width: 100%;
  }

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

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

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

  .site-footer nav {
    flex-wrap: wrap;
  }

  .offer-hero,
  .offer-shell {
    width: min(100% - 28px, var(--max));
  }

  .offer-main {
    padding-top: 8px;
  }

  .offer-hero-copy,
  .offer-form,
  .offer-sidebar {
    padding: 22px;
  }

  .offer-hero-copy,
  .offer-hero-image {
    min-height: 0;
  }

  .offer-hero-image img {
    height: 260px;
  }

  .offer-hero-copy h1 {
    font-size: 2.35rem;
  }

  .offer-step {
    min-height: 0;
  }

  .offer-step legend {
    font-size: 1.55rem;
  }

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

  .option-card span {
    min-height: 68px;
  }

  .offer-actions {
    flex-direction: column-reverse;
  }
}
