/* =============================================
   ANDRELOOK — css/style.css
   Light · Editorial · Bold Scale
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Outfit:wght@300;400;500;600&display=swap');

/* ── Variables ──────────────────────────────── */
:root {
  --bg:          #F5F2ED;
  --bg-warm:     #EDE9E2;
  --bg-card:     #FFFFFF;
  --bg-dark:     #1C1C1A;
  --text:        #1C1C1A;
  --text-mid:    #4A4844;
  --text-muted:  #8A8680;
  --text-light:  #B8B3AC;
  --border:      #DDD8D0;
  --border-mid:  #C8C2B8;
  --green:       #3D3028;
  --green-light: #F0EBE6;
  --gold:        #A8906A;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Outfit', system-ui, sans-serif;

  --container: 1360px;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);

  --header-h: 80px;
}

/* ── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { background: var(--bg); color: var(--text); font-family: var(--font-sans); font-weight: 300; line-height: 1.6; overflow-x: hidden; }
img  { display: block; width: 100%; }
a    { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 5rem);
}
.section { padding: clamp(5rem, 9vw, 9rem) 0; }

/* ══════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 32px rgba(28,28,26,0.06);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  transition: opacity 0.25s;
  mix-blend-mode: multiply;
}
.logo-img:hover { opacity: 0.65; }

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

.nav-link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--green);
  transition: width 0.35s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Lang switcher */
.lang-switcher {
  display: flex;
  border: 1px solid var(--border-mid);
  overflow: hidden;
}
.lang-btn {
  padding: 0.4rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-right: 1px solid var(--border-mid);
  transition: background 0.2s, color 0.2s;
}
.lang-btn:last-child { border-right: none; }
.lang-btn:hover { background: var(--bg-warm); color: var(--text); }
.lang-btn.active { background: var(--green); color: #fff; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 6px; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 1px; background: var(--text); transition: transform 0.3s var(--ease); }
.hamburger.open span:first-child { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:last-child  { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0; top: var(--header-h);
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.mobile-nav.open { display: flex; opacity: 1; pointer-events: all; }
.mobile-nav .nav-link { font-size: 1.3rem; }
.mobile-nav .lang-switcher { margin-top: 1rem; }

/* ══════════════════════════════════════════════
   HERO — full-bleed photo, brand centered
   ══════════════════════════════════════════════ */
.hero {
  padding-top: var(--header-h);
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  position: relative;
  overflow: hidden;
  background: #0e0e0c;
}

/* Фото фон */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
  transform: scale(1.04);
  animation: heroZoom 12s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}

/* Затемнение — среднее, с градиентом снизу и сверху */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10,10,8,0.55) 0%,
      rgba(10,10,8,0.28) 40%,
      rgba(10,10,8,0.38) 70%,
      rgba(10,10,8,0.72) 100%
    );
  z-index: 1;
}

/* Верхняя строка */
.hero-topbar {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 1.5rem clamp(1.5rem, 4vw, 5rem);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) 0.1s forwards;
}
.hero-topbar-item {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 0 2rem;
}
.hero-topbar-item:first-child { padding-left: 0; }
.hero-topbar-item.hero-topbar-year { color: var(--gold); margin-left: auto; padding-right: 0; }
.hero-topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* Центральный блок */
.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 6vw, 7rem) clamp(1.5rem, 4vw, 5rem);
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-brand-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.hero-brand-line--top,
.hero-brand-line--bottom {
  width: clamp(60px, 12vw, 160px);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
  opacity: 0;
  animation: fadeIn 1.2s var(--ease) 0.6s forwards;
}

.hero-brand-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.3s forwards;
}

.hero-brand-full {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 11rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: clamp(0.08em, 1vw, 0.18em);
  color: #fff;
  text-transform: none;
  line-height: 1;
  text-shadow: 0 4px 60px rgba(0,0,0,0.4);
}

.hero-tagline {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.85s forwards;
}

/* Нижняя строка */
.hero-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.75rem clamp(1.5rem, 4vw, 5rem);
  border-top: 1px solid rgba(255,255,255,0.12);
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 1.1s forwards;
}
.hero-footer-left  { display: flex; align-items: center; }
.hero-footer-center { display: flex; justify-content: center; }
.hero-footer-right { display: flex; justify-content: flex-end; }

