@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/gNMKW3F-SZuj7xmb-HY6EQ.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/gNMKW3F-SZuj7xmf-HY.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/gNMKW3F-SZuj7xmR-HY6EQ.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/gNMKW3F-SZuj7xmS-HY6EQ.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

:root {
  --bg: #e8dfd2;
  --bg-deep: #2d241e;
  --bg-footer: #322820;
  --surface: #fffaf4;
  --surface-dark: #3d3229;
  --ink-rgb: 45, 36, 30;
  --text: #24180f;
  --text-muted: #6a5848;
  --text-light: rgba(255, 248, 240, 0.86);
  --accent: #c65d1e;
  --accent-dark: #9a4514;
  --accent-soft: #f0c9a6;
  --border: #d7c5ae;
  --radius: 10px;
  --shadow: 0 24px 60px rgba(45, 36, 30, 0.1);
  --shadow-soft: 0 10px 30px rgba(45, 36, 30, 0.07);
  --max: 1180px;
  --nav-h: 76px;
  --font: "Onest", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 520px;
}

.hero {
  content-visibility: visible;
}

.section--dark {
  background: var(--bg-deep);
  color: var(--text-light);
}

.section__title {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section__lead {
  margin: 0;
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section--dark .section__lead {
  color: var(--text-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-dark);
}

.btn--outline {
  border: 1px solid rgba(255, 248, 240, 0.28);
  color: #fff;
  background: transparent;
}

.btn--outline:hover {
  background: rgba(255, 248, 240, 0.08);
}

.btn--light {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}

.btn--light:hover {
  border-color: var(--accent);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.86rem;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(var(--ink-rgb), 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 248, 240, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--nav-h);
}

.logo img {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 248, 240, 0.72);
  transition: color 0.2s ease;
}

.nav__link:hover {
  color: #fff;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 248, 240, 0.18);
  background: transparent;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.burger.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: clamp(640px, 88dvh, 820px);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg picture,
.hero__bg video,
.hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: clamp(640px, 88dvh, 820px);
  padding-block: calc(var(--nav-h) + 2.5rem) 3rem;
}

.hero__panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: min(100%, 500px);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: calc(var(--radius) + 6px);
  background: rgba(255, 252, 247, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 56px rgba(45, 36, 30, 0.1);
  backdrop-filter: blur(14px);
}

.hero__intro,
.hero__sheet {
  display: contents;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .hero__panel {
    background: rgba(255, 252, 247, 0.94);
  }
}

@media (prefers-reduced-transparency: reduce) {
  .hero__panel {
    background: rgba(255, 252, 247, 0.96);
    backdrop-filter: none;
  }
}

.hero__logo {
  display: block;
  width: clamp(118px, 13vw, 164px);
  height: auto;
}

.hero__title {
  margin: 1.15rem 0 0.7rem;
  font-size: clamp(1.7rem, 3.1vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #1a3a2f;
}

.hero__lead {
  margin: 0 0 1.35rem;
  max-width: 40ch;
  font-size: clamp(0.94rem, 1.45vw, 1.05rem);
  line-height: 1.55;
  color: #4a5c52;
}

.hero__benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.1rem;
  margin: 0 0 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(26, 58, 47, 0.1);
}

.hero-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  min-width: 0;
}

.hero-benefit__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  padding: 5px;
  border-radius: 9px;
  background: rgba(26, 58, 47, 0.08);
  color: #1a3a2f;
}

.hero-benefit__icon svg {
  width: 100%;
  height: 100%;
}

.hero-benefit__title {
  margin: 0 0 0.15rem;
  font-size: clamp(0.84rem, 1.35vw, 0.95rem);
  font-weight: 700;
  line-height: 1.25;
  color: #1a3a2f;
}

.hero-benefit__text {
  margin: 0;
  font-size: clamp(0.72rem, 1.1vw, 0.8rem);
  line-height: 1.4;
  color: #5a6e62;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero__tags {
  display: none;
}

.intro-strip {
  padding: 1.5rem 0;
  background: var(--surface-dark);
  color: rgba(255, 248, 240, 0.9);
  border-bottom: 1px solid rgba(255, 248, 240, 0.08);
}

.intro-strip p {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.15rem);
  text-align: center;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

