:root {
  color-scheme: light;
  --font: "Inter", "Segoe UI Variable Text", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --navy-950: #001b33;
  --navy-900: #012d54;
  --navy-700: #0a3f6a;
  --green-700: #3f7f2e;
  --green-500: #4e9539;
  --green-300: #8bcb6b;
  --green-050: #eaf3e7;
  --whatsapp-green: #25d366;
  --concrete-050: #f3f5f4;
  --concrete-100: #e4eaec;
  --steel-600: #475965;
  --white: #ffffff;
  --danger: #b42318;
  --page: var(--concrete-050);
  --surface: var(--white);
  --surface-alt: var(--green-050);
  --text: var(--navy-900);
  --muted: var(--steel-600);
  --line: rgba(1, 45, 84, .20);
  --line-strong: rgba(1, 45, 84, .42);
  --line-inverse: rgba(255, 255, 255, .22);
  --header: rgba(255, 255, 255, .97);
  --header-text: var(--navy-900);
  --focus: var(--green-500);
  --shell: 1320px;
  --header-height: 82px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --shadow-header: 0 12px 28px rgba(0, 27, 51, .10);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  min-width: 0;
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background: var(--page);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a,
button,
summary,
select,
input[type="range"] {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(78, 149, 57, .20);
}

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

button,
summary,
select {
  cursor: pointer;
}

img,
picture,
svg {
  display: block;
}

img {
  max-width: 100%;
}

figure,
p,
h1,
h2,
h3,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  color: inherit;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1;
  text-wrap: balance;
}

h1 {
  font-size: clamp(48px, 6.6vw, 94px);
  line-height: .95;
}

h2 {
  font-size: clamp(38px, 4.7vw, 68px);
  line-height: .98;
}

h3 {
  font-size: clamp(22px, 2.1vw, 32px);
  line-height: 1.08;
}

p {
  margin-bottom: 0;
}

::selection {
  color: var(--navy-950);
  background: var(--green-300);
}

:focus {
  scroll-margin-top: calc(var(--header-height) + 28px);
  scroll-margin-bottom: 76px;
}

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

.shell {
  width: min(var(--shell), calc(100% - 64px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(88px, 10vw, 144px);
}

.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: fixed;
  top: 12px;
  left: 16px;
  z-index: 200;
  padding: 12px 16px;
  color: var(--navy-950);
  background: var(--green-300);
  font-size: 14px;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform .2s var(--ease);
}

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

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-700);
}

.eyebrow span::before {
  width: 30px;
  height: 3px;
  background: currentColor;
  content: "";
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 15px 22px;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.01em;
  text-align: center;
  transition: color .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease);
}

.button > * {
  position: relative;
  z-index: 1;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
  transition: transform .22s var(--ease);
}

.button:not(:disabled):hover {
  transform: translateY(-2px);
}

.button:not(:disabled):hover svg {
  transform: translateX(4px);
}

.button:not(:disabled):active {
  transform: translateY(0);
}

.button-solid {
  color: var(--white);
  background-color: var(--green-700);
  background-image: none;
  box-shadow: none;
}

.button-solid::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--navy-900);
  content: "";
  pointer-events: none;
  transform: translateX(-101%);
  transition: transform .34s var(--ease);
}

.button-solid:not(:disabled):hover::before,
.button-solid:not(:disabled):focus-visible::before {
  transform: translateX(0);
}

.button-solid:not(:disabled):hover,
.button-solid:not(:disabled):focus-visible {
  box-shadow: none;
}

.button-small {
  min-height: 46px;
  padding: 12px 18px;
  font-size: 13px;
}

.button-hero {
  min-height: 62px;
  padding-inline: 28px;
  font-size: 15px;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  border-bottom: 2px solid var(--green-500);
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  transition: color .2s var(--ease), border-color .2s var(--ease), gap .2s var(--ease);
}

.text-link:hover {
  gap: 18px;
  color: var(--green-700);
  border-color: currentColor;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--header-height);
  color: var(--header-text);
  background: var(--header);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px) saturate(140%);
  transition: box-shadow .24s var(--ease), border-color .24s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line-strong);
  box-shadow: var(--shadow-header);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
}

.brand {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  padding: 6px;
  background: var(--navy-900);
  box-shadow: 4px 4px 0 rgba(1, 45, 84, .16);
  transition: background-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}

.brand:hover {
  box-shadow: 4px 5px 0 rgba(1, 45, 84, .22);
  transform: translateY(-1px);
}

.brand-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 40px);
}

.site-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--header-text);
  font-size: 13px;
  font-weight: 750;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 3px;
  background: var(--green-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .26s var(--ease);
}

.site-nav a:hover::after,
.site-nav a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.phone-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--header-text);
  font-size: 13px;
  font-weight: 800;
}

.phone-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--green-500);
  stroke-width: 1.8;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  color: var(--header-text);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .22s var(--ease), opacity .22s var(--ease);
}

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

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

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

.noscript-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 18px;
  color: var(--white);
  background: var(--navy-900);
}

/* Hero: full-bleed, image-led presentation */
.hero {
  padding: 0;
  background: var(--navy-950);
}

