:root {
  --color-bg: #f5ecde;
  --color-bg-soft: #efe1cb;
  --color-surface: #fffaf2;
  --color-surface-soft: #f7ead7;
  --color-surface-dark: #0c0c0c;
  --color-text: #241b14;
  --color-text-light: #f5ede2;
  --color-text-muted: #756555;
  --color-border: rgba(110, 73, 35, 0.16);
  --color-accent: #b7772e;
  --color-accent-dark: #8a531a;
  --color-accent-deep: #6c3f1a;
  --color-accent-soft: #ead3b3;
  --hero-scene-bg: #f8efe2;
  --shadow-sm: 0 10px 28px rgba(57, 37, 16, 0.08);
  --shadow-md: 0 18px 40px rgba(57, 37, 16, 0.14);
  --shadow-lg: 0 24px 56px rgba(57, 37, 16, 0.2);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --container-width: 1320px;
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-soft) 100%);
}

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

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

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

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

button {
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

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

.skip-link {
  position: absolute;
  top: -44px;
  left: 16px;
  z-index: 2000;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--color-text-light);
  background-color: #111111;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 16px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(183, 119, 46, 0.35);
  outline-offset: 3px;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(72, 48, 25, 0.14);
  background: linear-gradient(180deg, rgba(244, 229, 205, 0.99) 0%, rgba(236, 214, 181, 0.99) 100%);
  box-shadow: 0 12px 28px rgba(60, 39, 18, 0.12);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr auto;
  grid-template-areas:
    "brand . actions"
    "nav nav nav";
  align-items: center;
  gap: 10px 24px;
  padding: 10px 0 14px;
}

.brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__logo {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.32);
}

.brand__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.brand__name {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.brand__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.3;
}

.header-actions {
  grid-area: actions;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.header-phones {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.phone-link {
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  transition: color var(--transition);
}

.phone-link:hover,
.phone-link:focus-visible {
  color: var(--color-accent-dark);
}

.header-quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.header-quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(72, 48, 25, 0.14);
  border-radius: 999px;
  background-color: rgba(255, 250, 242, 0.82);
  color: var(--color-text);
  font-size: 0.88rem;
  font-weight: 700;
  transition:
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.header-quick-link:hover,
.header-quick-link:focus-visible {
  border-color: rgba(183, 119, 46, 0.28);
  background-color: rgba(183, 119, 46, 0.12);
  color: var(--color-accent-dark);
}

.header-quick-link--primary {
  border-color: transparent;
  background-color: var(--color-accent);
  color: #ffffff;
}

.header-quick-link--primary:hover,
.header-quick-link--primary:focus-visible {
  background-color: var(--color-accent-dark);
  color: #ffffff;
}

.menu-toggle {
  display: none;
  grid-area: menu-toggle;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(72, 48, 25, 0.14);
  border-radius: 12px;
  background-color: rgba(255, 250, 242, 0.9);
  box-shadow: var(--shadow-sm);
}

.menu-toggle__line {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background-color: var(--color-text);
}

.site-nav {
  grid-area: nav;
  width: 100%;
  margin-top: 2px;
  padding-top: 8px;
  border-top: 1px solid rgba(72, 48, 25, 0.1);
}

.site-nav__surface {
  padding: 10px 12px;
  border: 1px solid rgba(72, 48, 25, 0.08);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  list-style: none;
}

.menu__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.menu__link:hover,
.menu__link:focus-visible {
  background-color: rgba(183, 119, 46, 0.14);
  color: var(--color-accent-dark);
}

.menu__link[aria-current="page"] {
  background-color: var(--color-accent-soft);
  color: var(--color-accent-dark);
}

.menu__link--accent {
  border: 1px solid rgba(72, 48, 25, 0.14);
  background-color: rgba(255, 250, 242, 0.55);
  color: var(--color-text-muted);
}

.page-main {
  display: block;
  padding-top: 28px;
}

.section-block {
  padding-top: 28px;
  content-visibility: auto;
  contain-intrinsic-size: auto 860px;
}

.section-block.is-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

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

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.section-title {
  margin: 0;
  font-size: clamp(1.55rem, 2.2vw, 2.4rem);
  line-height: 1.15;
}

.section-text {
  margin: 0;
  max-width: 820px;
  color: var(--color-text-muted);
  font-size: 1rem;
}

.section-actions {
  margin-top: 20px;
}

/* =========================
   HERO — SPLIT LAYOUT + MOTION SCENE
   ========================= */
.hero {
  position: relative;
  padding-top: 0;
  padding-bottom: 6px;
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

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

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.hero__content,
.hero__visual {
  min-width: 0;
}

.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(420px, 31vw, 520px);
  padding: clamp(18px, 2.3vw, 28px);
  border: 1px solid rgba(110, 73, 35, 0.12);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: none;
}

.hero__content::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 22%),
    repeating-linear-gradient(90deg, rgba(126, 82, 37, 0.03) 0 1px, transparent 1px 112px),
    repeating-linear-gradient(0deg, rgba(126, 82, 37, 0.024) 0 1px, transparent 1px 112px);
  opacity: 0.72;
}

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

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 88%;
  margin: 0 0 14px;
  padding: 11px 16px;
  border: 1px solid rgba(138, 83, 26, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 248, 239, 0.72) 100%);
  color: var(--color-accent-dark);
  font-size: 0.79rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(57, 37, 16, 0.06);
}

.hero__eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent) 0%, #d39a55 100%);
  box-shadow: 0 0 0 6px rgba(183, 119, 46, 0.12);
}

