/*
Theme Name: DTE
Theme URI: https://dte.com
Author: DTE
Author URI: https://dte.com
Description: Digital technology equipment — legendary optics
Version: 1.0
Text Domain: dte
*/

/* ============================================================
   1. ПЕРЕМЕННЫЕ И БАЗА
============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brown: #a86a31;
  --brown-dark: #8b5527;
  --brown-light: #c8844a;
  --cream: #f6f6ed;
  --black: #000000;
  --dark: #050505;
  --dark-2: #0a0a0a;
  --dark-3: #111111;
  --dark-4: #161616;
  --gray-text: #8a8a8a;
  --border-light: rgba(255, 255, 255, 0.08);
  --border-mid: rgba(255, 255, 255, 0.14);
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: var(--black);
}

html::-webkit-scrollbar {
  width: 0px;
  background: transparent;
  display: none;
}

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--black);
  color: #fff;
  user-select: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  position: relative;
  z-index: 3;
}

canvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   2. КАСТОМНЫЙ СКРОЛЛБАР
============================================================ */
.custom-scrollbar {
  position: fixed;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 50vh;
  z-index: 9999;
  pointer-events: none;
}

.scrollbar-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
}

.scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: var(--brown);
  border-radius: 4px;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.2s ease;
}

.scrollbar-thumb:hover { background: var(--brown-light); }
.scrollbar-thumb:active { background: var(--brown-dark); }

/* ============================================================
   3. ПРЕЛОАДЕР
============================================================ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000000;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 1;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.shape-container {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.circle-bg {
  stroke: #222;
  stroke-width: 4;
  fill: none;
}

.circle-fill {
  stroke: #ffffff;
  stroke-width: 4;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 376.99;
  stroke-dashoffset: 376.99;
  transition: stroke-dashoffset 0.05s linear;
}

.center-svg {
  position: absolute;
  width: 98px;
  height: 98px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.center-svg svg { width: 100%; height: 100%; display: block; }

.corners {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.corner {
  position: absolute;
  width: 28px; height: 28px;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1),
              transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.corner svg { width: 100%; height: 100%; display: block; }
.corner line {
  stroke: #ffffff;
  stroke-width: 3;
  stroke-linecap: round;
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.5));
}

.corner-top-left { top: -10px; left: -10px; transform: scale(0.6); }
.corner-top-right { top: -10px; right: -10px; transform: scale(0.6); }
.corner-bottom-left { bottom: -10px; left: -10px; transform: scale(0.6); }
.corner-bottom-right { bottom: -10px; right: -10px; transform: scale(0.6); }

.corners.active .corner { opacity: 1; transform: scale(1); }

.preloader-content {
  text-align: center;
  color: #fff;
  margin-top: 28px;
  transition: opacity 0.5s ease;
}

.preloader-text {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.8;
  font-weight: 400;
}

/* ============================================================
   4. HEADER И МОБИЛЬНОЕ МЕНЮ
============================================================ */
.mobile-menu-btn {
  display: none;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.25);
  z-index: 15;
}

.mobile-menu-btn p {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.mobile-menu-btn:active { transform: scale(0.96); }

.menu-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #000000;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px 20px;
  visibility: hidden;
  pointer-events: none;
  will-change: clip-path;
}

.menu-overlay.visible { visibility: visible; pointer-events: auto; }

.overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
}

.menu-close-btn {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: all 0.2s;
}

.menu-close-btn:active { background: rgba(255, 255, 255, 0.2); transform: scale(0.94); }

.menu-close-btn p {
  font-size: 32px;
  color: #fff;
  line-height: 1;
  font-weight: 300;
  margin: 0;
}

.mobile-nav-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 0;
}

.menu-link-wrapper { overflow: hidden; }

.menu-link-inner {
  display: block;
  transform: translateY(80px);
  opacity: 0;
}

.mobile-menu-link {
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
  line-height: 1.2;
  cursor: pointer;
}

.mobile-menu-link:hover { color: var(--brown); }
.mobile-menu-link.active { color: var(--brown); }

.overlay-footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.overlay-footer a {
  color: #aaa;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.overlay-footer a:hover { color: var(--brown); }

.header {
  position: fixed;
  z-index: 10;
  top: 0; right: 0; left: 0;
  pointer-events: auto;
  padding: 10px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1),
              opacity 0.5s ease,
              visibility 0s linear 0.6s;
}

.header.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1),
              opacity 0.5s ease,
              visibility 0s linear 0s;
}

.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1px;
}

.header__item {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 64px;
  padding: 20px;
}

.header__item:nth-child(1),
.header__item:nth-child(3) {
  width: 125px;
  border-radius: 10px;
  background: #000;
  justify-content: center;
  border: 1px solid var(--border-light);
}

.header__item:nth-child(3) { justify-content: flex-end; }

.header__item:nth-child(2) {
  flex: 1;
  border-radius: 10px;
  background: #000;
  justify-content: center;
  border: 1px solid var(--border-light);
}

.header__logo span { 
    font-size: 36px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
    color: #fff;
    font-style: italic;
}
.header__logo span .brown {
    color: var(--brown);
}
.menu__list {
  list-style-type: none;
  display: flex;
  gap: 32px;
  align-items: center;
}

.menu__link {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.2s;
  cursor: pointer;
  position: relative;
}

.menu__link:hover { color: var(--brown); }
.menu__link.active { color: var(--brown); }

.menu__link.active::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 1px;
  background: var(--brown);
}

.lang-group { display: flex; gap: 8px; }

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lang-btn.active { background: var(--brown); border-color: var(--brown); }
.lang-btn:hover:not(.active) { background: rgba(168, 106, 49, 0.5); border-color: var(--brown); }

.mobile-lang {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.mobile-lang-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 16px;
  padding: 6px 20px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}

.mobile-lang-btn.active { background: var(--brown); border-color: var(--brown); }

/* ============================================================
   5. SCROLLSMOOTHER WRAPPER
============================================================ */
#smooth-wrapper {
  overflow: hidden;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0; left: 0;
  z-index: 0;
}

#smooth-content { width: 100%; min-height: 100vh; }

/* ============================================================
   6. HERO (главная)
============================================================ */
.hero {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  align-items: center;
  pointer-events: auto;
  background-image: url('../img/bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
  pointer-events: none;
}

.hero__wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 3;
  height: 100vh;
  padding: 180px 0 80px 0;
}

.hero__item:nth-child(1) {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 60%;
}

