/* ZENOA — бриф: Onyx / Pure White / Graphite / Soft Gold / Electric Silver */

:root {
  --onyx: #0b0b0c;
  --white: #ffffff;
  --graphite: #666a70;
  --soft-gold: #d0c6a6;
  --electric-silver: #c8ccd2;

  --color-bg: var(--white);
  --color-surface: #f3f3f4;
  --color-muted: var(--electric-silver);
  --color-accent: var(--soft-gold);
  --color-ink: var(--graphite);
  --color-ink-deep: var(--onyx);
  --color-header-bg: rgba(11, 11, 12, 0.92);
  --font-display: "Montserrat", system-ui, -apple-system, sans-serif;
  --font-body: "Montserrat", system-ui, -apple-system, sans-serif;
  --font-hero: "Montserrat", system-ui, -apple-system, sans-serif;
  --font-hero-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --container: 1200px;
  --pad-x: clamp(20px, 4vw, 40px);
  --section-y: 88px;
  --radius-btn:0px;
  --shadow-soft: 0 16px 48px rgba(11, 11, 12, 0.08);
  --shadow-card: 0 8px 32px rgba(11, 11, 12, 0.06);
  --shadow-led: 0 0 0 1px rgba(200, 204, 210, 0.6), 0 4px 24px rgba(11, 11, 12, 0.04);
  --glow-warm: 0 0 40px rgba(208, 198, 166, 0.45);
  --glow-led: 0 0 24px rgba(200, 204, 210, 0.35);
  --transition-btn: 0.3s ease;
  --transition-reveal: 0.55s ease-out;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 12px);
}

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

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .btn:hover {
    transform: none !important;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 2000;
  padding: 12px 16px;
  background: var(--onyx);
  color: var(--white);
  font-weight: 600;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* Логотип — слева вверху первого экрана (герой), уезжает при скролле */
.hero .brand-mark {
  display: none;
  position: absolute;
  top: max(14px, env(safe-area-inset-top, 0px));
  left: max(var(--pad-x), env(safe-area-inset-left, 0px));
  z-index: 4;
  line-height: 0;
  text-decoration: none;
  border-radius: 6px;
  transition: opacity var(--transition-btn);
}

.hero .brand-mark:hover {
  opacity: 0.9;
}

.hero .brand-mark:focus-visible {
  outline: 2px solid var(--soft-gold);
  outline-offset: 4px;
}

.hero .brand-mark img {
  display: block;
  height: clamp(96px, 28vw, 240px);
  width: auto;
  max-width: min(680px, 94vw);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* background: var(--color-header-bg); */
  border-bottom: 1px solid rgba(200, 204, 210, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-height);
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-header__logo {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  z-index: 1002;
}

.site-header__logo:hover {
  color: var(--white);
}

.site-header__burger {
  display: none;
  position: relative;
  z-index: 1002;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(200, 204, 210, 0.45);
  border-radius: var(--radius-btn);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.site-header__burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform var(--transition-btn), opacity var(--transition-btn);
}

.site-header__burger[aria-expanded="true"] .site-header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header__burger[aria-expanded="true"] .site-header__burger-line:nth-child(2) {
  opacity: 0;
}

.site-header__burger[aria-expanded="true"] .site-header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header__nav {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 24px);
  min-width: 0;
}

.site-header__menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(8px, 1.5vw, 20px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__nav a:not(.btn) {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: color var(--transition-btn);
  padding: 6px 4px;
}

.site-header__nav a:not(.btn):hover {
  color: var(--soft-gold);
}

.site-header__nav a:not(.btn):focus-visible {
  outline: 2px solid var(--soft-gold);
  outline-offset: 4px;
}

.site-header__tg {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
  line-height: 0;
  padding: 4px;
}

.site-header__tg:hover {
  color: #fff;
}

.site-header__tg-icon {
  display: block;
}

.btn--header {
  height: 44px;
  padding: 0 20px;
  font-size: 14px;
}

.site-header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 7, 6, 0.45);
  z-index: 1000;
}

.site-header__overlay[hidden] {
  display: none;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.45;
  color: var(--color-ink-deep);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--onyx);
  transition: color var(--transition-btn);
}

.section a:not(.btn):not(.contact-channel):hover {
  color: var(--soft-gold);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.heading-2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: var(--color-ink-deep);
  margin: 0 0 20px;
}

.heading-3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: var(--color-ink-deep);
  margin: 0 0 14px;
}

@media (min-width: 769px) {
  .heading-3 {
    font-size: 24px;
  }
}

.body-text {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 16px;
  color: var(--color-ink);
}

.body-text:last-child {
  margin-bottom: 0;
}

