:root {
  --paper: #f5f0e8;
  --paper-deep: #ebe4d9;
  --surface: #fffaf3;
  --ink: #242321;
  --muted: #6f6962;
  --forest: #2a2927;
  --forest-2: #3e3b37;
  --forest-3: #191817;
  --sage: #c9b9a5;
  --sage-soft: #efe4d7;
  --clay: #cf7428;
  --clay-soft: #f1dac5;
  --citrus: #e7a56d;
  --line: rgba(36, 35, 33, 0.13);
  --line-light: rgba(255, 255, 255, 0.16);
  --danger: #a63f36;
  --success: #1f6b50;
  --shadow-sm: 0 12px 36px rgba(19, 40, 35, 0.08);
  --shadow-md: 0 24px 70px rgba(18, 38, 33, 0.15);
  --shadow-lg: 0 36px 100px rgba(15, 34, 29, 0.2);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1240px;
  --header-height: 76px;
  color-scheme: light;
  font-synthesis: none;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(
      circle at 8% 3%,
      rgba(189, 104, 74, 0.08),
      transparent 24rem
    ),
    var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  background: var(--citrus);
  color: var(--forest-3);
}

:focus-visible {
  outline: 3px solid rgba(189, 104, 74, 0.7);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--forest-3);
  color: #fff;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

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

.section {
  padding-block: 118px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: var(--citrus);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 52px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 80px;
  max-width: none;
}

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

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading h2,
.before-after__copy h2,
.contact__copy h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5.15rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.section-heading h2 em,
.before-after__copy h2 em,
.contact__copy h2 em,
.hero h1 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.section-heading > p:not(.eyebrow),
.section-heading--split > p,
.before-after__copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.section-heading--light,
.section-heading--light h2 {
  color: #fff;
}

.section-heading--light > p {
  color: rgba(255, 255, 255, 0.7);
}

.section-heading--split.section-heading--light > p {
  color: rgba(255, 255, 255, 0.72);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: none;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.btn svg,
.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 13px 32px rgba(24, 58, 52, 0.2);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--forest-2);
  box-shadow: 0 18px 42px rgba(24, 58, 52, 0.28);
}

.btn--large {
  min-height: 58px;
  padding-inline: 25px;
  font-size: 0.98rem;
}

.btn--text {
  padding-inline: 8px;
}

.btn--text:hover {
  color: var(--clay);
}

.btn--light {
  background: #fff;
  color: var(--forest);
  box-shadow: 0 12px 30px rgba(10, 27, 23, 0.18);
}

.btn--light:hover {
  background: var(--citrus);
}

.btn--full {
  width: 100%;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  right: 0;
  left: 0;
  width: min(calc(100% - 36px), 1310px);
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 14px 45px rgba(21, 42, 37, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition:
    top 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

body.is-scrolled .site-header {
  top: 8px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 16px 50px rgba(21, 42, 37, 0.13);
}

.header__inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 18px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  border-radius: 15px;
}

.brand__mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--surface);
}

