:root {
  --bg: #f7f2ea;
  --bg-soft: #fdfaf4;
  --card: rgba(255, 255, 255, 0.92);
  --line: rgba(78, 67, 47, 0.12);
  --text: #2c251b;
  --muted: #6f6556;
  --green: #365c30;
  --green-dark: #43502b;
  --gold: #e2b34f;
  --gold-dark: #efbd4d;
  --shadow: 0 0 0px rgba(255, 255, 255, 1), 1px 1px 4px rgba(0, 0, 0, 0.85);
  --radius: 24px;
  --container: 1080px;
  --border: #bfa795;
  --calculator-overlap: clamp(48px, 8vw, 48px);
  --offer-footer-overlap: clamp(28px, 10vw, 44px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Times New Roman", serif;

  background-image: url("image/body-bg.png");
  background-size: contain;
  background-position: center;
  background-repeat: repeat-y;
  position: relative;
  overflow-x: hidden;
  cursor: default;
}

input,
textarea {
  cursor: text;
}

select {
  cursor: pointer;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("image/full-bg.png") repeat;
  overflow-x: hidden;
}

/* Центральная текстура только для нужных зон main (без steps и до footer) */
.main-bg-zone {
  position: relative;
  z-index: 2;
}

.main-bg-zone::before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 1142px);
  z-index: -1;
  pointer-events: none;
  background-image: url("image/body-bg.png");
  background-repeat: repeat-y;
  background-position: center;
  background-size: 100% auto;
}

.main-bg-zone.bg-mid { 
  z-index: 1;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.green {
  color: #365c30;
}

/*
    ═══════════════════════════════════════════════════════════════
    LAYOUT
    ═══════════════════════════════════════════════════════════════
 */
.container {
  width: min(calc(100%), var(--container));
  margin: 0 auto;
}

.section {
  padding: 20px 0;
}

.soft-section {
  background: rgba(0, 0, 0, 0.05);
}

.soft-section .section-heading {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(#786856 60%, #bca48e 100%);
  color: #fff;
}

.center {
  text-align: center;
}

.section-heading {
  margin: 0 0 30px;
}

.section-heading h2,
.hero h1,
.offer__content h2 {
  margin: 0;
  line-height: 1.06;
  font-family: Georgia, "Times New Roman", serif;
}

.section-heading h2 {
  font-size: clamp(20px, 6.3vw, 52px);
  padding: 0 10px;
}

.section-heading p:last-child {
  color: var(--muted);
}

.section-kicker,
.light-kicker {
  margin: 0px auto 20px;
  font-size: clamp(12px, 4.5vw, 22px);
  font-weight: bold;
  max-width: 85%;
  color: #3a3627;
  text-align: center;
}

/*
    ═══════════════════════════════════════════════════════════════
    HEADER
    ═══════════════════════════════════════════════════════════════
 */
.header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  position: relative;
  z-index: 1;
  padding: 0 10px;
}

.header__contacts {
  display: none;
}

.header__nav {
  display: none;
  position: relative;
  top: 74px;
  left: 16px;
  right: 16px;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(78, 67, 47, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.header__menu-call {
  margin-left: auto;
}

body.menu-open .header__nav {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Mobile right drawer menu */
.mobile-sidebar {
  position: fixed;
  inset: 0;
  z-index: 12000;
  pointer-events: none;
}

.mobile-sidebar__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.mobile-sidebar__content {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(88vw, 380px);
  background-image: url("image/burger-bg.jpg");
  background-size: 100% 50%;
  background-position: bottom center;
  background-repeat: repeat;
  background-attachment: local;
  box-shadow: -10px 0 26px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: grid;
  align-content: start;
  gap: 10px;
  overflow-y: auto;
  padding-top: 10px;
  font-family: Arial, Helvetica, sans-serif;
}

.mobile-sidebar.active {
  pointer-events: auto;
}

.mobile-sidebar.active .mobile-sidebar__overlay {
  opacity: 1;
}

.mobile-sidebar.active .mobile-sidebar__content {
  transform: translateX(0);
}

.mobile-sidebar__close {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 5px;
  right: 5px;
  margin-left: auto;
}

.mobile-sidebar__logo img {
  display: block;
  margin: 0 auto;
  width: clamp(150px, 60vw, 300px);
}

.mobile-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 10px;
  display: grid;
  background-image: url("image/body-bg.png");
  background-repeat: repeat-y;
  background-position: center;
  background-size: 100% auto;
}

.mobile-sidebar__link {
  display: block;
  padding: 10px 0;
  font-size: 18px;
}

.mobile-sidebar__link:not(:last-child) {
  border-bottom: 1px solid rgba(78, 67, 47, 0.15);
}

.mobile-sidebar__legal {
  margin-top: 4px;
  display: grid;
  gap: 10px;
  color: white;
  padding: 10px;
}

.mobile-sidebar__legal-link {
  font-size: 14px;
  padding-left: 20px;
  position: relative;
}

.mobile-sidebar__legal-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
}

/*
    ═══════════════════════════════════════════════════════════════
    HERO
    ═══════════════════════════════════════════════════════════════
 */
.hero {
  padding-top: 0px;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.hero__content {
  color: white;
  position: relative;
}

.hero__media {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 20px;
}

.hero__media picture {
  display: block;
}

.hero__image {
  display: block;
  width: 100vw;
  max-width: none;
  height: auto;
}

.hero__header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.hero__header h1 {
  max-width: 90%;
  font-size: clamp(16px, 7vw, 48px);
  padding: 10px;
}

.hero__header h1 span {
  color: var(--gold-dark);
}

.hero__text {
  max-width: 660px;
  margin: 18px 0 0;
  font-size: clamp(16px, 2.8vw, 25px);
  line-height: 1.65;
  padding-left: 10px;
  display: none;
}

.hero__actions .button {
  max-width: 90%;
  margin: 0px auto;
  display: block;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.hero__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 26px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 20px;
  padding-left: calc(50vw - 50% + 20px);
  padding-right: calc(50vw - 50% + 20px);
  background-image: url(image/bg-1.jpg);
  background-size: cover;
  background-position: center;
}

.hero__stats article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: white;
}
.hero__stats article:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 1);
  padding-bottom: 12px;
}

.hero__stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
}
.hero__stats span {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(20px, 4vw, 26px);
  font-weight: bold;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 16px 24px;
  border: 1px solid black;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  font-weight: 700;
  font-size: clamp(16px, 5.5vw, 25px);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
}

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

.button--primary {
  color: #fff;
  background: linear-gradient(var(--gold), var(--gold-dark));
}

.button--secondary {
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(78, 67, 47, 0.15);
}

