:root {
  --ink: #222129;
  --muted: #686b75;
  --paper: #ffffff;
  --soft: #f6f2ec;
  --warm: #d9b782;
  --coral: #ef5560;
  --coral-dark: #d8414c;
  --teal: #315f5a;
  --line: #e8e3db;
  --shadow: 0 22px 60px rgba(24, 20, 18, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 94px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(232, 227, 219, 0.85);
  backdrop-filter: blur(14px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.has-shadow {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 34px rgba(24, 20, 18, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: clamp(218px, 25vw, 330px);
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: #3f4149;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 0;
}

.site-nav a:hover {
  color: var(--coral-dark);
}

.header-cta,
.primary-btn,
.secondary-btn,
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.header-cta,
.primary-btn,
.form-submit {
  color: var(--paper);
  background: var(--coral);
  box-shadow: 0 12px 28px rgba(239, 85, 96, 0.27);
}

.header-cta {
  min-width: 218px;
  padding: 0 30px;
  font-size: 0.92rem;
}

.primary-btn {
  min-width: 240px;
  padding: 0 30px;
}

.header-cta:hover,
.primary-btn:hover,
.form-submit:hover {
  background: var(--coral-dark);
}

.secondary-btn {
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.72);
  min-width: 190px;
  padding: 0 26px;
  background: rgba(255, 255, 255, 0.12);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 94px);
  overflow: hidden;
  color: var(--paper);
}

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 7, 8, 0.72), rgba(8, 7, 8, 0.32) 54%, rgba(8, 7, 8, 0.64)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.08) 52%, rgba(0, 0, 0, 0.28));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 94px);
  margin: 0 auto;
  padding: 72px 0 64px;
}

.hero-copy {
  max-width: 790px;
}

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

.hero .eyebrow {
  color: #ffd6d9;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 5.6vw, 4.85rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero-lede {
  max-width: 710px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.13rem, 2vw, 1.42rem);
}

.hero-lede span {
  display: block;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 800;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-highlights strong {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #101014;
  background: var(--warm);
  border-radius: 50%;
  font-size: 0.82rem;
}

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

.quote-card {
  width: 100%;
  padding: 32px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 252, 247, 0.96)),
    var(--paper);
  border: 1px solid rgba(217, 183, 130, 0.42);
  border-radius: 14px;
  box-shadow: 0 28px 72px rgba(16, 14, 18, 0.28);
}

.quote-card h2 {
  margin-bottom: 8px;
  color: #27222f;
  font-size: 1.62rem;
  letter-spacing: 0;
}

.quote-card p {
  color: var(--muted);
  margin-bottom: 20px;
}

.consultation-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
  padding: 16px;
  background: #fbf7ef;
  border: 1px solid #efe2ce;
  border-radius: 10px;
}

.consultation-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #3e3844;
  font-size: 0.82rem;
  font-weight: 400;
}

.consultation-benefits strong {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--paper);
  background: var(--teal);
  border-radius: 50%;
  font-size: 0.68rem;
}

.quote-card label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: #3e4047;
  font-size: 0.9rem;
  font-weight: 800;
}

.quote-card input,
.quote-card select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
}

.quote-card input:focus,
.quote-card select:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(239, 85, 96, 0.12);
}

.form-submit {
  width: 100%;
  margin: 4px 0 12px;
}

.quote-card small {
  display: block;
  color: var(--muted);
  text-align: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  background: #17161a;
}

.hero-stats div {
  display: grid;
  gap: 6px;
  min-height: 132px;
  align-content: center;
  justify-items: center;
  padding: 24px clamp(16px, 4vw, 42px);
  color: var(--paper);
  background: linear-gradient(180deg, #201e24, #17161a);
  text-align: center;
}

.hero-stats strong {
  color: var(--warm);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 24px max(20px, calc((100vw - 1180px) / 2));
  background: #fbfaf7;
  border-bottom: 1px solid var(--line);
}

.trust-badges div {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  color: #2d2930;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(24, 20, 18, 0.06);
  font-weight: 900;
  text-align: center;
}

.trust-badges span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--paper);
  background: var(--teal);
  border-radius: 50%;
  font-size: 0.82rem;
}

.project-showcase {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
}

.projects-heading {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 28px;
  text-align: center;
}

.projects-heading .eyebrow {
  color: #5a4058;
  margin-bottom: 10px;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
}

