:root {
  --bg: #f8f5ee;
  --surface: #fffdf8;
  --surface-strong: #eee5d7;
  --ink: #25241f;
  --muted: #6d675d;
  --line: #ddd3c4;
  --green: #6f8a6a;
  --green-dark: #405c3d;
  --clay: #c17850;
  --amber: #e9b44c;
  --shadow: 0 20px 60px rgba(77, 63, 42, 0.12);
  --content-max: 1320px;
  --wide-max: 1440px;
  --narrow-max: 880px;
  --gutter: clamp(18px, 4vw, 56px);
  --section-y: clamp(72px, 7vw, 128px);
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 8% 8%,
      rgba(233, 180, 76, 0.18),
      transparent 26rem
    ),
    linear-gradient(180deg, #fbf8f1 0%, var(--bg) 42%, #f4eee3 100%);
}

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

button,
summary {
  font: inherit;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(22px, 3vw, 42px);
  align-items: center;
  padding: 18px max(var(--gutter), calc((100vw - var(--wide-max)) / 2));
  background: rgba(248, 245, 238, 0.86);
  border-bottom: 1px solid rgba(221, 211, 196, 0.7);
  backdrop-filter: blur(18px);
}

.brand,
.header-phone,
.header-contact,
.header-tg,
.main-nav,
.header-actions,
.header-socials {
  display: flex;
  align-items: center;
}

.brand {
  flex-shrink: 0;
}

.brand__logo {
  display: block;
  width: auto;
  height: clamp(34px, 3.2vw, 44px);
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 16px;
}

.footer-brand .brand__logo {
  height: clamp(40px, 3.8vw, 52px);
}