.about-layout__text {
  display: grid;
  gap: 1rem;
  padding-right: 0.5rem;
}

.about-layout__image {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 360px;
}

.about-layout__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pillar-card {
  padding: 1.75rem;
  background: rgba(255, 248, 240, 0.04);
  border: 1px solid rgba(255, 248, 240, 0.1);
  border-radius: var(--radius);
}

.pillar-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  color: #fff;
}

.pillar-card p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.96rem;
}

.advantages-head {
  text-align: center;
  margin-bottom: 2rem;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.advantage-tile {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.advantage-tile h3 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
}

.advantage-tile p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.advantages-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.section--partners {
  background: linear-gradient(180deg, #f8f6f3 0%, var(--bg) 100%);
}

.partners-lead {
  text-align: center;
  margin-bottom: 1.5rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: 820px;
  margin: 0 auto;
}

.partner-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  padding: 1rem 0.85rem 0.9rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 2px);
  box-shadow: 0 1px 3px rgba(var(--ink-rgb), 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

a.partner-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--ink-rgb), 0.14);
  box-shadow: 0 8px 20px rgba(var(--ink-rgb), 0.07);
}

.partner-tile__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 58px;
  padding: 0.35rem 0.5rem;
  background: #fff;
  border-radius: calc(var(--radius) - 6px);
}

.partner-tile__logo img {
  max-width: 100%;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-tile__name {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  word-break: break-word;
}

.partner-tile__desc {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.partner-tile__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.1rem;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--accent);
}

a.partner-tile:hover .partner-tile__meta {
  color: var(--ink);
}

.pack-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.pack-item {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  color: var(--text);
}

.pack-item__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.pack-item__badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 1;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(var(--ink-rgb), 0.78);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pack-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pack-item__body {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-top: 4px solid var(--accent);
}

.pack-item h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--text);
}

.pack-item__desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.pack-item__meta {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
  color: var(--text);
  font-size: 0.9rem;
}

.pack-item__meta li {
  position: relative;
  padding-left: 1rem;
}

.pack-item__meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
}

.pack-item__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.product-panel {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-soft);
}

.product-panel__image {
  max-width: 280px;
  justify-self: start;
  border-radius: var(--radius);
  overflow: hidden;
}

.product-panel__image img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}

.specs-panel {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 2.5rem;
  align-items: center;
}

.specs-panel__image {
  max-width: 300px;
  justify-self: end;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.specs-panel__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  cursor: zoom-in;
  transition: transform 0.25s ease;
}

.specs-panel__image img:hover {
  transform: scale(1.02);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.metric {
  padding: 1.1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.metric span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.metric strong {
  font-size: 1.28rem;
  letter-spacing: -0.02em;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.75rem;
}

.gallery-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: zoom-in;
  transition: transform 0.25s ease;
}

.gallery-mosaic img:hover {
  transform: scale(1.015);
}

.gallery-mosaic .g1 { grid-column: span 5; aspect-ratio: 4 / 3; }
.gallery-mosaic .g2 { grid-column: span 4; aspect-ratio: 1 / 1; }
.gallery-mosaic .g3 { grid-column: span 3; aspect-ratio: 3 / 4; }
.gallery-mosaic .g4 { grid-column: span 4; aspect-ratio: 4 / 3; }
.gallery-mosaic .g5 { grid-column: span 4; aspect-ratio: 4 / 3; }
.gallery-mosaic .g6 { grid-column: span 4; aspect-ratio: 4 / 3; }

.gallery-mosaic--production .g1 { grid-column: span 6; aspect-ratio: 16 / 10; }
.gallery-mosaic--production .g2 { grid-column: span 3; aspect-ratio: 1 / 1; }
.gallery-mosaic--production .g3 { grid-column: span 3; aspect-ratio: 1 / 1; }
.gallery-mosaic--production .g4 { grid-column: span 4; aspect-ratio: 4 / 3; }
.gallery-mosaic--production .g5 { grid-column: span 4; aspect-ratio: 4 / 3; }
.gallery-mosaic--production .g6 { grid-column: span 4; aspect-ratio: 4 / 3; }
.gallery-mosaic--production .g7 { grid-column: span 3; aspect-ratio: 3 / 4; }
.gallery-mosaic--production .g8 { grid-column: span 5; aspect-ratio: 4 / 3; }
.gallery-mosaic--production .g9 { grid-column: span 4; aspect-ratio: 1 / 1; }
.gallery-mosaic--production .g10 { grid-column: span 3; aspect-ratio: 1 / 1; }
.gallery-mosaic--production .g11 { grid-column: span 3; aspect-ratio: 1 / 1; }
.gallery-mosaic--production .g12 { grid-column: span 6; aspect-ratio: 16 / 9; }

.video-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-deep);
  box-shadow: var(--shadow-soft);
}