.section__intro {
  max-width: 640px;
  margin-bottom: 32px;
}

.section__h3 {
  margin-top: 8px;
  margin-bottom: 12px;
}

.section__lede {
  margin-bottom: 36px;
  max-width: 640px;
}

.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.section--brand {
  background-color: var(--color-bg);
}

/* The ZÉNOA Collection — статичная сетка по референсу */
.section--collection {
  background-color: #efeae0;
}

.collection__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.collection__title {
  font-family: var(--font-hero);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--color-ink-deep);
  margin: 0 0 12px;
}

.collection__title-brand {
  font-family: var(--font-hero-serif);
  font-weight: 600;
}

.collection__subtitle {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 17px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--color-ink-deep);
  margin: 0;
}

.collection__subtitle-comma {
  font-size: 0.58em;
  line-height: 0;
  font-weight: inherit;
  vertical-align: super;
  margin-left: 0.02em;
}

.collection__rule {
  display: block;
  width: 64px;
  height: 1px;
  background: #b8a98a;
  margin: 22px auto 0;
}

.collection-swiper-wrap {
  position: relative;
  margin: 0 0 48px;
}

.collection-swiper {
  width: 100%;
  padding-bottom: 4px;
  overflow: hidden;
}

.collection-swiper .swiper-wrapper {
  align-items: stretch;
}

.collection-swiper .swiper-slide {
  height: auto;
  display: flex;
  box-sizing: border-box;
}

.collection__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-height: 100%;
  margin: 0;
}

.collection__media {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  margin: 0 0 22px;
  box-shadow: var(--shadow-card);
  background: var(--white);
}

.collection__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collection__body {
  position: relative;
  width: 100%;
  padding-left: 18px;
  border-left: 1px solid #c9bfa6;
}

.collection__num {
  font-family: var(--font-hero);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-variant-numeric: tabular-nums;
  color: var(--color-ink);
  display: block;
  margin-bottom: 10px;
}

.collection__name {
  font-family: var(--font-hero);
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--color-ink-deep);
  margin: 0 0 12px;
}

.collection__desc {
  font-family: var(--font-hero);
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-ink);
  margin: 0 0 0.45em;
  max-width: 100%;
}

.collection__item .collection__desc:last-child {
  margin-bottom: 0;
}

@media (min-width: 1025px) {
  .collection-swiper .collection__desc {
    max-width: 28ch;
  }
}

.collection-swiper__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 28px;
  margin-top: 28px;
  padding: 0 4px;
}

.collection-swiper__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--color-muted);
  border-radius: var(--radius-btn);
  background: var(--white);
  color: var(--color-ink-deep);
  cursor: pointer;
  flex-shrink: 0;
  transition:
          background-color var(--transition-btn),
          border-color var(--transition-btn),
          color var(--transition-btn),
          opacity var(--transition-btn);
}

.collection-swiper__btn:hover:not(:disabled) {
  border-color: var(--soft-gold);
  background: #f5f1ea;
  box-shadow: var(--glow-led);
}

.collection-swiper__btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.collection-swiper__btn:disabled,
.collection-swiper__btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.collection-swiper__icon {
  position: relative;
  width: 9px;
  height: 9px;
  display: block;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: -3px;
}

.collection-swiper__btn--prev .collection-swiper__icon {
  transform: rotate(-135deg);
  margin-left: 3px;
}

.collection-swiper__pagination {
  display: none;
  position: relative !important;
  width: 100% !important;
  max-width: none;
  height: 3px;
  margin-top: 16px !important;
  background: rgba(102, 106, 112, 0.2);
  border-radius: 999px;
  overflow: hidden;
}

.collection-swiper__pagination.swiper-pagination-horizontal {
  position: relative !important;
}

.collection-swiper__pagination .swiper-pagination-progressbar-fill {
  background: var(--onyx);
  border-radius: inherit;
}

@media (min-width: 1025px) {
  .collection-swiper__controls {
    display: none;
  }
}

/* Полоса параметров (моно-иконки) */
.section--specs {
  padding-top: clamp(48px, 8vw, 72px);
  background-color: var(--color-bg);
  border-bottom: 1px solid rgba(200, 204, 210, 0.45);
}

.spec-strip__heading {
  text-align: center;
  margin-bottom: 12px;
}

.spec-strip__intro {
  text-align: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  color: var(--color-ink);
}

.spec-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px 24px;
}

.spec-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 20px 14px 22px;
  border: 1px solid var(--electric-silver);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-led);
  transition:
          border-color var(--transition-btn),
          box-shadow var(--transition-btn);
}

.spec-strip__item:hover {
  border-color: var(--soft-gold);
  box-shadow: 0 0 0 1px rgba(208, 198, 166, 0.45), 0 8px 32px rgba(11, 11, 12, 0.06);
}

