/* ============================================================
   Dr. Hines Inc. — Redesign system (Clarity Report language)
   Deep umber ground, ivory text, gold accent, serif for warmth.
   Phone-first. One idea per screen. Big tap targets.
   ============================================================ */
:root {
  --ink: #211911;
  --ink-2: #2a1f14;
  --ink-3: #33271a;
  --ivory: #f5f1e6;
  --ivory-dim: #cfc7b8;
  --ivory-faint: #9a8f7d;
  --gold: #d4a843;
  --gold-soft: #ffe9b0;
  --gold-deep: #b8912f;
  --green: #6fc492; /* strengths / positive signals ONLY */
  --line: rgba(245, 241, 230, 0.14);
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--ivory);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Nav ---------- */
.rd-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(33, 25, 17, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.rd-nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 20px;
  height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.rd-brand { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--ivory); text-decoration: none; letter-spacing: -0.01em; white-space: nowrap; }
.rd-brand span { color: var(--gold); }
.rd-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.rd-links a { font-size: 13.5px; font-weight: 600; color: var(--ivory-dim); text-decoration: none; letter-spacing: 0.02em; }
.rd-links a:hover, .rd-links a[aria-current="page"] { color: var(--gold-soft); }
.rd-nav-cta {
  background: var(--gold); color: var(--ink) !important;
  padding: 11px 18px; border-radius: 5px; font-weight: 800 !important; font-size: 13.5px !important;
  text-decoration: none; white-space: nowrap;
}
.rd-nav-cta:hover { background: var(--gold-soft); }
.rd-menu-btn { display: none; background: none; border: 1px solid var(--line); border-radius: 5px; color: var(--ivory); font-size: 20px; line-height: 1; padding: 8px 12px; cursor: pointer; }
@media (max-width: 860px) {
  .rd-links { display: none; }
  .rd-links.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 62px; left: 0; right: 0;
    background: var(--ink); border-bottom: 1px solid var(--line);
    padding: 8px 20px 20px; box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  }
  .rd-links.open li { list-style: none; }
  .rd-links.open a { display: block; padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: 16px; }
  .rd-links.open li:last-child a { border-bottom: none; }
  .rd-menu-btn { display: block; }
}

/* ---------- Structure ---------- */
.rd-wrap { max-width: 680px; margin: 0 auto; padding: 0 22px; }
.rd-wrap-wide { max-width: 1000px; margin: 0 auto; padding: 0 22px; }
section.rd { padding: 64px 0; }
section.rd-tight { padding: 44px 0; }
.rd-divider { border: none; border-top: 1px solid var(--line); max-width: 1000px; margin: 0 auto; }

.rd-eyebrow {
  display: block; font-size: 11.5px; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
h1.rd-h1 {
  font-family: var(--sans); font-weight: 800; letter-spacing: -0.02em;
  font-size: clamp(34px, 7vw, 56px); line-height: 1.08; color: var(--ivory);
}
h2.rd-h2 {
  font-family: var(--sans); font-weight: 800; letter-spacing: -0.015em;
  font-size: clamp(26px, 4.5vw, 38px); line-height: 1.15; color: var(--ivory); margin-bottom: 18px;
}
.rd-h1 em, .rd-h2 em { font-style: normal; color: var(--gold-soft); }
.rd-lead { font-size: 18.5px; color: var(--ivory-dim); line-height: 1.7; }

/* Serif = the voice. Empathy passages, quotes, scripture. */
.rd-voice { font-family: var(--serif); font-size: 20px; line-height: 1.75; color: var(--ivory); }
.rd-voice p { margin-bottom: 18px; }
.rd-voice p:last-child { margin-bottom: 0; }
.rd-quote { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--gold-soft); border-left: 3px solid var(--gold); padding-left: 18px; line-height: 1.7; }
.rd-attr { font-family: var(--sans); font-style: normal; font-size: 13px; color: var(--ivory-faint); margin-top: 10px; }

/* ---------- Buttons ---------- */
.rd-btn {
  display: block; width: 100%; max-width: 430px;
  text-align: center; background: var(--gold); color: var(--ink);
  font-size: 18px; font-weight: 800; letter-spacing: 0.01em;
  padding: 18px 26px; border-radius: 7px; text-decoration: none;
  box-shadow: 0 8px 26px rgba(212, 168, 67, 0.22);
}
.rd-btn:hover { background: var(--gold-soft); }
.rd-btn-ghost {
  display: inline-block; color: var(--ivory-dim); font-size: 15px; font-weight: 600;
  text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 2px;
}
.rd-btn-ghost:hover { color: var(--gold-soft); border-color: var(--gold); }
.rd-under-btn { font-size: 13.5px; color: var(--ivory-faint); margin-top: 12px; max-width: 430px; line-height: 1.6; }

