/* ======================================
   DESIGN TOKENS
   ====================================== */
:root {
  --clr-bg:        #0e0b08;
  --clr-bg-alt:    #1d1811;
  --clr-surface:   #2c2418;
  --clr-surface-2: #382e20;
  --clr-border:    rgba(210,164,82,.18);
  --clr-border-h:  rgba(210,164,82,.35);

  --clr-gold:      #d2a452;
  --clr-gold-l:    #f1d08a;
  --clr-gold-d:    #a67c32;
  --clr-brass:     #c4983a;

  --clr-text:      #e8dcc8;
  --clr-text-dim:  #a89878;
  --clr-text-inv:  #1a150f;

  --clr-accent:    #8b3a3a;
  --clr-accent-l:  #c25050;

  --ff-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fs-xs:   .75rem;
  --fs-sm:   .875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.25rem;
  --fs-xl:   1.5rem;
  --fs-2xl:  2rem;
  --fs-3xl:  2.75rem;
  --fs-4xl:  3.5rem;

  --space-xs:  .5rem;
  --space-sm:  .75rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-card:  0 4px 24px rgba(0,0,0,.35), 0 1px 4px rgba(0,0,0,.25);
  --shadow-hover: 0 8px 40px rgba(210,164,82,.15), 0 2px 8px rgba(0,0,0,.3);
  --shadow-gold:  0 0 30px rgba(210,164,82,.25);

  --ease-out:    cubic-bezier(.25,.46,.45,.94);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --dur-fast:  .2s;
  --dur-med:   .4s;
  --dur-slow:  .7s;

  --container-max: 1280px;
  --header-h: 72px;
}

/* ======================================
   RESET & BASE
   ====================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--clr-text);
  background: var(--clr-bg);
  overflow-x: hidden;
  width: 100%;
}

html { overflow-x: hidden; }
.parallax-gears { max-width: 100vw; }

/* Кастомный курсор: скрываем системный только если он реально активен */
html.has-custom-cursor,
html.has-custom-cursor body,
html.has-custom-cursor a,
html.has-custom-cursor button,
html.has-custom-cursor input,
html.has-custom-cursor textarea {
  cursor: none;
}




a { color: var(--clr-gold-l); text-decoration: none; }
a:hover { color: var(--clr-gold); }
img, video { display: block; max-width: 100%; height: auto; }

/* ======================================
   FOCUS-VISIBLE (a11y)
   ====================================== */
:focus { outline: none; }

:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.btn:focus-visible,
.chip:focus-visible,
.demo-btn:focus-visible,
.collection-nav__btn:focus-visible,
.burger:focus-visible {
  outline: 2px solid var(--clr-gold-l);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(210,164,82,.22);
}

.form__input:focus-visible {
  outline: none;
}

.nav__link:focus-visible,
.mobileMenu__link:focus-visible,
.footer__link:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Skip-link для клавиатурной навигации */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-md);
  background: var(--clr-gold);
  color: var(--clr-text-inv);
  padding: .6em 1.2em;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 100000;
  transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus {
  top: var(--space-md);
  color: var(--clr-text-inv);
}

/* ======================================
   VIGNETTE
   ====================================== */
.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(15,10,5,.55) 100%);
}

/* ======================================
   NOISE TEXTURE
   ====================================== */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ======================================
   STEAM CANVAS
   ====================================== */
.steam-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: .4;
}

/* ======================================
   PARALLAX GEARS
   ====================================== */
.parallax-gears {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.gear {
  position: absolute;
  /* Было: rgba(210,164,82,.09) — слишком бледно */
  color: rgba(210,164,82,.22);
  will-change: transform;
  filter:
    drop-shadow(0 0 1px rgba(241,208,138,.5))
    drop-shadow(0 0 3px rgba(0,0,0,.6));
}

.gear--1 {
  width: 330px; height: 330px;
  top: 8%; left: -60px;
  animation: gearSpin 40s linear infinite;
}
.gear--2 {
  width: 240px; height: 240px;
  top: 42%; right: -40px;
  animation: gearSpin 30s linear infinite reverse;
}
.gear--3 {
  width: 150px; height: 150px;
  bottom: 14%; left: 6%;
  animation: gearSpin 25s linear infinite;
}
.gear--4 {
  width: 210px; height: 210px;
  top: 22%; right: 10%;
  animation: gearSpin 35s linear infinite;
}
.gear--5 {
  width: 120px; height: 120px;
  top: 65%; left: 18%;
  animation: gearSpin 28s linear infinite reverse;
}
.gear--6 {
  width: 270px; height: 270px;
  bottom: 5%; right: 5%;
  animation: gearSpin 45s linear infinite reverse;
}
.gear--7 {
  width: 110px; height: 110px;
  top: 30%; left: 45%;
  animation: gearSpin 22s linear infinite;
  opacity: .7;
}
.gear--8 {
  width: 180px; height: 180px;
  top: 78%; right: 25%;
  animation: gearSpin 33s linear infinite;
}

@keyframes gearSpin {
  to { transform: rotate(360deg); }
}

/* ======================================
   CUSTOM CURSOR — стилизованная стрелка
   ====================================== */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  pointer-events: none;
  z-index: 99999;
  /* НИКАКОГО transform здесь — им управляет JS.
     Остриё уже в точке (0,0) SVG, сдвигать не нужно. */
  transition:
    width  .18s var(--ease-spring),
    height .18s var(--ease-spring),
    opacity .2s;
  opacity: 0;
  will-change: left, top;
}
.custom-cursor svg { width: 100%; height: 100%; display: block; }
.custom-cursor.is-visible { opacity: 1; }
.custom-cursor.is-hover {
  width: 36px;
  height: 36px;
}
.custom-cursor.is-hover .cursor-arrow {
  filter: drop-shadow(0 0 5px rgba(241,208,138,.7));
}