.hero__title {
  max-width: 10.6ch;
  margin: 0 0 16px;
  font-size: clamp(2.5rem, 4.2vw, 3.95rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-wrap: balance;
  color: #000000;
}

.hero__lead {
  max-width: 660px;
  margin: 0;
  color: #000000;
  font-size: 1.01rem;
  line-height: 1.56;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  max-width: 660px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  transition:
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

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

.button--primary {
  background-color: var(--color-accent);
  color: #ffffff;
}

.button--primary:hover,
.button--primary:focus-visible {
  background-color: var(--color-accent-dark);
  color: #ffffff;
}

.hero__actions .button--primary {
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 18px;
  font-size: 0.98rem;
  box-shadow: 0 18px 34px rgba(183, 119, 46, 0.24);
}

.button--secondary {
  border-color: rgba(72, 48, 25, 0.14);
  background-color: rgba(255, 250, 242, 0.7);
  color: var(--color-text);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: rgba(183, 119, 46, 0.28);
  background-color: rgba(183, 119, 46, 0.12);
  color: var(--color-accent-dark);
}

.button--light {
  background-color: #ffffff;
  color: var(--color-accent-deep);
}

.button--light:hover,
.button--light:focus-visible {
  background-color: rgba(255, 255, 255, 0.92);
  color: var(--color-accent-deep);
}

.button--light-outline {
  border-color: rgba(255, 255, 255, 0.22);
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.button--light-outline:hover,
.button--light-outline:focus-visible {
  border-color: rgba(255, 255, 255, 0.38);
  background-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.hero__badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 760px;
  margin-top: 18px;
  list-style: none;
}

.hero__badge {
  position: relative;
  min-height: 72px;
  padding: 14px 16px 14px 44px;
  border: 1px solid rgba(72, 48, 25, 0.08);
  border-radius: 18px;
  background: #f7ead7;
  backdrop-filter: none;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
  box-shadow: none;
}

.hero__badge::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 14px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #ffffff 0%, #ffffff 17%, transparent 18%),
    linear-gradient(135deg, var(--color-accent) 0%, #d19857 100%);
  box-shadow: 0 6px 14px rgba(183, 119, 46, 0.18);
}

.hero__visual {
  position: relative;
}

.hero-scene {
  position: relative;
  height: 100%;
  min-height: clamp(420px, 31vw, 520px);
  border-radius: 32px;
  background-color: var(--hero-scene-bg);
}

.hero-scene__surface {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(102, 67, 34, 0.12);
  border-radius: 32px;
  background: var(--hero-scene-bg);
  box-shadow:
    0 24px 64px rgba(57, 37, 16, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.hero-scene__canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.facts-grid,
.card-grid {
  display: grid;
  gap: 16px;
}

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

.card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fact-card,
.info-card,
.work-card {
  min-width: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: none;
}

.fact-card,
.info-card {
  padding: 24px;
}

.fact-card__title,
.info-card__title,
.work-card__title {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.25;
  color: #000000;
}

.fact-card__title {
  font-size: 1.18rem;
}

.fact-card__text,
.info-card__text,
.work-card__text {
  margin: 0;
  color: #000000;
  font-size: 0.98rem;
}

.info-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-card--compact {
  gap: 10px;
}

.catalog-preview {
  display: grid;
  place-items: center;
  min-height: 180px;
}

.catalog-preview__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  margin-inline: auto;
}

.info-card__trigger,
.info-card__link {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-accent-dark);
  font-size: 0.94rem;
  font-weight: 700;
  transition: color var(--transition);
}

.info-card__trigger:hover,
.info-card__trigger:focus-visible,
.info-card__link:hover,
.info-card__link:focus-visible {
  color: var(--color-accent-deep);
}

.work-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.work-card__media {
  display: grid;
  place-items: center;
  min-height: 220px;
  margin-bottom: 4px;
}

.work-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  margin-inline: auto;
}

.work-card__trigger {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-accent-dark);
  font-size: 0.94rem;
  font-weight: 700;
  transition: color var(--transition);
}

.work-card__trigger:hover,
.work-card__trigger:focus-visible {
  color: var(--color-accent-deep);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  counter-reset: process-step;
}

.process-item {
  position: relative;
  padding: 22px 18px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: none;
}

.process-item::before {
  content: counter(process-step);
  counter-increment: process-step;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
}

.process-item__title {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.3;
  color: #000000;
}

.process-item__text {
  margin: 0;
  color: #000000;
  font-size: 0.95rem;
}

/* =========================================
   ПРАВКИ ТОЛЬКО ДЛЯ БЛОКОВ С ФОТО
   Коротко о компании / Почему удобно работать /
   Как проходит работа / Пример договора
   ========================================= */

.section-block[aria-labelledby="facts-title"] .section-head,
.section-block[aria-labelledby="advantages-title"] .section-head,
.section-block[aria-labelledby="process-title"] .section-head,
.guarantee .section-head {
  margin-bottom: 22px;
}

.section-block[aria-labelledby="facts-title"] .section-title,
.section-block[aria-labelledby="advantages-title"] .section-title,
.section-block[aria-labelledby="process-title"] .section-title,
.guarantee .section-title {
  display: block;
  padding-left: 0;
  letter-spacing: -0.035em;
}

.section-block[aria-labelledby="facts-title"] .section-title::before,
.section-block[aria-labelledby="advantages-title"] .section-title::before,
.section-block[aria-labelledby="process-title"] .section-title::before,
.guarantee .section-title::before {
  content: none;
}

.section-block[aria-labelledby="facts-title"] .facts-grid,
.section-block[aria-labelledby="advantages-title"] .card-grid--three,
.section-block[aria-labelledby="process-title"] .process-list {
  gap: 18px;
}

.section-block[aria-labelledby="facts-title"] .fact-card,
.section-block[aria-labelledby="advantages-title"] .info-card,
.section-block[aria-labelledby="process-title"] .process-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(110, 73, 35, 0.12);
  background: #ffffff;
  box-shadow: none;
  transition:
    border-color var(--transition),
    background-color var(--transition);
}

.section-block[aria-labelledby="facts-title"] .fact-card::before,
.section-block[aria-labelledby="advantages-title"] .info-card::before,
.section-block[aria-labelledby="process-title"] .process-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-accent) 0%, #dca765 100%);
}

.section-block[aria-labelledby="facts-title"] .fact-card::after,
.section-block[aria-labelledby="advantages-title"] .info-card::after {
  content: none;
}

.section-block[aria-labelledby="facts-title"] .fact-card:hover,
.section-block[aria-labelledby="advantages-title"] .info-card:hover,
.section-block[aria-labelledby="process-title"] .process-item:hover {
  transform: none;
  border-color: rgba(110, 73, 35, 0.12);
  box-shadow: none;
}

.section-block[aria-labelledby="facts-title"] .fact-card,
.section-block[aria-labelledby="advantages-title"] .info-card {
  padding: 28px 28px 24px;
}

.section-block[aria-labelledby="facts-title"] .fact-card__title,
.section-block[aria-labelledby="advantages-title"] .info-card__title,
.section-block[aria-labelledby="process-title"] .process-item__title {
  display: block;
  margin: 0 0 14px;
  padding-bottom: 0;
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #120c08;
}

.section-block[aria-labelledby="facts-title"] .fact-card__title::after,
.section-block[aria-labelledby="advantages-title"] .info-card__title::after,
.section-block[aria-labelledby="process-title"] .process-item__title::after {
  content: none;
}

.section-block[aria-labelledby="facts-title"] .fact-card__text,
.section-block[aria-labelledby="advantages-title"] .info-card__text,
.section-block[aria-labelledby="process-title"] .process-item__text {
  color: #2c1d11;
  line-height: 1.65;
}

.section-block[aria-labelledby="facts-title"] .fact-card {
  min-height: 190px;
}

.section-block[aria-labelledby="advantages-title"] .info-card {
  min-height: 258px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.section-block[aria-labelledby="advantages-title"] .info-card__text {
  max-width: none;
}

.section-block[aria-labelledby="process-title"] .process-item {
  padding: 24px 22px 22px;
  min-height: 100%;
}

.section-block[aria-labelledby="process-title"] .process-item::before {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #c98533 0%, var(--color-accent) 100%);
  box-shadow: none;
  font-size: 1.08rem;
  font-weight: 800;
}

.guarantee__inner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) auto;
  gap: 32px;
  align-items: center;
  padding: 36px 38px;
  border: 1px solid rgba(72, 48, 25, 0.14);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: none;
}

.guarantee__inner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--color-accent) 0%, #d9a25c 100%);
}

.guarantee__inner::after {
  content: none;
}

.guarantee__content {
  position: relative;
  z-index: 1;
  padding-left: 0;
}

.guarantee__title {
  display: block;
  width: 100%;
  max-width: none;
  margin-bottom: 16px;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-wrap: pretty;
}

.guarantee__text {
  max-width: none;
  color: #2c1d11;
  font-size: 1.02rem;
  line-height: 1.7;
}