.hero-footer-note {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* Кнопка светлая версия для тёмного фона */
.btn-primary--light {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  color: #fff;
}
.btn-primary--light::before { background: #fff; }
.btn-primary--light:hover { color: var(--text); }

.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.hero-scroll-bar {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.hero-scroll-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: #fff;
  animation: slideRight 2.5s var(--ease) infinite 1.5s;
}
@keyframes slideRight {
  0%   { left: -100%; }
  50%  { left: 0; }
  100% { left: 100%; }
}

/* ══════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 2.75rem;
  background: var(--text);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease);
  width: fit-content;
  cursor: pointer;
  border: none;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--green);
  transform: translateX(-101%);
  transition: transform 0.45s var(--ease);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 1.1rem 2.75rem;
  border: 1px solid var(--border-mid);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  width: fit-content;
  cursor: pointer;
  background: none;
}
.btn-outline:hover { background: var(--text); color: #fff; border-color: var(--text); }

/* ══════════════════════════════════════════════
   TICKER
   ══════════════════════════════════════════════ */
.ticker {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  gap: 3rem;
  padding: 1.15rem 0;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
}
.ticker-inner span {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}
.ticker-inner span.dot {
  color: var(--border-mid);
  letter-spacing: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════════ */
.stats-bar {
  border-bottom: 1px solid var(--border);
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat-item {
  padding: 3.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-num--emoji {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
}
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════
   SECTION HEADER
   ══════════════════════════════════════════════ */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 300;
  letter-spacing: -0.01em;
}
.section-link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  transition: color 0.2s;
}
.section-link:hover { color: var(--text); }

/* ══════════════════════════════════════════════
   HOW IT WORKS — с номерами
   ══════════════════════════════════════════════ */
.how-section { background: var(--bg-warm); }

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
}
.how-card {
  background: var(--bg-warm);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background 0.25s;
  position: relative;
}
.how-card:hover { background: var(--bg-card); }

.how-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.how-card__title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.2;
}
.how-card__text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════
   STATEMENT
   ══════════════════════════════════════════════ */
.statement { background: var(--bg-dark); }
.statement-inner { max-width: 900px; }
.statement-kicker {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.statement-kicker-line { width: 48px; height: 1px; background: var(--gold); }
.statement-kicker span {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.statement-quote {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 3rem;
}
.statement-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
}

/* ══════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════ */
.contact-inner { text-align: center; max-width: 580px; margin: 0 auto; }
.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.contact-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 3rem;
}
.contact-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.75);
}

.footer-top {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: clamp(3.5rem, 6vw, 6rem) 0;
}

.footer-top-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}

/* Бренд блок */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-logo {
  height: 56px;
  width: auto;
  /* логотип тёмный — инвертируем для тёмного фона */
  filter: invert(1) brightness(2);
  opacity: 0.9;
  transition: opacity 0.2s;
}
.footer-logo:hover { opacity: 1; }
.footer-brand-text {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

/* Колонки */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.footer-nav-list a {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  letter-spacing: 0.04em;
}
.footer-nav-list a:hover { color: #fff; }

/* Контакты */
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  letter-spacing: 0.04em;
}
.footer-contact-link:hover { color: #fff; }
.footer-contact-icon {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.footer-contact-link:hover .footer-contact-icon {
  border-color: var(--gold);
  background: rgba(168,144,106,0.1);
  color: var(--gold);
}

/* Нижняя строка */
.footer-bottom {
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
}
.footer-bottom-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════
   CATALOG PAGE
   ══════════════════════════════════════════════ */
.catalog-hero {
  padding-top: calc(var(--header-h) + 5rem);
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.catalog-hero-bg {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: clamp(14rem, 22vw, 26rem);
  font-weight: 300;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(28,28,26,0.05);
  pointer-events: none;
  line-height: 1;
}
.catalog-hero .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.catalog-title {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
}
.catalog-sub {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
  padding-bottom: 0.25rem;
}

/* Filters */
.filters-bar {
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  background: rgba(245, 242, 237, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.filters { display: flex; overflow-x: auto; scrollbar-width: none; }
.filters::-webkit-scrollbar { display: none; }
.filter-btn {
  padding: 1.25rem 2rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.filter-btn:hover { color: var(--text); }
.filter-btn.active { color: var(--text); border-bottom-color: var(--green); }

.catalog-main { padding: 5rem 0 8rem; }

/* ══════════════════════════════════════════════
   CATALOG GRID + PRODUCT CARD
   ══════════════════════════════════════════════ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  min-height: 400px;
}

/* Карточка */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  transition: box-shadow 0.3s var(--ease);
}
.product-card:hover {
  box-shadow: 0 12px 48px rgba(28,28,26,0.10);
  position: relative;
  z-index: 2;
}

/* Фото */
.pc-thumb {
  display: block;
  width: 100%;
  padding-top: 125%;
  position: relative;
  overflow: hidden;
  background: #e8e4de;
}
.pc-thumb img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s var(--ease);
}
.product-card:hover .pc-thumb img { transform: scale(1.05); }

.pc-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
}

.pc-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-placeholder span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* Тело */
.pc-body {
  padding: 1.25rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid var(--border);
}
.pc-cat {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.4rem;
}
.pc-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  color: var(--text);
  display: block;
  margin-bottom: 0.3rem;
  text-decoration: none;
  transition: color 0.2s;
}
.pc-name:hover { color: var(--green); }
.pc-brand {
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}
.pc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: auto;
  border-top: 1px solid var(--border);
}
.pc-price {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
}
.btn-inquiry {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.25rem;
  background: var(--text);
  color: #fff;
  font-size: 0.67rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color 0.35s var(--ease);
  cursor: pointer;
  border: none;
}
.btn-inquiry::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease);
}
.btn-inquiry:hover::before { transform: translateX(0); }
.btn-inquiry span { position: relative; z-index: 1; }

