:root {
  color-scheme: light;
  --ink: #16201f;
  --muted: #5f6f72;
  --line: #dbe4e4;
  --surface: #ffffff;
  --surface-soft: #f3f7f6;
  --brand: #1c7768;
  --brand-deep: #10211f;
  --accent: #f06449;
  --maroon: #7f1d1d;
  --beige: #f3eadc;
  --gold: #c89d4f;
  --sky: #d8eef0;
  --shadow: 0 22px 54px rgba(22, 32, 31, 0.12);
  --section-space-y: 56px;
  --section-space-x: 16px;
  --section-heading-space: 24px;
  --stack-gap: 12px;
  --hero-top: 120px;
  --hero-bottom: 48px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(216, 238, 240, 0.42), transparent 32%),
    linear-gradient(180deg, #f8fbfa 0%, #eef6f4 42%, #f8fbfb 100%);
  overflow-x: hidden;
}

main {
  padding-top: 0;
}

body.menu-open {
  overflow: hidden;
}

.confetti-canvas {
  position: fixed;
  inset: 0;
  z-index: 90;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

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

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

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

.site-header {
  position: fixed;
  top: 16px;
  left: clamp(12px, 3vw, 34px);
  right: clamp(12px, 3vw, 34px);
  width: auto;
  max-width: calc(100vw - 24px);
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid rgba(219, 228, 228, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(16, 33, 31, 0.12);
  backdrop-filter: blur(18px);
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  border-color: rgba(219, 228, 228, 0.98);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(16, 33, 31, 0.1);
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 28px));
  pointer-events: none;
}

html.lenis {
  height: auto;
}

html.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

html.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

html.lenis.lenis-stopped {
  overflow: hidden;
}

html.motion-enhanced:not(.motion-reduced):not(.motion-fallback) [data-reveal],
html.motion-enhanced:not(.motion-reduced):not(.motion-fallback) [data-reveal-child] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  backface-visibility: hidden;
}

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

  [data-hero-item],
  [data-reveal],
  [data-reveal-child] {
    opacity: 1 !important;
    transform: none !important;
  }

  .site-header.is-hidden {
    transform: none;
    pointer-events: auto;
  }

  .hero-slide {
    transition: none;
    transform: none;
    filter: none;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: min(68vw, 420px);
  min-width: 0;
  gap: 10px;
  text-align: left;
}

.brand img,
.site-footer img {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: #ffffff;
  object-fit: contain;
  box-shadow: 0 8px 22px rgba(16, 33, 31, 0.12);
}

.brand img[src$=".svg"],
.site-footer img[src$=".svg"] {
  padding: 4px;
}

.brand span,
.site-footer span {
  display: grid;
  gap: 2px;
  min-width: 0;
  text-align: left;
}

.brand strong,
.site-footer strong {
  display: block;
  max-width: 100%;
  overflow: hidden;
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small,
.site-footer small {
  color: currentColor;
  font-size: 12px;
  opacity: 0.78;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: inherit;
  background: var(--surface-soft);
  cursor: pointer;
}

.site-header.is-scrolled .menu-toggle,
.site-header.is-open .menu-toggle {
  border-color: var(--line);
  background: var(--surface);
}

.menu-toggle span {
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-nav {
  position: fixed;
  inset: 84px 16px auto auto;
  display: none;
  width: min(92vw, 300px);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: grid;
}

.site-nav a {
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--ink);
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  background: var(--surface-soft);
  transform: translateX(2px);
}

.header-cta {
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  color: #ffffff;
  background: var(--brand);
  box-shadow: 0 12px 28px rgba(28, 119, 104, 0.28);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.call-action {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(28, 119, 104, 0.2);
  border-radius: 999px;
  color: var(--brand);
  background: rgba(28, 119, 104, 0.08);
  box-shadow: 0 10px 22px rgba(16, 33, 31, 0.08);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.call-action:hover {
  transform: translateY(-1px);
  background: rgba(28, 119, 104, 0.14);
  box-shadow: 0 14px 28px rgba(16, 33, 31, 0.12);
}

.call-action svg {
  width: 19px;
  height: 19px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
}

.hero-backdrop,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease, transform 8s ease;
  will-change: opacity, transform;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.02);
  filter: brightness(1.14) saturate(1.08);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 27, 26, 0.62) 0%, rgba(13, 27, 26, 0.34) 38%, rgba(13, 27, 26, 0.12) 60%, rgba(13, 27, 26, 0.2) 100%),
    linear-gradient(180deg, rgba(13, 27, 26, 0.02), rgba(13, 27, 26, 0.44));
}

