@font-face {
  font-family: "Muller";
  src: local("Arial");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Muller";
  src: local("Arial Bold"), local("Arial");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #2b2e30;
  --paper: #f5f1e6;
  --paper-2: #f8f5ed;
  --ink: #1f1d1a;
  --muted: #6a655f;
  --line: rgba(70, 58, 38, 0.14);
  --accent: #ea9449;
  --accent-deep: #d27631;
  --dark: #16191b;
  --motion-smooth: 520ms cubic-bezier(0.22, 1, 0.36, 1);
  --motion-soft: 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
.page {
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Muller", Arial, sans-serif;
  background: #f5f2ec;
  color: var(--ink);
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
button {
  font: inherit;
}

.page {
  padding: 0;
  width: 100%;
}

.shell {
  width: 100vw;
  max-width: none;
  margin: 0;
  background: #f5f2ec;
  border: 0;
  box-shadow: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--motion-smooth),
    transform var(--motion-smooth);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--scale {
  transform: translateY(22px) scale(0.98);
}

.reveal--left {
  transform: translate3d(-28px, 0, 0);
}

.reveal--right {
  transform: translate3d(28px, 0, 0);
}

.is-lift {
  transition:
    transform var(--motion-soft),
    box-shadow var(--motion-soft),
    border-color var(--motion-soft),
    background-color var(--motion-soft);
}

.is-lift:hover {
  transform: translateY(-6px);
}

.cta,
.hero-btn,
.install-block__cta,
.director-block__cta,
.more-info__toggle,
.shop-card__cta,
.reviews-block__arrow,
.client-projects__arrow,
.product-shelf__arrow {
  transition:
    transform var(--motion-soft),
    box-shadow var(--motion-soft),
    background-color var(--motion-soft),
    border-color var(--motion-soft),
    color var(--motion-soft),
    opacity var(--motion-soft);
}

.cta:hover,
.hero-btn:hover,
.install-block__cta:hover,
.director-block__cta:hover,
.more-info__toggle:hover,
.shop-card__cta:hover,
.reviews-block__arrow:hover,
.client-projects__arrow:hover,
.product-shelf__arrow:hover {
  transform: translateY(-3px);
}

.shop-card,
.review-card,
.client-project,
.quiz__panel,
.director-block__portrait,
.more-info__card,
.site-footer__panel,
.site-footer__map {
  transition:
    transform var(--motion-soft),
    box-shadow var(--motion-soft),
    border-color var(--motion-soft);
}

.shop-card:hover,
.review-card:hover,
.quiz__panel:hover,
.more-info__card:hover {
  transform: translateY(-4px);
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 10px 34px;
  background: linear-gradient(180deg, #faf6ed, #f1eadc);
  border-bottom: 1px solid var(--line);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
}

.logo__mark {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #57473b;
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 11px;
  white-space: nowrap;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search input {
  width: 92px;
  height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(92, 73, 48, 0.12);
  border-radius: 7px;
  background: #f6f1e7;
  font-size: 11px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 7px;
  background: linear-gradient(180deg, #efa256, #d67934);
  color: #fff8f0;
  font-size: 11px;
  box-shadow: 0 8px 18px rgba(213, 120, 51, 0.24);
}

.cta--wide {
  width: 100%;
  min-height: 30px;
  margin-top: 10px;
  font-size: 9px;
}

.hero {
  position: relative;
  min-height: 338px;
  overflow: hidden;
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  background: linear-gradient(90deg, rgba(28, 20, 13, 0.68), rgba(28, 20, 13, 0.2) 45%, rgba(28, 20, 13, 0.05));
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 315px;
  padding: 42px 0 0 54px;
  color: #fffdf7;
}

.hero h1 {
  margin: 0;
  font-size: 36px;
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hero p {
  margin: 12px 0 0;
  font-size: 11px;
  line-height: 1.32;
}

.hero__buttons {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 246, 235, 0.44);
  border-radius: 8px;
  background: rgba(24, 19, 15, 0.35);
  color: #fffdf8;
  font-size: 11px;
}

.hero-btn--accent {
  border-color: transparent;
  background: linear-gradient(180deg, #ef9e55, #d57833);
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 10px 34px;
  background: linear-gradient(180deg, #f8f3e8, #f5efe3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
}

.feature__icon {
  color: #171717;
}

.feature__icon svg {
  width: 28px;
  height: 28px;
}

.feature__text {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.section {
  padding: 14px 200px 0 220px;
}

.section--lower {
  position: relative;
  padding-bottom: 18px;
  overflow: hidden;
}

.section--lower::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  background: linear-gradient(180deg, #1c1612, #100d0a);
  pointer-events: none;
  z-index: 0;
}

.section__title {
  margin: 0 0 16px;
  font-size: 21px;
  font-weight: 700;
}

.products {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  gap: 14px;
  min-height: clamp(560px, 44vw, 698px);
  align-items: stretch;
}

.products__stack {
  display: grid;
  grid-template-rows: minmax(0, 0.52fr) minmax(0, 0.48fr);
  gap: 14px;
  min-height: 100%;
}

.products__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  min-height: 100%;
}

.products__bottom .card {
  min-height: 0;
  aspect-ratio: auto;
  height: 100%;
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  border-radius: 10px;
  border: 1px solid rgba(70, 58, 38, 0.12);
  background: #ece5d6;
  box-shadow: 0 2px 12px rgba(72, 55, 25, 0.05);
}

.card--big {
  min-height: 0;
  aspect-ratio: auto;
  height: 100%;
}

.card--banner {
  min-height: 0;
  aspect-ratio: auto;
  height: 100%;
}

.card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card--slider > img {
  display: none;
}

.card-slider__track {
  position: absolute;
  inset: 0;
}

.card-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.card-slider__slide.is-active {
  opacity: 1;
}

.card-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-slider__arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 248, 239, 0.92);
  box-shadow: 0 4px 16px rgba(51, 34, 12, 0.14);
  transform: translateY(-50%);
  cursor: pointer;
}

.card-slider__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #2b1c10;
  border-right: 2px solid #2b1c10;
}

.card-slider__arrow--prev {
  left: 14px;
}

.card-slider__arrow--prev::before {
  transform: rotate(-135deg);
}

.card-slider__arrow--next {
  right: 14px;
}

.card-slider__arrow--next::before {
  transform: rotate(45deg);
}

.card-slider__dots {
  position: absolute;
  z-index: 3;
  left: 18px;
  bottom: 14px;
  display: flex;
  gap: 6px;
}

.card-slider__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.card-slider__dots button.is-active {
  background: #dd8536;
}

.card-slider__dots--banner {
  left: 20px;
  bottom: 14px;
}

.card-slider__arrow--banner-prev,
.card-slider__arrow--banner-next {
  top: auto;
  bottom: 22px;
  transform: none;
}

.card-slider__arrow--banner-prev {
  right: 64px;
  left: auto;
}

.card-slider__arrow--banner-next {
  right: 20px;
}

.card__content {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 14px 16px 34px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.74));
}

.card__content--bottom {
  padding: 142px 18px 34px;
  background: linear-gradient(180deg, transparent 8%, rgba(250, 245, 237, 0.98) 36%);
  color: #25211b;
}

.card__content--light {
  background: linear-gradient(180deg, transparent 0, rgba(247, 241, 231, 0.98) 52%);
  color: #25211b;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 19px;
  line-height: 0.94;
  text-transform: uppercase;
}

.card--big h3 {
  margin-bottom: 18px;
  font-size: 24px;
  line-height: 0.92;
}

.products__bottom .card h3,
.card__content--light h3 {
  font-size: 17px;
  line-height: 0.96;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 9px;
  background: linear-gradient(180deg, #ef9e55, #d57833);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.pill--light {
  background: #fff8ef;
  color: #1f1d1a;
}

.card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.arrow {
  font-size: 26px;
  line-height: 1;
}

.product-shelf {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 18px 0 14px;
}

.product-shelf__head {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: 14px;
  text-align: center;
}

.product-shelf__lead {
  max-width: 860px;
  margin: 2px 0 0;
  color: #6e6358;
  font-size: 16px;
  line-height: 1.65;
}

.product-shelf__eyebrow {
  display: inline-block;
  margin-bottom: 6px;
  color: #b07a34;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-shelf__nav {
  position: absolute;
  inset: 50% -30px auto -30px;
  display: block;
  pointer-events: none;
}

.product-shelf__arrow {
  position: absolute;
  top: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(197, 119, 31, 0.38);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.94);
  box-shadow: 0 8px 22px rgba(129, 85, 27, 0.08);
  cursor: pointer;
  pointer-events: auto;
}

.product-shelf__arrow:disabled {
  opacity: 0.38;
  cursor: default;
  pointer-events: none;
}

.product-shelf__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #bf7423;
  border-right: 2px solid #bf7423;
}

.product-shelf__arrow--prev::before {
    transform: rotate(-135deg);
  }

.product-shelf__arrow--prev {
  left: 0;
}

.product-shelf__arrow--next::before {
    transform: rotate(45deg);
  }

.product-shelf__arrow--next {
  right: 0;
}

.product-shelf__viewport {
  overflow: hidden;
}

.product-shelf__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 3);
  gap: 20px;
  transition: transform 0.4s ease;
}

.shop-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  border: 1px solid rgba(92, 67, 29, 0.12);
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: none;
}

.shop-card__visual {
    position: relative;
    min-height: 328px;
    padding: 12px 12px 0;
    background:
      radial-gradient(circle at 12% 12%, rgba(221, 141, 44, 0.18), transparent 28%),
      linear-gradient(180deg, rgba(255,255,255,0.84), rgba(241,234,223,0.72));
  }

.shop-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  padding: 6px 10px;
  border: 1px solid rgba(227, 131, 23, 0.7);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.94);
  color: #5b3716;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.shop-card__specs {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: grid;
  gap: 8px;
  width: min(192px, 62%);
}

.shop-card__spec {
  display: grid;
  gap: 4px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 247, 236, 0.78);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 18px rgba(87, 61, 26, 0.08);
}

.shop-card__spec strong {
  color: #211912;
  font-size: 16px;
  line-height: 1;
}

.shop-card__spec span {
  color: #6b5e53;
  font-size: 13px;
  font-weight: 600;
}

.shop-card__image {
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 76%;
    height: 72%;
    transform: translateX(-50%);
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 18px 22px rgba(61, 43, 21, 0.15));
  }

.shop-card__body {
    display: grid;
  justify-items: center;
  align-content: start;
  padding: 18px 18px 28px;
  text-align: center;
}

.shop-card__color-name {
  margin-bottom: 8px;
  color: #7d7368;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.shop-card h3 {
    margin: 0 0 12px;
    color: #1f1913;
    font-size: 18px;
    line-height: 1.24;
    text-transform: none;
  }

.shop-card__price {
    margin: 0 0 18px;
    color: #1c1711;
    font-size: 17px;
    font-weight: 800;
  }

.shop-card__colors-title {
  margin: 0 0 10px;
  color: #8f8172;
  font-size: 14px;
}

.shop-card__colors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}

.shop-color {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(54, 38, 21, 0.12);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.28), rgba(0,0,0,0.06)),
    repeating-linear-gradient(135deg, rgba(0,0,0,0.12) 0 2px, transparent 2px 5px),
    var(--swatch);
  cursor: pointer;
}

.shop-color.is-active {
  border-color: #dd8126;
  box-shadow: 0 0 0 2px rgba(221, 129, 38, 0.22);
}

.shop-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 194px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid #ed7d17;
  color: #1b1712;
  font-size: 15px;
  font-weight: 700;
  box-shadow: none;
}

.section--quiz {
  position: relative;
  padding-top: 34px;
  padding-bottom: 24px;
  overflow: hidden;
  background: transparent;
}

.section--quiz::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  background:
    radial-gradient(circle at 15% 20%, rgba(234, 206, 171, 0.18), transparent 30%),
    radial-gradient(circle at 82% 24%, rgba(234, 206, 171, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255,252,246,0.92), rgba(249,244,236,0.92));
  pointer-events: none;
  z-index: 0;
}

.quiz {
  position: relative;
  display: grid;
  gap: 26px;
  padding: 0 0 20px;
  background: transparent;
  z-index: 1;
}

.quiz__hero {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.quiz__hero > div {
  width: 100%;
  text-align: center;
}

.quiz__hero h3 {
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
  text-transform: uppercase;
}

.quiz__hero p,
.quiz__bonus {
  margin: 0 auto;
  color: #2f261f;
  font-size: 17px;
  line-height: 1.45;
  text-align: center;
}

.quiz__bonus {
  display: none;
}

.quiz__panel {
  width: min(1140px, 100%);
  margin: 0 auto;
  padding: 30px 52px 40px;
  border: 1px solid rgba(98, 75, 44, 0.08);
  border-radius: 0;
  background: #fff;
  box-shadow: 0 10px 34px rgba(74, 52, 21, 0.05);
}

.quiz__progress {
  display: flex;
  justify-content: center;
  gap: 38px;
  align-items: center;
  margin-bottom: 34px;
}

.quiz__progress span {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #b9b8b8;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.quiz__progress span::after {
  content: "";
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  width: 60px;
  height: 1px;
  background: #c6c3be;
  transform: translateY(-50%);
}

.quiz__progress span:last-child::after {
  display: none;
}

.quiz__progress span.is-active,
.quiz__progress span.is-done {
  background: linear-gradient(180deg, #ff981f, #ef7d17);
}

.quiz__progress span.is-done::after,
.quiz__progress span.is-active::after {
  background: rgba(241, 126, 17, 0.8);
}

.quiz__screen {
  display: none;
}

.quiz__screen.is-active {
  display: block;
}

.quiz__title {
  margin: 0 0 18px;
  color: #17120d;
  font-size: 24px;
  line-height: 1.12;
  text-transform: uppercase;
  text-align: center;
}

.quiz__subtitle {
  max-width: 860px;
  margin: 0 auto 28px;
  color: #53473d;
  font-size: 16px;
  line-height: 1.55;
  text-align: center;
}

.quiz__choices {
  display: grid;
  gap: 16px;
}

.quiz__choices--grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 700px;
  margin: 0 auto;
  column-gap: 30px;
  row-gap: 22px;
}

.quiz__choices--duo {
  grid-template-columns: repeat(2, 250px);
  justify-content: center;
  justify-items: center;
  max-width: 640px;
  margin: 0 auto;
  column-gap: 90px;
  row-gap: 12px;
}

.quiz__choices--duo .quiz-card {
  width: 250px;
}

.quiz__choices--duo .quiz-card img {
  width: 180px;
  height: 114px;
  padding: 0;
  object-fit: cover;
  background: #fff;
}

.quiz-card {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #1f1914;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.quiz-card img {
  width: 146px;
  height: 90px;
  padding: 8px;
  border: 1px solid rgba(78, 60, 37, 0.16);
  border-radius: 0;
  background: #fff;
  object-fit: cover;
}

.quiz-card span {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
}

.quiz-card.is-selected {
  box-shadow: none;
}

.quiz-card.is-selected img {
  border-color: #ea7d16;
  box-shadow: inset 0 0 0 1px #ea7d16;
}

.quiz-card:hover {
  transform: translateY(-2px);
}

.quiz__fields {
  display: grid;
  gap: 18px;
}

.quiz__fields--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quiz__fields--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quiz__choices--row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quiz-card--chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 32px;
  border: 1.5px solid rgba(97, 74, 46, 0.18);
  background: #fff;
  color: #302721;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  width: auto;
}

