:root {
  --ink: #2b2620;
  --ink-soft: #6b6153;
  --paper: #f9f6f0;
  --paper-alt: #efe7d9;
  --line: #ddd0ba;
  --brass: #ab8452;
  --brass-dark: #7e5f39;
  --charcoal: #2c302c;
  --max: 1060px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.65;
}

h1, h2, h3 {
  font-family: ui-serif, Charter, "Iowan Old Style", Georgia, "Times New Roman", serif;
  font-weight: 400;
  color: var(--ink);
  text-wrap: balance;
  letter-spacing: 0;
}
h1 { font-weight: 400; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 26px; }
a { color: inherit; }
img { max-width: 100%; display: block; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brass-dark);
  margin-bottom: 18px;
}

/* Brass rule — this brand's quiet divider motif */
.rule {
  width: 46px;
  height: 2px;
  background: var(--brass);
  margin: 0 auto 22px;
}
.rule.left { margin: 0 0 22px; }

/* Header */
header.site {
  position: sticky; top: 0; z-index: 30;
  background: rgba(249, 246, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
header.site .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 26px;
}
.wordmark {
  font-family: ui-serif, Charter, Georgia, serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.wordmark em { font-style: normal; color: var(--brass-dark); }

.btn {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  padding: 14px 30px;
  border-radius: 1px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  border: 1px solid var(--ink);
  transition: background 0.15s ease, color 0.15s ease;
}
.btn:hover { background: var(--brass-dark); border-color: var(--brass-dark); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-header { padding: 9px 20px; font-size: 0.78rem; }
.btn-light { background: var(--brass); border-color: var(--brass); color: #fff; }
.btn-light:hover { background: #97713f; border-color: #97713f; }

/* Hero — soft dawn light, generous whitespace, quiet */
.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  text-align: left;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  min-height: 640px;
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero .hero-photo { min-height: 340px; order: -1; }
}
.hero .hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px 56px 90px 26px;
  max-width: 620px;
  margin-left: auto;
}
.hero .hero-photo {
  background: url("images/hero.jpg") center / cover no-repeat;
  position: relative;
}
.hero .hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(249, 246, 240, 0.35) 0%, transparent 14%);
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.05rem);
  line-height: 1.16;
  max-width: 17ch;
  margin: 0 0 26px;
}
.hero .sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 34px;
}
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero .cta-note { font-size: 0.85rem; color: #8a7d68; margin-top: 18px; }

/* Sections */
section { padding: 96px 0; }
section.alt { background: var(--paper-alt); }
section.dark { background: var(--charcoal); color: #ece5d6; }
section.dark h2 { color: #f7f1e4; }
section.dark .eyebrow { color: var(--brass); }
section.centered { text-align: center; }

h2.title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 24px;
  max-width: 24ch;
}
section.centered h2.title { margin-left: auto; margin-right: auto; }

.lede { font-size: 1.12rem; color: var(--ink-soft); max-width: 60ch; }
section.centered .lede { margin-left: auto; margin-right: auto; }

.pull-quote {
  font-family: ui-serif, Charter, Georgia, serif;
  font-size: 1.4rem;
  line-height: 1.55;
  color: var(--ink);
  max-width: 42ch;
  font-style: italic;
}

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; } }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; margin-top: 46px; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step .num {
  font-family: ui-serif, Charter, Georgia, serif;
  font-size: 1.1rem;
  color: var(--brass-dark);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 10px; font-weight: 400; }
.step p { color: var(--ink-soft); font-size: 0.97rem; }

.promise-list { margin-top: 34px; }
.promise-item {
  display: grid; grid-template-columns: 20px 1fr; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid rgba(236, 229, 214, 0.15);
}
.promise-item .mark { color: var(--brass); }
.promise-item p { color: #cfc4ad; font-size: 0.98rem; }
.promise-item strong { color: #f7f1e4; font-weight: 600; }

.guarantee-box {
  margin-top: 40px;
  border: 1px solid var(--brass);
  border-radius: 2px;
  padding: 32px 36px;
  background: rgba(171, 132, 82, 0.07);
}

.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
@media (max-width: 820px) { .proof-grid { grid-template-columns: 1fr; } }
.photo-slot {
  aspect-ratio: 4 / 3;
  border: 1px dashed var(--line);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 22px;
  color: var(--ink-soft); font-size: 0.84rem;
  background: var(--paper);
}
.quote-card { background: var(--paper); border: 1px solid var(--line); padding: 28px; text-align: left; }
.quote-card .stars { color: var(--brass); letter-spacing: 0.14em; margin-bottom: 12px; }
.quote-card p { font-style: italic; color: var(--ink-soft); font-size: 0.96rem; }
.quote-card .who { margin-top: 14px; font-weight: 600; font-size: 0.82rem; font-style: normal; }

.cta-band { text-align: center; background: var(--ink); color: var(--paper); }
.cta-band h2 { color: var(--paper); margin: 0 auto 18px; max-width: 24ch; }
.cta-band p { max-width: 54ch; margin: 0 auto 30px; color: #cfc4ad; }

footer.site { background: var(--charcoal); color: #a89b83; padding: 48px 0; font-size: 0.85rem; text-align: center; }
footer.site a { color: var(--brass); text-decoration: none; }

.faq-item { border-bottom: 1px solid var(--line); padding: 26px 0; }
.faq-item h3 { font-size: 1.04rem; margin-bottom: 9px; font-weight: 600; font-family: -apple-system, sans-serif; }
.faq-item p { color: var(--ink-soft); font-size: 0.96rem; }

.form-card { background: var(--paper); border: 1px solid var(--line); padding: 38px; max-width: 480px; margin: 0 auto; }
.form-card h3 { margin-bottom: 22px; text-align: center; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 6px; color: var(--ink-soft); font-family: -apple-system, sans-serif; }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: 1px;
  font-size: 0.95rem; font-family: inherit; background: #fff; color: var(--ink);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { text-align: center; font-size: 0.82rem; color: var(--ink-soft); margin-top: 18px; font-family: -apple-system, sans-serif; }

.landing-hero { text-align: center; padding: 90px 0 60px; }
.landing-hero h1 { max-width: 21ch; margin: 0 auto 22px; }
.landing-hero .sub { max-width: 54ch; margin: 0 auto 30px; }

.no-nav-header { padding: 24px 0; text-align: center; background: var(--charcoal); }
.no-nav-header .wordmark { color: #f7f1e4; }

.benefit-list { max-width: 600px; margin: 36px auto 0; display: grid; gap: 14px; text-align: left; font-family: -apple-system, sans-serif; }
.benefit-list li { list-style: none; padding-left: 26px; position: relative; color: var(--ink-soft); }
.benefit-list li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px;
  background: var(--brass); border-radius: 50%;
}

.value-total-band { text-align: center; font-size: 1.2rem; font-weight: 600; color: var(--brass-dark); margin-top: 24px; font-family: ui-serif, Georgia, serif; }
