:root {
  --ink: #17211f;
  --ink-soft: #4c5a56;
  --muted: #66736f;
  --paper: #ffffff;
  --wash: #f5f3ef;
  --line: #ded8cc;
  --primary: #1f4d48;
  --primary-dark: #153b37;
  --copper: #c56b3d;
  --gold: #e0aa3e;
  --teal: #7fb3b7;
  --charcoal: #111816;
  --shadow: 0 18px 50px rgba(23, 33, 31, 0.14);
  --radius: 8px;
  --container: 1180px;
  --gutter: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

.container,
.header-inner,
.trust-grid,
.hero-content {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(222, 216, 204, 0.85);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  text-decoration: none;
  line-height: 1.1;
  flex: none;
}

.brand-name {
  display: block;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-line {
  display: block;
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 3px;
}

.desktop-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}

.desktop-nav a,
.site-footer nav a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a:hover,
.site-footer nav a:hover {
  color: var(--copper);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: var(--primary);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.9rem;
}

.button-large {
  min-height: 56px;
  padding-inline: 30px;
  font-size: 1.05rem;
}

.button-secondary {
  color: var(--primary);
  background: transparent;
  border: 2px solid var(--primary);
}

.button-secondary:hover {
  color: #fff;
  background: var(--primary);
}

.button-outline-light {
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.92);
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

.home-hero {
  padding: 86px 0 72px;
  background: linear-gradient(180deg, #f8f5ef 0%, #ffffff 100%);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.78fr);
  gap: 58px;
  align-items: center;
}

.home-hero-copy h1 {
  max-width: 850px;
  margin: 0 0 22px;
  font-size: clamp(2.75rem, 5vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.home-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 1.22rem;
}

.hero-bullets {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.hero-bullets li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-bullets li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--copper);
}

.home-portrait {
  height: 610px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.home-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  display: grid;
  grid-template-rows: 300px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(23, 33, 31, 0.08);
}

.service-card-dark {
  color: #fff;
  background: var(--charcoal);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card > div {
  padding: 30px;
}

.service-card h3,
.blog-card h3 {
  font-size: 1.65rem;
}

.service-card p:not(.eyebrow),
.blog-card p {
  color: var(--muted);
}

.service-card-dark p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.blog-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  background: #fff;
}

.blog-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card a {
  color: var(--primary);
  font-weight: 900;
  text-decoration: none;
}

.article-page {
  background: #fff;
}

.article-hero {
  padding: 76px 0 54px;
  background: linear-gradient(180deg, #f8f5ef 0%, #ffffff 100%);
}

.article-shell {
  max-width: 860px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--primary);
  font-weight: 900;
  text-decoration: none;
}

.article-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.article-hero p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.22rem;
}

.article-content {
  padding: 54px 0 88px;
}

.article-content section {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.article-content section:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.article-content h2 {
  font-size: 2rem;
}

.article-content h3 {
  margin-top: 26px;
  color: var(--copper);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-content p,
.article-content li {
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.75;
}

.article-content ul {
  columns: 2;
  column-gap: 42px;
  margin: 10px 0 0;
  padding-left: 22px;
}

.article-content li {
  break-inside: avoid;
  margin-bottom: 5px;
}

.article-cta {
  margin-top: 28px;
  padding: 34px;
  border-radius: 12px;
  color: #fff;
  background: var(--charcoal);
}

.article-cta h2 {
  color: #fff;
}

.article-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(17, 24, 22, 0.28), rgba(17, 24, 22, 0.84));
}

.str-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

.str-hero > img,
.str-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.str-hero > img {
  object-fit: cover;
}

.str-hero-overlay {
  background: linear-gradient(90deg, rgba(7, 11, 10, 0.88), rgba(7, 11, 10, 0.48) 55%, rgba(7, 11, 10, 0.12));
}

.str-hero-content {
  position: relative;
  z-index: 1;
  padding: 112px 0 78px;
}

.str-hero-content h1 {
  max-width: 780px;
  margin: 0 0 20px;
  font-size: clamp(2.65rem, 5.2vw, 4.85rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.str-hero-content p:not(.eyebrow) {
  max-width: 590px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.25rem;
}

.str-stat-strip {
  padding: 36px 0;
  color: #fff;
  background: #070b0a;
}

.str-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.str-stats strong {
  display: block;
  color: #ef5a22;
  font-size: 2.5rem;
  line-height: 1.05;
}

.str-stats span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1rem;
}

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

.str-media {
  min-height: 520px;
}

.step-list {
  display: grid;
  gap: 22px;
}

.step-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
}

.step-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  font-weight: 900;
}

.step-list h3 {
  font-size: 1.18rem;
}

.step-list p,
.fine-note {
  color: var(--muted);
}

.arrow-list {
  padding-left: 0;
  list-style: none;
}

