:root {
  --navy: #001229;
  --navy-2: #071d38;
  --navy-3: #0e2b4b;
  --gold: #bb8d34;
  --gold-light: #d8b76b;
  --cream: #f5f2ea;
  --white: #ffffff;
  --ink: #142033;
  --muted: #667386;
  --line: #d9dee5;
  --success: #1b6848;
  --shadow: 0 22px 60px rgba(0, 18, 41, 0.14);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.hidden { position: absolute !important; left: -9999px !important; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute;
  top: -80px; left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
}
.skip-link:focus { top: 16px; }

.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: .82rem;
}
.topbar-badges {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 9px 0;
}
.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
}
.topbar-badge svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}
.topbar-badge .icon-gold { color: var(--gold-light); }
.topbar-badge-link { transition: opacity .18s ease, transform .18s ease; }
.topbar-badge-link:hover,
.topbar-badge-link:focus-visible { opacity: .9; transform: translateY(-1px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0,18,41,.08);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
}
.navbar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-badge {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
}
.brand-badge svg { width: 35px; }
.brand-badge circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}
.brand-badge path { fill: currentColor; }
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-copy strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  letter-spacing: -.02em;
}
.brand-copy span {
  margin-top: 7px;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #26364a;
  font-size: .9rem;
  font-weight: 700;
}
.nav-menu > a:not(.button) { padding-block: 9px; }
.nav-menu > a:not(.button):hover,
.nav-menu > a:not(.button):focus-visible { color: var(--gold); }
.nav-review { color: var(--gold) !important; }
.menu-toggle {
  display: none;
  width: 45px; height: 45px;
  padding: 7px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle i {
  display: block;
  width: 27px; height: 2px;
  margin: 6px auto;
  background: var(--navy);
  transition: transform .18s ease, opacity .18s ease;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 2px solid var(--gold);
  border-radius: 7px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(187,141,52,.22);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover, .button:focus-visible {
  transform: translateY(-2px);
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.button-small { min-height: 43px; padding-inline: 16px; font-size: .85rem; }

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}
.hero-photo {
  position: absolute;
  inset: 0 0 0 42%;
  background-image: url("assets/hero-truck.webp");
  background-position: 48% center;
  background-size: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,18,41,1) 0%, rgba(0,18,41,.98) 35%, rgba(0,18,41,.75) 56%, rgba(0,18,41,.1) 82%),
    linear-gradient(0deg, rgba(0,18,41,.22), rgba(0,18,41,.02));
}
.hero-content {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding-block: 95px;
}
.hero-copy { max-width: 680px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--gold); }
.hero h1,
.section h2,
.review-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.035em;
}
.hero h1 { font-size: clamp(3.3rem, 6.3vw, 6.35rem); }
.hero-lede {
  max-width: 640px;
  margin: 27px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}
.button-ghost {
  border-color: rgba(255,255,255,.45);
  background: rgba(0,18,41,.35);
  color: var(--white);
  box-shadow: none;
}
.button-ghost:hover, .button-ghost:focus-visible {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}
.hero-note {
  max-width: 630px;
  margin: 27px 0 0;
  color: rgba(255,255,255,.62);
  font-size: .88rem;
}

.trust-strip { background: var(--gold); color: var(--navy); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.trust-grid div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 30px;
  border-left: 1px solid rgba(0,18,41,.2);
}
.trust-grid div:first-child { border-left: 0; }
.trust-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}
.trust-grid span {
  margin-top: 2px;
  font-size: .8rem;
  font-weight: 700;
}

.section { padding-block: 105px; }
.reassurance { background: var(--white); }
.reassurance-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
  gap: 90px;
}
.reassurance h2,
.section-heading h2,
.about-copy h2,
.family-card h2,
.area h2,
.faq h2,
.estimate h2 {
  font-size: clamp(2.65rem, 5vw, 4.65rem);
}
.reassurance p { margin: 0 0 17px; color: var(--muted); }
.text-link { color: var(--navy); font-weight: 900; }
.text-link span { color: var(--gold); }

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 48px;
}
.section-heading > p {
  max-width: 500px;
  margin: 0 0 8px;
  color: var(--muted);
}