.hero .hero-shell {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: min(1060px, calc(100svh - var(--header-height) + 132px));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: clamp(62px, 8vw, 112px) 24px;
  overflow: hidden;
  border: 0;
  background: var(--navy-950);
}

.hero-shell::before {
  display: none;
}

.hero-shell::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 44%, rgba(0, 27, 51, .02), rgba(0, 27, 51, .22) 82%),
    linear-gradient(180deg, rgba(0, 27, 51, .08), rgba(0, 27, 51, .28));
  content: "";
  pointer-events: none;
}

.hero-media,
.hero-image-frame,
.hero-image-frame picture {
  position: absolute;
  inset: 0;
}

.hero-media {
  margin: 0;
}

.hero-image-frame {
  overflow: hidden;
  background: var(--navy-950);
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 27, 51, .02), rgba(0, 27, 51, .10));
  content: "";
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 48%;
  transform: scale(1.025);
  animation: hero-image-in .9s .08s var(--ease) forwards;
}

@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .hero-media {
    --hero-rotate-x: 0deg;
    --hero-rotate-y: 0deg;
    --hero-shift-x: 0px;
    --hero-shift-y: 0px;
  }

  .hero-image-frame picture {
    inset: -1%;
    transform:
      perspective(1600px)
      translate3d(var(--hero-shift-x), var(--hero-shift-y), 0)
      rotateX(var(--hero-rotate-x))
      rotateY(var(--hero-rotate-y))
      scale(1.02);
    transform-origin: center;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: transform .36s cubic-bezier(.2, .75, .2, 1);
    will-change: transform;
  }

  .hero-media.is-tilting .hero-image-frame picture {
    transition-duration: 90ms;
    transition-timing-function: linear;
  }
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 48px));
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-inline: auto;
  padding: 0;
  color: var(--white);
  text-align: center;
  text-shadow: 0 3px 28px rgba(0, 23, 43, .78), 0 1px 3px rgba(0, 23, 43, .84);
  animation: hero-panel-in .72s .1s var(--ease) both;
}

.hero-copy::before,
.hero-copy::after {
  display: none;
}

.hero .eyebrow {
  justify-content: center;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .88);
}

.hero .eyebrow span {
  color: var(--green-300);
}

.hero h1 {
  max-width: 920px;
  color: var(--white);
  font-size: clamp(52px, 5.7vw, 82px);
  line-height: .98;
}

.hero-lead {
  max-width: 760px;
  margin-top: 28px;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.hero-reviews {
  width: min(676px, 100%);
  display: grid;
  grid-template-columns: minmax(250px, .9fr) 1px minmax(300px, 1.1fr);
  align-items: stretch;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(0, 27, 51, .52);
  box-shadow: 0 10px 26px rgba(0, 18, 34, .18);
  color: var(--white);
  text-align: left;
  text-shadow: none;
  backdrop-filter: blur(8px);
}

.hero-rating {
  min-width: 0;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  column-gap: 8px;
  padding: 12px 14px;
  transition: background-color .2s var(--ease);
}

.hero-rating:hover {
  background: rgba(255, 255, 255, .06);
}

.hero-rating:focus-visible {
  outline-color: var(--green-300);
  outline-offset: -4px;
}

.hero-rating-stars {
  color: #ffc247;
  font-size: 15px;
  letter-spacing: .04em;
  line-height: 1;
}

.hero-rating strong {
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
}

.hero-rating-source {
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.3;
}

.hero-review-rule {
  width: 1px;
  margin-block: 10px;
  background: rgba(255, 255, 255, .14);
}

.hero-review-latest {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 6px 12px;
  padding: 10px 14px;
}

.hero-review-latest > .hero-review-copy {
  min-width: 0;
  display: flex;
  align-self: stretch;
  justify-content: center;
  flex-direction: column;
  transition: background-color .2s var(--ease), box-shadow .2s var(--ease);
}

.hero-review-copy:hover {
  background: rgba(255, 255, 255, .035);
}

.hero-review-copy:focus-visible {
  outline: 2px solid var(--green-300);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px rgba(0, 27, 51, .72);
}

.hero-review-stage {
  min-width: 0;
  display: grid;
}

.hero-review-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(3px);
  transition:
    opacity .28s var(--ease),
    transform .28s var(--ease),
    visibility 0s linear .28s;
}

