:root {
  --ink: #1c2421;
  --soft-ink: #53625c;
  --paper: #fbfaf6;
  --white: #ffffff;
  --mist: #eef3f0;
  --line: #d7ded8;
  --forest: #26332f;
  --leaf: #3f7559;
  --clay: #b36644;
  --gold: #b68a3b;
  --steel: #496676;
  --shadow: 0 18px 50px rgba(28, 36, 33, 0.12);
}

* {
  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.55;
}

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

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 68px;
  padding: 12px clamp(18px, 4vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--soft-ink);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.1;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--forest);
  color: var(--paper);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--soft-ink);
  font-size: 15px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  min-height: calc(100vh - 68px);
  max-height: 860px;
  position: relative;
  display: grid;
  align-items: center;
  padding: clamp(56px, 8vw, 100px) clamp(18px, 6vw, 80px);
  color: var(--white);
  background:
    radial-gradient(circle at 78% 30%, rgba(183, 139, 59, 0.24), transparent 34%),
    linear-gradient(135deg, #1c2421 0%, #26332f 52%, #375759 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 78px;
  background: linear-gradient(180deg, rgba(251, 250, 246, 0), var(--paper));
}

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

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
h2,
h3,
p {
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(46px, 8vw, 88px);
  line-height: 0.98;
  font-weight: 900;
}

.hero-subline {
  margin: 18px 0 0;
  color: #eaf1ee;
  font-size: clamp(23px, 3vw, 36px);
  font-weight: 820;
  line-height: 1.15;
}

.hero-copy {
  margin: 22px 0 0;
  max-width: 680px;
  color: #dbe4df;
  font-size: clamp(17px, 1.6vw, 20px);
}

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

.hero-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-promises span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #edf4f0;
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 850;
}

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

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

.button.secondary.dark {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.section {
  padding: clamp(64px, 8vw, 110px) clamp(18px, 4vw, 52px);
}

.wrap {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.intro {
  padding-top: 42px;
}

.intro-grid,
.split,
.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.07;
  font-weight: 900;
}

h1 {
  margin: 0 0 22px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  font-weight: 900;
}

h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
}

.intro-copy,
.lead,
.contact-box p {
  color: var(--soft-ink);
  font-size: 18px;
}

.intro-copy p,
.profile-points p {
  margin: 0 0 18px;
}

.offer {
  background: var(--white);
}

.section-head {
  max-width: 780px;
  margin-bottom: 30px;
}

.offer-grid,
.proof-grid,
.evidence-grid {
  display: grid;
  gap: 18px;
}

.offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.offer-card {
  padding: 26px;
}

.offer-card.featured {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 30px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--mist);
  color: var(--forest);
  font-weight: 900;
}

.featured .label {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.offer-card p,
.offer-card li,
.evidence p {
  color: var(--soft-ink);
}

.featured p,
.featured li {
  color: #dce5df;
}

.offer-card ul {
  margin: 20px 0 0;
  padding-left: 20px;
}

.offer-card li + li {
  margin-top: 8px;
}

.proof-band {
  background: var(--forest);
  color: var(--white);
}

.proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-grid > div {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  padding: 4px 22px 4px 18px;
}

.metric {
  margin: 0 0 8px;
  color: #e8c783;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  font-weight: 900;
}

.proof-grid p:not(.metric) {
  margin: 0;
  color: #dbe4df;
  font-size: 17px;
}

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

.timeline li {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.timeline strong {
  color: var(--forest);
  font-size: 19px;
}

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

.visual-frame {
  margin: 0;
}

.process-preview {
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.process-preview {
  background: var(--white);
  padding: clamp(22px, 4vw, 34px);
}

.preview-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--soft-ink);
  font-size: 14px;
  margin-bottom: 18px;
}

.preview-topline strong {
  color: var(--forest);
}

.process-preview dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.process-preview dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.process-preview dt {
  color: var(--forest);
  font-weight: 800;
}

.process-preview dd {
  margin: 0;
  color: var(--soft-ink);
}

figcaption {
  margin-top: 10px;
  color: var(--soft-ink);
  font-size: 14px;
}

.evidence {
  background: var(--mist);
}

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

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

.compare > div {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.compare > div:nth-child(2) {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.compare h3 {
  margin-bottom: 18px;
}

.compare ul {
  margin: 0;
  padding-left: 20px;
  color: var(--soft-ink);
}

.compare > div:nth-child(2) ul {
  color: #dce5df;
}

.compare li + li {
  margin-top: 9px;
}

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

.evidence article {
  padding: 18px;
}

.evidence h3 {
  margin-top: 18px;
}

.evidence p {
  margin: 8px 0 0;
}

.evidence-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--paper);
  font-weight: 900;
  margin-bottom: 18px;
}

.profile {
  background: var(--white);
}

.profile-points {
  display: grid;
  gap: 14px;
}

.profile-points p {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--soft-ink);
  font-size: 18px;
}

.profile-points strong {
  color: var(--ink);
}

.contact {
  background: linear-gradient(180deg, var(--paper), #e8ede8);
}

.contact-box {
  padding: clamp(28px, 5vw, 56px);
  max-width: 920px;
}

.contact-box h2 {
  max-width: 720px;
}

.contact-box p {
  max-width: 760px;
}

.footer {
  padding: 28px clamp(18px, 4vw, 52px);
  background: var(--forest);
  color: #dbe4df;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer p {
  margin: 0;
}

.footer a {
  margin-left: 18px;
  color: #f0d89f;
  font-weight: 800;
}

.legal {
  max-width: 860px;
}

.legal h2 {
  margin-top: 34px;
  font-size: 26px;
}

.legal p {
  color: var(--soft-ink);
  font-size: 18px;
}

.legal a:not(.button) {
  color: var(--leaf);
  font-weight: 800;
}

@media (max-width: 920px) {
  .intro-grid,
  .split,
  .profile-grid,
  .offer-grid,
  .proof-grid,
  .compare,
  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
    background:
      radial-gradient(circle at 60% 24%, rgba(183, 139, 59, 0.24), transparent 36%),
      linear-gradient(160deg, #1c2421 0%, #26332f 58%, #375759 100%);
  }
}

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

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 14px;
  }

  .hero {
    min-height: 760px;
    padding-top: 44px;
  }

  .button {
    width: 100%;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer a {
    margin: 0 18px 0 0;
  }

  .proof-grid > div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    padding: 18px 0 0;
  }
}
