/* Old Town House Buyers — seller-facing site
   Bugatti aesthetic: warm, neighborhood, trustworthy
   A DBA of X3 Investment Group LLC */

:root {
  --paper: #fbf6ec;
  --paper-warm: #f4ead4;
  --ink: #0d0807;
  --accent: #a44a1a;        /* Old Town ochre — warm, established */
  --accent-deep: #7a3614;
  --moss: #2d4a26;          /* trust signal */
  --muted: #5a4f3f;
  --muted-2: #8a7860;
  --line: #e0d4b8;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter Tight', -apple-system, system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--ink); text-decoration: none; }
em { font-style: italic; color: var(--accent); font-weight: 600; }

/* === NAV === */
.nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 64px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky; top: 0; z-index: 100;
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand .word {
  font-family: var(--serif); font-size: 22px; font-weight: 700;
  letter-spacing: -0.01em; color: var(--ink);
}
.brand .sub {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 700; margin-top: 4px;
}
.nav-links { display: flex; gap: 28px; align-items: center; font-size: 14px; font-weight: 600; }
.nav-links a { color: var(--muted); transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--accent); color: white !important;
  padding: 11px 22px; border-radius: 4px;
  font-weight: 700; font-size: 14px;
  border: 1.5px solid var(--accent);
  transition: all .15s;
}
.nav-cta:hover { background: var(--accent-deep); border-color: var(--accent-deep); transform: translateY(-1px); }

/* === HERO === */
.hero {
  padding: 96px 64px 72px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 700; line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: var(--ink);
}
.hero-eyebrow {
  display: inline-block; padding: 7px 16px;
  background: rgba(164,74,26,0.10); color: var(--accent-deep);
  border-radius: 100px; font-size: 11.5px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-text p.lede {
  font-size: 19.5px; color: var(--muted); line-height: 1.55;
  margin-bottom: 32px; max-width: 560px;
}
.hero-promises {
  display: flex; flex-wrap: wrap; gap: 20px 36px;
  font-size: 14.5px; font-weight: 600; color: var(--ink);
  margin-bottom: 36px;
}
.hero-promises .check { color: var(--moss); margin-right: 8px; font-weight: 800; }

/* === FORM CARD === */
.form-card {
  background: white;
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  padding: 36px;
  box-shadow: 0 24px 60px rgba(13,8,7,0.10);
}
.form-card h3 {
  font-family: var(--serif); font-size: 24px; font-weight: 700;
  margin-bottom: 8px; color: var(--ink);
}
.form-card .sub {
  font-size: 13.5px; color: var(--muted); margin-bottom: 24px;
}
.form-row { margin-bottom: 14px; }
.form-row label {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 4px; font-size: 15px;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  transition: border-color .15s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none; border-color: var(--accent);
}
.form-row.split { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }

/* TCPA consent block — the critical compliance piece */
.consent-block {
  margin: 22px 0 18px;
  padding: 14px 16px;
  background: var(--paper-warm);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  font-size: 12.5px; line-height: 1.55;
  color: var(--muted);
}
.consent-block strong { color: var(--ink); }
.consent-checkbox {
  display: flex; gap: 10px; margin-top: 10px;
  font-size: 13px; line-height: 1.5;
}
.consent-checkbox input { margin-top: 2px; flex-shrink: 0; transform: scale(1.15); accent-color: var(--accent); }
.consent-checkbox label { font-weight: 500; color: var(--ink); cursor: pointer; }

.form-card .submit-btn {
  width: 100%; padding: 16px;
  background: var(--accent); color: white;
  border: none; border-radius: 4px;
  font-family: var(--sans); font-size: 15px; font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all .15s;
  margin-top: 8px;
}
.form-card .submit-btn:hover { background: var(--accent-deep); transform: translateY(-1px); }
.form-card .secure-note {
  text-align: center; font-size: 11.5px; color: var(--muted-2);
  margin-top: 12px; font-weight: 600;
}

/* === SECTIONS === */
section { padding: 80px 64px; max-width: 1200px; margin: 0 auto; }
section h2 {
  font-family: var(--serif); font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.05;
  color: var(--ink); margin-bottom: 48px; max-width: 700px;
}

/* === HOW IT WORKS === */
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.how-card {
  border: 1.5px solid var(--ink);
  border-radius: 6px;
  padding: 32px;
  background: white;
  position: relative;
}
.how-card .step {
  font-family: var(--serif); font-size: 64px; font-weight: 700;
  color: var(--accent); line-height: 1; margin-bottom: 16px;
  font-style: italic;
}
.how-card h3 {
  font-family: var(--serif); font-size: 22px; font-weight: 700;
  margin-bottom: 12px; color: var(--ink);
}
.how-card p { font-size: 15px; color: var(--muted); line-height: 1.55; }

/* === WHY US === */
.why { background: var(--paper-warm); padding: 80px 64px; }
.why-inner { max-width: 1200px; margin: 0 auto; }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start;
}
.why-list { list-style: none; }
.why-list li {
  display: flex; gap: 16px; padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px; line-height: 1.55;
}
.why-list li:last-child { border-bottom: none; }
.why-list li strong {
  display: block; font-family: var(--serif); font-size: 18px;
  font-weight: 700; color: var(--ink); margin-bottom: 4px;
}
.why-list li .icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; flex-shrink: 0;
}
.why-pull {
  font-family: var(--serif); font-style: italic; font-size: 24px;
  line-height: 1.4; color: var(--ink);
  padding: 28px 32px; border-left: 4px solid var(--accent);
  background: white;
}
.why-pull cite {
  display: block; margin-top: 14px; font-style: normal;
  font-family: var(--sans); font-size: 13px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase; color: var(--muted-2);
}