.brand__mark svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.brand__mark img {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.brand__mark rect {
  fill: var(--forest);
  stroke: var(--forest);
}

.brand__copy {
  display: grid;
  line-height: 1;
}

.brand__copy strong {
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: -0.045em;
}

.brand__copy small {
  margin-top: 4px;
  color: var(--clay);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.desktop-nav a {
  padding: 10px 11px;
  border-radius: 999px;
  color: #45544f;
  font-size: 0.82rem;
  font-weight: 700;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  background: var(--sage-soft);
  color: var(--forest);
}

.header__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.language-switch {
  display: flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.language-btn {
  width: 33px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 900;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.language-btn:hover {
  color: var(--forest);
}

.language-btn.is-active {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 5px 12px rgba(24, 58, 52, 0.18);
}

.header-phone {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.header-phone svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.btn--header {
  min-height: 46px;
  padding-inline: 18px;
  background: var(--forest);
  color: #fff;
}

.btn--header svg {
  width: 16px;
  height: 16px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--forest);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.25s ease;
}

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

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

.mobile-menu {
  padding: 0 12px 12px;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu nav {
  display: grid;
  gap: 4px;
  padding: 8px 0 14px;
}

.mobile-menu nav a {
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  font-weight: 750;
}

/* Hero */
.hero {
  display: grid;
  min-height: min(860px, 100svh);
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
  align-items: center;
  gap: clamp(38px, 6vw, 88px);
  padding-top: 142px;
  padding-bottom: 74px;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  animation: hero-in 0.65s 0.05s both ease-out;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.45rem, 6.1vw, 6.2rem);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.92;
  animation: hero-in 0.72s 0.12s both ease-out;
}

.hero h1 em {
  color: var(--clay);
}

.hero__lead {
  max-width: 650px;
  margin: 27px 0 0;
  color: #586762;
  font-size: clamp(1.03rem, 1.35vw, 1.18rem);
  line-height: 1.75;
  animation: hero-in 0.72s 0.19s both ease-out;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
  animation: hero-in 0.72s 0.26s both ease-out;
}

.hero__actions .btn--primary svg {
  width: 20px;
  height: 20px;
}

.hero__micro {
  margin: 14px 0 0;
  color: #74807c;
  font-size: 0.82rem;
  animation: hero-in 0.72s 0.31s both ease-out;
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  animation: hero-in 0.72s 0.36s both ease-out;
}

.hero__trust li {
  position: relative;
  display: grid;
  min-height: 82px;
  align-content: center;
  padding: 13px 10px 13px 37px;
  border-left: 1px solid var(--line);
}

.hero__trust li > span {
  position: absolute;
  top: 15px;
  left: 12px;
  color: var(--clay);
  font-family: Georgia, serif;
  font-size: 0.71rem;
  font-style: italic;
}

.hero__trust strong,
.hero__trust small {
  display: block;
}

.hero__trust strong {
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.25;
}

.hero__trust small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.3;
}

.hero__visual {
  position: relative;
  min-width: 0;
  animation: image-in 0.9s 0.18s both cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero__image-wrap {
  position: relative;
  isolation: isolate;
  aspect-ratio: 3 / 4;
  max-height: 690px;
  overflow: hidden;
  border-radius: 180px 180px 28px 28px;
  background: var(--paper-deep);
  box-shadow: var(--shadow-lg);
}

.hero__image-wrap::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 59% center;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero__image-wrap:hover img {
  transform: scale(1.025);
}

.hero__image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(15, 34, 29, 0.23));
  pointer-events: none;
}

.hero__badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow-sm);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero__badge--top {
  top: 30%;
  left: -36px;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.hero__badge--bottom {
  right: -22px;
  bottom: 38px;
  min-width: 205px;
  padding: 14px;
  border-radius: 19px;
}

.hero__badge--bottom strong,
.hero__badge--bottom small {
  display: block;
}

.hero__badge--bottom strong {
  font-size: 0.78rem;
  line-height: 1.25;
}

.hero__badge--bottom small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.badge-icon {
  display: grid;
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
}

.badge-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #4c9d73;
  box-shadow: 0 0 0 5px rgba(76, 157, 115, 0.13);
}

.paint-swatch {
  position: absolute;
  z-index: -1;
  right: -58px;
  bottom: -25px;
  display: flex;
  gap: 8px;
  transform: rotate(-8deg);
}

.paint-swatch span {
  width: 50px;
  height: 118px;
  border: 7px solid var(--paper);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}

.paint-swatch span:nth-child(1) {
  background: #d4b49b;
}
.paint-swatch span:nth-child(2) {
  background: #a9b7a6;
}
.paint-swatch span:nth-child(3) {
  background: #f1e5d4;
}
.paint-swatch span:nth-child(4) {
  background: #b96b50;
}

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

@keyframes image-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Service strip */
.service-strip {
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: var(--forest);
  color: #fff;
}

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

.service-strip__inner > div {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding-inline: 18px;
  border-right: 1px solid var(--line-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
}

.service-strip__inner > div:last-child {
  border-right: 0;
}

.service-strip svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--citrus);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

/* Services */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.38);
  transition:
    background 0.35s ease,
    color 0.35s ease;
}