.hero-review-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.hero-review-label {
  margin-bottom: 1px;
  color: rgba(139, 203, 107, .82);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-review-latest blockquote {
  min-width: 0;
  margin: 0;
}

.hero-review-latest blockquote p {
  overflow: hidden;
  color: var(--white);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-review-latest blockquote footer {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 8px;
  margin-top: 3px;
  color: rgba(255, 255, 255, .68);
  font-size: 10px;
  line-height: 1.35;
}

.hero-review-latest blockquote footer strong {
  color: rgba(255, 255, 255, .84);
}

.hero-review-status {
  min-width: 88px;
  display: flex;
  align-self: stretch;
  align-items: flex-end;
  justify-content: space-between;
  flex-direction: column;
  gap: 4px;
}

.hero-review-controls {
  display: flex;
  align-items: center;
  gap: 1px;
}

.hero-review-controls button {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, .74);
  background: transparent;
}

.hero-review-controls button:focus-visible {
  outline: 2px solid var(--green-300);
  outline-offset: -1px;
}

.hero-review-dot span {
  width: 5px;
  height: 5px;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 50%;
  background: transparent;
  transition: width .2s var(--ease), border-color .2s var(--ease), background-color .2s var(--ease);
}

.hero-review-dot:hover span {
  border-color: var(--white);
}

.hero-review-dot.is-active span {
  width: 11px;
  border-color: rgba(139, 203, 107, .92);
  border-radius: 5px;
  background: rgba(139, 203, 107, .92);
}

.hero-review-snapshot {
  color: rgba(255, 255, 255, .60);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .04em;
  line-height: 1.3;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes hero-image-in {
  to { transform: scale(1); }
}

@keyframes hero-panel-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Services */
.services {
  background: var(--page);
}

.services-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  align-items: end;
  gap: 48px;
  margin-bottom: 58px;
}

.services-heading h2 {
  position: relative;
  padding-left: 28px;
}

.services-heading h2::before {
  position: absolute;
  top: .08em;
  bottom: .08em;
  left: 0;
  width: 7px;
  background: var(--green-500);
  content: "";
}

.services-heading p {
  color: var(--muted);
  font-size: 16px;
}

.service-list {
  border-top: 1px solid var(--line-strong);
}

.service-panel {
  border-bottom: 1px solid var(--line-strong);
}

.service-panel > summary {
  min-height: 116px;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 24px 16px 24px 0;
  list-style: none;
  transition: color .24s var(--ease), background .24s var(--ease), padding .24s var(--ease);
}

.service-panel > summary::-webkit-details-marker {
  display: none;
}

.service-panel > summary:hover,
.service-panel[open] > summary {
  padding-left: 16px;
  color: var(--navy-900);
  background: var(--green-050);
}

.service-panel .service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--green-700);
  border: 1px solid var(--line-strong);
  background: var(--surface);
  box-shadow: inset 3px 0 0 var(--green-500);
  transition: color .24s var(--ease), border-color .24s var(--ease), background .24s var(--ease), transform .24s var(--ease);
}

.service-panel .service-icon svg {
  width: 28px;
  height: 28px;
}

.service-panel > summary:hover .service-icon,
.service-panel[open] > summary .service-icon {
  color: var(--navy-950);
  border-color: var(--green-500);
  background: var(--green-500);
  transform: translateX(2px);
}

.service-panel h3 {
  color: inherit;
  font-size: clamp(24px, 3vw, 42px);
}

.service-toggle {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.service-toggle i {
  position: relative;
  width: 48px;
  height: 48px;
  display: block;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  transition: background .24s var(--ease), border-color .24s var(--ease), transform .24s var(--ease);
}

.service-toggle i::before,
.service-toggle i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--text);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform .24s var(--ease), background .24s var(--ease), opacity .2s var(--ease);
}

.service-toggle i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-panel[open] .service-toggle i {
  border-color: var(--green-500);
  background: var(--green-500);
}

.service-panel[open] .service-toggle i::before,
.service-panel[open] .service-toggle i::after {
  background: var(--navy-950);
}

.service-panel[open] .service-toggle i::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.service-panel-body {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 8px solid var(--green-500);
  background: var(--surface);
  animation: panel-open .42s var(--ease) both;
}

@keyframes panel-open {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

.service-image-wrap {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: var(--concrete-100);
  border-right: 1px solid var(--line);
}

.service-image-wrap picture,
.service-image-wrap img {
  width: 100%;
  height: 100%;
}

.service-image-wrap img {
  object-fit: cover;
  transition: transform .65s var(--ease), filter .4s var(--ease);
}

.service-panel:hover .service-image-wrap img {
  transform: scale(1.025);
}

.service-panel--repair .service-image-wrap img { object-position: 52% 52%; }
.service-panel--renovation .service-image-wrap img { object-position: 54% 48%; }
.service-panel--caretaking .service-image-wrap img { object-position: 48% 48%; }
.service-panel--garden .service-image-wrap img { object-position: 50% 52%; }
.service-panel--cleaning .service-image-wrap img { object-position: 54% 42%; }

.service-scope {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 68px);
}

.service-scope-title {
  margin-bottom: 24px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.service-scope ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.service-scope li {
  position: relative;
  padding-left: 24px;
}

.service-scope li::before {
  position: absolute;
  top: .63em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--green-500);
  content: "";
}

.scope-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 44px;
  padding: 24px 28px;
  color: rgba(255, 255, 255, .78);
  background: var(--navy-900);
  border-left: 8px solid var(--green-500);
}

.scope-note > span {
  color: var(--green-300);
  font-size: 28px;
}

.scope-note strong {
  color: var(--white);
}

/* Before / after */
.renovation-showcase {
  color: var(--white);
  background: var(--navy-950);
}

.renovation-showcase::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(42vw, 620px);
  height: 10px;
  background: var(--green-500);
  content: "";
}