.hero__title {
  font-size: clamp(32px, 5vw, 80px);
  line-height: 1.15;
  display: block;
  text-align: left;
  opacity: 0;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.hero__title .char { display: inline-block; white-space: normal; }

.hero__title .title-line-1,
.hero__title .title-line-2 { display: block; }

.brown { color: var(--brown); }

.hero__desc {
  font-size: clamp(14px, 0.8rem, 24px);
  line-height: 1.5;
  color: #e8e8e8;
  max-width: 300px;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--brown);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  padding: 20px 32px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid var(--brown);
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  letter-spacing: 0.15em;
  border-radius: 10px;
  align-self: flex-start;
}

.hero__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brown-dark);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  z-index: 0;
}

.hero__btn:hover::before { transform: translateX(0); }
.hero__btn span, .hero__btn svg { position: relative; z-index: 1; }

.hero__btn svg {
  width: 18px; height: 18px;
  transition: transform 0.3s ease;
}

.hero__btn:hover svg { transform: translateX(5px); }

.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 4;
  animation: fadeInHint 1s ease 2s forwards;
}

.hero__scroll-hint::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--brown), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeInHint { to { opacity: 1; } }

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ============================================================
   7. LENS SECTION
============================================================ */
.lens-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: visible;
  perspective: 1200px;
  perspective-origin: 50% 50%;
  z-index: 3;
  background: var(--black);
}

.sticky-container {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transform-style: preserve-3d;
  z-index: 3;
}

.circle-bg-wrapper {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 1;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.circle-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  will-change: transform;
}

.circle-ring.small {
  width: 46%; height: 46%;
  border-color: rgba(168, 106, 49, 0.5);
  mask: conic-gradient(#000 0deg, #0000 89.0942deg);
  -webkit-mask: conic-gradient(#000 0deg, #0000 89.0942deg);
  animation: spin 12s linear infinite;
}

.circle-ring.medium {
  width: 61%; height: 61%;
  border-color: rgba(255, 255, 255, 0.18);
  mask: conic-gradient(from 180deg, rgba(0, 0, 0, 0.25) 0deg, #0000 180deg);
  -webkit-mask: conic-gradient(from 180deg, rgba(0, 0, 0, 0.25) 0deg, #0000 180deg);
  animation: spin 18s linear infinite reverse;
}

.circle-ring.large {
  width: 75%; height: 75%;
  border-color: rgba(255, 255, 255, 0.12);
  mask: conic-gradient(from 275deg, rgba(0, 0, 0, 0.6) 0deg, #0000 112.589deg);
  -webkit-mask: conic-gradient(from 275deg, rgba(0, 0, 0, 0.6) 0deg, #0000 112.589deg);
  animation: spin 8s linear infinite;
}

.circle-ring.xl {
  width: 93%; height: 93%;
  border-color: rgba(168, 106, 49, 0.18);
  mask: conic-gradient(from 100deg, rgba(0, 0, 0, 0.5) 0deg, #0000 72deg);
  -webkit-mask: conic-gradient(from 100deg, rgba(0, 0, 0, 0.5) 0deg, #0000 72deg);
  animation: spin 25s linear infinite reverse;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.lens-headline {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  max-width: 700px;
  width: 90%;
  pointer-events: none;
  padding: 0 20px;
  opacity: 1;
}

.lens-headline h2 {
  font-weight: 400;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
}

.lens-headline h2 .brown { color: var(--brown); }

.lens-headline .subline {
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.depth-element {
  position: absolute;
  top: 50%; left: 50%;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  opacity: 0;
  pointer-events: none;
}

.depth-element.pos-1 { transform: translate(calc(-50% + 0px), calc(-50% - 140px)); }
.depth-element.pos-2 { transform: translate(calc(-50% - 340px), calc(-50% - 90px)); }
.depth-element.pos-3 { transform: translate(calc(-50% + 340px), calc(-50% + 110px)); }
.depth-element.pos-4 { transform: translate(calc(-50% - 220px), calc(-50% + 190px)); }
.depth-element.pos-5 { transform: translate(calc(-50% + 300px), calc(-50% - 70px)); }

.lens-label {
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid var(--border-mid);
  border-radius: 12px;
  padding: 8px 16px 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.lens-label .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brown);
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(168, 106, 49, 0.8);
}

.lens-label .label-text {
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.04em;
  line-height: 1.2;
  color: #fff;
}

.progress-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.progress-bar {
  width: 100px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--brown);
  border-radius: 2px;
}

/* ============================================================
   8. CATALOG (главная + catalog page)
============================================================ */
.catalog,
.catalog-section,
.catalog-filters {
  position: relative;
  z-index: 3;
  background: var(--black);
  overflow: hidden;
}

.catalog { padding: 140px 0 120px; }
.catalog-section { padding: 20px 0 120px; }
.catalog-filters { padding: 40px 0 60px; }

.catalog::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(168, 106, 49, 0.4), transparent);
}

.catalog .container { max-width: 1500px; }

.catalog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
  flex-wrap: wrap;
  gap: 30px;
}

.catalog-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
}

.catalog-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 28px; height: 1px;
  background: var(--brown);
}

.catalog-title {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: #fff;
  font-style: italic;
}

.catalog-title .accent { color: var(--brown); font-weight: 500; }

.catalog-subtitle {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-text);
  max-width: 320px;
  line-height: 1.8;
  text-align: right;
}

.catalog-subtitle span { color: rgba(255, 255, 255, 0.4); }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.catalog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--dark-2);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1),
              border-color 0.4s ease,
              background 0.4s ease,
              opacity 0.4s ease;
  cursor: pointer;
}

.catalog-card.hidden { display: none; }
.catalog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 106, 49, 0.4);
  background: rgba(168, 106, 49, 0.03);
}

.catalog-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--dark-3);
}

.catalog-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1),
              filter 0.6s ease;
  filter: grayscale(40%) brightness(0.8);
}

.catalog-card:hover .catalog-card-image img {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(1);
}

.catalog-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
  pointer-events: none;
}

.catalog-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: rgba(168, 106, 49, 0.9);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  font-weight: 500;
}

.catalog-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.catalog-card-type {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 500;
}

.catalog-card-title {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.catalog-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.catalog-card-spec {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-text);
  padding: 6px 10px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
}

.catalog-card-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.catalog-card-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.catalog-card-arrow svg {
  width: 16px; height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.catalog-card:hover .catalog-card-arrow {
  background: var(--brown);
  border-color: var(--brown);
}

.catalog-card:hover .catalog-card-arrow svg { transform: translateX(3px); }

.catalog-more {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}

.catalog-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 22px 40px;
  background: transparent;
  border: 1px solid var(--border-mid);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.catalog-more-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brown);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  z-index: 0;
}

.catalog-more-btn:hover::before { transform: translateX(0); }
.catalog-more-btn:hover { border-color: var(--brown); }
.catalog-more-btn span, .catalog-more-btn svg { position: relative; z-index: 1; }