.service-card::after {
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 155px;
  height: 155px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  transform: scale(0.5);
  opacity: 0;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}

.service-card:hover {
  background: var(--forest);
  color: #fff;
}

.service-card:hover::after {
  transform: scale(1);
  opacity: 1;
}

.service-card--accent {
  background: var(--clay-soft);
}

.service-card__number {
  color: rgba(23, 43, 39, 0.36);
  font-family: Georgia, serif;
  font-size: 0.77rem;
  font-style: italic;
  transition: color 0.35s ease;
}

.service-card__icon {
  display: grid;
  width: 53px;
  height: 53px;
  place-items: center;
  margin: 42px 0 25px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--forest);
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.service-card__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.service-card:hover .service-card__icon {
  background: var(--citrus);
  transform: rotate(-7deg) scale(1.04);
}

.service-card:hover .service-card__number {
  color: var(--citrus);
}

.service-card h3 {
  margin: 0;
  font-size: 1.38rem;
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.service-card p {
  margin: 12px 0 24px;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.7;
  transition: color 0.35s ease;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}

.service-card__tag {
  width: fit-content;
  margin-top: auto;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition:
    border-color 0.35s ease,
    color 0.35s ease;
}

.service-card:hover .service-card__tag {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 38px;
  padding: 28px 32px;
  border-radius: 23px;
  background: var(--clay);
  color: #fff;
  box-shadow: 0 18px 48px rgba(127, 65, 43, 0.17);
}

.inline-cta div {
  display: grid;
}

.inline-cta div span {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inline-cta div strong {
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  letter-spacing: -0.03em;
}

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

.btn--outline-light:hover,
.btn--outline-light:focus-visible {
  border-color: var(--citrus);
  background: rgba(216, 229, 105, 0.1);
  color: var(--citrus);
}

.calculator-teaser {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.7fr);
  align-items: center;
  gap: clamp(38px, 7vw, 92px);
  margin-top: 38px;
  padding: clamp(32px, 5vw, 60px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(
      circle at 0 100%,
      rgba(169, 192, 178, 0.2),
      transparent 25rem
    ),
    var(--surface);
  box-shadow: var(--shadow-sm);
}

.calculator-teaser::before {
  position: absolute;
  top: -95px;
  left: 42%;
  width: 240px;
  height: 240px;
  border: 36px solid rgba(216, 229, 105, 0.18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.calculator-teaser__copy,
.calculator-teaser__preview {
  position: relative;
  z-index: 1;
}

.calculator-teaser__copy h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.45rem, 4.5vw, 4.6rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.97;
}

.calculator-teaser__copy h2 em {
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.calculator-teaser__copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 23px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.calculator-teaser__copy ul {
  display: grid;
  gap: 9px;
  margin: 25px 0 28px;
  padding: 0;
  list-style: none;
}

.calculator-teaser__copy li {
  position: relative;
  padding-left: 27px;
  color: #43544f;
  font-size: 0.89rem;
  font-weight: 690;
}

.calculator-teaser__copy li::before {
  position: absolute;
  top: 0.42em;
  left: 2px;
  width: 11px;
  height: 6px;
  border-bottom: 2px solid var(--forest);
  border-left: 2px solid var(--forest);
  content: "";
  transform: rotate(-45deg);
}

.calculator-teaser__preview {
  padding: 28px;
  border-radius: 25px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(216, 229, 105, 0.18),
      transparent 13rem
    ),
    var(--forest-3);
  box-shadow: var(--shadow-md);
  color: #fff;
  transform: rotate(1.5deg);
}

.calculator-teaser__preview-head,
.calculator-teaser__preview-line,
.calculator-teaser__preview-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.calculator-teaser__preview-head {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calculator-teaser__preview-head strong {
  color: var(--citrus);
  font-size: 1rem;
}

.calculator-teaser__preview-line {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.calculator-teaser__preview-line strong {
  flex: 0 0 auto;
  color: #fff;
}

.calculator-teaser__preview-total {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
}

.calculator-teaser__preview-total strong {
  color: var(--citrus);
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.calculator-teaser__preview > small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.66rem;
  line-height: 1.5;
}

.apartment-teaser {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.78fr);
  gap: clamp(34px, 6vw, 82px);
  margin-top: 38px;
  padding: clamp(32px, 5vw, 60px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(189, 104, 74, 0.25),
      transparent 26rem
    ),
    radial-gradient(
      circle at 0 100%,
      rgba(169, 192, 178, 0.12),
      transparent 22rem
    ),
    var(--forest-3);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.apartment-teaser::after {
  position: absolute;
  top: -110px;
  right: -90px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.apartment-teaser__copy,
.apartment-teaser__cases {
  position: relative;
  z-index: 1;
}

.apartment-teaser__copy h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(2.45rem, 4.5vw, 4.6rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.97;
}

.apartment-teaser__copy h2 em {
  color: var(--citrus);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.apartment-teaser__copy > p:not(.eyebrow) {
  max-width: 630px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.apartment-teaser__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 29px;
}

.apartment-teaser__note {
  display: block;
  max-width: 610px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.73rem;
  line-height: 1.55;
}

.apartment-teaser__cases {
  align-self: center;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.apartment-teaser__cases li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 3px 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-light);
}

.apartment-teaser__cases li > span {
  grid-row: 1 / span 2;
  color: var(--citrus);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.86rem;
  font-style: italic;
}

.apartment-teaser__cases strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.apartment-teaser__cases small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.79rem;
  line-height: 1.55;
}

/* Portfolio */
.portfolio {
  background:
    radial-gradient(
      circle at 78% 16%,
      rgba(169, 192, 178, 0.1),
      transparent 30rem
    ),
    var(--forest-3);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, minmax(260px, 340px));
  gap: 14px;
}

.project-card {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #213d36;
}

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

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.05);
}

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(11, 29, 24, 0.86));
}