.spec-strip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--onyx);
}

.spec-strip__icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.spec-strip__label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--onyx);
  line-height: 1.2;
}

.spec-strip__hint {
  font-size: 12px;
  line-height: 1.4;
  color: var(--graphite);
  max-width: 20ch;
}

@media (min-width: 1024px) {
  .spec-strip {
    grid-template-columns: repeat(7, 1fr);
  }
}

/* Designed for Every Space */
.section--spaces {
  background-color: #f7f3ec;
}

.section--spaces .container {
  max-width: min(1560px, 100%);
}

.spaces__head {
  text-align: center;
  max-width: 645px;
  margin: 0 auto 52px;
}

.spaces__title {
  font-family: var(--font-hero);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.01em;
  color: var(--color-ink-deep);
  margin: 0 0 14px;
}

.spaces__subtitle {
  font-family: var(--font-hero);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-ink);
  margin: 0;
}

.spaces-swiper-wrap {
  width: 100%;
}

.spaces-swiper__pagination {
  display: none;
  position: relative !important;
  width: 100% !important;
  max-width: none;
  height: 3px;
  margin-top: 16px !important;
  background: rgba(102, 106, 112, 0.2);
  border-radius: 999px;
  overflow: hidden;
}

.spaces-swiper__pagination.swiper-pagination-horizontal {
  position: relative !important;
}

.spaces-swiper__pagination .swiper-pagination-progressbar-fill {
  background: var(--onyx);
  border-radius: inherit;
}

/* Планшет и десктоп: сетка без Swiper */
@media (min-width: 768px) {
  .spaces-swiper {
    overflow: visible;
  }

  .spaces-swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(14px, 1.8vw, 22px);
    transform: none !important;
  }

  .spaces-swiper .swiper-slide {
    width: auto !important;
    height: auto;
    margin: 0 !important;
  }
}

.spaces__item {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.spaces__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1535 / 1024;
  overflow: hidden;
  border-radius: 2px;
  background: var(--color-muted);
}

.spaces__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

.spaces__item:hover .spaces__media img {
  transform: scale(1.05);
}

.spaces__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 22px 24px;
  box-sizing: border-box;
  background: linear-gradient(
          180deg,
          rgba(11, 11, 12, 0) 0%,
          rgba(11, 11, 12, 0.55) 40%,
          rgba(11, 11, 12, 0.88) 100%
  );
  opacity: 0;
  transition: opacity 0.38s ease;
  pointer-events: none;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.spaces__item:hover .spaces__overlay,
.spaces--touch-active .spaces__overlay {
  opacity: 1;
}

.spaces--touch-active .spaces__overlay {
  pointer-events: auto;
}

.spaces--touch-active .spaces__media img {
  transform: scale(1.05);
}

.spaces__overlay-title,
.spaces__overlay-lead,
.spaces__overlay-body {
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.spaces__overlay-title {
  font-family: var(--font-hero);
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0 0 10px;
  line-height: 1.3;
}

.spaces__overlay-lead {
  font-family: var(--font-hero);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 8px;
}

.spaces__overlay-body {
  font-family: var(--font-hero);
  font-size: clamp(11px, 0.95vw, 13px);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(208, 198, 166, 0.92);
  margin: 0;
}

.spaces__label {
  font-family: var(--font-hero);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-ink-deep);
  margin-top: 14px;
  padding-left: 2px;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .spaces-swiper .swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 767px) {
  .collection-swiper__pagination,
  .spaces-swiper__pagination {
    display: block;
  }

  .spaces-swiper-wrap {
    overflow: hidden;
  }

  .spaces-swiper .swiper-slide {
    height: auto;
  }

  .spaces__head {
    margin-bottom: 36px;
  }

  .spaces__overlay {
    justify-content: flex-end;
    padding: 18px 16px 16px;
    background: linear-gradient(
            180deg,
            rgba(11, 11, 12, 0.12) 0%,
            rgba(11, 11, 12, 0.72) 35%,
            rgba(11, 11, 12, 0.94) 100%
    );
  }

  .spaces__overlay-title {
    font-size: clamp(13px, 3.6vw, 16px);
    line-height: 1.3;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
  }

  .spaces__overlay-lead {
    font-size: clamp(12px, 3.2vw, 14px);
    line-height: 1.5;
    margin-bottom: 6px;
  }

  .spaces__overlay-body {
    font-size: clamp(11px, 3vw, 13px);
    line-height: 1.5;
  }
}

.section--scenarios {
  background-color: var(--color-surface);
}