/* Fallback: скрываем кастом на тач-устройствах */
@media (pointer: coarse) {
  .custom-cursor { display: none; }
  html, body { cursor: auto; }
  a, button, .chip, .fx-chip, [data-magnetic] { cursor: pointer; }
  input, textarea { cursor: text; }
}


/* ======================================
   LAYOUT
   ====================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.section {
  padding-block: var(--space-4xl);
  position: relative;
  z-index: 2;
}

.section--accent {
  background: var(--clr-surface);
  border-block: 1px solid var(--clr-border);
  position: relative;
}
.section--accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--clr-surface);
  margin-inline: calc(50% - 50vw);
  z-index: -1;
  border-block: 1px solid var(--clr-border);
}

/* ======================================
   VICTORIAN FRAME
   ====================================== */
.victorian-frame {
  position: absolute;
  inset: -10px;
  pointer-events: none;
  z-index: 0;
}
.victorian-frame__svg { width: 100%; height: 100%; }

/* ======================================
   TYPOGRAPHY
   ====================================== */
.h1 {
  font-family: var(--ff-display);
  font-size: clamp(var(--fs-2xl), 5vw, var(--fs-4xl));
  font-weight: 900;
  line-height: 1.15;
  color: var(--clr-text);
  margin-bottom: var(--space-lg);
}
.h1__accent {
  color: var(--clr-gold);
  display: block;
  background: linear-gradient(135deg, var(--clr-gold-l), var(--clr-brass));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.h2 {
  font-family: var(--ff-display);
  font-size: clamp(var(--fs-xl), 3.5vw, var(--fs-3xl));
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: var(--clr-text);
}
.h2--light { color: var(--clr-gold-l); }

.h2__ornament {
  display: block;
  font-size: var(--fs-sm);
  color: var(--clr-gold);
  letter-spacing: .3em;
  margin-bottom: var(--space-xs);
}

.h3 {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--clr-gold-l);
  margin-bottom: var(--space-sm);
}

.lead {
  font-size: var(--fs-md);
  color: var(--clr-text);
  margin-bottom: var(--space-xl);
  max-width: 600px;
}
.lead__dim {
  display: block;
  color: var(--clr-text-dim);
  margin-top: var(--space-xs);
  font-size: var(--fs-sm);
}

.muted { color: var(--clr-text-dim); }
.muted--light { color: rgba(232,220,200,.6); }
.small { font-size: var(--fs-sm); }

.link {
  color: var(--clr-gold-l);
  text-decoration: underline;
  text-decoration-color: rgba(210,164,82,.3);
  text-underline-offset: 2px;
}
.link:hover { text-decoration-color: var(--clr-gold); }

.section__subtitle {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-top: calc(-1 * var(--space-lg));
  margin-bottom: var(--space-2xl);
}

/* ======================================
   HEADER
   ====================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(26,21,15,.85);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--clr-border);
}

.header__bar {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--clr-gold-l);
  flex-shrink: 0;
}
.brand__icon { width: 28px; height: 28px; }
.brand__icon svg { width: 100%; height: 100%; }
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__title { font-family: var(--ff-display); font-weight: 700; font-size: var(--fs-md); }
.brand__sub {
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.brand__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.brand__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* Ticker */
.ticker {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.ticker__inner {
  display: inline-block;
  animation: tickerScroll 25s linear infinite;
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
  letter-spacing: .05em;
  opacity: .5;
  padding-left: 100%;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Nav */
.nav { display: flex; gap: var(--space-md); }
.nav__link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-text-dim);
  transition: color var(--dur-fast) var(--ease-out);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--clr-gold);
  transition: width var(--dur-med) var(--ease-out);
}
.nav__link:hover { color: var(--clr-gold-l); }
.nav__link:hover::after { width: 100%; }

