/* ============ Tokens ============ */
:root {
  --teal: #2b7387;
  --teal-dark: #1f5a6b;
  --teal-tint: #e3eef1;
  --navy: #17395c;
  --ink: #26333d;
  --gray: #6d7a83;
  --line: #d7e0e4;
  --paper: #f6f9fa;
  --white: #ffffff;

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  --container: 1080px;
  --radius: 6px;
}

/* ============ Base ============ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--teal-dark); }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 72px 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
  margin: 0 0 0.9em;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover { background: var(--teal-dark); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-dark); }
.btn-block { width: 100%; }

/* ============ Header ============ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: auto;
}
.brand-mark { width: 38px; height: auto; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--navy);
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gray);
  margin-top: 2px;
}
.site-nav { display: flex; gap: 22px; }
.site-nav a {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--ink);
}
.site-nav a { white-space: nowrap; }
.site-nav a:hover { color: var(--teal-dark); }
@media (max-width: 900px) {
  .site-nav { display: none; }
}
@media (max-width: 420px) {
  .header-cta { font-size: 0.95rem; padding: 9px 14px; }
  .brand-name { font-size: 1.05rem; }
}

/* ============ Hero ============ */
.hero {
  background: var(--white);
  padding: 88px 0 72px;
  border-bottom: 1px solid var(--line);
}
.hero-sub {
  max-width: 620px;
  font-size: 1.1875rem;
  color: var(--ink);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 0;
}

/* The day timeline — signature element */
.dayline { margin-top: 56px; }
.dayline-track {
  display: flex;
  height: 76px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.dayline-seg {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 10px;
}
.seg-test {
  flex: 3;
  background: var(--teal);
  color: var(--white);
}
.seg-test .seg-label {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  line-height: 1.15;
}
.seg-open {
  flex: 8;
  background: var(--teal-tint);
  color: var(--navy);
  border-left: 1px dashed var(--teal);
  border-right: 1px dashed var(--teal);
}
.seg-open .seg-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}
/* Hour labels sit at the segment boundaries: 6AM-8PM is 14 hours,
   segments are flexed 3:8:3, so boundaries fall at 3/14 and 11/14 */
.dayline-hours {
  position: relative;
  height: 1.4em;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gray);
}
.dayline-hours span { position: absolute; top: 0; }
.dayline-hours span:nth-child(1) { left: 0; }
.dayline-hours span:nth-child(2) { left: calc(3 / 14 * 100%); transform: translateX(-50%); }
.dayline-hours span:nth-child(3) { left: calc(11 / 14 * 100%); transform: translateX(-50%); }
.dayline-hours span:nth-child(4) { right: 0; }
@media (max-width: 640px) {
  .seg-open .seg-label { font-size: 0.66rem; }
  .seg-test .seg-label { font-size: 0.8rem; }
}

/* ============ Trust strip ============ */
.trust {
  background: var(--navy);
  padding: 40px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trust-grid { grid-template-columns: 1fr; gap: 20px; } }
.trust-item p {
  color: var(--white);
  font-size: 0.98rem;
  line-height: 1.45;
  margin: 6px 0 0;
}
.trust-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9fc2cd;
}

/* ============ Report card (compliance summary) ============ */
.report-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 26px 26px 22px;
  font-family: var(--font-mono);
}
.report-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.85rem;
}
.report-row span { color: var(--gray); flex: none; }
.report-row strong { color: var(--navy); font-weight: 500; text-align: right; }
.report-stamp {
  margin-top: 18px;
  display: inline-block;
  border: 2px solid var(--teal);
  color: var(--teal-dark);
  border-radius: var(--radius);
  padding: 6px 12px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transform: rotate(-1.5deg);
}

/* ============ Sections ============ */
.why { background: var(--paper); }

.scheduling {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process { background: var(--paper); }
.steps {
  list-style: none;
  counter-reset: step;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }
.steps li {
  counter-increment: step;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  position: relative;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--teal);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}
.steps h3 { margin-bottom: 0.4em; }
.steps p { font-size: 0.95rem; color: var(--ink); }

/* ============ About ============ */
.about { background: var(--white); border-top: 1px solid var(--line); }
.about .two-col { grid-template-columns: 2fr 3fr; }
@media (max-width: 820px) { .about .two-col { grid-template-columns: 1fr; } }
.about-photo { margin: 0; }
.photo-placeholder {
  aspect-ratio: 4 / 5;
  background: var(--teal-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--teal);
}
.photo-placeholder svg { width: 56px; opacity: 0.5; }
.photo-placeholder span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.about-photo figcaption {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 10px;
  letter-spacing: 0.04em;
}
.cred-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.cred-list li {
  padding: 10px 0 10px 26px;
  border-bottom: 1px dashed var(--line);
  position: relative;
  font-size: 0.98rem;
}
.cred-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 1.05em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
}

/* ============ Landlords ============ */
.landlords { background: var(--navy); }
.landlords .eyebrow { color: #9fc2cd; }
.landlords h2 { color: var(--white); }
.landlord-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}
@media (max-width: 900px) { .landlord-grid { grid-template-columns: 1fr; } }
.landlord-item {
  border-left: 3px solid var(--teal);
  padding-left: 20px;
}
.landlord-item h3 { color: var(--white); }
.landlord-item p { color: #c6d4de; font-size: 0.98rem; }

/* ============ FAQ ============ */
.faq { background: var(--paper); }
.faq-list { margin-top: 32px; max-width: 760px; }
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
}
.faq-list summary {
  cursor: pointer;
  padding: 16px 20px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy);
  list-style-position: outside;
}
.faq-list details[open] summary { border-bottom: 1px dashed var(--line); }
.faq-list details p { padding: 14px 20px 18px; margin: 0; font-size: 0.98rem; }

/* ============ Contact ============ */
.contact { background: var(--white); border-top: 1px solid var(--line); }
.contact-hours { margin-top: 28px; }

.lead-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
}
.form-row { margin-bottom: 16px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}
@media (max-width: 540px) { .form-grid { grid-template-columns: 1fr; } }
.lead-form label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray);
  margin-bottom: 6px;
}
.req { color: var(--teal); }
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43, 115, 135, 0.18);
}
.lead-form textarea { resize: vertical; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  margin: 14px 0 0;
  font-size: 0.95rem;
  min-height: 1.4em;
}
.form-status.ok { color: var(--teal-dark); font-weight: 600; }
.form-status.err { color: #a33a2a; font-weight: 600; }

/* ============ Footer ============ */
.site-footer {
  background: var(--navy);
  color: #c6d4de;
  padding: 48px 0 28px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; gap: 16px; align-items: flex-start; }
.footer-brand .brand-mark { width: 40px; }
.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 4px;
}
.footer-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin: 0;
}
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a {
  color: #c6d4de;
  text-decoration: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-nav a:hover { color: var(--white); }
.footer-legal {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-legal p {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  margin: 0;
}

