
:root {
  --ink: #151515;
  --muted: #5d625f;
  --paper: #f7f4ee;
  --panel: #ffffff;
  --green: #163f36;
  --green-2: #245f52;
  --copper: #b5532f;
  --blue: #315b73;
  --gold: #c49a3f;
  --line: #ded8cc;
  --shadow: 0 18px 60px rgba(21, 21, 21, .11);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.topline {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
}
.topline .wrap {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.topline span:not(:first-child)::before, .topline a::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: middle;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 244, 238, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}
.brand img { width: 176px; height: auto; }
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
}
.site-nav a {
  padding: 10px 11px;
  text-decoration: none;
  border-radius: 8px;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: #ebe2d2;
}
.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  letter-spacing: 0;
}
.nav-cta, .btn.primary {
  background: var(--copper);
  color: #fff;
  box-shadow: 0 10px 30px rgba(181, 83, 47, .24);
}
.btn.secondary {
  background: #fff;
  color: var(--green);
  border-color: var(--line);
}
.btn.ghost {
  border-color: rgba(255,255,255,.35);
  color: #fff;
}
.btn.wide { width: 100%; border: 0; cursor: pointer; font: inherit; }
.menu-button { display: none; }
.hero {
  background:
    linear-gradient(115deg, rgba(22,63,54,.96), rgba(21,21,21,.94)),
    var(--green);
  color: #fff;
  padding: 72px 0 56px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, .72fr);
  gap: 42px;
  align-items: center;
}
.kicker {
  margin: 0 0 12px;
  color: var(--copper);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0;
}
.hero .kicker { color: #ffb08d; }
h1, h2, h3 {
  line-height: 1.05;
  letter-spacing: 0;
  margin: 0;
}
h1, h2 { font-family: "Source Serif 4", Georgia, serif; }
h1 {
  font-size: clamp(46px, 8vw, 84px);
  max-width: 780px;
}
h2 { font-size: clamp(31px, 4.5vw, 54px); }
h3 { font-size: 20px; }
p { margin: 0; }
.hero-text {
  max-width: 690px;
  margin-top: 22px;
  color: rgba(255,255,255,.86);
  font-size: 20px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.micro {
  margin-top: 16px;
  color: rgba(255,255,255,.74);
  font-weight: 700;
}
.hero-proof {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-proof img {
  grid-column: 1 / -1;
  justify-self: end;
  width: min(310px, 74%);
  opacity: .92;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.3));
}
.hero-proof div {
  min-height: 112px;
  padding: 18px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
}
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { font-size: 18px; }
.hero-proof span { margin-top: 8px; color: rgba(255,255,255,.75); font-size: 14px; }
section.wrap, .band, .cta-band, .capital-band { padding: 76px 0; }
.band { background: #fff; border-block: 1px solid var(--line); }
.capital-band {
  background:
    linear-gradient(135deg, rgba(49,91,115,.08), rgba(181,83,47,.07)),
    #fff;
  border-block: 1px solid var(--line);
}
.capital-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, .54fr);
  gap: 34px;
  align-items: center;
}
.capital-grid p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}
.capital-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow);
}
.capital-card strong {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 32px;
  line-height: 1.08;
}
.capital-card span {
  display: block;
  padding-left: 18px;
  position: relative;
  color: rgba(255,255,255,.82);
  font-weight: 700;
}
.capital-card span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffb08d;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr);
  gap: 42px;
  align-items: center;
}
.split p, .narrow p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}
.narrow { max-width: 820px; }
.section-head {
  max-width: 860px;
  margin-bottom: 26px;
}
.grid {
  display: grid;
  gap: 16px;
}
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card, .review, .proof-tile, .quote-panel, .bbb-card, .contact-tile, .legal article, .form-aside, details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.card, .review, .proof-tile, .quote-panel, .bbb-card, .legal article, .form-aside, details {
  padding: 24px;
}
.card p, .proof-tile span, .review span, .source-note {
  margin-top: 10px;
  color: var(--muted);
}
.proof-stack {
  display: grid;
  gap: 14px;
}
.proof-tile strong, .proof-tile span { display: block; }
.quote-panel {
  background: var(--green);
  color: #fff;
}
.quote-panel p {
  color: #fff;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 30px;
  line-height: 1.15;
}
.quote-panel span { display: block; margin-top: 16px; color: rgba(255,255,255,.72); }
.cta-band {
  background: var(--green);
  color: #fff;
}
.cta-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.cta-row p { margin-top: 12px; color: rgba(255,255,255,.75); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.compare > div {
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--copper);
}
.muted li::before { background: var(--blue); }
.steps { display: grid; gap: 16px; }
.step {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 20px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.step > span {
  color: var(--copper);
  font-weight: 900;
  font-size: 28px;
}
.step p { margin-top: 8px; color: var(--muted); }
.review p {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 26px;
  line-height: 1.18;
}
.review strong, .review span { display: block; }
.review strong { margin-top: 18px; }
.source-note {
  font-size: 14px;
  max-width: 840px;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.article-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.article-card span {
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.article-card h3 {
  margin-top: 10px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 28px;
  line-height: 1.08;
}
.article-card a { text-decoration: none; }
.article-card p {
  margin-top: 12px;
  color: var(--muted);
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  align-items: start;
}
.article-body {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 48px);
  box-shadow: var(--shadow);
}
.article-body h2 {
  margin-top: 34px;
  font-size: clamp(28px, 3.4vw, 42px);
}
.article-body p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
}
.article-lede {
  color: var(--ink) !important;
  font-size: 21px !important;
}
.article-note {
  margin-top: 34px;
  padding: 20px;
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.article-note strong { display: block; }
.article-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 12px;
  background: var(--green);
  color: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.article-aside h2 { font-size: 34px; }
.article-aside p { color: rgba(255,255,255,.76); }
.article-aside .btn.secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.28);
}
.bbb-card {
  display: grid;
  gap: 12px;
  background: var(--paper);
}
.bbb-card a {
  color: var(--green);
  font-weight: 900;
}
.faq {
  display: grid;
  gap: 12px;
}
details summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
}
details p {
  margin-top: 14px;
  color: var(--muted);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.contact-tile {
  padding: 28px;
  text-decoration: none;
  display: grid;
  gap: 8px;
}
.contact-tile span {
  color: var(--copper);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}
.contact-tile strong {
  font-size: 24px;
}
.contact-tile em {
  color: var(--muted);
  font-style: normal;
}
.form-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}
.offer-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 800;
}
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  background: #fcfbf8;
  color: var(--ink);
}
textarea { resize: vertical; }
.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  color: var(--muted);
}
.check input { width: auto; margin-top: 5px; }
.hp { display: none; }
.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}
.form-note a { font-weight: 900; color: var(--green); }
.form-aside ol {
  margin: 18px 0 0;
  padding-left: 22px;
  color: var(--muted);
}
.form-aside li + li { margin-top: 10px; }
.legal {
  display: grid;
  gap: 14px;
}
.legal p {
  margin-top: 10px;
  color: var(--muted);
}
.site-footer {
  background: #161616;
  color: #fff;
  padding: 52px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}