.header__cta {
  display: flex;
  gap: var(--space-sm);
  margin-left: auto;
  flex-shrink: 0;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: var(--space-xs);
  margin-left: auto;
}
.burger__line {
  display: block;
  width: 24px; height: 2px;
  background: var(--clr-gold);
  border-radius: 2px;
  transition: transform var(--dur-med) var(--ease-spring), opacity var(--dur-fast);
}
.burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobileMenu {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: rgba(26,21,15,.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  z-index: 999;
  animation: menuSlideIn var(--dur-med) var(--ease-out);
}
.mobileMenu[hidden] { display: none; }
.mobileMenu__link {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--clr-text);
  padding: var(--space-xs) 0;
}
.mobileMenu__link:hover { color: var(--clr-gold-l); }
.mobileMenu__cta {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  flex-wrap: wrap;
}

.mobileMenu__cta .btn { flex: 1 1 100%; justify-content: center; }
body.menu-open { overflow: hidden; }

@keyframes menuSlideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .ticker { display: none; }
}
@media (max-width: 960px) {
  .nav, .header__cta { display: none; }
  .burger { display: flex; margin-left: auto; }
  .header__bar { gap: var(--space-sm); }
}

/* ======================================
   BUTTONS
   ====================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: var(--fs-sm);
  padding: .65em 1.5em;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all var(--dur-med) var(--ease-out);
  white-space: nowrap;
  text-align: center;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
}
.btn__icon { font-size: 1.1em; }

.btn--gold {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-brass));
  color: var(--clr-text-inv);
  border-color: var(--clr-gold-d);
  box-shadow: 0 2px 12px rgba(210,164,82,.25);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--clr-gold-l), var(--clr-gold));
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
  color: var(--clr-text-inv);
}
.btn--outline {
  background: transparent;
  color: var(--clr-gold-l);
  border-color: var(--clr-border-h);
}
.btn--outline:hover {
  background: rgba(210,164,82,.08);
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}
.btn--lg { font-size: var(--fs-base); padding: .8em 2em; }
.btn--full { width: 100%; justify-content: center; }

.btn--gold::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  animation: btnShimmer 3s ease-in-out infinite;
}
@keyframes btnShimmer {
  0%, 100% { left: -100%; }
  50%       { left: 150%; }
}

/* ======================================
   MAGNETIC BUTTON WRAPPER
   ====================================== */
.magnetic-wrap {
  display: inline-flex;
  position: relative;
}
.magnetic-wrap .btn { width: 100%; }

/* ======================================
   CHIPS / TAGS
   ====================================== */
.tags { display: flex; flex-wrap: wrap; gap: var(--space-xs); margin-bottom: var(--space-xl); }
.tag {
  display: inline-flex;
  align-items: center;
  gap: .35em;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--clr-text-dim);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: .35em .75em;
}
.tag__icon { font-size: 1.1em; }

.chip {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-text-dim);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: .35em .85em;
  transition: all var(--dur-fast) var(--ease-out);
}
.chip:hover, .chip--active {
  color: var(--clr-gold-l);
  border-color: var(--clr-gold);
  background: rgba(210,164,82,.1);
}

/* ======================================
   FX-CHIPS — круглые кнопки эффектов под hero-видео
   ====================================== */
.hero__mediaCaption {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.fx-chip {
  --fx-size: 92px;
  width: var(--fx-size);
  height: var(--fx-size);
  border-radius: 50%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(241,208,138,.18), transparent 55%),
    linear-gradient(145deg, var(--clr-surface-2), var(--clr-surface));
  border: 1px solid var(--clr-border);
  color: var(--clr-text-dim);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: var(--fs-xs);
  letter-spacing: .04em;
  cursor: pointer;
  position: relative;
  transition:
    transform   var(--dur-med) var(--ease-spring),
    border-color var(--dur-fast) var(--ease-out),
    color       var(--dur-fast) var(--ease-out),
    box-shadow  var(--dur-med)  var(--ease-out);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    inset 0 -2px 6px rgba(0,0,0,.35),
    0 4px 14px rgba(0,0,0,.35);
}

.fx-chip::before {
  /* тонкое «кольцо» */
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px dashed rgba(210,164,82,.2);
  pointer-events: none;
  transition: border-color var(--dur-med) var(--ease-out);
}

.fx-chip:hover {
  color: var(--clr-gold-l);
  border-color: var(--clr-gold-d);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    inset 0 -2px 6px rgba(0,0,0,.35),
    0 6px 20px rgba(210,164,82,.2);
}
.fx-chip:hover::before {
  border-color: rgba(210,164,82,.5);
}

