/* Naras Property Management, shared styles */

/* Fonts are served from this site (not Google's servers), so a visitor's IP address
   is never sent to a third party just to load type. Variable fonts: one file per
   style covers every weight the site uses. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../assets/fonts/inter-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url('../assets/fonts/source-serif-4-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: italic;
  font-weight: 200 900;
  font-display: swap;
  src: url('../assets/fonts/source-serif-4-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #1B221E;
  --cream: #F6F5F1;
  --sage: #798B77;
  --light-sage: #C9D5B3;
  --tan: #AB8156;
  --muted: #5C645E;
  --muted-2: #6B726C;
  --panel: #FFFDF9;
  --line: #E2E1DA;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font: 400 16px/1.65 'Inter', Calibri, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

em { font-style: italic; color: var(--sage); }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Eyebrow label, dot + uppercase text */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--tan);
  flex: none;
}

/* Two-color divider bar, light-sage left / tan right */
.divider-bar {
  height: 4px;
  display: flex;
  width: 100%;
}
.divider-bar span { flex: 1; }
.divider-bar span:first-child { background: var(--light-sage); }
.divider-bar span:last-child { background: var(--tan); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  padding-bottom: 24px;
  flex-wrap: wrap;
}
/* Brand lockup, built from the real circle mark + live text, not the flattened PNG lockup,
   so weight/size/color stay under our control instead of whatever was baked into the export. */
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand-mark { height: 52px; width: 52px; object-fit: contain; flex: none; }
.brand-word { display: flex; flex-direction: column; gap: 4px; }
.brand-name {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600;
  font-size: 23px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.brand-rule { width: 1px; height: 34px; background: var(--line); flex: none; }
.brand-endorse {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.6;
}
.brand-endorse .accent { color: var(--tan); display: block; }
.brand-endorse .plain { color: var(--muted-2); display: block; }

.brand.on-dark .brand-name { color: var(--cream); }
.brand.on-dark .brand-sub { color: rgba(246, 245, 241, 0.55); }
.brand.on-dark .brand-rule { background: rgba(246, 245, 241, 0.22); }
.brand.on-dark .brand-endorse .plain { color: rgba(246, 245, 241, 0.5); }
.brand.on-dark .brand-endorse .accent { color: var(--light-sage); }
.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--muted);
}
.site-nav a.cta {
  color: var(--ink);
  font-weight: 650;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--ink);
  color: var(--cream);
  font-size: 14px;
  font-weight: 650;
  border: 1px solid var(--ink);
  border-radius: 0;
}
.btn:hover { background: #2a332d; }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

/* Hero */
.hero {
  padding: 96px 0 72px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: end;
}
.hero h1 {
  font-size: clamp(38px, 5.2vw, 66px);
  line-height: 1.04;
}
.hero .lede {
  margin: 28px 0 0;
  max-width: 32em;
  color: var(--muted);
  font-size: 17px;
}
.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.hero-side {
  border-left: 1px solid var(--line);
  padding-left: 28px;
  color: var(--muted);
  font-size: 14.5px;
}
.hero-side strong { display: block; color: var(--ink); font-size: 15px; margin-bottom: 8px; }

/* Credentials strip */
.credentials {
  background: var(--ink);
  color: var(--cream);
}
.credentials .wrap {
  padding: 44px 40px;
}
.credentials .eyebrow { color: var(--light-sage); }
.credentials .eyebrow::before { background: var(--tan); }
.cred-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(246,245,241,0.16);
}
.cred-grid dl {
  margin: 0;
  padding: 26px 28px;
  border-right: 1px solid rgba(246,245,241,0.16);
}
.cred-grid dl:first-child { padding-left: 0; }
.cred-grid dl:last-child { border-right: 0; padding-right: 0; }
.cred-grid dt {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 20px;
  margin-bottom: 6px;
}
.cred-grid dd {
  margin: 0;
  font-size: 13px;
  color: rgba(246,245,241,0.66);
  line-height: 1.5;
}
.cred-grid dd.cred-more { margin-top: 12px; }
.cred-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--light-sage);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.cred-link:hover, .cred-link:focus-visible { color: var(--cream); }
.cred-foot { margin: 18px 0 0; font-size: 13px; color: rgba(246,245,241,0.66); }
.cred-foot a { color: var(--light-sage); text-decoration: underline; text-underline-offset: 3px; }
.cred-foot a:hover, .cred-foot a:focus-visible { color: var(--cream); }

