:root {
  --ink: #1d2725;
  --muted: #5e6966;
  --paper: #fbfaf5;
  --panel: #ffffff;
  --line: #dce0d7;
  --steel: #2f3b42;
  --green: #2f6d55;
  --accent: #f1b929;
  --accent-soft: #fff3c5;
  --shadow: 0 22px 70px rgba(23, 31, 29, 0.14);
}

* {
  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", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(251, 250, 245, 0.92);
  border-bottom: 1px solid rgba(29, 39, 37, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--steel);
  color: var(--accent);
  font-weight: 800;
}

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

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

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 78px));
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 250, 245, 0.95) 0%, rgba(251, 250, 245, 0.82) 30%, rgba(251, 250, 245, 0.08) 68%);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
  min-height: min(720px, calc(100vh - 78px));
  padding: clamp(60px, 9vw, 112px) clamp(18px, 6vw, 78px);
}

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

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 640px;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.6rem);
}

h3 {
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 600px;
  margin: 22px 0 0;
  color: #3c4845;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  color: #1f1a08;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(29, 39, 37, 0.18);
  color: var(--ink);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 22px clamp(18px, 4vw, 54px);
  background: var(--panel);
}

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

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

.section,
.split-section,
.contact-section,
.policy-hero,
.policy-content {
  width: min(1120px, calc(100% - 36px));
  margin-inline: auto;
}

.section {
  padding: clamp(72px, 10vw, 122px) 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 34px;
}

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

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

.service-card {
  min-height: 280px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(23, 31, 29, 0.06);
}

.service-icon {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--green);
  font-weight: 900;
}

.service-card p,
.process-step p,
.split-copy p,
.contact-copy p,
.policy-content p,
.policy-content li {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
  padding: clamp(70px, 9vw, 108px) 0;
  border-top: 1px solid var(--line);
}

.split-copy p {
  max-width: 680px;
  font-size: 1.05rem;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-soft);
}

.feature-panel {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 26px;
  background: var(--steel);
  color: #ffffff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-panel strong {
  color: var(--accent);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.feature-panel span {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.feature-panel span:last-child {
  border-bottom: 0;
}

.process-band {
  width: 100%;
  padding-inline: max(18px, calc((100% - 1120px) / 2));
  background: #eef1ea;
}

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

.process-step {
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(29, 39, 37, 0.1);
  border-radius: 8px;
}

.process-step span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  padding: clamp(72px, 10vw, 120px) 0;
}

.contact-copy p {
  font-size: 1.05rem;
}

.service-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 750;
}

.service-form input,
.service-form select,
.service-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffefa;
  color: var(--ink);
  font: inherit;
}

.service-form textarea {
  resize: vertical;
}

.form-note {
  min-height: 1.5em;
  margin: 0;
  color: var(--green);
}

.policy-hero {
  padding: clamp(58px, 9vw, 96px) 0 34px;
}

.policy-hero h1 {
  max-width: 820px;
}

.policy-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.policy-content {
  max-width: 900px;
  padding: 0 0 clamp(80px, 10vw, 120px);
}

.policy-content h2 {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.policy-content ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.policy-content a,
.contact-copy a {
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 4vw, 54px);
  background: var(--ink);
  color: #ffffff;
}

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

.site-footer span,
.footer-links {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 980px) {
  .service-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 720px) {
  .site-header {
    min-height: 70px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 70px 12px auto 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .hero,
  .hero-content {
    min-height: 620px;
  }

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

  .hero-overlay {
    background: linear-gradient(90deg, rgba(251, 250, 245, 0.98) 0%, rgba(251, 250, 245, 0.86) 52%, rgba(251, 250, 245, 0.34) 100%);
  }

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

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

  .service-icon {
    margin-bottom: 26px;
  }

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

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

@media (max-width: 420px) {
  .hero-actions,
  .button {
    width: 100%;
  }
}