.services { background: var(--cream); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}
.service-card {
  border: 1px solid rgba(0,18,41,.1);
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0,18,41,.04);
}
.service-card summary {
  min-height: 88px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.service-card summary::-webkit-details-marker { display: none; }
.service-card summary::after {
  grid-column: 3;
  content: "+";
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 1.55rem;
}
.service-card[open] summary::after { content: "–"; }
.service-icon {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: Arial, sans-serif;
  font-size: .75rem;
  font-weight: 900;
}
.service-card ul {
  margin: 0;
  padding: 0 26px 26px 92px;
  color: var(--muted);
}
.service-card li { margin-block: 5px; }

.projects { background: var(--navy); color: var(--white); }
.projects .section-heading > p { color: rgba(255,255,255,.62); }
.gallery {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-auto-rows: 300px;
  gap: 15px;
}
.gallery-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--navy-2);
}
.gallery-wide { grid-column: span 2; }
.gallery-tall { grid-row: span 2; }
.gallery-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
}
.gallery-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,18,41,.86), transparent 56%);
  content: "";
}
.gallery-card span {
  position: absolute;
  z-index: 2;
  right: 22px; bottom: 19px; left: 22px;
  display: flex;
  flex-direction: column;
  color: rgba(255,255,255,.76);
  font-size: .82rem;
}
.gallery-card strong {
  margin-bottom: 3px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}
.gallery-card:hover img, .gallery-card:focus-visible img {
  transform: scale(1.035);
  filter: brightness(1.06);
}

.projects-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.projects-footer p {
  margin: 0;
  color: rgba(255,255,255,.65);
}
.projects-footer .button { flex-shrink: 0; }

.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: 95px;
}
.portrait-wrap {
  position: relative;
  max-width: 480px;
}
.portrait-wrap::before {
  position: absolute;
  top: -16px; right: -16px;
  width: 68%; height: 68%;
  border: 9px solid var(--gold);
  content: "";
}
.portrait-wrap img {
  position: relative;
  width: 100%;
  aspect-ratio: .82;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.portrait-label {
  position: absolute;
  right: -28px; bottom: 28px;
  min-width: 245px;
  padding: 21px 24px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}
.portrait-label strong,
.portrait-label span { display: block; }
.portrait-label strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}
.portrait-label span {
  margin-top: 4px;
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.about-copy > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
}
.value-list { display: grid; gap: 17px; margin-top: 32px; }
.value-list div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}
.value-list strong { color: var(--navy); }
.value-list span { color: var(--muted); }
.family-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 65px;
  margin-top: 105px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--cream);
}
.family-card img {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 10px;
}
.family-card p:not(.eyebrow) { color: var(--muted); }

.area { background: var(--cream); }
.area-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: start;
  gap: 85px;
}
.area p:not(.eyebrow) { color: var(--muted); }
.area-note {
  padding-left: 16px;
  border-left: 4px solid var(--gold);
  font-weight: 700;
}
.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.city-list span {
  padding: 10px 14px;
  border: 1px solid rgba(0,18,41,.11);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: .85rem;
  font-weight: 800;
}

.faq { background: var(--white); }
.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: start;
  gap: 85px;
}
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary {
  position: relative;
  padding: 22px 40px 22px 0;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  position: absolute;
  top: 17px; right: 4px;
  color: var(--gold);
  content: "+";
  font-size: 1.6rem;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list p {
  margin: -5px 0 23px;
  padding-right: 40px;
  color: var(--muted);
}

.review-cta {
  padding-block: 62px;
  background: var(--gold);
  color: var(--navy);
}
.review-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.review-cta .eyebrow { color: var(--navy); }
.review-cta h2 {
  max-width: 790px;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
}
.button-dark {
  flex-shrink: 0;
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  box-shadow: none;
}
.button-dark:hover, .button-dark:focus-visible {
  border-color: var(--navy-3);
  background: var(--navy-3);
}

.estimate { background: var(--navy); color: var(--white); }
.estimate-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: start;
  gap: 85px;
}
.estimate-copy > p:not(.eyebrow) { color: rgba(255,255,255,.67); }
.contact-stack { display: grid; gap: 16px; margin-top: 34px; }
.contact-stack a,
.contact-stack > div {
  display: flex;
  flex-direction: column;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.contact-stack span {
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.contact-stack strong { margin-top: 2px; }
.contact-stack small { margin-top: 4px; color: rgba(255,255,255,.52); }

.estimate-form {
  display: grid;
  gap: 19px;
  padding: 38px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 17px;
}
.estimate-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: .85rem;
  font-weight: 800;
}
.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  border: 1px solid #cdd5de;
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  outline: none;
}
.estimate-form input,
.estimate-form select { min-height: 51px; padding: 0 13px; }
.estimate-form textarea { min-height: 165px; padding: 12px 13px; resize: vertical; }
.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(187,141,52,.18);
}
.check-label {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-weight: 500 !important;
}
.check-label input { width: 18px; min-height: 18px; margin-top: 2px; }
.estimate-form .button { justify-self: start; border: 0; }
.form-note { margin: -2px 0 0; color: var(--muted); font-size: .76rem; }

