:root {
  color-scheme: only light;
  --moss: #25402f;
  --moss-dark: #16291d;
  --leaf: #3f7b4f;
  --leaf-bright: #5b9c64;
  --cream: #f7f3e9;
  --cream-soft: #fbfaf5;
  --paper: #ffffff;
  --ink: #1d231c;
  --soft-ink: #4d584b;
  --muted: #6f786b;
  --line: #d9ddcf;
  --line-strong: #bec8b6;
  --whatsapp: #1faf55;
  --error: #a0352f;
  --success: #2f6f43;
  --radius: 8px;
  --shadow: 0 16px 38px rgba(30, 45, 31, 0.08);
  --header-h: 70px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--cream-soft);
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream-soft);
  text-rendering: optimizeLegibility;
}

body.lock-scroll {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

a {
  color: var(--leaf);
}

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

:focus-visible {
  outline: 3px solid var(--leaf-bright);
  outline-offset: 3px;
}

h1,
h2,
h3,
p,
ul,
figure,
blockquote {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  color: var(--moss-dark);
}

h1 {
  max-width: 12ch;
  font-size: 3.55rem;
  font-weight: 850;
}

h2 {
  max-width: 760px;
  font-size: 2.2rem;
  font-weight: 820;
}

h3 {
  font-size: 1.2rem;
  font-weight: 760;
}

address {
  font-style: normal;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.section,
.final-cta {
  padding-block: 76px;
}

.section-anchor {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 200;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--moss-dark);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: var(--header-h);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 245, 0.96);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: var(--moss-dark);
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.brand strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--leaf);
}

.nav-links a.btn {
  color: #fff;
}

.nav-links a.btn:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--moss);
  border-radius: var(--radius);
  background: var(--moss);
  color: #fff;
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn:hover {
  border-color: var(--leaf);
  background: var(--leaf);
  color: #fff;
}

.btn:active {
  transform: translateY(1px);
}

.btn-small {
  min-height: 40px;
  padding: 9px 15px;
  font-size: 0.93rem;
}

.btn-secondary {
  border-color: var(--line-strong);
  background: var(--paper);
  color: var(--moss-dark);
}

.btn-secondary:hover {
  border-color: var(--leaf);
  background: #eef5eb;
  color: var(--moss-dark);
}

.btn-whatsapp {
  border-color: var(--whatsapp);
  background: var(--whatsapp);
}

.btn-whatsapp:hover {
  border-color: #168743;
  background: #168743;
}

.btn-light {
  border-color: #fff;
  background: #fff;
  color: var(--moss-dark);
}

.btn-light:hover {
  border-color: #e7efdf;
  background: #e7efdf;
  color: var(--moss-dark);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
}

.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  padding-block: 62px 46px;
  background: linear-gradient(180deg, #fbfaf5 0%, #f1eddf 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.9fr);
  gap: 52px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.eyebrow {
  color: var(--leaf);
  font-size: 0.9rem;
  font-weight: 850;
}

.lead {
  max-width: 66ch;
  color: var(--soft-ink);
  font-size: 1.15rem;
}

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

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  max-width: 680px;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 28px;
  color: var(--soft-ink);
  font-weight: 720;
}

.trust-list li::before,
.trust-strip p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: inset 0 0 0 5px #dfead7;
}

.hero-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-photo figcaption {
  padding: 12px 14px;
  color: var(--soft-ink);
  font-size: 0.93rem;
  font-weight: 650;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--paper);
}

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

.trust-strip p {
  position: relative;
  min-height: 128px;
  padding: 26px 20px 22px 34px;
}

.trust-strip strong {
  display: block;
  color: var(--moss-dark);
  line-height: 1.25;
}

.trust-strip span {
  display: block;
  margin-top: 6px;
  color: var(--soft-ink);
  font-size: 0.94rem;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}

.section-head p:last-child {
  max-width: 690px;
  color: var(--soft-ink);
  font-size: 1.05rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.service-pills,
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.service-pills li,
.area-list li {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--soft-ink);
  font-size: 0.94rem;
  font-weight: 720;
}

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

.service-card {
  padding: 26px;
}

.card-label {
  color: var(--leaf);
  font-size: 0.88rem;
  font-weight: 850;
}

.service-card h3 {
  margin-top: 5px;
  margin-bottom: 16px;
}

.service-card details,
.faq-list details {
  border-top: 1px solid var(--line);
}