.button--full {
  width: 100%;
}
/*
    ═══════════════════════════════════════════════════════════════
    ADVANTAGES
    ═══════════════════════════════════════════════════════════════
 */

.advantages__table-wrap--desktop {
  display: none;
}

.advantages__cards-wrap--mobile {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--card);
  border: 1px solid rgba(78, 67, 47, 0.08);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 20px 0;
  margin: 0 10px;
}

.advantages__card {
  padding: 20px;
}

.advantages__card:last-child {
  border-bottom: none;
}

.advantages__card:nth-child(2) {
  background: rgba(78, 67, 47, 0.04);
}

.advantages__card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.advantages__card-icon {
  flex-shrink: 0;
}

.advantages__card-header h3 {
  margin: 0;
  font-size: clamp(18px, 5.5vw, 26px);
  max-width: 60%;
  font-family: Georgia, "Times New Roman", serif;
}

.advantages__card-content {
  display: grid;
}

.advantages__card-content p {
  margin: 0;
  font-size: clamp(16px, 5vw, 24px);
  padding: 10px 0px 10px 25px;
}

.advantages__card-content p:not(:last-child) {
  border-bottom: 1px solid #bba38b;
}

.advantages__card-highlight {
  color: var(--green) !important;
  font-weight: 700;
  position: relative;
  padding-left: 32px;
}

.advantages__card-highlight::before {
  content: url(image/check.png);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-100%);
  width: 18px;
  height: 14px;
}

.advantages__quote {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 20px 10px 0;
}

.advantages__quote-arrow {
  display: none;
  width: 24px;
  height: 28px;
  flex-shrink: 0;
}

.advantages__quote-text {
  margin: 0 20px;
  font-size: clamp(18px, 5.8vw, 23px);
  font-style: italic;
  font-family: Georgia, "Times New Roman", serif;
  text-align: center;
  line-height: 1.4;
  max-width: 280px;
}

.comparison-card,
.gallery__card,
.gallery__delivery-card,
.steps__card,
.offer__card,
.reviews__slider,
.faq__item {
  background: var(--card);
  border: 1px solid rgba(78, 67, 47, 0.08);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.steps__grid,
.gallery__grid,
.offer__grid,
.offer__benefits,
.form__row--two-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/*
    ═══════════════════════════════════════════════════════════════
    PURPOSES
    ═══════════════════════════════════════════════════════════════
 */
.purposes {
  padding-top: 0;
}

.purposes .section-heading .green {
  color: white;
}
.purposes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background-image:
    linear-gradient(
      90deg,
      transparent calc(50% - 1px),
      rgba(191, 167, 149, 0.4) calc(50% - 1px),
      rgba(191, 167, 149, 0.4) calc(50% + 1px),
      transparent calc(50% + 1px)
    ),
    linear-gradient(
      180deg,
      transparent calc(50% - 1px),
      rgba(191, 167, 149, 0.4) calc(50% - 1px),
      rgba(191, 167, 149, 0.4) calc(50% + 1px),
      transparent calc(50% + 1px)
    );
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.purposes__card {
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  max-width: 200px;
  margin: 0 auto;
}

.purposes__image {
  width: 100%;
  aspect-ratio: 1.5/1;
  border-radius: 12px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 0;
}

.purposes__card h3 {
  margin: 0;
  padding: 0 16px;
  font-size: clamp(15px, 4.7vw, 24px);
  font-family: Georgia, "Times New Roman", serif;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.purposes__card p {
  margin: 0;
  line-height: 1.6;
  color: var(--muted);
}

/*
    ═══════════════════════════════════════════════════════════════
    CALCULATOR
    ═══════════════════════════════════════════════════════════════
 */

#calculator {
  padding-bottom: 0;
}

.calculator {
  --calculator-control-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  position: relative;
  border: 1px solid var(--border);
  border-radius: 15px;
  overflow: hidden;
  z-index: 2;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: calc(-1 * var(--calculator-overlap));
  transform: translateY(var(--calculator-overlap));
  background-image: url("image/body-bg.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.65);
}

.calculator .section-heading h2 {
  text-align: center;
  padding: 10px 40px;
  background-color: #71714f;
  color: white;
}

.calculator__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.calculator__card {
  padding: 16px;
}

.calculator__controls,
.calculator__summary {
  display: grid;
  gap: 10px;
}

.calculator__label-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 14px;
}

.calculator__label-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.calculator__label-row::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #bfa795;
}

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

.calculator__shape-card,
.calculator__option-button {
  border: 1px solid #ddd0cb;
  border-radius: 10px;
  background: #ebe2da;
  color: #3a3627;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
  box-shadow: var(--calculator-control-shadow);
}

.calculator__shape-card {
  border: 3px solid #ddd0cb;
  border-radius: 20px;
  display: grid;
  gap: 8px;
  padding: 10px;
  text-align: center;
}

.calculator__shape-card strong {
  font-size: clamp(11px, 3.8vw, 29px);
}

.calculator__shape-card:hover,
.calculator__option-button:hover {
  background: #f5f1ed;
}

.calculator__shape-card.is-active,
.calculator__option-button.is-active {
  border-color: #bda89d;
  background: white;
}

.calculator__option-button.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: #dfd5cd;
}

.calculator__shape {
  margin: 0 auto;
  width: 100%;
}

.calculator__option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.calculator__option-button {
  min-width: clamp(34px, 10.8vw, 48px);
  min-height: 36px;
  font-weight: 700;
  font-size: 13px;
}

.calculator__summary-box {
  padding: 18px;
  border-radius: 20px;
  border: 3px solid white;
  color: #5f5c46;
  background: #e6dcd5;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.calculator__summary-box p {
  margin: 0;
  opacity: 0.8;
}

.calculator__summary-box h3 {
  margin: 0;
  font-size: clamp(28px, 8vw, 48px);
  line-height: 1;
}

.calculator__summary-box span {
  opacity: 0.9;
  font-size: 14px;
}

.calculator__summary-box .button,
.calculator__button-desktop {
  margin-top: auto;
  box-shadow:
    0 8px 18px rgba(58, 54, 39, 0.18),
    0 2px 4px rgba(58, 54, 39, 0.12);
  border-radius: 50px;
}

.calculator__button-desktop {
  display: none;
}

.calculator__summary-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(78, 67, 47, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
}

.calculator__summary-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.5;
  color: var(--muted);
}

.calculator__summary-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/*
    ═══════════════════════════════════════════════════════════════
    STEPS
    ═══════════════════════════════════════════════════════════════
 */

.steps {
  padding: 0;
}

.steps .container {
  width: 100%;
}

.steps__grid {
  position: relative;
  z-index: 1;
}

.steps__card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.steps__number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #fff;
  color: var(--green-dark);
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 800;
}

