/* RentAFenceNearMe — polished static demo
   Navy / steel / copper · system fonts · max ~1120px */

:root {
  --navy: #152536;
  --navy-mid: #1e3348;
  --steel: #4a657a;
  --steel-light: #6b8499;
  --copper: #c4622d;
  --copper-hover: #a85224;
  --copper-soft: #f3e6dc;
  --sand: #f7f5f1;
  --sand-2: #ebe7df;
  --white: #ffffff;
  --text: #1c2a36;
  --muted: #5c6d7c;
  --border: #d8d2c8;
  --border-light: #e8e3da;
  --ok: #2a6b4f;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 4px 20px rgba(21, 37, 54, 0.08);
  --shadow-sm: 0 1px 4px rgba(21, 37, 54, 0.06);
  --max: 1120px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --header-h: 64px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.025rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--copper);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover { color: var(--copper-hover); text-decoration: underline; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* —— Demo bar —— */
.demo-bar {
  background: var(--navy-mid);
  color: #c5d3e0;
  font-size: 0.82rem;
  text-align: center;
  padding: 0.45rem 1rem;
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.demo-bar strong { color: #f0d4b8; font-weight: 600; }
.demo-bar a { color: #e8b48a; }
.demo-bar a:hover { color: #fff; }
@media (max-width: 600px) {
  .demo-bar {
    font-size: 0.72rem;
    padding: 0.35rem 0.65rem;
    line-height: 1.35;
  }
}

/* —— Header —— */
.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--white);
  letter-spacing: -0.025em;
  text-decoration: none;
  white-space: nowrap;
}
.logo:hover { color: var(--sand); text-decoration: none; }
.logo img {
  display: block;
  border-radius: 8px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}
.logo-text { color: var(--white); }
.logo-accent { color: #e8a06a; font-weight: 600; }
.logo span.logo-accent { color: #e8a06a; font-weight: 600; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.nav-toggle:hover { background: rgba(255,255,255,0.08); }

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
  flex-wrap: wrap;
}
.nav a {
  color: #b8c8d6;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.25rem 0;
}
.nav a:hover { color: var(--white); text-decoration: none; }
.nav .btn-nav {
  background: var(--copper);
  color: var(--white) !important;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
}
.nav .btn-nav:hover {
  background: var(--copper-hover);
  text-decoration: none;
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
    padding: 0.5rem 0.85rem;
  }
  .nav {
    display: none;
    width: 100%;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-bottom: 0.85rem;
  }
  .nav.is-open { display: flex; }
  .nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav .btn-nav {
    text-align: center;
    justify-content: center;
    margin-top: 0.35rem;
    min-height: 44px;
  }
  .site-header .inner { flex-wrap: wrap; padding-top: 0.35rem; padding-bottom: 0.35rem; }
  .btn { min-height: 44px; }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.1s;
  line-height: 1.3;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--copper);
  color: var(--white);
  border-color: var(--copper);
}
.btn-primary:hover { background: var(--copper-hover); border-color: var(--copper-hover); color: var(--white); }
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--border);
}
.btn-secondary:hover { background: var(--sand); color: var(--navy); border-color: var(--steel-light); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--steel); color: var(--navy); background: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--copper);
  border-color: transparent;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.btn-block { width: 100%; }
.btn-lg { padding: 0.85rem 1.6rem; font-size: 1rem; }

/* —— Hero (home) —— */
.hero {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 55%, #243d52 100%);
  color: var(--white);
  padding: 3.25rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(196,98,45,0.12), transparent),
    radial-gradient(ellipse 40% 40% at 10% 90%, rgba(74,101,122,0.25), transparent);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.75rem;
  align-items: center;
}
.hero-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e8a06a;
  margin: 0 0 0.85rem;
}
.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--white);
}
.hero .lead {
  margin: 0 0 1.5rem;
  font-size: 1.08rem;
  color: #b8c8d6;
  max-width: 34rem;
  line-height: 1.65;
}
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.trust-chips li {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #d4e0ea;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

/* Quote starter card in hero */
.quote-starter {
  background: var(--white);
  color: var(--text);
  border-radius: 12px;
  padding: 1.5rem 1.4rem 1.35rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.28);
}
.quote-starter h2 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.quote-starter .starter-sub {
  margin: 0 0 1.15rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.quote-starter .form-group { margin-bottom: 0.85rem; }
.quote-starter label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--steel);
  margin-bottom: 0.3rem;
}
.quote-starter input,
.quote-starter select {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 16px; /* prevent iOS zoom */
  font-family: inherit;
  background: var(--white);
  color: var(--text);
}
.quote-starter .starter-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.quote-starter .btn { margin-top: 0.35rem; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding: 2.5rem 0 2.75rem; }
}

/* —— Trust strip —— */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0;
}
.trust-strip ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.trust-strip li {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.trust-strip li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
}

/* —— Sections —— */
.section {
  padding: 3.5rem 0;
}
.section-alt { background: var(--white); }
.section-tight { padding: 2.5rem 0; }

.section-head {
  margin-bottom: 2rem;
  max-width: 38rem;
}
.section-head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.45rem, 2.5vw, 1.75rem);
  letter-spacing: -0.025em;
  color: var(--navy);
  line-height: 1.25;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}
.section-head.center {
  text-align: center;
  margin-inline: auto;
}

h1, h2, h3, h4 { color: var(--navy); }

