/* ============================================================
   USALinda.com — site styles
   Layers on top of colors_and_type.css.
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--ll-cream);
  color: var(--ll-ink);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

:root {
  --site-max: 1280px;
  --gutter: 64px;
}

/* ---------- layout primitives ---------- */
.wrap {
  width: 100%;
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: 96px 0; }
section.tight { padding: 64px 0; }
section.alt { background: var(--ll-cream-warm); }
section.taupe { background: var(--ll-taupe); }
section.navy { background: var(--ll-navy); color: var(--ll-cream); }
section.navy h1, section.navy h2, section.navy h3 { color: var(--ll-cream); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ll-red);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--ll-red);
}
.eyebrow.naked::before { display: none; }

.sec-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.005em;
  color: var(--ll-navy);
  margin: 14px 0 0;
}
.sec-title em { font-style: italic; font-weight: 400; color: var(--ll-ink-2); }
.sec-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: var(--ll-ink-2);
  max-width: 56ch;
  margin: 18px 0 0;
}
section.navy .sec-sub { color: var(--ll-taupe); }

.sec-head {
  border-top: 2px solid var(--ll-navy);
  padding-top: 18px;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
}
section.navy .sec-head { border-top-color: var(--ll-taupe); }
.sec-head .right { font-family: var(--font-body); font-size: 14px; color: var(--ll-ink-3); }
section.navy .sec-head .right { color: var(--ll-taupe); }

/* ---------- nav ---------- */
.nav {
  background: var(--ll-cream);
  border-bottom: 1px solid var(--ll-line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px var(--gutter);
  max-width: var(--site-max);
  margin: 0 auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand .nav-seal {
  width: 56px; height: 56px;
  flex: 0 0 56px;
}
.nav-brand .nav-wm {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 30px;
  line-height: 1;
  color: var(--ll-navy);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.nav-brand .nav-wm .u { color: var(--ll-red); }
.nav-brand .nav-wm .s { color: var(--ll-cream); -webkit-text-stroke: 1.2px var(--ll-navy); }
.nav-brand .nav-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--ll-ink-3);
  letter-spacing: 0;
  margin-top: 3px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: center;
  min-width: 0;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--ll-ink-2);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 8px 0;
  position: relative;
  transition: color 140ms ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ll-red); }
.nav-links a.active { color: var(--ll-navy); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--ll-red);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-cta .btn {
  white-space: nowrap;
  padding: 10px 16px;
  font-size: 13px;
  border-radius: 4px;
}
.nav-cta .btn .ico {
  width: 20px;
  height: 20px;
}
.nav-phone {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--ll-navy);
  text-decoration: none;
  white-space: nowrap;
  display: none;
}
.nav-phone .lab {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ll-red);
  margin-bottom: 2px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 2px;
  border: 1.5px solid transparent;
  transition: transform 140ms ease, background 140ms ease, color 140ms ease, border-color 140ms ease;
  cursor: pointer;
}
.btn--primary {
  background: var(--ll-navy);
  color: var(--ll-cream);
  border-color: var(--ll-navy);
}
.btn--primary:hover { background: var(--ll-navy-deep); border-color: var(--ll-navy-deep); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--ll-navy);
  border-color: var(--ll-navy);
}
.btn--ghost:hover { background: var(--ll-navy); color: var(--ll-cream); }
.btn--ghost-cream {
  background: transparent;
  color: var(--ll-cream);
  border-color: var(--ll-cream);
}
.btn--ghost-cream:hover { background: var(--ll-cream); color: var(--ll-navy); }
.btn--accent {
  background: var(--ll-red);
  color: var(--ll-cream);
  border-color: var(--ll-red);
}
.btn--accent:hover { background: var(--ll-red-deep); border-color: var(--ll-red-deep); }
.btn .ico { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.75; }
.btn--lg { padding: 18px 32px; font-size: 17px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--ll-cream);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 80px var(--gutter) 96px;
  max-width: var(--site-max);
  margin: 0 auto;
}
.hero-eyebrow { margin-bottom: 16px; }
.hero-logo { display: block; width: 110px; height: auto; margin-bottom: 20px; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(56px, 6vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.012em;
  color: var(--ll-navy);
  margin: 0 0 24px;
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--ll-ink-2); }
.hero-lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: var(--ll-ink-2);
  max-width: 30ch;
  margin: 0 0 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-figure {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--ll-taupe);
  overflow: hidden;
}
.hero-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-figure .hero-seal {
  position: absolute;
  bottom: -36px; left: -36px;
  width: 168px; height: 168px;
  background: var(--ll-cream);
  border-radius: 999px;
  padding: 14px;
  box-shadow: var(--sh-2);
}
.hero-figure .hero-seal img { width: 100%; }