/* Section spacing */
section { padding: 96px 0; }
section.tight { padding: 72px 0; }

/* Why section, plain numbered statements */
.why-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.why-head h2 { font-size: clamp(30px, 3.6vw, 46px); line-height: 1.05; }
.why-head p { margin: 0; color: var(--muted); max-width: 28em; }

.why-list { border-top: 1px solid var(--line); }
.why-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.why-item b {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: 24px;
  color: var(--tan);
  font-weight: 400;
}
.why-item p { margin: 0; max-width: 42em; font-size: 16.5px; }

/* Properties */
.prop-head {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 20px;
}
.prop-head h2 { font-size: clamp(30px, 3.6vw, 46px); line-height: 1.05; }
.prop-note {
  margin: 0 0 48px;
  padding: 16px 20px;
  background: var(--panel);
  border-left: 2px solid var(--tan);
  color: var(--muted);
  font-size: 14.5px;
  max-width: 60em;
}
.prop-link {
  font-size: 13.5px;
  font-weight: 650;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

/* Properties, one featured listing plus a compact list, rather than a uniform grid.
   Keeps an odd number of properties from reading as "one card short." */
.prop-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.prop-featured { background: var(--panel); display: flex; flex-direction: column; }
.prop-featured img { width: 100%; aspect-ratio: 16/11; object-fit: cover; }
.prop-featured-body {
  padding: 30px 34px 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.prop-featured-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tan);
}
.prop-featured-tag::before { content: ""; width: 6px; height: 6px; background: var(--tan); flex: none; }
.prop-featured-body h3 { font-size: 23px; line-height: 1.15; }
.prop-featured-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: var(--muted);
  font-size: 14px;
}
.prop-featured-body ul li { position: relative; padding-left: 17px; }
.prop-featured-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--tan);
}
.prop-featured-body .prop-link { margin-top: auto; padding-top: 6px; }

.prop-list { background: var(--line); display: flex; flex-direction: column; gap: 1px; }
.prop-row {
  background: var(--panel);
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  padding: 18px 20px;
  align-items: center;
  flex: 1;
}
.prop-row img { width: 88px; height: 88px; object-fit: cover; }
.prop-row h4 {
  margin: 0 0 6px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.25;
}
.prop-row p { margin: 0 0 8px; font-size: 12.5px; color: var(--muted); }
.prop-row .prop-link { font-size: 12px; }