.projects-heading h2 {
  font-size: clamp(2.3rem, 4.8vw, 4.2rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: -8px 0 34px;
}

.project-filter {
  min-height: 42px;
  padding: 0 20px;
  color: #4a4350;
  background: #ffffff;
  border: 1px solid #e5dde3;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(24, 20, 18, 0.06);
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.project-filter:hover {
  color: #5a4058;
  border-color: rgba(90, 64, 88, 0.35);
  transform: translateY(-1px);
}

.project-filter.is-active {
  color: var(--paper);
  background: #5a4058;
  border-color: #5a4058;
}

.project-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 116px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.project-card {
  display: block;
  width: 100%;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(24, 20, 18, 0.08);
  transition: box-shadow 260ms ease, transform 260ms ease, opacity 180ms ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(24, 20, 18, 0.2);
}

.project-card.is-hidden {
  display: none;
}

.project-card-wide {
  grid-column: span 2;
  grid-row: span 2;
}

.project-card-tall {
  grid-row: span 3;
}

.project-image {
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: #ece8df;
  line-height: 0;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.project-card:hover .project-image img {
  transform: scale(1.06);
}

.project-content {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.project-content h3 {
  margin-bottom: 0;
  color: #282330;
  font-size: 1.12rem;
  line-height: 1.25;
}

.project-content dl {
  display: grid;
  gap: 11px;
  margin: 0;
}

.project-content dl div {
  display: grid;
  gap: 2px;
}

.project-content dt {
  color: #837a86;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-content dd {
  margin: 0;
  color: #423946;
  font-weight: 850;
}

.project-content a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  color: #5a4058;
  background: #fbf7ef;
  border: 1px solid rgba(90, 64, 88, 0.18);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 900;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.project-content a:hover {
  color: var(--paper);
  background: #5a4058;
  transform: translateY(-1px);
}

.centered-heading {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered-heading h2 {
  font-size: clamp(2.15rem, 4.6vw, 3.9rem);
  line-height: 1.05;
}

.testimonials-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  background: #f7f4ee;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 18px;
}

.testimonial-viewport {
  overflow: hidden;
  border-radius: 14px;
}

.testimonial-track {
  display: flex;
  transition: transform 520ms ease;
}

.testimonial-card {
  display: grid;
  min-width: 100%;
  gap: 18px;
  justify-items: center;
  padding: clamp(28px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 241, 0.9)),
    #ffffff;
  border: 1px solid rgba(217, 183, 130, 0.34);
  border-radius: 14px;
  box-shadow: 0 26px 70px rgba(24, 20, 18, 0.12);
}

.rating {
  color: #d9a441;
  letter-spacing: 0.08em;
}

.testimonial-card p {
  max-width: 860px;
  margin: 0 auto;
  color: #302936;
  font-size: clamp(1.18rem, 2.4vw, 1.8rem);
  line-height: 1.55;
  text-align: center;
}

.client-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.client-meta img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border: 3px solid #fff7e8;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(24, 20, 18, 0.16);
}

.client-meta div {
  display: grid;
  gap: 2px;
}

.client-meta strong {
  color: #2f2936;
  font-size: 1.02rem;
}

.client-meta span,
.client-meta small {
  color: #736879;
  font-weight: 700;
}

.slider-arrow {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: #5a4058;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(90, 64, 88, 0.18);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(24, 20, 18, 0.1);
  font-size: 2.1rem;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.slider-arrow:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: #cfc4cd;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.testimonial-dots button.is-active {
  width: 28px;
  background: #5a4058;
  border-radius: 999px;
}

.transformation-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  background: #ffffff;
}

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

.comparison-card {
  padding: 16px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(24, 20, 18, 0.1);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.comparison-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(24, 20, 18, 0.16);
}

.comparison-card h3 {
  margin-bottom: 14px;
  color: #2d2734;
  font-size: 1.08rem;
}

.comparison-card h3 span {
  color: var(--coral);
  font-size: 0.88rem;
}

.comparison-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  background: #ddd7d0;
}

.comparison-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
}

.comparison-after {
  display: block;
}

.comparison-before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--position);
  overflow: hidden;
  border-right: 2px solid #ffffff;
}

.comparison-before img {
  width: calc(100% / (var(--position-num, 0.5)));
  max-width: none;
}