/* ---------- inner page hero (smaller) ---------- */
.page-hero {
  background: var(--ll-cream);
  border-bottom: 1px solid var(--ll-line);
}
.page-hero-inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 28px var(--gutter) 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 48px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.012em;
  color: var(--ll-navy);
  margin: 10px 0 0;
}
.page-hero h1 em { font-style: italic; font-weight: 400; color: var(--ll-ink-2); }
.page-hero .breadcrumbs {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ll-ink-3);
}
.page-hero .breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.page-hero .breadcrumbs li { display: inline; }
.page-hero .breadcrumbs li + li::before { content: " · "; }
.page-hero .breadcrumbs span[aria-current] { color: var(--ll-ink-3); }
.page-hero .breadcrumbs a { color: var(--ll-ink-3); text-decoration: none; }
.page-hero .breadcrumbs a:hover { color: var(--ll-red); }
.page-hero .deck {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ll-ink-2);
  max-width: 50ch;
  margin: 10px 0 0;
}
.page-hero-seal {
  width: 130px; height: 130px;
  background: var(--ll-cream);
  border: 1px solid var(--ll-line);
  border-radius: 999px;
  padding: 14px;
}
.page-hero-seal img { width: 100%; }

/* ---------- photo strip (static, about page) ---------- */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 380px;
  overflow: hidden;
}
.photo-strip img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .photo-strip { grid-template-columns: 1fr; height: auto; }
  .photo-strip img { height: 280px; }
}

/* ---------- photo strip carousel (home page) ---------- */
.psc { overflow: hidden; height: 480px; position: relative; }
.psc-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  border-radius: 999px;
  border: none;
  background: rgba(0,0,0,0.4);
  color: #FFFCF7;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 140ms;
}
.psc-arrow:hover { background: rgba(0,0,0,0.7); }
.psc-arrow svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.psc-prev { left: 16px; }
.psc-next { right: 16px; }
.psc-track {
  display: flex;
  height: 100%;
  will-change: transform;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.psc-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 100%;
}
.psc-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .psc { height: auto; }
  .psc-slide { grid-template-columns: 1fr; }
  .psc-slide img { height: 280px; }
}

/* ---------- stat strip ---------- */
.stat-strip {
  background: var(--ll-navy);
  color: var(--ll-cream);
}
.stat-strip-inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 42px var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-strip .stat {
  padding: 0 32px;
  border-left: 1px solid rgba(255,252,247,0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stat-strip .stat:first-child { border-left: 0; padding-left: 0; }
.stat-strip .stat .num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 52px;
  line-height: 1;
  color: var(--ll-cream);
  letter-spacing: -0.01em;
}
.stat-strip .stat .num .sm { font-size: 28px; color: var(--ll-taupe); margin-left: 2px; }
.stat-strip .stat .lab {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ll-taupe);
  margin-top: 10px;
}

