/* ===================================================================
   СмолАртАнна — Luxury "Amber & Onyx" edition
   ===================================================================
   Палитра «Янтарь и оникс» — отсылка к чистой эпоксидной смоле,
   у которой именно янтарно-медовый оттенок. Сочетание глубокого
   угольно-графитового и тёплых золотистых тонов даёт ощущение
   Maison Margiela × Aesop × Le Labo — premium, тихая роскошь.
   =================================================================== */

:root {
  /* — Оникс / графит (база) — */
  --onyx:           #0d0c0b;         /* угольный — самый тёмный */
  --graphite:       #1a1815;         /* основной тёмный */
  --graphite-2:     #25211c;         /* приподнятый тёмный (cards on dark) */
  --graphite-soft:  #2f2a23;
  --ink:            #1a1815;

  /* — Кремовый / шампань (свет) — */
  --champagne:      #f5ede0;         /* основной светлый */
  --champagne-2:    #ede0c8;         /* молочно-янтарный */
  --champagne-soft: #fbf6ec;         /* почти белый */
  --bone:           #e6dac3;

  /* — Жидкий янтарь / медь (акцент-смола) — */
  --amber:          #c89b5a;         /* жидкий янтарь */
  --amber-light:    #d4a960;         /* медовый */
  --amber-deep:     #8b5a2b;         /* жжёный янтарь */
  --copper:         #9c6b3c;
  --gold-brushed:   #bfa46f;         /* брашированное золото */
  --gold-bright:    #d8b87a;         /* чуть ярче, для AA контраста на чёрном */

  /* — Полупрозрачные стёкла (glassmorphism) — */
  --glass-light:    rgba(245,237,224,0.06);
  --glass-light-2:  rgba(245,237,224,0.10);
  --glass-dark:     rgba(13,12,11,0.55);
  --glass-amber:    rgba(200,155,90,0.10);

  /* — «Потёки смолы» — градиенты — */
  --grad-resin-light:
      radial-gradient(ellipse 70% 55% at 18% 22%, rgba(200,155,90,0.18), transparent 60%),
      radial-gradient(ellipse 55% 50% at 82% 70%, rgba(139,90,43,0.12), transparent 65%),
      linear-gradient(165deg, #faf3e6 0%, #f0e3c9 100%);
  --grad-resin-dark:
      radial-gradient(ellipse 60% 50% at 12% 18%, rgba(200,155,90,0.28), transparent 60%),
      radial-gradient(ellipse 55% 50% at 88% 82%, rgba(139,90,43,0.22), transparent 65%),
      linear-gradient(160deg, #0d0c0b 0%, #1a1815 55%, #221d17 100%);
  --grad-amber:     linear-gradient(135deg, #8b5a2b 0%, #c89b5a 50%, #d4a960 100%);
  --grad-gold-line: linear-gradient(90deg, transparent, var(--gold-brushed), transparent);
  --grad-specular:  linear-gradient(105deg,
                       rgba(255,255,255,0) 0%,
                       rgba(255,255,255,0) 38%,
                       rgba(255,255,255,0.22) 50%,
                       rgba(255,255,255,0) 62%,
                       rgba(255,255,255,0) 100%);

  /* — Шрифты — */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Manrope', system-ui, -apple-system, sans-serif;

  /* — Геометрия — */
  --radius-xl:    32px;
  --radius:       20px;
  --radius-sm:    12px;
  --radius-xs:    6px;

  /* — Тени (тонкие, премиум) — */
  --shadow-soft:    0 20px 60px -28px rgba(0,0,0,0.55), 0 2px 6px -2px rgba(0,0,0,0.18);
  --shadow:         0 40px 100px -40px rgba(0,0,0,0.7), 0 12px 32px -16px rgba(0,0,0,0.35);
  --shadow-amber:   0 28px 70px -28px rgba(200,155,90,0.45);
  --shadow-glow:    0 0 40px -8px rgba(200,155,90,0.35);

  --container:    1240px;
  --container-narrow: 820px;
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quart:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);

  /* — Кристаллический клип (намёк на застывшую смолу) — */
  --clip-resin:   polygon(
                    0% 8%, 4% 0%, 18% 2%, 36% 0%, 58% 3%, 78% 0%, 94% 2%, 100% 12%,
                    100% 88%, 96% 100%, 82% 98%, 64% 100%, 42% 97%, 22% 100%, 6% 98%, 0% 90%);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  background: var(--graphite);
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--graphite);
  background: var(--champagne);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "ss02", "kern", "liga", "calt";
}

/* — Тонкая зернистость поверх фона — премиум-ощущение «толщи смолы» — */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* — Мраморно-агатовые разводы во всём документе (subtle) — */
body::after {
  content: '';
  position: fixed;
  inset: -10%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  background:
    radial-gradient(ellipse 50% 35% at 8% 12%, rgba(200,155,90,0.08), transparent 65%),
    radial-gradient(ellipse 40% 30% at 92% 88%, rgba(139,90,43,0.07), transparent 65%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--amber); color: var(--graphite); }

:focus-visible {
  outline: 1.5px solid var(--amber);
  outline-offset: 4px;
  border-radius: 4px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
.container-narrow { max-width: var(--container-narrow); }

/* ===================================================================
   Скролл-прогресс — тонкая золотая полоска сверху
   =================================================================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  z-index: 200;
  pointer-events: none;
  background: rgba(13,12,11,0.04);
}
.scroll-progress__bar {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--amber-deep), var(--amber-light), var(--gold-brushed));
  box-shadow: 0 0 12px rgba(200,155,90,0.6);
  transform-origin: left;
  transition: width 0.05s linear;
}

/* ===================================================================
   Cursor-follower — золотой ring (desktop only)
   =================================================================== */
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 38px; height: 38px;
  margin: -19px 0 0 -19px;
  border-radius: 50%;
  border: 1px solid var(--amber);
  pointer-events: none;
  z-index: 250;
  mix-blend-mode: difference;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0) scale(1);
  transition: opacity 0.4s var(--ease), width 0.35s var(--ease), height 0.35s var(--ease),
              margin 0.35s var(--ease), border-color 0.35s, background 0.35s;
  will-change: transform;
}
.cursor-ring.is-active { opacity: 1; }
.cursor-ring.is-hover  {
  width: 64px; height: 64px;
  margin: -32px 0 0 -32px;
  background: rgba(200,155,90,0.12);
  border-color: var(--amber-light);
}
@media (hover: none), (pointer: coarse) { .cursor-ring { display: none; } }

