.address-autocomplete {
  display: block;
  width: 100%;
}

.input-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  .input-row {
    grid-template-columns: 1fr;
  }
}

:root {
  --bg: #f7f3ea;
  --bg-soft: #efe7d7;
  --paper: rgba(255, 251, 245, 0.82);
  --surface: #fffaf2;
  --surface-strong: #f4ecdf;
  --ink: #163126;
  --ink-soft: #456054;
  --line: rgba(22, 49, 38, 0.12);
  --line-strong: rgba(22, 49, 38, 0.24);
  --brand: #1f5b47;
  --brand-deep: #123a2d;
  --accent: #cf8551;
  --accent-strong: #b6622e;
  --success: #2d7b5c;
  --shadow: 0 24px 60px rgba(18, 39, 31, 0.12);
  --shadow-soft: 0 18px 36px rgba(18, 39, 31, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
  --section-space: clamp(4rem, 8vw, 7rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(207, 133, 81, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(31, 91, 71, 0.15), transparent 28%),
    linear-gradient(180deg, #faf6ee 0%, var(--bg) 40%, #f6efe2 100%);
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-shell {
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 1rem auto 0;
  padding: 1rem 1.15rem;
  background: rgba(255, 250, 242, 0.82);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(22, 49, 38, 0.09);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(25, 37, 31, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  background: linear-gradient(140deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff5e9;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.brand-mark svg {
  width: 1.5rem;
  height: 1.5rem;
}

.brand-copy {
  display: grid;
  gap: 0.15rem;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.brand-copy small {
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.nav-link {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.92rem;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(31, 91, 71, 0.08);
  color: var(--ink);
  transform: translateY(-1px);
  outline: none;
}

.nav-link.is-active {
  background: var(--brand);
  color: white;
  box-shadow: 0 10px 20px rgba(31, 91, 71, 0.18);
}

.call-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: linear-gradient(140deg, #fff3e6 0%, #fce7d5 100%);
  border: 1px solid rgba(207, 133, 81, 0.22);
  color: var(--brand-deep);
  white-space: nowrap;
}

.call-chip span {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.call-chip strong {
  font-size: 0.93rem;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0.22rem auto;
  background: var(--ink);
  border-radius: 999px;
}

#app {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 1.2rem 0 5rem;
}

.page {
  display: grid;
  gap: var(--section-space);
  animation: page-enter 420ms ease both;
}

.hero-panel,
.section-card,
.quote-band,
.table-shell,
.contact-banner,
.legal-card,
.city-search-shell {
  background: var(--paper);
  border: 1px solid rgba(22, 49, 38, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel {
  position: relative;
  min-height: 640px;
  background:
    linear-gradient(120deg, rgba(18, 58, 45, 0.82), rgba(18, 58, 45, 0.46)),
    radial-gradient(circle at right top, rgba(207, 133, 81, 0.34), transparent 36%),
    url("./The-Home-Buyers-Checklist-What-to-Look-for-During-Property-Tours.webp")
      center/cover;
  color: #fff8ef;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto auto -90px -60px;
  width: 240px;
  height: 240px;
  background: rgba(255, 251, 245, 0.08);
  border-radius: 50%;
  filter: blur(1px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 420px);
  gap: 2rem;
  align-items: end;
  padding: clamp(2rem, 5vw, 4rem);
  min-height: 640px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.12);
  border: 1px solid rgba(255, 248, 239, 0.16);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-copy {
  display: grid;
  gap: 1.35rem;
  align-self: center;
}

.display {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.display em {
  font-style: normal;
  color: #f8cda9;
}

.lede {
  max-width: 42rem;
  font-size: 1.08rem;
  line-height: 1.72;
  color: rgba(255, 248, 239, 0.88);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.3rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(18, 58, 45, 0.2);
  outline: none;
}

.button-primary {
  background: linear-gradient(140deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff8f0;
}

.button-secondary {
  background: rgba(255, 248, 239, 0.08);
  border-color: rgba(255, 248, 239, 0.22);
  color: white;
}

.button-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.9rem;
}

.fact-card {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(255, 248, 239, 0.1);
  border: 1px solid rgba(255, 248, 239, 0.12);
}

.fact-card strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.fact-card span {
  color: rgba(255, 248, 239, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
}

.quote-form {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(250, 241, 229, 0.92));
  color: var(--ink);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 22px 40px rgba(18, 39, 31, 0.18);
}

.quote-form h2,
.quote-form h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.quote-form p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

.input-stack {
  display: grid;
  gap: 0.42rem;
}

.input-stack label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.input-stack input,
.input-stack textarea,
.input-stack select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(22, 49, 38, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.input-stack textarea {
  min-height: 120px;
  resize: vertical;
}

.input-stack input:focus,
.input-stack textarea:focus,
.input-stack select:focus {
  outline: none;
  border-color: rgba(31, 91, 71, 0.6);
  box-shadow: 0 0 0 4px rgba(31, 91, 71, 0.12);
  background: white;
}

.form-footnote {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.section-block {
  display: grid;
  gap: 1.75rem;
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  max-width: 44rem;
}

.section-heading h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.7;
}

.section-grid {
  display: grid;
  gap: 1.2rem;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.step-card,
.feature-card,
.testimonial-card,
.reason-card,
.contact-card,
.legal-section,
.city-card,
.metric-card,
.benefit-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.5rem;
  background: rgba(255, 251, 245, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.step-index,
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(140deg, rgba(31, 91, 71, 0.12), rgba(207, 133, 81, 0.18));
  color: var(--brand-deep);
  font-weight: 800;
  font-size: 1rem;
}

.icon-badge svg {
  width: 1.35rem;
  height: 1.35rem;
}

.step-card h3,
.feature-card h3,
.testimonial-card h3,
.reason-card h3,
.contact-card h3,
.benefit-card h3 {
  margin: 0;
  font-size: 1.18rem;
}

.step-card p,
.feature-card p,
.testimonial-card p,
.reason-card p,
.contact-card p,
.benefit-card p,
.city-card p,
.metric-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.68;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.4rem;
}

.section-card {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.comparison-stack {
  display: grid;
  gap: 1rem;
}

.comparison-panel {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  min-height: 100%;
}

.comparison-panel.is-brand {
  background: linear-gradient(180deg, rgba(31, 91, 71, 0.92), rgba(18, 58, 45, 0.96));
  color: #fff8ef;
}

.comparison-panel.is-brand p,
.comparison-panel.is-brand li {
  color: rgba(255, 248, 239, 0.85);
}

.comparison-panel.is-market {
  background: rgba(255, 251, 245, 0.8);
  border: 1px solid var(--line);
}

.comparison-panel h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 1.8rem;
  line-height: 1.05;
}

.bullet-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.bullet-list li {
  position: relative;
  padding-left: 1.35rem;
  line-height: 1.6;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
}

.comparison-panel.is-brand .bullet-list li::before {
  background: #f8cda9;
}

.table-shell {
  padding: 1rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.compare-table th,
.compare-table td {
  padding: 1rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.compare-table th {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(31, 91, 71, 0.05);
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.compare-table td:nth-child(3) {
  color: var(--brand-deep);
  font-weight: 700;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.metric-card strong {
  font-size: 2rem;
  line-height: 1;
  font-family: "Fraunces", serif;
}

.quote-band,
.contact-banner {
  padding: clamp(1.6rem, 4vw, 2.4rem);
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  background:
    linear-gradient(125deg, rgba(18, 58, 45, 0.96), rgba(31, 91, 71, 0.92)),
    radial-gradient(circle at right top, rgba(248, 205, 169, 0.22), transparent 40%);
  color: #fff8ef;
}

.quote-band h2,
.quote-band h3,
.contact-banner h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
}

.quote-band p,
.contact-banner p {
  margin: 0.5rem 0 0;
  color: rgba(255, 248, 239, 0.82);
  line-height: 1.66;
}

.quote-band .button-secondary {
  background: rgba(255, 248, 239, 0.12);
}

.testimonial-card blockquote {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.testimonial-card footer {
  color: var(--ink-soft);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 251, 245, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  cursor: pointer;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(31, 91, 71, 0.08);
  color: var(--brand-deep);
  font-size: 1.3rem;
  font-weight: 500;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 1.4rem 1.35rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

.faq-answer p {
  margin: 0 0 1rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.city-search-shell {
  padding: 1.2rem;
}

.city-search-shell input {
  width: 100%;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: white;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.city-card {
  gap: 0.7rem;
}

.city-card strong {
  font-size: 1.05rem;
}

.chip-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(31, 91, 71, 0.07);
  color: var(--brand-deep);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.2rem;
}

.contact-banner {
  background:
    linear-gradient(145deg, rgba(18, 58, 45, 0.98), rgba(24, 78, 60, 0.96)),
    radial-gradient(circle at right top, rgba(248, 205, 169, 0.22), transparent 38%);
  color: #fff8ef;
}

.contact-banner ul {
  margin: 1.2rem 0 0;
}

.contact-banner li {
  color: rgba(255, 248, 239, 0.82);
}

.legal-card {
  padding: clamp(1.4rem, 3vw, 2rem);
  display: grid;
  gap: 1.2rem;
}

.legal-intro {
  max-width: 52rem;
}

.legal-intro h1 {
  margin: 0 0 0.7rem;
  font-family: "Fraunces", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.legal-intro p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.legal-grid {
  display: grid;
  gap: 1rem;
}

.legal-section h2 {
  margin: 0;
  font-size: 1.12rem;
}

.legal-section p,
.legal-section li {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.legal-section ul {
  display: grid;
  gap: 0.75rem;
  padding-left: 1.1rem;
  margin: 0;
}

.empty-state {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 245, 0.75);
  border: 1px dashed var(--line-strong);
  color: var(--ink-soft);
}

.page-not-found {
  min-height: 60vh;
  display: grid;
  place-items: center;
}

.not-found-card {
  width: min(100%, 38rem);
  padding: 2rem;
  text-align: center;
  border-radius: var(--radius-xl);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.not-found-card h1 {
  margin: 0 0 0.8rem;
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  line-height: 0.95;
}

.not-found-card p {
  margin: 0 auto 1.3rem;
  max-width: 26rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.site-footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto 2rem;
  padding: 2rem;
  background: rgba(18, 58, 45, 0.96);
  color: rgba(255, 248, 239, 0.9);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 1.5rem;
  align-items: start;
}

.footer-copy {
  display: grid;
  gap: 0.7rem;
  max-width: 32rem;
}

.footer-copy p,
.footer-nav a,
.footer-contact a,
.footer-note {
  color: rgba(255, 248, 239, 0.76);
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 0.8rem;
}

.footer-label {
  color: white;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-top: 1.4rem;
  margin-top: 1.6rem;
  border-top: 1px solid rgba(255, 248, 239, 0.14);
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: min(90vw, 28rem);
  padding: 0.95rem 1.1rem;
  border-radius: 18px;
  background: rgba(18, 58, 45, 0.94);
  color: white;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.noscript-message {
  padding: 1rem;
  margin: 1rem auto;
  width: min(calc(100% - 2rem), 38rem);
  border-radius: 18px;
  background: #fff4e9;
  border: 1px solid rgba(207, 133, 81, 0.3);
  text-align: center;
}

.u-muted {
  color: var(--ink-soft);
}

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    right: 0;
    display: none;
    padding: 0.9rem;
    border-radius: 28px;
    background: rgba(255, 250, 242, 0.96);
    border: 1px solid rgba(22, 49, 38, 0.08);
    box-shadow: var(--shadow);
  }

  .site-header.is-nav-open .site-nav {
    display: grid;
  }

  .site-nav .nav-link {
    justify-content: center;
  }

  .nav-toggle {
    display: inline-block;
  }

  .call-chip {
    display: none;
  }

  .hero-grid,
  .split-layout,
  .contact-grid,
  .footer-grid,
  .quote-band {
    grid-template-columns: 1fr;
  }

  .three-up,
  .four-up,
  .two-up,
  .city-grid,
  .metric-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 1rem);
    margin-top: 0.5rem;
    padding: 0.85rem 1rem;
  }

  .brand-copy small {
    display: none;
  }

  #app {
    width: calc(100% - 1rem);
    padding-top: 0.9rem;
  }

  .hero-panel {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding: 1.3rem;
  }

  .hero-facts,
  .three-up,
  .four-up,
  .two-up,
  .city-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .table-shell {
    overflow-x: auto;
  }

  .compare-table {
    min-width: 720px;
  }

  .step-card,
  .feature-card,
  .testimonial-card,
  .reason-card,
  .contact-card,
  .legal-section,
  .city-card,
  .metric-card,
  .benefit-card,
  .section-card,
  .quote-band,
  .contact-banner,
  .legal-card,
  .city-search-shell {
    border-radius: 22px;
  }

  .site-footer {
    width: calc(100% - 1rem);
    padding: 1.35rem;
  }

  .footer-legal {
    flex-direction: column;
  }
}