.hero-content h1,
.hero-content .hero-copy,
.hero-content .eyebrow {
  text-shadow: 0 2px 28px rgba(8, 16, 15, 0.5);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: end;
  gap: clamp(28px, 5vw, 48px);
  width: min(100%, 1240px);
  min-height: inherit;
  margin: 0 auto;
  padding: var(--hero-top) var(--section-space-x) var(--hero-bottom);
}

.hero-content {
  align-self: end;
  width: 100%;
  max-width: 640px;
}

.hero-collage {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.1vw, 14px);
  width: 100%;
  min-height: 0;
  align-self: center;
}

.hero-collage-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-width: 0;
  min-height: 0;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(13, 27, 26, 0.4);
  box-shadow: 0 28px 60px rgba(8, 16, 15, 0.42);
}

.hero-collage-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.hero-collage-card figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(13, 27, 26, 0.72);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.hero-collage-card--hidden {
  display: none;
}

.hero-collage-card--primary {
  grid-column: 1;
  grid-row: 1;
}

.hero-collage-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.hero-collage-card:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}

.hero-collage-card:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  right: var(--section-space-x);
  bottom: calc(var(--hero-bottom) - 4px);
  left: var(--section-space-x);
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.hero-dot.is-active {
  width: 28px;
  background: #ffffff;
}

.hero-dot:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

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

.hero .eyebrow {
  color: #bde7de;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 20px;
  font-size: clamp(40px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

h1 span {
  display: inline-block;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 5.5vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.1;
}

.hero-copy {
  max-width: 48ch;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2.4vw, 21px);
  line-height: 1.6;
  overflow-wrap: break-word;
}

.hero-actions,
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 100%;
}

.offer-line {
  width: fit-content;
  max-width: 100%;
  margin: 14px 0 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 32px rgba(16, 33, 31, 0.16);
  backdrop-filter: blur(12px);
  font-size: clamp(13px, 1.7vw, 15px);
  font-weight: 850;
}

.audit-banner {
  display: inline-flex;
  width: min(100%, 620px);
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(240, 100, 73, 0.92), rgba(200, 157, 79, 0.82)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(240, 100, 73, 0.22);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.audit-banner:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 48px rgba(240, 100, 73, 0.28);
}

.audit-banner span {
  font-size: clamp(16px, 2.4vw, 22px);
  font-weight: 950;
  line-height: 1.12;
}

.audit-banner strong {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--brand-deep);
  background: #ffffff;
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
}

.primary-action,
.secondary-action,
.pricing-grid a,
.package-grid a,
.renovation-grid a,
.header-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, filter 180ms ease;
  will-change: transform;
}

.primary-action:active,
.secondary-action:active,
.header-cta:active,
.package-grid a:active,
.renovation-grid a:active,
.chat-button:active,
.call-action:active {
  transform: scale(0.97);
}

.header-cta {
  display: none;
}

.primary-action {
  color: #ffffff;
  background: linear-gradient(120deg, var(--accent), #d7563f);
  box-shadow: 0 16px 36px rgba(240, 100, 73, 0.28);
}

.primary-action:hover,
.pricing-grid a:hover,
.header-cta:hover {
  transform: translateY(-1px);
  filter: saturate(1.04);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.54);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.secondary-action.dark {
  border-color: var(--line);
  color: var(--ink);
  background: #ffffff;
}

.hero-actions .secondary-action,
.hero-actions .secondary-action.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.78);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.hero-actions .whatsapp-icon {
  width: 18px;
  height: 18px;
  color: #ffffff;
}

.hero-actions .secondary-action:hover,
.hero-actions .secondary-action.whatsapp-link:hover {
  background: rgba(255, 255, 255, 0.34);
  border-color: #ffffff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 780px;
  margin: 14px 0 0;
  justify-items: stretch;
}

.hero-stats div {
  display: grid;
  min-height: 76px;
  align-content: center;
  justify-items: center;
  gap: 4px;
  padding: 16px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  text-align: center;
  overflow: hidden;
}

.hero-stats dt {
  width: 100%;
  max-width: 100%;
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 950;
  line-height: 1.2;
  text-align: center;
  text-wrap: balance;
  overflow-wrap: anywhere;
  white-space: normal;
}

.hero-stats dd {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  text-align: center;
  text-wrap: balance;
  overflow-wrap: anywhere;
  white-space: normal;
}