.catalog-more-btn svg {
  width: 18px; height: 18px;
  transition: transform 0.3s ease;
}

.catalog-more-btn:hover svg { transform: translateX(5px); }

/* Catalog Filters */
.filters-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 24px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  flex-wrap: wrap;
}

.filters-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-right: 8px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--border-mid);
  border-radius: 40px;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-text);
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-chip:hover {
  color: #fff;
  border-color: rgba(168, 106, 49, 0.5);
  background: rgba(168, 106, 49, 0.06);
}

.filter-chip.active {
  color: #fff;
  border-color: var(--brown);
  background: var(--brown);
}

.filter-chip svg {
  width: 12px; height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform 0.3s ease;
}

.filter-chip.open svg { transform: rotate(180deg); }

.filter-dropdown { position: relative; }

.filter-dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--dark-2);
  border: 1px solid var(--border-mid);
  border-radius: 12px;
  padding: 12px;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
}

.filter-dropdown.open .filter-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  color: var(--gray-text);
  letter-spacing: 0.05em;
  transition: background 0.2s ease, color 0.2s ease;
}

.filter-option:hover { background: rgba(168, 106, 49, 0.08); color: #fff; }
.filter-option input { display: none; }

.filter-option .checkbox {
  width: 16px; height: 16px;
  border-radius: 4px;
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.filter-option .checkbox::after {
  content: '';
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--brown);
  transform: scale(0);
  transition: transform 0.2s ease;
}

.filter-option input:checked + .checkbox {
  border-color: var(--brown);
  background: rgba(168, 106, 49, 0.15);
}

.filter-option input:checked + .checkbox::after { transform: scale(1); }

.filters-right { display: flex; align-items: center; gap: 16px; }

.filter-results { font-size: 13px; color: var(--gray-text); letter-spacing: 0.05em; }
.filter-results strong { color: #fff; font-weight: 500; }

.filter-sort { position: relative; }

.sort-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--border-mid);
  border-radius: 40px;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
}

.sort-button:hover { border-color: var(--brown); }

.sort-button svg {
  width: 12px; height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform 0.3s ease;
}

.filter-sort.open .sort-button svg { transform: rotate(180deg); }
.filter-sort .filter-dropdown-panel { left: auto; right: 0; }

.active-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
  min-height: 0;
}

.active-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(168, 106, 49, 0.12);
  border: 1px solid rgba(168, 106, 49, 0.3);
  border-radius: 30px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-light);
}

.active-filter button {
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  padding: 0;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.active-filter button:hover { opacity: 1; }

.catalog-empty {
  display: none;
  padding: 100px 0;
  text-align: center;
  color: var(--gray-text);
  font-size: 16px;
  letter-spacing: 0.02em;
}

.catalog-empty.visible { display: block; }
.catalog-empty strong { color: var(--brown); font-weight: 500; }

.catalog-empty button {
  display: block;
  margin: 24px auto 0;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid var(--border-mid);
  border-radius: 10px;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.catalog-empty button:hover { border-color: var(--brown); color: var(--brown); }

/* ============================================================
   9. GALLERY
============================================================ */
.gallery {
  position: relative;
  z-index: 3;
  background: var(--black);
  padding: 140px 0 120px;
  overflow: hidden;
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(168, 106, 49, 0.4), transparent);
}

.gallery .container { max-width: 1500px; }

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
  flex-wrap: wrap;
  gap: 30px;
}

.gallery-title-wrap { position: relative; }

.gallery-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
}

.gallery-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 28px; height: 1px;
  background: var(--brown);
}

.gallery-title {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: #fff;
  font-style: italic;
}

.gallery-title .accent { color: var(--brown); font-weight: 500; }

.gallery-subtitle {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-text);
  max-width: 280px;
  line-height: 1.8;
  text-align: right;
}

.gallery-subtitle span { color: rgba(255, 255, 255, 0.4); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 70px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: var(--dark-2);
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1),
              box-shadow 0.6s ease,
              opacity 0.4s ease;
  border: 1px solid var(--border-light);
}

.gallery-item.hidden { display: none; }

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(168, 106, 49, 0.3);
  z-index: 5;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(0.2, 0.9, 0.4, 1.1), filter 0.6s ease;
  filter: grayscale(30%) brightness(0.85);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  opacity: 0.6;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.gallery-item:hover::after { opacity: 0.9; }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1), opacity 0.5s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-caption { transform: translateY(0); opacity: 1; }

.gallery-caption .caption-num {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 8px;
  display: block;
}

.gallery-caption h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1.1;
}

.gallery-caption p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-badge {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 2;
  background: rgba(168, 106, 49, 0.9);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(-8px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-item:hover .gallery-badge { opacity: 1; transform: translateY(0); }

.gallery-item .corner-mark {
  position: absolute;
  top: 20px; right: 20px;
  width: 20px; height: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 2;
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-item:hover .corner-mark { opacity: 1; transform: translate(0, 0); }

/* Позиции галереи (главная — 8 элементов) */
.gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 6; }
.gallery-item:nth-child(2) { grid-column: span 5; grid-row: span 4; }
.gallery-item:nth-child(3) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 4; grid-row: span 4; }
.gallery-item:nth-child(5) { grid-column: span 4; grid-row: span 4; }
.gallery-item:nth-child(6) { grid-column: span 4; grid-row: span 4; }
.gallery-item:nth-child(7) { grid-column: span 6; grid-row: span 5; }
.gallery-item:nth-child(8) { grid-column: span 6; grid-row: span 5; }

/* Позиции галереи для отдельной страницы (16 элементов) */
.page-gallery .gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 6; }
.page-gallery .gallery-item:nth-child(2) { grid-column: span 5; grid-row: span 4; }
.page-gallery .gallery-item:nth-child(3) { grid-column: span 5; grid-row: span 2; }
.page-gallery .gallery-item:nth-child(4) { grid-column: span 4; grid-row: span 4; }
.page-gallery .gallery-item:nth-child(5) { grid-column: span 4; grid-row: span 4; }
.page-gallery .gallery-item:nth-child(6) { grid-column: span 4; grid-row: span 4; }
.page-gallery .gallery-item:nth-child(7) { grid-column: span 6; grid-row: span 5; }
.page-gallery .gallery-item:nth-child(8) { grid-column: span 6; grid-row: span 5; }
.page-gallery .gallery-item:nth-child(9) { grid-column: span 5; grid-row: span 4; }
.page-gallery .gallery-item:nth-child(10) { grid-column: span 7; grid-row: span 4; }
.page-gallery .gallery-item:nth-child(11) { grid-column: span 4; grid-row: span 3; }
.page-gallery .gallery-item:nth-child(12) { grid-column: span 4; grid-row: span 3; }
.page-gallery .gallery-item:nth-child(13) { grid-column: span 4; grid-row: span 3; }
.page-gallery .gallery-item:nth-child(14) { grid-column: span 8; grid-row: span 5; }
.page-gallery .gallery-item:nth-child(15) { grid-column: span 4; grid-row: span 5; }
.page-gallery .gallery-item:nth-child(16) { grid-column: span 12; grid-row: span 5; }