.guarantee__actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.guarantee__actions .button--secondary {
  min-height: 60px;
  padding: 16px 30px;
  border-radius: 20px;
  border: 1px solid rgba(138, 83, 26, 0.18);
  background: linear-gradient(135deg, #cf8a37 0%, #b7772e 48%, #8a531a 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  box-shadow:
    0 14px 28px rgba(138, 83, 26, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.guarantee__actions .button--secondary:hover,
.guarantee__actions .button--secondary:focus-visible {
  transform: none;
  border-color: rgba(138, 83, 26, 0.24);
  background: linear-gradient(135deg, #d99545 0%, #bf7f35 48%, #93571d 100%);
  color: #ffffff;
  box-shadow:
    0 16px 30px rgba(138, 83, 26, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* конец правок по фото */
.final-cta {
  padding-bottom: 8px;
}

.final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(36, 27, 20, 0.97) 0%, rgba(108, 63, 26, 0.94) 100%);
  box-shadow: var(--shadow-md);
}

.final-cta__title {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1.15;
}

.final-cta__text {
  margin: 0;
  max-width: 780px;
  color: rgba(245, 237, 226, 0.82);
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-footer {
  margin-top: 56px;
  color: var(--color-text-light);
  background-color: var(--color-surface-dark);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 22px;
  padding: 32px 0 20px;
}

.footer-title {
  margin: 0 0 14px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.footer-text {
  margin: 0 0 12px;
  color: rgba(245, 237, 226, 0.82);
}

.footer-block--menu {
  justify-self: center;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  list-style: none;
}

.footer-links a,
.footer-contact-link {
  color: rgba(245, 237, 226, 0.9);
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact-link:hover,
.footer-contact-link:focus-visible,
.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: #ffffff;
}

.footer-address {
  font-style: normal;
}

.footer-contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  list-style: none;
}

.footer-contact-list li {
  display: grid;
  gap: 3px;
}

.footer-contact-label {
  color: rgba(245, 237, 226, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-contact-value {
  color: rgba(245, 237, 226, 0.9);
}

.footer-meta {
  margin-top: 16px;
  display: grid;
  gap: 6px;
  color: rgba(245, 237, 226, 0.76);
  font-size: 0.94rem;
}

.footer-meta p {
  margin: 0;
}

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

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background-color: #151515;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  background-color: var(--color-accent);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: #ffffff;
}

.footer-social-link span {
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 14px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copy {
  margin: 0;
  color: rgba(245, 237, 226, 0.72);
  font-size: 0.92rem;
}

.media-frame {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid rgba(110, 73, 35, 0.12);
}

.media-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  line-height: 1.4;
  background:
    linear-gradient(180deg, rgba(183, 119, 46, 0.12) 0%, rgba(108, 63, 26, 0.62) 100%);
}

.media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  margin-inline: auto;
  transition: opacity var(--transition);
}



.media-fallback strong {
  font-weight: 800;
}

.media-frame.is-missing .media-image {
  opacity: 0;
}

.media-frame.is-missing .media-fallback {
  display: flex;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(18, 12, 8, 0.64);
  backdrop-filter: blur(4px);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 860px);
  max-height: min(100vh - 40px, 900px);
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(110, 73, 35, 0.18);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.98) 0%, rgba(247, 234, 215, 0.98) 100%);
  box-shadow: var(--shadow-lg);
}

.modal__dialog--wide {
  width: min(100%, 980px);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(72, 48, 25, 0.14);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.85);
  color: var(--color-text);
  font-size: 1.35rem;
  line-height: 1;
}

.modal__eyebrow {
  margin: 0 0 8px;
  color: var(--color-accent-dark);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.modal__title {
  margin: 0 0 12px;
  padding-right: 44px;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  line-height: 1.15;
}

.modal__text {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1rem;
}

.modal__hint {
  margin: 18px 0 0;
  color: var(--color-text-muted);
  font-size: 0.94rem;
}

.modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.modal-favorite-button[aria-pressed="true"] {
  border-color: rgba(183, 119, 46, 0.38);
  background-color: rgba(183, 119, 46, 0.12);
  color: var(--color-accent-dark);
}

/* Carousel inside the catalog modal */
.modal-gallery {
  position: relative;
  margin-top: 20px;
}

.modal-slider__loading {
  padding: 16px 14px;
  border-radius: 14px;
  border: 1px solid rgba(72, 48, 25, 0.12);
  background-color: rgba(255, 255, 255, 0.6);
  color: var(--color-text-muted);
  font-weight: 700;
}

.modal-slider {
  position: relative;
  display: grid;
  gap: 12px;
}

.modal-slider__viewport {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: clamp(360px, 54vw, 560px);
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(72, 48, 25, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(247, 234, 215, 0.68) 100%);
  aspect-ratio: auto;
  max-height: none;
  outline: none;
}

.modal-slider__track {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  transform: translateX(0%);
  transition: transform 0.28s ease;
}

.modal-slider__slide {
  flex: 0 0 100%;
  display: grid;
  place-items: center;
  min-height: inherit;
  padding: 18px 76px;
}

.modal-slider__frame {
  display: grid;
  place-items: center;
  width: min(100%, 760px);
  height: min(68vh, 520px);
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  appearance: none;
  cursor: zoom-in;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(36, 27, 20, 0.12) 100%),
    linear-gradient(145deg, rgba(183, 119, 46, 0.12) 0%, rgba(108, 63, 26, 0.18) 100%);
}

.modal-slider__frame .media-fallback {
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.modal-slider__image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
  object-position: 50% 50%;
  background-color: rgba(255, 250, 242, 0.82);
}

.modal-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(72, 48, 25, 0.14);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.88);
  color: var(--color-text);
  font-size: 1.2rem;
  line-height: 1;
  box-shadow: var(--shadow-sm);
}

.modal-slider__nav:hover,
.modal-slider__nav:focus-visible {
  background-color: rgba(183, 119, 46, 0.12);
  color: var(--color-accent-dark);
}

.modal-slider__nav:disabled {
  opacity: 0.55;
  cursor: default;
}

.modal-slider__nav--prev {
  left: 10px;
}

.modal-slider__nav--next {
  right: 10px;
}

.modal-slider__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.modal-slider__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.modal-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(72, 48, 25, 0.18);
  border-radius: 999px;
  background-color: rgba(36, 27, 20, 0.12);
}

.modal-slider__dot[aria-current="true"] {
  background-color: var(--color-accent);
  border-color: rgba(183, 119, 46, 0.55);
}

.modal-slider__counter {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  font-weight: 800;
}

/* Lightbox */
.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(18, 12, 8, 0.78);
  backdrop-filter: blur(6px);
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(100%, 1100px);
  max-height: min(100vh - 36px, 920px);
  overflow: auto;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: rgba(12, 12, 12, 0.92);
  box-shadow: var(--shadow-lg);
  padding: 12px;
}

.lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1;
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
  background-color: rgba(183, 119, 46, 0.28);
}

.lightbox__image {
  width: 100%;
  max-height: calc(100vh - 88px);
  object-fit: contain;
  object-position: 50% 50%;
  margin-inline: auto;
  border-radius: 16px;
}

.request-form {
  margin-top: 18px;
}

.request-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field-group {
  display: grid;
  gap: 6px;
}

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

.field-label {
  font-size: 0.9rem;
  font-weight: 700;
}