/* ---------- Cards / lists ---------- */
.rd-card {
  background: rgba(245, 241, 230, 0.045);
  border: 1px solid var(--line); border-radius: 10px; padding: 24px;
}
.rd-card strong { display: block; font-size: 17px; color: var(--ivory); margin-bottom: 6px; }
.rd-card p { font-size: 15.5px; color: var(--ivory-dim); }
.rd-stack { display: grid; gap: 14px; }
@media (min-width: 720px) { .rd-stack-3 { grid-template-columns: 1fr 1fr 1fr; } .rd-stack-2 { grid-template-columns: 1fr 1fr; } }

.rd-steps { list-style: none; counter-reset: step; }
.rd-steps li {
  counter-increment: step; position: relative;
  padding: 18px 0 18px 58px; border-bottom: 1px solid var(--line); font-size: 16.5px; color: var(--ivory-dim);
}
.rd-steps li strong { color: var(--ivory); display: block; margin-bottom: 3px; font-size: 17px; }
.rd-steps li::before {
  content: counter(step); position: absolute; left: 0; top: 20px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ink-3); border: 1px solid var(--gold); color: var(--gold-soft);
  font-weight: 800; font-size: 16px; display: flex; align-items: center; justify-content: center;
}

.rd-check { list-style: none; }
.rd-check li { padding: 12px 0 12px 32px; position: relative; font-size: 16px; color: var(--ivory-dim); border-bottom: 1px solid var(--line); }
.rd-check li:last-child { border-bottom: none; }
.rd-check li::before { content: ""; position: absolute; left: 2px; top: 20px; width: 9px; height: 9px; border-radius: 2px; background: var(--gold); }
.rd-check li strong { color: var(--ivory); }

/* Pain lines — serif, warm */
.rd-pain { display: grid; gap: 20px; }
.rd-pain p { font-family: var(--serif); font-size: 19px; line-height: 1.7; color: var(--ivory); padding-left: 18px; border-left: 2px solid var(--gold-deep); }

/* Doors row */
.rd-doors { display: grid; gap: 12px; }
@media (min-width: 760px) { .rd-doors { grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); } }
.rd-door {
  display: block; text-decoration: none; background: rgba(245, 241, 230, 0.045);
  border: 1px solid var(--line); border-top: 3px solid var(--gold);
  border-radius: 8px; padding: 20px 18px; transition: transform 0.14s, background 0.14s;
}
.rd-door:hover { transform: translateY(-2px); background: rgba(245, 241, 230, 0.08); }
.rd-door .d-for { font-size: 10.5px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 6px; }
.rd-door .d-name { font-size: 15px; font-weight: 700; color: var(--ivory); line-height: 1.4; }

/* Bars (report-style visual) */
.rd-bar { height: 9px; border-radius: 5px; background: var(--ink-3); overflow: hidden; margin: 14px 0 6px; }
.rd-bar i { display: block; height: 100%; background: var(--gold); }
.rd-bar.green i { background: var(--green); }
.rd-bar-label { font-size: 12.5px; color: var(--ivory-faint); }

/* Price framing */
.rd-price-row { display: flex; justify-content: space-between; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.rd-price-row:last-child { border-bottom: none; }
.rd-price-row .p-what { font-size: 16px; color: var(--ivory); }
.rd-price-row .p-what small { display: block; color: var(--ivory-faint); font-size: 13.5px; margin-top: 2px; }
.rd-price-row .p-cost { font-weight: 800; white-space: nowrap; color: var(--ivory-dim); }
.rd-price-row.hit .p-cost { color: var(--gold-soft); font-size: 21px; }

/* FAQ */
.rd-faq { border-bottom: 1px solid var(--line); padding: 18px 0; }
.rd-faq strong { display: block; margin-bottom: 6px; font-size: 16.5px; color: var(--ivory); }
.rd-faq p { font-size: 15.5px; color: var(--ivory-dim); }

/* Photo */
.rd-photo { width: 132px; height: 132px; border-radius: 50%; object-fit: cover; object-position: center top; border: 2px solid var(--gold); }

.rd-sig { font-size: 13px; color: var(--ivory-faint); letter-spacing: 0.02em; }

/* ---------- Footer ---------- */
.rd-footer { border-top: 1px solid var(--line); padding: 44px 0 30px; background: var(--ink); }
.rd-footer-inner { max-width: 1000px; margin: 0 auto; padding: 0 22px; }
.rd-footer-links { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-bottom: 22px; }
.rd-footer-links a { font-size: 14px; color: var(--ivory-dim); text-decoration: none; }
.rd-footer-links a:hover { color: var(--gold-soft); }
.rd-footer-meta { font-size: 12.5px; color: var(--ivory-faint); line-height: 1.8; }
.rd-footer-meta a { color: var(--ivory-dim); text-decoration: none; }

/* Forms (contact/coaches/churches) */
.rd-input, .rd-textarea {
  width: 100%; padding: 14px; font-size: 16px; font-family: var(--sans);
  background: rgba(245, 241, 230, 0.06); border: 1px solid var(--line); border-radius: 6px;
  color: var(--ivory); margin-bottom: 14px;
}
.rd-input::placeholder, .rd-textarea::placeholder { color: var(--ivory-faint); }
.rd-input:focus, .rd-textarea:focus { outline: none; border-color: var(--gold); }