.comparison-label {
  position: absolute;
  top: 14px;
  z-index: 2;
  padding: 7px 10px;
  color: var(--paper);
  background: rgba(23, 22, 26, 0.7);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-label.before {
  left: 14px;
}

.comparison-label.after {
  right: 14px;
}

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

.comparison-handle {
  position: absolute;
  top: 50%;
  left: var(--position);
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -50%);
}

.comparison-handle::before {
  content: "< >";
  color: #5a4058;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.luxury-parallax {
  position: relative;
  display: grid;
  min-height: 480px;
  place-items: center;
  padding: 96px 20px;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(15, 13, 18, 0.84), rgba(15, 13, 18, 0.48), rgba(15, 13, 18, 0.84)),
    url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=1800&q=82");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  text-align: center;
}

.luxury-parallax-content {
  width: min(780px, 100%);
  padding: clamp(26px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  backdrop-filter: blur(12px);
}

.luxury-parallax .eyebrow,
.luxury-parallax h2 {
  color: var(--paper);
}

.luxury-parallax h2 {
  margin-bottom: 28px;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.08;
}

.google-reviews {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 24px;
}

.google-rating-card,
.review-cards article {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(24, 20, 18, 0.09);
}

.google-rating-card {
  display: grid;
  justify-items: center;
  padding: 34px;
  text-align: center;
}

.google-rating-card .large {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.google-rating-card strong {
  color: #2d2734;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.google-rating-card span {
  color: var(--muted);
  font-weight: 800;
}

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

.review-cards article {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.review-cards p {
  margin-bottom: 0;
  color: #514756;
}

.review-cards strong {
  color: #2d2734;
}

.faq-section {
  width: min(980px, calc(100% - 40px));
}

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

.faq-list details {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(24, 20, 18, 0.07);
}

.faq-list summary {
  position: relative;
  min-height: 68px;
  padding: 22px 58px 22px 22px;
  color: #2d2734;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  color: var(--coral);
  font-size: 1.6rem;
  transform: translateY(-50%);
}

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

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

[data-reveal] {
  opacity: 0;
  transition: opacity 800ms ease, transform 800ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal="fade-up"] {
  transform: translateY(34px);
}

[data-reveal="fade-right"] {
  transform: translateX(-34px);
}

[data-reveal="fade-left"] {
  transform: translateX(34px);
}

[data-reveal="zoom-in"] {
  transform: scale(0.94);
}

[data-reveal="fade-in"] {
  transform: none;
}

.estimate-wizard {
  background: #f4f2f3;
  border-bottom: 1px solid var(--line);
}

.estimator-page {
  min-height: 100vh;
  background: #f4f2f3;
}

.estimator-page .estimate-wizard {
  min-height: 100vh;
  padding-top: 0;
}

.estimate-home-link {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 20;
  display: grid;
  width: 154px;
  min-height: 64px;
  place-items: center;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid #e7e2e5;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(24, 20, 18, 0.12);
}

.estimate-home-link img {
  width: 100%;
  height: auto;
}

.wizard-progress {
  position: sticky;
  top: 94px;
  z-index: 12;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 20px clamp(20px, 5vw, 72px) 18px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #dfdadd;
  box-shadow: 0 6px 18px rgba(24, 20, 18, 0.08);
}

.estimator-page .wizard-progress {
  top: 0;
}

.wizard-progress-step {
  position: relative;
  display: grid;
  gap: 10px;
  justify-items: start;
  min-height: 64px;
  padding: 0;
  color: #8e8790;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.wizard-progress-step::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 24px;
  right: 0;
  height: 2px;
  background: #d9d5d8;
}

.wizard-progress-step:last-child::before {
  display: none;
}

.wizard-progress-step span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: transparent;
  background: #ffffff;
  border: 2px solid #d4cfd3;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.wizard-progress-step strong {
  color: inherit;
  font-size: 0.78rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.wizard-progress-step.is-active,
.wizard-progress-step.is-complete {
  color: #5a4058;
}

.wizard-progress-step.is-active span,
.wizard-progress-step.is-complete span {
  color: var(--paper);
  background: #5a4058;
  border-color: #5a4058;
}

.wizard-progress-step.is-complete span::after {
  content: "";
  width: 9px;
  height: 5px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(-45deg);
}

.wizard-progress-step.is-complete span {
  font-size: 0;
}

.wizard-progress-step.is-complete::before {
  background: #5a4058;
}

.wizard-card {
  width: min(980px, calc(100% - 40px));
  min-height: 640px;
  margin: 32px auto 58px;
  background: var(--paper);
  border: 1px solid #e7e2e5;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(24, 20, 18, 0.08);
}

.estimator-page .wizard-card {
  width: min(980px, calc(100% - 40px));
  margin-top: 36px;
}

.estimate-form {
  display: flex;
  min-height: 640px;
  flex-direction: column;
}

.wizard-step {
  display: none;
  flex: 1;
  padding: clamp(42px, 6vw, 62px) 28px 36px;
}

.wizard-step.is-active {
  display: block;
}

.wizard-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.wizard-heading.compact {
  margin-bottom: 20px;
}

.wizard-heading h2 {
  margin-bottom: 12px;
  color: #3a3040;
  font-size: clamp(1.7rem, 3.4vw, 2.35rem);
  line-height: 1.15;
}

.wizard-heading p {
  margin-bottom: 0;
  color: #5a505c;
  font-size: 1.05rem;
}

.option-list,
.room-list,
.quote-fields {
  display: grid;
  gap: 16px;
  width: min(430px, 100%);
  margin: 0 auto;
}

.choice-row,
.room-row {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid #ece7ea;
  border-radius: 6px;
  box-shadow: 0 7px 16px rgba(24, 20, 18, 0.08);
}

.choice-row {
  gap: 12px;
  cursor: pointer;
}

.choice-row input {
  width: 24px;
  height: 24px;
  accent-color: #5a4058;
}

.choice-row span,
.room-row > span {
  color: #332b38;
  font-size: 1.18rem;
  font-weight: 800;
}

.choice-row:has(input:checked) {
  border-color: #5a4058;
  box-shadow: 0 0 0 4px rgba(90, 64, 88, 0.1);
}

.room-list {
  width: min(460px, 100%);
}

.room-row {
  justify-content: space-between;
}

.counter {
  display: grid;
  grid-template-columns: 36px 32px 36px;
  align-items: center;
  gap: 8px;
}

.counter-btn {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--paper);
  background: var(--coral);
  border: 0;
  border-radius: 50%;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.counter-btn:hover {
  background: var(--coral-dark);
}

.counter output {
  color: #332b38;
  font-size: 1.1rem;
  font-weight: 800;
  text-align: center;
}

.package-options {
  display: grid;
  gap: 18px;
  width: min(520px, 100%);
  margin: 0 auto;
}

.package-option {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #ece7ea;
  border-radius: 6px;
  box-shadow: 0 7px 16px rgba(24, 20, 18, 0.06);
  cursor: pointer;
}

.package-option input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: #5a4058;
}

.package-option:has(input:checked) {
  border-color: #5a4058;
  box-shadow: 0 0 0 4px rgba(90, 64, 88, 0.1);
}

.package-option-content {
  display: grid;
  gap: 8px;
}

.package-option-content strong {
  color: #312837;
  font-size: 1.08rem;
}

.package-option-content small {
  color: #695f6b;
  line-height: 1.4;
}

.package-option-content img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: 4px;
}

.package-option-content span {
  position: relative;
  padding-left: 24px;
  color: #483d4c;
  font-size: 0.92rem;
}

.package-option-content span::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  width: 9px;
  height: 5px;
  border-bottom: 2px solid #47aa78;
  border-left: 2px solid #47aa78;
  transform: rotate(-45deg);
}