.main-nav {
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.header-phone {
  gap: 8px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 6px 12px;
  border-radius: 999px;
}

.main-nav a,
.header-phone {
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.main-nav a:hover,
.header-phone:hover {
  color: var(--green-dark);
}

.main-nav a:hover {
  background: rgba(230, 220, 205, 0.7);
}

.header-phone__icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--green-dark);
  border-radius: 50%;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.header-phone:hover .header-phone__icon {
  transform: translateY(-2px);
  background: var(--clay);
}

.header-socials img,
.header-phone__icon img {
  display: block;
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.header-actions {
  justify-content: flex-end;
  gap: 14px;
}

.header-contact {
  gap: 10px;
}

.header-tg {
  display: none;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--green-dark);
  border-radius: 50%;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.header-tg:hover {
  transform: translateY(-1px);
  background: var(--clay);
}

.header-tg img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.header-socials {
  gap: 7px;
}

.header-socials a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--green-dark);
  border-radius: 50%;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.header-socials a:hover {
  transform: translateY(-2px);
  background: var(--clay);
}

.header-phone {
  color: var(--green-dark);
  font-weight: 800;
}

.section {
  width: min(var(--content-max), calc(100% - var(--gutter) - var(--gutter)));
  margin: 0 auto;
  padding: var(--section-y) 0;
}

.hero {
  grid-template-columns: minmax(0, 820px) minmax(280px, 360px);
  gap: clamp(32px, 4vw, 72px);
  align-content: center;
  padding-top: clamp(112px, 9vw, 156px);
  padding-bottom: clamp(72px, 7vw, 120px);
}

.fullscreen-panel--hero {
  background: url("../graphic/images/bg_hero.avif");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero::after {
  background:
    linear-gradient(
      90deg,
      rgba(31, 34, 27, 0.82),
      rgba(31, 34, 27, 0.56) 48%,
      rgba(31, 34, 27, 0.18)
    ),
    linear-gradient(0deg, rgba(31, 34, 27, 0.64), transparent 44%),
    radial-gradient(
      circle at 18% 26%,
      rgba(233, 180, 76, 0.22),
      transparent 24rem
    );
}

.hero__content {
  align-self: end;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  color: #fffdf8;
  font-size: clamp(44px, 5.8vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 3.5vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.hero__text,
.section-heading p,
.service-card p,
.why__intro > p,
.why-card p,
.process-list p,
.faq p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero__text {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 253, 248, 0.84);
  font-size: clamp(17px, 1.35vw, 21px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.contact-dropdown {
  position: relative;
}

.contact-dropdown__popover {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  z-index: 10;
  width: min(280px, calc(100vw - var(--gutter) * 2));
  padding: 20px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid rgba(221, 211, 196, 0.96);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.contact-dropdown--end .contact-dropdown__popover {
  left: 0;
  left: auto;
}

.contact-dropdown__popover[hidden] {
  display: none;
}

.contact-dropdown__popover strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.contact-dropdown__popover > a {
  display: block;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 800;
}

.contact-dropdown__popover .social-links {
  margin-top: 4px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

.button--primary {
  color: #fffdf8 !important;
  background: var(--green-dark);
  box-shadow: 0 14px 30px rgba(64, 92, 61, 0.25);
}

.button--secondary {
  color: var(--green-dark);
  background: #e6dccd;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
  max-width: 720px;
}

.hero__facts div,
.why-card,
.service-card,
.process-list li,
.faq details,
.contact-popover,
.cookie-banner {
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(221, 211, 196, 0.86);
  box-shadow: var(--shadow);
}

.hero__facts div {
  padding: 18px;
  color: #fffdf8;
  background: rgba(255, 253, 248, 0.12);
  border-color: rgba(255, 253, 248, 0.28);
  border-radius: 18px;
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.hero__facts strong,
.hero__facts span {
  display: block;
}

.hero__facts strong {
  margin-bottom: 4px;
  font-size: 18px;
}

.hero__facts span {
  color: rgba(255, 253, 248, 0.72);
  font-size: 14px;
}

.hero__aside {
  align-self: end;
  max-width: 360px;
  padding: clamp(20px, 2vw, 28px);
  color: #fffdf8;
  background: rgba(255, 253, 248, 0.14);
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 24px;
  backdrop-filter: blur(16px);
}

.hero__aside span,
.hero__aside strong,
.hero__aside a {
  display: block;
}

.hero__aside span {
  margin-bottom: 10px;
  color: #f4d58f;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero__aside strong {
  margin-bottom: 18px;
  font-size: 22px;
  line-height: 1.25;
}

.hero__aside a {
  color: #fffdf8;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.image-placeholder {
  display: grid;
  min-height: 210px;
  place-items: center;
  padding: 28px;
  color: #8a806f;
  text-align: center;
  background:
    linear-gradient(
      135deg,
      rgba(255, 253, 248, 0.82),
      rgba(230, 220, 205, 0.68)
    ),
    repeating-linear-gradient(
      45deg,
      transparent 0 14px,
      rgba(64, 92, 61, 0.06) 14px 28px
    );
  border: 1px dashed #b9aa96;
  border-radius: 28px;
}

.image-placeholder svg {
  width: 72px;
  height: 72px;
  margin-bottom: 12px;
}

.image-placeholder span {
  font-weight: 800;
}

.image-placeholder--large {
  min-height: 560px;
  border-radius: 34px;
}

.fullscreen-panel {
  position: relative;
  display: grid;
  height: calc(100svh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  align-items: center;
  margin: 0;
  padding: clamp(86px, 9vw, 140px)
    max(var(--gutter), calc((100vw - var(--wide-max)) / 2));
  overflow: hidden;
  color: #fffdf8;
  isolation: isolate;
}

.fullscreen-panel::before,
.fullscreen-panel::after {
  position: absolute;
  inset: 0;
  content: "";
}

.fullscreen-panel::before {
  z-index: -2;
  background:
    var(--panel-image),
    linear-gradient(135deg, #75634e 0%, #c6b497 52%, #f4eadc 100%);
  background-position: center;
  background-size: cover;
}

.fullscreen-panel::after {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(35, 34, 29, 0.74),
      rgba(35, 34, 29, 0.6) 46%,
      rgba(35, 34, 29, 0.12)
    ),
    radial-gradient(
      circle at 22% 66%,
      rgba(233, 180, 76, 0.2),
      transparent 26.353vw
    );
}

.fullscreen-panel--demolition {
  background: url("../graphic/images/bg_demolition.jpg");
  background-position: center;
  background-size: cover;
}

.fullscreen-panel--demolition::after {
  background:
    linear-gradient(
      270deg,
      rgba(35, 34, 29, 0.9) 0%,
      rgba(35, 34, 29, 0.84) 18%,
      rgba(35, 34, 29, 0.72) 38%,
      rgba(35, 34, 29, 0.48) 58%,
      rgba(35, 34, 29, 0.22) 72%,
      rgba(35, 34, 29, 0.08) 100%
    ),
    radial-gradient(
      circle at 82% 50%,
      rgba(35, 34, 29, 0.35),
      transparent 42vw
    );
}

.fullscreen-panel__content {
  width: min(680px, 100%);
}

.fullscreen-panel__content--right {
  justify-self: end;
}

.fullscreen-panel h2 {
  max-width: 680px;
  color: #fffdf8;
  font-size: clamp(42px, 4.4vw, 72px);
  text-wrap: balance;
}

.fullscreen-panel p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 253, 248, 0.82);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.7;
}

.fullscreen-panel .eyebrow {
  color: #f4d58f;
}

.fullscreen-panel .button {
  margin-top: 10px;
}

.fullscreen-panel__placeholder {
  position: absolute;
  right: max(var(--gutter), calc((100vw - var(--wide-max)) / 2));
  bottom: clamp(18px, 5vw, 54px);
  padding: 10px 14px;
  color: rgba(255, 253, 248, 0.78);
  background: rgba(37, 36, 31, 0.38);
  border: 1px dashed rgba(255, 253, 248, 0.44);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 800;
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(32px, 4vw, 52px);
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.2vw, 32px);
}

.service-card {
  padding: clamp(18px, 1.6vw, 26px);
  border-radius: 28px;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 1.6vw, 28px);
  line-height: 1.25;
}

.service-card p {
  margin-bottom: 0;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.55;
}

.service-card__gallery {
  position: relative;
  margin-bottom: 24px;
  border-radius: 22px;
  isolation: isolate;
}

.service-card__gallery.is-single .service-card__nav,
.service-card__gallery.is-single .service-card__dots {
  display: none;
}

.service-card__viewport {
  display: flex;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 22px;
  cursor: pointer;
  touch-action: pan-y pinch-zoom;
}

.service-card__viewport.is-dragging {
  cursor: grabbing;
}

.service-card__track {
  display: flex;
  flex: 1;
  width: 100%;
  min-width: 0;
  min-height: 0;
  height: 100%;
  transition: transform 0.32s ease;
}

.service-card__gallery.is-dragging .service-card__track {
  transition: none;
}

.service-card__slide {
  display: flex;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
}

.service-card__slide img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
}

.service-card__nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #fffdf8;
  background: rgba(37, 36, 31, 0.58);
  border: 0;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition:
    background 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.service-card__nav:hover:not(:disabled) {
  background: rgba(64, 92, 61, 0.88);
}

.service-card__nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.service-card__nav {
  top: 50%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.service-card__nav::before {
  width: 10px;
  height: 10px;
  content: "";
  border-top: 2.5px solid currentColor;
  border-right: 2.5px solid currentColor;
}

.service-card__nav--prev {
  left: 14px;
}

.service-card__nav--prev::before {
  margin-left: 4px;
  transform: rotate(-135deg);
}

.service-card__nav--next {
  right: 14px;
}

.service-card__nav--next::before {
  margin-right: 4px;
  transform: rotate(45deg);
}

.service-card__dots {
  position: absolute;
  right: 0;
  bottom: 14px;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
}

.service-card__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  background: rgba(255, 253, 248, 0.45);
  border: 0;
  border-radius: 50%;
  pointer-events: auto;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.service-card__dot.is-active {
  background: #fffdf8;
  transform: scale(1.15);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: 100dvh;
  padding: clamp(16px, 3vw, 32px);
  color: #fffdf8;
  background: rgba(20, 19, 16, 0.94);
  backdrop-filter: blur(12px);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox__viewport {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: min(1200px, 100%);
  min-width: 0;
  min-height: 0;
  height: 100%;
  margin: 0 auto;
  touch-action: pan-y pinch-zoom;
}

.gallery-lightbox__image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  user-select: none;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  z-index: 2;
  display: grid;
  place-items: center;
  color: #fffdf8;
  background: rgba(255, 253, 248, 0.12);
  border: 1px solid rgba(255, 253, 248, 0.24);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover:not(:disabled) {
  background: rgba(64, 92, 61, 0.72);
}

.gallery-lightbox__close {
  position: relative;
  grid-column: 1 / -1;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 50%;
}

.gallery-lightbox__close span {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
}

.gallery-lightbox__close span::before,
.gallery-lightbox__close span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 1px;
}

.gallery-lightbox__close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.gallery-lightbox__close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.gallery-lightbox__nav {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.gallery-lightbox__nav::before {
  width: 10px;
  height: 10px;
  content: "";
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.gallery-lightbox__nav--prev {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  justify-self: start;
}

.gallery-lightbox__nav--prev::before {
  margin-left: 4px;
  transform: rotate(-135deg);
}

.gallery-lightbox__nav--next {
  grid-column: 3;
  grid-row: 2;
  align-self: center;
  justify-self: end;
}

.gallery-lightbox__nav--next::before {
  margin-right: 4px;
  transform: rotate(45deg);
}

.gallery-lightbox__nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.gallery-lightbox__counter {
  grid-column: 1 / -1;
  grid-row: 3;
  align-self: end;
  margin: 14px 0 0;
  color: rgba(255, 253, 248, 0.78);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

body.is-lightbox-open {
  overflow: hidden;
}

@media (max-width: 680px) {
  .gallery-lightbox {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    padding: 0 0 max(12px, env(safe-area-inset-bottom));
  }

  .gallery-lightbox__viewport {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
    width: 100%;
    height: 100%;
  }

  .gallery-lightbox__image {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
  }

  .gallery-lightbox__close {
    position: absolute;
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    justify-self: end;
    top: max(10px, env(safe-area-inset-top));
    right: max(10px, env(safe-area-inset-right));
    left: auto;
    z-index: 3;
    width: 48px;
    height: 48px;
    margin: 0;
  }

  .gallery-lightbox__nav--prev,
  .gallery-lightbox__nav--next {
    position: absolute;
    grid-column: 1;
    grid-row: 1;
    top: 50%;
    z-index: 3;
    width: 52px;
    height: 52px;
    margin: 0;
    transform: translateY(-50%);
  }

  .gallery-lightbox__nav::before {
    width: 12px;
    height: 12px;
  }

  .service-card__nav {
    width: 42px;
    height: 42px;
  }

  .service-card__nav::before {
    width: 10px;
    height: 10px;
  }

  .gallery-lightbox__nav--prev {
    left: max(6px, env(safe-area-inset-left));
    justify-self: start;
  }

  .gallery-lightbox__nav--next {
    right: max(6px, env(safe-area-inset-right));
    justify-self: end;
  }

  .gallery-lightbox__counter {
    grid-column: 1;
    grid-row: 2;
    margin: 10px 0 0;
    padding: 0 14px;
  }
}

.why {
  width: min(var(--content-max), calc(100% - var(--gutter) - var(--gutter)));
  margin: clamp(56px, 8vw, 104px) auto;
  padding: clamp(56px, 6vw, 88px) clamp(32px, 5vw, 72px);
  background: #eee5d7;
  border-radius: 34px;
}

.why__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.62fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(32px, 4vw, 54px);
}

.why__intro .section-heading {
  margin-bottom: 0;
}

.why__intro > p {
  margin-bottom: 0;
  font-size: clamp(16px, 1.2vw, 18px);
}

.why-bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(190px, auto));
  gap: clamp(14px, 1.6vw, 22px);
}

.why-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: clamp(26px, 3vw, 36px);
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(221, 211, 196, 0.86);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.why-bento .why-card:nth-child(1) {
  grid-column: 1 / span 2;
  grid-row: 1;
}

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

.why-bento .why-card:nth-child(3) {
  grid-column: 4;
  grid-row: 1 / span 2;
}

.why-bento .why-card:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
}

.why-bento .why-card:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}

.why-bento .why-card:nth-child(6) {
  grid-column: 3;
  grid-row: 2;
}

.why-bento .why-card:nth-child(7) {
  grid-column: 1 / span 3;
  grid-row: 3;
}

.why-bento .why-card:nth-child(8) {
  grid-column: 4;
  grid-row: 3;
}

.why-card--accent {
  color: #fffdf8;
  background: var(--green-dark);
  border-color: rgba(64, 92, 61, 0.2);
}

.why-card--accent p,
.why-card--accent .number {
  color: rgba(255, 253, 248, 0.78);
}

.why-card--metric {
  justify-content: flex-end;
  min-height: 170px;
  background: #fffdf8;
}

.why-card--green {
  color: #fffdf8;
  background: var(--green-dark);
}

.why-card--clay {
  color: #fffdf8;
  background: var(--clay);
}

.why-card--metric strong,
.why-card--metric span {
  display: block;
}

.why-card--metric strong {
  margin-bottom: 10px;
  color: currentColor;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.95;
}

.why-card--metric span {
  max-width: 180px;
  color: currentColor;
  line-height: 1.4;
  opacity: 0.78;
}

.why-card h3 {
  max-width: 520px;
}

.why-card p {
  margin-bottom: 0;
}

.why-card__note {
  margin-top: auto;
  padding-top: 24px;
  color: var(--green-dark);
  font-weight: 800;
}

.number {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--clay);
  font-size: 14px;
  font-weight: 800;
}

.prices-catalog {
  display: grid;
  grid-template-columns: minmax(272px, 320px) minmax(0, 1fr);
  align-items: stretch;
  max-width: 980px;
  height: clamp(480px, 50vh, 540px);
  margin: 0 auto;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.price-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: clamp(18px, 2vw, 24px);
  background: linear-gradient(180deg, #eee5d7 0%, #e8dfd2 100%);
  border-right: 1px solid var(--line);
}

.price-tab {
  width: 100%;
  min-height: 54px;
  padding: 15px 20px;
  color: var(--muted);
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 16px;
  cursor: pointer;
  font-size: clamp(16px, 1.05vw, 17px);
  font-weight: 800;
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: anywhere;
  box-sizing: border-box;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.price-tab:hover {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.92);
}

.price-tab.is-active,
.price-tab.is-active:hover {
  color: var(--green-dark);
  background: var(--surface);
  border-color: rgba(221, 211, 196, 0.9);
  box-shadow: 0 6px 18px rgba(77, 63, 42, 0.1);
}

.price-panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: clamp(28px, 3.5vw, 44px) clamp(28px, 4vw, 52px);
  overflow: hidden;
  background: var(--surface);
}

.price-panel.is-updating {
  opacity: 0.55;
  transition: opacity 0.18s ease;
}

.price-panel__title {
  flex-shrink: 0;
  margin: 0 0 clamp(20px, 2.5vw, 28px);
  padding-bottom: 18px;
  color: var(--green-dark);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  border-bottom: 1px solid var(--line);
}

.price-list {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0;
  min-height: 0;
  margin: 0;
  padding: 0 6px 0 0;
  overflow-x: hidden;
  overflow-y: auto;
  list-style: none;
  counter-reset: service-item;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
}

.price-list::-webkit-scrollbar {
  width: 6px;
}

.price-list::-webkit-scrollbar-thumb {
  background: #cfc4b4;
  border-radius: 999px;
}

.price-list::-webkit-scrollbar-thumb:hover {
  background: #b9aa96;
}

.price-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 17px 0;
  color: var(--ink);
  font-size: clamp(16px, 1.05vw, 18px);
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid rgba(221, 211, 196, 0.75);
  counter-increment: service-item;
}

.price-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.price-list li::before {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  content: counter(service-item, decimal-leading-zero);
  background: #e8efe6;
  border-radius: 10px;
}

.stats {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: stretch;
}

.stats__visual {
  min-height: 420px;
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
}

.stats__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.stats__content {
  display: flex;
  flex-direction: column;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: 28px;
  flex: 1;
}

.stats-grid div {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  background: #eee5d7;
  border-radius: 22px;
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 38px;
  line-height: 1;
}

.stats-grid span {
  color: var(--muted);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  padding: 24px;
  border-radius: 22px;
}

.process-list span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 48px;
  place-items: center;
  color: #fffdf8;
  background: var(--clay);
  border-radius: 50%;
  font-weight: 800;
}