.field-note {
  margin: 8px 0 0;
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

.field-control {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(72, 48, 25, 0.14);
  border-radius: 14px;
  color: var(--color-text);
  background-color: rgba(255, 255, 255, 0.82);
}

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

.field-fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.radio-option {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(72, 48, 25, 0.12);
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  transition:
    border-color var(--transition),
    background-color var(--transition);
}

.radio-option:focus-within {
  border-color: rgba(183, 119, 46, 0.32);
  background-color: rgba(183, 119, 46, 0.08);
}

.radio-option input {
  margin: 0;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--color-accent);
}

.radio-option label {
  cursor: pointer;
}

.request-picker {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(72, 48, 25, 0.12);
  border-radius: var(--radius-lg);
  background-color: rgba(255, 255, 255, 0.46);
}

.request-picker__head {
  display: grid;
  gap: 6px;
}

.request-picker__title {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
}

.request-picker__text {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.96rem;
}

.request-picker__tools {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.request-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.request-filter__button {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(72, 48, 25, 0.14);
  border-radius: 999px;
  background-color: rgba(255, 250, 242, 0.72);
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.request-filter__button.is-active,
.request-filter__button[aria-pressed="true"],
.request-filter__button:hover,
.request-filter__button:focus-visible {
  border-color: rgba(183, 119, 46, 0.26);
  background-color: rgba(183, 119, 46, 0.12);
  color: var(--color-accent-dark);
}

.request-select-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.request-select-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(72, 48, 25, 0.1);
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition:
    border-color var(--transition),
    background-color var(--transition);
}

.request-select-item:focus-within {
  border-color: rgba(183, 119, 46, 0.32);
  background-color: rgba(183, 119, 46, 0.08);
}

.request-select-item input {
  margin-top: 2px;
  accent-color: var(--color-accent);
}

.request-select-item span {
  font-size: 0.95rem;
  line-height: 1.35;
}

.request-select-item__body {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.request-select-item__meta {
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--color-text-muted);
}

.request-select-empty {
  margin: 16px 0 0;
  color: var(--color-text-muted);
  font-size: 0.94rem;
}

.request-favorites-note {
  margin-top: 16px;
  padding: 14px;
  border-radius: 14px;
  background-color: rgba(183, 119, 46, 0.08);
  color: var(--color-text-muted);
  font-size: 0.94rem;
}

.request-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.request-form__success {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  background-color: rgba(183, 119, 46, 0.1);
  color: var(--color-accent-deep);
  font-size: 0.95rem;
  font-weight: 700;
}

.request-form__success.is-error {
  background-color: rgba(141, 56, 29, 0.1);
  color: #8d381d;
}

@media (max-width: 1240px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__content,
  .hero-scene {
    min-height: auto;
  }

  .hero-scene {
    min-height: clamp(370px, 50vw, 470px);
  }

  .hero__badges {
    max-width: 100%;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand menu-toggle"
      "actions actions"
      "nav nav";
    gap: 12px 16px;
    padding: 10px 0 14px;
  }

  .js-enabled .menu-toggle {
    display: inline-flex;
    justify-self: end;
    align-self: start;
  }

  .site-nav {
    margin-top: 0;
    padding-top: 8px;
  }

  .js-enabled .site-nav {
    display: none;
  }

  .js-enabled .site-nav.is-open {
    display: block;
  }

  .site-nav__surface {
    padding: 12px;
    background-color: rgba(255, 250, 242, 0.94);
    box-shadow: var(--shadow-md);
  }

  .menu {
    display: grid;
    gap: 8px;
    list-style: none;
  }

  .menu__link {
    justify-content: flex-start;
    width: 100%;
    border-radius: 12px;
  }

  .header-actions,
  .header-phones {
    align-items: flex-start;
  }

  .header-quick-links {
    justify-content: flex-start;
  }

  .guarantee__inner,
  .final-cta__inner {
    grid-template-columns: 1fr;
  }

  .facts-grid,
  .card-grid--four,
  .card-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .final-cta__actions {
    justify-content: flex-start;
  }

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

  .footer-block--contacts {
    grid-column: 1 / -1;
  }

  .guarantee__title {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .hero .container {
    width: min(100% - 24px, var(--container-width));
  }

  .hero__content {
    min-height: auto;
    padding: 20px;
  }

  .hero__title {
    font-size: clamp(2.05rem, 9.2vw, 3.2rem);
    line-height: 0.94;
  }

  .hero__lead,
  .section-text,
  .final-cta__text {
    font-size: 0.96rem;
  }

  .hero__badges,
  .facts-grid,
  .card-grid--three,
  .card-grid--four,
  .process-list,
  .footer-inner,
  .request-form__grid,
  .request-select-list {
    grid-template-columns: 1fr;
  }

  .hero-scene {
    min-height: clamp(310px, 62vw, 395px);
    border-radius: 26px;
    background-color: var(--hero-scene-bg);
  }

  .hero-scene__surface {
    border-radius: 26px;
    background: var(--hero-scene-bg);
  }

  .hero__badge {
    min-height: auto;
  }

  .section-block[aria-labelledby="facts-title"] .section-title,
  .section-block[aria-labelledby="advantages-title"] .section-title,
  .section-block[aria-labelledby="process-title"] .section-title,
  .guarantee .section-title {
    padding-left: 0;
  }

  .section-block[aria-labelledby="facts-title"] .fact-card,
  .section-block[aria-labelledby="advantages-title"] .info-card,
  .section-block[aria-labelledby="process-title"] .process-item,
  .guarantee__inner {
    border-radius: 22px;
  }

  .section-block[aria-labelledby="facts-title"] .fact-card,
  .section-block[aria-labelledby="advantages-title"] .info-card,
  .section-block[aria-labelledby="process-title"] .process-item {
    padding: 24px 20px 20px;
  }

  .guarantee__inner {
    padding: 26px 22px;
  }

  .guarantee__actions .button--secondary {
    width: 100%;
  }
}

.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(420px, 31vw, 520px);
  padding: clamp(18px, 2.3vw, 28px);
  border: 1px solid rgba(110, 73, 35, 0.12);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: none;
}

@media (max-width: 520px) {
  .header-quick-link,
  .hero__actions .button,
  .final-cta__actions .button,
  .request-form__actions .button,
  .modal__actions .button {
    width: 100%;
  }

  .hero__actions,
  .final-cta__actions,
  .request-form__actions,
  .modal__actions {
    width: 100%;
  }

  .phone-link,
  .footer-copy {
    font-size: 0.9rem;
  }

  .site-nav__surface {
    padding: 10px;
  }

  .modal-slider__nav {
    width: 40px;
    height: 40px;
  }

  .modal-slider__slide {
    padding-inline: 36px;
  }
}

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

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

  .section-block.is-reveal {
    opacity: 1;
    transform: none;
  }

  .modal-slider__track {
    transition: none;
  }
}
































































































































/* =========================================
   DELIVERY HERO — MANIPULATOR MOTION SCENE
   Локальный файл только для этой страницы
   ========================================= */

.page-hero--delivery .hero__inner {
  align-items: stretch;
  gap: 18px;
}

.page-hero--delivery .hero__content {
  justify-content: center;
  min-height: clamp(390px, 28vw, 440px);
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid rgba(102, 67, 34, 0.08);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(57, 37, 16, 0.06);
}