.service-card details:first-of-type,
.faq-list details:first-child {
  border-top: 0;
}

.service-card summary,
.faq-list summary {
  min-height: 48px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--moss-dark);
  font-weight: 760;
}

.service-card summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker {
  display: none;
}

.service-card summary::after,
.faq-list summary::after {
  content: "+";
  color: var(--leaf);
  font-size: 1.5rem;
  line-height: 1;
}

.service-card details[open] summary::after,
.faq-list details[open] summary::after {
  content: "-";
}

.service-card details p,
.faq-list details p {
  padding-bottom: 18px;
  color: var(--soft-ink);
}

.before-after {
  overflow: hidden;
  margin-bottom: 22px;
}

.compare {
  --pos: 50%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 300px;
  background: var(--line);
}

.compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-before {
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 3px;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.compare-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
  border: 2px solid var(--moss);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.compare-badge {
  position: absolute;
  top: 14px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(22, 41, 29, 0.84);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 820;
  pointer-events: none;
}

.compare-badge.before {
  left: 14px;
}

.compare-badge.after {
  right: 14px;
}

.compare-range {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  touch-action: none;
}

.compare:focus-within {
  outline: 3px solid var(--leaf-bright);
  outline-offset: 3px;
}

.before-after figcaption,
.gallery-card figcaption,
.about-photo figcaption {
  padding: 14px 16px;
  color: var(--soft-ink);
  font-size: 0.95rem;
}

.before-after strong,
.gallery-card strong {
  color: var(--moss-dark);
}

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

.gallery-card {
  overflow: hidden;
}

.photo-trigger {
  width: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.photo-trigger img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 180ms ease;
}

.photo-trigger:hover img {
  transform: scale(1.025);
}

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

.why-card,
.review {
  padding: 24px;
}

.why-card p {
  margin-top: 10px;
  color: var(--soft-ink);
}

.estimator {
  padding: 26px;
}

.js .est-step:not(.is-active) {
  display: none;
}

.est-question {
  color: var(--moss-dark);
  font-size: 1.12rem;
  font-weight: 800;
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.choice {
  min-height: 48px;
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--cream-soft);
  color: var(--ink);
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.choice span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 580;
}

.choice:hover,
.choice.is-selected,
.choice[aria-pressed="true"] {
  border-color: var(--leaf);
  background: #edf6ea;
}

.text-button {
  min-height: 44px;
  margin-top: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--leaf);
  font-weight: 780;
  text-decoration: underline;
  cursor: pointer;
}

.est-price {
  margin-top: 12px;
  color: var(--moss-dark);
  font-size: 2rem;
  font-weight: 850;
}

.est-message {
  margin-top: 8px;
  color: var(--soft-ink);
}

.selected-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.selected-summary span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--soft-ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.est-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.noscript-note {
  margin-bottom: 18px;
  padding: 12px;
  border-radius: var(--radius);
  background: #fff3ce;
  color: #614b05;
  font-weight: 700;
}

.review {
  display: grid;
  align-content: space-between;
  gap: 18px;
}

.review blockquote {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
}

.review figcaption {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 760;
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 36px;
  align-items: center;
  padding: 36px;
  border-radius: var(--radius);
  background: var(--moss-dark);
  color: #eef5eb;
}

.about-panel h2,
.about-panel .eyebrow {
  color: #fff;
}