/* ===================================================================
   Типографика
   =================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.04;
  color: var(--graphite);
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(3rem, 9vw, 7rem); font-weight: 400; letter-spacing: -0.02em; }
h2 { font-size: clamp(2.2rem, 5.2vw, 4rem); font-weight: 400; }
h3 { font-size: 1.4rem; font-weight: 500; letter-spacing: -0.005em; }

em, .italic { font-style: italic; }
strong { font-weight: 500; }

/* — Overline / eyebrow — премиум small-caps подпись — */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 22px;
  font-feature-settings: "smcp", "c2sc", "kern";
}
.eyebrow::before {
  content: '';
  width: 36px; height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.section-dark .eyebrow { color: var(--gold-bright); }

/* — Акцентное italic в заголовках — */
.accent {
  color: var(--amber-deep);
  font-style: italic;
  font-weight: 400;
  position: relative;
  display: inline-block;
}
.section-dark .accent { color: var(--gold-bright); }

/* — Капля как декоративный разделитель — */
.drop-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 28px auto;
  color: var(--amber);
  opacity: 0.7;
}
.drop-divider::before,
.drop-divider::after {
  content: '';
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
}

/* ===================================================================
   Кнопки — premium «золотая рамка → переливающаяся заливка»
   =================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  background: transparent;
  color: var(--graphite);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--graphite);
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition:
    color 0.55s var(--ease),
    border-color 0.55s var(--ease),
    transform 0.6s var(--ease),
    box-shadow 0.55s var(--ease);
  will-change: transform;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--graphite);
  transform: translateY(101%);
  transition: transform 0.7s var(--ease);
  z-index: -2;
}
/* specular блик — как на залитой смолой поверхности */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-specular);
  background-size: 250% 100%;
  background-position: 100% 0;
  opacity: 0;
  transition: background-position 0.9s var(--ease), opacity 0.5s;
  z-index: -1;
  pointer-events: none;
}
.btn:hover {
  color: var(--champagne);
  border-color: var(--graphite);
  box-shadow: var(--shadow-soft);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover::after { opacity: 1; background-position: 0 0; }

.btn svg {
  width: 14px; height: 14px;
  transition: transform 0.5s var(--ease);
  flex-shrink: 0;
}
.btn:hover svg { transform: translateX(6px); }

/* — Variant: золотая рамка на тёмном — */
.btn-gold {
  color: var(--gold-bright);
  border-color: var(--gold-brushed);
}
.btn-gold::before { background: var(--grad-amber); }
.btn-gold:hover { color: var(--graphite); border-color: var(--amber); }

/* — Variant: тонкая призрачная — */
.btn-ghost {
  background: transparent;
  color: var(--graphite);
  border-color: rgba(26,24,21,0.35);
}
.btn-ghost::before { background: var(--graphite); }
.btn-ghost:hover { color: var(--champagne); border-color: var(--graphite); }

.section-dark .btn-ghost { color: var(--champagne); border-color: rgba(245,237,224,0.35); }
.section-dark .btn-ghost::before { background: var(--champagne); }
.section-dark .btn-ghost:hover { color: var(--graphite); border-color: var(--champagne); }

.btn-sm { padding: 12px 24px; font-size: 0.7rem; letter-spacing: 0.2em; }
.btn-block { width: 100%; }

/* ===================================================================
   Шапка — glass + hairline gold
   =================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245,237,224,0.55);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: padding 0.6s var(--ease), border-color 0.6s, background 0.6s, box-shadow 0.6s;
  padding-top: env(safe-area-inset-top, 0);
}
.site-header.scrolled {
  background: rgba(245,237,224,0.85);
  border-color: rgba(191,164,111,0.25);
  box-shadow: 0 12px 50px -28px rgba(13,12,11,0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 22px;
  padding-bottom: 22px;
  transition: padding 0.6s var(--ease);
}
.site-header.scrolled .header-inner { padding-top: 14px; padding-bottom: 14px; }

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  z-index: 2;
}
.brand-logo {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold-brushed);
  box-shadow: 0 0 0 3px rgba(200,155,90,0.10);
  transition: transform 0.7s var(--ease);
  flex-shrink: 0;
}
.brand:hover .brand-logo { transform: rotate(-8deg) scale(1.05); }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--graphite);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand-name span {
  color: var(--amber-deep);
  font-style: italic;
  font-weight: 400;
}

/* Десктоп: компактная горизонтальная навигация */
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  flex-wrap: nowrap;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}
.nav-list li {
  display: flex;
  align-items: center;
  position: relative;
  white-space: nowrap;
}
/* Тонкие точки-разделители (опционально, очень тонкий «·» между пунктами) */
.nav-list li + li::before {
  content: '';
  position: absolute;
  left: -13px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(191,164,111,0.35);
  transform: translateY(-50%);
}
.nav-list a,
.nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--graphite);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 2px;
  white-space: nowrap;
  transition: color 0.4s;
}
.nav-list a::after,
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--amber);
  transition: width 0.5s var(--ease);
}
.nav-list a:hover,
.nav a:hover { color: var(--amber-deep); }
.nav-list a:hover::after,
.nav-list a.is-active::after,
.nav a:hover::after,
.nav a.is-active::after { width: 100%; }
.nav-list a.is-active,
.nav a.is-active { color: var(--amber-deep); }

/* На десктопе нумерация и drawer-элементы скрыты */
.nav-num { display: none; }
.nav-drawer-head,
.nav-drawer-foot,
.nav-close { display: none; }

.header-cta {
  margin-left: 4px;
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  z-index: 110;
  position: relative;
  width: 44px;
  height: 44px;
  align-items: center;
}
.burger span {
  width: 26px; height: 1.5px;
  background: var(--graphite);
  border-radius: 2px;
  transition: transform 0.5s var(--ease), opacity 0.4s, background-color 0.4s;
  display: block;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ───────── Backdrop за drawer-ом ───────── */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(13,12,11,0.48);
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s var(--ease), visibility 0.32s linear 0.32s;
}
.nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.32s var(--ease), visibility 0s linear 0s;
}

/* ===================================================================
   Hero — кинематографичный, с «слоем смолы»
   =================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 180px 0 140px;
  overflow: hidden;
  background: var(--grad-resin-light);
  color: var(--graphite);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.5;
  filter: saturate(1.08) contrast(1.05) brightness(1.02);
  will-change: transform;
}

/* — «Жидкий слой смолы» сверху всей секции — */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 85% 60% at 28% 42%, rgba(245,237,224,0.78) 0%, rgba(245,237,224,0.5) 45%, rgba(245,237,224,0.1) 78%, transparent 100%),
    linear-gradient(180deg, rgba(245,237,224,0.45) 0%, transparent 30%, rgba(13,12,11,0.18) 100%);
  pointer-events: none;
}