.faq-list {
  column-count: 2;
  column-gap: clamp(18px, 2vw, 28px);
}

.faq details {
  display: inline-block;
  width: 100%;
  margin: 0 0 clamp(14px, 1.6vw, 22px);
  padding: clamp(22px, 2.2vw, 30px);
  border-radius: 22px;
  break-inside: avoid;
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-size: clamp(17px, 1.2vw, 20px);
  font-weight: 800;
  line-height: 1.35;
}

.faq p {
  max-height: 0;
  margin: 0;
  max-width: 620px;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.32s ease,
    margin-top 0.32s ease,
    opacity 0.24s ease;
}

.faq details.is-open p {
  margin-top: 16px;
  opacity: 1;
}

.site-footer {
  width: min(var(--content-max), calc(100% - var(--gutter) - var(--gutter)));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 94px) 0 120px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 44px;
  padding: clamp(24px, 5vw, 44px);
  background: #eee5d7;
  border: 1px solid var(--line);
  border-radius: 30px;
}

.footer-cta .contact-dropdown {
  align-self: end;
}

.footer-cta h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 52px);
}

.footer-cta p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(160px, 0.75fr));
  gap: clamp(24px, 4vw, 52px);
  padding-bottom: 34px;
}

.footer-brand {
  justify-content: flex-start;
  margin-bottom: 16px;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 16px;
}