.intro-strip {
  padding: 26px clamp(18px, 5vw, 70px);
  background:
    linear-gradient(90deg, rgba(240, 100, 73, 0.14), transparent 36%),
    var(--brand-deep);
}

.intro-strip p {
  width: min(100%, 1240px);
  max-width: 1240px;
  margin: 0 auto;
  color: #d9ebe8;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 800;
  line-height: 1.28;
  overflow-wrap: break-word;
}

.section {
  width: min(100%, clamp(320px, 92vw, 1120px));
  margin: 0 auto;
  padding: var(--section-space-y) var(--section-space-x);
  scroll-margin-top: 124px;
}

.section + .section {
  padding-top: calc(var(--section-space-y) * 0.72);
}

.page-main {
  padding-top: 104px;
}

.page-hero {
  display: grid;
  gap: 24px;
}

.section-heading {
  display: grid;
  max-width: 640px;
  gap: 8px;
  margin-bottom: var(--section-heading-space);
}

.section-heading--center {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  max-width: 16ch;
  letter-spacing: -0.02em;
}

.section-heading--center h2 {
  max-width: none;
  margin-inline: auto;
}

.lead,
.section-heading p.lead,
.contact-copy p.lead {
  max-width: 52ch;
  color: var(--muted);
  font-size: clamp(17px, 2.2vw, 19px);
  line-height: 1.65;
}

.section-heading--center .lead {
  margin-inline: auto;
}

.section .section-heading,
.split-block .section-heading {
  max-width: min(640px, 90vw);
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

.section .section-heading h2,
.split-block .section-heading h2 {
  max-width: none;
  margin-inline: auto;
}

.section .section-heading .lead,
.split-block .section-heading .lead {
  margin-inline: auto;
}

.section-heading p:not(.eyebrow):not(.lead),
.promise-card p,
.contact-copy p:not(.lead) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.service-grid {
  display: grid;
  gap: var(--stack-gap);
}

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

.service-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(21, 31, 31, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(21, 31, 31, 0.14);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card div {
  display: grid;
  gap: 8px;
  padding: 22px 24px 26px;
}

.service-card h3 {
  margin: 0;
  font-size: 20px;
}

.service-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.service-card span,
.timeline span,
.pricing-grid span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card p,
.audience-list p,
.timeline p,
.pricing-grid p,
.package-grid p,
.renovation-grid p,
.portfolio-grid p,
.promise-grid span,
.proof-grid span,
.report-preview-card span,
.form-note,
.site-footer p {
  color: var(--muted);
  line-height: 1.5;
}

.ai-report-section,
.packages-section,
.report-preview-section {
  width: min(100% - 48px, 1240px);
  border: 1px solid rgba(219, 228, 228, 0.88);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(243, 234, 220, 0.72), transparent 34%),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 54px rgba(22, 32, 31, 0.08);
}

.ai-report-section {
  display: grid;
  gap: var(--stack-gap);
}

.ai-report-section .urgency-panel {
  margin-inline: auto;
  width: min(100%, 960px);
}

.split-block {
  display: grid;
  gap: calc(var(--stack-gap) + 8px);
  align-items: start;
}

.audit-highlights {
  display: grid;
  gap: 12px;
}

.audit-highlights article,
.issue-grid article,
.proof-grid article,
.portfolio-grid article,
.report-preview-card > div {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(21, 31, 31, 0.05);
}

.audit-highlights strong,
.report-preview-card strong,
.proof-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.audit-highlights span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.process-grid {
  display: grid;
  gap: var(--stack-gap);
}

.process-grid article {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(21, 31, 31, 0.06);
}

.process-grid span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.process-grid h3 {
  margin: 0;
  font-size: 24px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--brand);
  font-size: 17px;
  font-weight: 850;
  transition: gap 180ms ease, color 180ms ease;
}

.text-link:hover {
  gap: 8px;
  color: var(--brand-deep);
}

.secondary-action.light {
  justify-self: start;
  margin-top: 4px;
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.package-grid--compact article {
  padding: 20px;
}

.package-grid--compact ul {
  margin-bottom: 4px;
}

.urgency-panel {
  display: grid;
  gap: 10px;
  margin-top: 0;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 16px;
}

.urgency-panel strong {
  font-size: clamp(20px, 3.5vw, 28px);
  line-height: 1.15;
}

.proof-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.proof-section .proof-grid {
  margin-inline: auto;
}

.proof-section .proof-grid article {
  text-align: center;
}

.portfolio-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.portfolio-grid--compact img {
  aspect-ratio: 4 / 3;
  filter: contrast(1.06) saturate(1.1) brightness(1.04);
  transition: transform 220ms ease, filter 220ms ease;
}

.portfolio-grid--compact article:hover img {
  transform: scale(1.03);
  filter: contrast(1.08) saturate(1.14) brightness(1.06);
}

.contact-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-channels a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-weight: 800;
  font-size: 15px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-channels a:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(16, 33, 31, 0.08);
}