.quiz-card--chip:hover {
  border-color: #ea7d16;
  transform: none;
}

.quiz-card--chip.is-selected {
  background: #ea7d16;
  border-color: #ea7d16;
  color: #fff;
  box-shadow: none;
}

.quiz-card--text {
  display: grid;
  gap: 6px;
  padding: 20px 18px;
  text-align: left;
  align-items: start;
}

.quiz-card--text .quiz-card__icon {
  font-size: 28px;
  line-height: 1;
}

.quiz-card--text > span:not(.quiz-card__icon) {
  font-size: 15px;
  font-weight: 700;
  color: #302721;
}

.quiz-card--text small {
  font-size: 12px;
  font-weight: 400;
  color: #8b7b6c;
  line-height: 1.4;
}

.quiz-card--text.is-selected {
  border-color: #ea7d16;
  background: rgba(234, 125, 22, 0.06);
  box-shadow: inset 0 0 0 1.5px #ea7d16;
}

.quiz-field {
  display: grid;
  gap: 8px;
}

.quiz-field span {
  color: #302721;
  font-size: 15px;
  font-weight: 700;
}

.quiz-field small {
  color: #8b7b6c;
  font-size: 12px;
}

.quiz-field input,
.quiz-field textarea {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(97, 74, 46, 0.14);
  border-radius: 16px;
  background: rgba(255,255,255,0.96);
  color: #1a1510;
  font-size: 17px;
}

.quiz-field textarea {
  min-height: 132px;
  padding-top: 16px;
  resize: vertical;
}

.quiz-check {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: #2d241d;
  font-size: 16px;
  font-weight: 600;
}

.quiz-check input {
  width: 20px;
  height: 20px;
}

.quiz__split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  align-items: center;
}

.quiz__split--delivery {
  grid-template-columns: 0.9fr 1.1fr;
}

.quiz__split--final {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.quiz__media {
  min-height: 320px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 20% 20%, rgba(239, 170, 83, 0.16), transparent 24%),
    linear-gradient(180deg, #fbf7f1, #f1eadf);
}

.quiz__media--sheet {
  background:
    url("./img/proekt.png") center/cover no-repeat,
    linear-gradient(180deg, #fbf7f1, #f1eadf);
}

.quiz__media--truck {
  display: grid;
  place-items: center;
  overflow: hidden;
}

.quiz__media--truck img {
  width: 100%;
  max-width: 460px;
  object-fit: contain;
}

.quiz-upload {
  display: grid;
  justify-items: center;
  gap: 8px;
  width: min(100%, 360px);
  padding: 24px 18px;
  margin-bottom: 18px;
  border: 1px dashed rgba(113, 90, 59, 0.28);
  border-radius: 18px;
  background: #fffdfa;
  text-align: center;
  cursor: pointer;
}

.quiz-upload input {
  display: none;
}

.quiz-upload__icon {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f2f0ec, #d8d4cf);
}

.quiz-upload__icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: 20px;
  height: 14px;
  border: 2px solid #8f8b86;
  border-radius: 4px;
  transform: translate(-50%, -50%);
}

.quiz-upload__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: 6px;
  height: 6px;
  border: 2px solid #8f8b86;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.quiz-upload strong {
  color: #201913;
  font-size: 18px;
}

.quiz-upload em {
  color: #7f7265;
  font-size: 13px;
  font-style: normal;
}

.quiz__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
}

.quiz__actions--end {
  justify-content: center;
}

.quiz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.quiz-btn--primary {
  border: 0;
  background: linear-gradient(180deg, #ff9d39, #ef7d17);
  color: #fff;
  box-shadow: 0 12px 28px rgba(229, 128, 26, 0.22);
}

.quiz-btn--ghost {
  border: 2px solid rgba(231, 125, 22, 0.9);
  background: #fffdfa;
  color: #221b15;
}

.quiz__offer strong {
  display: block;
  margin-bottom: 10px;
  color: #ef7d17;
  font-size: 36px;
  line-height: 1.04;
  text-transform: uppercase;
}

.quiz__list {
  margin: 18px 0 0;
  padding-left: 22px;
  color: #2b221b;
  font-size: 18px;
  line-height: 1.75;
}

.quiz__gift {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 280px;
  margin-top: 18px;
}

.quiz__gift img {
  width: 360px;
  max-height: 280px;
  max-width: 100%;
  object-fit: contain;
}

.quiz-form {
  display: grid;
  gap: 16px;
}

.quiz-form__status {
  display: none;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.45;
}

.quiz-form__status.is-loading,
.quiz-form__status.is-success,
.quiz-form__status.is-error {
  display: block;
}

.quiz-form__status.is-loading {
  background: rgba(255, 154, 46, 0.12);
  color: #7c4814;
}

.quiz-form__status.is-success {
  background: rgba(79, 156, 77, 0.12);
  color: #295c28;
}

.quiz-form__status.is-error {
  background: rgba(187, 72, 49, 0.12);
  color: #8f2f22;
}

.quiz-btn:disabled {
  opacity: 0.72;
  cursor: wait;
}

.material-block {
  position: relative;
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: 32px 28px 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,244,238,0.96)),
    radial-gradient(circle at 15% 22%, rgba(222, 194, 160, 0.18), transparent 28%);
  overflow: hidden;
}

.material-block::before,
.material-block::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  opacity: 0.08;
  background:
    linear-gradient(60deg, transparent 0 20%, #8b8b8b 20% 28%, transparent 28% 46%, #8b8b8b 46% 54%, transparent 54% 72%, #8b8b8b 72% 80%, transparent 80%);
}

.material-block::before {
  top: 0;
  left: -20px;
}

.material-block::after {
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
}

.material-block__head {
  text-align: center;
  margin-bottom: 20px;
}

.material-block__lead {
  max-width: 820px;
  margin: 14px auto 0;
  color: #6e6358;
  font-size: 16px;
  line-height: 1.7;
}

.material-block__title {
  margin: 0;
  color: #17120d;
  font-size: 34px;
  line-height: 1.08;
  text-transform: uppercase;
}

.material-block__title span {
  display: block;
  color: #f07d17;
}

.material-block__layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  grid-template-areas:
    "left visual rightTop"
    "leftList visual rightList"
    ". bottom rightList";
  column-gap: 26px;
  row-gap: 18px;
  align-items: start;
}

.material-visual {
  grid-area: visual;
  position: relative;
  min-height: 560px;
}

.material-visual__board {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.material-visual__board img {
  width: 100%;
  max-width: 360px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(50, 34, 15, 0.16));
}

.material-visual__board--one {
  transform: translate(8px, 6px) rotate(-13deg);
}

.material-visual__line {
  position: absolute;
  border-top: 1px solid rgba(111, 107, 103, 0.55);
}

.material-visual__line::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 0;
  width: 1px;
  height: 48px;
  background: rgba(111, 107, 103, 0.55);
}

.material-visual__line--lt {
  left: -70px;
  top: 172px;
  width: 138px;
}

.material-visual__line--lb {
  left: 118px;
  bottom: 88px;
  width: 92px;
}

.material-visual__line--lb::after {
  height: 54px;
}

.material-visual__line--rt {
  right: -64px;
  top: 46px;
  width: 176px;
}

.material-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
}

.material-point--left {
  grid-area: left;
  padding-top: 170px;
}

.material-point--right-top {
  grid-area: rightTop;
  padding-top: 36px;
}

.material-point--bottom {
  grid-area: bottom;
  max-width: 360px;
}

.material-point__index {
  color: #69cc00;
  font-size: 56px;
  font-weight: 800;
  line-height: 0.9;
}

.material-point__body h3 {
  margin: 0 0 10px;
  color: #16110c;
  font-size: 18px;
  line-height: 1.1;
}

.material-point__body p {
  margin: 0;
  color: #211a14;
  font-size: 16px;
  line-height: 1.5;
}

.material-list {
  display: grid;
  gap: 12px;
}

.material-list--left {
  grid-area: leftList;
  align-self: end;
}

.material-list--right {
  grid-area: rightList;
  padding-top: 286px;
}

.material-list__item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  color: #1f1913;
  font-size: 16px;
  line-height: 1.45;
}

.material-list__icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 2px solid #f07d17;
  border-radius: 50%;
  color: #f07d17;
  font-size: 16px;
  font-weight: 700;
}

.section--projects {
  position: relative;
  padding-top: 44px;
  padding-bottom: 44px;
  overflow: hidden;
  background: transparent;
}

.section--projects::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  background:
    radial-gradient(circle at 16% 18%, rgba(240, 223, 200, 0.34), transparent 18%),
    radial-gradient(circle at 82% 76%, rgba(241, 226, 205, 0.28), transparent 22%),
    linear-gradient(180deg, #fdfaf5, #f8f2ea);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='360' viewBox='0 0 800 360' fill='none'%3E%3Cg stroke='%23e8ddd0' stroke-width='1.2' opacity='0.7'%3E%3Cpath d='M-40 60C48 12 150 12 228 48s156 38 232 4 150-40 228-4 158 42 228 6'/%3E%3Cpath d='M-50 112c78-46 170-46 248-12s156 38 232 4 150-40 228-4 162 44 246 0'/%3E%3Cpath d='M-44 164c78-46 170-46 248-12s156 38 232 4 150-40 228-4 162 44 246 0'/%3E%3Cpath d='M-54 216c78-46 170-46 248-12s156 38 232 4 150-40 228-4 162 44 246 0'/%3E%3Cpath d='M-34 268c78-46 170-46 248-12s156 38 232 4 150-40 228-4 162 44 246 0'/%3E%3Cpath d='M-24 320c78-46 170-46 248-12s156 38 232 4 150-40 228-4 162 44 246 0'/%3E%3Cpath d='M90-20c-18 34-16 68 10 92s76 28 98 58 10 70-30 96-74 52-68 96'/%3E%3Cpath d='M248-14c-22 34-24 72 4 102s74 36 92 66 2 66-34 90-74 50-64 96'/%3E%3Cpath d='M430-8c-20 34-18 74 12 102s72 30 92 62 8 72-30 98-80 52-68 106'/%3E%3Cpath d='M612-18c-18 30-18 66 4 92s68 30 92 60 14 74-24 100-72 48-62 90'/%3E%3E%3C/g%3E%3C/svg%3E");
  background-size: 860px 380px;
  background-repeat: repeat;
  opacity: 0.7;
  pointer-events: none;
}

.client-projects {
  position: relative;
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: 0 28px;
}

.client-projects > * {
  position: relative;
  z-index: 1;
}

.client-projects__head {
  display: grid;
  justify-items: center;
  margin-bottom: 26px;
  text-align: center;
}

.client-projects__lead {
  max-width: 880px;
  margin: 14px 0 0;
  color: #6e6358;
  font-size: 16px;
  line-height: 1.65;
}

.section--comparison {
  position: relative;
}

.comparison-block {
  padding: 34px 34px 30px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(248, 170, 73, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(252, 246, 236, 0.96));
  box-shadow: 0 22px 54px rgba(120, 84, 34, 0.08);
}

.comparison-block__head {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 24px;
  text-align: center;
}

.comparison-block__eyebrow,
.purchase-block__eyebrow {
  color: #b07a34;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comparison-block__title,
.purchase-block__title {
  margin: 0;
  color: #17110d;
  font-size: 32px;
  line-height: 1.08;
  text-transform: uppercase;
}

.comparison-block__lead,
.purchase-block__lead {
  max-width: 860px;
  margin: 0;
  color: #6e6358;
  font-size: 16px;
  line-height: 1.65;
}

.comparison-block__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.comparison-card {
  padding: 24px 22px;
  border-radius: 24px;
  border: 1px solid rgba(193, 148, 94, 0.2);
  background: rgba(255, 255, 255, 0.82);
}

.comparison-card--accent {
  border-color: rgba(236, 137, 31, 0.26);
  background: linear-gradient(180deg, rgba(255, 247, 236, 0.96), rgba(255, 255, 255, 0.96));
  box-shadow: 0 18px 40px rgba(201, 126, 37, 0.09);
}

.comparison-card h3,
.purchase-step h3 {
  margin: 0 0 14px;
  color: #1a120d;
  font-size: 22px;
  line-height: 1.2;
}

.comparison-card__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-card__list li {
  position: relative;
  padding-left: 20px;
  color: #51473d;
  font-size: 15px;
  line-height: 1.6;
}

.comparison-card__list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ec891f;
}

.comparison-block__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(197, 162, 119, 0.22);
}

.comparison-block__footer p {
  max-width: 760px;
  margin: 0;
  color: #5d5348;
  font-size: 15px;
  line-height: 1.65;
}

.comparison-block__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 232px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff9a22, #f07d17);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(240, 125, 23, 0.22);
}

.section--purchase {
  position: relative;
}

.purchase-block {
  position: relative;
  padding: 34px 34px 30px;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(242, 179, 104, 0.18), transparent 26%),
    radial-gradient(circle at 88% 14%, rgba(218, 192, 150, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(250, 243, 232, 0.96));
  box-shadow: 0 24px 60px rgba(120, 84, 34, 0.1);
}

.purchase-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 165, 123, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 165, 123, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.26), transparent 70%);
  pointer-events: none;
}


.purchase-block__head {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 30px;
  text-align: center;
}

.purchase-block__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.purchase-block__steps::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 38px;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 155, 58, 0.12), rgba(232, 155, 58, 0.55), rgba(232, 155, 58, 0.12));
  pointer-events: none;
}

.purchase-step {
  position: relative;
  padding: 22px 20px 20px;
  border-radius: 22px;
  border: 1px solid rgba(197, 162, 119, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 244, 0.88));
  box-shadow: 0 14px 34px rgba(132, 96, 48, 0.07);
  transition:
    transform var(--motion-soft),
    box-shadow var(--motion-soft),
    border-color var(--motion-soft);
}

.purchase-step:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 145, 45, 0.28);
  box-shadow: 0 20px 42px rgba(132, 96, 48, 0.12);
}

.purchase-step__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 34px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 243, 228, 0.96), rgba(255, 233, 204, 0.96));
  color: #d87113;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 1px rgba(228, 145, 45, 0.18);
}

.purchase-step p {
  margin: 0;
  color: #5c5247;
  font-size: 15px;
  line-height: 1.6;
}

.purchase-block__notes {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.purchase-block__notes span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 246, 233, 0.98), rgba(250, 236, 214, 0.94));
  color: #6d533d;
  font-size: 14px;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(225, 178, 111, 0.16);
}