/* ---------- listing card ---------- */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.listing {
  background: var(--ll-white);
  border: 1px solid var(--ll-line);
  overflow: hidden;
  position: relative;
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}
.listing:hover { transform: translateY(-2px); box-shadow: var(--sh-3); }
.listing .ph {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.listing .ph img { width: 100%; height: 100%; object-fit: cover; }
.listing .status {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--ll-navy);
  color: var(--ll-cream);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
}
.listing .status.red { background: var(--ll-red); }
.listing .price {
  position: absolute;
  bottom: 14px; right: 14px;
  background: var(--ll-cream);
  color: var(--ll-navy);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  padding: 6px 14px;
  letter-spacing: -0.005em;
}
.listing .body { padding: 22px 24px 24px; }
.listing .addr {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ll-navy);
  margin: 0 0 4px;
  letter-spacing: -0.005em;
}
.listing .city {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ll-ink-3);
  margin: 0 0 16px;
}
.listing .meta {
  display: flex;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--ll-line);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ll-ink-2);
}
.listing .meta b { color: var(--ll-navy); font-weight: 700; font-size: 16px; font-family: var(--font-display); }

/* ---------- photo placeholder (for pending imagery) ---------- */
.ph-placeholder {
  background:
    repeating-linear-gradient(135deg,
      var(--ll-taupe-soft) 0,
      var(--ll-taupe-soft) 12px,
      var(--ll-cream-warm) 12px,
      var(--ll-cream-warm) 24px);
  position: relative;
  color: var(--ll-ink-3);
  display: grid;
  place-items: center;
}
.ph-placeholder::before {
  content: attr(data-label);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--ll-cream);
  color: var(--ll-ink-2);
  border: 1px solid var(--ll-line);
  padding: 8px 14px;
  text-align: center;
  max-width: 80%;
}

/* ---------- split paths (buyers / sellers) ---------- */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.split-card {
  background: var(--ll-cream);
  border: 1px solid var(--ll-line);
  overflow: hidden;
  display: grid;
  grid-template-rows: 240px auto;
}
.split-card.dark {
  background: var(--ll-navy);
  color: var(--ll-cream);
}
.split-card.dark h3 { color: var(--ll-cream); }
.split-card.dark p { color: var(--ll-taupe); }
.split-card .ph-placeholder { width: 100%; height: 100%; }
.split-card .body { padding: 36px 36px 36px; display: flex; flex-direction: column; }
.split-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--ll-navy);
  margin: 0 0 10px;
}
.split-card h3 em { font-style: italic; font-weight: 400; }
.split-card .lead {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ll-ink-2);
  margin: 0 0 22px;
  max-width: 42ch;
}
.split-card.dark .lead { color: var(--ll-taupe); }
.split-card .checkrow {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--ll-line);
}
.split-card.dark .checkrow { border-top-color: rgba(255,252,247,0.18); }
.split-card .checkrow span {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ll-ink-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.split-card.dark .checkrow span { color: var(--ll-taupe); }
.split-card .checkrow span::before { content: "★"; color: var(--ll-red); font-size: 13px; }

/* ---------- testimonial slider ---------- */
.ts-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.ts-viewport { overflow: hidden; flex: 1; }
.ts-track {
  display: flex;
  transition: transform 420ms cubic-bezier(0.4, 0, 0.2, 1);
}
.ts-slide { flex-shrink: 0; width: 100%; display: flex; flex-direction: column; }
.ts-slide .testimonial { flex: 1; }
.ts-arrow {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1.5px solid var(--ll-line);
  background: var(--ll-cream);
  color: var(--ll-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 140ms, border-color 140ms, color 140ms;
}
.ts-arrow svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ts-arrow:hover { background: var(--ll-navy); border-color: var(--ll-navy); color: var(--ll-cream); }
.ts-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}
.ts-dot {
  height: 8px; width: 8px;
  border-radius: 999px;
  border: none;
  background: var(--ll-taupe);
  cursor: pointer;
  padding: 0;
  transition: background 200ms, width 200ms;
}
.ts-dot.active { background: var(--ll-navy); width: 24px; }
.ts-dark .ts-arrow { border-color: rgba(255,252,247,0.25); background: rgba(255,252,247,0.08); color: var(--ll-cream); }
.ts-dark .ts-arrow:hover { background: var(--ll-cream); border-color: var(--ll-cream); color: var(--ll-navy); }
.ts-dark-dots .ts-dot { background: rgba(255,252,247,0.3); }
.ts-dark-dots .ts-dot.active { background: var(--ll-cream); }
.testimonial {
  background: var(--ll-cream);
  border: 1px solid var(--ll-line);
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
}
.testimonial.alt { background: var(--ll-cream-warm); }
.testimonial .stars {
  color: var(--ll-red);
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 16px;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: var(--ll-ink);
  margin: 0 0 24px;
  flex-grow: 1;
}
.testimonial blockquote::before { content: "“"; color: var(--ll-red); font-size: 36px; line-height: 0; vertical-align: -0.2em; margin-right: 4px; }
.testimonial .attr {
  border-top: 1px solid var(--ll-line);
  padding-top: 14px;
}
.testimonial .name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ll-navy);
}
.testimonial .role {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ll-ink-3);
  margin-top: 2px;
}