/* Gallery Tabs (страница gallery) */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gallery-tab {
  background: transparent;
  border: 1px solid var(--border-mid);
  color: var(--gray-text);
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-tab:hover {
  color: #fff;
  border-color: rgba(168, 106, 49, 0.6);
  background: rgba(168, 106, 49, 0.05);
}

.gallery-tab.active {
  color: #fff;
  border-color: var(--brown);
  background: var(--brown);
}

/* ============================================================
   10. FAQ
============================================================ */
.faq {
  position: relative;
  z-index: 3;
  background: var(--black);
  padding: 140px 0;
  color: #fff;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(168, 106, 49, 0.4), transparent);
}

.faq .container { max-width: 1100px; }

.faq-header {
  margin-bottom: 70px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 30px;
}

.faq-header-left { max-width: 600px; }

.faq-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
}

.faq-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 28px; height: 1px;
  background: var(--brown);
}

.faq-title {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: #fff;
  font-style: italic;
}

.faq-title .brown { color: var(--brown); }

.faq-header-right {
  color: var(--gray-text);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  max-width: 260px;
  line-height: 1.8;
  text-align: right;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-light);
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  transition: background 0.3s ease;
}

.faq-item:hover { background: rgba(168, 106, 49, 0.03); }
.faq-item.open { background: rgba(168, 106, 49, 0.05); }
.faq-item.hidden { display: none; }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  cursor: pointer;
  gap: 30px;
  position: relative;
}

.faq-question::before {
  content: attr(data-num);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--brown);
  flex-shrink: 0;
  font-weight: 500;
  opacity: 0.6;
  width: 40px;
}

.faq-question h3 {
  flex: 1;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question h3 { color: var(--brown); }

.faq-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  padding: 4px 10px;
  border: 1px solid rgba(168, 106, 49, 0.4);
  border-radius: 20px;
  flex-shrink: 0;
  opacity: 0.8;
}

.faq-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.3s ease, border-color 0.3s ease,
              transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.faq-item:hover .faq-icon { border-color: var(--brown); }
.faq-item.open .faq-icon {
  background: var(--brown);
  border-color: var(--brown);
  transform: rotate(135deg);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: #fff;
  border-radius: 2px;
  transition: background 0.3s ease;
}

.faq-icon::before { width: 12px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 12px; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
  padding: 0 0 32px 40px;
  color: var(--gray-text);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  max-width: 800px;
}

.faq-answer-inner a {
  color: var(--brown);
  border-bottom: 1px solid rgba(168, 106, 49, 0.3);
  transition: border-color 0.2s ease;
}

.faq-answer-inner a:hover { border-color: var(--brown); }

/* FAQ Search */
.faq-search-section {
  position: relative;
  z-index: 3;
  background: var(--black);
  padding: 0 0 60px;
}

.faq-search-wrap { position: relative; max-width: 100%; }

.faq-search {
  width: 100%;
  padding: 24px 60px 24px 60px;
  background: var(--dark-2);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  outline: none;
  transition: all 0.3s ease;
}

.faq-search::placeholder { color: rgba(255, 255, 255, 0.3); }
.faq-search:focus {
  border-color: rgba(168, 106, 49, 0.6);
  background: rgba(168, 106, 49, 0.03);
}

.faq-search-icon {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  pointer-events: none;
  opacity: 0.5;
}

.faq-search-icon svg {
  width: 100%; height: 100%;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
}

.faq-search-clear {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.faq-search-clear.visible { opacity: 0.5; pointer-events: auto; }
.faq-search-clear:hover { opacity: 1; }

.faq-search-clear svg {
  width: 100%; height: 100%;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
}

.faq-no-results {
  display: none;
  padding: 60px 0;
  text-align: center;
  color: var(--gray-text);
  font-size: 16px;
  letter-spacing: 0.02em;
}

.faq-no-results.visible { display: block; }
.faq-no-results strong { color: var(--brown); font-weight: 500; }

/* FAQ Tabs */
.faq-categories {
  position: relative;
  z-index: 3;
  background: var(--black);
  padding: 40px 0 80px;
}

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 60px;
}

.faq-tab {
  background: transparent;
  border: 1px solid var(--border-mid);
  color: var(--gray-text);
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-tab:hover {
  color: #fff;
  border-color: rgba(168, 106, 49, 0.6);
  background: rgba(168, 106, 49, 0.05);
}

.faq-tab.active {
  color: #fff;
  border-color: var(--brown);
  background: var(--brown);
}

/* ============================================================
   11. CTA (общий для всех страниц)
============================================================ */
.about-cta,
.catalog-cta,
.faq-cta,
.gallery-cta,
.product-cta {
  position: relative;
  z-index: 3;
  background: var(--black);
  padding: 100px 0 140px;
  border-top: 1px solid var(--border-light);
}

.about-cta-inner,
.catalog-cta-inner,
.faq-cta-inner,
.gallery-cta-inner,
.product-cta-inner {
  position: relative;
  padding: 80px 60px;
  background: linear-gradient(135deg, rgba(168, 106, 49, 0.12) 0%, rgba(168, 106, 49, 0.02) 100%);
  border: 1px solid rgba(168, 106, 49, 0.3);
  border-radius: 20px;
  text-align: center;
  overflow: hidden;
}

.about-cta-inner::before,
.catalog-cta-inner::before,
.faq-cta-inner::before,
.gallery-cta-inner::before,
.product-cta-inner::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 106, 49, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.about-cta-inner::after,
.catalog-cta-inner::after,
.faq-cta-inner::after,
.gallery-cta-inner::after,
.product-cta-inner::after {
  content: '';
  position: absolute;
  bottom: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 106, 49, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.about-cta-content,
.catalog-cta-content,
.faq-cta-content,
.gallery-cta-content,
.product-cta-content {
  position: relative;
  z-index: 1;
}

.about-cta-title,
.catalog-cta-title,
.faq-cta-title,
.gallery-cta-title,
.product-cta-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
  font-style: italic;
  margin-bottom: 20px;
}

.about-cta-title .accent,
.catalog-cta-title .accent,
.faq-cta-title .accent,
.gallery-cta-title .accent,
.product-cta-title .accent {
  color: var(--brown);
}

.about-cta-text,
.catalog-cta-text,
.faq-cta-text,
.gallery-cta-text,
.product-cta-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-text);
  max-width: 500px;
  margin: 0 auto 40px;
}

