:root {
  --ink: #17201c;
  --muted: #5a6660;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --line: #dfe5df;
  --primary: #245846;
  --primary-dark: #143a2e;
  --accent: #d0a85b;
  --accent-soft: #f4e7c8;
  --sea: #e6f2f0;
  --shadow: 0 18px 50px rgba(23, 32, 28, 0.12);
  --radius: 8px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 128px;
}

body {
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  overflow-wrap: break-word;
  -webkit-tap-highlight-color: rgba(36, 88, 70, 0.18);
}

select {
  color-scheme: light;
}

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

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

a:hover {
  color: var(--primary);
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 246, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.topbar {
  display: flex;
  justify-content: flex-start;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 8px 24px;
  color: var(--muted);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.topbar p {
  margin: 0;
}

.nav {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand span {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 650;
}

.button,
.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  touch-action: manipulation;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button-primary,
.nav-cta {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(36, 88, 70, 0.2);
}

.button-primary:hover,
.nav-cta:hover {
  background: var(--primary-dark);
  color: #fff;
}

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

.button-light {
  background: #fff;
  color: var(--primary-dark);
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px 132px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  align-items: stretch;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.04;
  text-wrap: balance;
}

h1 {
  font-size: 4rem;
  max-width: 10ch;
  letter-spacing: 0;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.35rem;
}

.hero-lead {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.16rem;
  margin: 22px 0 0;
}

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

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0 0;
}

.proof-row div {
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}

.proof-row dt {
  color: var(--muted);
  font-size: 0.86rem;
}

.proof-row dd {
  margin: 0;
  font-weight: 850;
}

.hero-panel {
  position: relative;
  min-width: 0;
  min-height: 640px;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-form {
  width: min(390px, calc(100% - 32px));
  margin: 0;
  position: absolute;
  right: 16px;
  bottom: -72px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  gap: 10px;
}

.form-heading h2 {
  font-size: 1.35rem;
}

label {
  font-weight: 750;
  color: var(--ink);
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfd8d1;
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  padding: 11px 12px;
}

textarea {
  resize: vertical;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.button:focus-visible,
.nav-cta:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(208, 168, 91, 0.58);
  outline-offset: 3px;
}

.privacy-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.privacy-check a {
  color: var(--primary);
  text-decoration: underline;
}

.form-button {
  width: 100%;
  border: 0;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-copy {
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px;
  border-radius: var(--radius);
  background: var(--primary-dark);
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -58px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(226, 189, 112, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(226, 189, 112, 0.06), 0 0 0 36px rgba(226, 189, 112, 0.04);
  pointer-events: none;
}

.hero-copy .eyebrow {
  color: var(--accent-soft);
}

.hero-copy .hero-lead {
  color: #dcebe6;
}

.hero-copy .button-secondary {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
}

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

.hero-copy .proof-row {
  margin-top: auto;
}

.hero-copy .proof-row dt {
  color: #b9d0c7;
}

.hero-copy .proof-row dd {
  color: #fff;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 24px;
}

.intro-grid,
.split-section,
.price-band {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.intro-grid p,
.split-section p,
.price-band p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-grid article,
.trust-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.service-grid article:hover,
.trust-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(36, 88, 70, 0.34);
  box-shadow: 0 14px 30px rgba(23, 32, 28, 0.08);
}

.service-grid p,
.trust-grid p {
  color: var(--muted);
  margin: 12px 0 0;
}

.service-grid h3 a {
  transition: color 180ms ease;
}

.service-grid h3 a:hover {
  color: var(--primary);
}

.project-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 48px;
  align-items: center;
}

.project-image-wrap,
.neighborhood-image-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.project-image-wrap img,
.neighborhood-image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-copy {
  max-width: 540px;
}

.project-copy > p:not(.eyebrow),
.neighborhood-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 20px 0 0;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
  color: var(--primary);
  font-weight: 850;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.neighborhood-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
  padding: 72px max(24px, calc((100vw - 1180px) / 2 + 24px));
  background: #edf4f0;
}

.neighborhood-copy {
  max-width: 540px;
}

.neighborhood-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.neighborhood-list span {
  padding: 8px 12px;
  border: 1px solid rgba(36, 88, 70, 0.2);
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 750;
  font-size: 0.92rem;
}

.icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sea);
  color: var(--primary-dark);
  border-radius: 8px;
  font-weight: 900;
  margin-bottom: 16px;
}

.split-section {
  background: var(--sea);
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1180px) / 2 + 24px));
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.steps li {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(36, 88, 70, 0.13);
  border-radius: var(--radius);
  padding: 18px;
}