.empty-state { grid-column: 1/-1; text-align: center; padding: 8rem; background: var(--bg-card); }
.empty-state p { font-family: var(--font-serif); font-size: 2rem; font-weight: 300; font-style: italic; color: var(--text-light); }

/* ══════════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ══════════════════════════════════════════════ */
.product-detail-page {
  padding-top: calc(var(--header-h) + 4rem);
  padding-bottom: 8rem;
}
.product-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4rem;
  transition: color 0.2s;
}
.product-back:hover { color: var(--text); }

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: start;
}

.product-gallery { position: sticky; top: calc(var(--header-h) + 2rem); }
.product-main-img {
  position: relative;
  width: 100%;
  padding-top: 125%;
  overflow: hidden;
  background: var(--bg-warm);
  margin-bottom: 1rem;
}
.product-main-img img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.product-placeholder-lg {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-placeholder-lg span {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); text-align: center; padding: 0 3rem;
}

.product-thumbs { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.thumb {
  width: calc(25% - 0.5rem);
  position: relative;
  padding-top: calc(25% - 0.5rem);
  overflow: hidden;
  opacity: 0.45;
  transition: opacity 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
  flex-shrink: 0;
}
.thumb.active, .thumb:hover { opacity: 1; border-color: var(--border-mid); }
.thumb img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.product-info { padding-top: 0.5rem; }
.product-detail__cat {
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.product-detail__name {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 300; line-height: 1.05; margin-bottom: 0.6rem;
}
.product-detail__brand {
  font-size: 0.85rem; color: var(--text-light);
  letter-spacing: 0.1em; margin-bottom: 2.5rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid var(--border);
}
.product-detail__desc {
  font-size: 1rem; font-weight: 300; line-height: 1.85;
  color: var(--text-mid); margin-bottom: 2.5rem;
}
.product-detail__meta {
  display: flex; flex-direction: column; gap: 0.75rem;
  margin-bottom: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.product-detail__meta li {
  font-size: 0.88rem; font-weight: 300; color: var(--text-muted);
  padding-left: 1.25rem; position: relative;
}
.product-detail__meta li::before {
  content: '—'; position: absolute; left: 0; color: var(--green);
}

/* ══════════════════════════════════════════════
   MODAL
   ══════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(28,28,26,0.45);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--bg-card);
  max-width: 480px; width: 100%;
  padding: 3.5rem;
  position: relative;
  transform: translateY(28px);
  transition: transform 0.4s var(--ease);
  box-shadow: 0 32px 80px rgba(28,28,26,0.12);
}
.modal-overlay.open .modal { transform: translateY(0); }

.modal-close {
  position: absolute; top: 1.75rem; right: 1.75rem;
  font-size: 1rem; color: var(--text-muted); transition: color 0.2s;
}
.modal-close:hover { color: var(--text); }

.modal-label-el {
  font-size: 0.65rem; font-weight: 400; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.modal-title {
  font-family: var(--font-serif);
  font-size: 2rem; font-weight: 400; line-height: 1.2; margin-bottom: 1rem;
}
.modal-text-el {
  font-size: 0.9rem; font-weight: 300; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 2.5rem;
}
.modal-actions { display: flex; flex-direction: column; gap: 0.75rem; }
.modal-btn {
  display: block; text-align: center;
  padding: 1.1rem 2rem;
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: all 0.3s var(--ease);
}
.modal-btn--tg { background: var(--text); color: #fff; }
.modal-btn--tg:hover { background: var(--green); }

/* ══════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .how-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail-grid { grid-template-columns: 1fr; gap: 3rem; }
  .product-gallery { position: static; }
  .hero-footer { grid-template-columns: 1fr; gap: 1.5rem; justify-items: center; }
  .hero-footer-right { display: none; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .lang-switcher { display: none; }

  .hero-topbar { gap: 0; }
  .hero-topbar-item { padding: 0 1rem; font-size: 0.62rem; }
  .hero-topbar-item:first-child { padding-left: 0; }

  .hero-brand-full { font-size: clamp(2.8rem, 12vw, 6rem); }

  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .how-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-top-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-bottom-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .modal { padding: 2.5rem 1.75rem; }
  .catalog-title { font-size: clamp(3.5rem, 14vw, 5rem); }
}

@media (max-width: 480px) {
  .hero-topbar-divider { display: none; }
  .hero-topbar { flex-wrap: wrap; gap: 0.5rem; }
  .hero-topbar-item.hero-topbar-year { margin-left: 0; }
}

/* ══════════════════════════════════════════════
   REVIEWS
   ══════════════════════════════════════════════ */
.reviews-section { background: var(--bg); }

.reviews-slider {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s var(--ease);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.8rem 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  border-radius: 0;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.review-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 32px rgba(28,28,26,0.1);
}

.reviews-section .section-kicker {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--green);
  font-weight: 600;
  text-transform: none;
  line-height: 1;
}
.reviews-section .section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.02em;
}

.review-stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.15em;
}