.purchase-block__notes span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff9b21, #ef7f18);
  box-shadow: 0 0 0 4px rgba(239, 127, 24, 0.1);
}

@media (max-width: 1100px) {
  .comparison-block__grid,
  .purchase-block__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comparison-block__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .purchase-block__steps::before {
    display: none;
  }

}

.client-projects__title {
  margin: 0;
  color: #17110d;
  font-size: 32px;
  line-height: 1.08;
  text-transform: uppercase;
}

.client-projects__shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.client-projects__viewport {
  overflow: hidden;
}

.client-projects__track {
  gap: 26px;
  grid-auto-columns: calc((100% - 52px) / 3);
}

.client-project {
  min-width: 0;
}

.client-project__visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.94;
  background: #d9d0c5;
}

.client-project__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-project__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 11, 7, 0.04) 0%, rgba(16, 11, 7, 0.62) 100%);
}

.client-project__badge {
  position: absolute;
  top: 18px;
  right: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 16px;
  background: #f4c511;
  color: #20180e;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.client-project__overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 22px 18px 20px;
}

.client-project__overlay h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.28);
}

.client-projects__arrow {
  position: relative;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(197, 119, 31, 0.38);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.94);
  box-shadow: 0 8px 22px rgba(129, 85, 27, 0.08);
  cursor: pointer;
}

.client-projects__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  border-top: 2px solid #bf7423;
  border-right: 2px solid #bf7423;
}

.client-projects__arrow--prev::before {
  transform: rotate(-135deg);
}

.client-projects__arrow--next::before {
  transform: rotate(45deg);
}

.client-projects__arrow:disabled {
  opacity: 0.38;
  cursor: default;
  pointer-events: none;
}

.install-block {
  position: relative;
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: 26px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 24%, rgba(229, 201, 169, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(252,249,244,0.98), rgba(245,239,232,0.98));
}

.install-block__content {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  min-height: 470px;
}

.install-block__copy {
  padding: 0 24px 0 34px;
}

.install-block__title {
  margin: 0 0 22px;
  color: #15100b;
  font-size: 34px;
  line-height: 1.16;
  text-transform: uppercase;
}

.install-block__copy p {
  max-width: 420px;
  margin: 0 0 20px;
  color: #201812;
  font-size: 16px;
  line-height: 1.55;
}

.install-block__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 246px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff991f, #ef7b13);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(234, 128, 22, 0.24);
}

.install-block__media {
  position: relative;
  min-height: 470px;
}

.install-block__media img {
  position: absolute;
  right: -56px;
  bottom: -16px;
  width: min(100%, 840px);
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(54, 37, 16, 0.14));
}

.install-block__play {
  position: absolute;
  left: 47%;
  top: 48%;
  z-index: 2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(73, 51, 28, 0.9);
  transform: translate(-50%, -50%);
}

.install-block__play::before {
  content: "";
  position: absolute;
  left: 52%;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #fff;
  transform: translate(-40%, -50%);
}

.section--director {
  position: relative;
  padding-top: 34px;
  padding-bottom: 0;
  overflow: hidden;
  background: transparent;
}

.section--director::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  background:
    radial-gradient(circle at 18% 22%, rgba(223, 183, 132, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,241,234,0.98));
  pointer-events: none;
  z-index: 0;
}

.director-block {
  position: relative;
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: 30px 30px 0;
  overflow: hidden;
  background: transparent;
  z-index: 1;
}

.director-block__content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: end;
  min-height: 540px;
  gap: 20px;
}

.director-block__copy {
  padding: 6px 0 36px 12px;
}

.director-block__title {
  max-width: 650px;
  margin: 0 0 18px;
  color: #1a140f;
  font-size: 34px;
  line-height: 1.15;
}

.director-block__lead {
  max-width: 620px;
  margin: 0 0 28px;
  color: #6f655a;
  font-size: 16px;
  line-height: 1.7;
}

.director-block__person {
  max-width: 590px;
  padding-top: 22px;
  border-top: 1px solid rgba(64, 48, 26, 0.12);
}

.director-block__person strong {
  display: block;
  margin-bottom: 10px;
  color: #1a140f;
  font-size: 17px;
  line-height: 1.35;
}

.director-block__person span {
  display: block;
  color: #6d6357;
  font-size: 15px;
  line-height: 1.7;
}

.director-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.director-block__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 236px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 700;
}

.director-block__cta--primary {
  background: linear-gradient(180deg, #ff991f, #ef7b13);
  color: #fff;
  box-shadow: 0 12px 28px rgba(234, 128, 22, 0.22);
}

.director-block__cta--ghost {
  border: 1.8px solid rgba(236, 137, 31, 0.55);
  background: #ffffff;
  color: #31251b;
  box-shadow: 0 4px 14px rgba(31, 22, 18, 0.06);
}
.director-block__cta--ghost:hover {
  border-color: rgba(236, 137, 31, 0.85);
  background: #fffaf3;
}

.director-block__visual {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: end;
  justify-items: center;
  background:
    radial-gradient(circle at 56% 30%, rgba(201, 222, 251, 0.34), transparent 26%),
    radial-gradient(circle at 84% 32%, rgba(201, 222, 251, 0.26), transparent 20%);
}

.director-block__visual::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 86%;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 43, 29, 0.22), transparent 70%);
  transform: translateX(-50%);
  filter: blur(6px);
}

.director-block__portrait {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  min-height: 520px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.director-block__photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: drop-shadow(0 18px 26px rgba(57, 39, 18, 0.16));
}

.director-block__portrait::before {
  content: none;
}

.director-block__badge {
  position: absolute;
  left: 50%;
  top: 18px;
  z-index: 2;
  width: 142px;
  transform: translateX(-50%);
}

.director-block__badge img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.director-block__meta {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  display: grid;
  gap: 8px;
  width: calc(100% - 36px);
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(29, 22, 17, 0.92);
  color: #f6efe5;
  transform: translateX(-50%);
}

.director-block__meta span {
  color: rgba(246, 239, 229, 0.66);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.director-block__meta strong {
  font-size: 26px;
  line-height: 1.08;
}

.director-block__meta small {
  color: rgba(246, 239, 229, 0.76);
  font-size: 14px;
  line-height: 1.45;
}

.section--reviews {
  position: relative;
  padding-top: 30px;
  padding-bottom: 26px;
}

.reviews-block {
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: 0 28px;
}

.reviews-block__head {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.reviews-block__title {
  margin: 0;
  color: #1b140f;
  font-size: 32px;
  line-height: 1.08;
  text-transform: uppercase;
}

.reviews-block__lead {
  max-width: 760px;
  margin: 0;
  color: #6e6358;
  font-size: 16px;
  line-height: 1.6;
}

.reviews-block__shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.reviews-block__viewport {
  overflow: hidden;
}

.reviews-block__track {
  gap: 26px;
  grid-auto-columns: calc((100% - 52px) / 3);
}

.reviews-block__track--slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 52px) / 3);
  gap: 26px;
  min-height: 320px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.reviews-block__track--slider.is-no-motion {
  transition: none;
}

/* ── Shelf dots (отзывы / проекты) ── */
.shelf-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 0 4px;
}

.shelf-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
  position: relative;
}
.shelf-dot::after {
  content: '';
  position: absolute;
  inset: -18px;
}

.shelf-dot:hover {
  background: rgba(0, 0, 0, 0.35);
}

.shelf-dot.is-active {
  background: #dd8536;
  transform: scale(1.25);
}

.review-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: 22px 20px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(83, 62, 35, 0.08);
}

.review-card__top {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
}

.review-card__avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff7568, #ec5347);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.review-card__meta {
  display: grid;
  gap: 4px;
}

.review-card__meta strong {
  color: #1e1914;
  font-size: 18px;
  line-height: 1.2;
}

.review-card__meta span {
  color: #f3b323;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1;
}

.review-card__date {
  color: #7d7a85;
  font-size: 13px;
  line-height: 1.4;
}

.review-card p {
  margin: 0;
  color: #444056;
  font-size: 16px;
  line-height: 1.65;
}

.review-card__more {
  align-self: end;
  color: #18130f;
  font-size: 15px;
  font-weight: 700;
}

.reviews-block__arrow {
  position: relative;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(197, 119, 31, 0.38);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.94);
  box-shadow: 0 8px 22px rgba(129, 85, 27, 0.08);
  cursor: pointer;
}

.reviews-block__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  border-top: 2px solid #bf7423;
  border-right: 2px solid #bf7423;
}

.reviews-block__arrow--prev::before {
  transform: rotate(-135deg);
}

.reviews-block__arrow--next::before {
  transform: rotate(45deg);
}

.reviews-block__arrow:disabled {
  opacity: 0.38;
  cursor: default;
  pointer-events: none;
}