/* Фон: spa / камень, затемнение для читабельности */
.section--contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid rgba(200, 204, 210, 0.35);
}

.section--contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--onyx);
  background-image: url("images/photo_2026-04-27 00.40.10.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section--contact::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
          180deg,
          rgba(11, 11, 12, 0.5) 0%,
          rgba(11, 11, 12, 0.65) 45%,
          rgba(11, 11, 12, 0.82) 100%
  );
}

.section--contact > .container {
  position: relative;
  z-index: 1;
}

.contact-section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.section--contact .contact-section__eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200, 204, 210, 0.88);
  margin: 0 0 12px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.section--contact .contact-section__title.heading-2,
.section--contact .contact-section__title {
  margin-bottom: 16px;
  color: var(--white);
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}

.section--contact .contact-section__intro {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.35);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
          transform var(--transition-btn),
          box-shadow var(--transition-btn),
          background-color var(--transition-btn),
          border-color var(--transition-btn),
          color var(--transition-btn);
}

.btn:hover {
  transform: scale(1.02);
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.btn--primary {
  background-color: #5c3f20;
  color: var(--white);
  border-color: #5c3f20;
}

.btn--primary:hover {
  box-shadow: var(--glow-warm);
}

/* Герой: основной CTA — кремовый фон (читабельный тёмный текст) */
.hero .btn--primary {
  background-color: #f0e3d2;
  color: var(--onyx);
  border-color: #f0e3d2;
}

.hero .btn--primary:hover {
  background-color: #e6d6c2;
  border-color: #e6d6c2;
  box-shadow: 0 8px 28px rgba(11, 11, 12, 0.15);
}

.btn--secondary {
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid var(--electric-silver);
  box-shadow: 0 0 0 1px rgba(200, 204, 210, 0.25);
}

.btn--secondary:hover {
  background-color: rgba(200, 204, 210, 0.12);
  box-shadow: var(--glow-led);
  border-color: var(--soft-gold);
}

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

.btn__icon-tg {
  width: 20px;
  height: 20px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.64 6.8c-.15 1.58-.8 5.42-1.13 7.19-.14.75-.42 1-.68 1.03-.58.05-1.02-.38-1.58-.75-.88-.58-1.38-.94-2.23-1.5-.99-.65-.35-1.01.22-1.59.15-.15 2.71-2.48 2.76-2.69a.2.2 0 00-.05-.18c-.06-.05-.14-.03-.21-.02-.09.02-1.49.95-4.22 2.79-.4.27-.76.41-1.08.4-.36-.01-1.04-.2-1.55-.37-.63-.2-1.12-.31-1.08-.66.02-.18.27-.36.74-.55 2.92-1.27 4.86-2.11 5.83-2.51 2.78-1.16 3.35-1.36 3.73-1.36.08 0 .27.02.39.12.1.08.13.19.14.27-.01.06.01.24 0 .38z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.64 6.8c-.15 1.58-.8 5.42-1.13 7.19-.14.75-.42 1-.68 1.03-.58.05-1.02-.38-1.58-.75-.88-.58-1.38-.94-2.23-1.5-.99-.65-.35-1.01.22-1.59.15-.15 2.71-2.48 2.76-2.69a.2.2 0 00-.05-.18c-.06-.05-.14-.03-.21-.02-.09.02-1.49.95-4.22 2.79-.4.27-.76.41-1.08.4-.36-.01-1.04-.2-1.55-.37-.63-.2-1.12-.31-1.08-.66.02-.18.27-.36.74-.55 2.92-1.27 4.86-2.11 5.83-2.51 2.78-1.16 3.35-1.36 3.73-1.36.08 0 .27.02.39.12.1.08.13.19.14.27-.01.06.01.24 0 .38z'/%3E%3C/svg%3E") center / contain no-repeat;
  flex-shrink: 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("images/IMG_9852.JPG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Слой только для читаемости типографики; чем слабее — тем ближе фото к файлу-оригиналу */
  background: linear-gradient(
          180deg,
          rgba(11, 11, 12, 0.14) 0%,
          rgba(11, 11, 12, 0.32) 100%
  );
}

@media (max-width: 767px) {
  .hero__scrim {
    background: linear-gradient(
            180deg,
            rgba(11, 11, 12, 0.2) 0%,
            rgba(11, 11, 12, 0.42) 100%
    );
  }
}

.hero__inner {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: max(env(safe-area-inset-top, 0px), calc(var(--header-height) + 24px));
  padding-bottom: max(40px, env(safe-area-inset-bottom, 0px));
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hero__logo {
  display: block;
  margin: 0 0 clamp(20px, 5vw, 36px);
  line-height: 0;
  text-decoration: none;
  transition: opacity var(--transition-btn);
}

.hero__logo:hover {
  opacity: 0.92;
}

.hero__logo:focus-visible {
  outline: 2px solid var(--soft-gold);
  outline-offset: 6px;
  border-radius: 6px;
}

.hero__logo-img {
  display: block;
  margin: 0 auto;
  height: clamp(110px, 34vw, 280px);
  width: auto;
  max-width: min(720px, 94vw);
}

.hero__kicker {
  font-family: var(--font-hero-serif);
  font-size: clamp(2rem, 9vw, 5rem);
  font-weight: 600;
  letter-spacing: normal;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 clamp(12px, 3vw, 16px);
  line-height: 1.05;
  max-width: 100%;
  overflow-wrap: break-word;
  hyphens: none;
}

.hero__title {
  font-family: var(--font-hero-serif);
  font-size: clamp(1.5rem, 6vw, 3.25rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0 0 clamp(12px, 3vw, 16px);
  text-shadow: 0 8px 48px rgba(0, 0, 0, 0.35);
  max-width: 22ch;
  text-wrap: balance;
}

.hero__subtitle {
  font-family: var(--font-hero);
  font-size: 1.125rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero__value {
  font-family: var(--font-display);
  font-size: clamp(0.9375rem, 2.8vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
  max-width: 50rem;
  margin: 0 auto clamp(24px, 5vw, 32px);
  padding: 0;
}

/* Tunnel arc: переход в светлую зону */
.hero__tunnel {
  position: relative;
  z-index: 4;
  width: 100%;
  line-height: 0;
  margin-top: auto;
  color: var(--white);
  flex-shrink: 0;
}

.hero__tunnel-svg {
  display: block;
  width: 100%;
  height: clamp(32px, 5vw, 56px);
}

@media (min-width: 1440px) {
  .hero__title {
    font-size: clamp(2.75rem, 3vw, 3.75rem);
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: min(100%, 420px);
  margin: 0 auto;
  box-sizing: border-box;
}

.hero .btn {
  font-family: var(--font-hero);
}

/* Герой — телефоны и узкие экраны */
@media (max-width: 767px) {
  .hero {
    min-height: 100dvh;
    min-height: 100svh;
  }

  .hero__bg {
    background-image: url("images/IMG_9851.JPG");
    background-position: center top;
  }

  .hero__inner {
    padding-top: max(1rem, env(safe-area-inset-top, 0px), 24px);
    padding-bottom: max(10.5rem, env(safe-area-inset-bottom, 0px));
    justify-content: center;
  }

  .hero__kicker {
    font-size: clamp(3.75rem, 11vw, 3.25rem);
  }

  .footer__brand {
    font-size: clamp(3.75rem, 11vw, 3.25rem);
  }

  .hero__title {
    max-width: 100%;
    font-size: clamp(1.35rem, 5.5vw, 2.25rem);
  }

  .hero__value {
    max-width: 100%;
    padding: 0 2px;
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: clamp(8px, 3vw, 14px);
    max-width: 100%;
    padding-inline: 0;
  }

  .hero .btn {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    min-height: 48px;
    padding-inline: clamp(14px, 4vw, 22px);
    font-size: clamp(13px, 3.4vw, 15px);
  }
}

/* Узкие телефоны */
@media (max-width: 380px) {
  .hero__kicker {
    font-size: clamp(1.5rem, 10vw, 2.5rem);
  }

  .footer__brand {
    font-size: clamp(1.5rem, 10vw, 2.5rem);
  }
}

/* Ассортимент — Swiper */
.assortment-swiper-wrap {
  position: relative;
  margin: 0 0 40px;
}

.assortment-swiper {
  width: 100%;
  padding-bottom: 4px;
  overflow: hidden;
}

.assortment-swiper .swiper-wrapper {
  align-items: stretch;
}

.assortment-swiper .swiper-slide {
  height: auto;
  display: flex;
  box-sizing: border-box;
}

.assortment-swiper .product-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  margin: 0;
}

.assortment-swiper__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 28px;
  margin-top: 28px;
  padding: 0 4px;
}

.assortment-swiper__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--color-muted);
  border-radius: var(--radius-btn);
  background: var(--white);
  color: var(--color-ink-deep);
  cursor: pointer;
  flex-shrink: 0;
  transition:
          background-color var(--transition-btn),
          border-color var(--transition-btn),
          color var(--transition-btn),
          opacity var(--transition-btn);
}

.assortment-swiper__btn:hover:not(:disabled) {
  border-color: var(--soft-gold);
  background: var(--color-surface);
  box-shadow: var(--glow-led);
}

.assortment-swiper__btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.assortment-swiper__btn:disabled,
.assortment-swiper__btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.assortment-swiper__icon {
  position: relative;
  width: 9px;
  height: 9px;
  display: block;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: -3px;
}

.assortment-swiper__btn--prev .assortment-swiper__icon {
  transform: rotate(-135deg);
  margin-left: 3px;
}

.assortment-swiper__pagination {
  position: static !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 10px;
  width: auto !important;
  max-width: 240px;
  margin: 0 !important;
  min-height: 10px;
}

.assortment-swiper__pagination.swiper-pagination-horizontal {
  position: static !important;
}

.assortment-swiper__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background: var(--color-muted);
  opacity: 1;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.assortment-swiper__pagination .swiper-pagination-bullet:hover {
  background: var(--onyx);
}

.assortment-swiper__pagination .swiper-pagination-bullet-active {
  background: var(--onyx);
  transform: scale(1.2);
}

/* Превью в слайдере: единый квадрат 1:1 (атрибуты width/height 1254 у всех карточек) */
.assortment-swiper .card__image-wrap img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.product-card .card__title {
  margin-bottom: 8px;
}

.product-card .card__meta {
  font-size: 15px;
  line-height: 1.45;
  color: var(--color-ink);
  margin: 0;
}

.card__image-wrap {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(200, 204, 210, 0.45);
}

.card__image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.section__cta {
  text-align: center;
  margin: 0;
}

/* Scenarios */
.scenario-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 8px;
}

.scenario-card {
  background: var(--white);
  border: 1px solid var(--electric-silver);
  border-radius: 8px;
  padding: 28px 28px 32px;
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(200, 204, 210, 0.35);
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  transition: border-color var(--transition-btn), box-shadow var(--transition-btn);
}

.scenario-card:hover {
  border-color: var(--soft-gold);
  box-shadow: var(--shadow-card), 0 0 20px rgba(208, 198, 166, 0.2);
}

.scenario-card .body-text {
  margin-bottom: 16px;
  color: var(--color-ink);
}

.scenario-card__list {
  margin: 0 0 24px;
  padding: 0 0 0 1.1em;
  color: var(--color-ink-deep);
  line-height: 1.5;
  font-size: 15px;
}

.scenario-card__list li {
  margin-bottom: 8px;
}

.scenario-card__list li:last-child {
  margin-bottom: 0;
}

.scenario-card .btn {
  margin-top: auto;
}

/* Контакты + форма */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px 40px;
  align-items: stretch;
  margin-top: 0;
}

.contact-grid__actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--electric-silver);
  border-radius: 10px;
  padding: 28px 26px 30px;
  box-shadow: var(--shadow-card);
  height: 100%;
}