/* Stats */
.stat-block {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.stat-figure {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-caption { color: var(--muted-2); font-size: 13px; max-width: 22em; }
.stat-list-full {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
}

/* Pricing */
.pricing-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.pricing-intro h2 { font-size: clamp(30px, 3.6vw, 46px); line-height: 1.05; }
.pricing-intro p { margin: 20px 0 0; color: var(--muted); max-width: 32em; }
.pricing-figure { border-left: 2px solid var(--tan); padding-left: 32px; }
.pricing-number {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(64px, 9vw, 104px);
  line-height: 0.9;
  color: var(--ink);
}
.pricing-caption { margin: 14px 0 0; color: var(--muted); font-size: 14.5px; max-width: 24em; }

/* Form */
.form-section { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.form-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}
.form-head h2 { font-size: clamp(30px, 3.6vw, 46px); line-height: 1.05; }
.form-head p { margin: 0; color: var(--muted); max-width: 30em; align-self: end; }

form.landlord-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  max-width: 900px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 11.5px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.field input:not([type="radio"]):not([type="checkbox"]),
.field select {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font: inherit;
  font-size: 15px;
  padding: 10px 2px;
  color: var(--ink);
  border-radius: 0;
}
.field input:not([type="radio"]):not([type="checkbox"]):focus-visible,
.field select:focus-visible {
  outline: none;
  border-bottom-color: var(--ink);
  box-shadow: 0 1px 0 0 var(--ink);
}
.field input[type="radio"]:focus-visible,
.field input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--tan);
  outline-offset: 3px;
}
.radio-row { display: flex; gap: 24px; padding-top: 6px; }
.radio-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
}
.form-submit {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
}
.form-note { font-size: 13px; color: var(--muted-2); }
.form-status { font-size: 13.5px; margin-top: 14px; grid-column: 1/-1; }
.form-status.success { color: var(--sage); }
.form-status.error { color: #a5443a; }

/* FAQ */
.faq-list { border-top: 1px solid var(--line); max-width: 900px; }
.faq-item { border-bottom: 1px solid var(--line); padding: 26px 0; }
.faq-item h3 { font-size: 17px; margin-bottom: 10px; font-family: 'Inter', sans-serif; font-weight: 650; }
.faq-item p { margin: 0; color: var(--muted); max-width: 44em; }

/* Contact page specifics */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-list { margin: 0; border-top: 1px solid var(--line); }
.contact-list div { padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-list dt {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 8px;
}
.contact-list dd { margin: 0; font-size: 17px; }
.contact-list a.link { border-bottom: 1px solid var(--ink); padding-bottom: 2px; }

/* Footer */
footer.site-footer {
  background: var(--ink);
  color: rgba(246,245,241,0.7);
  padding: 64px 0 36px;
  font-size: 13.5px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(246,245,241,0.14);
}
.footer-top .brand { margin-bottom: 18px; }
.footer-top p { margin: 0; max-width: 30em; color: rgba(246,245,241,0.5); }
.footer-col h4 {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246,245,241,0.4);
  margin: 0 0 16px;
}
.footer-col a, .footer-col p { display: block; color: rgba(246,245,241,0.75); margin: 0 0 10px; }
.footer-col a:hover { color: var(--cream); }
.admin-link {
  font-size: 11px;
  color: rgba(246,245,241,0.28);
  order: -1;
}
.admin-link:hover { color: rgba(246,245,241,0.6); }
.footer-bottom {
  padding-top: 28px;
  color: rgba(246,245,241,0.42);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* Small button (admin) and form privacy note */
.btn-sm { padding: 10px 16px; font-size: 13px; gap: 8px; }
.form-privacy { grid-column: 1 / -1; margin: 0; max-width: 46em; font-size: 13px; color: var(--muted-2); }
.form-privacy a { color: var(--ink); border-bottom: 1px solid var(--ink); }

/* Policy pages */
.legal-hero { padding: 72px 0 28px; }
.legal-hero h1 { font-size: clamp(36px, 5vw, 56px); line-height: 1.05; }
.legal-meta { margin: 22px 0 0; color: var(--muted-2); font-size: 13px; }
.legal { padding: 24px 0 96px; }
.legal-grid { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 64px; align-items: start; }
.legal-toc { position: sticky; top: 118px; font-size: 13.5px; border-top: 1px solid var(--line); }
.legal-toc a { display: block; padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.legal-toc a:hover { color: var(--ink); }
.legal-body { max-width: 44rem; }
.legal-body h2 { font-size: 24px; line-height: 1.2; margin: 46px 0 14px; scroll-margin-top: 118px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 650; margin: 22px 0 6px; letter-spacing: 0; }
.legal-body p { margin: 0 0 14px; }
.legal-body ul { margin: 0 0 14px; padding-left: 20px; }
.legal-body li { margin: 6px 0; }
.legal-body a { border-bottom: 1px solid var(--ink); }
.table-wrap { overflow-x: auto; margin: 18px 0; }
.legal-table { width: 100%; min-width: 520px; border-collapse: collapse; font-size: 14px; }
.legal-table th, .legal-table td { text-align: left; padding: 12px 16px 12px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.legal-table th { font-size: 11px; font-weight: 650; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); border-top: 1px solid var(--line); }
.legal-note { margin: 18px 0; padding: 16px 20px; background: var(--panel); border-left: 2px solid var(--tan); font-size: 14.5px; }
@media (max-width: 860px) {
  .legal-grid { grid-template-columns: 1fr; gap: 28px; }
  .legal-toc { position: static; }
}

/* Enquiry-received dialog */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 34, 30, 0.74);
  animation: modal-fade 0.25s ease both;
}
.modal-panel {
  position: relative;
  width: 100%;
  max-width: 580px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--panel);
  border: 1px solid var(--ink);
  outline: none;
  animation: modal-rise 0.38s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.modal-panel .divider-bar { height: 6px; }
.modal-close {
  position: absolute;
  top: 22px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.modal-close:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.modal-body { padding: 44px 44px 40px; }
.modal-tick { display: block; width: 56px; height: 56px; margin-bottom: 26px; }
.modal-tick circle { stroke: var(--ink); }
.modal-tick path { stroke: var(--tan); }
.modal-body h2 { font-size: clamp(28px, 4.4vw, 38px); line-height: 1.08; }
.modal-lede { margin: 18px 0 0; color: var(--muted); max-width: 30em; }
.modal-steps { list-style: none; margin: 30px 0 0; padding: 0; border-top: 1px solid var(--line); }
.modal-steps li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.modal-steps b {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: var(--tan);
}
.modal-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px; margin-top: 30px; }
body.modal-open { overflow: hidden; }
@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .modal-backdrop, .modal-panel { animation: none; }
}
@media (max-width: 560px) {
  .modal { align-items: flex-end; padding: 12px; }
  .modal-body { padding: 34px 24px 28px; }
  .modal-actions .btn { width: 100%; justify-content: center; }
}