/* — Большой золотистый blob справа — */
.hero::after {
  content: '';
  position: absolute;
  top: 8%; right: -10%;
  width: 65vw; height: 65vw;
  max-width: 780px; max-height: 780px;
  background:
    radial-gradient(circle at 32% 28%, rgba(200,155,90,0.32), transparent 60%),
    radial-gradient(circle at 70% 72%, rgba(139,90,43,0.22), transparent 60%);
  filter: blur(50px);
  border-radius: 50%;
  z-index: 1;
  animation: blobFloat 22s var(--ease) infinite;
  pointer-events: none;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1) rotate(0deg); border-radius: 50% 60% 55% 45%; }
  33%      { transform: translate(-40px, 30px) scale(1.08) rotate(8deg); border-radius: 60% 40% 50% 60%; }
  66%      { transform: translate(30px,-40px) scale(0.95) rotate(-6deg); border-radius: 45% 55% 60% 40%; }
}

/* — Декоративные SVG-blobs (через .hero-resin) — */
.hero-resin {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-resin svg {
  position: absolute;
  filter: url(#gooey);
}
.hero-resin .blob-1 {
  top: 14%; left: -8%;
  width: 38vw; max-width: 480px;
  opacity: 0.55;
  animation: floatY 18s ease-in-out infinite;
}
.hero-resin .blob-2 {
  bottom: -6%; left: 35%;
  width: 28vw; max-width: 340px;
  opacity: 0.4;
  animation: floatY 22s ease-in-out -7s infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-30px) rotate(4deg); }
}

.hero-inner { position: relative; z-index: 3; width: 100%; }
.hero-text  { max-width: 880px; }

/* — Бейдж с «кристаллическим» неровным краем — */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: rgba(251,246,236,0.7);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(191,164,111,0.45);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 32px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 8px 30px -14px rgba(139,90,43,0.25);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(200,155,90,0.25);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(200,155,90,0.25); }
  50%      { box-shadow: 0 0 0 9px rgba(200,155,90,0); }
}

.hero h1 {
  margin-bottom: 32px;
  line-height: 0.98;
  color: var(--graphite);
}
.hero h1 .display-italic,
.hero h1 .accent {
  font-style: italic;
  font-weight: 400;
  color: var(--amber-deep);
  display: inline-block;
}
.hero h1 .underline-stroke {
  position: relative;
  display: inline-block;
  font-style: italic;
  color: var(--graphite);
}
.hero h1 .underline-stroke svg {
  position: absolute;
  left: -4%; right: -4%;
  bottom: -10px;
  width: 108%;
  height: 18px;
  color: var(--amber);
  pointer-events: none;
}
.hero .lead {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--graphite-soft);
  margin-bottom: 48px;
  max-width: 580px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 72px; }

.hero-stats {
  display: flex;
  gap: 56px;
  list-style: none;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(139,90,43,0.25);
  max-width: 720px;
}
.hero-stats li { display: flex; flex-direction: column; gap: 8px; }
.hero-stats strong {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--graphite);
  line-height: 1;
  font-feature-settings: "lnum";
}
.hero-stats strong .star { color: var(--amber-deep); font-style: italic; }
.hero-stats span {
  font-size: 0.7rem;
  color: var(--amber-deep);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}

/* — Каплеобразный скролл-индикатор — */
.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--amber-deep);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.4s, transform 0.6s var(--ease);
}
.scroll-down:hover { color: var(--graphite); transform: translateX(-50%) translateY(4px); }
.scroll-down .drop-line {
  width: 1px; height: 56px;
  background: linear-gradient(180deg, transparent, var(--amber) 30%, var(--amber));
  position: relative;
  overflow: hidden;
}
.scroll-down .drop-line::after {
  content: '';
  position: absolute;
  left: -2px; top: -10px;
  width: 5px; height: 5px;
  background: var(--amber);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  filter: blur(0.3px);
  animation: dropfall 2.4s ease-in-out infinite;
}
@keyframes dropfall {
  0%   { top: -10px; opacity: 0; transform: scale(0.6); }
  20%  { opacity: 1; }
  100% { top: 60px; opacity: 0; transform: scale(1); }
}

/* ===================================================================
   Marquee
   =================================================================== */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 28px 0;
  background: var(--graphite);
  color: var(--champagne);
  border-top: 1px solid rgba(191,164,111,0.18);
  border-bottom: 1px solid rgba(191,164,111,0.18);
}
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, var(--graphite), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--graphite), transparent); }
.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
  font-style: italic;
  font-weight: 400;
  color: var(--champagne);
}
.marquee-track > span {
  display: inline-flex;
  align-items: center;
  gap: 64px;
}
.marquee-track > span::after {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  box-shadow: 0 0 18px rgba(200,155,90,0.6);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ===================================================================
   Секции — «дышат», много воздуха
   =================================================================== */
.section {
  padding: 180px 0;
  position: relative;
}
.section-tint {
  background: linear-gradient(180deg, var(--champagne) 0%, var(--bone) 100%);
}
.section-dark {
  background: var(--grad-resin-dark);
  color: var(--champagne);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--champagne); }

/* — Декоративные blobs в углах секций — */
.section-dark::before {
  content: '';
  position: absolute;
  top: -10%; right: -8%;
  width: 36vw; max-width: 480px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(200,155,90,0.18), transparent 60%);
  filter: blur(60px);
  border-radius: 50%;
  pointer-events: none;
}
.section-dark::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -8%;
  width: 32vw; max-width: 420px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(139,90,43,0.18), transparent 60%);
  filter: blur(60px);
  border-radius: 50%;
  pointer-events: none;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 88px;
}
.section-head h2 {
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
}
.section-head .drop-divider { margin-top: 24px; }

/* — Тонкая золотая hairline-рамка для премиум-блоков — */
.gold-frame {
  position: relative;
}
.gold-frame::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid var(--gold-brushed);
  border-radius: var(--radius);
  pointer-events: none;
  opacity: 0.6;
}