.contact-card--form {
  background: var(--white);
  padding-bottom: 32px;
}

.section--contact .contact-card {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(200, 204, 210, 0.25);
  border-color: rgba(200, 204, 210, 0.45);
}

.contact-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-ink-deep);
  margin: 0 0 10px;
}

.contact-card__lede {
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-ink);
  margin: 0 0 22px;
}

.contact-card__lede--form {
  margin-bottom: 20px;
}

.contact-card__note {
  font-size: 12px;
  line-height: 1.4;
  color: var(--color-ink);
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--electric-silver);
}

.contact-channels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--onyx);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--electric-silver);
  transition:
          background-color var(--transition-btn),
          border-color var(--transition-btn),
          color var(--transition-btn),
          box-shadow var(--transition-btn);
}

.contact-channel:hover {
  background: var(--white);
  border-color: var(--soft-gold);
  box-shadow: var(--glow-led);
}

.contact-channel__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--onyx);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact-channel__icon--max {
  background: #000;
  padding: 6px;
}

.contact-channel__icon--max img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.contact-channel__icon svg {
  display: block;
}

.contact-channel__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  text-align: left;
}

.contact-channel__name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-ink);
}

.contact-channel__value {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  word-break: break-word;
  color: var(--color-ink-deep);
}

.contact-form-wrap.is-sent .contact-card__title,
.contact-form-wrap.is-sent .contact-card__lede--form,
.contact-form-wrap.is-sent .contact-form__actions {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-form__actions {
  justify-content: flex-start;
  margin-bottom: 0;
}

.zen-dialog__lede {
  margin-bottom: 18px;
}

/* Попапы: контакты и заявка */
.zen-dialog {
  width: min(100% - 32px, 480px);
  max-width: 520px;
  max-height: min(90dvh, 900px);
  margin: auto;
  padding: 0;
  border: 1px solid var(--electric-silver);
  border-radius: 12px;
  background: var(--white);
  color: var(--color-ink-deep);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(200, 204, 210, 0.3);
}

#modal-lead.zen-dialog {
  max-width: 580px;
  width: min(100% - 32px, 580px);
}

