/* DREW'S AI — wireframe stylesheet.
   White paper, black ink, grey boxes where the art will live.
   The final brand pass (paper-craft world, Kalam display face) replaces
   the grey boxes scene-for-scene. Layout and copy are final. */

:root {
  --ink: #111;
  --grey-soft: #f4f4f4;
  --grey-line: #b9b9b9;
  --grey-text: #6b6b6b;
  --maxw: 44rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
}

/* ---------- header ---------- */
header.bar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1.25rem;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--grey-line);
}
header.bar .wordmark {
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--ink);
}
header.bar .call {
  text-decoration: none;
  background: var(--ink);
  color: #fff;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}
header.bar .call:hover { background: #333; }

/* ---------- layout ---------- */
main { padding: 0 1.25rem; }
section.band {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 3.5rem 0 1rem;
}
section.band.tight { padding-top: 2.25rem; }
hr.rule {
  max-width: var(--maxw);
  margin: 2.5rem auto 0;
  border: 0;
  border-top: 1px solid var(--grey-line);
}

/* ---------- type ---------- */
.eyebrow {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin: 0 0 0.75rem;
}
h1 {
  font-size: clamp(2rem, 5.5vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;
}
h2 {
  font-size: clamp(1.45rem, 3.5vw, 1.9rem);
  line-height: 1.25;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1.15rem; }
.lead { font-size: 1.1875rem; }
.note { color: var(--grey-text); font-size: 0.9375rem; }
a { color: var(--ink); }

/* the phone number, treated like a logo */
.bignumber {
  display: block;
  font-size: clamp(1.8rem, 7vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--ink);
  margin: 0.5rem 0 1rem;
}
.bignumber:hover { color: #333; }

/* CTA row */
.cta-row { margin: 1.5rem 0 0.5rem; }
.btn {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  margin-right: 0.75rem;
}
.btn:hover { background: #333; }
.btn.ghost {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

/* ---------- the grey scene boxes ---------- */
.scene {
  border: 2px dashed var(--grey-line);
  background: var(--grey-soft);
  border-radius: 6px;
  padding: 2.25rem 1.5rem;
  margin: 2rem 0;
  text-align: center;
  color: var(--grey-text);
}
.scene .label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}
.scene .desc {
  font-size: 0.9375rem;
  max-width: 34rem;
  margin: 0 auto;
  font-style: italic;
}
.scene.tall { padding: 4.5rem 1.5rem; }

/* ---------- lists & ladders ---------- */
ul.plain { list-style: none; padding: 0; margin: 0 0 1.15rem; }
ul.plain li { padding: 0.45rem 0; }

.fourwords { margin: 1.5rem 0; }
.fourwords .word {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--grey-line);
}
.fourwords .word:last-child { border-bottom: 1px solid var(--grey-line); }
.fourwords .w { font-weight: 700; font-size: 1.125rem; }

.doors { margin: 1.5rem 0; }
.door {
  display: block;
  text-decoration: none;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 6px;
  padding: 1.1rem 1.25rem;
  margin: 0.85rem 0;
}
.door:hover { background: var(--grey-soft); }
.door .door-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
}
.door .price { font-variant-numeric: tabular-nums; }
.door .door-line { color: var(--grey-text); margin-top: 0.25rem; }

/* steps (how-it-works) */
.steps { counter-reset: step; padding: 0; margin: 1.5rem 0; list-style: none; }
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--grey-line);
}
.steps li:last-child { border-bottom: 1px solid var(--grey-line); }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-weight: 800;
  color: var(--grey-text);
}

/* two-column honesty table (about/proof) */
.twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.twocol > div {
  border: 1px solid var(--grey-line);
  border-radius: 6px;
  padding: 1.1rem 1.25rem;
}
.twocol h3 { margin: 0 0 0.6rem; font-size: 1rem; }
@media (max-width: 38rem) { .twocol { grid-template-columns: 1fr; } }

/* price echo strip */
.echo {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.8rem;
  font-weight: 800;
  font-size: 1.25rem;
  font-variant-numeric: tabular-nums;
  margin: 1rem 0;
}

/* ---------- footer ---------- */
footer.foot {
  margin-top: 4rem;
  border-top: 1px solid var(--grey-line);
  padding: 2.5rem 1.25rem 3rem;
}
footer.foot .inner { max-width: var(--maxw); margin: 0 auto; }
footer.foot .tagline { color: var(--grey-text); max-width: 36rem; }
footer.foot nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  margin-top: 1.25rem;
  font-size: 0.9375rem;
}
footer.foot nav a { color: var(--grey-text); }

@media print {
  header.bar { position: static; }
  .scene { background: #fff; }
}