/* ===================================================================
   О мастере
   =================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.about-photo {
  position: relative;
  perspective: 1200px;
  padding: 18px;
}
.about-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-brushed);
  border-radius: 4px;
  z-index: 0;
  opacity: 0.7;
  pointer-events: none;
}
.about-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
  transition: transform 1s var(--ease), filter 0.8s;
  filter: saturate(1.05) contrast(1.04) brightness(1.01);
}
.about-photo:hover img { transform: scale(1.015) translateY(-4px); filter: saturate(1.12) contrast(1.06); }

.about-caption {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--amber-deep);
  letter-spacing: 0.08em;
}
.about-caption span {
  display: block;
  font-size: 0.65rem;
  font-style: normal;
  font-family: var(--font-body);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--graphite-soft);
  opacity: 0.7;
  margin-top: 4px;
}

.about-badge {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 3;
  background: var(--graphite);
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1.3;
  text-align: center;
  padding: 16px 20px;
  border: 1px solid var(--gold-brushed);
  border-radius: 2px;
  text-transform: uppercase;
  transform: rotate(-3deg);
  transition: transform 0.7s var(--ease);
}
.about-photo:hover .about-badge { transform: rotate(0deg) scale(1.04); }

.about-text h2 {
  margin-bottom: 32px;
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
}
.about-text p {
  margin-bottom: 22px;
  color: var(--graphite-soft);
  font-size: 1.04rem;
  font-weight: 300;
  line-height: 1.75;
}
.about-text blockquote {
  margin: 44px 0;
  padding: 28px 0 28px 36px;
  border-left: 1px solid var(--amber);
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-style: italic;
  font-weight: 400;
  color: var(--graphite);
  line-height: 1.4;
  position: relative;
}
.about-text blockquote::before {
  content: '«';
  position: absolute;
  top: -10px; left: 18px;
  font-size: 3rem;
  color: var(--amber);
  font-family: var(--font-display);
  line-height: 1;
}

/* ===================================================================
   Карточки преимуществ — минималистичные, hairline border
   =================================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  position: relative;
  background: var(--champagne-soft);
  border: 1px solid rgba(139,90,43,0.14);
  border-radius: var(--radius);
  padding: 48px 36px 44px;
  overflow: hidden;
  transition: transform 0.7s var(--ease), box-shadow 0.7s, border-color 0.6s, background 0.6s;
  isolation: isolate;
}
/* hairline gold-line сверху */
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--grad-gold-line);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s var(--ease);
}
/* subtle резиновый blob в углу */
.card::after {
  content: '';
  position: absolute;
  bottom: -60%; right: -40%;
  width: 80%; height: 100%;
  background: radial-gradient(circle, rgba(200,155,90,0.08), transparent 70%);
  z-index: -1;
  transition: transform 0.9s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(191,164,111,0.5);
  box-shadow: 0 30px 70px -34px rgba(13,12,11,0.35);
  background: var(--champagne-soft);
}
.card:hover::before { transform: scaleX(1); }
.card:hover::after { transform: scale(1.5); }

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--gold-brushed);
  color: var(--amber-deep);
  margin-bottom: 28px;
  transition: transform 0.7s var(--ease-bounce), color 0.5s, border-color 0.5s;
}
.card:hover .card-icon {
  transform: scale(1.08) rotate(-6deg);
  border-color: var(--amber);
}
.card-icon svg { width: 24px; height: 24px; }

.card-num {
  position: absolute;
  top: 28px; right: 30px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold-brushed);
  letter-spacing: 0.15em;
  font-feature-settings: "lnum";
}
.card h3 {
  margin-bottom: 16px;
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 500;
}
.card p {
  font-size: 0.95rem;
  color: var(--graphite-soft);
  line-height: 1.7;
  font-weight: 300;
}

.note {
  margin-top: 60px;
  padding: 26px 32px;
  background: rgba(251,246,236,0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(191,164,111,0.3);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--graphite-soft);
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.note-light {
  background: rgba(245,237,224,0.04);
  border-color: rgba(191,164,111,0.25);
  color: var(--bone);
}

/* ===================================================================
   Мастер-классы
   =================================================================== */
.workshops-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
}
.ws-info { display: flex; flex-direction: column; }
.ws-item {
  padding: 36px 0;
  border-bottom: 1px solid rgba(139,90,43,0.18);
  transition: padding-left 0.6s var(--ease);
  position: relative;
}
.ws-item:first-child { padding-top: 0; }
.ws-item:last-child { border-bottom: none; }
.ws-item:hover { padding-left: 18px; }
.ws-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 0; height: 1px;
  background: var(--amber);
  transition: width 0.6s var(--ease);
  transform: translateY(-50%);
}
.ws-item:hover::before { width: 12px; }
.ws-item h3 {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.45rem;
  font-weight: 500;
}
.ws-item p {
  color: var(--graphite-soft);
  font-weight: 300;
  line-height: 1.75;
}

.ws-cta {
  background: var(--graphite);
  color: var(--champagne);
  padding: 56px 48px;
  border-radius: var(--radius);
  align-self: start;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(191,164,111,0.25);
}
.ws-cta::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 80%; height: 160%;
  background: radial-gradient(circle, rgba(200,155,90,0.22), transparent 65%);
  pointer-events: none;
}
/* specular */
.ws-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(245,237,224,0.05) 50%, transparent 65%);
  pointer-events: none;
}
.ws-cta h3 {
  color: var(--champagne);
  margin-bottom: 18px;
  font-size: 1.7rem;
  position: relative;
  font-weight: 400;
}
.ws-cta p {
  color: var(--bone);
  margin-bottom: 32px;
  position: relative;
  font-weight: 300;
}
.ws-cta .btn {
  margin-bottom: 12px;
  width: 100%;
  position: relative;
  color: var(--gold-bright);
  border-color: var(--gold-brushed);
  background: transparent;
}
.ws-cta .btn::before { background: var(--grad-amber); }
.ws-cta .btn:hover { color: var(--graphite); border-color: var(--amber); }
.ws-cta .btn-ghost {
  color: var(--champagne);
  border-color: rgba(245,237,224,0.3);
  background: transparent;
}
.ws-cta .btn-ghost::before { background: var(--champagne); }
.ws-cta .btn-ghost:hover { color: var(--graphite); border-color: var(--champagne); }

/* ===================================================================
   Прайс — как меню в Aesop / Le Labo
   =================================================================== */
.price-list {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}
.price-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 28px;
  padding: 26px 10px;
  border-bottom: 1px solid rgba(191,164,111,0.18);
  transition: padding-left 0.6s var(--ease), background 0.6s;
  cursor: default;
}
.price-row:first-child { border-top: 1px solid rgba(191,164,111,0.18); }
.price-row:hover {
  padding-left: 28px;
  background: linear-gradient(90deg, rgba(200,155,90,0.06), transparent 80%);
}
.price-row .price-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--champagne);
}
.price-dots {
  border-bottom: 1px dotted rgba(191,164,111,0.35);
  transform: translateY(-8px);
  height: 1px;
}
.price-value {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--gold-bright);
  font-feature-settings: "lnum";
  letter-spacing: 0.01em;
}
.price-row:hover .price-value { color: var(--amber-light); }
.price-row:hover .price-name { color: var(--champagne-soft); }