.quote-fields label {
  display: grid;
  gap: 7px;
  color: #453a49;
  font-weight: 800;
}

.quote-fields label > span {
  font-size: 0.86rem;
}

.quote-fields input,
.quote-fields select {
  width: 100%;
  min-height: 58px;
  padding: 0 16px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #d8d1d6;
  border-radius: 6px;
  outline: none;
}

.quote-fields input:focus,
.quote-fields select:focus {
  border-color: #5a4058;
  box-shadow: 0 0 0 4px rgba(90, 64, 88, 0.11);
}

.check-row {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 10px !important;
  font-weight: 600 !important;
}

.check-row input {
  width: 22px;
  height: 22px;
  min-height: 0;
  accent-color: var(--coral);
}

.check-row span {
  font-size: 1rem !important;
}

.form-note {
  width: min(430px, 100%);
  margin: 26px auto 0;
  color: #665d68;
}

.wizard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding: 18px clamp(20px, 5vw, 48px);
  border-top: 1px solid #ebe6e9;
}

.wizard-back,
.wizard-next,
.wizard-submit {
  min-height: 56px;
  border: 0;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.wizard-back {
  color: var(--coral);
  background: transparent;
}

.wizard-next,
.wizard-submit {
  display: inline-flex;
  min-width: 170px;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  background: var(--coral);
  border-radius: 999px;
}

.wizard-next:hover,
.wizard-submit:hover {
  background: var(--coral-dark);
}

.wizard-submit {
  display: none;
}

.estimate-form.is-first .wizard-back {
  visibility: hidden;
}

.estimate-form.is-final .wizard-next {
  display: none;
}

.estimate-form.is-final .wizard-submit {
  display: inline-flex;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 116px) 0;
}