.more-info {
  width: fit-content;
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.more-info[open] {
  width: min(1220px, 100%);
  padding: 24px 22px 26px;
  border-radius: 28px;
}

.more-info:not([open]) {
  display: table;
}

.more-info:not([open]) .more-info__toggle {
  margin: 0;
}

.more-info__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 290px;
  min-height: 50px;
  margin: 0 auto;
  padding: 0 24px;
  border: 1.5px solid rgba(236, 137, 31, 0.34);
  border-radius: 999px;
  background: linear-gradient(180deg, #ff9b20, #f18417);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  list-style: none;
  box-shadow: 0 12px 26px rgba(236, 136, 24, 0.2);
}

.more-info__toggle::-webkit-details-marker {
  display: none;
}

.more-info__panel {
  padding-top: 20px;
}

.more-info__card {
  padding: 34px 40px 38px;
  border: 1px solid rgba(218, 223, 231, 0.88);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.more-info__title {
  max-width: 960px;
  margin: 0 auto 16px;
  color: #29384c;
  font-size: 34px;
  line-height: 1.12;
}

.more-info__subtitle {
  margin: 0 0 18px;
  color: #647284;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.more-info__card p {
  max-width: 980px;
  margin: 0 auto 18px;
  color: #748294;
  font-size: 16px;
  line-height: 1.72;
}

.more-info__heading {
  margin: 8px 0 14px;
  color: #58677a;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}

.site-footer {
  position: relative;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #f4ede2;
  box-shadow: none;
}

.site-footer__inner {
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: 36px 28px 22px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(150px, 0.95fr)) minmax(220px, 1fr);
  gap: 28px;
  align-items: start;
}

.site-footer__brand {
  display: grid;
  gap: 16px;
  align-content: start;
}

.site-footer__brand-link {
  display: inline-flex;
  width: fit-content;
}

.site-footer__brand-logo {
  width: 178px;
  height: auto;
  object-fit: contain;
}

.site-footer__brand-text {
  max-width: 250px;
  margin: 0;
  color: rgba(244, 237, 226, 0.74);
  font-size: 15px;
  line-height: 1.45;
}

.site-footer__brand-meta {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  color: rgba(244, 237, 226, 0.58);
  font-size: 14px;
  line-height: 1.55;
}

.site-footer__brand-meta a {
  color: rgba(244, 237, 226, 0.82);
}

.site-footer__column,
.site-footer__contacts-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.site-footer__column h3,
.site-footer__contacts-column h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.site-footer__column a,
.site-footer__contacts-column p,
.site-footer__contact-link {
  margin: 0;
  color: rgba(244, 237, 226, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.site-footer__column a {
  position: relative;
  padding-left: 16px;
}

.site-footer__column a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-top: 1px solid rgba(244, 237, 226, 0.56);
  border-right: 1px solid rgba(244, 237, 226, 0.56);
  transform: translateY(-50%) rotate(45deg);
}

.site-footer__column a:hover,
.site-footer__brand-meta a:hover,
.site-footer__contact-link:hover {
  color: #fff;
}

.site-footer__contacts-column {
  padding-left: 10px;
}

.site-footer__contact-link {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.site-footer__secondary {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__intro {
  max-width: 760px;
  margin-bottom: 24px;
}

.site-footer__eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: #d6a15d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__intro h2 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.08;
  text-transform: uppercase;
}

.site-footer__intro p {
  margin: 0;
  color: rgba(244, 237, 226, 0.76);
  font-size: 16px;
  line-height: 1.6;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
}

.site-footer__panel,
.site-footer__map {
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.site-footer__panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 22px;
}

.site-footer__contacts {
  display: grid;
  gap: 14px;
}

.site-footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding: 2px 2px 4px;
}

.site-footer__menu a {
  color: rgba(244, 237, 226, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.site-footer__menu a:hover {
  color: #fff;
}

.site-footer__card {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.site-footer__label {
  display: block;
  margin-bottom: 8px;
  color: rgba(244, 237, 226, 0.58);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer__value {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.site-footer__text {
  margin: 0;
  color: rgba(244, 237, 226, 0.82);
  font-size: 16px;
  line-height: 1.55;
}

.site-footer__legal {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.site-footer__legal-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__legal-row span {
  color: rgba(244, 237, 226, 0.58);
  font-size: 14px;
}

.site-footer__legal-row strong {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: right;
}

.site-footer__map {
  overflow: hidden;
}

.site-footer__map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(0.1) saturate(0.8) contrast(1.02);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(244, 237, 226, 0.58);
  font-size: 14px;
}

.calculator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.calc-card,
.projects-panel,
.why {
  border: 1px solid rgba(70, 58, 38, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, #f7f2e8, #f1ebde);
}

.calc-card {
  padding: 12px 12px 14px;
}

.calc-card h3,
.projects-panel h3,
.why h3 {
  margin: 0 0 4px;
  font-size: 11px;
  text-transform: uppercase;
}

.calc-card p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 9px;
}

.form-block label {
  display: block;
  margin-bottom: 6px;
  font-size: 9px;
}

.chips,
.mini-colors,
.radios {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 0 8px;
  border: 1px solid rgba(80, 62, 37, 0.16);
  border-radius: 6px;
  background: #faf7f0;
  font-size: 9px;
}

.chip--active {
  background: #f0e2ca;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}

.range {
  position: relative;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(115, 92, 61, 0.18);
}

.range::after {
  content: "";
  position: absolute;
  left: 52%;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 1.5px solid #d78842;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.mini-color {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(30, 25, 18, 0.08);
}

.mini-color--1 { background: #6a513f; }
.mini-color--2 { background: #8f7151; }
.mini-color--3 { background: #a59477; }
.mini-color--4 { background: #51524d; }
.mini-color--5 { background: #2f302e; }
.mini-color--6 { background: linear-gradient(135deg, #8b653f, #b98652); }

.mini-colors--large .mini-color {
  width: 18px;
  height: 18px;
}

.radios span {
  font-size: 9px;
}

.side-column {
  display: grid;
  gap: 12px;
}

.estimate-layout {
  display: grid;
  grid-template-columns: 1fr 132px;
  gap: 12px;
}

.steps {
  padding-left: 15px;
  margin: 0;
  font-size: 9px;
  line-height: 2.1;
}

.estimate-box {
  padding: 10px;
  border-radius: 7px;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(73, 59, 38, 0.1);
}

.estimate-box__title {
  margin-bottom: 8px;
  font-size: 9px;
  font-weight: 700;
}

.estimate-box__row,
.estimate-box__total {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 9px;
  margin-bottom: 8px;
}

.estimate-box__total {
  margin-top: 12px;
  font-size: 11px;
  font-weight: 700;
}

.projects-panel {
  padding: 12px;
}

.projects-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.projects-panel__head a {
  color: #b08a4b;
  font-size: 9px;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.thumbs img {
  width: 100%;
  height: 56px;
  border-radius: 6px;
  object-fit: cover;
}

.lower-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.why {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 12px;
  padding: 12px;
}

.why ul {
  padding-left: 16px;
  margin: 0;
  color: #37322c;
  font-size: 8px;
  line-height: 1.6;
}

.why img {
  width: 100%;
  height: 120px;
  border-radius: 6px;
  object-fit: cover;
}

.footer-panel {
  display: grid;
  padding: 12px 12px 10px;
  border-radius: 8px;
  background: linear-gradient(180deg, #1d2023, #141618);
  color: #ece6da;
}

.footer-panel__top {
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.7fr 0.7fr;
  gap: 10px;
}

.footer-panel h4 {
  margin: 0 0 6px;
  font-size: 9px;
}

.footer-panel p,
.footer-links a {
  margin: 0;
  color: rgba(236, 230, 218, 0.72);
  font-size: 7px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  gap: 2px;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 4px;
}

.newsletter input {
  height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #f4eee3;
  font-size: 8px;
}

.newsletter button {
  border: 0;
  border-radius: 6px;
  background: linear-gradient(180deg, #ef9e55, #d57833);
  color: #fff;
}

.footer-panel__bottom {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(236, 230, 218, 0.58);
  font-size: 7px;
}

@media (max-width: 640px) and (hover: none), (max-width: 640px) and (pointer: coarse) {
  .shell {
    width: 100%;
  }

  .topbar,
  .features,
  .products,
  .calculator,
  .lower-grid,
  .estimate-layout,
  .why,
  .footer-panel__top {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .topbar,
  .features,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero__content {
    width: auto;
    padding: 36px 18px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .products__bottom,
  .thumbs {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-header {
  position: relative;
  z-index: 40;
  background: rgba(255, 252, 248, 0.92);
  border-bottom: 1px solid rgba(29, 19, 16, 0.06);
}

.hero-header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 0;
  padding: 0 236px 0 236px;
}

.hero-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  
.hero-logo__image {
    display: block;
    width: 208px;
    height: auto;
    object-fit: contain;
    flex: 0 0 auto;
  }

.hero-logo__text {
    display: block;
  }
  
.hero-logo__subtitle {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.25;
    margin-top: -2px;
    margin-left: 14px;
  }

.hero-header__contacts {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-header__phone {
  color: inherit;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.hero-header__call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff9d39, #ef7d17);
  color: #fff;
  font-weight: 700;
}
.hero-header__call:hover {
  background: linear-gradient(180deg, #ffaa4d, #e06e0a);
}

.hero-nav {
  position: relative;
  z-index: 45;
  overflow: visible;
  background: rgba(255, 255, 255, 0.96);
  color: #18120d;
  border-top: 1px solid rgba(34, 24, 16, 0.05);
  border-bottom: 1px solid rgba(34, 24, 16, 0.08);
  box-shadow: 0 6px 16px rgba(31, 22, 15, 0.04);
}

.hero-nav__links {
  position: relative;
  z-index: 46;
  overflow: visible;
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 50px;
  padding: 0 236px 0 236px;
  font-size: 14px;
}

.hero-nav__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 10px;
  color: #18120d;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.hero-nav__links a.is-pill {
  min-height: 42px;
}

.hero-nav__links a.is-pill--accent {
  background: #ff8b08;
  color: #fff;
}

.hero-nav__links a:not(.is-pill):hover {
  background: rgba(255, 139, 8, 0.08);
}

.hero-nav__mega {
  position: relative;
  flex: 0 0 auto;
}

.hero-nav__mega-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #18120d;
  font: inherit;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.hero-nav__mega:hover .hero-nav__mega-trigger,
.hero-nav__mega.is-open .hero-nav__mega-trigger,
.hero-nav__mega-trigger:focus-visible {
  background: rgba(255, 139, 8, 0.08);
  outline: none;
}

.hero-nav__mega-caret {
  width: 8px;
  height: 8px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.24s ease;
}

.hero-nav__mega:hover .hero-nav__mega-caret,
.hero-nav__mega.is-open .hero-nav__mega-caret {
  transform: rotate(225deg) translateY(-1px);
}

.hero-nav__mega-panel {
  position: absolute;
  left: 0;
  right: auto;
  width: min(
    calc((var(--mega-columns, 1) * 220px) + ((var(--mega-columns, 1) - 1) * 28px) + 48px),
    calc(100vw - 48px)
  );
  min-width: min(460px, calc(100vw - 48px));
  max-width: min(calc(100vw - 48px), 1120px);
  top: 100%;
  display: grid;
  justify-items: start;
  gap: 18px;
  padding: 24px 24px 26px;
  border: 1px solid rgba(187, 149, 105, 0.22);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,250,245,0.98)),
    radial-gradient(circle at top left, rgba(255, 173, 92, 0.14), transparent 30%);
  box-shadow: 0 28px 55px rgba(43, 31, 19, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  z-index: 80;
}

.hero-nav__mega--center .hero-nav__mega-panel {
  left: 50%;
  transform: translate(-50%, 10px);
}

.hero-nav__mega--right .hero-nav__mega-panel {
  left: auto;
  right: 0;
}

.hero-nav__mega:hover .hero-nav__mega-panel,
.hero-nav__mega.is-open .hero-nav__mega-panel,
.hero-nav__mega:focus-within .hero-nav__mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-nav__mega--center:hover .hero-nav__mega-panel,
.hero-nav__mega--center.is-open .hero-nav__mega-panel,
.hero-nav__mega--center:focus-within .hero-nav__mega-panel {
  transform: translate(-50%, 0);
}

.hero-nav__mega-head {
  display: grid;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(182, 150, 114, 0.18);
}

.hero-nav__mega-title {
  justify-self: start;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  color: #1a130f;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.hero-nav__mega-intro {
  margin: 0;
  max-width: 760px;
  color: #6a5b4c;
  font-size: 15px;
  line-height: 1.55;
}

.hero-nav__mega-grid {
  display: grid;
  grid-template-columns: repeat(var(--mega-columns, 1), minmax(220px, 1fr));
  justify-content: start;
  gap: 16px 28px;
  width: 100%;
}

.hero-nav__mega-stack {
  display: grid;
  width: 100%;
  gap: 18px;
}

.hero-nav__mega-column {
  display: grid;
  align-content: start;
  gap: 10px;
  width: 100%;
}

.hero-nav__mega-column h3 {
  margin: 0;
  color: #271d16;
  font-size: 16px;
  line-height: 1.25;
}

.hero-nav__mega-column a {
  justify-content: flex-start;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  color: #65584b;
  font-size: 14px;
  line-height: 1.38;
  text-decoration: none;
  white-space: normal;
}

.hero-nav__mega-column a:hover {
  background: transparent;
  color: #f08722;
}

.hero-stage {
  position: relative;
  padding: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 190, 121, 0.2), transparent 26%),
    radial-gradient(circle at 78% 72%, rgba(36, 90, 58, 0.1), transparent 28%),
    linear-gradient(180deg, #fffaf4 0%, #f7ebde 100%);
}

.hero-stage__slider {
  position: relative;
}

.hero-stage__track {
  position: relative;
  min-height: 740px;
}

.hero-stage__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  overflow: hidden;
}

.hero-stage__slide::before,
.hero-stage__slide::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-stage__slide::before {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 205, 154, 0.36), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.95), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 237, 221, 0.95));
}

.hero-stage__slide::after {
  background:
    radial-gradient(circle at 34% 48%, rgba(255, 255, 255, 0.96), transparent 26%),
    radial-gradient(circle at 70% 74%, rgba(255, 255, 255, 0.48), transparent 30%);
}

.hero-stage__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-stage__content {
  position: relative;
  z-index: 1;
  min-height: 700px;
  padding: 0;
  display: grid;
  align-items: stretch;
  gap: 16px;
}

.hero-stage__layout {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-stage__text {
  position: relative;
  z-index: 3;
  max-width: 880px;
  padding: 60px 0 0 0;
  margin-left: 240px;
}

.hero-stage__eyebrow {
  margin: 0 0 18px;
  color: #8f6d2c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-stage h1,
.hero-stage h2 {
  max-width: 17.5ch;
  font-size: clamp(32px, 3.7vw, 52px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}

.hero-stage__lead {
  margin-top: 16px;
  max-width: 22ch;
  font-size: clamp(19px, 1.55vw, 26px);
  line-height: 1.22;
  color: #35241b;
}

.hero-stage__desc {
  margin-top: 12px;
  max-width: 42ch;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(53, 36, 27, 0.9);
}

.hero-stage__checks {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  line-height: 1.28;
}

.hero-stage__checks li {
  position: relative;
  padding-left: 38px;
  color: #403028;
}

.hero-stage__checks li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: -1px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #9b9556, #70672b);
  color: #fff9ef;
  font-size: 14px;
  font-weight: 700;
}

.hero-stage__checks strong {
  color: #211612;
}

.hero-stage__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.hero-stage__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 30px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
}

.hero-stage__button--accent {
  background: linear-gradient(180deg, #ffa64a, #f07f1d);
  color: #fff;
  box-shadow: 0 16px 28px rgba(217, 124, 37, 0.28);
}

.hero-stage__button--light {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(247, 238, 228, 0.96));
  border: 1px solid rgba(129, 98, 53, 0.1);
  color: #473126;
  box-shadow: 0 14px 30px rgba(84, 58, 35, 0.09);
}

.hero-stage__visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 26%;
}

.hero-stage__bg-picture {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-stage__bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-stage__frame {
  position: relative;
  min-height: 100%;
  height: 100%;
  isolation: isolate;
}

.hero-stage__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 249, 241, 0.98) 0%, rgba(255, 249, 241, 0.9) 5%, rgba(255, 249, 241, 0.66) 12%, rgba(255, 249, 241, 0.34) 20%, rgba(255, 249, 241, 0.12) 28%, rgba(255, 249, 241, 0.02) 36%, transparent 46%),
    radial-gradient(circle at 12% 50%, rgba(255, 255, 255, 0.56), transparent 24%);
}

.hero-stage__metrics {
  display: grid;
  margin-top: -6px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  width: calc(100% - 420px);
  margin-left: 220px;
  margin-right: 200px;
  min-height: 84px;
  padding: 8px 12px;
  border: 1px solid rgba(116, 88, 58, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(250, 242, 230, 0.9));
  box-shadow: 0 18px 40px rgba(28, 19, 13, 0.1);
  backdrop-filter: blur(14px);
}

.hero-stage__metric {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  padding: 8px 14px;
  border-right: 1px solid rgba(84, 58, 35, 0.1);
  color: #4a372d;
  font-size: 13px;
  line-height: 1.2;
}

.hero-stage__metric:last-child {
  border-right: 0;
}

.hero-stage__metric span:last-child {
  display: block;
  max-width: 170px;
}

.hero-stage__metric:last-child span:last-child {
  max-width: 220px;
}

.hero-stage__icon {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
}

.hero-stage__icon--map::before,
.hero-stage__icon--clock::before,
.hero-stage__icon--percent::before,
.hero-stage__icon--box::before {
  content: "";
  position: absolute;
}

.hero-stage__icon--map::before {
  inset: 7px 5px;
  border-radius: 18px 10px 20px 10px;
  background:
    linear-gradient(90deg, transparent 0 26%, rgba(127, 104, 54, 0.18) 26% 32%, transparent 32% 60%, rgba(127, 104, 54, 0.18) 60% 66%, transparent 66%),
    linear-gradient(180deg, #cab574, #9d8b4f);
  clip-path: polygon(0 22%, 25% 8%, 52% 24%, 75% 12%, 100% 28%, 100% 78%, 74% 92%, 48% 74%, 24% 88%, 0 72%);
}

.hero-stage__icon--clock::before {
  inset: 6px;
  border: 2px solid #9d8b4f;
  border-radius: 50%;
}

.hero-stage__icon--clock::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 12px;
  width: 2px;
  height: 12px;
  background: #9d8b4f;
  transform-origin: bottom center;
  transform: rotate(20deg);
  box-shadow: -5px 7px 0 -1px #9d8b4f;
}

.hero-stage__icon--percent::before {
  left: 2px;
  top: 7px;
  color: #9d8b4f;
  content: "0%";
  font-size: 32px;
  font-weight: 700;
}

.hero-stage__icon--box::before {
  left: 7px;
  top: 10px;
  width: 24px;
  height: 20px;
  background:
    linear-gradient(135deg, transparent 0 49%, #b18845 49% 51%, transparent 51%),
    linear-gradient(180deg, #d7b16a, #b47f35);
  border-radius: 4px;
  box-shadow:
    inset 0 0 0 2px rgba(137, 97, 43, 0.16),
    6px -6px 0 -2px rgba(190, 144, 74, 0.35);
}

.hero-stage__controls {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-stage__arrow {
  position: absolute;
  top: 46%;
  right: 14px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(29, 19, 16, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  pointer-events: auto;
  transform: translateY(-50%);
}

.hero-stage__arrow::before {
  content: "\2192";
  font-size: 18px;
}

.hero-stage__arrow--prev {
  left: 14px;
  right: auto;
}

.hero-stage__arrow--prev::before {
  content: "\2190";
}

.hero-stage__dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  pointer-events: auto;
}

.hero-stage__dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  position: relative;
}
.hero-stage__dots button::after {
  content: '';
  position: absolute;
  inset: -18px;
}

.hero-stage__dots button.is-active {
  background: #fff;
}

@media (max-width: 980px) {
  .hero-header__main,
  .hero-nav__links,
  .hero-stage__content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-header__main {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .hero-nav__links {
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .hero-nav__mega-panel {
    left: 40px;
    right: 40px;
  }

  .hero-nav__mega-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-stage__track,
  .hero-stage__content {
    min-height: 860px;
  }

  .hero-stage__layout {
    min-height: 760px;
  }

  .hero-stage__text {
    max-width: 520px;
    margin-left: 120px;
  }

  .hero-stage__visual {
    left: 0;
    right: 0;
  }

  .hero-stage__frame::before {
    background:
      linear-gradient(180deg, rgba(255, 249, 241, 0.98) 0%, rgba(255, 249, 241, 0.84) 22%, rgba(255, 249, 241, 0.38) 40%, rgba(255, 249, 241, 0.06) 56%, transparent 70%);
  }

  .hero-stage__metrics {
    width: calc(100% - 200px);
    margin-left: 100px;
    margin-right: 100px;
  }

  .product-shelf__track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .shop-card__visual {
    min-height: 286px;
  }

  .shop-card__specs {
    width: min(176px, 62%);
  }

  .shop-card__cta {
    min-width: 100%;
  }

  .quiz__hero,
  .quiz__split,
  .quiz__split--delivery,
  .quiz__split--final {
    grid-template-columns: 1fr;
  }

  .section--quiz {
    padding-top: 28px;
    padding-bottom: 20px;
  }

  .quiz__choices--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quiz__choices--duo,
  .quiz__fields--two,
  .quiz__fields--three {
    grid-template-columns: 1fr;
  }

  .quiz__panel {
    padding: 28px 24px 30px;
  }

  .quiz__hero h3 {
    font-size: 26px;
  }

  .quiz__title {
    font-size: 24px;
  }

  .material-block {
    padding: 26px 20px 22px;
  }

  .client-projects__title {
    font-size: 28px;
  }

  .section--projects {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .client-projects {
    padding: 0 20px;
  }

  .client-projects__shell {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .client-projects__arrow {
    display: none;
  }

  .client-projects__track {
    gap: 18px;
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .material-block__title {
    font-size: 28px;
  }

  .material-block__layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "left"
      "rightTop"
      "bottom"
      "leftList"
      "rightList";
  }

  .material-visual {
    min-height: 420px;
  }

  .material-visual__line {
    display: none;
  }

  .material-point--left,
  .material-point--right-top,
  .material-point--bottom,
  .material-list--right {
    padding-top: 0;
  }

  .material-point--bottom {
    max-width: none;
  }

  .install-block__content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .install-block__copy {
    padding: 0 20px 12px;
  }

  .install-block__title {
    font-size: 28px;
  }

  .install-block__media {
    min-height: 360px;
  }

  .install-block__media img {
    right: 0;
    width: 100%;
  }

  .section--director {
    padding-top: 28px;
  }

  .section--reviews {
    padding-top: 26px;
    padding-bottom: 20px;
  }

  .reviews-block {
    padding: 0 20px;
  }

  .reviews-block__title {
    font-size: 28px;
  }

  .reviews-block__shell {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .reviews-block__arrow {
    display: none;
  }

  .reviews-block__track {
    gap: 18px;
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .reviews-slide {
    gap: 18px;
  }

  .director-block {
    padding: 24px 20px 0;
  }

  .director-block__content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .director-block__copy {
    padding: 4px 0 10px;
  }

  .director-block__title {
    font-size: 28px;
  }

  .director-block__visual {
    min-height: 420px;
  }

  .director-block__portrait {
    width: min(100%, 520px);
    min-height: 430px;
  }

  .director-block__photo {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .more-info {
    padding: 22px 20px 0;
  }

  .more-info[open] {
    padding-bottom: 22px;
  }

  .more-info__toggle {
    min-width: 0;
    width: 100%;
    min-height: 48px;
    padding: 12px 20px;
    font-size: 15px;
  }

  .more-info__card {
    padding: 28px 24px 30px;
  }

  .more-info__title {
    font-size: 28px;
  }

  .site-footer {
    padding: 0;
  }

  .site-footer__inner {
    padding: 22px 20px 18px;
  }

  .site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
  }

  .site-footer__contacts-column {
    padding-left: 0;
  }

  .site-footer__intro h2 {
    font-size: 28px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__panel,
  .site-footer__map,
  .site-footer__map iframe {
    min-height: 300px;
  }
}

@media (max-width: 640px) and (hover: none), (max-width: 640px) and (pointer: coarse) {
  .shell {
    width: 100%;
  }

  .hero-header__main,
  .hero-nav__links,
  .hero-stage__content,
  .topbar,
  .features,
  .section {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-logo__image {
      width: 164px;
    }

  .hero-logo__subtitle {
      font-size: 11px;
    }

  .hero-header__phone {
    font-size: 18px;
  }

  .hero-header__main {
    gap: 12px;
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .hero-header__contacts {
    width: 100%;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-header__call {
    min-height: 42px;
    padding: 0 16px;
    font-size: 13px;
    margin-left: auto;
  }

  .hero-header__phone {
    font-size: 17px;
    line-height: 1.2;
  }

  .hero-nav__links {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 14px 12px;
    scrollbar-width: none;
  }

  .hero-nav__links::-webkit-scrollbar {
    display: none;
  }

  .hero-nav__links a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .hero-nav__mega {
    position: static;
    flex: 0 0 auto;
  }

  .hero-nav__mega-trigger {
    flex: 0 0 auto;
  }

  .hero-nav__mega-panel {
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    padding: 18px 16px 20px;
    border-radius: 22px;
  }

  .hero-nav__mega-title {
    font-size: 22px;
  }

  .hero-nav__mega-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
  }

  .hero-nav__mega-column h3 {
    font-size: 15px;
  }

  .hero-nav__mega-column a {
    font-size: 14px;
  }

  .hero-stage__track,
  .hero-stage__content {
    min-height: 660px;
  }

  .hero-stage__layout {
    min-height: 560px;
  }

  .hero-stage h1,
  .hero-stage h2 {
    font-size: 31px;
  }

  .hero-stage__text {
    margin-left: 0;
  }

  .hero-stage__eyebrow,
  .hero-stage__desc {
    display: none;
  }

  .hero-stage__lead {
    font-size: 17px;
    max-width: 19ch;
  }

  .hero-stage__checks {
    margin-top: 12px;
    font-size: 14px;
  }

  .hero-stage__checks li:nth-child(n + 3) {
    display: none;
  }

  .hero-stage__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    max-width: 320px;
  }

  .hero-stage__button {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    font-size: 14px;
  }

  .hero-stage__metrics {
    grid-template-columns: 1fr;
    row-gap: 6px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-stage__metric {
    min-height: 48px;
    padding: 10px 12px;
  }

  .hero-stage__metric:nth-child(n + 3) {
    display: none;
  }

  .hero-stage__metric:nth-child(2n) {
    border-right: 0;
  }

  .features {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .feature {
    min-height: 90px;
    padding: 12px 10px;
  }

  .feature__text {
    font-size: 12px;
    line-height: 1.25;
  }

  .section__title {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .product-shelf {
    padding-top: 10px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .product-shelf__head {
    justify-items: start;
    text-align: left;
    margin-bottom: 12px;
  }

  .product-shelf__nav {
    display: none;
  }

  .product-shelf__track {
    grid-auto-columns: 100%;
    gap: 14px;
  }

  .shop-card__visual {
    min-height: 254px;
    padding: 14px;
  }

  .shop-card__badge {
    top: 14px;
    right: 14px;
    font-size: 11px;
  }

  .shop-card__specs {
    display: none;
  }

  .shop-card__spec strong {
    font-size: 15px;
  }

  .shop-card__spec span,
  .shop-card__colors-title,
  .shop-card__color-name {
    font-size: 12px;
  }

  .shop-card h3,
  .shop-card__price {
    font-size: 16px;
  }

  .shop-card h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .shop-card__body {
    padding: 16px 16px 20px;
  }

  .shop-card__colors {
    gap: 8px;
  }

  .shop-card__cta {
    min-height: 48px;
    font-size: 15px;
    min-width: 100%;
  }

  .quiz {
    gap: 16px;
  }

  .section--quiz {
    padding-top: 22px;
    padding-bottom: 18px;
  }

  .quiz__hero h3 {
    font-size: 22px;
  }

  .quiz__hero p,
  .quiz__bonus,
  .quiz__subtitle,
  .quiz__list {
    font-size: 15px;
  }

  .quiz__hero p {
    max-width: 340px;
    text-align: center;
  }

  .quiz__bonus {
    padding: 12px 14px;
    border-radius: 16px;
  }

  .quiz__panel {
    padding: 20px 16px 22px;
    border-radius: 18px;
  }

  .quiz__progress {
    gap: 8px;
    margin-bottom: 24px;
  }

  .quiz__progress span {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .quiz__title {
    font-size: 20px;
  }

  .client-projects__title {
    font-size: 22px;
  }

  .section--projects {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .client-projects {
    padding: 0 14px;
  }

  .client-projects__track {
    grid-auto-columns: 100%;
    gap: 14px;
  }

  .client-project__overlay {
    padding: 18px 14px 16px;
  }

  .client-project__overlay h3 {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .client-project__badge {
    font-size: 11px;
  }

  .quiz__choices--grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .quiz-card {
    padding: 10px 10px 14px;
  }

  .quiz-card img {
    height: 82px;
  }

  .quiz-card span,
  .quiz-check,
  .quiz-field span {
    font-size: 14px;
  }

  .quiz-field input,
  .quiz-field textarea {
    min-height: 50px;
    font-size: 15px;
  }

  .quiz__media {
    min-height: 220px;
  }

  .quiz__offer strong {
    font-size: 28px;
  }

  .quiz-btn {
    min-width: 148px;
    min-height: 52px;
    font-size: 15px;
  }

  .quiz__actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .material-block {
    padding: 20px 14px 18px;
  }

  .material-block__title {
    font-size: 22px;
  }

  .product-shelf__lead,
  .material-block__lead,
  .client-projects__lead {
    font-size: 14px;
    line-height: 1.55;
  }

  .product-shelf__lead,
  .client-projects__lead {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .comparison-block,
  .purchase-block {
    padding: 22px 16px 20px;
    border-radius: 22px;
  }

  .comparison-block__title,
  .purchase-block__title {
    font-size: 22px;
  }

  .comparison-block__lead,
  .purchase-block__lead,
  .comparison-card__list li,
  .comparison-block__footer p,
  .purchase-step p,
  .purchase-block__notes span {
    font-size: 14px;
    line-height: 1.55;
  }

  .comparison-block__lead,
  .purchase-block__lead,
  .comparison-block__footer p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .comparison-block__grid,
  .purchase-block__steps {
    grid-template-columns: 1fr;
  }

  .comparison-card,
  .purchase-step {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .comparison-card h3,
  .purchase-step h3 {
    font-size: 18px;
  }

  .comparison-block__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .comparison-block__cta {
    min-width: 100%;
    min-height: 48px;
    font-size: 15px;
  }

  .purchase-block__notes {
    gap: 8px;
  }

  .purchase-block__notes span {
    width: 100%;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
  }

  .material-block__lead {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .material-visual {
    min-height: 280px;
  }

  .material-visual__board img {
    max-width: 240px;
  }

  .material-point__index {
    font-size: 42px;
  }

  .material-point__body h3 {
    font-size: 16px;
  }

  .material-point__body p,
  .material-list__item {
    font-size: 13px;
    line-height: 1.45;
  }

  .material-list__item:nth-child(n + 3) {
    display: none;
  }

  .install-block__title {
    font-size: 22px;
  }

  .install-block__copy p {
    font-size: 14px;
  }

  .install-block__copy p:last-of-type {
    display: none;
  }

  .install-block__cta {
    min-width: 100%;
    min-height: 48px;
    font-size: 15px;
  }

  .install-block__media {
    min-height: 220px;
  }

  .section--director {
    padding-top: 22px;
  }

  .section--reviews {
    padding-top: 22px;
    padding-bottom: 16px;
  }

  .reviews-block {
    padding: 0 14px;
  }

  .reviews-block__title {
    font-size: 22px;
  }

  .reviews-block__lead,
  .review-card p {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .reviews-block__track {
    grid-auto-columns: 100%;
    gap: 14px;
  }

  .reviews-slide {
    gap: 14px;
  }

  .review-card {
    padding: 18px 16px;
    border-radius: 14px;
  }

  .review-card__meta strong {
    font-size: 16px;
  }

  .review-card__meta span {
    font-size: 14px;
  }

  .review-card__more {
    font-size: 13px;
  }

  .director-block {
    padding: 20px 14px 0;
  }

  .director-block__title {
    font-size: 22px;
  }

  .director-block__lead,
  .director-block__person span {
    font-size: 14px;
  }

  .director-block__lead {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .director-block__person strong {
    font-size: 16px;
  }

  .director-block__person span {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .director-block__actions {
    gap: 10px;
  }

  .director-block__cta {
    min-width: 100%;
    min-height: 48px;
    font-size: 15px;
  }

  .director-block__visual {
    min-height: 320px;
  }

  .director-block__portrait {
    min-height: 340px;
    padding: 0;
  }

  .director-block__photo {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .director-block__portrait::before {
    content: none;
  }

  .director-block__badge {
    top: 18px;
    width: 120px;
  }

  .director-block__meta {
    width: calc(100% - 36px);
    bottom: 20px;
    padding: 14px 16px;
  }

  .director-block__meta strong {
    font-size: 20px;
  }

  .install-block__play {
    width: 48px;
    height: 48px;
  }

  .more-info {
    padding: 18px 14px 0;
    border-radius: 22px;
  }

  .more-info[open] {
    padding-bottom: 18px;
  }

  .more-info__toggle {
    min-height: 46px;
    padding: 10px 16px;
    font-size: 14px;
  }

  .more-info__card {
    padding: 22px 16px 24px;
    border-radius: 20px;
  }

  .more-info__title {
    font-size: 22px;
  }

  .more-info__subtitle,
  .more-info__heading:last-of-type,
  .more-info__heading:last-of-type + p {
    display: none;
  }

  .more-info__subtitle,
  .more-info__heading,
  .more-info__card p {
    font-size: 14px;
  }

  .more-info__card p {
    text-align: left;
  }

  .site-footer {
    padding: 0;
    border-radius: 0;
  }

  .site-footer__inner {
    padding: 18px 14px 16px;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 18px 14px;
  }

  .site-footer__brand,
  .site-footer__contacts-column {
    grid-column: 1 / -1;
  }

  .site-footer__top > .site-footer__column:nth-of-type(3) {
    display: none;
  }

  .site-footer__secondary {
    display: none;
  }

  .site-footer__brand-logo {
    width: 160px;
  }

  .site-footer__brand-text,
  .site-footer__brand-meta,
  .site-footer__column a,
  .site-footer__contacts-column p {
    font-size: 13px;
  }

  .site-footer__column h3,
  .site-footer__contacts-column h3 {
    font-size: 14px;
  }

  .site-footer__column {
    gap: 8px;
  }

  .site-footer__column a:nth-child(n + 7) {
    display: none;
  }

  .site-footer__intro h2 {
    font-size: 22px;
  }

  .site-footer__intro p,
  .site-footer__brand-text,
  .site-footer__brand-meta,
  .site-footer__column a,
  .site-footer__contacts-column p,
  .site-footer__text,
  .site-footer__menu a,
  .site-footer__legal-row span,
  .site-footer__legal-row strong,
  .site-footer__bottom {
    font-size: 13px;
  }

  .site-footer__value {
    font-size: 18px;
  }

  .site-footer__contact-link {
    font-size: 16px;
  }

  .site-footer__legal-row,
  .site-footer__bottom {
    flex-direction: column;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero-header__main {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero-logo__image {
    width: 148px;
  }

  .hero-logo__subtitle {
    font-size: 10px;
  }

  .hero-header__contacts {
    align-items: flex-start;
  }

  .hero-header__call,
  .hero-header__phone,
  .quiz-btn {
    width: 100%;
  }

  .product-shelf,
  .client-projects,
  .reviews-block {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-nav__mega-panel {
    left: 0;
    right: auto;
    width: min(calc(100vw - 24px), max-content);
    max-width: calc(100vw - 24px);
    padding: 16px 14px 18px;
    overflow-x: auto;
  }

  .hero-nav__mega-grid {
    grid-template-columns: repeat(3, minmax(220px, 240px));
    width: max-content;
    min-width: 100%;
    gap: 14px 16px;
  }

  .quiz__panel,
  .comparison-block,
  .purchase-block,
  .more-info__card {
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }
}



.section--comparison,
.section--purchase {
  position: relative;
  isolation: isolate;
}

.section--comparison::before,
.section--purchase::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  z-index: -1;
}

.section--comparison::before {
  background:
    radial-gradient(circle at top left, rgba(248, 170, 73, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(252, 246, 236, 0.96));
}

.section--purchase::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(242, 179, 104, 0.18), transparent 26%),
    radial-gradient(circle at 88% 14%, rgba(218, 192, 150, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(250, 243, 232, 0.96));
}
.section--comparison::before {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(252, 246, 236, 0.96));
}

.section--purchase::before {
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(250, 243, 232, 0.96));
}
.purchase-block,
.comparison-block {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.purchase-block::before,
.purchase-block::after {
  content: none;
}
/* ═══════════════════════════════════════════════════════════════════════════
   404 PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.error404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 60px 24px;
  text-align: center;
}
.error404__inner { max-width: 480px; }
.error404__code {
  font-size: clamp(80px, 20vw, 140px);
  font-weight: 800;
  line-height: 1;
  color: #f0ebe2;
  margin-bottom: 8px;
}
.error404__title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: #1a1510;
  margin: 0 0 14px;
}
.error404__text {
  font-size: 16px;
  color: #847b6f;
  margin: 0 0 32px;
}
.error404__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FAQ BLOCK
   ═══════════════════════════════════════════════════════════════════════════ */
.section--faq {
  padding-top: 52px;
  padding-bottom: 52px;
}

.faq-block {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-block__head {
  margin-bottom: 36px;
  text-align: center;
}

.faq-block__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #c8853a;
  margin-bottom: 10px;
}

.faq-block__title {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
  color: #17110d;
}

.faq-block__lead {
  margin: 0;
  font-size: 16px;
  color: #665d54;
}

.faq-item {
  border-bottom: 1px solid #e8e2d8;
}

.faq-item:first-child {
  border-top: 1px solid #e8e2d8;
}

.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 600;
  color: #1a1510;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color .15s;
}

.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q > span:first-child { flex: 1; }
.faq-item:hover .faq-item__q,
details[open] .faq-item__q { color: #c8853a; }

.faq-item__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
  transition: transform .25s ease;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  border-radius: 1px;
  transition: transform .25s ease, opacity .25s ease;
}

.faq-item__icon::before {
  width: 10px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  width: 2px;
  height: 10px;
  transform: translate(-50%, -50%);
}

details[open] .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__a {
  padding: 0 32px 20px 0;
}

.faq-item__a p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #4a3f35;
}

@media (max-width: 960px) {
  .faq-block { padding: 0 20px; }
  .faq-block__title { font-size: 26px; }
}

@media (max-width: 640px) {
  .section--faq { padding-top: 32px; padding-bottom: 32px; }
  .faq-block__title { font-size: 22px; }
  .faq-item__q { font-size: 14px; padding: 14px 0; }
  .faq-item__a p { font-size: 14px; }
  .faq-item__a { padding-right: 0; }
}

/* ── Legal pages ─────────────────────────────────────────────────────────── */
.section--legal {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 32px 80px;
}

.legal-page__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #8b7b6c;
  margin-bottom: 32px;
}

.legal-page__breadcrumbs a {
  color: #8b7b6c;
  text-decoration: none;
}

.legal-page__breadcrumbs a:hover { color: #ea7d16; }

.legal-page__header {
  border-bottom: 2px solid rgba(97, 74, 46, 0.12);
  padding-bottom: 24px;
  margin-bottom: 40px;
}

.legal-page__header h1 {
  font-size: 36px;
  font-weight: 800;
  color: #1a1510;
  margin: 0 0 8px;
  line-height: 1.2;
}

.legal-page__updated {
  font-size: 14px;
  color: #8b7b6c;
  margin: 0;
}

.legal-page__section {
  margin-bottom: 36px;
}

.legal-page__section h2 {
  font-size: 20px;
  font-weight: 700;
  color: #302721;
  margin: 0 0 14px;
}

.legal-page__section p {
  font-size: 16px;
  line-height: 1.75;
  color: #4a3f35;
  margin: 0 0 12px;
}

.legal-page__section ul {
  margin: 0 0 12px;
  padding-left: 20px;
}

.legal-page__section ul li {
  font-size: 16px;
  line-height: 1.75;
  color: #4a3f35;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .section--legal { padding: 24px 20px 60px; }
  .legal-page__header h1 { font-size: 26px; }
  .legal-page__section h2 { font-size: 17px; }
  .legal-page__section p,
  .legal-page__section ul li { font-size: 15px; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   О КОМПАНИИ  —  premium redesign
   ══════════════════════════════════════════════════════════════════════════════ */
.section--about {
  padding: 0 0 80px;
  max-width: 100%;
  margin: 0;
}

/* ── About page inner wrapper ─────────────────────────────────────────────── */
.about-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

/* Hero ─────────────────────────────────────────────────────────────────────── */
.about-hero {
  position: relative;
  background: linear-gradient(135deg, #2d1f14 0%, #4a2e18 60%, #3a2510 100%);
  border-radius: 0 0 32px 32px;
  padding: 64px 48px 60px;
  margin: 0 -24px 64px;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(176,125,78,.18) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #e8b87a;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(232,184,122,.25);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.about-hero h1 {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.15;
  max-width: 620px;
  position: relative;
}

.about-hero__lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  margin: 0;
  max-width: 580px;
  position: relative;
}

/* Numbers strip ─────────────────────────────────────────────────────────────── */
.about-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 64px;
  border: 1px solid #ede6de;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(42,28,14,.07);
}

.about-numbers__item {
  padding: 28px 20px 24px;
  text-align: center;
  border-right: 1px solid #ede6de;
  position: relative;
}

.about-numbers__item:last-child { border-right: none; }

.about-numbers__item::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 3px;
  background: #b07d4e;
  border-radius: 0 0 4px 4px;
}

.about-numbers__item strong {
  display: block;
  font-size: 38px;
  font-weight: 900;
  color: #2d1f14;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.about-numbers__item span {
  font-size: 13px;
  color: #7a6a5b;
  line-height: 1.4;
}

/* Sections ─────────────────────────────────────────────────────────────────── */
.about-section {
  margin-bottom: 56px;
}

.about-section h2 {
  font-size: 24px;
  font-weight: 800;
  color: #1a1510;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-section h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 24px;
  background: #b07d4e;
  border-radius: 4px;
  flex-shrink: 0;
}

.about-section__body {
  padding-left: 16px;
  border-left: 1px solid #ede6de;
}

.about-section__body p {
  font-size: 16px;
  line-height: 1.8;
  color: #4a3f35;
  margin: 0 0 14px;
}

.about-section__body p:last-child { margin-bottom: 0; }

/* Advantages ────────────────────────────────────────────────────────────────── */
.about-advantages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.about-advantages__item {
  background: #fff;
  border: 1px solid #ede6de;
  border-radius: 16px;
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
  position: relative;
  overflow: hidden;
}

.about-advantages__item::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #b07d4e, #d4a574);
  border-radius: 16px 16px 0 0;
}

.about-advantages__item:hover {
  box-shadow: 0 8px 32px rgba(42,28,14,.1);
  transform: translateY(-2px);
}

.about-advantages__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #fdf0e4, #f5e3cc);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b07d4e;
  margin-bottom: 16px;
}

.about-advantages__icon svg {
  width: 26px;
  height: 26px;
}

.about-advantages__item h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1510;
  margin: 0 0 8px;
}

.about-advantages__item p {
  font-size: 14px;
  line-height: 1.7;
  color: #5a4d42;
  margin: 0;
}

/* Certificates ──────────────────────────────────────────────────────────────── */
.about-certs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.about-certs__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fdf8f3;
  border: 1px solid #e8d9c8;
  border-radius: 12px;
  padding: 18px 18px;
  transition: border-color .18s;
}

.about-certs__item:hover { border-color: #b07d4e; }

.about-certs__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b07d4e;
  box-shadow: 0 2px 8px rgba(176,125,78,.15);
}

.about-certs__icon svg {
  width: 20px;
  height: 20px;
}

.about-certs__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-certs__body strong {
  font-size: 14px;
  font-weight: 700;
  color: #1a1510;
}

.about-certs__body span {
  font-size: 13px;
  line-height: 1.55;
  color: #7a6a5b;
}

/* CTA block ──────────────────────────────────────────────────────────────────── */
.about-cta-section {
  background: linear-gradient(135deg, #2d1f14 0%, #4a2e18 100%);
  border-radius: 20px;
  padding: 48px 44px;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}

.about-cta-section::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(176,125,78,.25) 0%, transparent 70%);
  pointer-events: none;
}

.about-cta-block h2 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  border: none;
  padding: 0;
}

.about-cta-block h2::before { display: none; }

.about-cta-block p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  margin: 0 0 24px;
  max-width: 560px;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #b07d4e;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: background .18s, transform .18s, box-shadow .18s;
  box-shadow: 0 4px 16px rgba(176,125,78,.4);
}

.about-cta-btn:hover {
  background: #c48a56;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(176,125,78,.5);
}

/* Requisites ─────────────────────────────────────────────────────────────────── */
.about-section--requisites {
  background: #f7f3ef;
  border-radius: 16px;
  padding: 28px 32px;
}

.about-section--requisites h2 { margin-bottom: 20px; }

.about-requisites {
  display: grid;
  gap: 0;
}

.about-requisites__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid #e4d9cc;
}

.about-requisites__row:last-child { border-bottom: none; }

.about-requisites__row dt {
  font-size: 13px;
  font-weight: 600;
  color: #9a8a7b;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.about-requisites__row dd {
  font-size: 15px;
  color: #1a1510;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 900px) {
  .about-hero { padding: 48px 32px 44px; margin: 0 -24px 48px; }
  .about-hero h1 { font-size: 32px; }
  .about-numbers { grid-template-columns: repeat(2, 1fr); }
  .about-numbers__item:nth-child(2) { border-right: none; }
  .about-numbers__item:nth-child(1),
  .about-numbers__item:nth-child(2) { border-bottom: 1px solid #ede6de; }
  .about-advantages { grid-template-columns: 1fr; }
  .about-certs { grid-template-columns: 1fr; }
  .about-section h2 { font-size: 20px; }
  .about-cta-section { padding: 32px 24px; }
  .about-cta-block h2 { font-size: 20px; }
  .about-requisites__row { grid-template-columns: 1fr; gap: 2px; }
  .about-section--requisites { padding: 20px 20px; }
}

@media (max-width: 640px) {
  .about-hero { padding: 36px 20px 36px; border-radius: 0; margin: 0 -20px 40px; }
  .about-page { padding: 0 20px 40px; }
  .about-hero h1 { font-size: 26px; }
  .about-numbers { grid-template-columns: repeat(2, 1fr); }
  .about-numbers__item strong { font-size: 30px; }
}

/* ── Контакты ──────────────────────────────────────────────────────────────── */
.section--contacts {
  padding: 0;
  max-width: 100%;
}

.contacts-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 72px;
  display: flex;
  flex-direction: column;
}

/* Hero — dark gradient, full-bleed */
.contacts-hero {
  background: linear-gradient(135deg, #2d1f14 0%, #4a2e18 60%, #3a2510 100%);
  padding: 72px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contacts-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 110%, rgba(176,125,78,.22) 0%, transparent 65%);
  pointer-events: none;
}

.contacts-hero__inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contacts-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #e0b882;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(224,184,130,.28);
  border-radius: 40px;
  padding: 6px 18px;
}

.contacts-hero h1 {
  font-size: 46px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.12;
}

.contacts-hero__lead {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  max-width: 520px;
  margin: 0;
}

.contacts-hero__cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  padding: 16px 36px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 60px;
  transition: background .2s, border-color .2s, transform .2s;
}

.contacts-hero__cta-phone:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-2px);
}

.contacts-hero__cta-phone svg {
  color: #e0b882;
  flex-shrink: 0;
}

.contacts-hero__free {
  font-size: 13px;
  color: rgba(255,255,255,.52);
  letter-spacing: .02em;
}

/* Хлебные крошки под героем */
.contacts-page .legal-page__breadcrumbs {
  margin-top: 28px;
  margin-bottom: 36px;
}

/* Общий стиль секций */
.contacts-section {
  margin-bottom: 32px;
}

.contacts-section__title {
  font-size: 22px;
  font-weight: 700;
  color: #302721;
  margin: 0 0 20px;
  padding-left: 14px;
  border-left: 4px solid #b07d4e;
  line-height: 1.25;
}

.contacts-section__lead {
  font-size: 15px;
  color: #6b5d50;
  margin: 0 0 16px;
  line-height: 1.6;
}

.contacts-section__sla {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #3a7a3a;
  background: #f0f7f0;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 20px;
  border-left: 3px solid #4a8a4a;
}

.contacts-section__sla svg {
  flex-shrink: 0;
  color: #4a8a4a;
}

/* Карточки способов связи */
.contacts-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.contacts-card {
  background: #fff;
  border: 1.5px solid #ede6de;
  border-radius: 16px;
  padding: 22px 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}

.contacts-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #b07d4e, #d4a470);
  opacity: 0;
  transition: opacity .2s;
}

.contacts-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  transform: translateY(-3px);
  border-color: #d4bca4;
}

.contacts-card:hover::after { opacity: 1; }

.contacts-card--phone {
  background: linear-gradient(135deg, #2d1f14, #4a2e18);
  border-color: transparent;
}

.contacts-card--phone::after { opacity: 1; }

.contacts-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: #b07d4e;
  background: #fdf6ef;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contacts-card--phone .contacts-card__icon {
  background: rgba(255,255,255,.15);
  color: #e0b882;
}

.contacts-card__icon svg {
  width: 20px;
  height: 20px;
}

.contacts-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.contacts-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8b7b6c;
}

.contacts-card--phone .contacts-card__label { color: rgba(255,255,255,.6); }

.contacts-card__value {
  font-size: 15px;
  font-weight: 700;
  color: #1a1510;
  text-decoration: none;
  word-break: break-word;
  line-height: 1.3;
}

.contacts-card--phone .contacts-card__value {
  color: #fff;
  font-size: 17px;
}

a.contacts-card__value:hover { color: #b07d4e; }
.contacts-card--phone a.contacts-card__value:hover { color: #e0b882; }

.contacts-card__note {
  font-size: 12px;
  color: #8b7b6c;
}

.contacts-card--phone .contacts-card__note { color: rgba(255,255,255,.55); }

.contacts-card__sla {
  font-size: 12px;
  color: #4a8a4a;
  background: #f0f7f0;
  border-radius: 4px;
  padding: 2px 7px;
  align-self: flex-start;
  font-weight: 600;
}

.contacts-card--phone .contacts-card__sla {
  background: rgba(255,255,255,.14);
  color: #a3e6a3;
}

/* Двухколоночный блок: форма + адрес */
.contacts-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
  align-items: start;
}

/* Форма-карточка */
.contacts-section--form {
  background: #fff;
  border: 1.5px solid #ede6de;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  margin-bottom: 0;
}

.contacts-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contacts-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contacts-form__field label {
  font-size: 13px;
  font-weight: 600;
  color: #4a3f35;
  letter-spacing: .02em;
}

.contacts-form__field input,
.contacts-form__field textarea {
  padding: 12px 15px;
  border: 1.5px solid #ddd4c8;
  border-radius: 10px;
  font-size: 15px;
  color: #1a1510;
  background: #faf7f4;
  transition: border-color .15s, background .15s, box-shadow .15s;
  font-family: inherit;
  resize: vertical;
}

.contacts-form__field input:focus,
.contacts-form__field textarea:focus {
  border-color: #b07d4e;
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(176,125,78,.12);
}

.contacts-form__policy {
  font-size: 12.5px;
  color: #6b5d50;
}

.contacts-form__policy label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  line-height: 1.5;
}

.contacts-form__policy a {
  color: #b07d4e;
  text-decoration: underline;
}

.contacts-form__submit {
  padding: 14px 28px;
  background: linear-gradient(135deg, #b07d4e, #c4955e);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity .18s, transform .18s, box-shadow .18s;
  align-self: stretch;
  box-shadow: 0 4px 16px rgba(176,125,78,.35);
}

.contacts-form__submit:hover:not(:disabled) {
  opacity: .9;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(176,125,78,.45);
}
.contacts-form__submit:disabled { opacity: .6; cursor: default; }

.contacts-form__status {
  font-size: 14px;
  min-height: 20px;
  line-height: 1.5;
}

.contacts-form__status--ok    { color: #3a7a3a; }
.contacts-form__status--error { color: #a33; }

/* Адрес-карточка */
.contacts-section--address {
  background: #fff;
  border: 1.5px solid #ede6de;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,.05);
  margin-bottom: 0;
}

.contacts-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.contacts-address__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #302721;
  line-height: 1.55;
}

.contacts-address__row svg {
  flex-shrink: 0;
  color: #b07d4e;
  margin-top: 2px;
}

.contacts-address__note {
  font-size: 13.5px;
  color: #6b5d50;
  margin: 0 0 18px;
  line-height: 1.6;
  padding: 10px 14px;
  background: #fdf6ef;
  border-radius: 8px;
  border-left: 3px solid #b07d4e;
}

/* Карта */
.contacts-map {
  border-radius: 12px;
  overflow: hidden;
  height: 240px;
  border: 1px solid #ede6de;
}

.contacts-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Реквизиты */
.contacts-section--requisites {
  background: #f7f3ef;
  border: 1px solid #e8ddd4;
  border-radius: 20px;
  padding: 32px 32px 24px;
  margin-bottom: 0;
}

.contacts-section--requisites .contacts-section__title {
  border-left-color: #c4956a;
}

.contacts-requisites {
  display: grid;
  gap: 0;
}

.contacts-requisites__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid #e0d6cc;
}

.contacts-requisites__row:last-child {
  border-bottom: none;
}

.contacts-requisites__row dt {
  font-size: 12px;
  font-weight: 700;
  color: #8b7b6c;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding-top: 1px;
}

.contacts-requisites__row dd {
  font-size: 14px;
  color: #302721;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 900px) {
  .contacts-cards { grid-template-columns: repeat(2, 1fr); }
  .contacts-hero h1 { font-size: 36px; }
  .contacts-hero__cta-phone { font-size: 28px; }
}

@media (max-width: 768px) {
  .contacts-hero { padding: 52px 20px 48px; }
  .contacts-hero h1 { font-size: 28px; }
  .contacts-hero__cta-phone { font-size: 22px; padding: 13px 26px; }
  .contacts-hero__free { font-size: 12px; }
  .contacts-page { padding: 0 16px 52px; }
  .contacts-cards { grid-template-columns: 1fr; }
  .contacts-main { grid-template-columns: 1fr; gap: 20px; }
  .contacts-section--form { padding: 22px 18px; }
  .contacts-form__submit { width: 100%; }
  .contacts-section--address { padding: 20px 16px; }
  .contacts-map { height: 220px; }
  .contacts-section--requisites { padding: 22px 18px 16px; }
  .contacts-requisites__row { grid-template-columns: 1fr; gap: 2px; padding: 10px 0; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   БЛОГ — листинг
   ══════════════════════════════════════════════════════════════════════════════ */
.section--blog {
  padding: 0 0 80px;
}

.blog-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 0;
}

/* Hero блога */
.blog-hero {
  padding: 52px 0 44px;
  border-bottom: 1px solid #ede6de;
  margin-bottom: 48px;
}

.blog-hero__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #b07d4e;
  background: #fdf0e4;
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

.blog-hero h1 {
  font-size: 38px;
  font-weight: 800;
  color: #1a1510;
  margin: 0 0 14px;
  line-height: 1.15;
}

.blog-hero__lead {
  font-size: 17px;
  line-height: 1.65;
  color: #5a4d42;
  margin: 0;
  max-width: 640px;
}

/* Сетка статей */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Первая (featured) статья — на всю ширину */
.blog-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 32px rgba(42,28,14,.1);
}

.blog-card--featured .blog-card__img-wrap {
  border-radius: 0;
  aspect-ratio: 16/9;
}

.blog-card--featured .blog-card__body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-card--featured .blog-card__title a {
  font-size: 22px;
}

.blog-card--featured .blog-card__excerpt {
  display: block;
}

/* Обычная карточка */
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ede6de;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}

.blog-card:hover {
  box-shadow: 0 8px 32px rgba(42,28,14,.1);
  transform: translateY(-3px);
}

.blog-card__img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.blog-card:hover .blog-card__img-wrap img {
  transform: scale(1.04);
}

.blog-card__category {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: #b07d4e;
  border-radius: 100px;
  padding: 4px 12px;
  pointer-events: none;
}

.blog-card__body {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #9a8a7b;
  margin-bottom: 10px;
}

.blog-card__read-time {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-card__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 10px;
}

.blog-card__title a {
  color: #1a1510;
  text-decoration: none;
  transition: color .18s;
}

.blog-card__title a:hover { color: #b07d4e; }

.blog-card__excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: #5a4d42;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #b07d4e;
  text-decoration: none;
  transition: gap .18s, color .18s;
  margin-top: auto;
}

.blog-card__link:hover { gap: 10px; color: #9a6b3e; }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card--featured { grid-template-columns: 1fr; }
  .blog-card--featured .blog-card__img-wrap { aspect-ratio: 16/8; }
  .blog-card--featured .blog-card__body { padding: 24px 20px; }
}

@media (max-width: 640px) {
  .blog-hero h1 { font-size: 26px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-page { padding: 0 16px; }
  .blog-hero { padding: 32px 0 28px; margin-bottom: 28px; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   СТАТЬЯ
   ══════════════════════════════════════════════════════════════════════════════ */

/* Hero статьи */
.article-hero {
  position: relative;
  height: 460px;
  overflow: hidden;
}

.article-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,12,5,.75) 0%, rgba(20,12,5,.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
}

.article-hero__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px 40px;
  width: 100%;
}

.article-hero__category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: #b07d4e;
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 14px;
}

.article-hero h1 {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.2;
}

.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.75);
}

/* Секция статьи */
.section--article {
  padding: 40px 0 60px;
}

.article-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Двухколоночный лейаут */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
  margin-top: 32px;
}

/* Тело статьи */
.article-body {
  min-width: 0;
}

.article-body h2 {
  font-size: 22px;
  font-weight: 800;
  color: #1a1510;
  margin: 36px 0 16px;
  padding-left: 14px;
  border-left: 4px solid #b07d4e;
  line-height: 1.3;
}

.article-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #2d1f14;
  margin: 28px 0 12px;
}

.article-body p {
  font-size: 16px;
  line-height: 1.85;
  color: #3a2d24;
  margin: 0 0 16px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 20px;
  padding-left: 24px;
}

.article-body ul li,
.article-body ol li {
  font-size: 16px;
  line-height: 1.75;
  color: #3a2d24;
  margin-bottom: 8px;
}

.article-body ul { list-style: none; padding-left: 0; }
.article-body ul li { padding-left: 20px; position: relative; }
.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  background: #b07d4e;
  border-radius: 50%;
}

/* Изображение в статье */
.article-img {
  margin: 28px 0;
}

.article-img img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

.article-img figcaption {
  font-size: 13px;
  color: #9a8a7b;
  text-align: center;
  margin-top: 8px;
  line-height: 1.5;
}

/* Совет */
.article-tip {
  display: flex;
  gap: 14px;
  background: linear-gradient(135deg, #fdf6ef, #fbeede);
  border: 1px solid #e8d3bc;
  border-left: 4px solid #b07d4e;
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin: 24px 0;
}

.article-tip svg {
  flex-shrink: 0;
  color: #b07d4e;
  margin-top: 2px;
}

.article-tip p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #4a2e18;
}

/* Таблица */
.article-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: 12px;
  border: 1px solid #ede6de;
}

.article-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.article-table-wrap thead {
  background: #f7f3ef;
}

.article-table-wrap th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  color: #1a1510;
  border-bottom: 2px solid #ede6de;
  white-space: nowrap;
}

.article-table-wrap td {
  padding: 11px 16px;
  color: #3a2d24;
  border-bottom: 1px solid #f0e8df;
  vertical-align: top;
}

.article-table-wrap tr:last-child td { border-bottom: none; }
.article-table-wrap tr:hover td { background: #fdf8f3; }

/* Автор */
.article-author {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f7f3ef;
  border-radius: 14px;
  padding: 20px 24px;
  margin-top: 48px;
}

.article-author__img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.article-author__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.article-author__info strong {
  font-size: 15px;
  color: #1a1510;
}

.article-author__info span {
  font-size: 13px;
  color: #7a6a5b;
}

/* Сайдбар */
.article-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.article-sidebar__cta {
  background: linear-gradient(135deg, #2d1f14, #4a2e18);
  border-radius: 16px;
  padding: 28px 24px;
  color: #fff;
}

.article-sidebar__cta-title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}

.article-sidebar__cta-text {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,.75);
  margin: 0 0 20px;
}

.article-sidebar__cta-btn {
  display: block;
  text-align: center;
  background: #b07d4e;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  padding: 12px 20px;
  text-decoration: none;
  transition: background .18s;
  margin-bottom: 10px;
}

.article-sidebar__cta-btn:hover { background: #c48a56; }

.article-sidebar__cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: color .18s;
}

.article-sidebar__cta-phone:hover { color: #fff; }

/* Похожие статьи */
.article-sidebar__related {
  background: #fff;
  border: 1px solid #ede6de;
  border-radius: 16px;
  padding: 20px;
}

.article-sidebar__related h3 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1510;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.article-sidebar__rel-card {
  display: flex;
  gap: 12px;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid #f0e8df;
  transition: opacity .18s;
}

.article-sidebar__rel-card:last-child { border-bottom: none; padding-bottom: 0; }
.article-sidebar__rel-card:first-of-type { padding-top: 0; }
.article-sidebar__rel-card:hover { opacity: .8; }

.article-sidebar__rel-card img {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.article-sidebar__rel-card div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.article-sidebar__rel-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #b07d4e;
}

.article-sidebar__rel-card p {
  font-size: 13px;
  line-height: 1.4;
  color: #2d1f14;
  margin: 0;
}

/* Кнопка «назад» */
.article-back {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #ede6de;
}

.article-back__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #7a6a5b;
  text-decoration: none;
  transition: color .18s, gap .18s;
}

.article-back__link:hover { color: #b07d4e; gap: 12px; }

/* ── Блок «Смотрите в каталоге» внутри статьи ───────────────────────────── */
.article-catalog-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin: 32px 0;
  padding: 20px 24px;
  background: #f5f0ea;
  border-left: 4px solid #b07d4e;
  border-radius: 0 8px 8px 0;
}

.article-catalog-cta > span {
  font-size: 14px;
  font-weight: 600;
  color: #3a2e26;
  white-space: nowrap;
}

.article-catalog-cta__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-catalog-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 20px;
  background: #b07d4e;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s, transform .12s;
  white-space: nowrap;
}

.article-catalog-link:hover {
  background: #8a5e35;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .article-catalog-cta { padding: 16px; flex-direction: column; align-items: flex-start; }
  .article-catalog-link { font-size: 12px; padding: 5px 12px; }
}

@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; gap: 32px; }
  .article-sidebar { position: static; }
  .article-hero { height: 320px; }
  .article-hero h1 { font-size: 24px; }
}

@media (max-width: 640px) {
  .article-hero { height: 240px; }
  .article-hero h1 { font-size: 20px; }
  .article-hero__inner { padding: 0 16px 24px; }
  .article-shell { padding: 0 16px; }
  .article-body h2 { font-size: 18px; }
  .section--article { padding: 24px 0 40px; }
}

/* ── Глобальные мобильные исправления ───────────────────────────────────── */

/* Предотвращаем горизонтальный скролл на любых экранах */
body { overflow-x: hidden; }

/* Overscroll внутри оверлеев — не даёт фону прокручиваться на iOS */
.cb-overlay,
.ep-overlay { overscroll-behavior: contain; }

/* Улучшение тапабельности кнопок на мобильных */
@media (max-width: 640px) {
  .ep-submit,
  .cb-submit,
  .contacts-form__submit {
    min-height: 52px;
    font-size: 16px;
  }

  /* Фиксируем tap-target для Close кнопок */
  .ep-close,
  .cb-modal__close { min-width: 44px; min-height: 44px; }

  /* Floating кнопка не перекрывает нижний navigation bar на iOS */
  .cb-btn { bottom: max(28px, env(safe-area-inset-bottom, 28px)); }
}

/* Очень маленькие экраны (320px — iPhone SE 1) */
@media (max-width: 359px) {
  .hero-header__phone { font-size: 15px; }
  .hero-logo__image { width: 130px; }
  .ep-title { font-size: 17px; }
  .ep-visual__discount { font-size: 32px; }
  .product-buybox__price { font-size: 22px; }
  .contacts-hero__cta-phone { font-size: 18px; padding: 11px 18px; }
}

/* ── Honeypot — поле-ловушка для ботов ───────────────────────────────────── */
.form-trap {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/* ── Невалидный телефонный инпут ─────────────────────────────────────────── */
input[type="tel"].is-invalid {
  border-color: #d93025 !important;
  background: #fff8f7 !important;
  box-shadow: 0 0 0 3px rgba(217,48,37,.12) !important;
  animation: shake .35s ease;
}
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  60%      { transform: translateX(6px); }
  80%      { transform: translateX(-3px); }
}

/* ══════════════════════════════════════════════════════════════════════════════
   Бургер-меню и мобильная навигация
   ══════════════════════════════════════════════════════════════════════════════ */

/* Кнопка бургера скрыта на десктопе */
.hero-burger { display: none; }
.hero-nav__mob-head { display: none; }

@media (max-width: 640px) {

  /* ── Хедер: всё в одну строку (лого, телефон, корзина, бургер) ── */
  .hero-header__main {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 12px !important;
  }
  .hero-logo {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    gap: 8px !important;
  }
  .hero-logo__image {
    height: 44px !important;
    max-width: 180px !important;
    width: auto !important;
    object-fit: contain !important;
  }
  .hero-logo__subtitle { display: none !important; }

  .hero-burger {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    padding: 0;
    margin-left: 2px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    align-self: center;
  }
  .hero-burger__bar {
    display: block;
    height: 2.5px;
    width: 100%;
    background: #271d16;
    border-radius: 2px;
    transition: transform 0.22s ease, opacity 0.15s ease;
    transform-origin: center;
  }
  .hero-burger.is-open .hero-burger__bar:nth-child(1) { transform: translateY(7.75px) rotate(45deg); }
  .hero-burger.is-open .hero-burger__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hero-burger.is-open .hero-burger__bar:nth-child(3) { transform: translateY(-7.75px) rotate(-45deg); }

  /* Контакты — компактные иконки в одну строку */
  .hero-header__contacts {
    order: 0 !important;
    width: auto !important;
    flex: 0 0 auto !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 6px !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
  }

  /* Скрываем текстовый телефон — он становится иконкой ниже */
  .hero-header__phone { display: none !important; }

  /* CTA «Заказать звонок» → круглая зелёная кнопка-иконка телефона */
  .hero-header__call {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background: #25a244 !important;
    border: none !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    text-indent: -9999px !important;
    overflow: hidden !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    box-shadow: 0 2px 10px rgba(37,162,68,.35) !important;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.94.36 1.86.7 2.74a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.88.34 1.8.57 2.74.7A2 2 0 0 1 22 16.92z'/></svg>") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
  }

  /* Корзина — компактная иконка-кнопка */
  .hero-cart-btn {
    order: 1 !important;
    width: 40px !important;
    height: 40px !important;
    flex-shrink: 0 !important;
  }

  /* ── Хедер — sticky, чтобы дропдаун позиционировался под ним ── */
  .hero-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 200 !important;
    background: #fff !important;
    overflow: visible !important;
    box-shadow: 0 2px 12px rgba(39, 29, 22, 0.08) !important;
  }

  /* ── Навигация: дропдаун-карточка (стиль sferabit) ── */
  .hero-nav {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 12px !important;
    right: 12px !important;
    z-index: 9000 !important;
    display: none !important;
    flex-direction: column !important;
    gap: 2px !important;
    padding: 10px 10px 14px !important;
    border-radius: 18px !important;
    background: rgba(255, 250, 244, 0.98) !important;
    border: 1px solid rgba(39, 29, 22, 0.09) !important;
    box-shadow: 0 12px 40px rgba(39, 29, 22, 0.16) !important;
    max-height: calc(100svh - 90px) !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    /* без transform — нет slide-in; просто появляется */
    transform: none !important;
    transition: none !important;
  }
  .hero-nav.is-mobile-open {
    display: flex !important;
  }

  /* ── Заголовок внутри дропдауна — скрываем (карточка без шапки) ── */
  .hero-nav__mob-head {
    display: none !important;
  }

  /* ── Пункты навигации ── */
  .hero-nav__links {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    overflow-x: visible !important;
    gap: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }
  .hero-nav__links > a {
    display: block !important;
    flex: none !important;
    padding: 13px 14px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #271d16 !important;
    border-radius: 12px !important;
    border-bottom: none !important;
    white-space: normal !important;
    min-height: auto !important;
    line-height: 1.4 !important;
  }
  .hero-nav__links > a:hover {
    background: rgba(39, 29, 22, 0.05) !important;
  }

  /* ── Мега-меню: аккордеон внутри карточки ── */
  .hero-nav__mega {
    position: static !important;
    flex: none !important;
    border-bottom: none !important;
  }
  .hero-nav__mega-trigger {
    width: 100% !important;
    padding: 13px 14px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #271d16 !important;
    justify-content: space-between !important;
    min-height: auto !important;
    border-radius: 12px !important;
    background: transparent !important;
    border: none !important;
  }
  .hero-nav__mega-trigger:hover,
  .hero-nav__mega.is-open .hero-nav__mega-trigger {
    background: rgba(39, 29, 22, 0.05) !important;
  }

  /* Субпанель: вложенная карточка */
  .hero-nav__mega-panel {
    position: static !important;
    display: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100% !important;
    max-width: 100% !important;
    border: 1px solid rgba(39, 29, 22, 0.08) !important;
    border-radius: 14px !important;
    box-shadow: none !important;
    background: linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(255, 255, 255, 0.98)) !important;
    padding: 8px !important;
    margin: 4px 0 8px !important;
  }
  .hero-nav__mega.is-open .hero-nav__mega-panel {
    display: block !important;
  }
  /* Подавляем ховер-открытие внутри дропдауна */
  .hero-nav__mega:hover .hero-nav__mega-panel,
  .hero-nav__mega:focus-within .hero-nav__mega-panel {
    display: none !important;
  }
  .hero-nav__mega.is-open .hero-nav__mega-panel {
    display: block !important;
  }

  .hero-nav__mega-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .hero-nav__mega-column h3 {
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.07em !important;
    color: #b0a898 !important;
    padding: 4px 6px 8px !important;
    margin-bottom: 2px !important;
    border-bottom: 1px solid rgba(39, 29, 22, 0.08) !important;
  }
  .hero-nav__mega-column a {
    display: block !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 9px 12px !important;
    min-height: auto !important;
    border-bottom: none !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.82) !important;
    color: #271d16 !important;
    margin-bottom: 4px !important;
  }
  .hero-nav__mega-column a:last-child { margin-bottom: 0 !important; }
  .hero-nav__mega-column a:hover { background: rgba(255, 255, 255, 1) !important; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   Каталог: немедленная видимость без reveal-задержки
   ══════════════════════════════════════════════════════════════════════════════ */
.page--catalog .catalog-layout,
.page--catalog .catalog-main,
.page--catalog .catalog-filters {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ══════════════════════════════════════════════════════════════════════════════
   Мобильные фиксы: блоки-слайдеры и раскладка карточек
   ══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* ── Product shelf: горизонтальный скролл (нативный) ── */
  /* Селектор СТРОГО для product-shelf — иначе ломаются projects/reviews которые тоже имеют класс product-shelf__track */
  .product-shelf > .product-shelf__viewport {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .product-shelf > .product-shelf__viewport::-webkit-scrollbar { display: none; }
  .product-shelf > .product-shelf__viewport > .product-shelf__track {
    grid-auto-columns: calc(100% - 48px) !important;
    gap: 12px !important;
    padding: 0 16px 4px !important;
    transform: none !important;
    transition: none !important;
  }
  .product-shelf__nav { display: none !important; }

  /* ── Блок "Продукция" (catalog-overview): вертикальный стек ── */
  .products {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    height: auto !important;
  }
  .products__stack {
    grid-template-rows: 220px 180px !important;
    gap: 12px !important;
    min-height: auto !important;
    height: auto !important;
  }
  .products__bottom {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 160px !important;
    gap: 12px !important;
    min-height: auto !important;
    height: auto !important;
  }
  /* Главная карточка "Террасная доска": явная высота (слайдер абсолютный) */
  .card--big {
    height: 420px !important;
    min-height: 0 !important;
  }
  /* Тянем градиент к самому низу, чтобы картинка была видна на большей площади */
  .card--big .card__content--bottom {
    padding-top: 220px !important;
    background: linear-gradient(180deg, transparent 40%, rgba(250, 245, 237, 0.97) 72%) !important;
  }
  /* Карточки стека/нижних — заполняют ячейку грида */
  .products__stack .card,
  .products__bottom .card {
    height: 100% !important;
    min-height: 0 !important;
  }

  /* ── Hero-stage: компактная высота, без пустого пространства ── */
  .hero-stage__track,
  .hero-stage__content {
    min-height: 460px !important;
  }
  .hero-stage__content {
    align-content: stretch !important;
    gap: 0 !important;
  }
  .hero-stage__layout {
    min-height: 380px !important;
  }

  /* ── Hero-stage: убираем кремовые полосы, картинка на всю ширину ── */
  .hero-stage {
    background: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .hero-stage__slide::before,
  .hero-stage__slide::after {
    display: none !important;
  }
  .hero-stage__visual {
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
  }
  .hero-stage__bg-img {
    object-position: center center !important;
  }
  /* Без тёмного градиента — текст в светлой полупрозрачной карточке */
  .hero-stage__frame::before {
    background: none !important;
  }

  /* ── Hero-stage: текст в полупрозрачной белой карточке ── */
  .hero-stage__text {
    position: relative !important;
    z-index: 3 !important;
    background: rgba(255, 255, 255, 0.43) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    backdrop-filter: blur(8px) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10) !important;
    padding: 18px 16px 18px !important;
    margin: 14px 12px 0 !important;
    max-width: calc(100% - 24px) !important;
    color: #1a1510 !important;
    text-shadow: none !important;
  }
  .hero-stage h1,
  .hero-stage h2 {
    color: #1a1510 !important;
    text-shadow: none !important;
  }
  .hero-stage__lead,
  .hero-stage__desc {
    color: #2a1f15 !important;
    text-shadow: none !important;
  }
  .hero-stage__eyebrow {
    color: #8f6d2c !important;
    text-shadow: none !important;
  }
  .hero-stage__checks li,
  .hero-stage__checks strong {
    color: #1a1510 !important;
    text-shadow: none !important;
  }
  .hero-stage__checks li::before {
    background: #25a244 !important;
    border-color: #25a244 !important;
  }

  /* ── Hero-stage: стрелки скрыты на мобильной ── */
  .hero-stage__arrow {
    display: none !important;
  }

  /* ── Hero-stage: точки слайдера светлые, поверх картинки ── */
  .hero-stage__dots button {
    background: rgba(255, 255, 255, 0.55) !important;
  }
  .hero-stage__dots button.is-active {
    background: #fff !important;
  }

  /* ── Hero-stage metrics: 2 колонки, без боковых отступов ── */
  .hero-stage__metrics {
    grid-template-columns: repeat(2, 1fr) !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 12px 14px !important;
  }

  /* ── Comparison / Purchase: вертикальный стек ── */
  .comparison-block__grid,
  .purchase-block__steps {
    grid-template-columns: 1fr !important;
  }
  .purchase-block__steps::before { display: none !important; }

  /* ── Install-block: одна колонка, картинка не абсолютная ── */
  .install-block__content {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  .install-block__copy {
    padding: 0 14px !important;
  }
  .install-block__title {
    word-wrap: break-word !important;
  }
  .install-block__media {
    position: static !important;
    min-height: auto !important;
    padding: 0 14px !important;
    margin-top: 14px !important;
  }
  .install-block__media img {
    position: static !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  /* ── Свайпы для слайдеров: оставляем дефолтное поведение ── */
  /* touch-action: pan-y вызывал touchcancel вместо touchend при горизонтальном жесте */

  /* ── Purchase-block: заголовок и подзаголовок по центру ── */
  .section--purchase .purchase-block {
    padding: 22px 14px !important;
  }
  .section--purchase .purchase-block__head {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-items: center !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
  }
  .section--purchase .purchase-block__title,
  .section--purchase .purchase-block__eyebrow,
  .section--purchase .purchase-block__lead {
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
    overflow: visible !important;
  }
  .section--purchase .purchase-block__lead {
    margin-top: 10px !important;
  }

  /* ── Director-block: заголовок → фото → описание → кнопки ── */
  .director-block__content {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: unset !important;
    min-height: auto !important;
    gap: 0 !important;
  }
  /* Распускаем copy в прямые дети content, чтобы переставлять order */
  .director-block__copy {
    display: contents !important;
  }
  .director-block__title {
    order: 1 !important;
    padding: 0 14px !important;
    margin-bottom: 14px !important;
  }
  .director-block__visual {
    order: 2 !important;
    min-height: 360px !important;
    width: 100% !important;
  }
  .director-block__portrait {
    width: 100% !important;
    min-height: 360px !important;
  }
  /* Описание после фото */
  .director-block__lead {
    order: 3 !important;
    padding: 20px 14px 0 !important;
  }
  .director-block__person {
    order: 4 !important;
    padding: 12px 14px 0 !important;
  }
  .director-block__actions {
    order: 5 !important;
    padding: 0 14px !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .director-block__cta,
  .director-block__cta--primary,
  .director-block__cta--ghost {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    display: flex !important;
    box-sizing: border-box !important;
  }

  /* ── Footer grid: одна колонка ── */
  .site-footer__grid {
    grid-template-columns: 1fr !important;
  }
  .site-footer__panel,
  .site-footer__map,
  .site-footer__map iframe {
    min-height: 260px !important;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   Topbar — выбор города (тёмная полоска над хедером)
   ══════════════════════════════════════════════════════════════════════════════ */
.topbar-city {
  position: relative;
  background: #1f1612;
  color: #f3e8d6;
  font-size: 13px;
  z-index: 50;
}
.topbar-city__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: inherit;
  font: inherit;
  padding: 8px 16px 8px 236px;
  cursor: pointer;
  line-height: 1.2;
}
.topbar-city__btn strong {
  color: #fff;
  font-weight: 600;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
  padding-bottom: 1px;
}
.topbar-city__caret {
  transition: transform 0.18s ease;
}
.topbar-city.is-open .topbar-city__caret {
  transform: rotate(180deg);
}

.topbar-city__dropdown {
  position: absolute;
  top: 100%;
  left: 8px;
  z-index: 60;
  background: #fff;
  color: #2a1f10;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  padding: 6px 0;
  min-width: 220px;
  max-height: 60vh;
  overflow-y: auto;
  display: none;
}
.topbar-city__dropdown:not([hidden]) {
  display: block;
}
.topbar-city__item {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  font: inherit;
  font-size: 14px;
  padding: 8px 16px;
  cursor: pointer;
  color: inherit;
}
.topbar-city__item:hover,
.topbar-city__item:focus {
  background: #fdf3e3;
}
.topbar-city__item.is-active {
  color: #c8900a;
  font-weight: 600;
}

@media (max-width: 980px) {
  .topbar-city__btn {
    padding-left: 18px;
  }
}

@media (max-width: 640px) {
  .topbar-city {
    font-size: 12.5px;
  }
  .topbar-city__btn {
    padding: 7px 14px 7px 12px;
  }
  .topbar-city__dropdown {
    left: 6px;
    right: 6px;
    min-width: 0;
  }
}