/* ===================================================================
   Галерея — editorial bento + numbers
   =================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 10px;
  margin-top: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  grid-column: span 2;
  grid-row: span 2;
  transition: transform 0.7s var(--ease), box-shadow 0.7s;
  isolation: isolate;
}
.gallery-item:nth-child(7n+1) { grid-column: span 2; grid-row: span 3; }
.gallery-item:nth-child(7n+2) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(7n+3) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(7n+4) { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(7n+5) { grid-column: span 3; grid-row: span 3; }
.gallery-item:nth-child(7n+6) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(7n+7) { grid-column: span 4; grid-row: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 0.6s;
  filter: saturate(1.06) contrast(1.04) brightness(1.01);
  image-rendering: -webkit-optimize-contrast;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(13,12,11,0.78) 100%);
  opacity: 0;
  transition: opacity 0.6s;
  pointer-events: none;
}
/* — Золотая hairline-рамка на hover — */
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--gold-brushed);
  border-radius: calc(var(--radius-sm) - 4px);
  opacity: 0;
  transition: opacity 0.5s, inset 0.5s var(--ease);
  pointer-events: none;
  z-index: 3;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1.18) contrast(1.08) brightness(1.03); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover::before { opacity: 1; inset: 12px; }

/* — Номер карточки сверху-слева — */
.gallery-num {
  position: absolute;
  top: 14px; left: 16px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--champagne);
  letter-spacing: 0.1em;
  z-index: 4;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.5s, transform 0.5s var(--ease);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.gallery-item:hover .gallery-num { opacity: 1; transform: translateY(0); }

/* — Caption выезжает снизу — */
.gallery-caption {
  position: absolute;
  bottom: 18px; left: 18px; right: 60px;
  z-index: 4;
  color: var(--champagne);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s, transform 0.6s var(--ease);
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* — Маленькая зум-иконка справа снизу — */
.gallery-zoom {
  position: absolute;
  bottom: 14px; right: 14px;
  width: 38px; height: 38px;
  background: rgba(245,237,224,0.95);
  border: 1px solid var(--gold-brushed);
  border-radius: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.5s, transform 0.5s var(--ease-bounce);
  color: var(--graphite);
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }
.gallery-zoom svg { width: 16px; height: 16px; }

/* ===================================================================
   На заказ
   =================================================================== */
.orders-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.orders-text p {
  color: var(--graphite-soft);
  margin-bottom: 22px;
  font-size: 1.04rem;
  font-weight: 300;
  line-height: 1.75;
}
.checklist { list-style: none; margin: 32px 0; }
.checklist li {
  position: relative;
  padding-left: 44px;
  margin-bottom: 18px;
  color: var(--graphite);
  font-weight: 400;
  line-height: 1.55;
}
/* Капля как маркер */
.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 22px;
  background: var(--grad-amber);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  box-shadow: 0 4px 12px -4px rgba(139,90,43,0.5), inset -2px -3px 4px rgba(255,255,255,0.25);
  transform: rotate(-12deg);
}
.checklist li::after {
  content: '';
  position: absolute;
  left: 5px; top: 9px;
  width: 4px; height: 5px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  filter: blur(0.5px);
}

.orders-carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-radius: var(--radius);
  padding-bottom: 8px;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide {
  flex: 0 0 80%;
  scroll-snap-align: center;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.7s var(--ease);
}
.carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 0.6s;
  filter: saturate(1.05) contrast(1.04) brightness(1.01);
  image-rendering: -webkit-optimize-contrast;
}
.carousel-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(13,12,11,0.22) 100%);
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 0.6s;
  z-index: 1;
}
.carousel-slide:hover::after { opacity: 0.2; }
.carousel-slide:hover img { transform: scale(1.06); filter: saturate(1.15) contrast(1.07) brightness(1.03); }

.carousel-nav {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
}
.carousel-prev, .carousel-next {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1px solid var(--gold-brushed);
  background: transparent;
  color: var(--graphite);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.5s, color 0.5s, transform 0.5s var(--ease), border-color 0.5s;
  font-family: var(--font-display);
}
.carousel-prev:hover, .carousel-next:hover {
  background: var(--graphite);
  color: var(--gold-bright);
  border-color: var(--graphite);
  transform: translateY(-2px);
}

/* ===================================================================
   Баннер
   =================================================================== */
.banner-strip {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.banner-overlay {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(200,155,90,0.32), transparent 60%),
    linear-gradient(rgba(13,12,11,0.78), rgba(26,24,21,0.85));
  padding: 160px 0;
  text-align: center;
}
.banner-overlay h2 {
  color: var(--champagne);
  margin-bottom: 40px;
  font-size: clamp(2rem, 5.6vw, 4rem);
}

/* ===================================================================
   Отзывы
   =================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review {
  background: var(--champagne-soft);
  border: 1px solid rgba(139,90,43,0.16);
  border-radius: var(--radius);
  padding: 44px 36px 40px;
  position: relative;
  transition: transform 0.7s var(--ease), box-shadow 0.7s, border-color 0.6s;
  overflow: hidden;
}
.review::before {
  content: '«';
  position: absolute;
  top: 8px; right: 24px;
  font-family: var(--font-display);
  font-size: 8rem;
  font-style: italic;
  line-height: 1;
  color: var(--amber);
  opacity: 0.12;
}
.review:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(191,164,111,0.5);
}
.stars {
  color: var(--amber-deep);
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  margin-bottom: 20px;
}
.review blockquote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  color: var(--graphite);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.reviews-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 64px;
  flex-wrap: wrap;
}

/* ===================================================================
   FAQ
   =================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--champagne-soft);
  border: 1px solid rgba(139,90,43,0.14);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.5s, border-color 0.5s;
}
.faq-item:hover { border-color: rgba(191,164,111,0.45); }
.faq-item[open] {
  box-shadow: var(--shadow-soft);
  border-color: rgba(191,164,111,0.55);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 30px 70px 30px 34px;
  font-weight: 500;
  font-size: 1.05rem;
  position: relative;
  color: var(--graphite);
  transition: color 0.4s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--amber-deep); }
.faq-item summary::after {
  content: '';
  position: absolute;
  right: 30px; top: 50%;
  width: 12px; height: 12px;
  border-right: 1.5px solid var(--gold-brushed);
  border-bottom: 1.5px solid var(--gold-brushed);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.6s var(--ease), border-color 0.4s;
}
.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
  border-color: var(--amber);
}
.faq-answer {
  padding: 0 34px 32px;
  color: var(--graphite-soft);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
}

/* ===================================================================
   Заявка — премиум стеклянный контейнер
   =================================================================== */
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: start;
}
.lead-text h2 { margin-bottom: 28px; font-size: clamp(2.2rem, 4.8vw, 3.6rem); }
.lead-text > p {
  color: var(--graphite-soft);
  margin-bottom: 36px;
  font-size: 1.04rem;
  font-weight: 300;
  line-height: 1.75;
}
.lead-contacts { list-style: none; }
.lead-contacts li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(139,90,43,0.18);
  transition: padding-left 0.5s var(--ease);
}
.lead-contacts li:hover { padding-left: 10px; }
.lead-contacts span {
  color: var(--amber-deep);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.lead-contacts a {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--graphite);
  font-size: 1.15rem;
  transition: color 0.4s;
}
.lead-contacts a:hover { color: var(--amber-deep); }

