:root {
  color-scheme: light;
  --ink: #14181a;
  --muted: #526164;
  --paper: #f6f3ec;
  --panel: #ffffff;
  --line: rgba(20, 24, 26, .14);
  --green: #2f684e;
  --gold: #c99b4f;
  --clay: #a9503e;
  --charcoal: #121719;
}

* { 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", sans-serif;
  letter-spacing: 0;
}
a { color: inherit; }
.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=2200&q=82");
  background-size: cover;
  background-position: center;
  filter: saturate(.9);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,15,16,.86), rgba(12,15,16,.56) 48%, rgba(12,15,16,.22)),
    linear-gradient(0deg, rgba(12,15,16,.74), rgba(12,15,16,.05) 46%);
}
.topline {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  padding: 22px clamp(18px, 4vw, 58px);
  color: #f5eee0;
  font-size: 14px;
  font-weight: 750;
}
.topline a { text-decoration: none; }
.topline a:hover { color: #ffd789; }
.hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 120px 0 56px;
  color: #fff8ed;
}
.eyebrow, .kicker {
  margin: 0 0 14px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
}
.eyebrow { color: #ffd789; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(46px, 8vw, 88px);
  line-height: .94;
  letter-spacing: 0;
}
.lede {
  max-width: 700px;
  color: #f2e9da;
  font-size: clamp(18px, 2.3vw, 25px);
  line-height: 1.35;
}
.section-lede {
  max-width: 760px;
  font-size: 19px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 13px 18px;
  text-decoration: none;
  font-weight: 850;
  border: 1px solid rgba(255,255,255,.3);
}
.button.primary {
  background: #ffd789;
  color: #1d1710;
  border-color: #ffd789;
}
.button.secondary {
  color: #fff8ed;
  background: rgba(255,255,255,.08);
}
.fine {
  max-width: 720px;
  margin: 18px 0 0;
  color: #e3d6c1;
  font-size: 14px;
}
.band {
  padding: clamp(54px, 8vw, 96px) 0;
}
.wrap {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}
.kicker { color: var(--clay); }
h2 {
  font-size: clamp(31px, 4.6vw, 56px);
  line-height: 1.02;
  margin-bottom: 18px;
}
p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.checklist li, .price-box, .boundary-grid p, .cards article, .call-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(20,24,26,.08);
}
.checklist li {
  padding: 16px 16px 16px 46px;
  position: relative;
  font-size: 17px;
  line-height: 1.35;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 21px;
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 50%;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.audit { background: #fffaf0; }
.audit-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.cards article { padding: 22px; }
.cards span {
  display: inline-block;
  color: var(--green);
  font-weight: 850;
  margin-bottom: 22px;
}
.cards h3 {
  margin-bottom: 10px;
  font-size: 24px;
}
.cards p { font-size: 16px; }
.price {
  background: #17211d;
  color: #fff8ed;
}
.price p { color: #d7ded5; }
.price .kicker { color: #ffd789; }
.price-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 28px;
  align-items: center;
}
.price-box {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  padding: 24px;
}
.price-box strong {
  display: block;
  margin-bottom: 12px;
  color: #ffd789;
  font-size: 18px;
}
.price-box ul {
  margin: 0;
  padding-left: 20px;
  color: #eef4ec;
  line-height: 1.75;
}
.boundary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.boundary-grid p {
  margin: 0;
  padding: 18px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.4;
}
.call { background: #ece4d7; }
.call-box {
  padding: clamp(26px, 5vw, 54px);
  background: var(--charcoal);
  color: #fff8ed;
}
.call-box p { color: #e7ddcd; max-width: 760px; }
.call-box .button { margin-top: 10px; }

@media (max-width: 820px) {
  .topline {
    justify-content: flex-start;
    overflow-x: auto;
    padding-inline: 18px;
  }
  .hero { min-height: 88vh; }
  .hero-content { padding-top: 110px; }
  .split, .price-grid, .cards, .audit-cards, .boundary-grid {
    grid-template-columns: 1fr;
  }
  h1 { font-size: clamp(42px, 13vw, 64px); }
  .button { width: 100%; }
}