.video-card video,
.video-card--photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.video-card video {
  background: var(--bg-deep);
}

.video-card video:fullscreen,
.video-card video:-webkit-full-screen {
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100vh;
  aspect-ratio: auto;
  object-fit: contain;
  background: #000;
}

.video-card--photo img {
  cursor: zoom-in;
}

.certs-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.88fr) minmax(280px, 1.12fr);
  gap: 1.25rem;
  align-items: stretch;
}

.cert-featured {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.cert-featured__badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(198, 93, 30, 0.12);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cert-featured__preview {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #f8f4ee;
  width: 100%;
  max-height: 248px;
  aspect-ratio: 3 / 4;
  margin: 0 auto;
}

.cert-featured__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.cert-featured h3 {
  margin: 0;
  font-size: 1.02rem;
}

.cert-featured p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.certs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  height: 100%;
  align-content: start;
}

.cert-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.4rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.cert-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.cert-card span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.contact-card {
  padding: 2rem;
  background: var(--surface-dark);
  color: var(--text-light);
  border-radius: calc(var(--radius) + 2px);
}

.contact-list__note {
  color: rgba(255, 248, 240, 0.62);
  font-size: 0.82rem;
}

.contact-phone-row,
.footer-phone-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.contact-phone-row .contact-list__note,
.footer-phone-row .contact-list__note {
  margin-top: 0;
  flex-shrink: 0;
}

.contact-card h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: #fff;
}

.contact-card p {
  margin: 0 0 1.25rem;
  color: var(--text-light);
}

.contact-list {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.contact-list a {
  color: var(--accent-soft);
  font-weight: 600;
}

.contact-messengers,
.footer-messengers {
  list-style: none;
}

.footer-phones {
  display: grid;
  gap: 0.45rem;
}

.footer-phones__title {
  display: block;
  margin-bottom: 0.15rem;
}

.footer-phone-row a {
  color: var(--accent-soft);
  font-weight: 600;
  text-decoration: none;
}

.footer-phone-row a:hover {
  color: #fff;
}

.messenger-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.45rem;
}

.messenger-btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.messenger-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 240, 0.22);
  background: rgba(255, 248, 240, 0.06);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.messenger-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 248, 240, 0.42);
  background: rgba(255, 248, 240, 0.12);
  color: #fff;
}

.messenger-btn--telegram:hover {
  border-color: rgba(42, 171, 238, 0.55);
  background: rgba(42, 171, 238, 0.18);
}

.messenger-btn--viber:hover {
  border-color: rgba(123, 81, 157, 0.55);
  background: rgba(123, 81, 157, 0.22);
}

.messenger-btn--whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.55);
  background: rgba(37, 211, 102, 0.18);
}

.messenger-btns--footer {
  margin-top: 0;
}

.map-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
}

.map-frame {
  position: relative;
  flex: 1;
  min-height: 420px;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-deep);
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-block__route {
  width: 100%;
  flex-shrink: 0;
}

.footer {
  padding: 3rem 0 2rem;
  background: var(--bg-footer);
  color: rgba(255, 248, 240, 0.78);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 2fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__contacts ul {
  gap: 0.6rem;
}

.footer__brand img {
  height: 52px;
  width: auto;
  margin-bottom: 1rem;
}

.footer h5 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: 0.92rem;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.footer a:hover {
  color: #fff;
}

.footer__copy {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 248, 240, 0.1);
  color: rgba(255, 248, 240, 0.5);
  font-size: 0.88rem;
}

address {
  font-style: normal;
}