.project-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(22px, 3vw, 38px);
  color: #fff;
}

.project-card figcaption > span {
  color: var(--citrus);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 7px 0 0;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.project-card p {
  max-width: 480px;
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

/* Before / after */
.before-after {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(500px, 1.3fr);
  align-items: center;
  gap: clamp(46px, 7vw, 95px);
}

.before-after__copy h2 {
  font-size: clamp(2.6rem, 4.7vw, 4.8rem);
}

.before-after__copy > p:not(.eyebrow) {
  margin-top: 25px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 750;
}

.check-list li > span:first-child {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--forest);
}

.check-list svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.compare-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 30px 0 0 !important;
  color: var(--clay) !important;
  font-size: 0.78rem !important;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.compare-hint svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.compare {
  --compare-position: 52%;
  position: relative;
  isolation: isolate;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 8px solid var(--surface);
  border-radius: 30px;
  background: var(--paper-deep);
  box-shadow: var(--shadow-lg);
  cursor: ew-resize;
  user-select: none;
}

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

.compare__after {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  clip-path: inset(0 calc(100% - var(--compare-position)) 0 0);
  overflow: hidden;
}

.compare__after img {
  width: 100%;
}

.compare__divider {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: var(--compare-position);
  width: 2px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(22, 43, 38, 0.15);
  transform: translateX(-50%);
  pointer-events: none;
}

.compare__divider > span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--clay);
  color: #fff;
  box-shadow: 0 10px 26px rgba(30, 30, 25, 0.26);
  transform: translate(-50%, -50%);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.compare:focus-within .compare__divider > span {
  box-shadow:
    0 0 0 5px rgba(216, 229, 105, 0.72),
    0 10px 26px rgba(30, 30, 25, 0.26);
  transform: translate(-50%, -50%) scale(1.03);
}

