/* Rank & Rent shared stylesheet.
   One file, no framework, no build step. Identical across every property —
   change colours via the variables below and nothing else. */

:root {
  --ink: #16202b;
  --muted: #5a6672;
  --line: #dfe4e9;
  --bg: #ffffff;
  --bg-alt: #f5f7f9;
  --brand: #1f5f8b;      /* per-property: adjust hue only */
  --brand-dark: #14425f;
  --accent: #d4741d;     /* CTA colour, must contrast with --brand */
  --radius: 8px;
  --wrap: 68rem;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font: 400 17px/1.65 system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

h1, h2, h3 { line-height: 1.25; margin: 1.8rem 0 .7rem; font-weight: 700; }
h1 { font-size: clamp(1.7rem, 4.5vw, 2.6rem); margin-top: 0; }
h2 { font-size: clamp(1.35rem, 3vw, 1.8rem); }
h3 { font-size: 1.15rem; }
p, ul, ol, table { margin: 0 0 1.1rem; }
a { color: var(--brand); }

/* ---------- header ---------- */
.bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .7rem 1.1rem;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: var(--bg); z-index: 10;
}
.brand { font-weight: 700; font-size: 1.05rem; text-decoration: none; color: var(--ink); }
.tel { font-weight: 700; text-decoration: none; white-space: nowrap; }

/* ---------- hero ---------- */
.hero {
  padding: 1.6rem 1.1rem 1.9rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.hero .lede { font-size: 1.08rem; color: var(--muted); max-width: 46rem; }
.cta { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.2rem 0 1rem; }
.btn {
  display: inline-block; padding: .85rem 1.4rem; border-radius: var(--radius);
  font-weight: 700; text-decoration: none; text-align: center; flex: 1 1 auto;
  min-width: 14rem;
}
.btn-call { background: var(--accent); color: #fff; }
.btn-quote { background: var(--brand); color: #fff; }
.btn:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; }

.trust { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; }
.trust li { font-size: .93rem; color: var(--muted); }
.trust li::before { content: "\2713"; color: var(--brand); font-weight: 700; margin-right: .35rem; }

/* ---------- nav ---------- */
.services-nav {
  padding: .8rem 1.1rem; border-bottom: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: .5rem 1.1rem; font-size: .95rem;
}

/* ---------- main ---------- */
main { max-width: var(--wrap); margin: 0 auto; padding: 1.6rem 1.1rem 2.4rem; }
main ul, main ol { padding-left: 1.3rem; }
main li { margin-bottom: .4rem; }

table { width: 100%; border-collapse: collapse; font-size: .96rem; }
th, td { text-align: left; padding: .6rem .7rem; border-bottom: 1px solid var(--line); }
th { background: var(--bg-alt); font-weight: 700; }

.faq h3 { margin-bottom: .3rem; }
.faq p { color: var(--ink); }

blockquote {
  margin: 1.2rem 0; padding: .6rem 0 .6rem 1rem;
  border-left: 3px solid var(--brand); color: var(--muted);
}

/* ---------- quote form ---------- */
.quote {
  background: var(--bg-alt); border-top: 1px solid var(--line);
  padding: 1.8rem 1.1rem 2.2rem;
}
.quote form { max-width: 34rem; }
.quote label { display: block; font-weight: 600; margin: .8rem 0 .25rem; font-size: .95rem; }
.quote input, .quote textarea {
  width: 100%; padding: .7rem .8rem; font: inherit;
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
}
.quote button {
  margin-top: 1.1rem; width: 100%; padding: .9rem 1.2rem; font: inherit; font-weight: 700;
  color: #fff; background: var(--accent); border: 0; border-radius: var(--radius); cursor: pointer;
}
.or { margin-top: .9rem; font-size: .95rem; }

/* ---------- footer ---------- */
footer { padding: 1.6rem 1.1rem 2.4rem; border-top: 1px solid var(--line); font-size: .93rem; }
footer nav { display: flex; flex-wrap: wrap; gap: .4rem 1.1rem; margin: .8rem 0; }
.nap { font-weight: 600; }
.fine { color: var(--muted); }

/* ---------- wide screens ---------- */
@media (min-width: 46rem) {
  .bar, .hero, .services-nav, .quote, footer > * { padding-left: max(1.1rem, calc((100vw - var(--wrap)) / 2)); padding-right: max(1.1rem, calc((100vw - var(--wrap)) / 2)); }
  .btn { flex: 0 0 auto; }
}

/* Honeypot field for spam filtering. Must never be visible or focusable;
   real users never see it, bots fill it and get discarded. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px;
      overflow: hidden; }
