/* ── Variables ── */
:root {
  --bg: #F8F5F0;
  --bg-alt: #EEE9E1;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --accent: #C4622D;
  --accent-hover: #A8521F;
  --white: #FFFFFF;
  --border: #D9D3CA;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  font-weight: 700;
}

/* ── Site Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.3px;
}
header nav {
  display: flex;
  gap: 28px;
}
header nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.15s;
}
header nav a:hover { color: var(--accent); }

/* ── Hero ── */
.hero {
  padding: 80px 24px 72px;
  background: var(--bg);
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 460px;
  line-height: 1.65;
}

/* Hero visual — document card */
.hero-visual { display: flex; justify-content: center; }
.doc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
}
.doc-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.doc-stack { display: flex; flex-direction: column; gap: 10px; }
.doc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--bg);
}
.doc-item--check { color: var(--fg); }
.doc-check { color: var(--accent); font-weight: 700; flex-shrink: 0; }
.doc-lock { color: #A8A49D; font-size: 13px; flex-shrink: 0; }
.doc-card-cta {
  margin-top: 20px;
  text-align: center;
  padding: 10px;
  background: var(--accent);
  color: var(--white);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

/* ── Proof Bar ── */
.proof {
  background: var(--fg);
  padding: 40px 24px;
}
.proof-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.proof-stat {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}
.proof-stat:first-child { padding-left: 0; }
.proof-stat:last-child { padding-right: 0; }
.proof-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
}
.proof-label {
  display: block;
  font-size: 13px;
  color: #9A9490;
  margin-top: 4px;
  line-height: 1.4;
}
.proof-divider {
  width: 1px;
  height: 48px;
  background: #3A3632;
  flex-shrink: 0;
}

/* ── Section shared ── */
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-heading {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--fg);
  margin-bottom: 48px;
}

/* ── Products ── */
.products { padding: 88px 24px; background: var(--bg-alt); }
.products-inner { max-width: 1120px; margin: 0 auto; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
}
.product-card--featured {
  border-color: var(--accent);
  border-width: 2px;
}
.product-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.product-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.product-name {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--fg);
}
.product-desc {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 20px;
  line-height: 1.55;
}
.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.product-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}
.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.product-price {
  font-size: 22px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
}
.btn-buy {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 8px;
  transition: background 0.15s;
  text-align: center;
}
.btn-buy:hover { background: var(--accent-hover); }

.doc-card-cta {
  margin-top: 20px;
  text-align: center;
  padding: 10px;
  background: var(--accent);
  color: var(--white);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  transition: background 0.15s;
}
.doc-card-cta:hover { background: var(--accent-hover); }

/* Thank-you page */
.thank-you {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}
.thank-you-inner {
  max-width: 540px;
  text-align: center;
}
.thank-you-icon {
  font-size: 64px;
  margin-bottom: 24px;
}
.thank-you h1 {
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--fg);
}
.thank-you p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}
.thank-you .sub {
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 24px;
}

/* ── Inspection Ready ── */
.inspection-ready { padding: 88px 24px; background: var(--bg); }
.inspection-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.inspection-body {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 20px;
  line-height: 1.65;
}
.inspection-quote {
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--bg-alt);
  border-radius: 12px;
  border-left: 3px solid var(--accent);
}
.quote-text {
  font-size: 16px;
  color: var(--fg);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 12px;
}
.quote-attr {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}

/* Gap checklist */
.gap-list { display: flex; flex-direction: column; gap: 10px; }
.gap-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 15px;
}
.gap-row--done { background: #F0FAF4; color: #2D6A4F; }
.gap-row--missing { background: #FEF3EC; color: var(--fg); }
.gap-status { font-weight: 700; flex-shrink: 0; }
.gap-row--done .gap-status { color: #2D6A4F; }
.gap-row--missing .gap-status { color: var(--accent); }
.gap-note {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
}
.gap-caption {
  margin-top: 16px;
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
}

/* ── Closing ── */
.closing { padding: 96px 24px; background: var(--fg); }
.closing-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-size: clamp(28px, 4vw, 46px);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.25;
}
.closing-sub {
  font-size: 17px;
  color: #9A9490;
  line-height: 1.65;
  margin-bottom: 40px;
}
.closing-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
}
.author-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}
.author-tagline {
  font-size: 13px;
  color: #6B6560;
  margin-top: 2px;
}

/* ── Footer ── */
.site-footer {
  background: #111010;
  padding: 56px 24px 32px;
}
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-top {
  display: flex;
  gap: 80px;
  margin-bottom: 48px;
}
.footer-brand { max-width: 260px; }
.footer-tagline {
  font-size: 14px;
  color: #6B6560;
  margin-top: 12px;
  line-height: 1.5;
}
.footer-nav {
  display: flex;
  gap: 64px;
  margin-left: auto;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6B6560;
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: #9A9490;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid #2A2727;
  padding-top: 24px;
}
.footer-bottom p {
  font-size: 13px;
  color: #4A4745;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual { justify-content: flex-start; }
  .products-grid { grid-template-columns: 1fr; }
  .inspection-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .proof-inner { flex-direction: column; gap: 24px; }
  .proof-divider { width: 48px; height: 1px; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-nav { margin-left: 0; }
}
@media (max-width: 600px) {
  .hero { padding: 56px 20px 56px; }
  .products, .inspection-ready { padding: 64px 20px; }
  .closing { padding: 64px 20px; }
  header nav { display: none; }
}