.page-hero--delivery .hero__title {
  max-width: 8.4ch;
  margin-bottom: 14px;
  font-size: clamp(2.55rem, 4.4vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-wrap: balance;
  color: #221913;
}

.page-hero--delivery .hero__lead {
  max-width: 620px;
  font-size: 0.98rem;
  line-height: 1.5;
  color: #221913;
}

.page-hero--delivery .hero__badges {
  max-width: 700px;
  margin-top: 18px;
  gap: 10px;
}

.page-hero--delivery .hero__badge {
  min-height: 62px;
  padding: 12px 14px 12px 42px;
  font-size: 0.9rem;
  border: 1px solid rgba(102, 67, 34, 0.08);
  background: #ffffff;
  color: #221913;
  box-shadow: 0 10px 24px rgba(57, 37, 16, 0.05);
}

.page-hero--delivery .hero__badge::before {
  top: 11px;
  left: 13px;
}

.delivery-hero__visual {
  min-width: 0;
}

.delivery-visual {
  position: relative;
  min-height: clamp(420px, 32vw, 500px);
  height: 100%;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(102, 67, 34, 0.12);
  border-radius: 32px;
  background: linear-gradient(180deg, #f7f1e7 0%, #ebddc3 54%, #dcc29d 100%);
  box-shadow:
    0 24px 64px rgba(57, 37, 16, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.delivery-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0) 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 28%);
  pointer-events: none;
  z-index: 0;
}

.delivery-visual__sky,
.delivery-visual__sky-glow,
.delivery-visual__nightwash,
.delivery-visual__stars,
.delivery-visual__sun,
.delivery-visual__moon,
.delivery-motion-road,
.delivery-scene-svg {
  position: absolute;
}

.delivery-visual__sky {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 248, 237, 0.74) 0%, rgba(255, 248, 237, 0.08) 46%, rgba(213, 185, 141, 0.18) 100%);
}

.delivery-visual__sky-glow {
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 217, 126, 0.24) 0%, rgba(255, 217, 126, 0) 24%),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0) 22%);
  opacity: 1;
  pointer-events: none;
}

.delivery-visual__nightwash {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(18, 26, 40, 0.94) 0%, rgba(27, 39, 60, 0.76) 48%, rgba(33, 43, 58, 0.52) 100%);
  opacity: 0;
  pointer-events: none;
}

.delivery-visual__stars {
  inset: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.delivery-visual__stars span {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.45);
  transform-origin: center;
}

.delivery-visual__stars span:nth-child(1) { top: 70px; left: 72px; width: 3px; height: 3px; }
.delivery-visual__stars span:nth-child(2) { top: 54px; left: 162px; }
.delivery-visual__stars span:nth-child(3) { top: 118px; left: 236px; width: 3px; height: 3px; }
.delivery-visual__stars span:nth-child(4) { top: 74px; left: 352px; }
.delivery-visual__stars span:nth-child(5) { top: 48px; left: 434px; width: 3px; height: 3px; }
.delivery-visual__stars span:nth-child(6) { top: 94px; right: 208px; }
.delivery-visual__stars span:nth-child(7) { top: 42px; right: 156px; width: 3px; height: 3px; }
.delivery-visual__stars span:nth-child(8) { top: 132px; right: 118px; }
.delivery-visual__stars span:nth-child(9) { top: 84px; right: 74px; width: 3px; height: 3px; }
.delivery-visual__stars span:nth-child(10) { top: 146px; right: 286px; }

.delivery-visual__sun,
.delivery-visual__moon {
  top: 28px;
  right: 42px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

.delivery-visual__sun {
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.22) 16%, transparent 18%),
    radial-gradient(circle, #ffe7a2 0%, #ffd46d 48%, #efb45c 100%);
  box-shadow:
    0 0 0 12px rgba(255, 212, 109, 0.14),
    0 0 36px rgba(255, 212, 109, 0.28);
}

.delivery-visual__moon {
  background:
    radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.22) 14%, transparent 16%),
    radial-gradient(circle at 42% 42%, #fffdf7 0%, #ebe6dc 62%, #cbc7bf 100%);
  box-shadow:
    0 0 0 10px rgba(239, 232, 220, 0.1),
    0 0 24px rgba(236, 233, 227, 0.18);
  opacity: 0;
}

.delivery-motion-road {
  left: 0;
  right: 0;
  bottom: 0;
  height: 138px;
  z-index: 3;
  pointer-events: none;
}

.delivery-motion-road__berm {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38px;
  background: linear-gradient(180deg, #cdb693 0%, #c3ab87 100%);
}

.delivery-motion-road__surface {
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 22px;
  height: 62px;
  border-radius: 30px 30px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 14%),
    linear-gradient(180deg, #5d5b5a 0%, #444240 100%);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.06),
    inset 0 -12px 22px rgba(0, 0, 0, 0.12);
}

.delivery-motion-road__lane-track {
  position: absolute;
  left: 3%;
  bottom: 49px;
  width: 200%;
  height: 8px;
  display: flex;
  z-index: 1;
}

.delivery-motion-road__lane-copy {
  flex: 0 0 50%;
  border-radius: 999px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(247, 239, 215, 0.94) 0 34px,
      transparent 34px 74px
    );
}

.delivery-scene-svg {
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
  overflow: visible;
}

.delivery-scene-svg * {
  vector-effect: non-scaling-stroke;
}

#delivery-truck,
#delivery-truck-float,
#delivery-shadow,
#delivery-wheel-rear,
#delivery-wheel-front,
#delivery-boom-primary,
#delivery-boom-secondary,
#delivery-hook-assembly,
.delivery-wheel,
.delivery-wheel__rim {
  will-change: transform, opacity;
}

#delivery-truck,
#delivery-truck-float,
#delivery-shadow,
#delivery-wheel-rear,
#delivery-wheel-front,
.delivery-wheel,
.delivery-wheel__rim {
  transform-box: fill-box;
}

#delivery-truck,
#delivery-truck-float {
  transform-origin: center bottom;
}

#delivery-shadow,
#delivery-wheel-rear,
#delivery-wheel-front,
.delivery-wheel,
.delivery-wheel__rim {
  transform-origin: center center;
}

/* =========================================
   DELIVERY CALC — вернуть карточную подачу
   ========================================= */

.delivery-calc {
  padding-top: 26px;
}

.delivery-calc .section-head {
  margin-bottom: 18px;
}

.delivery-calc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.delivery-calc-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 100%;
  padding: 28px 22px 24px;
  border: 1px solid rgba(102, 67, 34, 0.08);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(57, 37, 16, 0.06);
}

.delivery-calc-card--accent {
  border-color: rgba(102, 67, 34, 0.08);
  background: #ffffff;
}

.delivery-calc-card .info-card__title {
  margin: 0;
  color: #221913;
  font-size: clamp(1.08rem, 1.15vw, 1.34rem);
  line-height: 1.22;
}