/* ---------- community card ---------- */
.community-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.community {
  background: var(--ll-cream);
  border: 1px solid var(--ll-line);
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 260px 1fr;
  height: 365px;
  transition: box-shadow 240ms var(--ease-out), transform 240ms var(--ease-out);
}
.community:hover { box-shadow: var(--sh-2); transform: translateY(-2px); }
.community .ph { position: relative; }
.community .ph img { width: 100%; height: 100%; object-fit: cover; }
.community .ph .state-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--ll-cream);
  color: var(--ll-navy);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
}
.community .body { padding: 16px 20px; display: flex; flex-direction: column; overflow: hidden; }
.community h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ll-navy);
  margin: 0 0 2px;
}
.community .sub {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ll-ink-3);
  margin-bottom: 8px;
}
.community .blurb {
  display: none;
}
.community .stats {
  display: flex;
  gap: 18px;
  border-top: 1px solid var(--ll-line);
  padding-top: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ll-ink-3);
}
.community .stats b {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ll-navy);
  font-weight: 600;
  margin-right: 4px;
}

/* ---------- community meta (best-for / schools / commute) ---------- */
.community .cm {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--ll-line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.community .cm-row {
  display: flex;
  gap: 6px;
  align-items: baseline;
  line-height: 1.3;
}
.community .cm-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ll-red);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 54px;
}
.community .cm-val {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ll-ink-2);
}
.community .commute-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ll-navy);
  color: var(--ll-cream);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-top: 4px;
  align-self: flex-start;
}
.community .commute-pill svg {
  width: 13px; height: 13px;
  stroke: var(--ll-cream);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ---------- community card extensions ---------- */
.lifestyle-tag {
  display: inline-block;
  background: var(--ll-navy);
  color: var(--ll-cream);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 10px;
  border-radius: var(--r-pill);
}
.cm-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ll-line);
  border: 1px solid var(--ll-line);
  margin-bottom: 8px;
}
.cm-stat {
  background: var(--ll-cream);
  padding: 5px 8px;
  text-align: center;
}
.cm-stat-val {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--ll-navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.cm-stat-lbl {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ll-ink-3);
  margin-top: 2px;
}
.cm-stat-note {
  color: var(--ll-red);
  font-size: 11px;
  cursor: help;
  margin-left: 1px;
}
.walk-score { margin-bottom: 8px; }
.walk-score-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 3px;
}
.walk-score-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ll-ink-3);
}
.walk-score-num {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ll-navy);
}
.walk-score-track {
  height: 5px;
  background: var(--ll-line);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 4px;
}
.walk-score-fill {
  height: 100%;
  border-radius: 3px;
}
.walk-low  { background: #a0a49a; }
.walk-medium { background: #c4963a; }
.walk-good { background: #4a8c5c; }
.walk-score-desc {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--ll-ink-3);
}

/* ---------- contact CTA band ---------- */
.cta-band {
  background: var(--ll-navy);
  color: var(--ll-cream);
  position: relative;
}
.cta-band-inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 80px var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  color: var(--ll-cream);
  margin: 0 0 18px;
  letter-spacing: -0.012em;
}
.cta-band h2 em { font-style: italic; font-weight: 400; color: var(--ll-taupe); }
.cta-band p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ll-taupe);
  max-width: 44ch;
  margin: 0 0 32px;
}
.cta-band .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band .right-seal {
  width: 220px; height: 220px;
  display: grid; place-items: center;
  justify-self: end;
}
.cta-band .right-seal img { width: 100%; }