.footer-grid p {
  margin-top: 10px;
  color: rgba(255,255,255,.66);
  max-width: 420px;
}
.footer-grid span {
  display: block;
  margin-bottom: 12px;
  color: #ffb08d;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}
.footer-grid a {
  display: block;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  margin: 8px 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.58);
  font-size: 13px;
}
@media (max-width: 980px) {
  .nav-wrap { grid-template-columns: auto auto; }
  .menu-button {
    display: inline-flex;
    justify-self: end;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 8px;
    padding: 10px 14px;
    font-weight: 900;
  }
  .site-nav, .nav-cta {
    display: none;
  }
  .site-nav.open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 4px;
    padding-bottom: 14px;
  }
  .site-nav.open a { background: #fff; }
  .hero-grid, .split, .form-section, .capital-grid, .article-layout { grid-template-columns: 1fr; }
  .grid.three, .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-aside { position: static; }
}
@media (max-width: 640px) {
  .wrap { width: min(100% - 24px, 1160px); }
  .topline .wrap { gap: 8px 12px; padding: 8px 0; }
  .brand img { width: 150px; }
  .hero { padding: 48px 0 36px; }
  h1 { font-size: 43px; }
  .hero-text { font-size: 18px; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof img { width: 220px; justify-self: start; }
  .grid.two, .grid.three, .compare, .contact-grid, .form-row, .footer-grid, .article-grid { grid-template-columns: 1fr; }
  .cta-row { display: block; }
  .cta-actions { margin-top: 20px; }
  .step { grid-template-columns: 1fr; }
  section.wrap, .band, .cta-band, .capital-band { padding: 54px 0; }
}