.delivery-calc-card .info-card__text {
  margin: 0;
  color: #221913;
  font-size: 1rem;
  line-height: 1.58;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1240px) {
  .page-hero--delivery .hero__title {
    max-width: 8.8ch;
    font-size: clamp(2.3rem, 4vw, 3.6rem);
  }

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

@media (max-width: 1180px) {
  .delivery-visual {
    min-height: 460px;
  }
}

@media (max-width: 760px) {
  .page-hero--delivery .hero__content {
    min-height: auto;
    padding: 18px;
  }

  .page-hero--delivery .hero__title {
    max-width: 9.2ch;
    font-size: clamp(2rem, 8vw, 3.1rem);
    line-height: 0.94;
  }

  .page-hero--delivery .hero__lead {
    font-size: 0.96rem;
  }

  .delivery-visual {
    min-height: 430px;
    border-radius: 26px;
  }

  .delivery-visual__sun,
  .delivery-visual__moon {
    top: 22px;
    right: 22px;
    width: 62px;
    height: 62px;
  }

  .delivery-motion-road {
    height: 124px;
  }

  .delivery-motion-road__surface {
    bottom: 20px;
    height: 56px;
  }

  .delivery-motion-road__lane-track {
    bottom: 44px;
    height: 7px;
  }

  .delivery-motion-road__lane-copy {
    background:
      repeating-linear-gradient(
        90deg,
        rgba(247, 239, 215, 0.94) 0 26px,
        transparent 26px 58px
      );
  }

  .delivery-calc-grid {
    grid-template-columns: 1fr;
  }

  .delivery-calc-card {
    padding: 24px 18px 22px;
    border-radius: 24px;
  }

  .delivery-calc-card .info-card__text {
    font-size: 0.96rem;
  }
}

@media (max-width: 520px) {
  .delivery-visual {
    min-height: 402px;
    border-radius: 24px;
  }

  .delivery-visual__sun,
  .delivery-visual__moon {
    top: 18px;
    right: 18px;
    width: 56px;
    height: 56px;
  }

  .delivery-motion-road {
    height: 116px;
  }

  .delivery-motion-road__surface {
    bottom: 16px;
    height: 50px;
  }

  .delivery-motion-road__lane-track {
    left: 4%;
    bottom: 37px;
    height: 6px;
  }

  .delivery-motion-road__lane-copy {
    background:
      repeating-linear-gradient(
        90deg,
        rgba(247, 239, 215, 0.94) 0 20px,
        transparent 20px 46px
      );
  }

  .delivery-visual__stars span:nth-child(4),
  .delivery-visual__stars span:nth-child(10) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .delivery-visual__nightwash,
  .delivery-visual__stars,
  .delivery-visual__moon {
    opacity: 0 !important;
  }

  .delivery-visual__sun {
    opacity: 1 !important;
    transform: none !important;
  }

  .delivery-motion-road__lane-track,
  #delivery-truck,
  #delivery-truck-float,
  #delivery-wheel-rear,
  #delivery-wheel-front,
  #delivery-wheel-rear .delivery-wheel__rim,
  #delivery-wheel-front .delivery-wheel__rim,
  #delivery-shadow {
    transform: none !important;
  }
}














































































































































































.gp-public-catalog-section {
  padding: 24px 0 0;
}

.gp-public-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.gp-public-catalog-state {
  background: #ffffff;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 24px;
  padding: 24px;
  color: #1f1f1f;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.gp-public-card {
  background: #ffffff;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.gp-public-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(245, 245, 245, 0.95), rgba(232, 232, 232, 0.95));
  overflow: hidden;
}

.gp-public-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #f3f3f3;
}

.gp-public-card__image--hidden {
  display: none;
}

.gp-public-card__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #575757;
  padding: 16px;
  text-align: center;
}

.gp-public-card__body {
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 auto;
}

.gp-public-card__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  color: #131313;
}

.gp-public-card__text {
  margin: 0;
  color: #383838;
  line-height: 1.55;
  font-size: 15px;
}

.gp-public-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gp-public-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f6f6f6;
  color: #1d1d1d;
  font-size: 14px;
  font-weight: 600;
}

.gp-public-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
}

.gp-public-card__favorite {
  appearance: none;
  border: 1px solid rgba(20, 20, 20, 0.12);
  background: #ffffff;
  color: #161616;
  border-radius: 999px;
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.gp-public-card__favorite.is-active {
  background: #161616;
  color: #ffffff;
  border-color: #161616;
}

.gp-public-card__id {
  color: #666666;
  font-size: 13px;
}

@media (max-width: 640px) {
  .gp-public-catalog-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gp-public-card__body {
    padding: 18px 16px 16px;
  }
}




















































































































































/* =========================================
   CONTACTS PAGE
   ========================================= */
.page-contacts .page-main {
  display: block;
}

.page-contacts .section-block--compact {
  padding-block: clamp(48px, 6vw, 80px);
}

.contacts-hero {
  padding: clamp(20px, 4vw, 40px) 0 0;
}

.contacts-hero-single {
  position: relative;
  overflow: hidden;
  min-height: clamp(300px, 34vw, 430px);
  display: flex;
  align-items: center;
  padding: clamp(22px, 3.2vw, 38px);
  border: 1px solid rgba(92, 63, 33, 0.14);
  border-radius: 40px;
  background: #ffffff;
  box-shadow: 0 28px 60px rgba(62, 40, 21, 0.10);
  isolation: isolate;
}

.contacts-hero-single::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(180deg, #c78534 0%, #8d5a2a 100%);
}

.contacts-hero-single::after {
  display: none;
}

.contacts-hero-single__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin-left: clamp(12px, 1.6vw, 22px);
  text-align: left;
}

.contacts-hero-single__content::before {
  content: none;
  display: none;
}

.contacts-hero-single__title {
  margin: 0;
  max-width: none;
  width: 100%;
  color: #21150d;
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.contacts-hero-single__lead {
  width: 100%;
  max-width: none;
  margin: 20px 0 0;
  color: rgba(60, 40, 22, 0.78);
  font-size: 1rem;
  line-height: 1.68;
}

.contacts-hero-single__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  padding: 10px;
  border: 1px solid rgba(92, 63, 33, 0.10);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 30px rgba(62, 40, 21, 0.08);
  backdrop-filter: blur(10px);
}

.contacts-hero-single__actions .button {
  min-height: 52px;
  padding-inline: 22px;
  border-radius: 999px;
}

.contacts-hero-single__actions .button:first-child {
  box-shadow: 0 14px 24px rgba(183, 120, 54, 0.24);
}

.contacts-hero-single__actions .button:last-child {
  background: #ffffff;
  border: 1px solid rgba(92, 63, 33, 0.16);
  color: var(--color-text);
}

.contacts-main-section {
  padding-top: clamp(28px, 4vw, 44px);
}

.contacts-main-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: stretch;
}

.contacts-main-grid__aside {
  display: grid;
  gap: 22px;
  align-content: start;
}

.contacts-info-card,
.contacts-note-card,
.contacts-map-card {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--color-border);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(62, 40, 21, 0.07);
}

.contacts-info-card__title,
.contacts-note-card__title,
.contacts-map-card__title {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.18;
}

.contacts-info-list {
  display: grid;
  gap: 16px;
  margin: 18px 0 0;
}

.contacts-info-list__row {
  display: grid;
  gap: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(72, 48, 25, 0.08);
}

.contacts-info-list__row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contacts-info-list dt {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contacts-info-list dd {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.contacts-info-list dd a {
  color: var(--color-accent-dark);
  word-break: break-word;
}

.contacts-note-card__list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.contacts-note-card__list li {
  position: relative;
  padding-left: 22px;
  color: var(--color-text-muted);
  line-height: 1.62;
}

.contacts-note-card__list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(182, 122, 58, 1) 0%, rgba(130, 83, 39, 1) 100%);
  box-shadow: 0 0 0 4px rgba(182, 122, 58, 0.12);
  transform: translateY(-50%);
}

.contacts-map-card {
  display: grid;
  gap: 18px;
}