.zen-dialog::backdrop {
  background: rgba(11, 11, 12, 0.55);
  backdrop-filter: blur(4px);
}

.zen-dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--electric-silver);
}

#modal-contacts .zen-dialog__header {
  padding-bottom: 14px;
}

.zen-dialog__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1.2;
  color: var(--color-ink-deep);
}

.zen-dialog__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--electric-silver);
  border-radius: 8px;
  background: var(--color-surface);
  color: var(--color-ink-deep);
  cursor: pointer;
  flex-shrink: 0;
  transition:
          background-color 0.2s ease,
          border-color 0.2s ease,
          transform 0.15s ease;
}

.zen-dialog__close:hover {
  background: var(--white);
  border-color: var(--soft-gold);
}

.zen-dialog__close:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.zen-dialog__close-icon {
  display: block;
  width: 14px;
  height: 14px;
  position: relative;
}

.zen-dialog__close-icon::before,
.zen-dialog__close-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.zen-dialog__close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.zen-dialog__close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.zen-dialog__body {
  padding: 20px 22px 24px;
  max-height: calc(90dvh - 100px);
  overflow-y: auto;
}

#modal-lead .zen-dialog__body {
  padding-top: 16px;
}

.contact-form__shell {
  position: relative;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-ink-deep);
}