.price-band {
  background: var(--primary-dark);
  color: #fff;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1180px) / 2 + 24px));
}

.price-band .eyebrow,
.final-cta .eyebrow {
  color: var(--accent-soft);
}

.price-band p {
  color: #d9e6df;
}

.trust-section {
  padding-bottom: 32px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}

summary {
  min-height: 44px;
  cursor: pointer;
  font-weight: 850;
}

details p {
  color: var(--muted);
  margin: 8px 0 0;
}

.final-cta {
  margin: 48px auto 0;
  padding: 56px 24px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.final-cta div {
  max-width: 720px;
}

.final-cta p {
  color: #dcebe6;
  margin: 14px 0 0;
}

.footer {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 42px 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 0.9fr 1.2fr;
  gap: 24px;
  color: var(--muted);
}

.footer div {
  display: grid;
  gap: 8px;
}

.footer strong {
  color: var(--ink);
}

.footer p {
  margin: 0;
}

.footer-map iframe {
  width: 100%;
  min-height: 150px;
  border: 0;
  border-radius: var(--radius);
  margin-top: 4px;
}

.service-hero {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 56px 24px 72px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 48px;
  align-items: center;
}

.service-hero-copy {
  max-width: 570px;
}

.service-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-breadcrumb a {
  color: var(--primary);
  font-weight: 700;
}

.service-hero h1 {
  max-width: 12ch;
  font-size: 3.5rem;
}

.service-hero-copy > p:not(.eyebrow):not(.service-breadcrumb) {
  color: var(--muted);
  font-size: 1.12rem;
  margin: 22px 0 0;
}

.service-hero-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-points {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px 72px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-points article {
  padding: 24px;
  border-top: 3px solid var(--accent);
  background: var(--surface);
  border: 1px solid var(--line);
  border-top-width: 3px;
  border-radius: var(--radius);
}

.service-points h2 {
  font-size: 1.55rem;
}

.service-points p,
.service-copy p {
  color: var(--muted);
  margin: 12px 0 0;
}

.service-copy {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 72px 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.service-copy h2 {
  max-width: 12ch;
}

.service-copy .copy-body {
  max-width: 700px;
}

.service-copy .copy-body p:first-child {
  margin-top: 0;
}

.service-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding: 16px 18px 16px 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg);
}

.service-faq {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px 72px;
}

.service-faq .section-heading {
  margin-bottom: 22px;
}

.service-cta {
  margin: 0 auto;
  padding: 56px max(24px, calc((100vw - var(--content-width)) / 2 + 24px));
  background: var(--primary-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.service-cta h2 {
  max-width: 14ch;
}

.service-cta p {
  max-width: 58ch;
  margin: 14px 0 0;
  color: #d9e6df;
}

.service-cta .eyebrow {
  color: var(--accent-soft);
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero,
  .intro-grid,
  .project-feature,
  .neighborhood-band,
  .split-section,
  .price-band,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-panel {
    padding-top: 0;
    min-height: 560px;
  }

  .hero-image {
    min-height: 560px;
  }

  .hero-copy {
    min-height: 560px;
    padding: 40px;
  }

  .topbar {
    max-width: none;
  }

  .service-grid,
  .trust-grid,
  .service-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-hero,
  .service-copy {
    grid-template-columns: 1fr;
  }

  .service-hero {
    gap: 32px;
  }

  .service-copy {
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .topbar {
    align-items: center;
    flex-direction: column;
    gap: 4px;
    padding-left: 18px;
    padding-right: 18px;
    text-align: center;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.94rem;
  }

  .nav-cta,
  .button {
    width: 100%;
  }

  .hero {
    padding: 36px 18px 40px;
  }

  .proof-row,
  .service-grid,
  .trust-grid,
  .service-points {
    grid-template-columns: 1fr;
  }

  .quote-form {
    width: 100%;
    margin: 14px 0 0;
    position: static;
  }

  .hero-panel,
  .hero-image,
  .hero-copy {
    min-height: 0;
  }

  .hero-image {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .hero-copy {
    padding: 32px 24px;
  }

  h1 {
    font-size: 2.75rem;
  }

  .hero-copy::after {
    right: -90px;
    bottom: -96px;
  }

  .section {
    padding: 48px 18px;
  }

  .split-section,
  .price-band,
  .neighborhood-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .neighborhood-band {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .final-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 44px 18px;
  }

  .service-hero {
    padding: 36px 18px 48px;
    gap: 28px;
  }

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

  .service-points,
  .service-copy,
  .service-faq {
    padding-left: 18px;
    padding-right: 18px;
  }

  .service-points,
  .service-copy,
  .service-faq {
    padding-bottom: 48px;
  }

  .service-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 44px 18px;
  }
}

/* Keep the form in flow so text enlargement cannot overlap adjacent sections. */
.hero { padding-bottom: 64px; align-items: start; }
.hero-copy { min-height: 0; padding: 40px; }
.hero-copy::after { display: none; }
.hero-copy .proof-row { margin-top: 36px; }
.hero-panel { min-height: 0; }
.hero-image { height: auto; min-height: 0; aspect-ratio: 16 / 10; }
.quote-form { position: relative; inset: auto; width: 100%; margin: 24px 0 0; box-shadow: 0 8px 24px rgba(23,32,28,.07); }
.form-note a { text-decoration: underline; overflow-wrap: anywhere; }
.form-button:disabled { opacity: .65; cursor: not-allowed; box-shadow: none; }
.brand { min-width: 0; }
.brand img { flex-shrink: 0; }
.brand span { white-space: normal; }
.nav-links a { min-height: 44px; display: inline-flex; align-items: center; }
.footer { grid-template-columns: repeat(3,minmax(0,1fr)); }
.footer > div { min-width: 0; align-content: start; }
.footer a { overflow-wrap: anywhere; }
.footer-map { grid-column: 1 / -1; }
.footer-map iframe { height: 260px; }
.price-band { grid-template-columns: minmax(0,1fr) auto; align-items: center; }
.price-band .button { align-self: center; }
.split-section h2, .price-band h2 { margin-bottom: 20px; }
.steps li { background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; }
.neighborhood-list span { border: 0; border-radius: 0; background: transparent; padding: 8px 12px 8px 0; }
.project-image-wrap, .neighborhood-image-wrap { box-shadow: none; }
summary:focus-visible, button:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
[id] { scroll-margin-top: 140px; }
.service-hero-copy, .service-copy > div { min-width: 0; }
@media (max-width: 920px) {
  .site-header { position: relative; }
  .nav { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 12px; }
  .nav-links { width: 100%; order: 3; justify-content: space-between; }
  .hero-copy { padding: 32px; }
  .hero-panel { width: 100%; }
  .price-band { grid-template-columns: 1fr; }
  .price-band .button { justify-self: start; }
  [id] { scroll-margin-top: 24px; }
}
@media (max-width: 640px) {
  h2 { font-size: 2rem; }
  .nav { padding: 12px 18px; }
  .brand { font-size: .95rem; }
  .nav-cta { display: none; }
  .hero { padding: 24px 18px 40px; }
  .hero-copy { padding: 28px 24px; }
  .footer { grid-template-columns: 1fr; }
  .quote-form { padding: 20px; }
}

/* The home hero uses one image backdrop and an in-flow form. */
.home-page .hero {
  position: relative;
  isolation: isolate;
  max-width: none;
  padding: 48px max(24px, calc((100% - 1132px) / 2));
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 64px;
  align-items: center;
  background: var(--primary-dark);
}
.home-page .hero-panel { display: contents; }
.home-page .hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
}
.home-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(12, 32, 25, .62);
}
.home-page .hero-copy {
  padding: 24px 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.home-page .hero h1 { font-size: 4rem; max-width: 12ch; }
.home-page .hero-lead { max-width: 46ch; font-size: 1.125rem; color: #fff; }
.home-page .hero-copy .proof-row { margin-top: 32px; }
.home-page .quote-form { margin: 0; padding: 24px; gap: 6px; }
.home-page .quote-form label { font-size: .875rem; margin-top: 5px; }
.home-page .quote-form textarea { min-height: 80px; height: 80px; }
.home-page .form-heading { margin-bottom: 8px; }
.home-page .form-heading .eyebrow { margin-bottom: 6px; }
.home-page .form-note { margin-top: 8px; font-size: .8125rem; }
.home-page .section { padding-top: 64px; padding-bottom: 64px; }
.home-page .intro-grid { align-items: center; border-bottom: 1px solid var(--line); }
.home-page .service-grid { gap: 24px; }
.home-page .service-grid article { padding: 28px; }
.home-page .service-grid h3 { line-height: 1.2; }
.home-page .project-feature, .home-page .neighborhood-band { gap: 48px; }
.home-page .project-image-wrap img, .home-page .neighborhood-image-wrap img { height: auto; aspect-ratio: 4 / 3; }
.home-page .trust-grid article { padding: 28px; }
.home-page .final-cta { margin-top: 0; padding-inline: max(24px, calc((100% - 1132px) / 2)); }
.home-page .final-cta > div { flex: 1; min-width: 0; }
.home-page .final-cta > a { overflow-wrap: anywhere; }
@media (max-width: 1050px) {
  .home-page .hero { gap: 32px; }
  .home-page .hero h1 { font-size: 3.5rem; }
  .home-page .hero-copy .proof-row { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 760px) {
  .home-page .hero { grid-template-columns: 1fr; padding: 32px 24px; gap: 24px; }
  .home-page .hero-copy { padding: 0; }
  .home-page .hero h1 { font-size: 3rem; }
  .home-page .quote-form { max-width: 540px; justify-self: center; }
  .home-page .hero-copy .proof-row { grid-template-columns: repeat(3,minmax(0,1fr)); font-size: .875rem; }
  .home-page .section { padding-top: 40px; padding-bottom: 40px; }
  .home-page .final-cta { flex-direction: column; align-items: stretch; }
}
@media (max-width: 400px) {
  .home-page .hero { padding-inline: 18px; }
  .home-page .hero h1 { font-size: 2.75rem; }
  .home-page .hero-copy .proof-row { grid-template-columns: 1fr; }
}

.brand-logo { width: 220px; height: auto; object-fit: contain; }
.footer .brand-logo { width: 200px; }
@media (max-width: 640px) {
  .brand-logo { width: 190px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
/* Service navigation and image cards. */
.services-dropdown { position: relative; border: 0; padding: 0; background: transparent; }
.services-dropdown > summary { min-height: 44px; display: list-item; list-style: disclosure-closed inside; padding: 10px 0; cursor: pointer; font: inherit; color: inherit; }
.services-dropdown[open] > summary { list-style-type: disclosure-open; }
.services-dropdown > summary::after { content: none; }
.services-menu { position: absolute; top: 100%; left: 0; z-index: 30; width: 280px; max-width: calc(100vw - 36px); margin: 4px 0 0; padding: 8px; list-style: none; background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 12px 30px rgba(23,32,28,.12); }
.nav-links .services-menu a { display: flex; min-height: 44px; padding: 10px 12px; color: var(--ink); line-height: 1.4; white-space: normal; }
.services-menu a:hover, .services-menu a:focus-visible, .services-menu a[aria-current="page"] { background: var(--sea); color: var(--primary-dark); }
.services-menu li:last-child { border-top: 1px solid var(--line); margin-top: 4px; }
.home-page .service-grid article { padding: 0 0 24px; overflow: hidden; border-radius: 8px; }
.service-card-image { display: block; width: 100%; aspect-ratio: 16 / 10; overflow: hidden; }
.service-card-image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.home-page .service-grid h3 { margin: 22px 24px 0; font-size: 1.5rem; }
.home-page .service-grid p { margin: 12px 24px 0; }
@media (max-width: 920px) {
  .nav-links { align-items: flex-start; }
  .services-dropdown { flex: 0 0 100%; }
  .services-dropdown > summary { width: fit-content; }
  .services-menu { position: static; width: 100%; max-width: none; box-sizing: border-box; box-shadow: none; margin: 0 0 8px; }
}


.topbar { align-items: center; flex-wrap: wrap; column-gap: 24px; }
.topbar .contact-phone { display: inline-flex; align-items: center; min-height: 44px; font-weight: 700; white-space: nowrap; }


/* Keep keyboard focus clear and service headings readable. */
summary:focus-visible, button:focus-visible, a:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}
.hero-copy a:focus-visible, .service-cta a:focus-visible,
.final-cta a:focus-visible { outline-color: var(--accent); }
.service-copy h2 { max-width: 22ch; line-height: 1.15; }
.footer a { min-height: 44px; display: inline-flex; align-items: center; }
.error-title { max-width: 20ch; margin-top: 20px; }
@media (min-width: 921px) and (max-width: 1100px) {
  .site-header { position: relative; }
  [id] { scroll-margin-top: 24px; }
}


/* Two clear contact options, with wrapping on narrow screens. */
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button-outline-light { color: #fff; background: transparent; border-color: rgba(255,255,255,.75); }
.button-outline-light:hover { color: var(--primary-dark); background: #fff; }
.service-cta > .cta-actions, .home-page .final-cta > .cta-actions { flex: 0 1 390px; }
.price-band > .cta-actions { justify-content: flex-start; }
.price-band > [data-calculator-open] { grid-column: 1 / -1; justify-self: start; }
@media (max-width: 640px) {
  .service-cta > .cta-actions, .home-page .final-cta > .cta-actions { flex-basis: auto; }
  .cta-actions { width: 100%; }
  .cta-actions .button { flex: 1 1 180px; text-align: center; }
}


/* Mobile disclosure navigation; without JavaScript the links remain visible. */
.nav-toggle { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 48px; width: 48px; height: 48px; padding: 0; color: var(--primary-dark); background: var(--surface); border: 1px solid var(--line); border-radius: 4px; cursor: pointer; }
.nav-toggle[hidden], .nav-links[hidden] { display: none !important; }
.nav-toggle:hover, .nav-toggle[aria-expanded="true"] { background: var(--sea); }
@media (max-width: 920px) {
  .nav-toggle { margin-left: auto; order: 2; }
  .nav > .nav-cta { display: none; }
  .nav .nav-links { flex-direction: column; align-items: stretch; justify-content: flex-start; width: 100%; gap: 0; padding: 12px 0 0; border-top: 1px solid var(--line); }
  .nav-links > a, .nav-links > .nav-calculator, .services-dropdown > summary { width: 100%; min-height: 48px; padding: 12px; }
  .nav-links > .nav-calculator { margin-block: 8px; text-align: left; }
  .services-dropdown { flex-basis: auto; }
  .services-menu { width: 100%; margin-bottom: 12px; }
  .nav .brand-logo { max-width: min(190px, calc(100vw - 108px)); }
}