/* ---------- footer ---------- */
.footer {
  background: #0a1a30;
  color: var(--ll-cream);
}
.footer-inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 64px var(--gutter) 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ll-taupe);
  margin: 0 0 18px;
}
.footer p, .footer a, .footer li {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ll-cream);
  text-decoration: none;
  line-height: 1.7;
}
.footer a:hover { color: var(--ll-red-bright); }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer .brand-wm {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  color: var(--ll-cream);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.footer .brand-wm .u { color: var(--ll-red-bright); }
.footer .brand-wm .s { color: transparent; -webkit-text-stroke: 1.2px var(--ll-cream); }
.footer .brand-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--ll-taupe);
  margin: 0 0 20px;
  max-width: 28ch;
}
.foot-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 16px;
}
.foot-broker-logo {
  height: 90px;
  width: auto;
  display: block;
  opacity: 0.88;
}
.footer-bar {
  border-top: 1px solid rgba(255,252,247,0.14);
  padding: 22px var(--gutter);
  max-width: var(--site-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ll-taupe);
  flex-wrap: wrap;
  gap: 18px;
}
.footer-bar .legal { display: flex; gap: 26px; }
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,252,247,0.3);
  display: grid; place-items: center;
  color: var(--ll-cream);
  transition: all 140ms ease;
}
.social-row a:hover { background: var(--ll-red); border-color: var(--ll-red); color: var(--ll-cream); }
.social-row svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.75; }

/* ---------- icons ---------- */
.lucide {
  width: 20px; height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- form ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ll-ink-3);
  margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ll-ink);
  background: var(--ll-white);
  border: 1px solid var(--ll-line);
  padding: 14px 16px;
  border-radius: 2px;
  outline: none;
  transition: border-color 140ms ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--ll-navy); }
.field textarea { min-height: 130px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23112642' stroke-width='1.75' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

/* ---------- about / bio split ---------- */
.bio-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: stretch;
}
.bio-img-col {
  position: relative;
}
.bio-img-col img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  image-rendering: high-quality;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.about-photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ---------- things to do / linda's picks ---------- */
.fav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.fav-cat {
  background: var(--ll-cream);
  border: 1px solid var(--ll-line);
  padding: 24px;
}
.fav-cat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--ll-navy);
}
.fav-cat-head svg {
  width: 18px;
  height: 18px;
  stroke: var(--ll-red);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.fav-cat-head span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ll-navy);
}
.fav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fav-item + .fav-item {
  padding-top: 16px;
  border-top: 1px solid var(--ll-line);
}
.fav-item-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--ll-navy);
  letter-spacing: -0.005em;
}
.fav-item-name a {
  color: inherit;
  text-decoration: none;
}
.fav-item-name a:hover {
  color: var(--ll-red);
}
.fav-item-maps {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--ll-ink-3);
  text-decoration: none;
  margin-top: 5px;
  border-bottom: 1px solid transparent;
  transition: color 140ms, border-color 140ms;
}
.fav-item-maps:hover {
  color: var(--ll-ink-2);
  border-bottom-color: var(--ll-ink-3);
}
.fav-item-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ll-ink-2);
  line-height: 1.55;
  margin-top: 4px;
}
.fav-item-loc {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ll-red);
  line-height: 1.4;
  margin-top: 8px;
}
.fav-item-loc::before {
  content: '';
  display: inline-block;
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238c2e2e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7z'/%3E%3Ccircle cx='12' cy='9' r='2.5'/%3E%3C%2Fsvg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.fav-item-tag {
  display: inline-block;
  background: var(--ll-red);
  color: var(--ll-cream);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 9px;
  margin-top: 6px;
}
.fav-item-addr {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ll-ink-3);
  line-height: 1.45;
  margin-top: 7px;
}
.fav-item-addr svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  margin-top: 1px;
  stroke: var(--ll-red);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fav-state-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 4px;
}
.fav-state-head h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  color: var(--ll-navy);
  letter-spacing: -0.01em;
  margin: 0;
}
.fav-divider {
  border: none;
  border-top: 1px solid var(--ll-line);
  margin: 52px 0;
}
.bio-figure {
  position: relative;
  overflow: hidden;
  background: var(--ll-taupe);
}
.bio-figure img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.bio-stamp {
  position: absolute;
  bottom: 20px; right: 20px;
  width: 120px; height: 120px;
  background: var(--ll-cream);
  border-radius: 999px;
  padding: 12px;
  box-shadow: var(--sh-2);
}
.bio-stamp img { width: 100%; }