.steps__card h3 {
  margin: 0 0 10px;
  font-size: clamp(18px, 3.5vw, 24px);
  font-family: Georgia, "Times New Roman", serif;
}

.steps__card p {
  margin: 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
}

/*
    ═══════════════════════════════════════════════════════════════
    GALLERY
    ═══════════════════════════════════════════════════════════════
 */
.gallery .section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 3vw, 18px);
}

.gallery .section-heading::before,
.gallery .section-heading::after {
  content: "";
  flex: 0 1 clamp(40px, 18vw, 74px);
  width: clamp(40px, 18vw, 74px);
  height: 5px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.gallery .section-heading::before {
  background-image: url(image/line-left.png);
}

.gallery .section-heading::after {
  background-image: url(image/line-right.png);
}

.gallery .section-heading h2 {
  line-height: 1.3;
  margin: 0;
  flex: 0 1 auto;
  padding: 0;
  font-size: clamp(19px, 6.1vw, 52px);
}
.gallery .section-heading span {
  display: block;
  width: 100%;
  color: #365c30;
}

.gallery__grid {
  padding: 0 10px;
}

.gallery__card {
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 2px solid #fcf6f1;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  background: transparent;
}

.gallery__image {
  width: 100%;
  object-fit: cover;
}

.gallery__card h3 {
  margin: 0;
  padding: 10px 0;
  text-align: center;
  background-color: rgba(191, 167, 149, 0.3);
  font-size: clamp(10px, 3vw, 24px);
  font-family: Georgia, "Times New Roman", serif;
}

.gallery__delivery-section {
  grid-column: span 2;
  border: none;
  border-radius: 0px;
  box-shadow: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 10px;
}

.gallery__delivery-section h3 {
  margin: 0;
  font-size: clamp(18px, 5.5vw, 24px);
  font-family: Georgia, "Times New Roman", serif;
  background-color: transparent;
}

.gallery__delivery-section p {
  margin: 0;
  line-height: 1.6;
  font-size: clamp(15px, 4.7vw, 24px);
  max-width: 90%;
  margin: 0 auto;
}

.gallery .button {
  max-width: 75%;
  display: block;
  margin: 0 auto;
  border-radius: 50px;
  position: relative;
  padding: 5px;
}

.gallery .button::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 57px;
  top: -27px;
  left: -36px;
  background-image: url("image/delivery-arrow-mobile.png");
}

/*
    ═══════════════════════════════════════════════════════════════
    FAQ
    ═══════════════════════════════════════════════════════════════
 */
.faq {
  padding: 0 10px;
  background-color: rgba(0, 0, 0, 0.05);
}

.faq .container {
  padding: 10px;
}
.faq__wrap {
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-family: Arial, Helvetica, sans-serif;
  padding: 0;
  overflow: hidden;
}
.faq .section-heading {
  margin: 0;
}
.faq .section-heading h2 {
  max-width: 100%;
  background-image: url("image/faq-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 20px 0;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}

.faq__list {
  display: grid;
  gap: 25px;
  padding: 10px;
  background-image: url(image/body-bg.png);
}

.faq__item {
  overflow: hidden;
  border-radius: 10px;
  border: 3px solid white;
  box-shadow: var(--shadow);
  background: rgba(0, 0, 0, 0.05);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 10px;
  border: none;
  text-align: left;
  font-size: clamp(14px, 4.6vw, 19px);
  font-weight: 700;
  background: transparent;
}

.faq__icon {
  position: relative;
  flex: 0 0 auto;
  width: 11px;
  height: 6px;
}

.faq__icon img {
  transition: transform 0.3s ease-in-out;
}

.faq__item.is-open .faq__icon img {
  transform: scaleY(-1);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.faq__answer p {
  border-top: 1px solid var(--border);
  margin: 0;
  padding: 10px;
  line-height: 1.7;
  color: var(--muted);
}

/*
    ═══════════════════════════════════════════════════════════════
    REVIEWS
    ═══════════════════════════════════════════════════════════════
 */
.reviews .section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 3vw, 18px);
}

.reviews .section-heading::before,
.reviews .section-heading::after {
  content: "";
  flex: 0 1 clamp(40px, 18vw, 74px);
  width: clamp(40px, 18vw, 74px);
  height: 5px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.reviews .section-heading::before {
  background-image: url(image/line-left.png);
}

.reviews .section-heading::after {
  background-image: url(image/line-right.png);
}

.reviews .section-heading h2 {
  line-height: 1.3;
  margin: 0;
  flex: 0 1 auto;
  padding: 0;
}
.reviews .section-heading span {
  display: block;
  width: 100%;
  color: #365c30;
}

.reviews__swiper {
  padding: 16px 12px;
  overflow: hidden;
}

.reviews__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
}

.reviews__item {
  padding: 20px;
  padding-bottom: 40px;
  height: auto;
  border: 1px solid #b1b1b1;
  border-radius: 10px;
  box-shadow: var(--shadow);
  cursor: default;
}

.reviews__head {
  display: flex;
  align-items: start;
  gap: 14px;
  margin-bottom: 18px;
}

.reviews__avatar {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  color: #fff;
  font-weight: 700;
}

.reviews__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.reviews__meta {
  flex: 1;
}

.reviews__stars {
  display: block;
  margin-top: 6px;
}

.reviews__source {
  width: auto;
  height: 26px;
  object-fit: contain;
  margin-left: auto;
}

.reviews__item h3 {
  margin: 0 0 4px;
  font-size: clamp(18px, 3vw, 22px);
  color: #534b3c;
}

.reviews__text {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid #b1b1b1;
  border-radius: 10px;
  box-shadow: var(--shadow);
  background: #fff;
}

.reviews__text::before,
.reviews__text::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
}

.reviews__text::before {
  top: 5px;
  left: 12px;
  background-image: url("image/quotation-up.png");
}

.reviews__text::after {
  right: 12px;
  bottom: 5px;
  background-image: url("image/quotation-down.png");
}

.reviews__text p {
  margin: 0;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 1.75;
  color: var(--muted);
}