.fx-chip--active {
  color: var(--clr-text-inv);
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.3), transparent 55%),
    linear-gradient(145deg, var(--clr-gold-l), var(--clr-brass));
  border-color: var(--clr-gold-d);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    inset 0 -2px 6px rgba(140,90,30,.45),
    0 4px 18px rgba(210,164,82,.35);
}
.fx-chip--active::before {
  border-color: rgba(26,21,15,.35);
  border-style: solid;
}
.fx-chip--active:hover {
  color: var(--clr-text-inv);
  transform: translateY(-2px);
}

.fx-chip__icon {
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 2px;
}
.fx-chip__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
  max-width: 90%;
  text-align: center;
  line-height: 1.1;
}

/* Focus */
.fx-chip:focus-visible {
  outline: 2px solid var(--clr-gold-l);
  outline-offset: 4px;
}

/* Mobile */
@media (max-width: 480px) {
  .fx-chip { --fx-size: 80px; }
  .fx-chip__icon { font-size: 1.15rem; }
  .fx-chip__label { font-size: 9px; }
}

/* ======================================
   STACKS & GRIDS
   ====================================== */
.stack { display: flex; flex-direction: column; gap: var(--space-md); }
.stack--row { flex-direction: row; flex-wrap: wrap; }
.stack--center { justify-content: center; }

.grid { display: grid; gap: var(--space-xl); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 960px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* ======================================
   MEDIA WRAPPERS
   ====================================== */
.media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--clr-surface);
}
.media--16x10  { aspect-ratio: 16/10; }
.media--3x4    { aspect-ratio: 3/4; }
.media--square { aspect-ratio: 1/1; }
.media img, .media video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ======================================
   LENTICULAR HOVER
   ====================================== */
.lenticular-hover {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.lenticular-glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 35%,
    rgba(241,208,138,.06) 45%,
    rgba(241,208,138,.12) 50%,
    rgba(241,208,138,.06) 55%,
    transparent 65%,
    transparent 100%
  );
  background-size: 200% 100%;
  background-position: 200% 0;
  transition: background-position .6s var(--ease-out);
  mix-blend-mode: screen;
}
.lenticular-hover:hover .lenticular-glare {
  background-position: -100% 0;
}
.lenticular-hover img,
.lenticular-hover video {
  transition: transform .5s var(--ease-out);
}
.lenticular-hover:hover img,
.lenticular-hover:hover video {
  transform: scale(1.03) translateX(2px);
}

/* ======================================
   PANEL
   ====================================== */
.panel {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

/* ======================================
   HERO MEDIA — без панели, видео вплотную
   ====================================== */
.hero__mediaWrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-card);
}
.hero__mediaWrap .media {
  border-radius: var(--radius-lg);
}

/* ======================================
   HERO — выравнивание колонок
   ====================================== */
.hero__grid {
  /* Обе колонки одинаковой ширины, выравниваем по верху */
  align-items: stretch;
}
.hero__text,
.hero__media {
  display: flex;
  flex-direction: column;
}
.hero__media {
  justify-content: center;
}

/* Hero-видео растягивается на всю ширину колонки,
   поля по бокам убраны */
.hero__media .media--square {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  aspect-ratio: 1 / 1;
}

/* ======================================
   HERO
   ====================================== */
.hero {
  padding-top: calc(var(--header-h) + var(--space-3xl));
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.hero__text { position: relative; z-index: 2; }
.hero__media { position: relative; z-index: 2; }

.hero__quote {
  position: absolute;
  top: -40px; left: -20px;
  z-index: -1;
}
.hero__quote-mark {
  font-family: var(--ff-display);
  font-size: clamp(5rem, 12vw, 10rem);
  color: rgba(210,164,82,.06);
  line-height: 1;
  user-select: none;
}


@media (max-width: 960px) {
  .hero { padding-top: calc(var(--header-h) + var(--space-xl)); min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; gap: var(--space-xl); }
  .hero__text { order: 2; }
  .hero__media { order: 1; }
  .lead { margin-inline: auto; }
  .tags { justify-content: center; }
  .stack--row { justify-content: center; }
  .hero__media .media--square { max-width: 480px; margin-inline: auto; }
  .hero__quote { display: none; }
}
@media (max-width: 480px) {
  .hero__media .media--square { max-width: 100%; }
  .hero__mediaCaption { gap: var(--space-sm); }
}

/* ======================================
   CARDS
   ====================================== */
.card {
  position: relative;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition:
    border-color var(--dur-med) var(--ease-out),
    box-shadow   var(--dur-med) var(--ease-out);
  overflow: hidden;
}
.card:hover {
  border-color: var(--clr-border-h);
  box-shadow: var(--shadow-hover);
}
.card__icon-wrap {
  width: 48px; height: 48px;
  margin-bottom: var(--space-md);
  color: var(--clr-gold);
}
.card__svg-icon { width: 100%; height: 100%; }
.card__shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    circle at var(--shine-x, 50%) var(--shine-y, 50%),
    rgba(241,208,138,.08) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease-out);
}
.card:hover .card__shine { opacity: 1; }