.contact-channels .whatsapp-link {
  border-color: rgba(37, 211, 102, 0.35);
  background: rgba(37, 211, 102, 0.1);
  color: #128c7e;
}

.lead-form--compact {
  gap: var(--stack-gap);
  padding: 22px;
  border-radius: 16px;
}

.issue-grid,
.proof-grid,
.portfolio-grid,
.report-preview-card {
  display: grid;
  gap: var(--stack-gap);
}

.issue-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  margin-top: 22px;
}

.issue-grid article,
.proof-grid article,
.portfolio-grid article,
.report-preview-card > div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(21, 31, 31, 0.05);
}

.issue-grid article {
  color: var(--ink);
  font-weight: 850;
}

.urgency-panel {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: clamp(20px, 4vw, 30px);
  border-radius: 12px;
  color: #ffffff;
  text-align: center;
  justify-items: center;
  background:
    linear-gradient(135deg, rgba(127, 29, 29, 0.94), rgba(16, 33, 31, 0.9)),
    var(--maroon);
}

.urgency-panel .section-actions {
  margin-top: 6px;
}

.urgency-panel strong {
  font-size: clamp(22px, 4vw, 34px);
  line-height: 1.05;
  text-align: center;
}

.urgency-panel p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.84);
  text-align: center;
}

.package-grid,
.renovation-grid {
  display: grid;
  gap: var(--stack-gap);
}

.package-grid article,
.renovation-grid article {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(21, 31, 31, 0.08);
}

.package-grid .featured-plan {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(127, 29, 29, 0.94), rgba(16, 33, 31, 0.9)),
    var(--brand-deep);
}

.package-grid .featured-plan p,
.package-grid .featured-plan li {
  color: rgba(255, 255, 255, 0.82);
}

.package-grid span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-grid ul,
.renovation-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.package-grid a,
.renovation-grid a {
  justify-self: start;
  margin-top: 8px;
  color: #ffffff;
  background: var(--brand);
}

.package-grid .featured-plan a {
  color: var(--brand-deep);
  background: #ffffff;
}