.reviews__item:not(.is-expanded) .reviews__text p {
  display: -webkit-box;
  line-clamp: 6;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reviews__read-more {
  align-self: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  font-weight: 700;
  color: #5e5a45;
  font-size: clamp(13px, 1.8vw, 20px);
  /* text-transform: uppercase; */
  border: 0;
  background: #fff;
  cursor: pointer;
  font-style: italic;
}

.reviews__arrow.swiper-button-prev,
.reviews__arrow.swiper-button-next {
  position: static;
  left: auto;
  right: auto;
  top: auto;
  margin-top: 0;
  width: 24px;
  height: 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.reviews__arrow.swiper-button-prev::after,
.reviews__arrow.swiper-button-next::after {
  content: "";
}

.reviews__arrow.swiper-button-prev {
  background-image: url("image/slider-arrow-left.png");
}

.reviews__arrow.swiper-button-next {
  background-image: url("image/slider-arrow-right.png");
}

.reviews__dots.swiper-pagination {
  position: static;
  inset: auto;
  width: auto;
  display: flex;
  align-items: center;
}

.reviews__dots .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: rgba(78, 67, 47, 0.2);
  opacity: 1;
}

.reviews__dots .swiper-pagination-bullet-active {
  background: var(--green);
}

/*
    ═══════════════════════════════════════════════════════════════
    OFFER
    ═══════════════════════════════════════════════════════════════
 */
.offer {
  font-family: Arial, Helvetica, sans-serif;
}
.offer__grid {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.offer__title-wrap {
  max-width: 100%;
  margin: 0 auto 20px;
  background-image: url("image/cta-bg.jpg");
  background-size: cover;
  background-position: center;
}

.offer__content h2 {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
  text-align: center;
  font-size: clamp(18px, 6vw, 30px);
  line-height: 1.4;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  padding: 10px 0;
}

.offer__content h2 span {
  color: #edbf7e;
  text-shadow: 0 0 4px rgba(0, 0, 0, 1);
  font-size: clamp(24px, 8vw, 42px);
  line-height: 0;
}

.offer__benefits {
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.offer__benefits article {
  padding: 0 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.offer__benefits article:not(:last-child) {
  border-right: 1px solid #b8aba3;
}

.offer__benefits strong {
  display: block;
  margin-bottom: 2px;
  font-size: clamp(12px, 3.5vw, 22px);
  margin-top: 5px;
}

.offer__benefits span {
  line-height: 1.35;
  font-size: clamp(10px, 3vw, 20px);
}

.offer__card {
  padding: 16px;
  position: relative;
  z-index: 3;
  border: 1px solid var(--border);
  border-radius: 10px;
  transform: translateY(var(--offer-footer-overlap));
  margin-bottom: calc(-1 * var(--offer-footer-overlap));
  margin-left: 10px;
  margin-right: 10px;
  background-image: url("image/body-bg.png");
  background-size: cover;
  background-position: center;
}

.offer__countdown p {
  margin: 0 0 14px;
  text-align: center;
  font-weight: 700;
}

.offer__countdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 75%;
  margin: 0 auto 18px;
  position: relative;
}

.offer__countdown-grid div strong {
  padding: 12px 8px;
  border-radius: 16px;
  background-image: url("image/time-bg.png");
  background-size: 100% 100%;
  background-position: center;
  text-align: center;
  position: relative;
}

.offer__countdown-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(28px, 8vw, 42px);
  line-height: 1;
  color: white;
}

.offer__countdown-grid::before,
.offer__countdown-grid::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 31px;
  width: 7px;
  transform: translateY(-50%);
  background-image: url("image/footer-line.png");
  background-size: 100% 100%;
}

.offer__countdown-grid::before {
  left: calc(33.333% - 3.5px);
}

.offer__countdown-grid::after {
  right: calc(33.333% - 3.5px);
}

.offer__countdown-grid span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #463932;
  display: block;
  text-align: center;
}

.offer__form {
  display: grid;
}

.offer__form .form__row input {
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.offer__cta {
  display: block;
  text-align: center;
  max-width: 85%;
  margin: 10px auto;
}

.offer__button {
  width: 90%;
  border-radius: 30px;
  margin: 10px auto;
}

/*
    ═══════════════════════════════════════════════════════════════
    FOOTER
    ═══════════════════════════════════════════════════════════════
 */
.footer {
  padding: calc(48px + var(--offer-footer-overlap)) 0 0px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.footer__logo {
  margin-bottom: 30px;
  text-align: center;
}

.footer__logo img {
  margin: 0 auto 15px;
  width: clamp(150px, 70vw, 300px);
}

.footer__logo-text {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2e3516;
  margin-bottom: 5px;
}

.footer__logo-subtitle {
  font-size: 0.75rem;
  color: #666666;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-bottom: 20px;
}

.footer__bottom {
  width: 100%;
}

.footer__link {
  background-color: white;
  border-radius: 8px;
  border: 1px solid #c5c6c6;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  font-size: 3vw;
  margin-bottom: 5px;
  padding: 5px 10px;
  border-radius: 5px;
}

.footer__link:first-child {
  display: none;
}

.footer__link:active {
  background-color: #2e3516;
  color: white;
  border-color: white;
}

.footer__contacts {
  line-height: 1.3;
  font-family: Arial, Helvetica, sans-serif;
  position: relative;
  z-index: 0;
  font-weight: bold;
  isolation: isolate;
  padding: 10px;
  font-size: clamp(10px, 3.2vw, 16px);
}

.footer__contacts::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  z-index: -1;
  background-image: url("image/footer-bg.jpg");
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.footer__contacts p {
  margin: 0;
}

.footer__address {
  max-width: 83%;
}
.footer__phones {
  max-width: 70%;
}

/*
    ═══════════════════════════════════════════════════════════════
    FORM
    ═══════════════════════════════════════════════════════════════
 */

.form__row {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
}

label span {
  font-size: clamp(10px, 2.2vw, 16px);
}

input,
textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(78, 67, 47, 0.14);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: rgba(91, 107, 57, 0.5);
  box-shadow: 0 0 0 4px rgba(91, 107, 57, 0.08);
}

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

.form__note,
.form__status {
  margin: 0;
  font-size: clamp(12px, 2.2vw, 16px);
  text-align: center;
}

.form__note {
  color: var(--muted);
}

.form__status {
  min-height: 20px;
  font-weight: 700;
}

.form__status.success {
  color: var(--green);
}

.form__status.error {
  color: #b54537;
}

/* Responsive Design */
@media (min-width: 641px) {
  :root {
    --offer-footer-overlap: clamp(56px, 8vw, 72px);
  }

  .container {
    width: min(100%, var(--container));
  }

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

  .section {
    padding: 74px 0;
  }

  .button {
    width: auto;
  }

  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  #calculator {
    padding-bottom: 20px;
  }
  .calculator {
    margin-bottom: 0;
    transform: none;
  }

  .steps {
    padding-top: 74px;
  }

  .calculator__card,
  .offer__card,
  .reviews__slider {
    padding: 18px;
  }

  .calculator__summary-box,
  .calculator__summary-list {
    padding: 20px;
  }

  .reviews__slider {
    grid-template-columns: 48px 1fr 48px;
    gap: 12px;
  }

  .reviews__track {
    min-height: 280px;
  }

  .reviews__item {
    padding: 18px;
  }

  .gallery__art {
    height: 240px;
  }

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

  .advantages__table-wrap--desktop {
    display: block;
  }

  .advantages__cards-wrap--mobile {
    display: none;
  }
}