.contacts-map-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.contacts-map-card__eyebrow {
  margin: 0 0 6px;
  color: var(--color-accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contacts-map-card__summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contacts-map-card__summary span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(110, 73, 35, 0.08);
  color: var(--color-text);
  font-size: 0.88rem;
  font-weight: 700;
}

.contacts-map-card__frame {
  overflow: hidden;
  border: 1px solid rgba(72, 48, 25, 0.12);
  border-radius: 26px;
  background: #ffffff;
}

.contacts-map-card__frame iframe {
  display: block;
  width: 100%;
  min-height: 520px;
  border: 0;
}

.contacts-map-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.contacts-map-card__hint {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .contacts-main-grid {
    grid-template-columns: 1fr;
  }

  .contacts-hero-single__title {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .contacts-hero-single,
  .contacts-info-card,
  .contacts-note-card,
  .contacts-map-card {
    padding: 20px;
    border-radius: 24px;
  }

  .contacts-hero-single {
    min-height: auto;
    background: #ffffff;
  }

  .contacts-hero-single::before {
    width: 6px;
  }

  .contacts-hero-single::after {
    display: none;
  }

  .contacts-hero-single__content {
    width: 100%;
    max-width: none;
    margin-left: 8px;
    text-align: left;
  }

  .contacts-hero-single__title,
  .contacts-hero-single__lead {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .contacts-hero-single__title {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 0.94;
  }

  .contacts-hero-single__actions {
    display: grid;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    justify-content: flex-start;
  }

  .contacts-hero-single__actions .button,
  .contacts-map-card__footer .button {
    width: 100%;
  }

  .contacts-map-card__head,
  .contacts-map-card__footer {
    display: grid;
  }

  .contacts-map-card__frame iframe {
    min-height: 340px;
  }
}

/* HERO PHOTO SLOT 12 START */
.hero__visual--photos {
  display: flex;
}

.hero-photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  min-height: clamp(420px, 31vw, 520px);
  height: 100%;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border-radius: 32px;
  border: 1px solid rgba(102, 67, 34, 0.12);
  background: #ffffff;
  box-shadow:
    0 24px 64px rgba(57, 37, 16, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.hero-photo--main {
  min-height: clamp(420px, 31vw, 520px);
}

.hero-photo__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.hero-photo:hover .hero-photo__image,
.hero-photo:focus-within .hero-photo__image {
  transform: scale(1.03);
}

.hero-photo__caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.62);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  backdrop-filter: blur(4px);
  z-index: 2;
}

@media (max-width: 1240px) {
  .hero-photo-grid {
    min-height: auto;
  }

  .hero-photo--main {
    min-height: clamp(340px, 52vw, 460px);
  }
}

@media (max-width: 760px) {
  .hero-photo {
    border-radius: 24px;
  }

  .hero-photo--main {
    min-height: 300px;
  }

  .hero-photo__caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    font-size: 0.74rem;
  }
}
/* HERO PHOTO SLOT 12 END */

/* GP_P48H_HOME_MODAL_START */
.modal__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}

.modal__section {
  margin-top: 22px;
}

.modal__section[hidden] {
  display: none;
}

.modal__section-title {
  margin: 0 0 12px;
  color: var(--color-text);
  font-size: 1.05rem;
  font-weight: 800;
}

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

.modal__video-card {
  overflow: hidden;
  border: 1px solid rgba(72, 48, 25, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.modal__video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0f0f0f;
}

.modal__video-caption {
  padding: 12px 14px;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.modal-slider__frame::after {
  content: '🔍';
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(18, 12, 8, 0.62);
  color: #ffffff;
  font-size: 1rem;
  line-height: 1;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
}

.modal-slider__frame:hover::after,
.modal-slider__frame:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}
/* GP_P48H_HOME_MODAL_END */

/* GP_P48H6_PUBLIC_VISIBILITY_FIXES */
html.is-modal-open,
body.is-modal-open,
html.modal-open,
body.modal-open {
  overflow: hidden !important;
}

.catalog-card__description,
.catalog-modal__description,
.catalog-modal__description-row,
.catalog-modal__description-label,
.catalog-modal__description-value,
.modal__text,
#catalog-modal-text,
#catalog-modal-description,
#catalog-modal-description-row {
  display: none !important;
}

.catalog-card__title[aria-hidden="true"],
.catalog-modal__title[aria-hidden="true"],
.modal__title[aria-hidden="true"],
#catalog-modal-title[aria-hidden="true"],
#modal-title[aria-hidden="true"],
.catalog-modal__section-title[aria-hidden="true"],
.modal__section-title[aria-hidden="true"] {
  display: none !important;
}


/* PRE-P5.SEO breadcrumb styles */
.page-breadcrumbs {
  margin-bottom: 18px;
}

.page-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(18, 12, 8, 0.72);
  font-size: 0.92rem;
}

.page-breadcrumbs__item + .page-breadcrumbs__item::before {
  content: '/';
  color: rgba(18, 12, 8, 0.34);
}

.page-breadcrumbs__link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  transition: color var(--transition), border-color var(--transition);
}

.page-breadcrumbs__link:hover,
.page-breadcrumbs__link:focus-visible {
  color: var(--color-accent-dark);
  border-color: rgba(183, 119, 46, 0.34);
}

.page-breadcrumbs__item[aria-current="page"] {
  color: #120c08;
  font-weight: 700;
}