.field__req {
  color: var(--onyx);
  font-weight: 600;
}

.field__hint {
  font-size: 12px;
  line-height: 1.4;
  color: var(--color-ink);
}

.field input,
.field textarea {
  font: inherit;
  padding: 14px 16px;
  border: 1px solid var(--color-muted);
  border-radius: 8px;
  background: var(--white);
  color: var(--color-ink-deep);
  max-width: 100%;
  transition: border-color var(--transition-btn), background-color var(--transition-btn);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(102, 106, 112, 0.5);
}

.field input:hover,
.field textarea:hover {
  border-color: var(--color-accent);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--onyx);
  box-shadow: 0 0 0 1px var(--onyx);
}

.field--select {
  z-index: 0;
}

.field__select-wrap {
  position: relative;
}

.field__select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -6px;
  border-right: 2px solid var(--onyx);
  border-bottom: 2px solid var(--onyx);
  transform: rotate(45deg);
  pointer-events: none;
  opacity: 0.65;
}

.field select,
.field--select select {
  font: inherit;
  padding: 14px 44px 14px 16px;
  border: 1px solid var(--color-muted);
  border-radius: 8px;
  background: var(--white);
  color: var(--color-ink-deep);
  max-width: 100%;
  width: 100%;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--transition-btn), background-color var(--transition-btn);
}

.field select:hover,
.field--select select:hover {
  border-color: var(--color-accent);
}

.field select:focus,
.field--select select:focus {
  outline: none;
  background: var(--white);
  border-color: var(--onyx);
  box-shadow: 0 0 0 1px var(--onyx);
}

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

.field--check {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px 12px;
  margin-top: 2px;
}

.field--check input {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--onyx);
  cursor: pointer;
}

.field--check label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  max-width: calc(100% - 32px);
  cursor: pointer;
  color: var(--color-ink);
}

.link-inline {
  color: var(--color-ink-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.link-inline:hover {
  color: var(--color-ink);
}

.btn--submit {
  margin-top: 4px;
  min-height: 52px;
  font-size: 16px;
  letter-spacing: 0.04em;
}

/* Honeypot: не display:none (боты) */
.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  border: 1px solid var(--electric-silver);
  border-radius: 10px;
  padding: 36px 28px 40px;
  background: linear-gradient(165deg, #ffffff 0%, #f0f1f2 100%);
  box-shadow: var(--shadow-soft);
  min-height: 200px;
  justify-content: center;
}

.form-success[hidden] {
  display: none;
}

.form-success__icon {
  color: var(--onyx);
  line-height: 0;
  opacity: 0.9;
}

.form-success__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.45;
  margin: 0;
  color: var(--color-ink-deep);
  max-width: 28ch;
}

/* Footer */
.footer {
  padding: 56px 0 32px;
  border-top: 1px solid rgba(200, 204, 210, 0.25);
  background-color: #f7ede8;
  color: #000;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.4fr;
  gap: 32px 40px;
  align-items: start;
  padding-bottom: 32px;
}

.footer__brand {
  font-family: var(--font-hero-serif);
  font-size: clamp(2rem, 9vw, 4rem);
  font-weight: 600;
  letter-spacing: normal;
  text-transform: uppercase;
  margin: 0 0 clamp(0px, 0vw, 0px);
  line-height: 1.05;
  max-width: 100%;
  overflow-wrap: break-word;
  hyphens: none;
  color: #5c3f20;
}

.footer__tagline {
  font-family: var(--font-hero-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #8b6830;
  margin: 0;
}

.footer__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8b6830;
  margin: 0 0 10px;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 1.6;
}

.footer__list li {
  margin-bottom: 4px;
}

.footer__requisites {
  font-size: 13px;
  line-height: 1.5;
  color: #000;
  margin: 12px 0 0;
  max-width: 420px;
}

.footer a {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--transition-btn), border-color var(--transition-btn);
}

