:root {
  --ink: #17211d;
  --muted: #5d675f;
  --paper: #f7f4ec;
  --panel: #ffffff;
  --line: #ded6c6;
  --pine: #244f46;
  --pine-dark: #183b35;
  --copper: #b95c32;
  --gold: #d7a94c;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(23, 33, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 236, 0.95);
  backdrop-filter: blur(14px);
}

.nav {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: var(--pine);
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-cta {
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--pine);
  color: white;
}

.hero {
  min-height: 86vh;
  background:
    linear-gradient(90deg, rgba(20, 43, 37, 0.86), rgba(20, 43, 37, 0.35)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1800&q=82");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  min-height: 86vh;
  max-width: 1160px;
  margin: 0 auto;
  padding: 88px 20px;
  display: grid;
  align-items: center;
}

.hero-copy {
  max-width: 740px;
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  text-transform: uppercase;
  font-size: 12px;
  line-height: 18px;
  font-weight: 900;
}

.hero .eyebrow {
  color: var(--gold);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-text {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.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;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  background: var(--gold);
  color: #1b211f;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: white;
}

.trust-strip {
  max-width: 1160px;
  margin: -42px auto 0;
  position: relative;
  z-index: 5;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.trust-strip > div {
  min-height: 118px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 20px;
}

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

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

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

.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 88px 20px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.content {
  max-width: 670px;
}

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

.check-list li {
  border-left: 4px solid var(--copper);
  background: var(--panel);
  padding: 14px 16px;
  color: var(--ink);
  line-height: 1.55;
}

.buyer-band {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(320px, 480px);
  gap: 54px;
  align-items: center;
  justify-content: center;
  background: var(--pine-dark);
  color: white;
}

.buyer-band p {
  color: rgba(255, 255, 255, 0.78);
}

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

.metric-grid div {
  min-height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.metric-grid span,
.metric-grid strong {
  display: block;
}

.metric-grid span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.metric-grid strong {
  margin-top: 12px;
  font-size: 26px;
}

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

.process-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 22px;
}

.process-grid span {
  color: var(--copper);
  font-weight: 900;
}

.process-grid p {
  font-size: 15px;
}

.disclosure {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.disclosure h2 {
  font-size: 34px;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 24px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 13px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 28px 20px;
  color: var(--muted);
}

.footer p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .trust-strip,
  .split,
  .buyer-band,
  .process-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 0;
    padding-top: 16px;
  }

  .section {
    padding: 64px 20px;
  }
}