.intro-section,
.process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
}

.section-copy h2,
.section-heading h2,
.estimate-band h2 {
  color: #26242b;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-copy p:not(.eyebrow),
.estimate-band p {
  color: var(--muted);
  font-size: 1.04rem;
}

.feature-image {
  min-height: 520px;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.living-image {
  background-image: url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1200&q=80");
}

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

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

.service-card,
.package-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.service-card h3,
.service-card p {
  padding: 0 24px;
}

.service-card h3 {
  margin: 23px 0 8px;
  font-size: 1.3rem;
}

.service-card p {
  margin-bottom: 26px;
  color: var(--muted);
}

.estimate-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: clamp(44px, 7vw, 78px) clamp(20px, 7vw, 88px);
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(49, 95, 90, 0.96), rgba(34, 33, 41, 0.88)),
    url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=1600&q=80");
  background-position: center;
  background-size: cover;
}

.estimate-band h2,
.estimate-band p {
  color: var(--paper);
}

.estimate-band p {
  max-width: 720px;
  margin-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-auto-rows: 250px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: #ece8df;
}

.gallery-item.wide {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 10px 12px;
  color: var(--paper);
  font-weight: 800;
  background: rgba(20, 19, 22, 0.72);
  border-radius: 6px;
}

.packages-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  background: var(--soft);
}

.package-card {
  padding: 28px;
}

.package-card.featured {
  border-color: rgba(239, 85, 96, 0.46);
  box-shadow: 0 20px 50px rgba(65, 46, 40, 0.12);
}

.package-card h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.package-card .price {
  color: var(--teal);
  font-weight: 900;
}

.package-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 26px;
  padding-left: 20px;
  color: var(--muted);
}

.package-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  color: var(--coral-dark);
  border: 1px solid rgba(239, 85, 96, 0.35);
  border-radius: 999px;
  font-weight: 900;
}

.process-section {
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
}

.process-list {
  display: grid;
  gap: 16px;
}

.process-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 22px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-step span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--paper);
  background: var(--teal);
  border-radius: 50%;
  font-weight: 900;
}

.process-step h3 {
  margin-bottom: 4px;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-bottom {
  min-height: 390px;
  padding: clamp(64px, 8vw, 104px) 20px;
  text-align: center;
  background: #f5f5f5;
}

.contact-bottom-inner {
  width: min(760px, 100%);
  margin: 0 auto;
}

.contact-bottom h2 {
  margin-bottom: 2px;
  color: #2f2a3f;
  font-size: clamp(2.35rem, 5vw, 3rem);
  line-height: 1.1;
}

.contact-bottom p {
  margin-bottom: 30px;
  color: #242035;
  font-size: 1.17rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 42px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 274px;
  min-height: 60px;
  padding: 0 30px;
  color: var(--paper);
  background: #3d5f82;
  border-radius: 999px;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 28px rgba(61, 95, 130, 0.12);
}

button.contact-btn {
  border: 0;
  cursor: pointer;
}

.contact-btn:hover {
  background: #315171;
}

.contact-icon {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.contact-phone-number {
  margin: -20px 0 38px;
  color: #2f2a3f;
  font-size: 1.16rem;
  font-weight: 800;
}

.contact-phone-number a {
  color: #315f5a;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.social-block {
  width: min(420px, 100%);
  margin: 0 auto;
}

.social-block h3 {
  margin-bottom: 18px;
  color: #2f2a3f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.social-links a {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--paper);
  background: #24486f;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(36, 72, 111, 0.18);
  transition: transform 180ms ease, background 180ms ease;
}

.social-links a:hover {
  background: #315f5a;
  transform: translateY(-2px);
}

.social-links svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.site-footer {
  padding: 56px max(20px, calc((100vw - 1180px) / 2)) 24px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(23, 22, 26, 0.98), rgba(69, 47, 65, 0.96)),
    #17161a;
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(160px, 0.7fr));
  gap: 34px;
}