.arrow-list li {
  position: relative;
  padding-left: 24px;
}

.arrow-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--copper);
  font-weight: 900;
}

.hayden-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hayden-metrics div {
  min-height: 170px;
  padding: 24px;
  border-radius: 12px;
  color: #fff;
  background: #070b0a;
  box-shadow: var(--shadow);
}

.hayden-metrics strong {
  display: block;
  color: #ef5a22;
  font-size: 2rem;
  line-height: 1.05;
}

.hayden-metrics span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 88px 0 80px;
}

.hero-content h1 {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: 4.15rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: inline-flex;
  color: #ffce75;
  background: rgba(224, 170, 62, 0.14);
  border: 1px solid rgba(224, 170, 62, 0.46);
  border-radius: 999px;
  padding: 8px 14px;
  margin-bottom: 18px;
}

.trust-bar {
  background: var(--charcoal);
  color: #fff;
  padding: 28px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: center;
}

.trust-grid strong {
  display: block;
  color: var(--gold);
  font-size: 2rem;
  line-height: 1.1;
}

.trust-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.section {
  padding: 88px 0;
}

.section-muted {
  background: var(--wash);
}

.section-dark {
  background: var(--charcoal);
  color: #fff;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-intro.centered {
  margin-inline: auto;
  text-align: center;
}

.section-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(224, 170, 62, 0.12);
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0 0 16px;
  font-size: 2.55rem;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  line-height: 1.18;
}

.section-intro p:not(.eyebrow),
.split-copy p,
.about-grid p,
.contact-grid p {
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card,
.quote-card,
.proof-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.number-badge,
.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--primary);
  font-weight: 900;
}

.feature-card p,
.proof-card p,
.quote-card p,
.timeline p {
  color: var(--muted);
  font-size: 0.95rem;
}

.split-section,
.relocation-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.split-section {
  margin-top: 70px;
}

.media-frame,
.wide-image,
.portrait-frame {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.media-frame {
  min-height: 380px;
}

.media-frame img,
.wide-image img,
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check-list {
  margin: 22px 0 26px;
  padding-left: 20px;
  color: var(--ink-soft);
  line-height: 1.85;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.timeline article {
  position: relative;
  padding-right: 20px;
}

.timeline article::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 54px;
  right: 12px;
  height: 2px;
  background: var(--line);
}

.timeline article:last-child::before {
  display: none;
}

.timeline h3 {
  margin-top: 16px;
  font-size: 1.06rem;
}

.wide-image {
  height: clamp(500px, 42vw, 620px);
  margin-top: 34px;
}

.calculator {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
}

.calculator h3 {
  font-size: 1.3rem;
}

.calculator label {
  display: block;
  margin: 20px 0 12px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.calculator input {
  width: 100%;
  accent-color: var(--gold);
}

.savings-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.savings-row div {
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.28);
}

.savings-row span,
.savings-row small {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.savings-row strong {
  display: block;
  margin: 6px 0 2px;
  color: var(--gold);
  font-size: 1.65rem;
}

.fine-print {
  margin: 16px 0 0;
  font-size: 0.78rem;
}

.neighborhood-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: start;
}

.map-panel {
  position: relative;
  aspect-ratio: 4 / 4.4;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #efe8db;
  box-shadow: var(--shadow);
}

.map-panel svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hood-button {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 31px;
  max-width: 168px;
  padding: 6px 12px 6px 8px;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 22px rgba(23, 33, 31, 0.13);
  font-size: 0.74rem;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.hood-button::before {
  content: "";
  flex: none;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--primary);
}

.hood-button.active {
  z-index: 2;
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
  animation: pulse 2.4s infinite;
}

.hood-button.active::before {
  background: var(--gold);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(224, 170, 62, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(224, 170, 62, 0); }
  100% { box-shadow: 0 0 0 0 rgba(224, 170, 62, 0); }
}

.hood-detail {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hood-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}

.hood-heading h3 {
  font-size: 1.7rem;
}

.hood-heading span,
.tag-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--wash);
  color: var(--ink-soft);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

#hoodBlurb {
  color: var(--muted);
}

.price-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 26px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.price-strip div {
  padding: 16px 8px;
  text-align: center;
  background: var(--wash);
}

.price-strip div + div {
  border-left: 1px solid var(--line);
}

.price-strip .price-main {
  color: #fff;
  background: var(--primary);
}

.price-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-main span {
  color: rgba(255, 255, 255, 0.76);
}

.price-strip strong {
  display: block;
  margin-top: 4px;
  font-size: 1.12rem;
}

.hood-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.hood-lists h4 {
  margin: 0 0 8px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hood-lists ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.8;
}

.hood-detail .button {
  margin-top: 26px;
}