.renovation-grid article:nth-child(2) {
  background: linear-gradient(135deg, #ffffff, var(--beige));
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.report-preview-card {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 22px;
}

.report-preview-card strong,
.proof-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.proof-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.testimonial-grid {
  display: grid;
  gap: var(--stack-gap);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonial-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(21, 31, 31, 0.05);
}

.testimonial-rating {
  margin: 0;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

.testimonial-card footer {
  display: grid;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 900;
  font-size: 15px;
}

.testimonial-meta {
  color: var(--muted);
  font-size: 13px;
}

.testimonial-service {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(28, 119, 104, 0.1);
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.testimonial-showcase {
  display: grid;
  gap: var(--stack-gap);
  width: min(100%, 920px);
  margin: calc(var(--stack-gap) + 8px) auto 0;
  justify-items: center;
}

.testimonial-showcase-label {
  margin: 0;
  width: 100%;
  text-align: center;
}

.testimonial-marquee {
  position: relative;
  width: 100%;
  min-width: 0;
  justify-self: stretch;
}

.testimonial-marquee-viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.testimonial-marquee-track {
  display: flex;
  gap: var(--stack-gap);
  width: max-content;
  animation: testimonial-marquee 42s linear infinite;
  will-change: transform;
}

.testimonial-marquee:hover .testimonial-marquee-track,
.testimonial-marquee:focus-within .testimonial-marquee-track {
  animation-play-state: paused;
}

.testimonial-marquee-track .testimonial-card {
  flex: 0 0 min(82vw, 320px);
  min-height: 100%;
}

@keyframes testimonial-marquee {
  to {
    transform: translateX(calc(-50% - var(--stack-gap) / 2));
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-marquee-viewport {
    overflow: visible;
    mask-image: none;
  }

  .testimonial-marquee-track {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    animation: none;
    transform: none;
  }

  .testimonial-marquee-track .testimonial-card {
    flex: 1 1 min(100%, 320px);
    max-width: 320px;
  }

  .testimonial-marquee-track .testimonial-card[aria-hidden="true"] {
    display: none;
  }
}

.hero-actions--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 560px);
}

.hero-action-broker {
  border: 1.5px solid rgba(255, 255, 255, 0.78);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.hero-action-broker:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #ffffff;
}

.portfolio-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto var(--stack-gap);
}

.portfolio-tab {
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.portfolio-tab.is-active {
  border-color: transparent;
  color: #ffffff;
  background: linear-gradient(120deg, var(--accent), #d7563f);
}

.trust-stats-section {
  background:
    linear-gradient(180deg, rgba(240, 100, 73, 0.06), transparent 42%),
    var(--surface-soft);
}

.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--stack-gap);
  width: min(100%, 1040px);
  margin: 0 auto;
}

.trust-stat-card {
  display: grid;
  gap: 8px;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  text-align: center;
}

.trust-stat-value {
  margin: 0;
  color: var(--brand-deep);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.03em;
}

.trust-stat-label {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.featured-testimonials {
  display: grid;
  gap: calc(var(--stack-gap) + 6px);
  width: min(100%, 1120px);
  margin: calc(var(--section-heading-space) + 8px) auto 0;
}

.featured-testimonials-carousel {
  position: relative;
  width: 100%;
  min-width: 0;
}

.featured-testimonials-viewport {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: clamp(16px, 4vw, 28px);
  padding: 4px 0 14px;
  scrollbar-width: thin;
  scrollbar-color: rgba(240, 100, 73, 0.45) transparent;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.featured-testimonials-track {
  display: flex;
  align-items: stretch;
  gap: var(--stack-gap);
  width: max-content;
  padding-inline: clamp(16px, 4vw, 28px);
  padding-bottom: 4px;
}

.featured-testimonials-dots {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 4px;
}

.featured-testimonials-dots-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.featured-testimonials-hint {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.featured-testimonials-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 33, 31, 0.22);
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease;
}

.featured-testimonials-dot.is-active {
  transform: scale(1.15);
  background: var(--accent);
}

.featured-testimonial-card {
  flex: 0 0 min(84vw, 340px);
  scroll-snap-align: center;
  scroll-snap-stop: always;
  min-height: 100%;
}

.featured-testimonial-card footer {
  text-align: center;
}

.featured-testimonial-card .testimonial-service {
  margin-inline: auto;
}

.featured-testimonials-viewport:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.faq-section {
  background: var(--surface-soft);
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(100%, 820px);
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 979px) {
  .hero-actions--split {
    grid-template-columns: 1fr;
    width: min(100%, calc(100% - 32px));
    margin-inline: auto;
    justify-items: stretch;
  }

  .hero-actions--split > a {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .trust-stats-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 980px) {
  .trust-stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.portfolio-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.portfolio-grid article {
  overflow: hidden;
  padding: 0;
}

.portfolio-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.portfolio-grid h3,
.portfolio-grid p {
  margin-inline: 18px;
}

.portfolio-grid h3 {
  margin-top: 14px;
}

.portfolio-grid p {
  margin-bottom: 14px;
}

.project-placeholder {
  display: grid;
  min-height: 150px;
  place-items: center;
  margin-bottom: 16px;
  border: 1px dashed rgba(127, 29, 29, 0.28);
  border-radius: 10px;
  color: var(--maroon);
  background:
    linear-gradient(135deg, rgba(243, 234, 220, 0.72), rgba(216, 238, 240, 0.44)),
    #ffffff;
  font-weight: 950;
}

.split-section {
  display: grid;
  gap: 22px;
}

.visual-panel {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.visual-panel img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
}

.audience-panel {
  display: grid;
  align-content: center;
  gap: 18px;
}

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

.audience-list article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.audience-list h3,
.audience-list p {
  margin-bottom: 0;
}

.promise-section {
  display: grid;
  gap: 18px;
}

.promise-card {
  padding: clamp(24px, 5vw, 42px);
  border-radius: 10px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(16, 33, 31, 0.92), rgba(28, 119, 104, 0.86)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1200&q=78")
      center / cover;
}

.promise-card .eyebrow,
.promise-card p {
  color: #d7f0eb;
}

.promise-card h2 {
  max-width: 760px;
}

.promise-grid {
  display: grid;
  gap: 12px;
}

.promise-grid article {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.promise-grid strong {
  font-size: 20px;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline article {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-left: 4px solid var(--brand);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 0 8px 28px rgba(21, 31, 31, 0.06);
}

.pricing-grid {
  display: grid;
  gap: 14px;
}

.pricing-grid article {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.pricing-grid .featured-plan {
  color: #ffffff;
  background: var(--brand-deep);
}

.pricing-grid .featured-plan p {
  color: #d9ebe8;
}

.pricing-grid a {
  justify-self: start;
  margin-top: 8px;
  color: #ffffff;
  background: var(--brand);
}

.featured-plan a {
  color: var(--brand-deep);
  background: #ffffff;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  background: var(--brand-deep);
}

.gallery-strip img {
  width: 100%;
  height: clamp(180px, 34vw, 360px);
  object-fit: cover;
}

.contact-section {
  display: grid;
  gap: calc(var(--stack-gap) + 8px);
  padding-bottom: calc(var(--section-space-y) + 12px);
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: var(--stack-gap);
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-details a,
.contact-phones a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-details a:hover,
.contact-phones a:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(16, 33, 31, 0.08);
}

.contact-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.contact-phones a {
  color: var(--ink);
}

.whatsapp-link {
  border-color: rgba(32, 176, 105, 0.25);
  background: linear-gradient(135deg, rgba(32, 176, 105, 0.12), rgba(216, 238, 240, 0.46));
  color: #174a2d;
}

.whatsapp-link:hover {
  background: rgba(32, 176, 105, 0.16);
}

.whatsapp-icon {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.chat-button {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 56px;
  min-height: 56px;
  padding: 0 20px 0 16px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  z-index: 50;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.chat-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
}

.chat-button .whatsapp-icon {
  width: 26px;
  height: 26px;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid rgba(28, 119, 104, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 60px rgba(22, 32, 31, 0.08);
}

.lead-form label {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 16px;
  color: var(--ink);
  background: var(--surface-soft);
  outline: none;
  text-transform: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(28, 119, 104, 0.12);
  background: #ffffff;
}

.lead-form .full {
  width: 100%;
}

.lead-form button {
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  font-size: 13px;
}

.form-success {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(28, 119, 104, 0.22);
  border-radius: 10px;
  color: #174a2d;
  background: rgba(32, 176, 105, 0.1);
  font-weight: 850;
}

.form-error {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(127, 29, 29, 0.22);
  border-radius: 10px;
  color: #7f1d1d;
  background: rgba(127, 29, 29, 0.08);
  font-weight: 850;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px clamp(18px, 5vw, 70px) 92px;
  color: #ffffff;
  background: var(--brand-deep);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer p {
  max-width: 640px;
  margin: 0;
  color: #bfd6d2;
}

@media (max-width: 979px) {
  body {
    text-align: center;
  }

  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    max-width: none;
    grid-template-columns: minmax(0, 1fr) 42px 42px;
    min-height: 62px;
    padding: 8px 10px;
    overflow: visible;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
    min-width: 0;
    padding-right: 0;
    align-self: center;
    justify-self: start;
    z-index: 1;
    text-align: left;
  }

  .brand img {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
  }

  .brand span {
    position: static;
    transform: none;
    min-width: 0;
    max-width: none;
    text-align: left;
    pointer-events: auto;
  }

  .brand strong {
    display: block;
    overflow: visible;
    font-size: clamp(12px, 3.4vw, 14px);
    line-height: 1.1;
    white-space: nowrap;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    -webkit-box-orient: unset;
  }

  .menu-toggle {
    position: static;
    z-index: 2;
    grid-column: 3;
    grid-row: 1;
    display: inline-flex !important;
    transform: none;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    width: 42px;
    gap: 6px;
    z-index: 2;
  }

  .header-actions .header-cta {
    display: none !important;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .call-action {
    width: 42px;
    height: 42px;
  }

  h1 span {
    display: block;
  }

  h1 {
    max-width: calc(100% - 32px);
    margin-inline: auto;
    margin-bottom: 14px;
    font-size: clamp(34px, 9vw, 48px);
    line-height: 1;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-inner {
    width: 100%;
    max-width: 100%;
    padding: var(--hero-top) 16px calc(var(--hero-bottom) + 28px);
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-dots {
    bottom: 18px;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(13, 27, 26, 0.1) 0%,
      rgba(13, 27, 26, 0.28) 38%,
      rgba(13, 27, 26, 0.55) 100%
    );
  }

  .hero .eyebrow,
  .hero-copy,
  .intro-strip p {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    max-width: min(100%, 640px);
    margin-inline: auto;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.5;
  }

  .offer-line {
    display: none;
  }

  .hero .eyebrow {
    margin-bottom: 8px;
    font-size: 10px;
    line-height: 1.45;
    letter-spacing: 0.08em;
  }

  .hero-actions {
    width: min(100%, calc(100% - 32px));
    gap: 8px;
    justify-content: center;
    margin-inline: auto;
  }

  .hero-actions a {
    flex: 1 1 100%;
    max-width: 100%;
    min-height: 44px;
    font-size: 14px;
    padding: 0 16px;
  }

  .hero-action-broker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: min(100%, calc(100% - 32px));
    margin: 14px auto 0;
  }

  .hero-stats div {
    min-height: 0;
    padding: 10px 8px;
    border-radius: 12px;
  }

  .hero-stats dt {
    font-size: clamp(10px, 2.6vw, 12px);
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.25;
  }

  .hero-stats dd {
    display: none;
  }

  .section-actions {
    width: 100%;
    justify-content: center;
  }

  .primary-action,
  .secondary-action,
  .pricing-grid a,
  .package-grid a,
  .renovation-grid a,
  .header-cta {
    min-width: 0;
    padding: 0 18px;
    text-align: center;
    white-space: normal;
  }

  .section-actions .primary-action,
  .section-actions .secondary-action {
    width: 100%;
  }

  .audit-banner {
    width: min(100%, calc(100% - 32px));
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 14px;
  }

  .section-heading {
    margin-bottom: calc(var(--section-heading-space) - 4px);
  }

  .ai-report-section,
  .packages-section,
  .report-preview-section {
    width: calc(100% - 12px);
    border-radius: 16px;
  }

  .audit-highlights article,
  .proof-grid article,
  .testimonial-card {
    padding: 16px 18px;
  }

  .portfolio-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .portfolio-grid--compact article {
    padding: 0;
    border-radius: 12px;
  }

  .portfolio-grid--compact img {
    aspect-ratio: 1 / 1;
  }

  .portfolio-grid--compact h3 {
    margin: 10px 10px 4px;
    font-size: 13px;
    line-height: 1.25;
  }

  .portfolio-grid--compact p {
    margin: 0 10px 10px;
    font-size: 11px;
    line-height: 1.35;
  }

  .testimonial-marquee-track .testimonial-card {
    flex-basis: min(78vw, 300px);
    text-align: center;
  }

  .testimonial-marquee-track .testimonial-card footer {
    justify-items: center;
  }

  .testimonial-showcase {
    width: 100%;
  }

  .urgency-panel {
    padding: 18px;
    justify-items: center;
    text-align: center;
  }

  .urgency-panel .secondary-action.light {
    justify-self: center;
    margin-inline: auto;
  }

  .urgency-panel p {
    margin-inline: auto;
  }

  .section-heading,
  .contact-copy,
  .section-heading--center,
  .process-grid article,
  .audience-panel,
  .promise-card,
  .urgency-panel,
  .service-card div,
  .package-grid article,
  .renovation-grid article,
  .timeline article,
  .proof-grid article,
  .portfolio-grid article,
  .report-preview-card > div {
    text-align: center;
  }

  .section-actions,
  .contact-channels,
  .contact-details,
  .contact-phones,
  .urgency-panel .hero-actions {
    justify-content: center;
  }

  .package-grid ul,
  .renovation-grid ul {
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    text-align: left;
  }

  .package-grid a,
  .renovation-grid a,
  .pricing-grid a {
    justify-self: center;
  }

  .lead-form {
    text-align: left;
  }

  .lead-form button,
  .lead-form .form-note,
  .lead-form .form-success {
    text-align: center;
  }

  .page-main {
    padding-top: 86px;
  }

  .brand small {
    display: none;
  }

  .chat-button {
    right: 14px;
    bottom: 14px;
    width: auto;
    min-height: 58px;
    padding: 0 16px;
    font-size: 14px;
  }

  .chat-button .whatsapp-icon {
    width: 25px;
    height: 25px;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 88px;
  }

  .site-footer div {
    justify-content: center;
  }

  .site-footer p {
    text-align: center;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 760px) {
  .service-grid,
  .promise-grid,
  .pricing-grid,
  .package-grid,
  .renovation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-form .full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 760px) {
  .testimonial-marquee-track .testimonial-card {
    flex-basis: 340px;
  }
}

@media (min-width: 721px) {
  :root {
    --section-space-y: 52px;
    --section-space-x: clamp(20px, 4vw, 36px);
    --section-heading-space: 28px;
    --stack-gap: 16px;
    --hero-top: 128px;
    --hero-bottom: 44px;
  }

  .section .section-actions {
    justify-content: center;
  }

  .contact-copy,
  .promise-card {
    text-align: center;
  }

  .promise-card h2 {
    margin-inline: auto;
  }

  .process-grid article,
  .service-card div,
  .package-grid article,
  .renovation-grid article,
  .proof-grid article,
  .portfolio-grid article,
  .audit-highlights article,
  .promise-grid article,
  .timeline article {
    text-align: center;
  }

  .contact-channels,
  .contact-details,
  .contact-phones {
    justify-content: center;
  }

  .package-grid ul,
  .renovation-grid ul {
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    text-align: left;
  }

  .urgency-panel .secondary-action.light {
    justify-self: center;
    margin-inline: auto;
  }
}

@media (min-width: 721px) and (max-width: 979px) {
  h1 {
    max-width: min(100%, 18ch);
    font-size: clamp(40px, 5.8vw, 56px);
    line-height: 1.02;
  }

  .hero-copy {
    max-width: min(100%, 42ch);
    font-size: 17px;
  }

  .hero-stats dd {
    display: block;
    font-size: 12px;
  }

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

  .portfolio-grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .featured-testimonials-viewport {
    scroll-padding-inline: 24px;
  }
}

@media (min-width: 980px) {
  :root {
    --section-space-y: 68px;
    --section-space-x: clamp(24px, 3vw, 44px);
    --section-heading-space: 32px;
    --stack-gap: 18px;
    --hero-top: 136px;
    --hero-bottom: 52px;
  }

  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: 10px 14px;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    justify-self: center;
    gap: 4px;
    width: auto;
    padding: 5px;
    border-color: rgba(219, 228, 228, 0.9);
    border-radius: 999px;
    background: rgba(243, 247, 246, 0.92);
    box-shadow: none;
    backdrop-filter: blur(12px);
  }

  .site-header.is-scrolled .site-nav {
    border-color: var(--line);
    background: var(--surface-soft);
  }

  .site-nav a {
    color: currentColor;
    padding: 10px 13px;
    border-radius: 999px;
    font-size: 14px;
    white-space: nowrap;
  }

  .site-nav a:hover {
    background: #ffffff;
    transform: none;
  }

  .header-cta {
    display: inline-flex;
    color: #ffffff;
    background: var(--brand);
  }

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

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

  .portfolio-grid--compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .split-block {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
  }

  .audit-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .split-section,
  .promise-section,
  .contact-section {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
  }

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

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

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

  .process-grid article {
    padding: 24px;
  }

  .lead-form--compact {
    padding: 28px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
    align-items: center;
    align-content: center;
    gap: clamp(20px, 3.5vw, 44px);
    width: min(100%, clamp(960px, 94vw, 1240px));
    min-height: calc(100svh - var(--hero-bottom));
    padding-bottom: calc(var(--hero-bottom) + 20px);
  }

  .hero-content {
    align-self: center;
    max-width: min(640px, 48vw);
  }

  .hero-content h1 {
    max-width: 13ch;
    font-size: clamp(36px, 3.6vw, 62px);
    line-height: 0.98;
    margin-bottom: clamp(14px, 2vh, 22px);
  }

  .hero-copy {
    max-width: 46ch;
    font-size: clamp(16px, 1.3vw, 19px);
    margin-bottom: clamp(16px, 2.2vh, 26px);
  }

  .hero-actions .primary-action {
    height: auto;
    min-height: 48px;
    padding: 11px 20px;
    max-width: min(100%, 400px);
    line-height: 1.28;
    text-align: center;
    white-space: normal;
  }

  .hero-stats {
    margin-top: clamp(12px, 1.8vh, 18px);
    max-width: 100%;
    gap: clamp(8px, 0.9vw, 12px);
  }

  .hero-stats div {
    min-height: clamp(62px, 7.5vh, 76px);
    padding: clamp(10px, 1.2vw, 14px) clamp(8px, 1vw, 12px);
  }

  .hero-stats dt {
    font-size: clamp(13px, 1.1vw, 18px);
    line-height: 1.22;
  }

  .hero-stats dd {
    font-size: clamp(11px, 1vw, 13px);
    line-height: 1.35;
  }

  .hero-collage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    height: clamp(280px, min(40svh, 36vw), 440px);
    max-height: min(44svh, 440px);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(13, 27, 26, 0.72) 0%, rgba(13, 27, 26, 0.38) 30%, rgba(13, 27, 26, 0.06) 48%, rgba(13, 27, 26, 0.02) 100%),
      linear-gradient(180deg, transparent, rgba(13, 27, 26, 0.32));
  }
}