.lead-form-wrap {
  position: relative;
  background: rgba(251,246,236,0.7);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--gold-brushed);
  border-radius: var(--radius);
  padding: 56px 48px;
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.6);
  overflow: hidden;
}
/* Резиновая текстура внутри формы */
.lead-form-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 0%, rgba(200,155,90,0.10), transparent 60%),
    radial-gradient(ellipse 50% 50% at 100% 100%, rgba(139,90,43,0.08), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.lead-form-wrap::after {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 1px;
  background: var(--grad-gold-line);
}
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.lead-form label {
  position: relative;
  display: block;
}
.lead-form label > span {
  position: absolute;
  top: 18px; left: 20px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--graphite-soft);
  pointer-events: none;
  transition: transform 0.5s var(--ease), color 0.4s, background 0.4s, padding 0.4s;
  transform-origin: left top;
  background: transparent;
  padding: 0;
  letter-spacing: 0.02em;
}
.lead-form label > span em { color: var(--amber-deep); font-style: normal; }
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--graphite);
  padding: 18px 20px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(139,90,43,0.25);
  border-radius: var(--radius-sm);
  transition: border-color 0.4s, box-shadow 0.4s, background 0.4s;
}
.lead-form input::placeholder,
.lead-form textarea::placeholder { color: transparent; }
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 0 0 4px rgba(200,155,90,0.14);
}
.lead-form label:not(.checkbox):focus-within > span,
.lead-form input:not([type="checkbox"]):not(:placeholder-shown) ~ span,
.lead-form textarea:not(:placeholder-shown) ~ span {
  transform: translateY(-30px) scale(0.78);
  background: var(--champagne-soft);
  padding: 0 8px;
  color: var(--amber-deep);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lead-form .select-label > span {
  transform: translateY(-30px) scale(0.78);
  background: var(--champagne-soft);
  padding: 0 8px;
  color: var(--amber-deep);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lead-form select {
  color: var(--graphite);
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b5a2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px;
  padding-right: 44px;
}
.lead-form textarea { resize: vertical; min-height: 120px; line-height: 1.55; }

.checkbox {
  position: static !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 14px !important;
}
.checkbox input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--amber-deep);
  padding: 0;
}
.checkbox > span {
  position: static !important;
  transform: none !important;
  font-size: 0.82rem;
  color: var(--graphite-soft);
  font-weight: 300 !important;
  padding: 0 !important;
  background: transparent !important;
  pointer-events: auto;
  line-height: 1.55;
  text-transform: none !important;
  letter-spacing: normal !important;
}
.checkbox a {
  color: var(--amber-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-success {
  text-align: center;
  padding: 30px 0;
}
.form-success h3 { margin-bottom: 16px; font-size: 1.7rem; }
.form-success p { color: var(--graphite-soft); margin-bottom: 30px; font-weight: 300; }
.form-error {
  background: rgba(220,80,60,0.08);
  border: 1px solid rgba(220,80,60,0.3);
  color: #9d2218;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

/* ===================================================================
   Контакты
   =================================================================== */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.contact-card {
  background: rgba(245,237,224,0.04);
  border: 1px solid rgba(191,164,111,0.22);
  border-radius: var(--radius);
  padding: 40px 32px;
  backdrop-filter: blur(10px);
  transition: transform 0.7s var(--ease), border-color 0.6s, background 0.6s;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: var(--grad-gold-line);
  opacity: 0.5;
  transition: opacity 0.6s;
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(191,164,111,0.5);
  background: rgba(245,237,224,0.07);
}
.contact-card:hover::before { opacity: 1; }
.contact-card h3 {
  color: var(--champagne);
  margin-bottom: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}
.contact-card p {
  color: var(--bone);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
}
.contact-card a { color: var(--champagne); transition: color 0.4s; }
.contact-card a:hover { color: var(--gold-bright); }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold-brushed);
  padding-bottom: 4px;
  color: var(--gold-bright) !important;
  transition: gap 0.5s var(--ease), color 0.4s;
}
.link-arrow::after { content: '→'; transition: transform 0.4s; }
.link-arrow:hover { gap: 16px; }
.socials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.socials a {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 8px 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(191,164,111,0.4);
  border-radius: 999px;
  color: var(--bone);
  transition: background 0.5s, color 0.5s, border-color 0.5s;
}
.socials a:hover {
  background: var(--amber-deep);
  color: var(--champagne);
  border-color: var(--amber-deep);
}

/* ===================================================================
   Подвал
   =================================================================== */
.site-footer {
  background: var(--onyx);
  color: var(--bone);
  padding: 96px 0 48px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(191,164,111,0.18);
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--grad-gold-line);
}
.site-footer::after {
  content: '';
  position: absolute;
  bottom: -40%; left: 50%;
  transform: translateX(-50%);
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(200,155,90,0.08), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.footer-brand .brand-name {
  color: var(--champagne);
  display: block;
  margin-bottom: 18px;
  font-size: 1.6rem;
}
.footer-brand .brand-name span { color: var(--gold-bright); }
.footer-brand p {
  font-size: 0.92rem;
  max-width: 380px;
  opacity: 0.7;
  font-weight: 300;
  line-height: 1.7;
}
.footer-nav { display: flex; flex-direction: column; gap: 14px; }
.footer-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.4s, padding-left 0.4s;
}
.footer-nav a:hover { color: var(--gold-bright); padding-left: 10px; }
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  opacity: 0.75;
}
.footer-meta a:hover { color: var(--gold-bright); }

/* ===================================================================
   Плавающая кнопка
   =================================================================== */
.floating-cta {
  position: fixed;
  right: 28px; bottom: 28px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--graphite);
  color: var(--gold-bright);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 18px 30px;
  border-radius: 999px;
  box-shadow: 0 22px 60px -16px rgba(13,12,11,0.7);
  transform: translateY(140px) scale(0.9);
  opacity: 0;
  transition: transform 0.7s var(--ease), opacity 0.5s, box-shadow 0.5s, background 0.5s, color 0.5s;
  border: 1px solid var(--gold-brushed);
}
.floating-cta::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--amber-light);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(200,155,90,0.25);
  animation: pulse 2.4s infinite;
}
.floating-cta.show { transform: translateY(0) scale(1); opacity: 1; }
.floating-cta:hover {
  background: var(--grad-amber);
  border-color: var(--amber);
  color: var(--graphite);
  box-shadow: 0 22px 60px -14px rgba(200,155,90,0.55);
  transform: translateY(-3px) scale(1.02);
}