.about-cta-buttons,
.catalog-cta-buttons,
.faq-cta-buttons,
.gallery-cta-buttons,
.product-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Кнопки */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 36px;
  border-radius: 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--brown);
  border-color: var(--brown);
  color: #fff;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brown-dark);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  z-index: 0;
}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-primary svg {
  width: 18px; height: 18px;
  transition: transform 0.3s ease;
}

.btn-primary:hover svg { transform: translateX(5px); }

.btn-secondary {
  background: transparent;
  border-color: var(--border-mid);
  color: #fff;
}

.btn-secondary:hover { border-color: var(--brown); color: var(--brown); }

/* ============================================================
   12. ABOUT PAGE
============================================================ */
.about-hero {
  position: relative;
  z-index: 3;
  background: var(--black);
  padding: 200px 0 100px;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(168, 106, 49, 0.4), transparent);
}

.about-hero::after {
  content: '';
  position: absolute;
  top: 20%; left: -15%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 106, 49, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.about-hero .container { position: relative; z-index: 1; }

.about-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 24px;
  position: relative;
  padding-left: 40px;
}

.about-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 28px; height: 1px;
  background: var(--brown);
}

.about-hero-title {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: #fff;
  font-style: italic;
  margin-bottom: 40px;
  max-width: 900px;
}

.about-hero-title .accent { color: var(--brown); font-weight: 500; }

.about-hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}

.about-hero-text {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.7;
  color: var(--gray-text);
  max-width: 500px;
}

.about-hero-stats { display: flex; gap: 60px; }

.about-stat { display: flex; flex-direction: column; gap: 6px; }

.about-stat-value {
  font-size: 40px;
  font-weight: 400;
  color: var(--brown);
  letter-spacing: -0.03em;
  line-height: 1;
  font-style: italic;
}

.about-stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-text);
}

.about-story {
  position: relative;
  z-index: 3;
  background: var(--black);
  padding: 60px 0 120px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.story-label { position: sticky; top: 140px; }

.story-label-num {
  font-size: 80px;
  font-weight: 400;
  color: var(--brown);
  letter-spacing: -0.05em;
  line-height: 1;
  font-style: italic;
  margin-bottom: 20px;
}

.story-label-title {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.3;
  max-width: 280px;
}

.story-content p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--gray-text);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.story-content p:first-child::first-letter {
  font-size: 64px;
  font-weight: 400;
  color: var(--brown);
  float: left;
  line-height: 0.9;
  margin: 4px 12px 0 0;
  font-style: italic;
}

.story-content p strong { color: #fff; font-weight: 500; }

.about-values {
  position: relative;
  z-index: 3;
  background: var(--black);
  padding: 100px 0;
  border-top: 1px solid var(--border-light);
}

.values-header { margin-bottom: 70px; max-width: 700px; }

.values-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  font-style: italic;
}

.values-title .accent { color: var(--brown); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  position: relative;
  padding: 48px 36px;
  background: var(--dark-2);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1),
              border-color 0.4s ease,
              background 0.4s ease;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--brown);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 106, 49, 0.4);
  background: rgba(168, 106, 49, 0.04);
}

.value-card:hover::before { transform: scaleX(1); }

.value-num {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 30px;
  display: block;
}

.value-icon {
  width: 48px; height: 48px;
  margin-bottom: 24px;
  color: var(--brown);
}

.value-icon svg {
  width: 100%; height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-title {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.value-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-text);
  letter-spacing: 0.01em;
}

.about-timeline {
  position: relative;
  z-index: 3;
  background: var(--black);
  padding: 100px 0 120px;
  border-top: 1px solid var(--border-light);
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  flex-wrap: wrap;
  gap: 30px;
}

.timeline-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  font-style: italic;
}

.timeline-title .accent { color: var(--brown); }

.timeline-subtitle {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-text);
  max-width: 300px;
  line-height: 1.8;
  text-align: right;
}

.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 60px;
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
  position: relative;
  transition: background 0.3s ease;
}

.timeline-item:last-child { border-bottom: 1px solid var(--border-light); }
.timeline-item:hover { background: rgba(168, 106, 49, 0.03); }

.timeline-year {
  font-size: 32px;
  font-weight: 400;
  color: var(--brown);
  letter-spacing: -0.03em;
  line-height: 1;
  font-style: italic;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.timeline-year::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brown);
  box-shadow: 0 0 12px rgba(168, 106, 49, 0.8);
  flex-shrink: 0;
  margin-top: 12px;
}

.timeline-content h3 {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.3;
}

.timeline-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-text);
  letter-spacing: 0.01em;
  max-width: 700px;
}

.about-team {
  position: relative;
  z-index: 3;
  background: var(--black);
  padding: 100px 0 120px;
  border-top: 1px solid var(--border-light);
}

.team-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
  flex-wrap: wrap;
  gap: 30px;
}

.team-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  font-style: italic;
}

.team-title .accent { color: var(--brown); }

.team-subtitle {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-text);
  max-width: 300px;
  line-height: 1.8;
  text-align: right;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1),
              border-color 0.4s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 106, 49, 0.4);
}

.team-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(60%) brightness(0.7);
  transition: filter 0.6s ease, transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.team-card:hover .team-photo {
  filter: grayscale(0%) brightness(0.9);
  transform: scale(1.05);
}

.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

.team-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  z-index: 2;
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.team-card:hover .team-info { transform: translateY(0); }

.team-name {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1.2;
}

.team-role {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 14px;
}

.team-bio {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.01em;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.team-card:hover .team-bio { opacity: 1; max-height: 120px; }

.team-photo.photo-1 { background: linear-gradient(135deg, #2a1f17 0%, #1a1a1d 100%); }
.team-photo.photo-2 { background: linear-gradient(135deg, #1f1a2a 0%, #1a1a1d 100%); }
.team-photo.photo-3 { background: linear-gradient(135deg, #2a1f17 0%, #0f0f0f 100%); }
.team-photo.photo-4 { background: linear-gradient(135deg, #1a2a1f 0%, #1a1a1d 100%); }

.team-photo .initials {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.06);
  font-style: italic;
  letter-spacing: -0.05em;
  pointer-events: none;
}

/* ============================================================
   13. CONTACTS PAGE
============================================================ */
.contacts-hero {
  position: relative;
  z-index: 3;
  background: var(--black);
  padding: 200px 0 100px;
  overflow: hidden;
}

.contacts-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(168, 106, 49, 0.4), transparent);
}

.contacts-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 24px;
  position: relative;
  padding-left: 40px;
}

.contacts-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 28px; height: 1px;
  background: var(--brown);
}

.contacts-title {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: #fff;
  font-style: italic;
  margin-bottom: 40px;
}

.contacts-title .accent { color: var(--brown); font-weight: 500; }

.contacts-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 100px;
}

.contacts-intro-text {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.7;
  color: var(--gray-text);
  max-width: 500px;
}

.contacts-intro-meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}

.contacts-intro-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-text);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contacts-intro-meta-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brown);
  box-shadow: 0 0 10px rgba(168, 106, 49, 0.8);
}