.portrait-frame {
  max-width: 460px;
  height: 540px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 28px;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
}

.proof-grid-compact {
  max-width: 1080px;
  margin: 0 auto;
}

.stars {
  color: var(--gold);
  letter-spacing: 0;
  margin-bottom: 12px;
}

.quote-card p {
  color: var(--ink-soft);
  font-size: 1.03rem;
  font-style: italic;
}

.quote-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.quote-card footer span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  font-weight: 900;
}

.quote-card small {
  display: block;
  color: var(--muted);
}

.contact-grid {
  align-items: start;
}

.call-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0 8px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.call-card > span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--charcoal);
  background: var(--gold);
  font-weight: 900;
  animation: pulse 2.4s infinite;
}

.call-card small,
.email-line {
  color: rgba(255, 255, 255, 0.62);
}

.call-card strong {
  display: block;
  color: #fff;
  font-size: 1.18rem;
}

.email-line a {
  color: var(--gold);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid #cfc8bd;
  border-radius: var(--radius);
  padding: 12px;
  color: var(--ink);
  background: #fff;
}

.lead-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.site-footer {
  padding: 48px 0 92px;
  color: rgba(255, 255, 255, 0.66);
  background: #070b0a;
}

.footer-top {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.footer-top strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-top span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-top p {
  margin: 8px 0 0;
  font-size: 0.9rem;
}

.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.legal {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.78rem;
  line-height: 1.65;
}

.mobile-cta {
  display: none;
}

.mobile-cta.mobile-cta-single {
  grid-template-columns: 1fr;
}

@media (max-width: 1040px) {
  .desktop-nav,
  .phone-link {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-content h1 {
    font-size: 3.35rem;
  }

  .feature-grid,
  .trust-grid,
  .str-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-hero-grid,
  .service-grid,
  .blog-grid,
  .feature-grid.three {
    grid-template-columns: 1fr;
  }

  .home-portrait {
    height: 520px;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .timeline article::before {
    display: none;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --gutter: 16px;
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    min-height: 760px;
  }

  .home-hero {
    padding: 62px 0;
  }

  .home-hero-copy h1 {
    font-size: 2.75rem;
  }

  .home-hero-copy p:not(.eyebrow),
  .str-hero-content p:not(.eyebrow) {
    font-size: 1.05rem;
  }

  .article-hero {
    padding: 56px 0 42px;
  }

  .article-hero h1 {
    font-size: 2.45rem;
  }

  .article-hero p:not(.eyebrow),
  .article-content p,
  .article-content li {
    font-size: 1rem;
  }

  .article-content ul {
    columns: 1;
  }

  .str-hero {
    min-height: 760px;
  }

  .str-hero-content {
    padding: 92px 0 58px;
  }

  .str-hero-content h1 {
    font-size: 2.65rem;
  }

  .hero-content {
    padding-bottom: 58px;
  }

  .hero-content h1 {
    font-size: 2.55rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  h2 {
    font-size: 2rem;
  }

  .split-section,
  .relocation-grid,
  .about-grid,
  .contact-grid,
  .neighborhood-layout {
    grid-template-columns: 1fr;
  }

  .portrait-frame {
    max-width: none;
    height: 480px;
  }

  .str-media {
    min-height: 440px;
  }

  .wide-image {
    height: 430px;
  }

  .map-panel {
    min-height: 0;
    height: 500px;
    aspect-ratio: auto;
  }

  .hood-detail {
    padding: 24px;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
  }

  .mobile-cta .button {
    min-height: 48px;
  }
}

@media (max-width: 560px) {
  .header-inner {
    min-height: 62px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .brand-line {
    font-size: 0.58rem;
  }

  .header-actions .button {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .trust-grid,
  .feature-grid,
  .str-stats,
  .timeline,
  .form-grid,
  .savings-row,
  .hood-lists,
  .price-strip {
    grid-template-columns: 1fr;
  }

  .home-portrait {
    height: 430px;
  }

  .service-card {
    grid-template-rows: 220px 1fr;
  }

  .service-card > div,
  .blog-card,
  .article-cta {
    padding: 22px;
  }

  .str-hero {
    min-height: 700px;
  }

  .str-stats strong {
    font-size: 2rem;
  }

  .str-media {
    min-height: 340px;
  }

  .hayden-metrics {
    grid-template-columns: 1fr;
  }

  .hayden-metrics div {
    min-height: 130px;
  }

  .price-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .map-panel {
    height: 450px;
  }

  .wide-image {
    height: 320px;
  }

  .hood-button {
    max-width: 138px;
    padding-right: 10px;
    font-size: 0.66rem;
  }

  .lead-form,
  .calculator {
    padding: 22px;
  }

  .footer-top {
    display: block;
  }

  .footer-top nav {
    margin-top: 22px;
  }
}