.bio-body p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ll-ink-2);
  margin: 0 0 18px;
}
.signoff {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--ll-navy);
  margin-top: 10px;
}

/* ---------- credentials row ---------- */
.cred-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--ll-cream);
  border: 1px solid var(--ll-line);
}
.cred {
  padding: 28px 28px;
  border-left: 1px solid var(--ll-line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cred:first-child { border-left: 0; }
.cred .num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  line-height: 1;
  color: var(--ll-red);
  letter-spacing: -0.01em;
}
.cred .title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--ll-navy);
}
.cred .desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ll-ink-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.5;
}

/* ---------- search bar ---------- */
.search-card {
  background: var(--ll-cream);
  border: 1px solid var(--ll-line);
  padding: 28px;
  box-shadow: var(--sh-2);
}
.search-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--ll-line);
}
.search-tabs button {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ll-ink-3);
  background: none;
  border: none;
  padding: 12px 18px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.search-tabs button.active { color: var(--ll-navy); border-bottom-color: var(--ll-red); }
.search-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 10px;
  align-items: end;
}
.search-grid .field { gap: 6px; margin: 0; }
.search-grid .field label { margin-bottom: 4px; font-size: 12px; }
.search-grid .field input,
.search-grid .field select { padding: 11px 14px; font-size: 14px; }
.search-grid .btn { white-space: nowrap; padding: 12px 22px; }

/* ---------- map placeholder ---------- */
.map-ph {
  background:
    linear-gradient(0deg, rgba(17,38,66,0.04), rgba(17,38,66,0.04)),
    repeating-linear-gradient(0deg,
      transparent 0,
      transparent 39px,
      rgba(17,38,66,0.06) 40px),
    repeating-linear-gradient(90deg,
      transparent 0,
      transparent 39px,
      rgba(17,38,66,0.06) 40px),
    var(--ll-cream-warm);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.map-ph::after {
  content: attr(data-label);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--ll-cream);
  color: var(--ll-ink-2);
  border: 1px solid var(--ll-line);
  padding: 8px 14px;
}
.map-pin {
  position: absolute;
  width: 16px; height: 16px;
  border-radius: 999px;
  background: var(--ll-red);
  border: 2px solid var(--ll-cream);
  box-shadow: 0 2px 6px rgba(17,38,66,0.2);
}

/* ---------- generic prose for content pages ---------- */
.prose h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  color: var(--ll-navy);
  margin: 0 0 16px;
  letter-spacing: -0.005em;
}
.prose h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  color: var(--ll-navy);
  margin: 28px 0 10px;
}
.prose p { color: var(--ll-ink-2); font-size: 17px; line-height: 1.7; margin: 0 0 16px; }
.prose ul { padding-left: 22px; color: var(--ll-ink-2); margin: 0 0 16px; }
.prose li { margin-bottom: 6px; }