.site-footer p {
  margin: 8px 0 0;
  line-height: 1.7;
}

.site-footer ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer a {
  color: var(--ink);
  font-weight: 800;
}

.site-footer li a {
  color: var(--muted);
  font-weight: 700;
  transition: color 0.2s ease;
}

.site-footer li a:hover {
  color: var(--green-dark);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-socials a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  background: var(--green-dark);
  border-radius: 50%;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  background: var(--clay);
  box-shadow: 0 12px 26px rgba(103, 74, 49, 0.18);
}

.footer-socials img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 40;
  display: flex;
  max-width: 560px;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.contact-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
}

.contact-button {
  position: relative;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  color: #fffdf8;
  background: var(--green-dark);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(64, 92, 61, 0.34);
  cursor: pointer;
  isolation: isolate;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.contact-button::before,
.contact-button::after {
  position: absolute;
  inset: -8px;
  z-index: -1;
  border: 1px solid rgba(64, 92, 61, 0.42);
  border-radius: 50%;
  content: "";
  animation: contact-ripple 2.4s ease-out infinite;
  pointer-events: none;
}

.contact-button::after {
  animation-delay: 1.2s;
}

.contact-button:hover {
  transform: translateY(-2px);
  background: #31482f;
}

.contact-button svg {
  width: 30px;
  height: 30px;
}

@keyframes contact-ripple {
  0% {
    opacity: 0.72;
    transform: scale(0.82);
  }

  70% {
    opacity: 0;
    transform: scale(1.45);
  }

  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-button::before,
  .contact-button::after {
    animation: none;
  }
}

@media (min-width: 1700px) {
  :root {
    --content-max: 77.647vw;
    --wide-max: 84.706vw;
    --narrow-max: 51.765vw;
    --gutter: 3.294vw;
    --section-y: 5vw;
    --header-h: 4.471vw;
    --shadow: 0 1.176vw 3.529vw rgba(77, 63, 42, 0.12);
  }

  body {
    background:
      radial-gradient(
        circle at 8% 8%,
        rgba(233, 180, 76, 0.18),
        transparent 24.47vw
      ),
      linear-gradient(180deg, #fbf8f1 0%, var(--bg) 42%, #f4eee3 100%);
  }

  svg {
    stroke-width: 0.112vw;
  }

  .site-header {
    gap: 2.471vw;
    padding-block: 1.059vw;
    border-bottom-width: 0.059vw;
    backdrop-filter: blur(1.059vw);
  }

  .brand {
    gap: 0.588vw;
  }

  .brand__logo {
    height: 2.588vw;
  }

  .footer-brand .brand__logo {
    height: 3.059vw;
  }

  .main-nav {
    gap: 2vw;
    font-size: 0.882vw;
  }

  p,
  li,
  summary,
  a,
  button,
  td,
  th {
    font-size: 0.941vw;
  }

  .main-nav a {
    min-height: 2.235vw;
    padding: 0.353vw 0.706vw;
  }

  .header-phone {
    gap: 0.471vw;
    font-size: 0.941vw;
  }

  .header-actions {
    gap: 0.824vw;
  }

  .header-socials {
    gap: 0.412vw;
  }

  .header-socials a,
  .header-phone__icon {
    width: 2vw;
    height: 2vw;
  }

  .header-socials img,
  .header-phone__icon img {
    width: 1.471vw;
    height: 1.471vw;
  }

  .hero {
    grid-template-columns: minmax(0, 48.235vw) minmax(16.471vw, 21.176vw);
    gap: 4.235vw;
    height: calc(100svh - var(--header-h));
    min-height: calc(100svh - var(--header-h));
    padding-top: 4.706vw;
    padding-bottom: 3.529vw;
  }

  .hero__content,
  h1 {
    max-width: 48.235vw;
  }

  .hero__text {
    max-width: 40vw;
  }

  h1 {
    margin-bottom: 1.059vw;
    font-size: 4.118vw;
  }

  h2 {
    margin-bottom: 1.059vw;
    font-size: 3.176vw;
  }

  h3 {
    margin-bottom: 0.588vw;
    font-size: 1.294vw;
  }

  .eyebrow {
    margin-bottom: 0.824vw;
    font-size: 0.765vw;
  }

  .hero__text {
    margin-bottom: 1.235vw;
    font-size: 1.059vw;
  }

  .section-heading p,
  .service-card p,
  .why__intro > p,
  .why-card p,
  .process-list p,
  .faq p,
  .site-footer p,
  .stats-grid span,
  .why-card--metric span {
    font-size: 0.941vw;
  }

  .hero__actions {
    gap: 0.706vw;
    margin-bottom: 1.412vw;
  }

  .button {
    min-height: 3.059vw;
    padding: 0 1.294vw;
    font-size: 0.941vw;
  }

  .button:hover,
  .header-socials a:hover,
  .contact-button:hover,
  .footer-socials a:hover,
  .social-links a:hover {
    transform: translateY(-0.118vw);
  }

  .button--primary {
    box-shadow: 0 0.824vw 1.765vw rgba(64, 92, 61, 0.25);
  }

  .hero__facts {
    max-width: 42.353vw;
    gap: 0.824vw;
  }

  .hero__facts div {
    padding: 0.765vw;
    border-width: 0.059vw;
    border-radius: 1.059vw;
    backdrop-filter: blur(0.706vw);
  }

  .hero__facts strong {
    margin-bottom: 0.235vw;
    font-size: 1.059vw;
  }

  .hero__facts span {
    font-size: 0.824vw;
  }

  .hero__aside {
    max-width: 21.176vw;
    padding: 1.294vw;
    border-width: 0.059vw;
    border-radius: 1.412vw;
    backdrop-filter: blur(0.941vw);
  }

  .hero__aside span {
    margin-bottom: 0.588vw;
    font-size: 0.765vw;
  }

  .hero__aside strong {
    margin-bottom: 1.059vw;
    font-size: 1.176vw;
  }

  .hero__aside a {
    text-underline-offset: 0.294vw;
  }

  .image-placeholder {
    min-height: 12.353vw;
    padding: 1.647vw;
    border-width: 0.059vw;
    border-radius: 1.647vw;
    background:
      linear-gradient(
        135deg,
        rgba(255, 253, 248, 0.82),
        rgba(230, 220, 205, 0.68)
      ),
      repeating-linear-gradient(
        45deg,
        transparent 0 0.824vw,
        rgba(64, 92, 61, 0.06) 0.824vw 1.647vw
      );
  }

  .image-placeholder svg {
    width: 4.235vw;
    height: 4.235vw;
    margin-bottom: 0.706vw;
  }

  .fullscreen-panel {
    height: calc(100svh - var(--header-h));
    min-height: calc(100svh - var(--header-h));
    padding-block: 5.882vw;
  }

  .fullscreen-panel::before {
    background:
      var(--panel-image),
      linear-gradient(135deg, #75634e 0%, #c6b497 52%, #f4eadc 100%);
  }

  .fullscreen-panel::after {
    background:
      linear-gradient(
        90deg,
        rgba(35, 34, 29, 0.74),
        rgba(35, 34, 29, 0.4) 46%,
        rgba(35, 34, 29, 0.12)
      ),
      radial-gradient(
        circle at 22% 26%,
        rgba(233, 180, 76, 0.2),
        transparent 26.353vw
      );
  }

  .fullscreen-panel--demolition::after {
    background:
      linear-gradient(
        270deg,
        rgba(35, 34, 29, 0.9) 0%,
        rgba(35, 34, 29, 0.84) 18%,
        rgba(35, 34, 29, 0.72) 38%,
        rgba(35, 34, 29, 0.48) 58%,
        rgba(35, 34, 29, 0.22) 72%,
        rgba(35, 34, 29, 0.08) 100%
      ),
      radial-gradient(
        circle at 82% 50%,
        rgba(35, 34, 29, 0.35),
        transparent 42vw
      );
  }

  .fullscreen-panel__content,
  .fullscreen-panel h2 {
    width: min(40vw, 100%);
    max-width: 40vw;
  }

  .fullscreen-panel h2 {
    font-size: 4.235vw;
  }

  .fullscreen-panel p:not(.eyebrow) {
    max-width: 32.941vw;
    font-size: 1.235vw;
  }

  .fullscreen-panel .button {
    margin-top: 0.588vw;
  }

  .fullscreen-panel__placeholder {
    bottom: 3.176vw;
    padding: 0.588vw 0.824vw;
    border-width: 0.059vw;
    font-size: 0.765vw;
    backdrop-filter: blur(0.588vw);
  }

  .section-heading {
    max-width: 45.882vw;
    margin-bottom: 3.059vw;
  }

  .services-grid,
  .why-bento,
  .process-list {
    gap: 1.647vw;
  }

  .service-card {
    padding: 1.529vw;
    border-radius: 1.647vw;
  }

  .service-card h3 {
    margin-bottom: 0.706vw;
    font-size: 1.647vw;
  }

  .service-card p {
    font-size: 1.059vw;
  }

  .service-card__gallery {
    margin-bottom: 1.412vw;
    border-radius: 1.294vw;
  }

  .service-card__viewport {
    border-radius: 1.294vw;
  }

  .service-card__nav {
    width: 2.706vw;
    height: 2.706vw;
  }

  .service-card__nav::before {
    width: 0.588vw;
    height: 0.588vw;
  }

  .service-card__nav--prev {
    left: 0.824vw;
  }

  .service-card__nav--next {
    right: 0.824vw;
  }

  .service-card__dot {
    width: 0.471vw;
    height: 0.471vw;
  }

  .why {
    margin-block: 6.118vw;
    padding: 5.176vw 4.235vw;
    border-radius: 2vw;
  }

  .why__intro {
    grid-template-columns: minmax(0, 0.95fr) minmax(17.647vw, 0.62fr);
    gap: 3.765vw;
    margin-bottom: 3.176vw;
  }

  .why__intro > p {
    font-size: 1.059vw;
  }

  .why-bento {
    grid-template-rows: repeat(3, minmax(11.176vw, auto));
  }

  .why-card {
    padding: 2.118vw;
    border-width: 0.059vw;
    border-radius: 1.294vw;
  }

  .why-card--metric strong {
    margin-bottom: 0.588vw;
    font-size: 3.412vw;
  }

  .why-card--metric span {
    max-width: 10.588vw;
  }

  .why-card h3 {
    max-width: 30.588vw;
  }

  .why-card__note {
    padding-top: 1.412vw;
  }

  .number {
    margin-bottom: 2.353vw;
    font-size: 0.824vw;
  }

  .prices-catalog {
    max-width: 57.647vw;
    height: 31.765vw;
    border-width: 0.059vw;
    border-radius: 1.882vw;
  }

  .price-tabs {
    gap: 0.471vw;
    padding: 1.412vw;
  }

  .price-tab {
    min-height: 54px;
    padding: 15px 20px;
    font-size: 22px;
    border-radius: 16px;
  }

  .price-panel {
    padding: 2.588vw 3.059vw;
  }

  .price-panel__title {
    margin-bottom: 1.647vw;
    padding-bottom: 1.059vw;
    font-size: 1.647vw;
  }

  .price-list li {
    gap: 0.941vw;
    padding: 1vw 0;
    font-size: 1.059vw;
  }

  .price-list li::before {
    width: 2.118vw;
    height: 2.118vw;
    font-size: 0.765vw;
    border-radius: 0.588vw;
  }

  .stats {
    grid-template-columns: minmax(21.176vw, 0.9fr) minmax(0, 1fr);
    gap: 4.235vw;
  }

  .stats__visual {
    min-height: 28vw;
  }

  .stats-grid {
    gap: 1.412vw;
    margin-top: 1.647vw;
  }

  .stats-grid div {
    min-height: 8.824vw;
    padding: 1.529vw;
    border-radius: 1.294vw;
  }

  .stats-grid strong {
    margin-bottom: 0.471vw;
    font-size: 2.235vw;
  }

  .process-list li {
    padding: 1.412vw;
    border-radius: 1.294vw;
  }

  .process-list span {
    width: 2.588vw;
    height: 2.588vw;
    margin-bottom: 2.824vw;
  }

  .faq-list {
    column-gap: 1.647vw;
  }

  .faq details {
    margin-bottom: 1.294vw;
    padding: 1.765vw;
    border-width: 0.059vw;
    border-radius: 1.294vw;
  }

  .faq summary {
    font-size: 1.176vw;
  }

  .faq p {
    max-width: 36.471vw;
  }

  .faq details.is-open p {
    margin-top: 0.941vw;
  }

  .site-footer {
    padding: 5.529vw 0 7.059vw;
    border-top-width: 0.059vw;
  }

  .footer-cta {
    gap: 1.647vw;
    margin-bottom: 2.588vw;
    padding: 2.588vw;
    border-width: 0.059vw;
    border-radius: 1.765vw;
  }

  .footer-cta h2 {
    max-width: 44.706vw;
    margin-bottom: 0.824vw;
    font-size: 3.059vw;
  }

  .footer-cta p:not(.eyebrow) {
    max-width: 42.353vw;
  }

  .footer-grid {
    grid-template-columns: minmax(15.294vw, 1.25fr) repeat(
        3,
        minmax(9.412vw, 0.75fr)
      );
    gap: 3.059vw;
    padding-bottom: 2vw;
  }

  .footer-brand {
    margin-bottom: 0.941vw;
  }

  .site-footer h3 {
    margin-bottom: 0.824vw;
    font-size: 0.941vw;
  }

  .site-footer p {
    margin-top: 0.471vw;
  }

  .site-footer ul {
    gap: 0.588vw;
  }

  .footer-socials,
  .social-links {
    gap: 0.588vw;
  }

  .footer-socials {
    margin-top: 1.059vw;
  }

  .footer-socials a {
    width: 2.706vw;
    height: 2.706vw;
  }

  .footer-socials img {
    width: 1.882vw;
    height: 1.882vw;
  }

  .footer-bottom {
    gap: 1.059vw;
    padding-top: 1.412vw;
    border-top-width: 0.059vw;
    font-size: 0.824vw;
  }

  .cookie-banner {
    left: 1.294vw;
    bottom: 1.294vw;
    max-width: 32.941vw;
    gap: 0.941vw;
    padding: 1.059vw;
    border-radius: 1.294vw;
  }

  .contact-widget {
    right: 1.294vw;
    bottom: 1.294vw;
  }

  .contact-button {
    width: 3.882vw;
    height: 3.882vw;
    box-shadow: 0 1.059vw 2.471vw rgba(64, 92, 61, 0.34);
  }

  .contact-button::before,
  .contact-button::after {
    inset: -0.471vw;
    border-width: 0.059vw;
  }

  .contact-button svg {
    width: 1.765vw;
    height: 1.765vw;
  }

  .contact-popover {
    bottom: 4.824vw;
    width: 16.471vw;
    padding: 1.176vw;
    border-radius: 1.294vw;
  }

  .contact-popover strong {
    margin-bottom: 0.588vw;
  }

  .contact-popover > a {
    margin-bottom: 0.353vw;
  }

  .messenger-note {
    margin-bottom: 0.941vw;
    font-size: 0.824vw;
  }

  .social-links a {
    width: 2.824vw;
    height: 2.824vw;
  }

  .social-links img {
    width: 2vw;
    height: 2vw;
  }
}

.contact-popover {
  position: absolute;
  right: 0;
  bottom: 82px;
  display: none;
  width: 280px;
  padding: 20px;
  border-radius: 22px;
}

.contact-popover.is-open {
  display: block;
}

.contact-popover strong,
.contact-popover > a {
  display: block;
}

.contact-popover strong {
  margin-bottom: 10px;
}

.contact-popover > a {
  margin-bottom: 6px;
  color: var(--green-dark);
  font-weight: 800;
}

.messenger-note {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fffdf8;
  background: var(--green-dark);
  border-radius: 50%;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.social-links img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: var(--clay);
  box-shadow: 0 12px 26px rgba(103, 74, 49, 0.18);
}

@media (max-width: 980px) {
  :root {
    --gutter: 24px;
    --section-y: 72px;
    --header-h: 67px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: var(--gutter);
  }

  .main-nav {
    display: none;
  }

  .header-socials {
    display: none;
  }

  .header-tg {
    display: grid;
  }

  .header-phone__icon {
    width: 38px;
    height: 38px;
  }

  .header-phone__icon img {
    width: 22px;
    height: 22px;
  }

  .header-phone {
    gap: 8px;
  }

  .header-contact {
    gap: 8px;
  }

  .hero,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero__content,
  .hero__aside {
    align-self: auto;
  }

  .image-placeholder--large {
    min-height: 390px;
  }

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

  .why-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .why-card,
  .why-bento .why-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    min-height: 210px;
  }

  .why-bento .why-card:nth-child(1),
  .why-bento .why-card:nth-child(7) {
    grid-column: 1 / -1;
  }

  .faq-list {
    column-count: 2;
  }

  .why__intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .why {
    width: min(var(--content-max), calc(100% - var(--gutter) - var(--gutter)));
    margin: 56px auto;
    padding: 44px 24px;
  }

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

  .fullscreen-panel__content--right {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  :root {
    --gutter: 14px;
    --section-y: 52px;
    --header-h: 62px;
  }

  .site-header {
    padding: 14px var(--gutter);
  }

  .brand__logo {
    height: 32px;
  }

  .header-phone {
    font-size: 14px;
  }

  .header-tg {
    width: 36px;
    height: 36px;
  }

  .header-tg img {
    width: 20px;
    height: 20px;
  }

  .header-phone__icon {
    width: 36px;
    height: 36px;
  }

  .header-phone__icon img {
    width: 20px;
    height: 20px;
  }

  .section {
    width: min(var(--content-max), calc(100% - var(--gutter) - var(--gutter)));
    padding: var(--section-y) 0;
  }

  .hero {
    height: auto;
    min-height: calc(100svh - var(--header-h));
    padding-top: 96px;
    padding-inline: var(--gutter);
  }

  .hero.fullscreen-panel--hero::after {
    background:
      linear-gradient(
        180deg,
        rgba(31, 34, 27, 0.82) 0%,
        rgba(31, 34, 27, 0.42) 70%,
        rgba(31, 34, 27, 0.08) 100%
      ),
      radial-gradient(
        circle at 50% 12%,
        rgba(233, 180, 76, 0.22),
        transparent 20rem
      );
  }

  .hero__facts,
  .services-grid,
  .stats-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .services-grid {
    gap: 26px;
  }

  .service-card {
    padding: 0 0 18px;
    overflow: hidden;
  }

  .service-card__gallery {
    width: 100%;
    margin: 0 0 16px;
    border-radius: 0;
  }

  .service-card__viewport {
    aspect-ratio: 3 / 2;
    border-radius: 0;
  }

  .service-card h3 {
    padding-inline: 14px;
    font-size: clamp(20px, 5.4vw, 24px);
  }

  .service-card p {
    padding-inline: 14px;
    font-size: 16px;
  }

  .why-bento {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
  }

  .why-card,
  .why-bento .why-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
  }

  .faq-list {
    column-count: 1;
  }

  .why {
    width: min(var(--content-max), calc(100% - var(--gutter) - var(--gutter)));
    margin: 44px auto;
    padding: 34px 16px;
    border-radius: 26px;
  }

  .why .section-heading {
    margin-bottom: 24px;
  }

  .why__intro {
    gap: 18px;
    margin-bottom: 26px;
  }

  .why-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .number {
    margin-bottom: 24px;
  }

  .prices-catalog {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    max-width: none;
    height: clamp(420px, 58vh, 500px);
    border-radius: 24px;
  }

  .price-tabs {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 14px;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .price-tabs::-webkit-scrollbar {
    display: none;
  }

  .price-tab {
    flex: 0 0 auto;
    width: auto;
    min-height: 46px;
    padding: 11px 18px;
    font-size: 15px;
    white-space: nowrap;
  }

  .price-tab.is-active,
  .price-tab.is-active:hover {
    box-shadow: none;
  }

  .price-panel {
    padding: 24px 20px 28px;
  }

  .price-panel__title {
    margin-bottom: 16px;
    padding-bottom: 14px;
    font-size: 22px;
  }

  .price-list li {
    gap: 14px;
    padding: 15px 0;
    font-size: 16px;
  }

  .price-list li::before {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .fullscreen-panel {
    height: auto;
    min-height: calc(100svh - var(--header-h));
    padding: 72px var(--gutter);
  }

  .fullscreen-panel h2 {
    font-size: clamp(34px, 12vw, 52px);
  }

  .fullscreen-panel__placeholder {
    right: var(--gutter);
    bottom: 18px;
    max-width: calc(100% - var(--gutter) - var(--gutter));
  }

  .footer-cta {
    align-items: start;
    border-radius: 24px;
  }

  .footer-grid {
    gap: 28px;
  }

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

  .cookie-banner {
    right: 14px;
    bottom: 96px;
    left: 14px;
    max-width: none;
  }
}

@media (min-width: 1700px) {
  .contact-popover {
    bottom: 4.824vw;
    width: 16.471vw;
    padding: 1.176vw;
    border-radius: 1.294vw;
  }

  .contact-popover strong {
    margin-bottom: 0.588vw;
  }

  .contact-popover > a {
    margin-bottom: 0.353vw;
  }

  .messenger-note {
    margin-bottom: 0.941vw;
    font-size: 0.824vw;
  }

  .social-links,
  .footer-socials {
    gap: 0.588vw;
  }

  .social-links a {
    width: 2.824vw;
    height: 2.824vw;
  }

  .social-links img {
    width: 2vw;
    height: 2vw;
  }
}