@media (min-width: 861px) {
  .header {
    position: relative;
    z-index: 30;
    padding: 24px 30px 0;
  }

  .main-bg-zone.bg-top {
    z-index: 30;
  }

  .header__wrap {
    z-index: 31;
  }

  .button {
    display: block;
    width: 60%;
    margin: 0 auto;
    font-size: clamp(28px, 2.5vw, 40px);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    font-family: Arial, Helvetica, sans-serif;
  }
  .section {
    padding: 55px 0;
  }

  .section-heading h2 {
    max-width: 80%;
    margin: 0 auto 30px;
    font-size: clamp(24px, 4.5vw, 48px);
    line-height: 1.2;
  }
  .form__checkbox--modal {
    margin-top: 10px;
  }
  label span {
    font-size: clamp(10px, 2.1vw, 22px);
  }

  .header__wrap {
    gap: 0px;
    flex-direction: column;
    background-image: url("image/header-bg.jpg");
    background-size: 100% 100%;
    background-position: top center;
    min-height: clamp(2px, 13.5vw, 121px);
  }

  .header__contacts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 50px 0 65px;
    font-size: clamp(18px, 2.4vw, 25px);
    font-weight: bold;
    color: #fbf1d9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
  }

  .contacts__work-time span {
    display: block;
  }
  .contacts__phone,
  .contacts__email,
  .contacts__work-time {
    display: flex;
    align-items: center;
  }

  .contacts__phone::before,
  .contacts__email::before,
  .contacts__work-time::before {
    content: "";
    display: inline-block;
    width: clamp(30px, 4.5vw, 50px);
    height: clamp(30px, 4.5vw, 50px);
    margin-right: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .contacts__phone:hover,
  .contacts__email:hover {
    color: black;
  }

  .contacts__phone::before {
    background-image: url("image/contacts-phone.png");
  }

  .contacts__email::before {
    background-image: url("image/contacts-email.png");
  }

  .contacts__work-time::before {
    background-image: url("image/contacts-time.png");
  }

  .work-time__everyday {
    font-size: clamp(16px, 2vw, 21px);
  }

  .header__menu-toggle {
    display: none;
  }

  .header__menu-call {
    display: none;
  }

  .header__nav {
    width: 100%;
    position: absolute;
    top: auto;
    left: 0px;
    bottom: -30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 34px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    z-index: 32;
    gap: 0;
  }

  .header__nav a {
    padding: 20px;
    background-image: url("image/header-link-bg.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    font-size: clamp(23px, 2.6vw, 27px);
    width: clamp(120px, 25%, 250px);
    text-align: center;
    transition: transform 0.2s ease;
  }

  .header__nav a:hover {
    transform: translateY(-3px);
    color: var(--green-dark);
  }

  .header__nav-cta {
    text-align: initial;
  }

  .header__logo {
    display: none;
  }

  .mobile-sidebar {
    display: none;
  }

  .hero {
    padding-top: 0px;
    padding-bottom: 0;
  }

  .hero__content {
    font-family: Arial, Helvetica, sans-serif;
  }

  .hero__image {
    width: 100%;
  }
  .hero__media {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .hero__header {
    padding: 65px 50px 20px 65px;
    background-color: rgba(0, 0, 0, 0.3);
  }

  .hero h1 {
    max-width: 75%;
    font-size: clamp(42px, 6vw, 65px);
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
  }

  .hero__text {
    position: absolute;
    margin-top: 16px;
    font-size: clamp(17px, 3.8vw, 37px);
    color: var(--gold-dark);
    font-weight: bold;
    padding-left: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
    display: block;
  }

  .hero__details {
    position: absolute;
    bottom: 0;
    width: 100%;
  }

  .hero__details .hero__actions {
    padding-left: 66px;
  }

  .hero__details .hero__actions a {
    border-color: white;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
    padding: 22px 29px;
    font-size: clamp(14px, 3.2vw, 34px);
    margin: 0;
    width: fit-content;
  }

  .hero__stats {
    background-image: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 17px;
    padding-right: 0px;
    background-attachment: initial;
    gap: 0;
    padding-top: 16px;
    padding-bottom: 40px;
  }

  .hero__stats article:not(:last-child) {
    border-bottom: 0;
  }

  .hero__stats div {
    align-items: start;
  }

  .hero__stats span {
    font-size: clamp(20px, 2.5vw, 27px);
    font-weight: normal;
    line-height: 1;
    margin-bottom: 0;
  }

  /* Advantages Table */

  .advantages {
    padding: 12px 0 49px 0;
  }

  .advantages__table {
    min-width: 760px;
  }

  .advantages__table-wrap {
    overflow-x: auto;
    background: var(--card);
    border: 4px solid #b6b6b6;
    border-radius: 10px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0 30px;
    margin-top: 40px;
  }

  .advantages__table {
    width: 100%;
    min-width: 680px;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    text-align: center;
  }

  .advantages__table th,
  .advantages__table td {
    padding: 16px 12px;
    border-right: 5px solid #dfdfe0;
    border-bottom: 5px solid #dfdfe0;
    vertical-align: middle;
    font-size: clamp(16px, 2.3vw, 24px);
  }

  .advantages__table th:last-child,
  .advantages__table td:last-child {
    border-right: 0;
  }

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

  .advantages__table thead th {
    padding-top: 7px;
    padding-bottom: 12px;
    color: #fff;
    font-size: clamp(20px, 3.8vw, 40px);
    background-color: #786856;
  }

  .advantages__table thead th:last-child {
    background-color: #374c3d;
  }

  .advantages__table tbody tr:nth-child(even) {
    background: rgba(235, 226, 209, 0.45);
  }

  .advantages__table td {
    line-height: 1.15;
    height: 86px;
  }

  .advantages__cell--highlight {
    color: var(--green-dark);
    font-weight: bold;
  }
  .advantages__cell--highlight span {
    max-width: 70%;
    display: block;
    margin: 0 20px 0 auto;
  }

  .advantages__table tbody .advantages__cell--highlight {
    position: relative;
    padding: 0;
  }

  .advantages__table tbody .advantages__cell--highlight::before {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    flex: 0 0 48px;
    width: 40px;
    height: 40px;
    background: url("image/check-table.png") center / contain no-repeat;
  }

  .advantages__quote {
    margin-top: 44px;
    justify-content: center;
  }

  .advantages__quote-text {
    font-weight: bold;
    font-style: normal;
    max-width: none;
    font-size: clamp(18px, 3.2vw, 34px);
    margin: 0 7%;
  }
  .advantages__quote-arrow {
    display: block;
  }

  .purposes {
    padding: 29px 0 29px 0;
  }

  .purposes .section-heading {
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    background: none;
    color: inherit;
  }
  .purposes .section-heading .green {
    color: #365c30;
  }
  .purposes__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background-image: none;
  }
  .purposes__card {
    max-width: 250px;
    gap: 0;
  }

  .purposes__card h3 {
    font-size: clamp(18px, 2.8vw, 31px);
    font-weight: normal;
  }

  .purposes__image {
    margin-bottom: 0;
  }

  #calculator {
    padding: 40px 0 47px;
  }
  .calculator {
    border: 5px solid white;
    border-radius: 35px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    width: 900px;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
  }
  .calculator .section-heading {
    margin: 0;
  }
  .calculator .section-heading h2 {
    max-width: 100%;
    margin-bottom: 0;
    border: 2px solid var(--border);
    border-bottom: 0;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    background-image: url("image/calc-bg.jpg");
    background-size: cover;
    background-position: center;
    padding: 20px 0;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 3px;
  }

  .calculator__layout,
  .offer__grid {
    gap: 24px;
  }

  .calculator__card {
    border: 2px solid var(--border);
    border-top: 0;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 33px 30px 22px;

    margin: 0;
  }
  .calculator__controls {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 16px;
    margin-bottom: 25px;
  }

  .calculator__controls > .calculator__group:nth-child(1),
  .calculator__controls > .calculator__group:nth-child(2) {
    grid-column: 1 / -1;
  }

  .calculator__controls > .calculator__group:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
  }

  .calculator__controls > .calculator__group:nth-child(4) {
    grid-column: 1;
    grid-row: 4;
  }
  .calculator__label-row {
    margin-bottom: 13px;
    font-size: clamp(12px, 2.2vw, 23px);
    padding-left: 23px;
  }

  .calculator__group:first-child .calculator__label-row {
    padding-left: 0;
  }
  .calculator__label-icon {
    width: auto;
    height: auto;
  }
  .calculator__controls .calculator__group:first-child .calculator__label-row {
    font-size: clamp(22px, 2.6vw, 28px);
  }

  .calculator__shape-grid {
    gap: 30px;
    margin-top: 25px;
  }

  .calculator__option-button {
    font-size: clamp(15px, 1.9vw, 20px);
    min-width: 74px;
    min-height: 48px;
  }
  .calculator__summary {
    display: flex;
    flex-direction: column;
    gap: 16px;
    grid-column: 2;
    grid-row: 3 / 5;
  }
  .calculator__summary-box,
  .calculator__summary-list {
    padding: 20px;
  }
  .calculator__summary-box {
    flex: 1;
    border-radius: 15px;
  }
  .calculator__summary-box p {
    margin-bottom: 5px;
  }
  .calculator__summary-box p,
  .calculator__summary-box span {
    font-size: clamp(16px, 2.5vw, 26px);
  }

  .calculator__summary-box h3 {
    font-size: clamp(28px, 4.9vw, 52px);
    margin-bottom: 5px;
  }

  .calculator__summary-list {
    display: none;
  }

  .calculator__button-mobile {
    display: none !important;
  }

  .calculator__button-desktop {
    display: block;
    width: 53%;
    font-size: 38px;
    border-radius: 17px;
    padding: 20px 0;
    border: 2px solid #3a3627;
  }
  .steps {
    padding: 40px 0 38px;
  }

  .steps .container {
    width: min(calc(100% - 20px), var(--container));
    padding: 0 10px;
  }

  .gallery {
    padding: 40px 0 43px;
  }

  .gallery .section-heading {
    gap: clamp(16px, 2vw, 28px);
    margin-bottom: 18px;
  }

  .gallery .section-heading h2 {
    font-size: clamp(19px, 4.4vw, 47px);
  }
  .gallery .section-kicker {
    font-size: clamp(12px, 2.7vw, 29px);
    max-width: 50%;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px;
    margin: 0 20px 28px;
    padding: 10px 10% 0;
  }

  .gallery .section-heading::before,
  .gallery .section-heading::after {
    flex-basis: 150px;
    width: 150px;
    height: 14px;
  }

  .gallery .section-heading::before {
    background-image: url("image/line-left-desk.png");
  }
  .gallery .section-heading::after {
    background-image: url("image/line-right-desk.png");
  }
  .gallery .section-heading h2 {
    max-width: 100%;
    margin-bottom: 0;
  }

  .gallery .section-heading span {
    display: inline;
    width: auto;
  }

  .gallery__card {
    border-radius: 20px;
    border: 2px solid var(--border);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }
  .gallery__card--hide {
    display: none;
  }
  .gallery__card h3 {
    padding: 25px 0;
    font-size: clamp(10px, 2.3vw, 24px);
  }
  .gallery__delivery-section {
    grid-column: auto;
    position: relative;
    overflow: visible;
    border: 0;
    box-shadow: none;
  }
  .gallery__delivery-section::after {
    content: "";
    width: 186px;
    height: 100px;
    background-image: url("image/delivery-arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: -40px;
  }

  .gallery__delivery-section h3 {
    font-size: clamp(15px, 2.5vw, 26px);
    padding: 0;
  }
  .gallery__delivery-section p {
    font-size: clamp(15px, 1.8vw, 19px);
  }

  .gallery .button {
    width: 53%;
    font-size: 37px;
    padding: 22px 0;
    border-radius: 15px;
  }

  .gallery .button::before {
    display: none;
  }

  .faq {
    padding: 62px 0 57px;
  }

  .faq .container {
    padding: 0px 0px;
  }
  .faq__wrap {
    border-radius: 30px;
    width: clamp(750px, 83%, 900px);
    margin: 0 auto;
  }
  .faq .section-heading h2 {
    padding: 21px 0 31px;
    font-size: clamp(30px, 4.9vw, 52px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
    margin-bottom: 0px;
  }

  .faq__list {
    padding: 25px 44px 29px;
  }
  .faq__item {
    border-radius: 18px;
    border: 6px solid #f9efe9;
    box-shadow: 3px 3px 1px rgba(0, 0, 0, 0.3);
  }
  .faq__question {
    padding: 14px 23px 14px 14px;
    font-size: clamp(18px, 2.9vw, 31px);
    font-weight: normal;
    max-width: 100%;
  }
  .faq__item:last-child .faq__question span:first-child {
    max-width: 90%;
  }
  .faq__icon {
    width: auto;
    height: auto;
  }

  .faq__answer p {
    padding: 24px;
    font-size: clamp(18px, 1.2vw, 24px);
  }

  /* .reviews__wrap {
    max-width: 840px;
    margin-inline: auto;
  } */

  .reviews {
    padding: 21px 0 15px;
  }
  .reviews__swiper {
    padding-top: 23px;
    max-width: 781px;
    margin: 0 auto;
    padding-bottom: 45px;
  }
  .reviews .section-heading {
    gap: clamp(16px, 2vw, 28px);
    margin-bottom: 0;
  }
  .reviews .section-heading h2 {
    max-width: 100%;
    margin-bottom: 0;
    font-size: clamp(30px, 4.9vw, 52px);
  }
  .reviews .section-heading::before,
  .reviews .section-heading::after {
    flex-basis: 150px;
    width: 150px;
    height: 14px;
  }
  .reviews .section-heading::before {
    background-image: url("image/line-left-desk.png");
  }
  .reviews .section-heading::after {
    background-image: url("image/line-right-desk.png");
  }
  .reviews .section-heading span {
    display: inline;
    width: auto;
  }
  .reviews__item {
    padding: 26px 55px 90px;
    border-radius: 30px;
  }

  .reviews__head {
    padding: 0 12px;
    font-family: Arial, Helvetica, sans-serif;
  }

  .reviews__avatar {
    width: 135px;
    height: auto;
  }

  .reviews__meta {
    padding-top: 16px;
    padding-left: 10px;
  }

  .reviews__meta h3 {
    font-size: clamp(20px, 4.9vw, 28px);
    margin-bottom: 10px;
  }

  .reviews__meta span {
    font-size: clamp(20px, 4.9vw, 28px);
  }
  .reviews__source {
    width: auto;
    height: auto;
    margin-top: 12px;
    margin-right: 6px;
  }

  .reviews__text {
    padding: 25px 64px 10px;
    border-radius: 20px;
  }
  .reviews__text p {
    font-size: clamp(16px, 3.5vw, 27px);
    line-height: 1.4;
  }

  .reviews__text::before,
  .reviews__text::after {
    width: 32px;
    height: 24px;
  }

  .reviews__item:not(.is-expanded) .reviews__text p {
    line-clamp: 5;
    -webkit-line-clamp: 5;
  }

  .reviews__read-more {
    cursor: pointer;
  }

  .reviews__read-more:hover {
    text-transform: uppercase;
  }
  .reviews__controls {
    bottom: 68px;
    width: 82%;
    justify-content: space-between;
  }
  .reviews__arrow.swiper-button-prev,
  .reviews__arrow.swiper-button-next {
    width: 56px;
    height: 55px;
  }
  .reviews__arrow.swiper-button-prev:hover,
  .reviews__arrow.swiper-button-next:hover {
    transform: scale(1.1);
  }

  .reviews__arrow.swiper-button-prev::after,
  .reviews__arrow.swiper-button-next::after {
    content: "";
  }
  .offer {
    padding: 0px 0 0;
  }
  .offer__grid {
    gap: 40px;
  }

  .offer__title-wrap {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .offer__content h2 {
    font-size: clamp(38px, 5.3vw, 57px);
    line-height: 1.4;
    position: relative;
    z-index: 0;
    isolation: isolate;
    padding: 24px 0 24px;
    text-shadow: 3px 3px 3px black;
    width: 76%;
    margin: 0 auto;
  }

  .offer__content h2 span {
    font-size: clamp(42px, 7.5vw, 81px);
    text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.8);
  }

  .offer__benefits {
    padding: 0px 40px;
  }

  .offer__benefits article {
    padding-bottom: 10px;
  }
  .offer__benefits article:not(:last-child) {
    border-right: 3px solid #b8aba3;
  }
  .offer__benefits strong {
    max-width: 95%;
    margin: 0 auto;
  }
  .offer__benefits strong {
    font-size: clamp(12px, 3.5vw, 36px);
  }
  .offer__benefits span {
    font-size: clamp(12px, 3.1vw, 32px);
    line-height: 1.2;
  }

  .offer__benefits img {
    margin-bottom: 21px;
  }

  .offer__card {
    padding: 24px;
    border-radius: 30px;
    border: 11px solid #f8ede6;
    box-shadow:
      inset 0 0 3px rgba(0, 0, 0, 0.7),
      2px 2px 4px rgba(0, 0, 0, 0.8);
    background-color: #f1efe9;
    width: 93%;
    margin-right: auto;
    margin-left: auto;
    z-index: 10;
    margin-bottom: 50px;
    transform: translateY(0px);
  }
  .offer__countdown p {
    font-size: clamp(18px, 4.1vw, 44px);
  }
  .offer__countdown-grid {
    gap: 72px;
    margin-bottom: 22px;
  }
  .offer__countdown-grid::before,
  .offer__countdown-grid::after {
    width: 23px;
    height: 100px;
    top: 44%;
  }
  .offer__countdown-grid::before {
    left: 30%;
  }
  .offer__countdown-grid::after {
    right: 30%;
  }
  .offer__countdown-grid div {
    padding: 16px 0px;
    border-radius: 20px;
  }

  .offer__countdown-grid strong {
    font-size: clamp(28px, 7.2vw, 77px);
    margin-bottom: 20px;
  }

  .offer__countdown-grid span {
    font-size: clamp(12px, 2.5vw, 27px);
    font-weight: bold;
  }
  .offer__form .form__row {
    display: flex;
    justify-content: space-evenly;
  }
  .offer__form .form__row label {
    width: 46%;
  }
  .offer__form .form__row input {
    font-size: clamp(28px, 3.6vw, 38px);
    border: 3px solid var(--border);
    border-radius: 19px;
    padding: 20px 18px;
  }

  .offer__cta {
    font-size: clamp(18px, 3vw, 32px);
    color: #463932;
    margin: 28px auto;
  }
  .offer__button {
    width: 82%;
    font-size: clamp(40px, 5vw, 54px);
    border-radius: 58px;
    padding: 24px 0;
  }

  .footer {
    padding: 39px 0 0;
  }

  .footer .container {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
  }

  .footer__logo {
    width: 100%;
    order: 1;
  }

  .footer__logo img {
    width: auto;
  }

  .footer__logo-text {
    font-size: 1.4rem;
  }

  .footer__bottom {
    position: relative;
    z-index: 0;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    order: 2;
  }

  .footer__bottom::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    z-index: -1;
    background-image: url("image/footer-bg.jpg");
    background-size: contain;
    background-position: center;
    pointer-events: none;
  }

  .footer__nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
    width: 50%;
    justify-content: start;
    order: 3;
    z-index: 1;
    padding-top: 20px;
    font-family: Arial, Helvetica, sans-serif;
  }

  .footer__link {
    font-size: 13px;
    padding: 12px;
    border-radius: 10px;
  }
  .footer__link:first-child {
    display: block;
  }
  .footer__link:nth-child(1) {
    order: 1;
  }
  .footer__link:nth-child(2) {
    order: 2;
  }
  .footer__link:nth-child(3) {
    order: 4;
  } /* меняем */
  .footer__link:nth-child(4) {
    order: 3;
  } /* меняем */
  .footer__link:nth-child(5) {
    order: 5;
  }
  .footer__link:hover {
    background-color: #2e3516;
    color: white;
    border-color: white;
  }

  .footer__contacts {
    padding: 20px 0 20px 20px;
    width: 45%;
    order: 2;
    font-size: 16px;
    font-weight: normal;
  }

  .footer__contacts::before {
    content: none;
  }

  .footer__phones {
    max-width: 300px;
  }
}