/* ---------- feature item (3-up icon list) ---------- */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature {
  background: var(--ll-cream);
  border-top: 2px solid var(--ll-navy);
  padding: 24px 20px 8px 28px;
}
.feature .icon-box {
  display: block;
  margin-bottom: 16px;
  color: var(--ll-navy);
}
.feature .icon-box svg { width: 44px; height: 44px; stroke-width: 1.5; }
.feature h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ll-navy);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
  text-transform: none;
}
.feature p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ll-ink-2);
  line-height: 1.6;
  margin: 0;
}

/* ---------- pill / chip ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ll-navy);
  background: var(--ll-cream-warm);
  border: 1px solid var(--ll-line);
  padding: 8px 14px;
  border-radius: 999px;
}
.chip.red { color: var(--ll-red); border-color: var(--ll-red); background: transparent; }

/* ---------- divider with stars ---------- */
.starline {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ll-red);
  margin: 28px 0;
}
.starline--navy { color: var(--ll-navy); }
.starline::before, .starline::after {
  content: "";
  flex: 1;
  height: 2px;
  background: currentColor;
}
.starline .stars { letter-spacing: 8px; font-size: 14px; }

/* ---------- hamburger button ---------- */
.nav-ham {
  display: none;
  width: 44px; height: 44px;
  border: none;
  background: none;
  padding: 8px;
  color: var(--ll-navy);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-ham svg {
  width: 24px; height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}
.nav-ham .icon-close { display: none; }

/* ---------- mobile nav panel ---------- */
.nav-mobile {
  display: none;
  background: var(--ll-cream);
  border-top: 1px solid var(--ll-line);
  padding: 8px 0 24px;
}
.nav-mobile a {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  color: var(--ll-ink);
  text-decoration: none;
  padding: 14px var(--gutter);
  border-bottom: 1px solid var(--ll-line);
  letter-spacing: 0.02em;
  transition: color 140ms ease, background 140ms ease;
}
.nav-mobile a:hover { color: var(--ll-red); background: var(--ll-cream-warm); }
.nav-mobile a.nav-mobile-cta {
  margin: 16px var(--gutter) 0;
  padding: 14px 24px;
  background: var(--ll-red);
  color: var(--ll-cream) !important;
  text-align: center;
  border: none;
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 15px;
  border-radius: 2px;
}
.nav-mobile a.nav-mobile-cta svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.nav-mobile a.nav-mobile-cta:hover { background: var(--ll-red-deep) !important; }

body.nav-open .nav-mobile { display: block; }
body.nav-open .nav-ham .icon-open { display: none; }
body.nav-open .nav-ham .icon-close { display: block; }

/* ---------- responsive — nav breakpoint (≤1240px) ---------- */
@media (max-width: 1240px) {
  .nav-ham { display: flex; }
  .nav-links { display: none; }
  .nav-phone { display: block; }
}

/* ---------- responsive — tablet (≤1180px) ---------- */
@media (max-width: 1180px) {
  :root { --gutter: 40px; }
  .nav-ham { display: flex; }
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-figure { aspect-ratio: 16/10; max-height: 500px; }
  .stat-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-strip .stat { border-left: 0; padding-left: 0; }
  .listings-grid, .feature-row { grid-template-columns: repeat(2, 1fr); }
  .community-grid { grid-template-columns: 1fr; }
  .community { grid-template-columns: 1fr; grid-template-rows: 220px auto; height: auto; overflow: visible; }
  .community .body { overflow: visible; }
  .community .blurb { display: block; font-family: var(--font-body); font-size: 14px; line-height: 1.5; color: var(--ll-ink-2); margin: 0 0 14px; }
  .split-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .bio-split { grid-template-columns: 1fr; }
  .about-photo-pair { grid-template-columns: 1fr; }
  .fav-grid { grid-template-columns: 1fr; }
  .cta-band-inner { grid-template-columns: 1fr; }
  .cta-band .right-seal { justify-self: center; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-inner > img { display: none !important; }
  .form-grid { grid-template-columns: 1fr; }
  .search-grid { grid-template-columns: 1fr 1fr 1fr; }
  .search-grid .field:first-child { grid-column: 1 / -1; }
}

/* ---------- responsive — mobile (≤768px) ---------- */
@media (max-width: 768px) {
  :root { --gutter: 20px; }
  section { padding: 60px 0; }
  body { font-size: 17px; }
  .nav-inner { gap: 12px; padding: 12px var(--gutter); }
  .nav-brand .nav-seal { width: 44px; height: 44px; flex: 0 0 44px; }
  .nav-brand .nav-wm { font-size: 22px; }
  .nav-brand .nav-tag { display: none; }
  .nav-cta .nav-phone { display: none; }
  .nav-cta .btn { display: none; }
  .hero-inner { padding: 48px var(--gutter) 56px; gap: 28px; }
  .hero h1 { font-size: clamp(38px, 10vw, 64px); }
  .hero-logo { width: 72px; }
  .hero-lede { font-size: 18px; }
  .hero-figure { max-height: 300px; }
  .page-hero-inner { padding: 28px var(--gutter); gap: 20px; }
  .page-hero h1 { font-size: clamp(40px, 10vw, 64px); }
  .page-hero .deck { font-size: 18px; }
  .stat-strip-inner { grid-template-columns: repeat(2, 1fr); padding: 28px var(--gutter); gap: 20px; }
  .stat-strip .stat .num { font-size: 38px; }
  .stat-strip .stat .num .sm { font-size: 22px; }
  .sec-head { grid-template-columns: 1fr; gap: 6px; }
  .sec-head .right { display: none; }
  .listings-grid { grid-template-columns: 1fr; }
  .split-card { grid-template-rows: 200px auto; }
  .split-card .body { padding: 24px; }
  .split-card h3 { font-size: 28px; }
  .feature-row { grid-template-columns: 1fr; gap: 16px; }
  .cred-row { grid-template-columns: 1fr 1fr; }
  .cred { padding: 20px 16px; border-left: 0; border-top: 1px solid var(--ll-line); }
  .cred:nth-child(-n+2) { border-top: 0; }
  .cred:nth-child(even) { border-left: 1px solid var(--ll-line); }
  .cred .num { font-size: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .search-grid { grid-template-columns: 1fr; }
  .search-grid .btn { width: 100%; }
  .cta-band-inner { padding: 56px var(--gutter); gap: 32px; }
  .cta-band .right-seal { display: none; }
  .cta-band h2 { font-size: clamp(32px, 8vw, 52px); }
  .cta-band .actions { flex-direction: column; }
  .cta-band .actions .btn { width: 100%; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bar { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-bar .legal { flex-wrap: wrap; gap: 16px; }
  .ts-wrap { gap: 8px; }
  .ts-arrow { width: 36px; height: 36px; }
  .bio-split { gap: 28px; }
}

/* ---------- mobile stack utility ---------- */
@media (max-width: 768px) {
  .mob-stack { grid-template-columns: 1fr !important; }
  .mob-2col  { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .mob-2col  { grid-template-columns: 1fr !important; }
}

/* ---------- responsive — small phones (≤480px) ---------- */
@media (max-width: 480px) {
  :root { --gutter: 16px; }
  section { padding: 48px 0; }
  .hero h1 { font-size: clamp(34px, 11vw, 52px); }
  .sec-title { font-size: clamp(28px, 7vw, 40px); }
  .btn--lg { padding: 14px 20px; font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stat-strip .stat .num { font-size: 32px; }
  .nav-brand .nav-wm { font-size: 19px; }
  .listing .meta { gap: 10px; flex-wrap: wrap; }
}