/* GPT FIX :: delivery hero grid restore v2 */
.page-hero--delivery .page-breadcrumbs {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.page-hero--delivery .hero__content {
  grid-column: 1;
  grid-row: 2;
}

.page-hero--delivery .delivery-hero__visual,
.page-hero--delivery .hero__visual {
  grid-column: 2;
  grid-row: 2;
}

@media (max-width: 980px) {
  .page-hero--delivery .hero__inner {
    grid-template-columns: 1fr;
  }

  .page-hero--delivery .page-breadcrumbs,
  .page-hero--delivery .hero__content,
  .page-hero--delivery .delivery-hero__visual,
  .page-hero--delivery .hero__visual {
    grid-column: auto;
    grid-row: auto;
  }
}

/* GPT FIX :: delivery hero grid restore v3 */
.page-hero--delivery .hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.page-hero--delivery .page-breadcrumbs {
  grid-column: 1 / -1;
  grid-row: 1;
  margin-bottom: 2px;
}

.page-hero--delivery .hero__content {
  grid-column: 1;
  grid-row: 2;
}

.page-hero--delivery .delivery-hero__visual,
.page-hero--delivery .hero__visual {
  grid-column: 2;
  grid-row: 2;
  align-self: stretch;
}

@media (max-width: 980px) {
  .page-hero--delivery .hero__inner {
    grid-template-columns: 1fr;
  }

  .page-hero--delivery .page-breadcrumbs,
  .page-hero--delivery .hero__content,
  .page-hero--delivery .delivery-hero__visual,
  .page-hero--delivery .hero__visual {
    grid-column: auto;
    grid-row: auto;
  }
}

/* GPT FIX :: delivery hero grid restore v4 */
.page-hero--delivery .hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.page-hero--delivery .page-breadcrumbs {
  grid-column: 1 / -1;
  grid-row: 1;
  margin-bottom: 2px;
}

.page-hero--delivery .hero__content {
  grid-column: 1;
  grid-row: 2;
}

.page-hero--delivery .delivery-hero__visual,
.page-hero--delivery .hero__visual {
  grid-column: 2;
  grid-row: 2;
  align-self: stretch;
}

@media (max-width: 980px) {
  .page-hero--delivery .hero__inner {
    grid-template-columns: 1fr;
  }

  .page-hero--delivery .page-breadcrumbs,
  .page-hero--delivery .hero__content,
  .page-hero--delivery .delivery-hero__visual,
  .page-hero--delivery .hero__visual {
    grid-column: auto;
    grid-row: auto;
  }
}

/* GPT P7.2 MOBILE HARDENING V1 :: style.css */
.menu-toggle,
.header-quick-link,
.menu__link,
.button,
.request-filter__button,
.request-select-item,
.modal__close,
.lightbox__close {
  touch-action: manipulation;
}

@media (max-width: 980px) {
  .page-hero--delivery .hero__inner {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .page-hero--delivery .page-breadcrumbs,
  .page-hero--delivery .hero__content,
  .page-hero--delivery .delivery-hero__visual,
  .page-hero--delivery .hero__visual {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .page-hero--delivery .hero__content {
    min-height: auto !important;
  }

  .delivery-visual {
    min-height: clamp(300px, 72vw, 420px) !important;
    border-radius: 26px !important;
  }
}

@media (max-width: 760px) {
  .header-actions,
  .header-phones,
  .header-quick-links {
    width: 100%;
  }

  .header-phones {
    align-items: flex-start !important;
  }

  .header-quick-links {
    justify-content: flex-start !important;
  }

  .request-form__grid,
  .request-select-list {
    grid-template-columns: 1fr !important;
  }

  .request-filter {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px !important;
  }

  .request-filter__button {
    width: 100%;
    min-height: 44px !important;
    justify-content: center;
  }

  .request-select-item {
    min-height: 56px;
    padding: 14px 14px !important;
  }

  .request-select-item input {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    margin-top: 2px;
  }

  .request-form__actions {
    display: grid !important;
    grid-template-columns: 1fr;
  }

  .request-form__actions .button {
    width: 100%;
    min-height: 46px;
  }

  .modal {
    align-items: flex-end;
    padding: 12px !important;
  }

  .modal__dialog,
  .modal__dialog--wide {
    width: min(100%, 100%) !important;
    max-height: calc(100vh - 20px) !important;
    padding: 18px 14px 18px !important;
    border-radius: 18px !important;
  }

  .modal-slider__viewport {
    min-height: clamp(240px, 64vw, 360px) !important;
    border-radius: 16px !important;
  }

  .modal-slider__slide {
    padding: 12px !important;
  }

  .lightbox {
    padding: 8px !important;
  }

  .lightbox__dialog {
    width: min(100%, 100%) !important;
    max-height: calc(100vh - 16px) !important;
    border-radius: 16px !important;
    padding: 8px !important;
  }

  .lightbox__image {
    max-height: calc(100vh - 72px) !important;
  }
}

@media (max-width: 560px) {
  .brand__text {
    font-size: 0.82rem;
  }

  .request-filter {
    grid-template-columns: 1fr !important;
  }

  .menu-toggle,
  .header-quick-link,
  .menu__link,
  .button,
  .request-filter__button,
  .modal__close,
  .lightbox__close {
    min-width: 44px;
    min-height: 44px;
  }

  .page-hero--delivery .hero__title {
    font-size: clamp(2.05rem, 10vw, 3rem) !important;
  }

  .page-hero--delivery .hero__lead {
    font-size: 0.95rem !important;
  }
}

/* GARANT-PLIT P10.11B REGION SEO BLOCK */
.service-area-section {
  position: relative;
}

.service-area-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(20px, 4vw, 40px);
  align-items: start;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(37, 53, 74, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(43, 137, 213, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 252, 0.96));
  box-shadow: 0 18px 54px rgba(17, 34, 54, 0.08);
}

.service-area-card__title {
  margin-bottom: 12px;
}

.service-area-card__lead,
.service-area-card__note {
  margin: 0;
  color: var(--color-muted, #5d6b7a);
  line-height: 1.7;
}

.service-area-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-area-list li {
  position: relative;
  padding: 12px 14px 12px 42px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-text, #1e2c3a);
  box-shadow: inset 0 0 0 1px rgba(37, 53, 74, 0.08);
}

.service-area-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--color-primary, #2b89d5);
  box-shadow: 0 0 0 5px rgba(43, 137, 213, 0.12);
}

.service-area-card__actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.service-area-card__note {
  grid-column: 1 / -1;
  padding-top: 4px;
}

@media (max-width: 760px) {
  .service-area-card {
    grid-template-columns: 1fr;
    padding: 22px;
    border-radius: 22px;
  }

  .service-area-card__actions {
    flex-direction: column;
  }

  .service-area-card__actions .button {
    width: 100%;
  }
}
/* END GARANT-PLIT P10.11B REGION SEO BLOCK */

/* GARANT-PLIT P10.12B SERVICES COMMERCIAL SEO */
.services-commercial-section {
  position: relative;
}

.services-commercial-card {
  display: grid;
  gap: clamp(22px, 4vw, 42px);
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(37, 53, 74, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 6%, rgba(43, 137, 213, 0.13), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.98));
  box-shadow: 0 20px 60px rgba(17, 34, 54, 0.09);
}

.services-commercial-card__lead {
  max-width: 860px;
  margin: 0;
  color: var(--color-muted, #5d6b7a);
  line-height: 1.75;
}

.services-commercial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.services-commercial-item {
  min-height: 100%;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 0 0 1px rgba(37, 53, 74, 0.08);
}

.services-commercial-item h3,
.services-commercial-subsection h3 {
  margin: 0 0 10px;
  color: var(--color-text, #1e2c3a);
  font-size: clamp(18px, 2vw, 22px);
}

.services-commercial-item p,
.services-commercial-subsection p,
.services-commercial-faq p {
  margin: 0;
  color: var(--color-muted, #5d6b7a);
  line-height: 1.65;
}

.services-commercial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
}

.services-commercial-subsection {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(37, 53, 74, 0.08);
}

.services-steps-list,
.services-price-list {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.services-steps-list li,
.services-price-list li {
  position: relative;
  padding: 10px 12px 10px 36px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-text, #1e2c3a);
}

.services-steps-list li::before,
.services-price-list li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary, #2b89d5);
  box-shadow: 0 0 0 5px rgba(43, 137, 213, 0.12);
}

.services-commercial-faq {
  display: grid;
  gap: 10px;
}

.services-commercial-faq details {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(37, 53, 74, 0.08);
  overflow: hidden;
}

.services-commercial-faq summary {
  cursor: pointer;
  padding: 14px 18px;
  color: var(--color-text, #1e2c3a);
  font-weight: 700;
}

.services-commercial-faq details p {
  padding: 0 18px 16px;
}

.services-commercial-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.services-commercial-note {
  margin: 0;
  color: var(--color-muted, #5d6b7a);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .services-commercial-grid,
  .services-commercial-layout {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .services-commercial-card {
    padding: 22px;
    border-radius: 24px;
  }

  .services-commercial-grid,
  .services-commercial-layout {
    grid-template-columns: 1fr;
  }

  .services-commercial-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .services-commercial-cta .button {
    width: 100%;
  }
}
/* END GARANT-PLIT P10.12B SERVICES COMMERCIAL SEO */