.tilt-card {
  transform-style: preserve-3d;
  perspective: 800px;
  will-change: transform;
}

/* ======================================
   COLLECTION CAROUSEL
   ====================================== */
.collection-carousel {
  position: relative;
  overflow: hidden;
}
.collection-track {
  display: flex;
  gap: var(--space-xl);
  transition: transform .5s var(--ease-out);
  padding-bottom: var(--space-md);
  align-items: stretch;
}

/* По умолчанию — 3 карточки в ряд. box-sizing: border-box учтён глобально,
   поэтому padding не ломает ширину flex-basis. */
.collection-card {
  flex: 0 0 calc((100% - var(--space-xl) * 2) / 3);
  width:   calc((100% - var(--space-xl) * 2) / 3);
  max-width: calc((100% - var(--space-xl) * 2) / 3);
  min-width: 0;

  position: relative;
  background: rgba(44, 36, 24, 0.3);              /* полупрозрачный var(--clr-surface) */
  backdrop-filter: blur(5px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    border-color var(--dur-med) var(--ease-out),
    box-shadow   var(--dur-med) var(--ease-out),
    background   var(--dur-med) var(--ease-out);
}
.collection-card:hover {
  background: rgba(56, 46, 32, 0.65);              /* чуть плотнее при ховере */
}
.collection-card:hover {
  border-color: var(--clr-border-h);
  box-shadow: var(--shadow-hover);
}

/* Планшеты — 2 в ряд */
@media (max-width: 960px) {
  .collection-card {
    flex: 0 0 calc((100% - var(--space-xl)) / 2);
    width:   calc((100% - var(--space-xl)) / 2);
    max-width: calc((100% - var(--space-xl)) / 2);
  }
}

.collection-card__media {
  position: relative;
  margin: calc(-1 * var(--space-lg));
  margin-bottom: var(--space-md);
  flex-shrink: 0;
}
.collection-card__info {
  padding-top: var(--space-xs);
}
.collection-card__badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  z-index: 4;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-text-inv);
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-brass));
  border-radius: var(--radius-sm);
  padding: .25em .65em;
}
.collection-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.collection-nav__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--clr-border-h);
  background: var(--clr-surface);
  color: var(--clr-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast) var(--ease-out);
}
.collection-nav__btn svg { width: 20px; height: 20px; }
.collection-nav__btn:hover {
  background: rgba(210,164,82,.1);
  border-color: var(--clr-gold);
  box-shadow: var(--shadow-gold);
}

.collection-dots {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0 var(--space-sm);
}
.collection-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--clr-border);
  padding: 0;
  transition: all var(--dur-fast) var(--ease-out);
}
.collection-dot:hover { background: var(--clr-gold-d); }
.collection-dot--active {
  width: 24px;
  border-radius: 4px;
  background: var(--clr-gold);
}

/* ======================================
   EFFECT CARDS
   ====================================== */
.effect-card {
  position: relative;
  background: rgba(44, 36, 24, 0.3);              /* полупрозрачный var(--clr-surface) */
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(5px) saturate(1.1);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  overflow: hidden;
  transition:
    border-color var(--dur-med) var(--ease-out),
    box-shadow   var(--dur-med) var(--ease-out),
    background   var(--dur-med) var(--ease-out);
}
.effect-card:hover {
  background: rgba(56, 46, 32, 0.65);
}
.effect-card:hover {
  border-color: var(--clr-border-h);
  box-shadow: var(--shadow-hover);
}
.effect-card__media {
  margin: calc(-1 * var(--space-xl));
  margin-bottom: var(--space-xl);
}
.feature-list {
  list-style: none;
  margin-top: var(--space-md);
}
.feature-list li {
  font-size: var(--fs-sm);
  color: var(--clr-text-dim);
  padding-left: 1.4em;
  position: relative;
  margin-bottom: var(--space-xs);
}
.feature-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: .05em;
  color: var(--clr-gold);
  font-size: .7em;
  line-height: 1.6;
}



/* ======================================
   TIMELINE
   ====================================== */