.compare__divider svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.compare__label {
  position: absolute;
  z-index: 2;
  top: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(22, 43, 38, 0.72);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.compare__label--before {
  right: 18px;
}
.compare__label--after {
  left: 18px;
}

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

/* Process */
.process {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 68px 0 0;
  padding: 0;
  list-style: none;
}

.process-step {
  position: relative;
  padding: 0 28px;
  border-left: 1px solid var(--line);
}

.process-step:first-child {
  padding-left: 0;
  border-left: 0;
}

.process-step:last-child {
  padding-right: 0;
}

.process-step__number {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--citrus);
  font-family: Georgia, serif;
  font-size: 0.84rem;
  font-style: italic;
  box-shadow: 0 12px 24px rgba(24, 58, 52, 0.16);
  transition:
    transform 0.28s ease,
    background 0.28s ease;
}

.process-step:hover .process-step__number {
  background: var(--clay);
  transform: translateY(-5px);
}

.process-step h3 {
  margin: 0;
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.process-step p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

/* Reviews */
.reviews__intro {
  align-self: end;
}

.rating span {
  color: var(--clay);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.reviews__intro p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

.review-card {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.review-card--dark {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
}

.review-card__quote-mark {
  width: 34px;
  height: auto;
  margin-bottom: 32px;
  fill: var(--clay-soft);
}

.review-card--dark .review-card__quote-mark {
  fill: var(--citrus);
}

.review-card blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.5vw, 1.27rem);
  line-height: 1.55;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 30px;
}

.avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 900;
}

.review-card--dark .avatar {
  background: var(--citrus);
}

.review-card footer span:last-child {
  display: grid;
}

.review-card footer strong {
  font-size: 0.8rem;
}

.review-card footer small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 0.7rem;
}

.review-card--dark footer small {
  color: rgba(255, 255, 255, 0.62);
}

/* FAQ */
.faq {
  padding-top: 54px;
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(500px, 1fr);
  align-items: start;
  gap: clamp(55px, 10vw, 140px);
}

.faq .section-heading {
  position: sticky;
  top: 120px;
  margin-bottom: 0;
}

.faq .section-heading > p:not(.eyebrow) {
  margin-top: 25px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  color: var(--clay);
  font-size: 0.84rem;
  font-weight: 850;
}

.text-link svg {
  transition: transform 0.2s ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

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

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

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 25px 0;
  list-style: none;
  font-size: 1.03rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
}

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