.faq-list {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
  max-width: 820px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item__q {
  padding: 1.15rem 1.35rem;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

.faq-item__q::-webkit-details-marker {
  display: none;
}

.faq-item__q::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.faq-item[open] .faq-item__q::after {
  content: "−";
}

.faq-item__a {
  padding: 0 1.35rem 1.15rem;
  color: var(--text-muted);
}

.faq-item__a p {
  margin: 0;
}

.legal-page {
  padding: calc(var(--nav-h) + 2.5rem) 0 4rem;
}

.legal-page__inner {
  max-width: 820px;
}

.legal-page__eyebrow {
  margin: 0 0 0.5rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-page__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.2;
}

.legal-page__meta {
  margin: 0 0 2rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.legal-toc {
  margin: 0 0 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.legal-toc ol {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.35rem;
}

.legal-toc a {
  color: var(--text);
  font-size: 0.94rem;
}

.legal-toc a:hover {
  color: var(--accent);
}

.legal-content section {
  margin-bottom: 2rem;
  padding: 1.5rem 1.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow-soft);
}

.legal-content h2 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  line-height: 1.35;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.legal-content p {
  margin: 0 0 0.85rem;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  margin: 0 0 0.85rem;
  padding-left: 1.25rem;
}

.legal-content ul:last-child {
  margin-bottom: 0;
}

.legal-content a {
  color: var(--accent-dark);
  font-weight: 500;
}

.legal-page__back {
  margin: 2rem 0 0;
}

.footer__copy a + a {
  margin-left: 1rem;
}

.form-consent {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.form-consent a {
  color: var(--accent-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 2rem 4.5rem;
  background: rgba(var(--ink-rgb), 0.82);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(92vw, 1200px);
  max-height: 90vh;
  border-radius: var(--radius);
}

.lightbox__close,
.lightbox__nav {
  border: 1px solid rgba(255, 248, 240, 0.18);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(255, 248, 240, 0.12);
  color: #fff;
  font-size: 1.5rem;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 248, 240, 0.14);
  color: #fff;
  font-size: 1.35rem;
  z-index: 2;
}

.lightbox__nav:hover {
  background: rgba(255, 248, 240, 0.24);
}

.lightbox__nav--prev { left: 1.25rem; }
.lightbox__nav--next { right: 1.25rem; }

.btn--glass {
  background: rgba(255, 248, 240, 0.08);
  border: 1px solid rgba(255, 248, 240, 0.22);
  color: var(--text);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn--glass:hover {
  background: rgba(255, 248, 240, 0.16);
  border-color: rgba(255, 248, 240, 0.34);
}

.modal-overlay--glass {
  background: rgba(var(--ink-rgb), 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.modal--memo {
  width: min(96vw, 860px);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  padding: 1.5rem;
  background: linear-gradient(145deg, rgba(255, 252, 247, 0.97), rgba(245, 238, 228, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  color: var(--text);
}

.modal--memo .modal__close {
  background: rgba(36, 24, 15, 0.08);
  color: var(--text);
}

.modal--memo .modal__title {
  margin-bottom: 1rem;
  color: var(--accent-dark);
}

.memo-modal__viewport {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.memo-modal__slides {
  flex: 1;
  min-width: 0;
  max-height: min(68vh, 620px);
  overflow: auto;
  border-radius: calc(var(--radius) - 2px);
  background: #fff;
  border: 1px solid rgba(36, 24, 15, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.memo-modal__content {
  padding: 1.25rem 1.35rem 1.4rem;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text);
}

.memo-modal__slide-title {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.01em;
}

.memo-modal__lead {
  margin: 0 0 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(36, 24, 15, 0.1);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.memo-modal__section-title {
  margin: 1.1rem 0 0.55rem;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--accent-dark);
}

.memo-modal__section-title:first-child {
  margin-top: 0;
}

.memo-modal__list {
  margin: 0 0 0.75rem;
  padding-left: 1.15rem;
}

.memo-modal__list li {
  margin-bottom: 0.45rem;
}

.memo-modal__list li:last-child {
  margin-bottom: 0;
}

.memo-modal__alert {
  margin: 0.85rem 0 0.5rem;
  padding: 0.65rem 0.85rem;
  border-radius: calc(var(--radius) - 4px);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
}

.memo-modal__alert--warning {
  background: rgba(230, 126, 34, 0.12);
  border: 1px solid rgba(230, 126, 34, 0.35);
  color: #9a4f0a;
}

.memo-modal__alert--danger {
  background: rgba(192, 57, 43, 0.1);
  border: 1px solid rgba(192, 57, 43, 0.32);
  color: #8b2e24;
}

.memo-modal__emergency {
  margin: 1rem 0 0;
  padding: 0.75rem 0.9rem;
  border-radius: calc(var(--radius) - 4px);
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.22);
  font-size: 0.9rem;
  font-weight: 600;
  color: #7a241c;
  text-align: center;
}

.memo-modal__empty {
  margin: 0;
  color: var(--text-muted);
  text-align: center;
}

.memo-modal__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.memo-modal__nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(36, 24, 15, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-dark);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(36, 24, 15, 0.12);
  transition: transform 0.2s ease, background 0.2s ease;
}

.memo-modal__nav:hover {
  background: #fff;
  transform: scale(1.04);
}

.memo-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.85rem;
}

.memo-modal__dots {
  display: flex;
  gap: 0.5rem;
}

.memo-modal__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(36, 24, 15, 0.18);
  cursor: pointer;
}

.memo-modal__dot.is-active {
  background: var(--accent);
}

.memo-modal__counter {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.memo-modal__actions {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.pack-item .btn--glass {
  background: rgba(26, 58, 47, 0.06);
  border-color: rgba(26, 58, 47, 0.16);
  color: var(--accent-dark);
}

.pack-item .btn--glass:hover {
  background: rgba(26, 58, 47, 0.1);
  border-color: rgba(26, 58, 47, 0.24);
}

body.is-loading {
  overflow: hidden;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #2a1f18 0%, #1a120d 55%, #322820 100%);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
}

.preloader__logo {
  width: min(42vw, 180px);
  height: auto;
  animation: preloader-pulse 1.6s ease-in-out infinite;
}

.preloader__text {
  margin: 0;
  color: rgba(255, 248, 240, 0.72);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.preloader__bar {
  width: min(52vw, 220px);
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.14);
}

.preloader__bar span {
  display: block;
  width: 40%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #e8a06a);
  animation: preloader-slide 1.1s ease-in-out infinite;
}

@keyframes preloader-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.03);
    opacity: 0.88;
  }
}

@keyframes preloader-slide {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(320%);
  }
}

.cookie-banner {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 210;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: min(calc(100vw - 2.5rem), 440px);
  padding: 1.35rem 1.45rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 20px 48px rgba(var(--ink-rgb), 0.2);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

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

.cookie-banner__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-banner__text a {
  color: var(--accent-dark);
  font-weight: 600;
}

.cookie-banner .btn {
  align-self: flex-start;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(var(--ink-rgb), 0.64);
}

.modal-overlay.is-open {
  display: flex;
}

.modal-overlay--cta {
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.25rem;
  background: transparent;
  pointer-events: none;
}

.modal-overlay--cta.is-open .modal {
  pointer-events: auto;
}

.modal {
  position: relative;
  width: min(100%, 480px);
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
  color: var(--text);
}

.modal--cta {
  width: min(100%, 380px);
  background: var(--surface-dark);
  color: var(--text-light);
  border-color: rgba(255, 248, 240, 0.12);
}

.modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(36, 24, 15, 0.06);
  color: inherit;
  font-size: 1.4rem;
  line-height: 1;
}

.modal--cta .modal__close {
  background: rgba(255, 248, 240, 0.1);
  color: #fff;
}

.modal__title {
  margin: 0 2rem 0.5rem 0;
  font-size: 1.45rem;
  line-height: 1.2;
}

.modal--cta .modal__title {
  color: #fff;
}

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

.modal--cta .modal__lead {
  color: var(--text-light);
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font: inherit;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(198, 93, 30, 0.35);
  border-color: var(--accent);
}

.field-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-form__submit {
  width: 100%;
}

.contact-form__submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.form-status {
  margin: 0;
  font-size: 0.92rem;
}

.form-status.is-success {
  color: #2f6b3f;
}

.form-status.is-error {
  color: #9a2f1f;
}

.mobile-panel {
  position: fixed;
  inset: var(--nav-h) 0 auto;
  z-index: 90;
  display: none;
  padding: 1rem;
  background: rgba(var(--ink-rgb), 0.96);
  border-bottom: 1px solid rgba(255, 248, 240, 0.08);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel nav {
  display: grid;
  gap: 0.75rem;
}

@media (max-width: 900px) {
  .hero {
    min-height: clamp(560px, 88svh, 720px);
  }

  .hero__bg img {
    object-position: center center;
  }

  .hero__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: clamp(560px, 88svh, 720px);
    padding-block: calc(var(--nav-h) + 1rem) 1.25rem;
    text-align: center;
  }

  .hero__panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    width: min(100%, 340px);
    margin-inline: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero__intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: calc(var(--radius) + 4px);
    background: rgba(255, 252, 247, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 10px 28px rgba(45, 36, 30, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
  }

  .hero__sheet {
    display: none;
  }

  .hero__tags {
    display: block;
    width: 100%;
  }

  .hero__logo {
    width: 82px;
    margin-inline: auto;
    filter: drop-shadow(0 2px 8px rgba(255, 252, 247, 0.65));
  }

  .hero__title {
    margin: 0;
    font-size: clamp(1.24rem, 4.8vw, 1.5rem);
    color: #1a3a2f;
  }

  .hero__lead {
    display: block;
    margin: 0;
    max-width: 32ch;
    margin-inline: auto;
    font-size: 0.84rem;
    line-height: 1.45;
    color: #4a5c52;
  }

  .hero-tags__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .hero-tag {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.38rem;
    min-width: 0;
    padding: 0.4rem 0.5rem;
    border-radius: 999px;
    background: rgba(255, 252, 247, 0.5);
    border: 1px solid rgba(198, 93, 30, 0.42);
    box-shadow:
      0 0 14px rgba(198, 93, 30, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(6px);
  }

  .hero-tag__icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    padding: 3px;
    border-radius: 50%;
    background: rgba(198, 93, 30, 0.18);
    color: #1a3a2f;
    box-shadow: 0 0 10px rgba(198, 93, 30, 0.3);
  }

  .hero-tag__icon svg {
    width: 100%;
    height: 100%;
  }

  .hero-tag__label {
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.15;
    color: #1a3a2f;
    letter-spacing: 0.01em;
    text-align: left;
  }
}

@media (max-width: 1024px) {
  .nav,
  .header__actions .btn--outline {
    display: none;
  }

  .burger {
    display: block;
  }

  .about-layout,
  .pillars,
  .advantages-grid,
  .pack-row,
  .product-panel,
  .specs-panel,
  .contact-wrap,
  .footer__top,
  .certs-layout,
  .certs-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 520px;
  }

  .partner-tile:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 250px);
  }

  .cert-featured {
    position: static;
  }

  .product-panel__image {
    max-width: 100%;
    justify-self: stretch;
  }

  .product-panel__image img {
    max-height: none;
  }

  .specs-panel__image {
    max-width: 100%;
    justify-self: stretch;
    aspect-ratio: 1 / 1;
  }

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

  .gallery-mosaic .g1,
  .gallery-mosaic .g2,
  .gallery-mosaic .g3,
  .gallery-mosaic .g4,
  .gallery-mosaic .g5,
  .gallery-mosaic .g6,
  .gallery-mosaic .g7,
  .gallery-mosaic .g8,
  .gallery-mosaic .g9,
  .gallery-mosaic .g10,
  .gallery-mosaic .g11,
  .gallery-mosaic .g12 {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

  .video-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .lightbox {
    padding: 1rem 3rem;
  }

  .lightbox__nav {
    width: 40px;
    height: 40px;
  }

  .lightbox__nav--prev { left: 0.5rem; }
  .lightbox__nav--next { right: 0.5rem; }

  .memo-modal__viewport {
    gap: 0.35rem;
  }

  .memo-modal__nav {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .memo-modal__footer {
    flex-direction: column;
    align-items: center;
  }

  .section {
    padding: 4rem 0;
  }

  .metrics,
  .pillars {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .partner-tile:last-child:nth-child(odd) {
    grid-column: auto;
    width: auto;
  }
}

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

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