/* ===================================================================
   Лайтбокс
   =================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 220;
  background: rgba(13,12,11,0.96);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  animation: lbFade 0.4s var(--ease);
}
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: var(--radius);
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.8);
  border: 1px solid var(--gold-brushed);
  animation: lbScale 0.55s var(--ease);
}
@keyframes lbScale { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox-close {
  position: absolute;
  top: 32px; right: 36px;
  width: 52px; height: 52px;
  background: transparent;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245,237,224,0.4);
  color: var(--champagne);
  font-size: 1.6rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.5s, color 0.5s, transform 0.5s, border-color 0.5s;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover {
  background: var(--gold-bright);
  color: var(--graphite);
  border-color: var(--gold-bright);
  transform: rotate(90deg);
}

/* ===================================================================
   Анимация появления — slow & ethereal
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* — Cinematic hero stagger — */
.hero .reveal-hero > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}
.hero .reveal-hero.is-loaded > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.hero .reveal-hero.is-loaded > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.2s; }
.hero .reveal-hero.is-loaded > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.45s; }
.hero .reveal-hero.is-loaded > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.7s; }
.hero .reveal-hero.is-loaded > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.95s; }

@supports (animation-timeline: view()) {
  .reveal:not(.visible) {
    animation: revealIn linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
  @keyframes revealIn {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero .reveal-hero > *,
  .nav-list li,
  .nav-drawer-foot {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  .cursor-ring { display: none !important; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
}

/* ===================================================================
   Адаптив
   =================================================================== */

/* Между 1025-1180px немного ужимаем шапку, чтобы не было переноса */
@media (max-width: 1180px) and (min-width: 1025px) {
  .header-inner { gap: 18px; }
  .nav, .nav-list { gap: 20px; }
  .nav-list a, .nav a { font-size: 0.72rem; letter-spacing: 0.08em; }
  .brand-name { font-size: 1.3rem; }
}

/* ───────── ≤1024px: бургер + премиальный drawer ───────── */
@media (max-width: 1024px) {
  .cards, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contacts-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .workshops-grid, .orders-grid, .lead-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .about-badge { top: 24px; left: 24px; right: auto; bottom: auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; }
  .gallery-item, .gallery-item:nth-child(7n+1),
  .gallery-item:nth-child(7n+2), .gallery-item:nth-child(7n+3),
  .gallery-item:nth-child(7n+4), .gallery-item:nth-child(7n+5),
  .gallery-item:nth-child(7n+6), .gallery-item:nth-child(7n+7) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-item:nth-child(5n+1) { grid-column: span 2; grid-row: span 3; }
  .gallery-item:nth-child(5n+3) { grid-column: span 4; grid-row: span 2; }
  .section { padding: 130px 0; }
  .hero { padding: 160px 0 120px; }

  /* — Шапка: бургер вкл., desktop CTA скрыт — */
  .burger { display: flex; }
  .header-cta { display: none; }
  .header-inner { gap: 14px; }

  /* — Drawer-навигация — */
  .nav {
    position: fixed;
    top: 0; right: 0;
    width: min(88vw, 420px);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--champagne-soft);
    padding: 28px 32px calc(28px + env(safe-area-inset-bottom, 0px));
    padding-top: calc(28px + env(safe-area-inset-top, 0px));
    box-shadow: -24px 0 80px -24px rgba(13,12,11,0.4);
    transform: translateX(105%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    margin-left: 0;
    border-left: 1px solid var(--gold-brushed);
    overscroll-behavior: contain;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 105;
  }
  .nav::before {
    /* Тонкая золотая декоративная линия сверху drawer */
    content: '';
    position: absolute;
    top: 0; left: 24px; right: 24px;
    height: 1px;
    background: var(--grad-gold-line);
    opacity: 0.6;
  }
  .nav.open { transform: translateX(0); }

  .nav-drawer-head {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding-bottom: 22px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(191,164,111,0.22);
  }
  .nav-drawer-head .brand-logo { width: 36px; height: 36px; }
  .nav-drawer-head .brand-name { font-size: 1.15rem; }

  .nav-close {
    display: inline-flex !important;
    position: absolute;
    top: calc(20px + env(safe-area-inset-top, 0px));
    right: 20px;
    width: 40px; height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--gold-brushed);
    color: var(--amber-deep);
    cursor: pointer;
    transition: background 0.4s, color 0.4s, transform 0.5s var(--ease);
  }
  .nav-close svg { width: 18px; height: 18px; }
  .nav-close:hover {
    background: var(--amber-deep);
    color: var(--champagne);
    transform: rotate(90deg);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 0;
    width: 100%;
  }
  .nav-list li { display: block; white-space: normal; }
  .nav-list li + li::before { display: none; }
  .nav-list li {
    border-bottom: 1px solid rgba(191,164,111,0.20);
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  }
  .nav.open .nav-list li { opacity: 1; transform: translateX(0); }
  /* Stagger reveal */
  .nav.open .nav-list li:nth-child(1) { transition-delay: 0.10s; }
  .nav.open .nav-list li:nth-child(2) { transition-delay: 0.16s; }
  .nav.open .nav-list li:nth-child(3) { transition-delay: 0.22s; }
  .nav.open .nav-list li:nth-child(4) { transition-delay: 0.28s; }
  .nav.open .nav-list li:nth-child(5) { transition-delay: 0.34s; }
  .nav.open .nav-list li:nth-child(6) { transition-delay: 0.40s; }
  .nav.open .nav-list li:nth-child(7) { transition-delay: 0.46s; }

  .nav-list a {
    display: flex;
    align-items: baseline;
    gap: 18px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--graphite);
    text-transform: none;
    letter-spacing: -0.005em;
    min-height: 60px;
    padding: 14px 4px;
    white-space: normal;
  }
  .nav-list a::after { display: none; }
  .nav-list a .nav-num {
    display: inline-block;
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--amber-deep);
    letter-spacing: 0.18em;
    min-width: 28px;
    opacity: 0.85;
  }
  .nav-list a .nav-text {
    position: relative;
    display: inline-block;
  }
  .nav-list a .nav-text::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -3px;
    height: 1px;
    background: var(--amber);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s var(--ease);
  }
  .nav-list a:hover .nav-text::after,
  .nav-list a:active .nav-text::after,
  .nav-list a.is-active .nav-text::after { transform: scaleX(1); }
  .nav-list a.is-active { color: var(--amber-deep); }

  .nav-drawer-foot {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    margin-top: auto;
    padding-top: 24px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(191,164,111,0.22);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s var(--ease) 0.45s, transform 0.5s var(--ease) 0.45s;
  }
  .nav.open .nav-drawer-foot { opacity: 1; transform: translateY(0); }

  .nav-cta { width: 100%; padding: 16px 24px; font-size: 0.74rem; }

  .nav-phone {
    display: block;
    text-align: center;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--graphite);
    letter-spacing: 0.01em;
    transition: color 0.4s;
  }
  .nav-phone:hover { color: var(--amber-deep); }

  .nav-socials {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .nav-socials a {
    flex: 1 1 auto;
    text-align: center;
    font-size: 0.66rem;
    font-weight: 500;
    padding: 10px 18px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--graphite);
    border: 1px solid var(--gold-brushed);
    border-radius: 999px;
    transition: background 0.4s, color 0.4s, border-color 0.4s;
  }
  .nav-socials a:hover {
    background: var(--amber-deep);
    color: var(--champagne);
    border-color: var(--amber-deep);
  }
}