/* —— Cards / grids —— */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem;
  box-shadow: var(--shadow-sm);
}
.section-alt .card {
  background: var(--sand);
  border-color: var(--border-light);
}
.card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* How it works steps */
.step-card {
  position: relative;
  padding-top: 1.5rem;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

/* Feature / rent cards */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.feature-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 8px;
  background: var(--copper-soft);
  color: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.feature-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
}
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* City cards */
.city-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.35rem 1.3rem;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  height: 100%;
}
.city-card:hover {
  border-color: #c9b8a8;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}
.city-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.08rem;
  color: var(--navy);
}
.city-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
}
.city-card .browse {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--copper);
}
.city-card:hover .browse { color: var(--copper-hover); }

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.1rem;
}

/* CTA bands */
.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}
.cta-band h2 {
  margin: 0 0 0.5rem;
  color: var(--white);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  letter-spacing: -0.02em;
}
.cta-band p {
  margin: 0 0 1.35rem;
  color: #b8c8d6;
  max-width: 32rem;
  margin-inline: auto;
}
.cta-band.yards {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  text-align: left;
}
.cta-band.yards .cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band.yards p { margin-inline: 0; margin-bottom: 0; }
.cta-band.yards h2 { margin-bottom: 0.4rem; }

/* —— Page hero (inner pages) —— */
.page-hero {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 2rem 0 2.25rem;
}
.page-hero h1 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: -0.025em;
  line-height: 1.22;
}
.page-hero .intro {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
  font-size: 1.05rem;
}
.breadcrumb {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--steel); }
.breadcrumb a:hover { color: var(--copper); }

/* —— Filter chips —— */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 0;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 480px) {
  .filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    -webkit-overflow-scrolling: touch;
  }
  .filter-chip { flex-shrink: 0; }
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--sand);
  color: var(--steel);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: default;
  user-select: none;
}
.filter-chip[aria-pressed="true"],
.filter-chip.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.filter-hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.65rem 0 0;
}

/* —— Listing cards —— */
.listing-grid {
  display: grid;
  gap: 1rem;
}
.listing-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
}
.listing-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.08rem;
}
.listing-meta {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.listing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.listing-tags li {
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--sand);
  border: 1px solid var(--border-light);
  color: var(--steel);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}
.badge-demo {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--copper-soft);
  color: var(--copper-hover);
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .listing-card {
    grid-template-columns: 1fr;
  }
  .badge-demo { justify-self: start; }
}

/* Sticky city CTA */
.city-cta-bar {
  position: sticky;
  bottom: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 0.9rem 0;
  padding-bottom: calc(0.9rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 20px rgba(21,37,54,0.08);
  z-index: 50;
}
.city-cta-bar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.city-cta-bar p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}
.city-cta-bar strong { color: var(--navy); }

/* —— Quote page —— */
.quote-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 800px) {
  .quote-layout { grid-template-columns: 1fr; }
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.tips-card {
  background: var(--sand);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.tips-card h2 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}
.tips-card ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.tips-card li { margin-bottom: 0.75rem; }
.tips-card li:last-child { margin-bottom: 0; }
.tips-card strong { color: var(--navy); font-weight: 600; }
.reassure {
  margin: 1.25rem 0 0;
  padding: 0.9rem 1rem;
  background: #eef5f1;
  border: 1px solid #c8ddd2;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--ok);
}

.form-group { margin-bottom: 1.05rem; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.form-group .optional {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.82rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 16px; /* prevent iOS zoom on focus */
  font-family: inherit;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.15s;
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover { border-color: var(--steel-light); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
  .quote-starter .starter-row { grid-template-columns: 1fr; }
}
.hp {
  position: absolute !important;
  left: -9999px !important;
  height: 0 !important;
  width: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}
.radio-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding-top: 0.25rem;
}
.radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
}
.radio-row input { width: auto; accent-color: var(--copper); }

/* —— Providers —— */
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 700px) {
  .benefit-grid { grid-template-columns: 1fr; }
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.6rem 1.45rem;
  box-shadow: var(--shadow-sm);
}
.benefit-card .label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.5rem;
}
.benefit-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
}
.benefit-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.benefit-card li { margin-bottom: 0.4rem; }
.soft-note {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  background: var(--sand);
  border-left: 3px solid var(--copper);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* —— Footer —— */
.site-footer {
  background: var(--navy-dark, #0f1a24);
  background: #0f1a24;
  color: #9aadc0;
  padding: 2.75rem 0 1.5rem;
  font-size: 0.9rem;
}
.site-footer a { color: #c5d3e0; }
.site-footer a:hover { color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
.site-footer strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li { margin-bottom: 0.4rem; }
.site-footer .brand-blurb {
  margin: 0.35rem 0 0.75rem;
  line-height: 1.55;
  max-width: 22rem;
}
.legal {
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: #6a7d8f;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}
.pilot-tag {
  color: #e8a06a;
  font-weight: 500;
}

/* —— Privacy stub —— */
.prose {
  max-width: 40rem;
}
.prose p { color: var(--muted); }
.prose h2 {
  margin: 2rem 0 0.6rem;
  font-size: 1.15rem;
}

/* Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.mb-0 { margin-bottom: 0; }
.text-muted { color: var(--muted); }


/* —— Mobile polish —— */
@media (max-width: 860px) {
  .quote-starter {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.5rem, var(--max));
  }
  .section {
    padding: 2.35rem 0;
  }
  .section-tight {
    padding: 1.75rem 0;
  }
  .page-hero {
    padding: 1.5rem 0 1.75rem;
  }
  .hero {
    padding: 1.85rem 0 2rem;
  }
  .cta-band {
    padding: 2.25rem 0;
  }
  .logo {
    font-size: 1rem;
    gap: 0.45rem;
  }
  .logo img {
    width: 32px;
    height: 32px;
  }
  .quote-starter {
    padding: 1.25rem 1.1rem 1.15rem;
  }
}