.contacts-main {
  position: relative;
  z-index: 3;
  background: var(--black);
  padding: 60px 0 120px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form-wrap { position: relative; }

.contact-form-title {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
  font-style: italic;
  margin-bottom: 12px;
}

.contact-form-title .accent { color: var(--brown); }

.contact-form-sub {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.form-field {
  position: relative;
  border-bottom: 1px solid var(--border-light);
  transition: border-color 0.3s ease;
}

.form-field:hover { border-color: var(--border-mid); }
.form-field:focus-within { border-color: var(--brown); }

.form-field label {
  display: block;
  padding: 24px 0 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-text);
  transition: color 0.3s ease;
}

.form-field:focus-within label { color: var(--brown); }

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 4px 0 22px;
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  resize: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255, 255, 255, 0.2); }

.form-field textarea { min-height: 120px; padding-top: 4px; }
.form-field.full { grid-column: 1 / -1; }

.form-select-wrap { position: relative; }

.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: 6px;
  width: 8px; height: 8px;
  border-right: 1px solid var(--gray-text);
  border-bottom: 1px solid var(--gray-text);
  transform: rotate(45deg);
  pointer-events: none;
}

.form-field select {
  width: 100%;
  padding: 4px 0 22px;
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.form-field select option { background: #111; color: #fff; }

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding: 24px 32px;
  background: var(--brown);
  color: #fff;
  border: 1px solid var(--brown);
  border-radius: 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brown-dark);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  z-index: 0;
}

.form-submit:hover::before { transform: translateX(0); }
.form-submit span, .form-submit svg { position: relative; z-index: 1; }

.form-submit svg {
  width: 20px; height: 20px;
  transition: transform 0.3s ease;
}

.form-submit:hover svg { transform: translateX(6px); }

.form-success {
  display: none;
  padding: 24px;
  background: rgba(168, 106, 49, 0.1);
  border: 1px solid rgba(168, 106, 49, 0.4);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
  margin-top: 24px;
  letter-spacing: 0.02em;
}

.form-success.visible { display: block; }
.form-success strong { color: var(--brown); font-weight: 500; }

.contact-info { display: flex; flex-direction: column; gap: 40px; }

.info-block {
  border-top: 1px solid var(--border-light);
  padding-top: 32px;
}

.info-block-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 20px;
}

.info-block-label .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brown);
  box-shadow: 0 0 10px rgba(168, 106, 49, 0.8);
}

.info-block-value {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.4;
  margin-bottom: 8px;
  transition: color 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.info-block-value:hover { color: var(--brown); }

.info-block-sub {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.info-socials { display: flex; gap: 12px; margin-top: 16px; }

.info-social {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.info-social:hover {
  background: var(--brown);
  border-color: var(--brown);
  transform: translateY(-3px);
}

.info-social svg { width: 18px; height: 18px; fill: #fff; }

.offices {
  position: relative;
  z-index: 3;
  background: var(--black);
  padding: 100px 0 120px;
  border-top: 1px solid var(--border-light);
}

.offices-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 30px;
}

.offices-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  font-style: italic;
}

.offices-title .accent { color: var(--brown); }

.offices-subtitle {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-text);
  max-width: 300px;
  line-height: 1.8;
  text-align: right;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.office-card {
  position: relative;
  padding: 40px 32px;
  background: var(--dark-2);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1),
              border-color 0.4s ease,
              background 0.4s ease;
  overflow: hidden;
}

.office-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--brown);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.office-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 106, 49, 0.4);
  background: rgba(168, 106, 49, 0.04);
}

.office-card:hover::before { transform: scaleX(1); }

.office-num {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 24px;
  display: block;
}

.office-city {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.1;
}

.office-address {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.office-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.office-contact a {
  font-size: 14px;
  color: #fff;
  transition: color 0.2s ease;
  letter-spacing: 0.02em;
}

.office-contact a:hover { color: var(--brown); }

/* ============================================================
   14. PRODUCT (SINGLE) PAGE
============================================================ */
.product-hero {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.product-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.product-hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
}

.product-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
}

.product-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 80px;
}

.product-hero-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
}

.breadcrumbs a { color: rgba(255, 255, 255, 0.6); transition: color 0.2s ease; }
.breadcrumbs a:hover { color: var(--brown); }
.breadcrumbs .sep { color: rgba(255, 255, 255, 0.3); }
.breadcrumbs .current { color: var(--brown); }

.product-hero-title {
  font-size: clamp(56px, 10vw, 160px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: #fff;
  font-style: italic;
  margin-bottom: 24px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.product-hero-meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.product-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.product-hero-meta-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brown);
  box-shadow: 0 0 10px rgba(168, 106, 49, 0.8);
}

.product-intro {
  position: relative;
  z-index: 3;
  background: var(--black);
  padding: 120px 0;
  border-top: 1px solid var(--border-light);
}

.product-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.product-intro-left { position: sticky; top: 140px; }

.product-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
}

.product-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 28px; height: 1px;
  background: var(--brown);
}

.product-intro-title {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  font-style: italic;
  margin-bottom: 32px;
}

.product-intro-title .accent { color: var(--brown); }

.product-intro-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.product-intro-tag {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-text);
  padding: 8px 14px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
}

.product-intro-text {
  font-size: 17px;
  line-height: 1.9;
  color: var(--gray-text);
  letter-spacing: 0.01em;
}

.product-intro-text p { margin-bottom: 24px; }

.product-intro-text p:first-child::first-letter {
  font-size: 64px;
  font-weight: 400;
  color: var(--brown);
  float: left;
  line-height: 0.9;
  margin: 4px 12px 0 0;
  font-style: italic;
}

.product-intro-text strong { color: #fff; font-weight: 500; }

.product-specs {
  position: relative;
  z-index: 3;
  background: var(--black);
  padding: 100px 0 120px;
  border-top: 1px solid var(--border-light);
}

.specs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 30px;
}

.specs-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  font-style: italic;
}

.specs-title .accent { color: var(--brown); }

.specs-subtitle {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-text);
  max-width: 320px;
  line-height: 1.8;
  text-align: right;
}