.site-footer {
  padding: 75px 0 24px;
  background: #000c1c;
  color: rgba(255,255,255,.63);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr .8fr .75fr;
  gap: 55px;
}
.footer-brand .brand-badge { background: var(--gold); color: var(--navy); }
.footer-brand .brand-copy strong { color: var(--white); }
.footer-brand .brand-copy span { color: rgba(255,255,255,.5); }
.footer-grid > div:first-child > p { max-width: 360px; margin-top: 20px; }
.footer-grid h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}
.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-grid a:hover, .footer-grid a:focus-visible { color: var(--gold-light); }
.footer-grid p, .footer-grid small { margin: 0; }
.footer-grid small { color: rgba(255,255,255,.45); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 58px;
  padding-top: 23px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .76rem;
}
.footer-bottom p { margin: 0; }

.mobile-actions { display: none; }

.thank-you {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
  background:
    radial-gradient(circle at 80% 15%, rgba(187,141,52,.2), transparent 25%),
    var(--navy);
  color: var(--white);
}
.thank-you-card {
  width: min(100%, 700px);
  padding: 50px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  text-align: center;
  box-shadow: var(--shadow);
}
.thank-you-card .brand { justify-content: center; margin-bottom: 36px; }
.thank-you-card .brand-copy strong { color: var(--white); }
.thank-you-card h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1;
}
.thank-you-card p { color: rgba(255,255,255,.7); }
.thank-you-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

@media (max-width: 1060px) {
  .nav-menu {
    position: fixed;
    top: 126px; right: 20px; left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { padding: 12px 10px !important; }
  .nav-menu .button { margin-top: 8px; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] i:nth-of-type(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:nth-of-type(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] i:nth-of-type(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero-photo { left: 34%; }
  .section-heading,
  .reassurance-grid,
  .about-grid,
  .area-grid,
  .faq-grid,
  .estimate-grid { gap: 55px; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 800px) {
  .topbar-badges { justify-content: center; row-gap: 10px; }
  .navbar { min-height: 73px; }
  .nav-menu { top: 115px; }
  .hero { min-height: 760px; }
  .hero-photo {
    inset: 0;
    background-position: 59% center;
  }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0,18,41,.98), rgba(0,18,41,.79)),
      linear-gradient(0deg, rgba(0,18,41,.6), transparent);
  }
  .hero-content { min-height: 760px; padding-block: 80px; }
  .hero-copy { max-width: 650px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid div:nth-child(3) { border-left: 0; border-top: 1px solid rgba(0,18,41,.2); }
  .trust-grid div:nth-child(4) { border-top: 1px solid rgba(0,18,41,.2); }
  .section-heading,
  .reassurance-grid,
  .about-grid,
  .area-grid,
  .faq-grid,
  .estimate-grid,
  .family-card { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2,1fr); grid-auto-rows: 270px; }
  .gallery-wide { grid-column: span 2; }
  .gallery-tall { grid-row: span 1; }
  .portrait-wrap { margin-inline: auto; }
  .family-card { gap: 32px; }
  .review-inner { flex-direction: column; align-items: flex-start; }
  .projects-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  body { padding-bottom: 62px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    padding-block: 10px;
  }
  .topbar-badge {
    min-width: 0;
    white-space: normal;
    line-height: 1.25;
    font-size: .74rem;
    justify-content: flex-start;
  }
  .topbar-badge svg { width: 18px; height: 18px; flex-basis: 18px; }
  .brand-badge { width: 40px; height: 40px; }
  .brand-copy strong { font-size: 1.12rem; }
  .brand-copy span { font-size: .61rem; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .section { padding-block: 78px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .trust-grid div { min-height: 100px; padding-inline: 19px; }
  .trust-grid strong { font-size: 1.25rem; }
  .service-card summary {
    grid-template-columns: 40px 1fr;
    padding-inline: 18px;
    font-size: 1.12rem;
  }
  .service-card ul { padding: 0 20px 23px 65px; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 290px; }
  .gallery-wide { grid-column: auto; }
  .portrait-label {
    right: 12px; bottom: 14px;
    min-width: 210px;
  }
  .value-list div { grid-template-columns: 1fr; gap: 5px; }
  .family-card { padding: 18px; }
  .family-card img { min-height: 280px; }
  .form-row { grid-template-columns: 1fr; }
  .estimate-form { padding: 24px; }
  .review-cta .button,
  .projects-footer .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { flex-direction: column; }
  .mobile-actions {
    position: fixed;
    z-index: 120;
    right: 0; bottom: 0; left: 0;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    background: var(--navy);
    box-shadow: 0 -10px 30px rgba(0,18,41,.2);
  }
  .mobile-actions a {
    min-height: 62px;
    display: grid;
    place-items: center;
    border-left: 1px solid rgba(255,255,255,.14);
    color: var(--white);
    font-size: .82rem;
    font-weight: 900;
  }
  .mobile-actions a:last-child { background: var(--gold); color: var(--navy); }
  .thank-you-card { padding: 34px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