.footer-grid h3 {
  margin-bottom: 18px;
  color: #f2c97d;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid a {
  display: table;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.footer-grid a:hover {
  color: #ffffff;
}

.footer-company {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer-brand-logo {
  width: min(250px, 72vw);
  height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.footer-company h2 {
  margin-bottom: 0;
  color: #f2c97d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-company p,
.footer-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
}

.footer-grid p strong {
  color: #ffffff;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-socials a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transition: background 180ms ease, transform 180ms ease;
}

.footer-socials a:hover {
  background: rgba(242, 201, 125, 0.18);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.whatsapp-float {
  position: fixed;
  z-index: 30;
}

.whatsapp-float {
  right: 22px;
  bottom: 150px;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--paper);
  background: #2cc85f;
  border: 6px solid var(--paper);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(23, 22, 26, 0.22);
  font-weight: 900;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 78px;
  z-index: 30;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--paper);
  background: #5a4058;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(24, 20, 18, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 200ms ease, transform 200ms ease, background 180ms ease;
  cursor: pointer;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--coral);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 40;
  max-width: min(420px, calc(100% - 40px));
  padding: 14px 18px;
  color: var(--paper);
  background: #222129;
  border-radius: 6px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-cta {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .site-header.is-open .site-nav {
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 10px;
  }

  .hero-content,
  .intro-section,
  .process-section {
    grid-template-columns: 1fr;
  }

  .hero-content {
    align-items: end;
  }

  .quote-card {
    max-width: 560px;
  }

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

  .comparison-grid,
  .review-cards {
    grid-template-columns: 1fr;
  }

  .google-reviews,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .wizard-progress {
    top: 76px;
  }

  .estimate-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 76px;
    padding: 14px 18px;
    gap: 14px;
  }

  .brand-logo {
    width: min(204px, calc(100vw - 104px));
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    width: min(100% - 28px, 1180px);
    padding: 58px 0 44px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.55rem);
  }

  .hero-actions,
  .site-header.is-open .header-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn,
  .header-cta {
    width: 100%;
    min-width: 0;
  }

  .quote-card {
    padding: 22px;
  }

  .consultation-benefits {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .trust-badges,
  .service-grid,
  .package-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card-wide,
  .project-card-tall {
    grid-column: auto;
    grid-row: span 2;
  }

  .hero-highlights {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-stats div {
    min-height: 96px;
  }

  .trust-badges {
    padding: 18px 14px;
  }

  .project-showcase {
    padding-right: 14px;
    padding-left: 14px;
  }

  .project-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .project-filter {
    flex: 0 0 auto;
  }

  .testimonial-slider {
    grid-template-columns: 1fr;
  }

  .slider-arrow {
    display: none;
  }

  .testimonial-card {
    padding: 26px 18px;
  }

  .testimonial-card p {
    text-align: left;
  }

  .client-meta {
    justify-content: flex-start;
  }

  .comparison-grid,
  .google-reviews,
  .review-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .luxury-parallax {
    min-height: 400px;
    background-attachment: scroll;
  }

  .luxury-parallax-content {
    padding: 24px 18px;
  }

  .faq-section {
    width: min(100% - 28px, 980px);
  }

  .site-footer {
    padding: 42px 18px 24px;
  }

  .footer-grid {
    gap: 26px;
  }

  .footer-bottom {
    text-align: left;
  }

  .back-to-top {
    right: 14px;
    bottom: 82px;
  }

  .wizard-progress {
    overflow-x: auto;
    grid-template-columns: repeat(4, minmax(126px, 1fr));
    padding: 14px;
  }

  .wizard-progress-step {
    min-height: 58px;
  }

  .wizard-progress-step strong {
    font-size: 0.68rem;
  }

  .wizard-card {
    width: min(100% - 24px, 980px);
    min-height: 560px;
    margin: 22px auto 42px;
  }

  .estimate-form {
    min-height: 560px;
  }

  .wizard-step {
    padding: 34px 16px 28px;
  }

  .wizard-heading {
    margin-bottom: 24px;
  }

  .choice-row,
  .room-row {
    min-height: 58px;
    padding: 0 14px;
  }

  .choice-row span,
  .room-row > span {
    font-size: 1rem;
  }

  .counter {
    grid-template-columns: 32px 28px 32px;
    gap: 6px;
  }

  .counter-btn {
    width: 32px;
    height: 32px;
  }

  .package-option {
    grid-template-columns: 20px 1fr;
    padding: 14px;
  }

  .package-option-content img {
    aspect-ratio: 16 / 8.5;
  }

  .wizard-actions {
    padding: 14px;
  }

  .wizard-next,
  .wizard-submit {
    min-width: 138px;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 58px 0;
  }

  .feature-image {
    min-height: 360px;
  }

  .service-card img {
    height: 230px;
  }

  .gallery-grid {
    grid-auto-rows: 280px;
  }

  .gallery-item.wide {
    grid-row: span 1;
  }

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

  .contact-bottom {
    min-height: 330px;
    padding: 54px 14px 68px;
  }

  .contact-bottom p {
    font-size: 1rem;
  }

  .contact-actions {
    gap: 14px;
    margin-bottom: 34px;
  }

  .contact-btn {
    width: min(100%, 330px);
    min-width: 0;
  }

  .site-footer {
    padding: 24px 14px 18px;
    font-size: 0.95rem;
  }

  .social-links a {
    width: 52px;
    height: 52px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 118px;
    width: 54px;
    height: 54px;
    border-width: 5px;
  }

}

@media (max-width: 480px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand-logo {
    width: min(176px, calc(100vw - 92px));
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .site-header.is-open .site-nav {
    flex-direction: column;
    gap: 4px;
    padding-top: 12px;
  }

  .site-header.is-open .site-nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-content {
    width: min(100% - 24px, 1180px);
    padding: 42px 0 34px;
  }

  h1 {
    font-size: clamp(2rem, 14vw, 3.05rem);
    line-height: 1.08;
  }

  .hero-lede {
    font-size: 1.05rem;
  }

  .hero-actions {
    gap: 12px;
  }

  .primary-btn,
  .secondary-btn,
  .header-cta,
  .form-submit {
    min-height: 48px;
    padding-right: 18px;
    padding-left: 18px;
    font-size: 0.82rem;
  }

  .quote-card {
    padding: 18px;
    border-radius: 10px;
  }

  .quote-card h2 {
    font-size: 1.35rem;
  }

  .quote-card input,
  .quote-card select {
    min-height: 46px;
  }

  .consultation-benefits {
    padding: 12px;
  }

  .hero-stats {
    padding: 0;
  }

  .hero-stats div {
    min-height: 92px;
    padding: 18px 10px;
  }

  .hero-stats strong {
    font-size: 2rem;
  }

  .hero-stats span,
  .trust-badges div {
    font-size: 0.86rem;
  }

  .projects-heading h2,
  .centered-heading h2,
  .section-heading h2 {
    font-size: clamp(1.85rem, 10vw, 2.55rem);
  }

  .project-grid {
    grid-auto-rows: 88px;
    gap: 10px;
  }

  .project-card {
    border-radius: 8px;
  }

  .project-card-wide,
  .project-card-tall {
    grid-row: span 2;
  }

  .testimonial-card p {
    font-size: 1.05rem;
  }

  .comparison-card {
    padding: 12px;
    border-radius: 10px;
  }

  .comparison-card h3 {
    font-size: 1rem;
  }

  .comparison-slider {
    aspect-ratio: 3 / 3.4;
  }

  .comparison-label {
    top: 10px;
    padding: 6px 9px;
    font-size: 0.66rem;
  }

  .comparison-label.before {
    left: 10px;
  }

  .comparison-label.after {
    right: 10px;
  }

  .comparison-handle {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }

  .google-rating-card,
  .review-cards article,
  .package-card,
  .service-card {
    border-radius: 10px;
  }

  .footer-brand-logo {
    width: min(220px, 78vw);
  }

  .footer-socials a {
    width: 38px;
    height: 38px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 96px;
    width: 50px;
    height: 50px;
    border-width: 4px;
  }

  .back-to-top {
    right: 13px;
    bottom: 38px;
    width: 44px;
    height: 44px;
  }
}