/* === TRUST BAR === */
.trust-bar {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 32px 64px; max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  text-align: center;
}
.trust-bar .stat {
  font-family: var(--serif); font-size: 34px; font-weight: 700;
  color: var(--ink); line-height: 1;
}
.trust-bar .label {
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-top: 8px;
}

/* === FAQ === */
.faq-grid { display: grid; gap: 16px; max-width: 800px; }
.faq {
  border: 1px solid var(--line); border-radius: 6px;
  padding: 22px 28px; background: white;
}
.faq h4 {
  font-family: var(--serif); font-size: 19px; font-weight: 700;
  margin-bottom: 10px; color: var(--ink);
}
.faq p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }

/* === FINAL CTA === */
.final-cta {
  text-align: center; padding: 96px 64px;
  background: var(--ink); color: var(--paper);
}
.final-cta h2 { color: var(--paper); margin-bottom: 24px; }
.final-cta h2 em { color: var(--accent); }
.final-cta p {
  font-size: 18px; color: rgba(251,246,236,0.75);
  max-width: 600px; margin: 0 auto 36px;
}
.final-cta .btn {
  display: inline-block; background: var(--accent); color: white;
  padding: 16px 36px; font-size: 16px; font-weight: 800;
  border-radius: 4px; transition: all .15s;
}
.final-cta .btn:hover { background: var(--accent-deep); transform: translateY(-2px); }

/* === FOOTER === */
footer {
  background: var(--ink); color: var(--paper);
  padding: 48px 64px 32px; text-align: center;
}
footer .legal-disclaimer {
  max-width: 800px; margin: 0 auto 28px;
  font-size: 12.5px; line-height: 1.55;
  color: rgba(251,246,236,0.65);
}
footer a { color: var(--paper); text-decoration: none; }
footer a:hover { color: var(--accent); }
footer .links { font-size: 13px; margin-bottom: 18px; }
footer .links a { margin: 0 8px; }
footer .signature {
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid rgba(251,246,236,0.15);
  font-size: 12px; color: rgba(251,246,236,0.55);
}

/* === RESPONSIVE === */
@media (max-width: 980px) {
  .nav { padding: 16px 24px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 48px 24px; grid-template-columns: 1fr; gap: 36px; }
  section { padding: 56px 24px; }
  .why { padding: 56px 24px; }
  .how-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 28px; }
  .trust-bar { grid-template-columns: 1fr 1fr; gap: 24px; padding: 24px; }
  .final-cta { padding: 72px 24px; }
  footer { padding: 40px 24px 24px; }
}