.renovation-compare {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(540px, 1.15fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}

.compare-copy .eyebrow {
  color: rgba(255, 255, 255, .66);
}

.compare-copy h2 {
  color: var(--white);
}

.compare-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 28px;
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
}

.compare-points {
  display: grid;
  gap: 16px;
  margin: 32px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, .76);
  list-style: none;
}

.compare-points li {
  position: relative;
  padding-left: 26px;
}

.compare-points li::before {
  position: absolute;
  top: .62em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--green-300);
  content: "";
}

.compare-visual {
  margin: 0;
}

.compare-image-wrap {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .34);
  background: var(--navy-900);
  box-shadow: 14px 14px 0 rgba(78, 149, 57, .26);
}

.compare-image-wrap picture,
.compare-image-wrap img {
  width: 100%;
  height: 100%;
}

.compare-image-wrap img {
  object-fit: cover;
}

.compare-slider {
  --compare-position: 50%;
}

.compare-slider .compare-image {
  position: absolute;
  inset: 0;
}

.compare-image-before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--compare-position)) 0 0);
}

.compare-image-after {
  z-index: 1;
}

.compare-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.compare-label {
  position: absolute;
  top: 16px;
  z-index: 4;
  padding: 8px 11px;
  color: var(--navy-950);
  background: var(--green-300);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.compare-label-before { left: 16px; }
.compare-label-after { right: 16px; }

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-position);
  z-index: 3;
  width: 3px;
  background: var(--green-300);
  transform: translateX(-50%);
  pointer-events: none;
}

.compare-divider::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 3px solid var(--navy-950);
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--green-300);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .85);
  content: "↔";
  font-size: 18px;
  font-weight: 900;
  transform: translate(-50%, -50%);
  transition: transform .2s var(--ease), background .2s var(--ease);
}

.compare-range:focus-visible {
  outline: 0;
}

.compare-range:focus-visible ~ .compare-divider::after {
  background: var(--white);
  box-shadow: 0 0 0 4px var(--green-300);
  transform: translate(-50%, -50%) scale(1.08);
}

.compare-instruction {
  margin-top: 16px;
  color: rgba(255, 255, 255, .60);
  font-size: 12px;
}

.compare-disclosure {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.compare-disclosure::before {
  width: 18px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--green-300);
  content: "";
}

/* Owner */
.owner {
  background: var(--surface);
}

.owner-grid {
  display: grid;
  grid-template-columns: minmax(380px, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: clamp(52px, 9vw, 128px);
}

.owner-media {
  position: relative;
  margin: 0;
  padding-right: 34px;
  padding-bottom: 34px;
}

.owner-media::before {
  position: absolute;
  top: 24px;
  right: 0;
  bottom: 0;
  left: 34px;
  background: var(--green-050);
  content: "";
}

.owner-image-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--concrete-100);
}

.owner-image-frame picture,
.owner-image-frame img {
  width: 100%;
  height: 100%;
}

.owner-image-frame img {
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(.94) contrast(1.02);
  transition: transform .65s var(--ease), filter .4s var(--ease);
}

.owner-media:hover .owner-image-frame img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.03);
}

.owner-media figcaption {
  position: relative;
  z-index: 2;
  width: calc(100% - 52px);
  display: grid;
  gap: 4px;
  margin: -76px 0 0 52px;
  padding: 20px 24px;
  color: rgba(255, 255, 255, .76);
  background: var(--navy-900);
  border-left: 7px solid var(--green-500);
}

.owner-media figcaption strong {
  color: var(--white);
  font-size: 22px;
}

.owner-media figcaption span {
  font-size: 13px;
}

.owner-media figcaption .owner-qualification {
  color: var(--green-300);
  font-weight: 750;
}

.owner-media figcaption .owner-ai-disclosure {
  margin-top: 5px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.4;
}

.owner-copy {
  max-width: 720px;
  padding: clamp(36px, 5vw, 66px) 0 clamp(36px, 5vw, 66px) clamp(30px, 5vw, 70px);
  border-top: 7px solid var(--green-500);
  border-left: 1px solid var(--line);
}

.owner-copy h2 {
  max-width: 690px;
}

.owner-lead {
  margin-top: 30px;
  color: var(--text);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.owner-profile {
  max-width: 640px;
  margin-top: 20px;
  color: var(--muted);
}

.owner-copy > .button {
  margin-top: 30px;
}

/* Process */
.process {
  background: var(--surface-alt);
}

.section-intro,
.tax-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  align-items: end;
  gap: clamp(44px, 8vw, 104px);
  margin-bottom: 64px;
}

.section-intro > p,
.tax-head > p {
  color: var(--muted);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 300px;
  padding: 34px 28px 38px;
  border-right: 1px solid var(--line-strong);
  transition: color .24s var(--ease), background .24s var(--ease), transform .24s var(--ease);
}

.process-list li:last-child {
  border-right: 0;
}

.process-list li:hover {
  color: var(--white);
  background: var(--navy-900);
  transform: translateY(-8px);
}

.process-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 46px;
  color: var(--navy-950);
  background: var(--green-300);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .09em;
}

.process-line {
  position: absolute;
  top: 58px;
  right: 0;
  left: 76px;
  height: 1px;
  background: var(--line-strong);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}

