:root {
  --ink: #102a43;
  --ink-soft: #5a687c;
  --cream: #f8f7f3;
  --paper: #ffffff;
  --mint: #e9eef5;
  --mint-strong: #b9cbe3;
  --teal: #183153;
  --teal-dark: #0d213f;
  --sun: #c8102e;
  --line: #d9dee7;
  --shadow: 0 20px 50px rgba(16, 42, 67, 0.11);
  --shadow-soft: 0 12px 30px rgba(16, 42, 67, 0.07);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(34deg, transparent 43%, #ffffff 43% 48%, #c8102e 48% 51%, #ffffff 51% 56%, transparent 56%),
    linear-gradient(-34deg, transparent 43%, #ffffff 43% 48%, #c8102e 48% 51%, #ffffff 51% 56%, transparent 56%),
    linear-gradient(90deg, transparent 39%, #ffffff 39% 45%, #c8102e 45% 55%, #ffffff 55% 61%, transparent 61%),
    linear-gradient(0deg, transparent 38%, #ffffff 38% 44%, #c8102e 44% 56%, #ffffff 56% 62%, transparent 62%),
    #17365d;
  content: "";
  opacity: 0.055;
  pointer-events: none;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
.button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(200, 16, 46, 0.34);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}

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

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

.announcement {
  padding: 8px 20px;
  color: #fff;
  background: var(--ink);
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.025em;
  text-align: center;
}

.announcement span {
  color: #ff6179;
  font-weight: 900;
}

[data-site-header] {
  position: sticky;
  z-index: 50;
  top: 0;
}

.site-header {
  position: relative;
  border-bottom: 1px solid rgba(217, 222, 231, 0.88);
  background: rgba(248, 247, 243, 0.94);
  backdrop-filter: blur(15px);
}

.nav-wrap {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.24rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: var(--teal);
  box-shadow: 0 8px 20px rgba(24, 49, 83, 0.22);
  color: #fff;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
}

.brand-mark::before {
  width: 8px;
  height: 8px;
  top: 7px;
  right: 8px;
}

.brand-mark::after {
  width: 4px;
  height: 4px;
  top: 17px;
  right: 5px;
}

.brand-mark span {
  position: relative;
  z-index: 1;
  font-weight: 900;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav a {
  padding: 9px 11px;
  border-radius: 10px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 750;
  transition: 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--teal);
  background: var(--mint);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 9px 22px rgba(24, 49, 83, 0.20);
  color: #fff;
  font-weight: 850;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  background: var(--teal-dark);
  box-shadow: 0 12px 28px rgba(24, 49, 83, 0.28);
  transform: translateY(-2px);
}

.button.secondary {
  border-color: var(--line);
  background: #fff;
  box-shadow: none;
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.button.sun {
  background: var(--sun);
  box-shadow: none;
  color: #fff;
}

.button.small {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
}

.mobile-nav {
  display: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 25px;
  height: 2px;
  border-radius: 2px;
  background: var(--sun);
  content: "";
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Baskerville, "Iowan Old Style", Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 6vw, 5.7rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  margin-bottom: 11px;
  font-size: 1.45rem;
}

p {
  margin-top: 0;
}

.lead {
  max-width: 660px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.23rem);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 10vw, 125px) 0 85px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  width: 590px;
  height: 590px;
  top: -180px;
  right: -180px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0 7%, var(--mint) 8% 52%, rgba(233, 238, 245, 0.1) 53% 100%);
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(35px, 7vw, 90px);
}

.hero h1 span {
  color: var(--teal);
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 30px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

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

.check {
  display: inline-grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 480px;
}

.clean-card {
  position: absolute;
  inset: 20px 0 20px 36px;
  overflow: hidden;
  border: 9px solid #fff;
  border-radius: 36px;
  background: linear-gradient(145deg, #edf2f8 0%, #fff 62%);
  box-shadow: var(--shadow);
}

.clean-card::before {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -65px;
  bottom: -65px;
  border-radius: 50%;
  background: var(--sun);
  content: "";
  opacity: 0.7;
}

.room-scene {
  position: absolute;
  inset: 0;
}

.room-window {
  position: absolute;
  width: 43%;
  height: 34%;
  top: 13%;
  left: 11%;
  border: 7px solid #fff;
  border-radius: 18px;
  background: linear-gradient(180deg, #c8d7ea, #f1f5fa);
  box-shadow: 0 12px 25px rgba(23, 51, 47, 0.08);
}

.room-window::before,
.room-window::after {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  content: "";
}

.room-window::before {
  width: 5px;
  inset-block: 0;
  left: 49%;
}

.room-window::after {
  height: 5px;
  inset-inline: 0;
  top: 49%;
}

.room-sofa {
  position: absolute;
  width: 68%;
  height: 26%;
  right: 8%;
  bottom: 18%;
  border-radius: 28px 28px 15px 15px;
  background: var(--teal);
  box-shadow: 0 18px 28px rgba(15, 118, 110, 0.23);
}

.room-sofa::before,
.room-sofa::after {
  position: absolute;
  width: 43%;
  height: 63%;
  top: -42%;
  border: 5px solid #fff;
  border-radius: 22px 22px 8px 8px;
  background: #c8d7ea;
  content: "";
}

.room-sofa::before {
  left: 4%;
}

.room-sofa::after {
  right: 4%;
}

.room-plant {
  position: absolute;
  width: 17%;
  height: 21%;
  left: 7%;
  bottom: 14%;
  border-radius: 12px 12px 26px 26px;
  background: #d99666;
}

.room-plant::before {
  position: absolute;
  width: 80%;
  height: 170%;
  left: 10%;
  bottom: 58%;
  border-radius: 60% 10% 60% 10%;
  background: #66ad7c;
  box-shadow: -24px 22px 0 -3px #82c290, 25px 15px 0 -7px #4e9869;
  content: "";
  transform: rotate(16deg);
}

.sparkle {
  position: absolute;
  color: var(--sun);
  font-size: 2.1rem;
  font-weight: 900;
  animation: float 3.4s ease-in-out infinite;
}

.sparkle.one {
  top: 16%;
  right: 17%;
}

.sparkle.two {
  top: 42%;
  left: 7%;
  font-size: 1.25rem;
  animation-delay: -1.2s;
}

.floating-note {
  position: absolute;
  right: -18px;
  bottom: 2px;
  max-width: 220px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.floating-note strong {
  display: block;
  color: var(--teal);
  font-size: 1.2rem;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-10px) rotate(7deg); }
}

.section {
  padding: clamp(70px, 9vw, 115px) 0;
}

.section.mint {
  background: rgba(233, 238, 245, 0.91);
}

.section.white {
  background: rgba(255, 255, 255, 0.91);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 42px;
}

.section-header > div:first-child {
  max-width: 700px;
}

.section-header p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

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

.card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.card p {
  color: var(--ink-soft);
}

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

.icon-box {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 23px;
  place-items: center;
  border-radius: 17px;
  background: var(--mint);
  color: var(--teal);
  font-size: 1.5rem;
}

.service-card {
  overflow: hidden;
}

.service-card::after {
  position: absolute;
  width: 95px;
  height: 95px;
  right: -38px;
  bottom: -46px;
  border-radius: 50%;
  background: var(--sun);
  content: "";
  opacity: 0.45;
}

.two-column {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 90px);
}

.feature-list,
.plain-list,
.price-features {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 13px 0;
  color: var(--ink-soft);
}

.quote-panel {
  position: relative;
  padding: clamp(32px, 6vw, 62px);
  overflow: hidden;
  border-radius: 34px;
  background: var(--ink);
  box-shadow: var(--shadow);
  color: #fff;
}

.quote-panel::after {
  position: absolute;
  width: 240px;
  height: 240px;
  right: -90px;
  bottom: -110px;
  border: 45px solid rgba(244, 201, 93, 0.65);
  border-radius: 50%;
  content: "";
}

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

.quote-panel p {
  max-width: 700px;
  color: #d7dfeb;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 28px 24px;
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.82);
  counter-increment: steps;
}

.step::before {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  content: counter(steps, decimal-leading-zero);
  font-size: 0.82rem;
  font-weight: 900;
}

.step p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.page-hero {
  position: relative;
  padding: 85px 0 72px;
  overflow: hidden;
  background: rgba(233, 238, 245, 0.90);
}

.page-hero::after {
  position: absolute;
  width: 340px;
  height: 340px;
  top: -180px;
  right: 5%;
  border: 60px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 6vw, 5.1rem);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 800;
}

.stat-grid {
  display: grid;
  margin-top: 35px;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.stat {
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.stat strong {
  display: block;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

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

.price-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.price-card.featured {
  border: 2px solid var(--teal);
  transform: translateY(-8px);
}

.price-tag {
  align-self: flex-start;
  margin: -15px 0 18px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--sun);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  margin: 8px 0 18px;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  font-weight: 800;
}

.price small {
  color: var(--ink-soft);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
}

.price-card .button {
  margin-top: auto;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.price-table th {
  background: #f6faf8;
  color: var(--ink);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-table td:last-child {
  color: var(--teal);
  font-weight: 850;
  white-space: nowrap;
}

.calculator {
  display: grid;
  padding: clamp(28px, 5vw, 50px);
  border-radius: 28px;
  background: var(--ink);
  box-shadow: var(--shadow);
  color: #fff;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

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

.field label,
.fieldset-title {
  color: #d7e5e1;
  font-size: 0.84rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
}

.field select option {
  color: var(--ink);
}

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

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

.check-grid {
  display: grid;
  margin-top: 8px;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 14px;
}

.check-option {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #d7e5e1;
  font-size: 0.87rem;
}

.check-option input {
  accent-color: var(--sun);
}

.estimate-box {
  display: flex;
  min-height: 280px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.estimate-box .estimate-label {
  margin-bottom: 7px;
  color: #c4d9d3;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.estimate-amount {
  margin-bottom: 8px;
  color: var(--sun);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
}

.estimate-box p {
  color: #c4d9d3;
  font-size: 0.85rem;
}

.calculator-items {
  display: grid;
  margin-top: 20px;
  gap: 10px;
}

.calc-item {
  display: grid;
  min-height: 58px;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.calc-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #eef3f8;
  font-size: 0.9rem;
  font-weight: 750;
}

.calc-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  accent-color: var(--sun);
}

.calc-item .item-price {
  display: block;
  color: #bfcddd;
  font-size: 0.75rem;
  font-weight: 600;
}

.calc-item input[type="number"] {
  width: 62px;
  height: 39px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-align: center;
}

.calc-item input[type="number"]:disabled {
  opacity: 0.38;
}

.selection-summary {
  width: 100%;
  margin: 13px 0 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #d2dce8;
  font-size: 0.82rem;
  text-align: left;
}

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

.guide-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.guide-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.guide-card li {
  margin: 9px 0;
}

.notice {
  padding: 20px 22px;
  border-left: 5px solid var(--sun);
  border-radius: 0 15px 15px 0;
  background: #fff8df;
  color: #5a4a1e;
}

.areas-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
}

.area-list {
  display: grid;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.area-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-weight: 750;
}

.map-card {
  position: relative;
  min-height: 465px;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 30px;
  background: #e9eef5;
  box-shadow: var(--shadow);
}

.map-card::before,
.map-card::after {
  position: absolute;
  width: 580px;
  height: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 80px 0 rgba(255, 255, 255, 0.95), 0 160px 0 rgba(255, 255, 255, 0.95), 0 240px 0 rgba(255, 255, 255, 0.95), 0 320px 0 rgba(255, 255, 255, 0.95);
  content: "";
  transform: rotate(-17deg);
}

.map-card::before {
  top: 80px;
  left: -60px;
}

.map-card::after {
  top: 60px;
  left: -80px;
  transform: rotate(37deg);
}

.map-pin {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 120px;
  height: 120px;
  top: 50%;
  left: 50%;
  place-items: center;
  border: 14px solid #fff;
  border-radius: 50% 50% 50% 12px;
  background: var(--teal);
  box-shadow: var(--shadow);
  color: #fff;
  font-weight: 900;
  text-align: center;
  transform: translate(-50%, -65%) rotate(-45deg);
}

.map-pin span {
  transform: rotate(45deg);
}

.map-label {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 18px;
  left: 20px;
  padding: 13px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-weight: 800;
  text-align: center;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
}

.filter-button {
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-soft);
  font-weight: 800;
}

.filter-button.active,
.filter-button:hover {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}

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

.gallery-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.gallery-item.hidden {
  display: none;
}

.gallery-placeholder {
  position: relative;
  display: grid;
  min-height: 275px;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #e9eef5, #f8fafc);
  color: var(--teal);
}

.gallery-placeholder::before,
.gallery-placeholder::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.gallery-placeholder::before {
  width: 150px;
  height: 150px;
  top: -65px;
  right: -30px;
  background: rgba(244, 201, 93, 0.55);
}

.gallery-placeholder::after {
  width: 90px;
  height: 90px;
  bottom: -35px;
  left: -20px;
  background: rgba(15, 118, 110, 0.12);
}

.gallery-symbol {
  position: relative;
  z-index: 1;
  font-size: 4rem;
}

.gallery-copy {
  padding: 20px;
}

.gallery-copy p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

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

.review-card {
  position: relative;
  min-height: 265px;
  padding: 31px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.review-card::before {
  position: absolute;
  top: 8px;
  right: 22px;
  color: var(--mint);
  content: "“";
  font-family: Baskerville, Georgia, serif;
  font-size: 7rem;
  line-height: 1;
}

.review-stars {
  position: relative;
  z-index: 1;
  margin-bottom: 17px;
  color: var(--sun);
  font-size: 1rem;
  letter-spacing: 0.15em;
}

.review-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.review-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
}

.review-meta strong,
.review-meta span {
  display: block;
}

.review-meta span {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.review-placeholder {
  display: grid;
  min-height: 265px;
  place-items: center;
  padding: 31px;
  border: 2px dashed #bdc8d8;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink-soft);
  text-align: center;
}

.review-placeholder strong {
  display: block;
  margin-bottom: 7px;
  color: var(--teal);
  font-family: Baskerville, Georgia, serif;
  font-size: 1.35rem;
}

.review-form-panel {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.review-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.review-form .field label,
.review-form .fieldset-title {
  color: var(--ink);
}

.review-form .field input,
.review-form .field select,
.review-form .field textarea {
  border: 1px solid var(--line);
  background: #f8fafc;
  color: var(--ink);
}

.review-form .field input::placeholder,
.review-form .field textarea::placeholder {
  color: #8995a7;
}

.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 5px;
}

.star-rating input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.star-rating label {
  color: #cbd3df;
  cursor: pointer;
  font-size: 2.1rem;
  line-height: 1;
  transition: color 0.16s ease, transform 0.16s ease;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: var(--sun);
  transform: translateY(-1px);
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.consent-row input {
  margin-top: 4px;
  accent-color: var(--sun);
}

.form-status {
  padding: 14px 16px;
  border-radius: 12px;
  background: #fff3f5;
  color: #7e1024;
  font-weight: 750;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
}

.faq {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 850;
  text-align: left;
}

.faq-question span:last-child {
  color: var(--teal);
  font-size: 1.3rem;
}

.faq-answer {
  display: none;
  max-width: 800px;
  padding: 0 0 23px;
  color: var(--ink-soft);
}

.faq-item.open .faq-answer {
  display: block;
}

.cta-band {
  padding: 40px 0;
  background: var(--sun);
  color: #fff;
}

.cta-band .eyebrow {
  color: #fff;
}

.cta-band .eyebrow::before {
  background: #fff;
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.site-footer {
  padding: 65px 0 25px;
  background: var(--ink);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 55px;
}

.site-footer .brand {
  margin-bottom: 18px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: #c2ccdb;
}

.site-footer a:hover {
  color: #fff;
}

.footer-title {
  margin-bottom: 18px;
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin: 9px 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #97a4b8;
  font-size: 0.82rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 45;
  display: inline-flex;
  width: 58px;
  height: 58px;
  right: 22px;
  bottom: 22px;
  align-items: center;
  justify-content: center;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 12px 30px rgba(23, 51, 47, 0.25);
  color: #fff;
  font-size: 1.5rem;
}

.chatbot {
  position: fixed;
  z-index: 46;
  left: 22px;
  bottom: 22px;
}

.chat-launcher {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 12px 30px rgba(16, 42, 67, 0.25);
  color: #fff;
  font-weight: 850;
}

.chat-launcher span:first-child {
  color: #ff6b83;
}

.chat-panel {
  position: absolute;
  width: min(370px, calc(100vw - 28px));
  height: min(600px, calc(100vh - 145px));
  left: 0;
  bottom: 68px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 25px 70px rgba(16, 42, 67, 0.28);
}

.chat-panel[hidden] {
  display: none;
}

.chat-header {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 14px 17px;
  background: var(--teal);
  color: #fff;
}

.chat-header strong,
.chat-header span {
  display: block;
}

.chat-header span {
  color: #cad5e3;
  font-size: 0.76rem;
}

.chat-close {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.4rem;
}

.chat-messages {
  display: flex;
  height: calc(100% - 210px);
  min-height: 230px;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding: 17px;
  background: #f5f7fa;
}

.chat-message {
  max-width: 87%;
  padding: 11px 13px;
  border-radius: 15px 15px 15px 4px;
  background: #fff;
  box-shadow: 0 4px 13px rgba(16, 42, 67, 0.07);
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.chat-message.user {
  align-self: flex-end;
  border-radius: 15px 15px 4px 15px;
  background: var(--teal);
  color: #fff;
}

.chat-message a {
  display: block;
  margin-top: 7px;
  color: var(--sun);
  font-weight: 850;
}

.chat-choices {
  display: flex;
  min-height: 78px;
  align-content: flex-start;
  gap: 6px;
  overflow-x: auto;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.chat-choices button {
  height: 34px;
  flex: 0 0 auto;
  padding: 6px 10px;
  border: 1px solid #c8d2df;
  border-radius: 999px;
  background: #fff;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
}

.chat-choices button:hover {
  border-color: var(--teal);
  background: var(--mint);
}

.chat-input-row {
  display: grid;
  height: 60px;
  align-items: center;
  padding: 9px 10px 10px 12px;
  border-top: 1px solid var(--line);
  background: #fff;
  grid-template-columns: 1fr 40px;
  gap: 8px;
}

.chat-input-row input {
  width: 100%;
  height: 40px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
}

.chat-input-row button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: var(--sun);
  color: #fff;
  font-weight: 900;
}

.muted {
  color: var(--ink-soft);
}

.center {
  text-align: center;
}

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

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 12px; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 36px; }
.mb-0 { margin-bottom: 0; }

@media (max-width: 1060px) {
  .desktop-nav,
  .header-actions .button {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    position: fixed;
    z-index: 49;
    display: flex;
    visibility: hidden;
    inset: 113px 0 0;
    flex-direction: column;
    gap: 4px;
    padding: 25px 22px;
    background: var(--cream);
    opacity: 0;
    transform: translateY(-12px);
    transition: 0.2s ease;
  }

  .mobile-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 13px 14px;
    border-radius: 12px;
    color: var(--ink-soft);
    font-weight: 800;
  }

  .mobile-nav a[aria-current="page"] {
    background: var(--mint);
    color: var(--teal);
  }

  .mobile-nav .button {
    margin-top: 10px;
    color: #fff;
  }

  .cards,
  .price-grid,
  .gallery-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 820px) {
  .hero-grid,
  .two-column,
  .areas-grid,
  .calculator,
  .review-form {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 410px;
  }

  .clean-card {
    inset: 0 12px 20px;
  }

  .floating-note {
    right: 0;
  }

  .section-header,
  .cta-band .container {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .announcement {
    font-size: 0.76rem;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand {
    font-size: 1.05rem;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .mobile-nav {
    inset-block-start: 103px;
  }

  .hero {
    padding-top: 55px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.5rem, 13vw, 3.7rem);
  }

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

  .hero-visual {
    min-height: 350px;
  }

  .floating-note {
    max-width: 190px;
    padding: 14px;
  }

  .cards,
  .price-grid,
  .gallery-grid,
  .reviews-grid,
  .guide-grid,
  .steps,
  .stat-grid,
  .form-grid,
  .area-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:first-child,
  .field.full {
    grid-column: auto;
  }

  .price-card.featured {
    transform: none;
  }

  .check-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
  }

  .chatbot {
    left: 14px;
    bottom: 14px;
  }

  .chat-launcher span:last-child {
    display: none;
  }

  .chat-launcher {
    width: 52px;
    height: 52px;
    justify-content: center;
    padding: 0;
  }

  .chat-panel {
    position: fixed;
    height: min(610px, calc(100vh - 28px));
    inset: 14px;
    width: auto;
  }
}

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