/* ≤760px — мобильная типографика и адаптив секций */
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 78px 0; }
  .container { padding: 0 22px; }

  /* Шапка чуть компактнее на мобиле */
  .header-inner { padding-top: 16px; padding-bottom: 16px; gap: 12px; }
  .site-header.scrolled .header-inner { padding-top: 10px; padding-bottom: 10px; }
  .brand-logo { width: 38px; height: 38px; }
  .brand-name { font-size: 1.2rem; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 8px;
  }
  .gallery-item, .gallery-item:nth-child(7n+1),
  .gallery-item:nth-child(7n+2), .gallery-item:nth-child(7n+3),
  .gallery-item:nth-child(7n+4), .gallery-item:nth-child(7n+5),
  .gallery-item:nth-child(7n+6), .gallery-item:nth-child(7n+7),
  .gallery-item:nth-child(5n+1), .gallery-item:nth-child(5n+3) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery-item:nth-child(3n+1) { grid-row: span 2; }
  .cards, .reviews-grid, .contacts-grid { grid-template-columns: 1fr; }
  .cards { gap: 16px; }
  .card { padding: 28px 24px; }
  .contacts-grid { gap: 14px; }
  .contact-card { padding: 28px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .hero { padding-top: 120px; padding-bottom: 80px; min-height: 92vh; }
  .hero h1 { font-size: clamp(2.4rem, 9vw, 3rem); line-height: 1.08; }
  .hero .lead { font-size: 1rem; }
  .hero-badge { font-size: 0.65rem; padding: 8px 14px; }
  .hero-actions { gap: 12px; margin-bottom: 56px; }
  .hero-stats { gap: 22px; padding-top: 22px; flex-wrap: wrap; }
  .hero-stats li { min-width: calc(50% - 11px); }
  .hero-stats strong { font-size: 1.7rem; }

  .lead-form-wrap { padding: 32px 22px; }
  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    font-size: 16px;
    padding: 16px 18px;
  }
  .lead-form label > span { font-size: 0.92rem; top: 17px; left: 18px; }
  .lead-form button[type="submit"],
  .lead-form .btn { width: 100%; }

  .carousel-slide { flex-basis: 88%; }
  .carousel-nav { gap: 8px; }
  .carousel-prev, .carousel-next { width: 40px; height: 40px; }
  .banner-strip { background-attachment: scroll; padding: 70px 0; }
  .about-badge { top: 18px; left: 18px; right: auto; bottom: auto; padding: 12px 16px; font-size: 0.72rem; }
  .floating-cta { right: 14px; bottom: 14px; padding: 13px 20px; font-size: 0.63rem; gap: 9px; }
  .ws-cta { padding: 40px 28px; }
  .workshops-grid { gap: 28px; }
  .price-row { grid-template-columns: 1fr auto; gap: 14px; padding: 22px 4px; }
  .price-row .price-dots { display: none; }
  .price-row .price-name { font-size: 1.15rem; }
  .price-value { font-size: 1.35rem; }
  .review { padding: 28px 24px; }
  .reviews-grid { gap: 16px; }
  .marquee-track { font-size: 1.4rem; gap: 36px; }
  .marquee-track > span { gap: 36px; }
  .marquee { padding: 14px 0; }
  .scroll-down { display: none; }
  .marquee::before, .marquee::after { width: 60px; }

  .faq-item summary { padding: 18px 18px; font-size: 1.02rem; }
  .faq-answer { padding: 0 18px 18px; }

  .lightbox { padding: 18px; }
  .lightbox img { max-width: 95vw; max-height: 80vh; }
  .lightbox-close { top: 18px; right: 18px; width: 44px; height: 44px; font-size: 1.3rem; }
}

@media (max-width: 460px) {
  .container { padding: 0 18px; }
  .section { padding: 70px 0; }
  h1 { font-size: clamp(2.2rem, 10vw, 2.8rem); }
  .hero { padding-top: 110px; padding-bottom: 70px; }
  .hero h1 { font-size: clamp(2.2rem, 10vw, 2.8rem); }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; gap: 10px; }
  .gallery-item, .gallery-item:nth-child(3n+1) { grid-row: span 1; }
  .hero-actions { width: 100%; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 16px; }
  .hero-stats li { min-width: calc(50% - 8px); }
  .hero-stats strong { font-size: 1.5rem; }
  .reviews-actions { flex-direction: column; align-items: stretch; }
  .reviews-actions .btn { width: 100%; }
  .lead-form-wrap { padding: 26px 18px; }
  .ws-cta { padding: 32px 22px; }
  .ws-cta .btn { font-size: 0.68rem; padding: 13px 18px; }
  .about-photo::before { display: none; }

  /* Floating CTA — только иконка/маленький pill на самом узком */
  .floating-cta {
    right: 12px; bottom: 12px;
    padding: 12px 14px;
    font-size: 0;
    gap: 0;
    border-radius: 50%;
    width: 52px; height: 52px;
    justify-content: center;
  }
  .floating-cta::before { margin: 0; }

  /* Drawer чуть уже и поплотнее */
  .nav { width: min(92vw, 380px); padding-left: 24px; padding-right: 24px; }
  .nav-list a { font-size: 1.35rem; min-height: 56px; padding: 12px 2px; gap: 14px; }
  .nav-phone { font-size: 1.25rem; }

  .carousel-nav { display: flex; }
  .carousel-prev, .carousel-next { width: 36px; height: 36px; }

  .lightbox-close { width: 40px; height: 40px; top: 14px; right: 14px; }
}

/* ───────── iOS scroll-lock helper ───────── */
body.nav-locked {
  position: fixed;
  width: 100%;
  overflow: hidden;
}