.specs-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  background: var(--dark-2);
  scrollbar-width: thin;
  scrollbar-color: var(--brown) transparent;
}

.specs-table-wrap::-webkit-scrollbar { height: 6px; }
.specs-table-wrap::-webkit-scrollbar-track { background: transparent; }
.specs-table-wrap::-webkit-scrollbar-thumb { background: var(--brown); border-radius: 3px; }

.specs-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
  font-size: 14px;
}

.specs-table thead th {
  text-align: left;
  padding: 22px 24px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 500;
  border-bottom: 1px solid var(--border-mid);
  white-space: nowrap;
  background: rgba(168, 106, 49, 0.03);
}

.specs-table tbody td {
  padding: 22px 24px;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-bottom: 1px solid var(--border-light);
  white-space: nowrap;
  transition: background 0.3s ease;
}

.specs-table tbody tr:last-child td { border-bottom: none; }
.specs-table tbody tr:hover td { background: rgba(168, 106, 49, 0.05); }

.specs-table tbody td:first-child {
  color: var(--brown);
  font-weight: 500;
  font-style: italic;
}

.specs-note {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.product-gallery {
  position: relative;
  z-index: 3;
  background: var(--black);
  padding: 100px 0 120px;
  border-top: 1px solid var(--border-light);
}

/* ============================================================
   15. FOOTER
============================================================ */
.footer {
  position: relative;
  z-index: 3;
  background: var(--black);
  color: #fff;
  padding: 100px 0 40px;
  border-top: 1px solid var(--border-light);
}

.footer .container { max-width: 1500px; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--border-light);
}

.footer-brand h3 {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: #fff;
  font-style: italic;
}

.footer-brand h3 .brown { color: var(--brown); }

.footer-brand p {
  color: var(--gray-text);
  font-size: 14px;
  line-height: 1.8;
  max-width: 340px;
  margin-bottom: 28px;
}

.footer-socials { display: flex; gap: 12px; }