.timeline {
  position: relative;
  max-width: 800px;
  margin-inline: auto;
  padding-left: 60px;
}
.timeline__line {
  position: absolute;
  left: 24px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--clr-border);
}
.timeline__progress {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--clr-gold), var(--clr-brass));
  transition: height .1s linear;
  border-radius: 2px;
}
.timeline__step {
  position: relative;
  padding-bottom: var(--space-2xl);
}
.timeline__step:last-child { padding-bottom: 0; }
.timeline__marker {
  position: absolute;
  left: -60px; top: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--clr-surface);
  border: 2px solid var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.timeline__number {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--clr-gold);
}
.timeline__content {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

/* ======================================
   SPECS GRID
   ====================================== */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 900px;
  margin-inline: auto;
}
.spec-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
}
.spec-item__label {
  display: block;
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: var(--space-xs);
}
.spec-item__value {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--clr-gold-l);
}
.spec-item__note {
  font-size: var(--fs-sm);
  color: var(--clr-text-dim);
  font-weight: 400;
}
@media (max-width: 640px) {
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ======================================
   PRICING
   ====================================== */
.pricing {
  max-width: 720px;
  margin-inline: auto;
}

.pricing__switcher {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  margin: 0 auto var(--space-xl);
  justify-content: center;
  flex-wrap: wrap;
}
.pricing__tab {
  flex: 1 1 160px;
  min-width: 140px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--clr-text-dim);
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  padding: .7em 1em;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition:
    background var(--dur-fast) var(--ease-out),
    color      var(--dur-fast) var(--ease-out);
}
.pricing__tab:hover {
  color: var(--clr-gold-l);
  background: rgba(210,164,82,.06);
}
.pricing__tab--active {
  color: var(--clr-text-inv);
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-brass));
  box-shadow: 0 2px 10px rgba(210,164,82,.25);
}
.pricing__tab--active:hover {
  color: var(--clr-text-inv);
  background: linear-gradient(135deg, var(--clr-gold-l), var(--clr-gold));
}
.pricing__tab-size {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: var(--fs-xs);
  opacity: .75;
  letter-spacing: .02em;
}

.pricing__table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--clr-border);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.pricing__cell {
  background: var(--clr-surface);
  padding: var(--space-md) var(--space-lg);
  font-size: var(--fs-base);
  color: var(--clr-text);
  display: flex;
  align-items: center;
  transition: background var(--dur-fast) var(--ease-out);
}
.pricing__cell--head {
  background: var(--clr-bg-alt);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  justify-content: center;
}
.pricing__cell--price {
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--clr-gold-l);
}
.pricing__cell[data-role="edition"] {
  justify-content: center;
  font-weight: 600;
}
.pricing__price {
  font-size: var(--fs-xl);
  transition: opacity var(--dur-fast) var(--ease-out);
}
.pricing__price.is-changing { opacity: 0; }
.pricing__currency {
  font-size: var(--fs-md);
  color: var(--clr-text-dim);
  margin-left: .15em;
}
.pricing__note {
  margin-top: var(--space-lg);
  text-align: center;
}

@media (max-width: 480px) {
  .pricing__cell { padding: var(--space-sm) var(--space-md); font-size: var(--fs-sm); }
  .pricing__price { font-size: var(--fs-lg); }
  .pricing__tab { flex: 1 1 100%; }
}

/* ======================================
   CTA BLOCK
   ====================================== */
.cta-block {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  padding: var(--space-2xl) 0;
}
.cta-block__icon {
  width: 64px; height: 64px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
  color: var(--clr-gold);
}
.cta-block__icon svg { width: 100%; height: 100%; }

/* ======================================
   FORM
   ====================================== */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.form__group { display: flex; flex-direction: column; gap: var(--space-xs); }
.form__label {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-text-dim);
}
.form__input {
  font-family: var(--ff-body);
  font-size: 16px; /* iOS не зумит при фокусе */
  color: var(--clr-text);
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: .7em 1em;
  transition:
    border-color var(--dur-fast) var(--ease-out),
    box-shadow   var(--dur-fast) var(--ease-out);
  outline: none;
}
.form__input::placeholder { color: rgba(168,152,120,.4); }
.form__input:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(210,164,82,.15);
}
.form__input--textarea { resize: vertical; min-height: 100px; }
.form__disclaimer { margin-top: var(--space-xs); }

/* ======================================
   CONTACTS
   ====================================== */
.contacts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}
.contacts-list__item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.contacts-list__icon {
  font-size: var(--fs-xl);
  flex-shrink: 0;
  margin-top: 2px;
}
.contacts-deco {
  margin-top: var(--space-2xl);
  text-align: center;
}
.contacts-deco__rabbit {
  font-size: 3rem;
  position: relative;
  display: inline-block;
  animation: rabbitBounce 2s var(--ease-spring) infinite;
}
.contacts-deco__speech {
  position: absolute;
  top: -30px; left: 60px;
  white-space: nowrap;
  max-width: calc(100vw - 120px);
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: var(--fs-xs);
  color: var(--clr-gold);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: .3em .7em;
}
@media (max-width: 480px) {
  .contacts-deco__speech {
    position: static;
    display: block;
    margin-top: var(--space-sm);
    white-space: normal;
    max-width: 240px;
    margin-inline: auto;
  }
}
@keyframes rabbitBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ======================================
   FOOTER
   ====================================== */