.footer a:hover {
  color: #8b6830;
  border-bottom-color: #8b6830;
}

.footer__copy {
  text-align: center;
  font-size: 13px;
  color: #000;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(200, 204, 210, 0.2);
  letter-spacing: 0.04em;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
          opacity var(--transition-reveal),
          transform var(--transition-reveal);
}

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

/* —— Tablet 768–1024 —— */
@media (max-width: 1024px) {
  .scenario-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* —— Mobile 360–767 —— */
@media (max-width: 767px) {
  :root {
    --header-height: 64px;
    --section-y: 64px;
  }

  .site-header__inner {
    flex-wrap: nowrap;
  }

  .site-header__logo {
    order: 0;
    flex: 0 0 auto;
  }

  .site-header__cta {
    order: 1;
    margin-left: auto;
    min-height: 44px;
    height: 44px;
    padding: 0 14px;
    font-size: 13px;
  }

  .site-header__burger {
    display: flex;
    order: 2;
    margin-left: 8px;
  }

  .site-header__nav {
    order: 5;
    flex: 0 0 auto;
    min-width: unset;
    position: fixed;
    top: 0;
    right: 0;
    width: min(100%, 320px);
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: calc(var(--header-height) + 20px) 24px 32px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
    background: rgba(8, 7, 6, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.28s ease;
  }

  .site-header__nav.is-open {
    transform: translateX(0);
  }

  .site-header__menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 4px;
  }

  .site-header__menu a {
    display: block;
    padding: 12px 0;
    width: 100%;
    font-size: 15px;
  }

  .site-header__tg {
    align-self: flex-start;
  }

  .site-header__overlay {
    order: 4;
  }

  .assortment-swiper__controls {
    margin-top: 24px;
    gap: 16px 20px;
  }

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

/* ===== PHILOSOPHY BANNER ===== */
.section--philo-banner {
  overflow: hidden;
}

.philo-banner__bg {
  position: relative;
  min-height: clamp(240px, 32vw, 440px);
  background-image: url('images/photo_2026-05-06 21.36.25.jpeg');
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
}

.philo-banner__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
          to right,
          rgba(244, 237, 225, 0.96) 0%,
          rgba(244, 237, 225, 0.82) 36%,
          rgba(244, 237, 225, 0.28) 58%,
          rgba(244, 237, 225, 0) 72%
  );
  pointer-events: none;
}

.philo-banner__content {
  position: relative;
  z-index: 1;
  padding: clamp(40px, 5vw, 80px) clamp(32px, 5.5vw, 80px);
  max-width: min(683px, 52%);
}

.philo-banner__line {
  margin: 0 0 clamp(14px, 2vw, 25px);
  font-family: var(--font-hero);
  font-size: clamp(26px, 3.6vw, 50px);
  font-weight: 400;
  line-height: 1;
  color: #1c1510;
  letter-spacing: 0.01em;
}

.philo-banner__line:last-of-type {
  margin-bottom: 0;
}

.philo-banner__line--accent {
  /* font-style: italic; */
  color: #8b6830;
}

.philo-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(20px, 3vw, 36px);
}

.philo-banner__btn-primary {
  background-color: #5c3f20;
  color: #fff;
  border-color: #5c3f20;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.philo-banner__btn-primary:hover {
  background-color: #4a3218;
  border-color: #4a3218;
  box-shadow: 0 8px 28px rgba(92, 63, 32, 0.35);
}

.philo-banner__btn-secondary {
  background-color: transparent;
  color: #1c1510;
  border-color: #1c1510;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.philo-banner__btn-secondary:hover {
  background-color: rgba(28, 20, 16, 0.07);
  border-color: #5c3f20;
  color: #5c3f20;
}

@media (max-width: 640px) {
  .philo-banner__content {
    max-width: 100%;
    padding: clamp(36px, 8vw, 56px) var(--pad-x);
  }
}

/* —— Large desktop 1440–1920 —— */
@media (min-width: 1440px) {
  :root {
    --container: 1280px;
  }
}

@media (min-width: 1920px) {
  :root {
    --container: 1320px;
  }
}