/* Two ways to work with us */
.route-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.route-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 3px solid var(--sage);
  padding: 32px 34px 34px;
  display: flex;
  flex-direction: column;
}
.route-card:nth-child(2) { border-top-color: var(--tan); }
.route-tag {
  margin: 0 0 6px;
  font-size: 10.5px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.route-card h3 { font-size: 26px; line-height: 1.15; margin: 0 0 18px; }
.route-figure {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(54px, 7vw, 84px);
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 18px;
}
.route-lede { margin: 0 0 20px; color: var(--muted); font-size: 15px; line-height: 1.6; max-width: 30em; }
.route-list {
  list-style: none;
  margin: auto 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}
.route-list li {
  position: relative;
  padding: 6px 0 6px 20px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}
.route-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 1.5px;
  background: var(--tan);
}
.route-card:nth-child(2) .route-list li::before { background: var(--sage); }
.route-foot { margin: 22px 0 0; font-size: 13.5px; color: var(--muted); }
.route-card:nth-child(2) { transition-delay: 0.1s; }

/* Further reading links */
.ref-list { border-top: 1px solid var(--line); }
.ref-item {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr auto;
  gap: 8px 32px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}
.ref-title { font: 600 18px/1.3 'Source Serif 4', Georgia, serif; color: var(--ink); }
.ref-desc { font-size: 14px; color: var(--muted); line-height: 1.5; }
.ref-src { font-size: 12px; font-weight: 600; color: var(--muted-2); white-space: nowrap; }
.ref-item:hover .ref-title, .ref-item:focus-visible .ref-title { text-decoration: underline; text-underline-offset: 4px; }
.ref-item:hover .ref-src, .ref-item:focus-visible .ref-src { color: var(--ink); }
@media (max-width: 860px) {
  .route-grid { grid-template-columns: 1fr; }
  .route-card { padding: 26px 24px 28px; }
  .ref-item { grid-template-columns: 1fr; gap: 4px; }
}