.review-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.7;
  color: #1a1a1a;
  flex: 1;
}

.review-author {
  padding-top: 1rem;
  border-top: 2px solid var(--border);
}
.review-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a1a1a;
}

/* Навигация */
.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.rev-arrow {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.rev-arrow:hover { background: var(--bg-card); border-color: var(--border-mid); }
.rev-arrow svg {
  width: 14px; height: 14px;
  stroke: var(--text); stroke-width: 2;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}

.rev-dots { display: flex; gap: 6px; }
.rev-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--border-mid);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.rev-dot.on { background: var(--text); transform: scale(1.4); }

/* Адаптив */
@media (max-width: 900px) {
  .review-card { flex: 0 0 calc(50% - 0.75rem); max-height: none; }
}
@media (max-width: 560px) {
  .review-card { flex: 0 0 100%; max-height: none; }
}

/* Statement text — serif italic */
.statement-text--serif {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.82) !important;
}

/* ══════════════════════════════════════════════
   MODAL COLORS
   ══════════════════════════════════════════════ */
.modal-colors { margin-top: 0.8rem; margin-bottom: 1.2rem; }

.modal-colors-label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.modal-colors-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
}

.modal-color-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-color-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.modal-color-name {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════
   MOBILE IMPROVEMENTS
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Каталог — 2 колонки вместо 1 */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* Карточка товара */
  .product-card { font-size: 0.9rem; }
  .pc-name { font-size: 0.85rem; }
  .pc-cat  { font-size: 0.65rem; }

  /* Фильтры — горизонтальный скролл */
  .filters {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .filters::-webkit-scrollbar { display: none; }
  .filter-btn { white-space: nowrap; flex-shrink: 0; }

  /* Модалка на мобильном */
  .modal {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 85vh;
    overflow-y: auto;
    padding: 1.8rem 1.4rem 2rem;
  }
  .modal-overlay.open {
    align-items: flex-end;
  }

  /* Hero на мобильном */
  .hero-title {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }
  .hero-topbar { padding: 0 1rem; }

  /* Секции */
  .section { padding: 3rem 0; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.5rem); }

  /* Отзывы */
  .reviews-track { gap: 1rem; }

  /* Статистика */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* How to buy */
  .how-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-top-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 400px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .modal { padding: 1.4rem 1rem 1.8rem; }
}

/* ══════════════════════════════════════════════
   PRODUCT PAGE COLORS
   ══════════════════════════════════════════════ */
.pd-colors {
  margin: 1.2rem 0 1.4rem;
}
.pd-colors-label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.pd-colors-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
}
.pd-color-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pd-color-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  display: inline-block;
}
.pd-color-name {
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.03em;
}

/* ══════════════════════════════════════════════
   PRODUCT PAGE SIZES
   ══════════════════════════════════════════════ */
.pd-sizes { margin: 0 0 1.4rem; }

.pd-sizes-label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.pd-sizes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pd-size {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text);
  background: transparent;
  transition: border-color 0.2s, background 0.2s;
}




/* ══════════════════════════════════════════════
   CONTACT SECTION
   ══════════════════════════════════════════════ */
.contact-section { background: var(--bg); }

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

.contact-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.4rem;
}

.contact-rows {
  max-width: 420px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.contact-row {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: color 0.2s;
  gap: 1rem;
}
.contact-row:hover { color: var(--accent); }

.contact-row__name {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: 90px;
  flex-shrink: 0;
}

.contact-row__handle {
  font-size: 0.82rem;
  color: var(--text-muted);
  flex: 1;
  text-align: left;
  transition: color 0.2s;
}
.contact-row:hover .contact-row__handle { color: var(--accent); }

.contact-row__arrow {
  font-size: 0.9rem;
  color: var(--text-light);
  transition: transform 0.2s, color 0.2s;
}
.contact-row:hover .contact-row__arrow {
  transform: translate(2px, -2px);
  color: var(--accent);
}

@media (max-width: 500px) {
  .contact-row__handle { font-size: 0.75rem; }
}