.faq-icon {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  border-radius: 99px;
  background: var(--forest);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-icon {
  background: var(--citrus);
  transform: rotate(180deg);
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item p {
  max-width: 720px;
  margin: -6px 0 25px;
  padding-right: 56px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* Contact */
.contact {
  padding-top: 60px;
  padding-bottom: 38px;
}

.contact__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: clamp(36px, 7vw, 90px);
  padding: clamp(30px, 5vw, 70px);
  border-radius: 38px;
  background:
    radial-gradient(
      circle at 0 100%,
      rgba(216, 229, 105, 0.08),
      transparent 28rem
    ),
    radial-gradient(
      circle at 100% 0,
      rgba(189, 104, 74, 0.19),
      transparent 24rem
    ),
    var(--forest-3);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.contact__copy {
  align-self: center;
}

.contact__copy h2 {
  color: #fff;
  font-size: clamp(2.7rem, 4.8vw, 5rem);
}

.contact__copy > p:not(.eyebrow) {
  max-width: 550px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.contact__methods {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.contact__methods a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px;
  border: 1px solid var(--line-light);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.04);
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.contact__methods a:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.contact__method-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  background: var(--citrus);
  color: var(--forest-3);
}

.contact__method-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact__methods a > span:last-child {
  display: grid;
  overflow: hidden;
}

.contact__methods small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact__methods strong {
  overflow: hidden;
  font-size: 0.88rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact__availability {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
}

.contact__availability > span:last-child {
  display: grid;
}

.contact__availability strong {
  font-size: 0.78rem;
}

.contact__availability small {
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.7rem;
}

.quote-form {
  padding: clamp(22px, 3.3vw, 38px);
  border-radius: 28px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

.quote-form__head {
  margin-bottom: 27px;
}

.quote-form__step {
  color: var(--clay);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote-form__head h3 {
  margin: 6px 0 0;
  font-size: clamp(1.55rem, 2.7vw, 2.15rem);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 1.1;
}

.quote-form__head p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

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

.field {
  display: grid;
  align-content: start;
}

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

.field > span {
  margin-bottom: 7px;
  color: #3c4c47;
  font-size: 0.74rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(23, 43, 39, 0.16);
  border-radius: 12px;
  outline: 0;
  background: #fff;
  color: var(--ink);
  font-size: 0.85rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.field input,
.field select {
  height: 49px;
  padding: 0 13px;
}

.field select {
  padding-right: 34px;
}

.field textarea {
  min-height: 105px;
  padding: 12px 13px;
  resize: vertical;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest-2);
  box-shadow: 0 0 0 4px rgba(36, 82, 73, 0.11);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
  background: #fff8f6;
}

.field-error {
  min-height: 15px;
  margin-top: 3px;
  color: var(--danger);
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.3;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 17px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.5;
  cursor: pointer;
}

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

.consent__box {
  display: grid;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  place-items: center;
  margin-top: 1px;
  border: 1px solid rgba(23, 43, 39, 0.25);
  border-radius: 5px;
  background: #fff;
  color: #fff;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.consent__box svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
  opacity: 0;
}

.consent input:checked + .consent__box {
  border-color: var(--forest);
  background: var(--forest);
}

.consent input:checked + .consent__box svg {
  opacity: 1;
}

.consent input:focus-visible + .consent__box {
  box-shadow: 0 0 0 4px rgba(189, 104, 74, 0.25);
}

.consent button {
  display: inline;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: none;
  color: var(--forest);
  font-size: inherit;
  font-weight: 800;
  cursor: pointer;
}

.consent-error {
  display: block;
  min-height: 0;
  margin: 1px 0 0 28px;
}

.form-submit {
  margin-top: 17px;
  border: 0;
}

.form-submit svg {
  width: 20px;
  height: 20px;
}

.form-note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
  margin: 11px 0 0;
  color: #7b8582;
  font-size: 0.64rem;
  line-height: 1.45;
  text-align: center;
}

.form-note svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--success);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.form-status {
  min-height: 0;
  margin: 8px 0 0;
  color: var(--success);
  font-size: 0.72rem;
  font-weight: 750;
  text-align: center;
}

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

/* Footer */
.site-footer {
  padding: 84px 0 calc(30px + env(safe-area-inset-bottom));
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line);
}

.brand--footer .brand__mark {
  color: var(--surface);
}

.footer__brand > p {
  max-width: 440px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 50px;
}

.footer__nav > div {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer__nav strong {
  margin-bottom: 7px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__nav a {
  color: var(--muted);
  font-size: 0.78rem;
  transition: color 0.2s ease;
}

.footer__nav a:hover {
  color: var(--clay);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 23px;
  color: #7f8986;
  font-size: 0.7rem;
}

.footer__bottom button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: none;
  cursor: pointer;
}

/* Floating actions */
.floating-whatsapp {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: #146b4a;
  color: #fff;
  box-shadow: 0 16px 42px rgba(19, 71, 51, 0.3);
  font-size: 0.78rem;
  font-weight: 850;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.floating-whatsapp:hover {
  background: #0e5a3d;
  transform: translateY(-3px);
}

.floating-whatsapp svg,
.mobile-actions svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.mobile-actions {
  display: none;
}

/* Dialog */
.privacy-dialog {
  width: min(calc(100% - 32px), 580px);
  padding: 26px;
  border: 0;
  border-radius: 24px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.privacy-dialog::backdrop {
  background: rgba(10, 27, 23, 0.72);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.privacy-dialog__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.privacy-dialog h2 {
  margin: 0;
  font-size: 1.55rem;
  letter-spacing: -0.045em;
}

.privacy-dialog__head button {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.privacy-dialog__head svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.privacy-dialog__body {
  margin: 22px 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.privacy-dialog__body p:last-child {
  margin-bottom: 0;
}

/* Reveal */
body.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

body.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-phone {
    display: grid;
  }

  .paint-swatch {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.83fr);
    padding-top: 142px;
    padding-bottom: 90px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 6.8vw, 5.1rem);
  }

  .hero__trust {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 350px;
  }

  .hero__trust li {
    min-height: 56px;
  }

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

  .before-after {
    grid-template-columns: 1fr;
  }

  .before-after__copy {
    max-width: 760px;
  }

  .compare {
    width: min(100%, 850px);
    margin-inline: auto;
  }

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

  .contact__copy {
    max-width: 720px;
  }

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

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .section {
    padding-block: 88px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 126px;
  }

  .hero__copy {
    max-width: 720px;
  }

  .hero__visual {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .hero__image-wrap {
    aspect-ratio: 4 / 3.3;
    max-height: none;
    border-radius: 160px 160px 25px 25px;
  }

  .hero__image-wrap img {
    object-position: 60% 42%;
  }

  .hero__trust {
    max-width: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

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

  .service-strip__inner > div:nth-child(2) {
    border-right: 0;
  }

  .service-strip__inner > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .portfolio__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .calculator-teaser {
    grid-template-columns: 1fr;
  }

  .calculator-teaser__preview {
    transform: none;
  }

  .apartment-teaser {
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card--wide {
    min-height: 440px;
    grid-row: auto;
  }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 46px 0;
  }

  .process-step:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

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

  .review-card {
    min-height: 300px;
  }

  .faq__layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .faq .section-heading {
    position: static;
  }

  .footer__top {
    display: grid;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }

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

  .section {
    padding-block: 72px;
  }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    border-radius: 18px;
  }

  .header__inner {
    padding: 7px 8px 7px 12px;
  }

  .brand__mark,
  .brand__mark svg,
  .brand__mark img {
    width: 42px;
    height: 42px;
  }

  .brand__copy strong {
    font-size: 0.94rem;
  }

  .brand__copy small {
    font-size: 0.52rem;
  }

  .header-phone,
  .btn--header {
    display: none;
  }

  .language-switch {
    gap: 0;
  }

  .language-btn {
    width: 29px;
    height: 29px;
    font-size: 0.59rem;
  }

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

  .mobile-menu {
    max-height: calc(100dvh - 92px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .section-heading h2,
  .before-after__copy h2,
  .contact__copy h2 {
    font-size: clamp(2.35rem, 11.2vw, 3.35rem);
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .hero {
    gap: 38px;
    padding-top: 108px;
    padding-bottom: 66px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14.7vw, 4.2rem);
    line-height: 0.94;
  }

  .hero__lead {
    margin-top: 22px;
    font-size: 0.98rem;
  }

  .hero__actions {
    display: grid;
    gap: 8px;
    margin-top: 28px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__micro {
    text-align: center;
  }

  .hero__trust {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .hero__trust li {
    min-height: 58px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero__trust li:last-child {
    border-bottom: 1px solid var(--line);
  }

  .hero__image-wrap {
    aspect-ratio: 4 / 4.25;
    border-radius: 110px 110px 22px 22px;
  }

  .hero__image-wrap img {
    object-position: 62% center;
  }

  .hero__badge--top {
    top: 14%;
    left: 10px;
    max-width: calc(100% - 20px);
    font-size: 0.68rem;
  }

  .hero__badge--bottom {
    right: 10px;
    bottom: 14px;
    min-width: 190px;
  }

  .paint-swatch {
    display: none;
  }

  .service-strip__inner > div {
    min-height: 74px;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    font-size: 0.67rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .service-card {
    min-height: 295px;
    border-left: 1px solid var(--line);
    padding: 25px;
  }

  .service-card__icon {
    margin: 34px 0 22px;
  }

  .inline-cta {
    display: grid;
    padding: 24px;
  }

  .inline-cta .btn {
    width: 100%;
  }

  .calculator-teaser {
    gap: 32px;
    padding: 29px 22px;
    border-radius: 24px;
  }

  .calculator-teaser__copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .calculator-teaser__copy .btn {
    width: 100%;
  }

  .calculator-teaser__preview {
    padding: 22px;
    border-radius: 21px;
  }

  .apartment-teaser {
    gap: 34px;
    padding: 29px 22px;
    border-radius: 24px;
  }

  .apartment-teaser__copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .apartment-teaser__actions {
    display: grid;
  }

  .apartment-teaser__actions .btn {
    width: 100%;
  }

  .apartment-teaser__cases li {
    grid-template-columns: 34px 1fr;
  }

  .project-card,
  .project-card--wide {
    min-height: 420px;
  }

  .before-after {
    gap: 38px;
  }

  .compare {
    border-width: 5px;
    border-radius: 20px;
  }

  .compare__divider > span {
    width: 47px;
    height: 47px;
  }

  .compare__label {
    top: 11px;
    padding: 6px 9px;
    font-size: 0.58rem;
  }

  .compare__label--before {
    right: 11px;
  }
  .compare__label--after {
    left: 11px;
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 45px;
  }

  .process-step,
  .process-step:first-child,
  .process-step:nth-child(3),
  .process-step:last-child {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 0 18px;
    padding: 0 0 34px;
    border: 0;
  }

  .process-step__number {
    grid-row: 1 / span 2;
    width: 50px;
    height: 50px;
    margin: 0;
  }

  .process-step h3 {
    align-self: center;
  }

  .process-step p {
    grid-column: 2;
  }

  .reviews__track {
    display: flex;
    width: calc(100% + 14px);
    gap: 12px;
    margin-right: -14px;
    padding-right: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .reviews__track::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    min-width: min(86vw, 350px);
    min-height: 345px;
    scroll-snap-align: start;
  }

  .faq {
    padding-top: 30px;
  }

  .faq-item summary {
    padding-block: 21px;
    font-size: 0.95rem;
  }

  .faq-item p {
    padding-right: 0;
    font-size: 0.86rem;
  }

  .contact {
    width: 100%;
    padding-top: 34px;
    padding-bottom: 20px;
  }

  .contact__panel {
    width: calc(100% - 16px);
    gap: 40px;
    padding: 30px 14px 14px;
    border-radius: 26px;
  }

  .contact__copy {
    padding-inline: 8px;
  }

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

  .quote-form {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .site-footer {
    padding-top: 60px;
    padding-bottom: 24px;
  }

  .footer__top {
    gap: 40px;
    padding-bottom: 38px;
  }

  .footer__nav {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-actions {
    position: fixed;
    z-index: 90;
    right: 8px;
    bottom: 8px;
    left: 8px;
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 7px;
    padding: 7px;
    padding-bottom: calc(7px + env(safe-area-inset-bottom));
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.94);
    box-shadow: 0 15px 45px rgba(17, 40, 34, 0.2);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  .mobile-actions a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 0.76rem;
    font-weight: 850;
  }

  .mobile-actions .mobile-actions__primary {
    border-color: var(--forest);
    background: var(--forest);
    color: #fff;
  }
}

@media (max-width: 400px) {
  .brand__copy {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 15vw, 3.35rem);
  }

  .hero__actions .btn {
    padding-inline: 16px;
    font-size: 0.88rem;
  }

  .project-card,
  .project-card--wide {
    min-height: 360px;
  }

  .review-card {
    min-width: 86vw;
    padding: 27px;
  }
}

@media (max-height: 550px) and (orientation: landscape) and (max-width: 900px) {
  .mobile-menu {
    max-height: calc(100dvh - 86px);
  }

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

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

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

  body.reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