.footer {
  border-top: 1px solid var(--clr-border);
  padding: var(--space-xl) 0;
  position: relative;
  z-index: 2;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.footer__copy {
  display: block;
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
}
.footer__links { display: flex; gap: var(--space-lg); }
.footer__link {
  font-size: var(--fs-sm);
  color: var(--clr-text-dim);
}
.footer__link:hover { color: var(--clr-gold-l); }

/* ======================================
   REVEAL ANIMATIONS
   ====================================== */
.reveal {
  opacity: 0;
  transition:
    opacity   var(--dur-slow) var(--ease-out) var(--reveal-delay, 0s),
    transform var(--dur-slow) var(--ease-out) var(--reveal-delay, 0s);
}
.reveal[data-reveal="up"]    { transform: translateY(40px); }
.reveal[data-reveal="left"]  { transform: translateX(-40px); }
.reveal[data-reveal="right"] { transform: translateX(40px); }
.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ======================================
   SCROLLBAR
   ====================================== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb {
  background: var(--clr-surface-2);
  border-radius: 4px;
  border: 2px solid var(--clr-bg);
}
::-webkit-scrollbar-thumb:hover { background: var(--clr-gold-d); }

/* ======================================
   RESPONSIVE FINE-TUNING
   ====================================== */
@media (max-width: 640px) {
  .section       { padding-block: var(--space-2xl); }
  .panel         { padding: var(--space-lg); }
  .timeline      { padding-left: 44px; }
  .timeline__line { left: 18px; }
  .timeline__marker {
    left: -44px;
    width: 36px; height: 36px;
  }
  .timeline__content { padding: var(--space-md); }
  .collection-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
  .collection-track { gap: var(--space-md); }
  .h1__accent { display: inline; }
  .hero__mediaCaption { gap: var(--space-xs); }
  .btn { font-size: var(--fs-sm); padding: .6em 1.2em; }
  .tags { gap: 6px; }
  .tag { font-size: 11px; padding: .3em .6em; }
}

@media (max-width: 380px) {
  .container { padding-inline: var(--space-md); }
  .brand__sub { display: none; }
  .h2 { font-size: var(--fs-xl); }
}

/* ===== ФИКС: высота шапки и отступ hero на мобильных ===== */

/* На мобильных бренд-иконка крупнее → шапка фактически выше.
   Синхронизируем переменную --header-h, чтобы fixed-меню
   не перекрывало hero-карточку. */
@media (max-width: 600px) {
  :root {
    --header-h: 84px;
  }
  .hero {
    /* дополнительный воздух между шапкой и видео-карточкой */
    padding-top: calc(var(--header-h) + var(--space-2xl));
  }
}

@media (max-width: 380px) {
  :root {
    --header-h: 72px;
  }
}


/* === Contacts Hub === */
.contacts-hub{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:1rem;
  margin-top:1.5rem;
}

.contact-card{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:.35rem;
  padding:1.5rem 1.25rem;
  border:1px solid rgba(210,164,82,.3);
  border-radius:14px;
  background:linear-gradient(145deg, rgba(26,21,15,.6), rgba(26,21,15,.35));
  backdrop-filter: blur(7px) saturate(1.2);
  color:inherit;
  text-decoration:none;
  transition:transform .35s ease, border-color .35s ease, box-shadow .35s ease, background .35s ease;
  overflow:hidden;
}
.contact-card::before{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(circle at 20% 0%, rgba(241,208,138,.12), transparent 60%);
  opacity:0; transition:opacity .4s ease;
  pointer-events:none;
}
.contact-card:hover,
.contact-card:focus-visible{
  transform:translateY(-3px);
  border-color:rgba(241,208,138,.7);
  box-shadow:0 12px 32px -12px rgba(210,164,82,.35);
  background:linear-gradient(145deg, rgba(26,21,15,.75), rgba(26,21,15,.45));
}
.contact-card:hover::before,
.contact-card:focus-visible::before{ opacity:1; }

.contact-card__icon{
  font-size:1.6rem;
  line-height:1;
  color:#f1d08a;
  margin-bottom:.25rem;
}
.contact-card__label{
  font-size:.85rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#c4983a;
  font-weight:600;
}
.contact-card__value{
  font-family:"Playfair Display", Georgia, serif;
  font-size:1.25rem;
  font-weight:700;
  color:#f4e9d0;
  word-break:break-word;
}
.contact-card__hint{ margin-top:.15rem; }

.contact-card--primary{
  border-color:rgba(241,208,138,.6);
  background:linear-gradient(145deg, rgba(196,152,58,.22), rgba(26,21,15,.4));
}
.contact-card--tg .contact-card__icon{ color:#6ab7f0; }
.contact-card--wa .contact-card__icon{ color:#7ed67a; }

/* Адрес под карточками */
.contacts-address{
  display:flex;
  align-items:center;
  gap:.75rem;
  margin-top:1.25rem;
  padding:1rem 1.25rem;
  border:1px dashed rgba(210,164,82,.35);
  backdrop-filter: blur(7px) saturate(1.2);
  border-radius:12px;
  background:rgba(26,21,15,.35);
}
.contacts-address__icon{
  font-size:1.4rem;
  color:#f1d08a;
  flex-shrink:0;
}
.contacts-address__text{
  display:flex;
  flex-direction:column;
  gap:.15rem;
}

/* === FAQ Premium Accordion === */
.faq-premium {
  display: grid;
  gap: 0.9rem;
}

.faq-item-premium {
  position: relative;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.025));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 10px 30px rgba(0,0,0,.12);
  overflow: hidden;
  transition:
    border-color .3s ease,
    background .3s ease,
    box-shadow .3s ease,
    transform .3s ease;
}

.faq-item-premium:hover {
  border-color: rgba(255,255,255,.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 14px 34px rgba(0,0,0,.16);
}

.faq-item-premium[open] {
  border-color: rgba(255,255,255,.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.035));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 18px 40px rgba(0,0,0,.18);
}

.faq-question-premium {
  position: relative;
  display: block;
  list-style: none;
  padding: 1.2rem 4.2rem 1.2rem 1.35rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--text, #fff);
  user-select: none;
  outline: none;
}

.faq-question-premium::-webkit-details-marker {
  display: none;
}

.faq-question-premium::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  opacity: .72;
  transition: transform .28s ease, opacity .28s ease;
}