.process-list li.is-visible .process-line,
.process-list li:hover .process-line {
  transform: scaleX(1);
}

.process-list h3 {
  color: inherit;
  font-size: clamp(22px, 2vw, 28px);
}

.process-list p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
}

.process-list li:hover p {
  color: rgba(255, 255, 255, .72);
}

/* Tax band */
.tax-band {
  background: var(--page);
  border-top: 1px solid var(--line);
}

.tax-head {
  align-items: start;
}

.tax-head h2 {
  max-width: 760px;
}

.tax-rules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.tax-rules article {
  padding: 34px 32px 40px;
  border-right: 1px solid var(--line-strong);
}

.tax-rules article:last-child {
  border-right: 0;
}

.tax-paragraph {
  min-height: 48px;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 36px;
  color: var(--green-700);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 850;
  line-height: 1;
  border-bottom: 3px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}

.tax-paragraph:hover {
  border-color: currentColor;
}

.tax-paragraph small {
  font-size: 11px;
  letter-spacing: .10em;
}

.tax-rules h3 {
  font-size: 23px;
}

.tax-rules p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
}

.tax-disclaimer {
  margin-top: 24px;
  color: var(--muted);
  font-size: 12px;
}

/* Contact */
.contact {
  color: var(--white);
  background: var(--navy-900);
}

.contact::before {
  position: absolute;
  top: 0;
  left: 0;
  width: min(36vw, 520px);
  height: 10px;
  background: var(--green-500);
  content: "";
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(540px, 1.12fr);
  align-items: start;
  gap: clamp(50px, 8vw, 112px);
}

.contact .eyebrow {
  color: rgba(255, 255, 255, .64);
}

.contact .eyebrow span {
  color: var(--green-300);
}

.contact-copy h2 {
  max-width: 620px;
  color: var(--white);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin-top: 26px;
  color: rgba(255, 255, 255, .72);
}

.contact-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin-top: 44px;
  border-top: 1px solid var(--line-inverse);
  border-left: 1px solid var(--line-inverse);
}

.contact-cards > .contact-card {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 22px 24px;
  border-right: 1px solid var(--line-inverse);
  border-bottom: 1px solid var(--line-inverse);
  transition: color .24s var(--ease), background .24s var(--ease), transform .24s var(--ease);
}

.contact-cards > a.contact-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) 48px;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: clamp(18px, 3vw, 32px);
  row-gap: 5px;
}

.contact-cards > a.contact-card:hover {
  color: var(--navy-950);
  background: var(--green-300);
  transform: translateY(-4px);
}

.contact-card-head {
  display: contents;
}

.contact-card-icon-frame {
  grid-column: 3;
  grid-row: 1 / 3;
  justify-self: end;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 20, 38, .2);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease);
}

.contact-card-icon-frame--instagram {
  background:
    radial-gradient(circle at 31% 107%, #feda75 0 11%, #fa7e1e 28%, #d62976 48%, transparent 69%),
    linear-gradient(135deg, #4f5bd5 5%, #962fbf 42%, #d62976 70%, #fa7e1e 100%);
}

.contact-card-icon-frame--email {
  background: var(--navy-700);
  border: 1px solid rgba(255, 255, 255, .28);
}

.contact-card-icon {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-card-icon--instagram .contact-card-icon-dot {
  fill: var(--white);
  stroke: none;
}

.contact-card-icon--email {
  width: 25px;
  height: 25px;
}

.contact-cards > a.contact-card:hover .contact-card-icon-frame {
  box-shadow: 0 10px 24px rgba(0, 20, 38, .26);
  transform: translateY(-2px) scale(1.03);
}

.contact-card-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.contact-card-label {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
}

.contact-card-value {
  color: inherit;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.15;
  white-space: nowrap;
}

.contact-card-value {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  align-self: end;
}

.contact-whatsapp-action {
  grid-column: 3;
  grid-row: 1 / 3;
  justify-self: end;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--whatsapp-green);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 14px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}

.contact-whatsapp-action svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.contact-card--phone-whatsapp:hover .contact-whatsapp-action,
.contact-card--phone-whatsapp:focus-visible .contact-whatsapp-action {
  color: var(--white);
  background: var(--whatsapp-green);
  box-shadow: 0 10px 24px rgba(0, 20, 38, .26);
  transform: translateY(-2px) scale(1.03);
}

.contact-card-note {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  margin-top: 0;
  color: rgba(255, 255, 255, .56);
}

.contact-cards > a.contact-card:hover .contact-card-note {
  color: rgba(0, 27, 51, .72);
}

.contact-form {
  padding: clamp(30px, 5vw, 58px);
  color: var(--navy-900);
  background: var(--white);
  border-top: 8px solid var(--green-500);
  box-shadow: 16px 16px 0 rgba(0, 27, 51, .32);
}

.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(1, 45, 84, .20);
}

.form-step {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .10em;
}

.form-head p {
  color: var(--steel-600);
  font-size: 11px;
}

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

.field-wide {
  grid-column: 1 / -1;
}

.field label,
.label-row {
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 800;
}

.field label {
  display: inline-block;
  margin-bottom: 8px;
}

.field label span,
.label-row > span {
  color: var(--steel-600);
  font-size: 10px;
  font-weight: 500;
}

.label-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid rgba(1, 45, 84, .28);
  border-radius: 0;
  color: var(--navy-950);
  background: var(--concrete-050);
  outline: 0;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #60717c;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(1, 45, 84, .55);
  background: var(--white);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green-700);
  box-shadow: inset 4px 0 0 var(--green-500);
  background: var(--white);
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 3px solid var(--green-500);
  outline-offset: 2px;
}