.footer-social {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer-social:hover {
  background: var(--brown);
  border-color: var(--brown);
  transform: translateY(-3px);
}

.footer-social svg { width: 18px; height: 18px; fill: #fff; }

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 24px;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col a {
  color: var(--gray-text);
  font-size: 14px;
  transition: color 0.2s ease;
  cursor: pointer;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
  letter-spacing: 0.05em;
}

.footer-bottom-links { display: flex; gap: 24px; }

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover { color: var(--brown); }

/* ============================================================
   16. АДАПТИВНОСТЬ
============================================================ */
@media (max-width: 1200px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-hero-stats { gap: 40px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-label { position: static; }
  .story-label-title { max-width: 100%; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contacts-intro { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .contacts-intro-meta { align-items: flex-start; }
  .contacts-grid { grid-template-columns: 1fr; gap: 80px; }
  .offices-grid { grid-template-columns: 1fr 1fr; }
  .product-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-intro-left { position: static; }
  
  .page-gallery .gallery-item:nth-child(1) { grid-column: span 12; grid-row: span 5; }
  .page-gallery .gallery-item:nth-child(2) { grid-column: span 6; grid-row: span 4; }
  .page-gallery .gallery-item:nth-child(3) { grid-column: span 6; grid-row: span 4; }
  .page-gallery .gallery-item:nth-child(4),
  .page-gallery .gallery-item:nth-child(5),
  .page-gallery .gallery-item:nth-child(6) { grid-column: span 4; grid-row: span 3; }
  .page-gallery .gallery-item:nth-child(7),
  .page-gallery .gallery-item:nth-child(8) { grid-column: span 6; grid-row: span 4; }
  .page-gallery .gallery-item:nth-child(9) { grid-column: span 6; grid-row: span 3; }
  .page-gallery .gallery-item:nth-child(10) { grid-column: span 6; grid-row: span 3; }
  .page-gallery .gallery-item:nth-child(11),
  .page-gallery .gallery-item:nth-child(12),
  .page-gallery .gallery-item:nth-child(13) { grid-column: span 4; grid-row: span 3; }
  .page-gallery .gallery-item:nth-child(14) { grid-column: span 8; grid-row: span 4; }
  .page-gallery .gallery-item:nth-child(15) { grid-column: span 4; grid-row: span 4; }
  .page-gallery .gallery-item:nth-child(16) { grid-column: span 12; grid-row: span 4; }
}

@media (max-width: 809.98px) {
  .lens-headline h2 { font-size: 28px; }
  .lens-label .label-text { font-size: 14px; }
  .lens-label { padding: 6px 12px 6px 10px; }
  .depth-element.pos-1 { transform: translate(calc(-50% + 0px), calc(-50% - 80px)); }
  .depth-element.pos-2 { transform: translate(calc(-50% - 160px), calc(-50% - 40px)); }
  .depth-element.pos-3 { transform: translate(calc(-50% + 160px), calc(-50% + 60px)); }
  .depth-element.pos-4 { transform: translate(calc(-50% - 100px), calc(-50% + 120px)); }
  .depth-element.pos-5 { transform: translate(calc(-50% + 140px), calc(-50% - 30px)); }
}

@media (max-width: 768px) {
  .header .menu { display: none; }
  .mobile-menu-btn { display: block; }
  .hero__title { font-size: 40px; }
  .header__item:nth-child(2) { display: none; }
  .container { padding: 0 20px; }
  .header__item { height: 50px; }
  .header__item:nth-child(1),
  .header__item:nth-child(3) { width: auto; border-radius: 4px; flex: 1; }
  .mobile-menu-btn p { font-size: 12px; }
  .hero__item:nth-child(1) { max-width: 100%; }
  
  .about-hero { padding: 140px 0 60px; }
  .about-hero-bottom { flex-direction: column; align-items: flex-start; }
  .about-hero-stats { gap: 32px; }
  .about-stat-value { font-size: 32px; }
  .about-story { padding: 40px 0 80px; }
  .story-label-num { font-size: 56px; }
  .story-label-title { font-size: 20px; }
  .story-content p { font-size: 16px; }
  .about-values, .about-timeline, .about-team { padding: 80px 0; }
  .values-header, .timeline-header, .team-header { flex-direction: column; align-items: flex-start; margin-bottom: 40px; }
  .timeline-subtitle, .team-subtitle { text-align: left; }
  .timeline-item { grid-template-columns: 1fr; gap: 16px; padding: 32px 0; }
  .timeline-year { font-size: 24px; }
  
  .about-cta, .catalog-cta, .faq-cta, .gallery-cta, .product-cta { padding: 60px 0 80px; }
  .about-cta-inner, .catalog-cta-inner, .faq-cta-inner, .gallery-cta-inner, .product-cta-inner { padding: 50px 30px; }
  .about-cta-buttons, .catalog-cta-buttons, .faq-cta-buttons, .gallery-cta-buttons, .product-cta-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  
  .footer { padding: 60px 0 30px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .contacts-hero { padding: 140px 0 60px; }
  .contacts-intro { margin-bottom: 60px; }
  .contacts-main { padding: 40px 0 80px; }
  .form-row { grid-template-columns: 1fr; }
  .offices { padding: 80px 0; }
  .offices-header { flex-direction: column; align-items: flex-start; }
  .offices-subtitle { text-align: left; }
  .offices-grid { grid-template-columns: 1fr; }
  
  .catalog-hero { padding: 140px 0 60px; }
  .catalog-hero-bottom { flex-direction: column; align-items: flex-start; }
  .catalog-hero-stats { gap: 32px; }
  .catalog-stat-value { font-size: 32px; }
  .catalog-filters { padding: 20px 0 40px; }
  .filters-bar { flex-direction: column; align-items: flex-start; gap: 20px; }
  .filters-left, .filters-right { width: 100%; flex-wrap: wrap; }
  .filters-right { justify-content: space-between; }
  .catalog-grid { grid-template-columns: 1fr; gap: 20px; }
  .catalog-card-body { padding: 24px 22px 26px; }
  .catalog-card-title { font-size: 20px; }
  
  .gallery-hero { padding: 140px 0 60px; }
  .gallery-hero-bottom { flex-direction: column; align-items: flex-start; }
  .gallery-hero-stats { gap: 32px; }
  .gallery-stat-value { font-size: 32px; }
  .gallery-filters { padding: 20px 0 40px; }
  .gallery-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; scrollbar-width: none; }
  .gallery-tabs::-webkit-scrollbar { display: none; }
  .gallery-tab { white-space: nowrap; flex-shrink: 0; padding: 10px 20px; font-size: 12px; }
  .gallery-section { padding: 20px 0 80px; }
  .gallery-grid { grid-auto-rows: 60px; gap: 12px; }
  .gallery-item:nth-child(n) { grid-column: span 6; grid-row: span 3; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(16) { grid-column: span 12; grid-row: span 4; }
  
  .faq-hero { padding: 140px 0 60px; }
  .faq-hero-bottom { flex-direction: column; align-items: flex-start; }
  .faq-hero-stats { gap: 32px; }
  .faq-stat-value { font-size: 32px; }
  .faq-search-section { padding: 0 0 40px; }
  .faq-search { padding: 20px 50px 20px 50px; font-size: 15px; }
  .faq-search-icon { left: 20px; width: 18px; height: 18px; }
  .faq-search-clear { right: 20px; }
  .faq-categories { padding: 20px 0 60px; }
  .faq-tabs { margin-bottom: 40px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; scrollbar-width: none; }
  .faq-tabs::-webkit-scrollbar { display: none; }
  .faq-tab { white-space: nowrap; flex-shrink: 0; padding: 10px 20px; font-size: 12px; }
  .faq-question { padding: 24px 0; gap: 16px; }
  .faq-question::before { width: 30px; }
  .faq-tag { display: none; }
  .faq-answer-inner { padding: 0 0 24px 30px; }
  
  .product-hero-content { padding-bottom: 60px; }
  .product-intro { padding: 80px 0; }
  .specs-header, .gallery-header { flex-direction: column; align-items: flex-start; margin-bottom: 40px; }
  .specs-subtitle, .gallery-subtitle { text-align: left; }
  .product-specs, .product-gallery { padding: 80px 0; }
  .specs-table { min-width: 700px; font-size: 13px; }
  .specs-table thead th, .specs-table tbody td { padding: 16px 18px; }
  
  .catalog { padding: 80px 0 60px; }
  .catalog-header { flex-direction: column; align-items: flex-start; margin-bottom: 40px; }
  .catalog-subtitle { text-align: left; }
  .catalog-more { margin-top: 50px; }
  .catalog-more-btn { width: 100%; justify-content: center; padding: 20px 30px; }
  
  .gallery { padding: 80px 0 60px; }
  .gallery-header { flex-direction: column; align-items: flex-start; margin-bottom: 40px; }
  .gallery-subtitle { text-align: left; }
  
  .faq { padding: 80px 0; }
  .faq-header { flex-direction: column; align-items: flex-start; margin-bottom: 40px; }
  .faq-header-right { text-align: left; }
}

@media (max-width: 640px) {
  .hero__wrapper { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; width: 100%; height: 100vh; padding-bottom: 100px; }
  .hero__btn { width: 100%; justify-content: center; }
  .custom-scrollbar { right: 0; }
  .hero__title { color: #fff; }
  .hero__desc { color: #eee; }
  .catalog-card-body { padding: 24px 22px 26px; }
  .catalog-card-title { font-size: 20px; }
}

@media (max-width: 480px) {
  .lens-label .label-text { font-size: 11px; }
  .lens-label { padding: 4px 8px; }
  .depth-element.pos-1 { transform: translate(calc(-50% + 0px), calc(-50% - 60px)); }
  .depth-element.pos-2 { transform: translate(calc(-50% - 100px), calc(-50% - 30px)); }
  .depth-element.pos-3 { transform: translate(calc(-50% + 100px), calc(-50% + 40px)); }
  .depth-element.pos-4 { transform: translate(calc(-50% - 80px), calc(-50% + 80px)); }
  .depth-element.pos-5 { transform: translate(calc(-50% + 90px), calc(-50% - 20px)); }
  
  .about-hero { padding: 120px 0 40px; }
  .about-hero-stats { gap: 24px; }
  .about-stat-value { font-size: 26px; }
  .team-grid { grid-template-columns: 1fr; }
  .value-card { padding: 36px 28px; }
  
  .contacts-hero { padding: 120px 0 40px; }
  .contact-form-title { font-size: 26px; }
  .office-card { padding: 32px 24px; }
  
  .catalog-hero { padding: 120px 0 40px; }
  .catalog-hero-stats { gap: 24px; }
  .catalog-stat-value { font-size: 26px; }
  .filter-chip { padding: 8px 14px; font-size: 11px; }
  
  .gallery-hero { padding: 120px 0 40px; }
  .gallery-hero-stats { gap: 24px; }
  .gallery-stat-value { font-size: 26px; }
  .gallery-grid { grid-auto-rows: 50px; }
  
  .faq-hero { padding: 120px 0 40px; }
  .faq-hero-stats { gap: 24px; }
  .faq-stat-value { font-size: 26px; }
  
  .product-hero-title { font-size: 40px; }
  .product-hero-meta { gap: 20px; }
  .product-hero-meta-item { font-size: 10px; }
  .specs-table { min-width: 600px; }
}