/* ========================================
   MODAL WINDOWS STYLES (from styles-2.css)
   ======================================== */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  font-family: Arial, Helvetica, sans-serif;
}

.modal--active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal__content {
  margin: auto;
  padding: 15px 40px;
  border: 5px solid #f8ede6;
  box-shadow:
    inset 0 0 3px rgba(0, 0, 0, 0.7),
    2px 2px 4px rgba(0, 0, 0, 0.8);
  background-image: url("image/body-bg.png");
  border-radius: 15px;
  width: 90%;
  max-width: 525px;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.modal--active .modal__content {
  transform: translateY(0);
  color: #50453a;
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #aaa;
  font-size: 36px;
  font-weight: bold;
  transition: 0.3s ease;
  line-height: 1;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.modal__close:hover,
.modal__close:focus {
  color: black;
  text-decoration: none;
  transform: scale(1.1);
}

.modal__title {
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: bold;
  text-align: center;
  margin: 0 auto 10px;
}

.modal__subtitle {
  font-size: 15px;
  text-align: center;
  font-size: clamp(14px, 1.6vw, 17px);
  margin: auto;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}

.modal__content--callback .modal__subtitle {
  /* max-width: 270px; */
}

.modal__form .form__group {
  margin-bottom: 20px;
  position: relative;
}
.modal__form .form__group:after {
  position: absolute;
  top: 11px;
  right: -11px;
  content: "*";
  color: #e43731;
  font-size: clamp(10px, 6.7vw, 27px);
}
.modal__form .form__group .form__label {
  font-size: clamp(10px, 6vw, 21px);
  font-weight: bold;
  margin-bottom: 5px;
}
.modal__form .form__group .form__input {
  font-size: clamp(10px, 1.8vw, 19px);
  font-weight: bold;
}
.modal--legal {
  z-index: 10000;
}

.modal__content--legal {
  width: 900px;
  max-width: 95%;
  height: 75vh;
  display: flex;
  flex-direction: column;
  padding: 30px 40px;
}

.modal__content--legal .modal__title {
  margin-bottom: 20px;
  flex-shrink: 0;
}

.modal__content--legal .modal__close {
  top: 15px;
  right: 20px;
}

.modal__scroll-content {
  flex-grow: 1;
  overflow-y: auto;
  padding-right: 10px;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}

.modal__scroll-content::-webkit-scrollbar {
  width: 8px;
}

.modal__scroll-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.modal__scroll-content::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.modal__scroll-content::-webkit-scrollbar-thumb:hover {
  background: black;
}

.form__group--inline {
  display: flex;
  gap: 20px;
}

.form__required {
  color: #e43731;
}

.form__input:focus {
  outline: none;
  border-color: #84a607;
  box-shadow: 0 0 5px rgba(132, 166, 7, 0.5);
}

.btn--full {
  width: 100%;
  font-size: 20px;
  padding: 15px;
  margin-top: 10px;
  border-radius: 10px;
  background: linear-gradient(#f5cd70, #d8a037);
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  border: 3px solid white;
  box-shadow:
    -2px -2px 2px rgba(0, 0, 0, 0.35),
    0px 0px 5px rgba(0, 0, 0, 0.55);
}

.btn--full:hover {
  background-color: #c0392b;
}

.form__checkbox--modal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 5px;
}
.form__checkbox--modal input {
  margin-top: 3px;
  accent-color: #84a607;
  padding: 0px;
  width: auto;
  /* font-size: 49px; */
  /* appearance: none; */
  width: 19px;
  height: 19px;
  border: 2px solid #333;
  border-radius: 4px;
  cursor: pointer;
}
.form__checkbox--modal input:hover {
  cursor: pointer;
}
.form__checkbox--modal span {
  font-size: clamp(10px, 1.3vw, 14px);
  font-weight: bold;
}

.legacy__link {
  text-decoration: underline;
}

@media (min-width: 861px) {
  .form__checkbox--modal span {
    font-size: clamp(10px, 1.3vw, 14px);
    max-width: 59%;
  }
  .modal__form .form__group:after {
    font-size: clamp(10px, 3.3vw, 35px);
  }
}
@media (min-width: 1024px) {
  .legacy__link:hover {
    color: #3f9200;
    text-decoration: none;
  }
}

/* ========================================
   COOKIE BANNER STYLES (from styles-2.css)
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  right: 20px;
  width: 380px;
  max-width: 90%;
  background-image: url("image/bg-1.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  z-index: 9998;
  transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  display: none;
}

.cookie-banner.show {
  display: block;
  bottom: 20px;
}

.cookie-banner__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-banner__text {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.cookie-banner__link {
  text-decoration: underline;
  font-weight: bold;
  cursor: pointer;
}

.cookie-banner__link:hover {
  text-decoration: none;
  color: #3d661d;
}

.cookie-banner__btn {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .cookie-banner {
    right: 0;
    left: 0;
    bottom: -100%;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }

  .cookie-banner.show {
    bottom: 0;
    background: #6f6f6f;
    color: white;
  }

  .cookie-banner__content {
    flex-direction: column;
  }

  .cookie-banner__btn {
    width: 100%;
  }
}

/* ========================================
   LEGAL MODAL STYLES (from styles-2.css)
   ======================================== */

@media (max-width: 992px) {
  .modal__content--legal {
    width: 95%;
    height: 80vh;
    padding: 20px;
  }

  .modal__title {
    font-size: 24px;
  }

  .modal__scroll-content {
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  .main-bg-zone::before {
    content: "";
    position: absolute;
    top: 0px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 1130px);
    z-index: -1;
    pointer-events: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
  }
  .main-bg-zone.bg-top::before {
    background-image: url("image/bg-top.jpg");
  }
  .main-bg-zone.bg-mid::before {
    background-image: url("image/bg-mid.jpg");
    background-position: bottom;
  }
  .main-bg-zone.bg-bot::before {
    background-image: url("image/bg-bot.jpg");
  }
}