.about-copy {
  display: grid;
  gap: 16px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 68ch;
  color: #dfebdd;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.about-facts p {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.about-facts strong,
.about-facts span {
  display: block;
}

.about-facts span {
  margin-top: 4px;
  color: #ccdcc8;
  font-size: 0.9rem;
}

.about-photo {
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-photo figcaption {
  color: #d7e5d4;
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: grid;
  gap: 12px;
}

.quote-copy > p:not(.eyebrow) {
  color: var(--soft-ink);
}

.contact-cards {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.contact-card {
  display: grid;
  gap: 3px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
}

.contact-card:hover {
  border-color: var(--leaf);
  color: var(--ink);
}

.contact-card span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
}

.contact-card strong {
  overflow-wrap: anywhere;
  color: var(--moss-dark);
  font-size: 1.05rem;
}

.quote-form {
  display: grid;
  gap: 15px;
  padding: 24px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.form-row {
  display: grid;
  gap: 6px;
}

.form-row label {
  color: var(--moss-dark);
  font-size: 0.95rem;
  font-weight: 760;
}

.form-row label span {
  color: var(--muted);
  font-weight: 650;
}

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

textarea {
  min-height: 128px;
  resize: vertical;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--error);
}

.field-error {
  min-height: 1.2em;
  color: var(--error);
  font-size: 0.88rem;
  font-weight: 720;
}

.form-consent,
.form-fallback {
  color: var(--muted);
  font-size: 0.93rem;
}

.form-status {
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 760;
}

.form-status.success {
  border: 1px solid #bad4bd;
  background: #edf7ed;
  color: var(--success);
}

.form-status.error {
  border: 1px solid #e0b9b5;
  background: #fff1ef;
  color: var(--error);
}

.submit-btn[disabled] {
  cursor: wait;
  opacity: 0.75;
}

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

.faq-list details {
  padding-inline: 20px;
}

.final-cta {
  padding-top: 30px;
}

.final-cta-panel {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 40px 28px;
  border-radius: var(--radius);
  background: var(--moss-dark);
  color: #e9f2e6;
  text-align: center;
}

.final-cta-panel h2 {
  color: #fff;
}

.final-cta-panel p {
  max-width: 620px;
  color: #dbe8d8;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 28px 14px;
}

.footer-grid strong {
  color: var(--moss-dark);
}

.footer-grid p {
  margin-top: 4px;
  color: var(--muted);
}

.footer-grid address {
  display: grid;
  gap: 4px;
  justify-items: end;
}

.footer-grid address a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--moss-dark);
  font-weight: 760;
}

.footer-small {
  padding-bottom: 100px;
  color: var(--muted);
}

.mobile-call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--moss-dark);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.18);
}

.mobile-call-bar a {
  flex: 1;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--leaf);
  color: #fff;
  font-weight: 820;
  text-decoration: none;
}

.mobile-call-bar a.wa {
  background: var(--whatsapp);
}

.lightbox {
  width: min(94vw, 1040px);
  max-height: 92vh;
  padding: 18px;
  border: 0;
  border-radius: var(--radius);
  background: #0f1811;
  color: #fff;
}

.lightbox::backdrop {
  background: rgba(8, 13, 9, 0.82);
}

.lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox p {
  margin-top: 12px;
  color: #e0eadf;
  font-weight: 700;
}

.lightbox-close {
  min-height: 44px;
  margin: 0 0 12px auto;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 760;
  cursor: pointer;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  h1 {
    font-size: 3rem;
  }

  .hero-grid,
  .quote-grid,
  .about-panel {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    position: static;
  }

  .trust-strip-grid,
  .why-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-facts {
    grid-template-columns: 1fr;
  }
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--moss-dark);
  border-radius: 2px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 79;
  background: rgba(22, 41, 29, 0.42);
}

.mobile-nav-overlay[hidden],
.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  background: var(--cream-soft);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(22, 41, 29, 0.12);
}

.mobile-nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.mobile-nav a:hover {
  background: var(--cream);
  color: var(--leaf);
}

.mobile-nav a.btn {
  margin-top: 6px;
  background: var(--moss);
  color: #fff;
  justify-content: center;
}

.mobile-nav a.btn:hover {
  background: var(--leaf);
  color: #fff;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  :root {
    --header-h: 64px;
  }

  h1 {
    font-size: 2.48rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section,
  .final-cta {
    padding-block: 56px;
  }

  .hero {
    padding-block: 42px 32px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links a:not(.btn) {
    display: none;
  }

  .nav-links a.btn {
    display: none;
  }

  .brand small {
    display: none;
  }

  .hero-actions .btn,
  .est-actions .btn {
    flex: 1 1 100%;
  }

  .trust-list,
  .trust-strip-grid,
  .service-groups,
  .gallery-grid,
  .why-grid,
  .review-grid,
  .form-split {
    grid-template-columns: 1fr;
  }

  .trust-strip p {
    min-height: 0;
    padding-block: 18px;
  }

  .compare {
    aspect-ratio: 4 / 3;
    min-height: 240px;
  }

  .about-panel {
    padding: 24px;
  }

  .footer-grid {
    display: grid;
  }

  .footer-grid address {
    justify-items: start;
  }

  .mobile-call-bar {
    display: flex;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.18rem;
  }

  h2 {
    font-size: 1.62rem;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .nav-links .btn {
    padding-inline: 12px;
  }

  .service-card,
  .quote-form,
  .estimator,
  .why-card,
  .review {
    padding: 18px;
  }

  .choice {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