.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid {
  border-color: var(--danger);
  box-shadow: inset 4px 0 0 var(--danger);
}

.form-submit {
  width: 100%;
  margin-top: 26px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: .72;
}

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

.form-enabled .form-submit {
  display: inline-flex;
}

.form-noscript {
  margin-top: 16px;
  padding: 14px;
  border-left: 4px solid var(--green-500);
  background: var(--green-050);
  font-size: 13px;
}

.form-noscript a {
  color: var(--navy-900);
  text-decoration: underline;
}

.form-status {
  min-height: 24px;
  margin-top: 16px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 750;
}

.form-status.is-error {
  color: var(--danger);
}

.form-note {
  margin-top: 4px;
  color: var(--steel-600);
  font-size: 11px;
  line-height: 1.5;
}

.form-note a {
  color: var(--navy-900);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, .64);
  background: var(--navy-950);
  border-top: 1px solid var(--line-inverse);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 110px);
  padding-block: 72px;
}

.footer-brand {
  max-width: 430px;
}

.footer-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  background: var(--white);
}

.footer-brand p {
  margin-top: 22px;
  color: rgba(255, 255, 255, .64);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: var(--green-300);
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--green-300);
}

.footer-bottom {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line-inverse);
  font-size: 12px;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.to-top {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Persistent quick contact */
.floating-contact {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 68;
  display: grid;
  gap: 6px;
  transform: translateY(-50%);
}

.floating-contact-link {
  position: relative;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 8px 22px rgba(0, 27, 51, .18);
  transition: background-color .24s var(--ease), border-color .24s var(--ease), transform .24s var(--ease);
}

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

.floating-contact-link svg {
  width: 24px;
  height: 24px;
}

.contact-icon--whatsapp {
  fill: currentColor;
  stroke: none;
}

.contact-icon--phone {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.contact-icon--mail {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.floating-contact-link--whatsapp {
  background: var(--whatsapp-green);
}

.floating-contact-link--phone {
  background: var(--navy-900);
}

.floating-contact-link--request {
  color: var(--white);
  background: var(--navy-900);
}

.floating-contact-link:hover,
.floating-contact-link:focus-visible {
  border-color: rgba(255, 255, 255, .42);
  transform: translateX(-4px);
}

.mobile-contact {
  display: none;
}

/* Reveal motion */
html.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .48s var(--ease), transform .48s var(--ease);
  transition-delay: var(--delay, 0ms);
}

html.reveal-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet */
@media (max-width: 1180px) {
  :root {
    --header-height: 76px;
  }

  .shell {
    width: min(var(--shell), calc(100% - 48px));
  }

  .header-inner {
    gap: 24px;
  }

  .site-nav {
    gap: 22px;
  }

  .phone-link span {
    display: none;
  }

  .hero-copy {
    width: min(900px, calc(100% - 48px));
    margin-inline: auto;
  }

  .renovation-compare,
  .contact-shell {
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
  }

  .owner-grid {
    gap: 58px;
  }
}

@media (max-width: 980px) {
  .section {
    padding-block: 88px;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    grid-column: 3;
    display: block;
  }

  .header-actions {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    z-index: 79;
    display: grid;
    gap: 0;
    padding: 12px 24px 24px;
    color: var(--header-text);
    background: var(--header);
    border-bottom: 1px solid var(--line-strong);
    box-shadow: var(--shadow-header);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    visibility: hidden;
    transition:
      opacity .22s var(--ease),
      transform .22s var(--ease),
      visibility 0s linear .22s;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .site-nav a {
    min-height: 58px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .site-nav a::after {
    top: 0;
    right: auto;
    bottom: 0;
    width: 4px;
    height: auto;
  }

  .hero .hero-shell {
    min-height: min(1000px, calc(100svh - var(--header-height) + 120px));
    padding: 60px 24px;
  }

  .hero-copy {
    width: min(760px, calc(100% - 48px));
    margin-inline: auto;
  }

  .services-heading,
  .section-intro,
  .tax-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .service-panel > summary {
    grid-template-columns: 52px minmax(0, 1fr) auto;
  }

  .service-panel-body {
    grid-template-columns: 1fr;
  }

  .service-image-wrap {
    min-height: 440px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .renovation-compare,
  .owner-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .renovation-compare {
    gap: 56px;
  }

  .compare-visual {
    max-width: 760px;
  }

  .owner-grid {
    gap: 70px;
  }

  .owner-media {
    width: min(620px, 100%);
  }

  .owner-copy {
    max-width: none;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-strong);
  }

  .tax-rules {
    grid-template-columns: 1fr;
  }

  .tax-rules article {
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .tax-rules article:last-child {
    border-bottom: 0;
  }

  .contact-copy {
    max-width: 700px;
  }

  .contact-form {
    max-width: 760px;
  }

  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }

  .floating-contact {
    display: none;
  }

  .mobile-contact {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    min-height: calc(64px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    color: var(--white);
    background: var(--navy-950);
    border-top: 1px solid var(--line-inverse);
    box-shadow: 0 -12px 28px rgba(0, 27, 51, .22);
  }

  .mobile-contact a {
    min-height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 6px;
    font-size: 12px;
    font-weight: 800;
  }

  .mobile-contact-link--whatsapp {
    color: var(--navy-950);
    background: var(--whatsapp-green);
  }

  .mobile-contact-link--request {
    color: var(--white);
    background: var(--navy-950);
    border-left: 1px solid rgba(255, 255, 255, .20);
  }

  .mobile-contact a:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: -5px;
  }

  .mobile-contact svg {
    width: 18px;
    height: 18px;
  }

  .mobile-contact .contact-icon--phone {
    stroke-width: 1.55;
  }
}

/* Mobile */
@media (max-width: 680px) {
  :root {
    --header-height: 70px;
  }

  body {
    font-size: 16px;
    padding-bottom: 0;
  }

  .mobile-contact {
    right: max(14px, env(safe-area-inset-right));
    bottom: calc(16px + env(safe-area-inset-bottom));
    left: auto;
    z-index: 70;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 0;
    box-shadow: none;
    transition: opacity .2s var(--ease), transform .2s var(--ease);
  }

  .mobile-contact a {
    width: 48px;
    min-height: 48px;
    height: 48px;
    flex: 0 0 48px;
    gap: 0;
    padding: 0;
    color: var(--white);
    background: var(--navy-950);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(0, 27, 51, .28);
  }

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

  .mobile-contact .mobile-contact-link--whatsapp {
    color: var(--navy-950);
    background: var(--whatsapp-green);
    border-color: rgba(0, 27, 51, .08);
  }

  .mobile-contact .mobile-contact-link--request {
    color: var(--white);
    background: var(--navy-950);
    border-left: 1px solid rgba(255, 255, 255, .18);
  }

  .mobile-contact a:focus-visible {
    outline: 3px solid var(--green-300);
    outline-offset: 3px;
  }

  .mobile-contact svg {
    width: 20px;
    height: 20px;
  }

  .menu-open .mobile-contact {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
  }

  .shell {
    width: min(100% - 30px, var(--shell));
  }

  .section {
    padding-block: 72px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .brand {
    width: 62px;
    height: 62px;
    padding: 5px;
  }

  .brand-logo {
    width: 100%;
    height: 100%;
  }

  .hero .hero-shell {
    min-height: min(1000px, calc(100svh - var(--header-height) + 170px));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 48px 20px 140px;
    overflow: hidden;
    border: 0;
    background: var(--navy-950);
  }

  .hero-shell::after {
    display: block;
    background: linear-gradient(180deg, rgba(0, 27, 51, .02) 0%, rgba(0, 27, 51, .08) 42%, rgba(0, 27, 51, .78) 82%, rgba(0, 27, 51, .92) 100%);
  }

  .hero-media,
  .hero-image-frame,
  .hero-image-frame picture {
    position: absolute;
    inset: 0;
  }

  .hero-media {
    height: 100%;
  }

  .hero-image-frame,
  .hero-image-frame picture,
  .hero-image-frame img {
    width: 100%;
    height: 100%;
  }

  .hero-image-frame {
    border: 0;
  }

  .hero-image-frame img {
    object-position: 50% center;
  }

  .hero-copy {
    width: min(100%, 560px);
    margin-inline: auto;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .hero .eyebrow {
    flex-wrap: wrap;
    margin-bottom: 16px;
    font-size: 11px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(40px, 12vw, 52px);
    line-height: .98;
  }

  .hero-lead {
    max-width: 34rem;
    margin-top: 20px;
    font-size: 17px;
  }

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

  .hero-actions {
    margin-top: 26px;
    padding-inline: calc(58px + max(14px, env(safe-area-inset-right, 0px)));
  }

  .hero-reviews {
    --hero-review-contact-clearance: calc(58px + max(14px, env(safe-area-inset-right, 0px)));
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .hero-rating {
    grid-template-columns: auto minmax(0, 1fr);
    row-gap: 3px;
    padding: 10px var(--hero-review-contact-clearance) 10px 11px;
  }

  .hero-rating-source {
    grid-column: 1 / -1;
    font-size: 11px;
  }

  .hero-review-rule {
    width: auto;
    height: 1px;
    margin: 0 var(--hero-review-contact-clearance) 0 11px;
  }

  .hero-review-latest {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 4px;
    padding: 8px var(--hero-review-contact-clearance) 9px 11px;
  }

  .hero-review-status {
    width: 100%;
    min-width: 0;
    align-self: auto;
    align-items: center;
    flex-direction: row;
  }

  .hero-review-controls button {
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
  }

  .hero-review-latest blockquote p {
    font-size: 13px;
  }

  .hero-review-latest blockquote footer {
    font-size: 9px;
  }

  .hero-review-snapshot {
    font-size: 9px;
    white-space: normal;
  }

  .services-heading {
    margin-bottom: 40px;
  }

  .services-heading h2 {
    padding-left: 20px;
  }

  .services-heading h2::before {
    width: 5px;
  }

  .service-panel > summary {
    min-height: 102px;
    grid-template-columns: 40px minmax(0, 1fr) 44px;
    gap: 10px;
    padding: 18px 0;
  }

  .service-panel > summary:hover,
  .service-panel[open] > summary {
    padding-left: 8px;
  }

  .service-panel h3 {
    font-size: clamp(20px, 6.2vw, 28px);
    letter-spacing: -.035em;
  }

  .service-panel .service-icon {
    width: 36px;
    height: 36px;
    box-shadow: inset 2px 0 0 var(--green-500);
  }

  .service-panel .service-icon svg {
    width: 23px;
    height: 23px;
  }

  .service-toggle {
    min-height: 44px;
  }

  .service-toggle > span {
    display: none;
  }

  .service-toggle i {
    width: 44px;
    height: 44px;
  }

  .service-panel-body {
    border-left-width: 5px;
  }

  .service-image-wrap {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .service-scope {
    padding: 28px 22px 34px;
  }

  .service-scope ul {
    gap: 12px;
  }

  .scope-note {
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 14px;
    padding: 22px 20px;
  }

  .scope-note .button {
    grid-column: 2;
    justify-self: start;
  }

  .renovation-showcase::before,
  .contact::before {
    width: 52vw;
    height: 7px;
  }

  .compare-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .compare-image-wrap {
    box-shadow: 8px 8px 0 rgba(78, 149, 57, .26);
  }

  .compare-label {
    top: 10px;
    padding: 6px 8px;
    font-size: 9px;
  }

  .compare-label-before { left: 10px; }
  .compare-label-after { right: 10px; }

  .compare-divider::after {
    width: 44px;
    height: 44px;
  }

  .owner-media {
    padding-right: 18px;
    padding-bottom: 24px;
  }

  .owner-media::before {
    right: 0;
    left: 18px;
  }

  .owner-media figcaption {
    width: calc(100% - 18px);
    margin: -54px 0 0 18px;
    padding: 16px 18px;
  }

  .owner-copy {
    padding: 32px 0 0 20px;
  }

  .owner-lead {
    font-size: 17px;
  }

  .section-intro,
  .tax-head {
    margin-bottom: 42px;
  }

  .process-list {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .process-list li,
  .process-list li:nth-child(2) {
    min-height: 0;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .process-list li:hover {
    padding-inline: 18px;
    transform: none;
  }

  .process-number {
    margin: 0;
  }

  .process-line {
    top: 76px;
    bottom: -28px;
    left: 24px;
    width: 1px;
    height: auto;
    transform: scaleY(0);
    transform-origin: top;
  }

  .process-list li.is-visible .process-line,
  .process-list li:hover .process-line {
    transform: scaleY(1);
  }

  .process-list li > div:last-child {
    min-width: 0;
  }

  .process-list h3 {
    font-size: 23px;
  }

  .tax-rules article {
    padding: 28px 0 32px;
  }

  .tax-paragraph {
    margin-bottom: 24px;
  }

  .contact-cards,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    margin-right: 60px;
  }

  .contact-cards > a.contact-card {
    min-height: 150px;
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 14px;
    row-gap: 8px;
    padding: 20px;
  }

  .contact-card-icon-frame {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 13px;
  }

  .contact-card-value {
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: center;
  }

  .contact-card-label {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }

  .contact-card-note {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .contact-whatsapp-action {
    grid-column: 1;
    grid-row: 1;
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .contact-card-value {
    font-size: clamp(17px, 5.2vw, 20px);
  }

  .contact-form {
    padding: 28px 20px 32px;
    box-shadow: 8px 8px 0 rgba(0, 27, 51, .32);
  }

  .form-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .field-wide {
    grid-column: auto;
  }

  .footer-main,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-main {
    gap: 48px;
    padding-block: 58px;
  }

  .footer-links {
    gap: 32px;
  }

  .footer-bottom {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    padding-block: 26px;
  }

  .footer-bottom nav {
    justify-content: flex-start;
    gap: 16px;
  }

}

@media (max-width: 680px) and (orientation: portrait) {
  .hero .hero-shell {
    min-height: min(820px, calc(100svh - var(--header-height) + 80px));
    padding: 36px 20px 40px;
  }

  .hero-image-frame {
    inset: 0;
    height: auto;
  }
}

@media (max-width: 360px) {
  .hero-actions .button-hero {
    gap: 10px;
    padding-inline: 14px;
    font-size: 14px;
    white-space: nowrap;
  }
}

@media (hover: none) {
  .button:not(:disabled):hover,
  .process-list li:hover,
    .contact-cards > a.contact-card:hover {
    transform: none;
  }

  .button:not(:disabled):hover svg {
    transform: none;
  }

  .button-solid:not(:disabled):hover::before {
    transform: translateX(-101%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  html.reveal-enabled [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