/* How it works, five-step rail */
.how-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0 22px;
  position: relative;
}
.how-rail::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 27px;
  right: calc((100% - 110px) / 6 - 27px);
  border-top: 1.5px dashed var(--sage);
  opacity: 0.55;
}
.how-step { position: relative; padding-top: 0; }
.how-node {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  color: var(--ink);
  font: italic 400 24px/1 'Source Serif 4', Georgia, serif;
}
.how-step.is-you .how-node { background: var(--ink); color: var(--cream); }
.how-who {
  display: inline-block;
  margin: 22px 0 10px;
  font-size: 10.5px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}
.how-step.is-you .how-who { color: var(--tan); }
.how-step h3 {
  font-size: 18px;
  line-height: 1.2;
  margin: 0 0 10px;
}
.how-step p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--muted); max-width: 20em; }
.how-step:nth-child(2) { transition-delay: 0.08s; }
.how-step:nth-child(3) { transition-delay: 0.16s; }
.how-step:nth-child(4) { transition-delay: 0.24s; }
.how-step:nth-child(5) { transition-delay: 0.32s; }
.how-step:nth-child(6) { transition-delay: 0.4s; }
.how-foot {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.how-foot p { margin: 0; color: var(--muted); font-size: 14.5px; }
.how-step:not(.is-you) .how-node { background: var(--light-sage); }
.how-legend { display: flex; gap: 10px; }
.how-legend button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  font: 500 12.5px/1 'Inter', sans-serif;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.how-legend button:hover { border-color: var(--ink); color: var(--ink); }
.how-legend button[aria-pressed="true"] { border-color: var(--ink); color: var(--ink); background: var(--panel); }
.how-legend i { width: 12px; height: 12px; border-radius: 50%; border: 1.5px solid var(--ink); display: inline-block; }
.how-legend i.you { background: var(--ink); }
.how-legend i.us { background: var(--light-sage); }
.how-rail .how-step.reveal { transition: opacity 0.35s ease, transform 0.6s ease; }
.how-rail[data-focus="you"] .how-step:not(.is-you).reveal,
.how-rail[data-focus="us"] .how-step.is-you.reveal { opacity: 0.25; }

@media (max-width: 1000px) {
  .how-rail { grid-template-columns: 1fr; gap: 0; }
  .how-rail::before { display: none; }
  .how-step:not(:last-child)::before { content: ''; position: absolute; left: 27px; top: 54px; bottom: 0; border-left: 1.5px dashed var(--sage); opacity: 0.55; }
  .how-step { padding: 0 0 36px 78px; min-height: 54px; }
  .how-step:last-child { padding-bottom: 0; }
  .how-node { position: absolute; left: 0; top: 0; }
  .how-who { margin: 2px 0 6px; }
  .how-step p { max-width: none; }
  .how-step:nth-child(n) { transition-delay: 0s; }
}
@media (max-width: 560px) {
  .stat-list-full { grid-template-columns: 1fr; }
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 860px) {
  .wrap { padding: 0 22px; }
  .brand-mark { height: 40px; width: 40px; }
  .brand-name { font-size: 19px; }
  .brand-rule, .brand-endorse { display: none; }
  .site-nav { gap: 18px; font-size: 13px; }
  .hero-inner, .why-head, .prop-head, .pricing-wrap, .form-head, .contact-grid { grid-template-columns: 1fr; }
  .pricing-figure { border-left: 0; border-top: 2px solid var(--tan); padding-left: 0; padding-top: 24px; margin-top: 8px; }
  .cred-grid { grid-template-columns: 1fr 1fr; }
  .cred-grid dl { border-right: 0; border-bottom: 1px solid rgba(246,245,241,0.16); padding: 22px 0; }
  .prop-layout { grid-template-columns: 1fr; }
  .prop-row { grid-template-columns: 64px 1fr; padding: 14px 16px; }
  .prop-row img { width: 64px; height: 64px; }
  form.landlord-form { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  section { padding: 64px 0; }
  .hero { padding: 56px 0 48px; }
}