.faq-item-premium[open] .faq-question-premium::after {
  transform: translateY(-35%) rotate(225deg);
  opacity: 1;
}

.faq-answer-premium {
  padding: 0 1.35rem 1.3rem;
}

.faq-answer-premium p {
  margin: 0;
}

@media (max-width: 768px) {
  .faq-premium {
    gap: 0.7rem;
  }

  .faq-item-premium {
    border-radius: 16px;
  }

  .faq-question-premium {
    padding: 1rem 3.5rem 1rem 1rem;
    font-size: 0.98rem;
    line-height: 1.4;
  }

  .faq-question-premium::after {
    right: 1rem;
    width: 0.9rem;
    height: 0.9rem;
  }

  .faq-answer-premium {
    padding: 0 1rem 1rem;
  }
}

@media (max-width: 520px){
  .contact-card{ padding:1.15rem 1rem; }
  .contact-card__value{ font-size:1.1rem; }
}

@media (max-width: 768px) {
  .parallax-gears .gear--4,
  .parallax-gears .gear--5,
  .parallax-gears .gear--7,
  .parallax-gears .gear--8 { display: none; }
  .gear { animation-duration: 60s !important; }
}

.no-js .reveal { opacity: 1; transform: none; }

/* ========== ФИКСЫ ВЕРСТКИ ========== */


.gear {
  color: rgba(150, 115, 55, 0.18);  /* было rgba(210,164,82,.22) — темнее и менее насыщенно */
  filter:
    drop-shadow(0 0 1px rgba(0, 0, 0, 0.4))
    drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));  /* убрали золотое свечение */
}

/* Усиливаем виньетку, чтобы текст лучше читался поверх шестерён */
.vignette {
  background: radial-gradient(ellipse at center, transparent 35%, rgba(15,10,5,.7) 100%);
}

/* 1. Дистанция между строками в логотипе шапки */
.brand__text {
  line-height: 1.35;          /* было 1.2 */
  gap: 4px;                   /* небольшой воздух между title и sub */
}
.brand__title {
  line-height: 1.2;
}
.brand__sub {
  line-height: 1.35;          /* было унаследованное 1.2 */
  margin-top: 2px;
}

/* 2. Бургер-меню: контейнер не должен вылезать за экран,
      длинные строки должны переноситься */
.mobileMenu {
  max-width: 100vw;
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
  box-sizing: border-box;
}
.mobileMenu__link {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* На узких экранах уменьшаем подзаголовок брендинга,
   чтобы не толкал шапку вправо */
@media (max-width: 600px) {
  .brand__icon {
    width: 56px;
    height: 56px;
  }
  .brand__title {
    font-size: var(--fs-base);
  }
  .brand__sub {
    font-size: 10px;
    letter-spacing: .04em;
    /* разрешаем перенос длинной строки */
    white-space: normal;
    max-width: 200px;
  }
}

@media (max-width: 380px) {
  .brand__sub {
    display: block;          /* раньше было display:none — возвращаем, но мелким */
    font-size: 9px;
    max-width: 160px;
  }
  .brand__icon {
    width: 48px;
    height: 48px;
  }
}