/* ============================================================
   Möbel&Zeit — Outlet (−50%)
   Единая стилистика с премиум-лендингом: тёплый near-black,
   матовое золото, Manrope/Onest, красный акцент.
   ============================================================ */

:root {
  --bg:      #0c0a07;
  --bg-2:    #100d09;
  --bg-card: #120e08;

  --ink:     #f3ece0;
  --ink-2:   #b7ac99;
  --ink-3:   #877d6c;

  --gold:        #d8b275;
  --gold-bright: #f2dca8;
  --gold-deep:   #b08a3f;
  --gold-line:   rgba(216,178,117,.22);
  --gold-line-2: rgba(216,178,117,.40);
  --gold-glow:   rgba(216,178,117,.55);

  --red:      #d10a09;

  --fd: "Manrope", system-ui, -apple-system, sans-serif;
  --fb: "Onest", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: clamp(20px, 6vw, 88px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background:
    radial-gradient(120% 80% at 80% -10%, rgba(216,178,117,.07), transparent 44%),
    radial-gradient(90% 60% at 6% 3%, rgba(216,178,117,.03), transparent 48%),
    var(--bg);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--fb);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--gold); color: #1a1208; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.wrap { width: 80%; max-width: 1600px; margin-inline: auto; }
@media (max-width: 760px) { .wrap { width: 100%; padding-inline: var(--pad); } }
.section { position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase; color: var(--gold);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }

h1, h2, h3 { font-weight: 500; letter-spacing: -0.02em; line-height: 1.04; }
/* headings match premium.css hero h1 / video-body h2 exactly: same font, size, gradient */
.h-display, .h-section {
  font-family: var(--fd); font-weight: 800; text-transform: uppercase;
  letter-spacing: -.02em;
  background: linear-gradient(176deg, #fbf1da 2%, var(--gold-bright) 30%, var(--gold) 62%, var(--gold-deep) 98%);
  background-size: 100% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 4px 30px rgba(216,178,117,.12));
}
.h-display { font-size: clamp(32px, 3.6vw, 52px); line-height: 1.06; }
.h-section { font-size: clamp(28px, 3.6vw, 50px); line-height: 1.04; }
.lead { font-size: clamp(17px, 1.25vw, 21px); color: var(--ink-2); line-height: 1.55; max-width: 56ch; }

/* gold gradient text (matches premium hero h1) */
.goldtext {
  background: linear-gradient(176deg, #fbf1da 2%, var(--gold-bright) 30%, var(--gold) 62%, var(--gold-deep) 98%);
  background-size: 100% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 4px 30px rgba(216,178,117,.12));
}

/* ============================================================
   BUTTONS (same language as premium.css)
   ============================================================ */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 11px; font-family: var(--fd); font-weight: 700; font-size: 14px;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 17px 28px; border: none; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), color .35s, background .35s, border-color .35s;
}
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(138deg, #e84040 0%, #d10a09 42%, #960000 80%, #6a0000 100%);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,130,130,.22) inset, 0 22px 60px -18px rgba(209,10,9,.9);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 1px 0 rgba(255,130,130,.28) inset, 0 30px 70px -16px rgba(209,10,9,.95), 0 0 0 7px rgba(209,10,9,.06); }

.btn-dark {
  background: var(--bg-card); color: var(--ink);
  box-shadow: 0 0 0 1px var(--gold-line) inset;
}
.btn-dark:hover { box-shadow: 0 0 0 1px var(--gold-line-2) inset; color: var(--gold-bright); }

.btn-ghost { background: transparent; color: var(--ink); box-shadow: 0 0 0 1px var(--gold-line-2) inset; }
.btn-ghost:hover { color: var(--gold-bright); box-shadow: 0 0 0 1px var(--gold) inset, 0 0 26px -8px var(--gold-glow); transform: translateY(-2px); }

.btn-lg { padding: 22px 38px; font-size: 15px; }
.btn svg { width: 18px; height: 18px; }

.textlink {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; padding-bottom: 4px;
  border-bottom: 1px solid var(--gold-line-2); color: var(--ink-2); transition: color .3s, border-color .3s;
}
.textlink:hover { color: var(--gold-bright); border-color: var(--gold); }

/* ============================================================
   Images / reveal (same as premium)
   ============================================================ */
.img { position: relative; overflow: hidden; background: var(--bg-card); }
.img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.6s var(--ease); }
.img.zoom:hover img { transform: scale(1.05); }

.reveal { opacity: 1; }
.reveal-mask { opacity: 1; }
html.anim .reveal { opacity: 0; transform: translateY(22px); }
html.anim .reveal.in { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--reveal-delay, 0s); }
html.anim .reveal-mask { opacity: 0; clip-path: inset(0 0 100% 0); }
html.anim .reveal-mask.in { opacity: 1; clip-path: inset(0 0 0 0); transition: opacity 1s var(--ease), clip-path 1.1s var(--ease); transition-delay: var(--reveal-delay, 0s); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
}

/* ============================================================
   HEADER — logo + OUTLET merged lockup
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 14px var(--pad);
  background: linear-gradient(180deg, rgba(20,17,13,.82), rgba(20,17,13,.34) 70%, transparent);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: background .4s var(--ease), padding .4s var(--ease);
}
.site-header.scrolled {
  padding-block: 10px;
  background: rgba(12,9,6,.46);
  -webkit-backdrop-filter: blur(24px) saturate(170%); backdrop-filter: blur(24px) saturate(170%);
}
.logo-group { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.h-tag { font-size: 12.5px; color: var(--ink-3); letter-spacing: .03em; white-space: nowrap; }
.header-nav { display: flex; align-items: center; gap: 30px; }
.header-nav a { font-size: 14px; font-weight: 600; color: var(--ink-2); letter-spacing: .01em; transition: color .3s; }
.header-nav a:hover { color: var(--gold-bright); }
@media (max-width: 1080px) { .header-nav { display: none; } }
.logo-lockup { display: inline-flex; align-items: center; gap: 10px; }
.logo {
  display: inline-flex; align-items: center;
  background: var(--red); color: #fff;
  font-family: var(--fd); font-weight: 800; font-size: 17px; letter-spacing: -.02em;
  padding: 7px 12px; line-height: 1;
  box-shadow: 0 0 0 1px rgba(255,255,255,.04) inset, 0 8px 26px -12px rgba(209,10,9,.7);
}
.logo .amp { font-weight: 500; margin: 0 1px; opacity: .9; }
.outlet-tag {
  font-family: var(--fb); font-weight: 300; font-size: 16px; letter-spacing: .12em;
  color: var(--ink); text-transform: uppercase;
}
.header-actions { display: flex; align-items: center; gap: 18px; }
.h-social { display: flex; align-items: center; gap: 10px; }
.h-social a {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--gold-line); border-radius: 50%; color: var(--gold);
  transition: border-color .35s var(--ease), color .35s, box-shadow .35s, transform .35s;
}
.h-social a:hover {
  color: var(--gold-bright); border-color: var(--gold-line-2);
  box-shadow: 0 0 0 4px rgba(216,178,117,.08), 0 0 22px -6px var(--gold-glow);
  transform: translateY(-1px);
}
.h-social svg { width: 18px; height: 18px; }
.header-phone {
  font-family: var(--fd); font-weight: 700; font-size: 17px; letter-spacing: .01em;
  color: var(--ink); white-space: nowrap; transition: color .3s;
}
.header-phone:hover { color: var(--gold-bright); }
@media (max-width: 880px) { .h-tag { display: none; } }
@media (max-width: 720px) { .hide-sm { display: none !important; } .header-actions { gap: 12px; } }
@media (max-width: 560px) {
  .header-phone { display: none; }
  .header-actions { gap: 10px; min-width: 0; }
  .logo-group { min-width: 0; gap: 8px; }
  .logo-lockup { min-width: 0; gap: 8px; }
  .outlet-tag { font-size: 13px; }
}
@media (max-width: 400px) {
  .h-social { gap: 8px; }
  .h-social a { width: 34px; height: 34px; }
  .h-social svg { width: 15px; height: 15px; }
}

/* ============================================================
   HERO
   ============================================================ */
.o-hero { padding-top: clamp(120px, 17vh, 176px); padding-bottom: clamp(40px, 6vh, 76px); }
.o-hero-grid { display: grid; grid-template-columns: minmax(0,0.94fr) minmax(0,1.06fr); gap: clamp(28px, 3.4vw, 64px); align-items: center; }
.o-hero-text { max-width: 640px; }
.o-hero h1 { margin: 20px 0 22px; }
.o-hero h1 .pct { white-space: nowrap; }
.o-hero .lead { margin-bottom: 8px; }
.o-hero-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 30px; }
.o-hero-cta .btn-primary { padding: 24px 42px; font-size: 15px; }

.o-hero-text .lead { font-size: clamp(18px, 2.1vw, 23px); color: var(--ink); font-weight: 400; max-width: none; }
.o-hero-text .lead b { color: var(--gold-bright); font-weight: 600; }
.o-hero-note {
  margin-top: 22px; font-size: 15.5px; line-height: 1.6; color: var(--ink-2);
  padding-left: 18px; border-left: 2px solid var(--gold-line-2);
  display: flex; flex-direction: column; gap: 6px;
}
.o-hero-note b { color: var(--gold-bright); font-weight: 600; }

.o-hero-media { position: relative; }
.o-hero-media .frame {
  position: relative; z-index: 2; overflow: hidden;
  border: 1px solid var(--gold-line);
  box-shadow: 0 40px 90px -50px rgba(0,0,0,.9), 0 0 0 1px rgba(0,0,0,.4);
}
.o-hero-media .frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.3; }
.o-hero-media .frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(216,178,117,.10), transparent 26%), linear-gradient(0deg, rgba(0,0,0,.30), transparent 40%);
}
.o-hero-halo {
  position: absolute; inset: -16% -12% -18% -12%; z-index: 1; pointer-events: none;
  background: radial-gradient(closest-side at 52% 50%, rgba(216,178,117,.38), rgba(216,178,117,.1) 55%, transparent 76%);
  filter: blur(28px);
}
@media (max-width: 900px) {
  .o-hero-grid { grid-template-columns: 1fr; }
  .o-hero-media { order: -1; }
  .o-hero-text { max-width: none; }
}

/* ============================================================
   TRIPLET (benefit cards — same minimal treatment as premium)
   ============================================================ */
.triplet { padding-block: clamp(48px, 7vh, 90px); }
.trip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 1.8vw, 26px); }
@media (max-width: 1120px) { .trip-grid { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-inline: auto; } }
@media (max-width: 860px) { .trip-grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; } }

.tcard {
  position: relative; overflow: hidden; isolation: isolate;
  padding: 28px 22px 40px;
  border-top: 1px solid var(--gold-line);
  transition: transform .45s var(--ease);
}
.tcard::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(220px 180px at var(--mx, 50%) var(--my, 0%), rgba(216,178,117,.16), transparent 70%);
  opacity: 0; transition: opacity .45s;
}
.tcard:hover { transform: translateY(-3px); border-top-color: var(--gold-line-2); }
.tcard:hover::after { opacity: 1; }

.tcard .ic {
  width: fit-content; height: auto; display: grid; place-items: center start;
  color: var(--gold); margin-bottom: 20px;
  transition: color .45s, transform .45s;
}
.tcard:hover .ic { color: var(--gold-bright); }
.tcard .ic svg { width: 48px; height: 48px; }

.tcard h3 {
  font-family: var(--fd); font-weight: 700; font-size: 21px;
  letter-spacing: -.01em; color: var(--ink); margin-bottom: 12px;
}
.tcard .accent { color: var(--gold-bright); }
.tcard p { font-size: 15px; line-height: 1.6; color: var(--ink-2); }

.tcard .tnum {
  position: absolute; top: 22px; right: 26px;
  font-family: var(--fd); font-weight: 800; font-size: 15px;
  color: var(--gold); opacity: .35; letter-spacing: .04em;
}

/* ============================================================
   Catalog
   ============================================================ */
.catalog { padding-block: clamp(64px, 8vw, 110px); }
.cat-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cat-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.4vw, 36px); }
@media (max-width: 720px) { .cat-grid { grid-template-columns: 1fr; } }

.cat-card {
  position: relative; cursor: pointer; isolation: isolate; overflow: hidden;
  background: #f6f1e6;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 60px -38px rgba(0,0,0,.6);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: 0 44px 80px -34px rgba(0,0,0,.7), 0 0 40px -18px var(--gold-glow); }
.cat-media { position: relative; aspect-ratio: 5/4; overflow: hidden; }
.cat-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.cat-card:hover .cat-media img { transform: scale(1.06); }
.cat-disc {
  position: absolute; top: 16px; left: 16px; z-index: 2; background: var(--red); color: #fff;
  font-family: var(--fd); font-size: clamp(20px, 2vw, 26px); font-weight: 800; letter-spacing: -.01em; padding: 8px 16px;
  box-shadow: 0 14px 30px -12px rgba(209,10,9,.8);
}
.cat-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 6px; }
.cat-name { font-family: var(--fd); font-size: clamp(20px, 1.8vw, 24px); font-weight: 700; letter-spacing: -0.01em; color: #1a1208; }
.cat-sub { font-size: 14px; color: #6b6152; }
.cat-specs { font-size: 14px; color: #8a7f66; line-height: 1.5; margin-top: 4px; }
.cat-specs .dot { opacity: .55; margin: 0 3px; }
.cat-cta-btn { margin-top: 16px; align-self: flex-start; }

.cat-more { margin-top: 40px; }
.cat-more .btn-wide { display: flex; width: 100%; min-height: 84px; font-size: 16px; letter-spacing: .16em; }

/* ============================================================
   Product drawer — slides in from the right
   ============================================================ */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(8,6,4,.7); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity .35s var(--ease);
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer-overlay[hidden] { display: none; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1001;
  width: min(600px, 100vw);
  background: linear-gradient(180deg, #faf6ea, #f2ecdd);
  color: #1a1208;
  border-left: 1px solid rgba(20,16,10,.14);
  box-shadow: -40px 0 100px -40px rgba(0,0,0,.7);
  overflow-y: auto; overscroll-behavior: contain;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
}
.drawer-overlay.open .drawer { transform: translateX(0); }

.drawer-close {
  position: sticky; float: right; top: 18px; right: 18px; margin-left: 16px; z-index: 5;
  width: 40px; height: 40px; display: grid; place-items: center;
  background: rgba(255,255,255,.7); border: 1px solid rgba(20,16,10,.16); color: #55503f;
  transition: color .3s, border-color .3s;
}
.drawer-close:hover { color: #1a1208; border-color: rgba(20,16,10,.32); }
.drawer-close svg { width: 16px; height: 16px; }

.drawer-gallery { position: relative; aspect-ratio: 4/3; background: #ece4d1; }
.drawer-gallery img { width: 100%; height: 100%; object-fit: cover; display: none; }
.drawer-gallery img.active { display: block; }
.drawer-gallery-nav { position: absolute; left: 0; right: 0; bottom: 14px; display: flex; justify-content: center; gap: 8px; z-index: 3; }
.drawer-gallery-nav button {
  width: 8px; height: 8px; border-radius: 50%; border: 1px solid rgba(20,16,10,.3); background: rgba(255,255,255,.6); padding: 0;
  transition: background .3s, transform .3s;
}
.drawer-gallery-nav button.active { background: var(--gold-deep); transform: scale(1.2); }
.drawer-gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.75); border: 1px solid rgba(20,16,10,.16); color: #1a1208;
  transition: background .3s, color .3s;
}
.drawer-gallery-arrow:hover { color: var(--gold-deep); background: #fff; }
.drawer-gallery-arrow.prev { left: 14px; }
.drawer-gallery-arrow.next { right: 14px; }
.drawer-gallery-arrow svg { width: 18px; height: 18px; }

.drawer-body { padding: clamp(24px, 3.4vw, 40px); }
.cat-flag {
  display: inline-flex; align-items: center; font-family: var(--fd); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep);
  background: rgba(176,138,63,.12); border: 1px solid rgba(176,138,63,.4); padding: 6px 12px;
}
.drawer-body .cat-flag { position: static; display: inline-block; margin-bottom: 14px; }
.drawer-body h2 { font-family: var(--fd); font-weight: 800; font-size: clamp(24px, 2.6vw, 32px); color: #1a1208; letter-spacing: -.01em; }
.drawer-body .d-sub { font-size: 14px; color: #6b6152; margin-top: 4px; }
.drawer-body .d-desc { font-size: 15px; line-height: 1.65; color: #4a4436; margin-top: 18px; }
.drawer-body .d-desc p + p { margin-top: 12px; }

.drawer-section { margin-top: 30px; padding-top: 26px; border-top: 1px solid rgba(20,16,10,.14); }
.drawer-section h3 { font-family: var(--fd); font-size: 16px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 14px; }

.spec-list { display: flex; flex-direction: column; }
.spec-row { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid rgba(20,16,10,.12); font-size: 14px; }
.spec-row:last-child { border-bottom: none; }
.spec-row .sk { color: #8a7f66; flex: none; }
.spec-row .sv { color: #1a1208; text-align: right; }

.tech-item { display: flex; gap: 14px; margin-bottom: 16px; }
.tech-item:last-child { margin-bottom: 0; }
.tech-item .ti-ic { width: 34px; height: 34px; flex: none; display: grid; place-items: center; color: var(--gold-deep); }
.tech-item .ti-ic svg { width: 26px; height: 26px; }
.tech-item b { font-size: 15px; color: #1a1208; font-weight: 700; }
.tech-item p { font-size: 14px; color: #4a4436; margin-top: 3px; line-height: 1.55; }

.discount-reason { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: #4a4436; line-height: 1.55; }
.discount-reason svg { width: 20px; height: 20px; stroke: var(--gold-deep); flex: none; margin-top: 1px; }

.drawer-price-inline { margin-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.dpi-left { display: flex; flex-direction: column; gap: 8px; }
.dpi-badge {
  display: inline-block; font-family: var(--fd); font-weight: 800;
  font-size: clamp(30px, 3.4vw, 40px); letter-spacing: -.02em; color: var(--red);
}
.dpi-real { font-family: var(--fd); font-size: clamp(24px, 2.6vw, 30px); font-weight: 700; color: #1a1208; }
.dp-blurred { filter: blur(6px); user-select: none; }
#dp-cta { flex: none; }
.dp-form { margin-top: 16px; width: 100%; display: none; flex-direction: column; gap: 10px; max-width: 360px; }
.dp-form.show { display: flex; }
.dp-form input {
  background: #fff; border: 1px solid rgba(20,16,10,.2); color: #1a1208; padding: 13px 15px;
  font-family: inherit; font-size: 15px; transition: border-color .3s;
}
.dp-form input::placeholder { color: #9a917d; }
.dp-form input:focus { outline: none; border-color: var(--gold-deep); }
.dp-form input.err { border-color: var(--red); }
.dp-unlocked { margin-top: 10px; width: 100%; font-size: 14px; color: #4a4436; }
.dp-unlocked b { color: var(--gold-deep); }

.drawer-benefits { display: flex; flex-direction: column; gap: 14px; }
.d-benefit { display: flex; gap: 14px; align-items: flex-start; }
.d-benefit .bi { width: 36px; height: 36px; flex: none; display: grid; place-items: center; border: 1px solid rgba(20,16,10,.2); color: var(--gold-deep); }
.d-benefit .bi svg { width: 19px; height: 19px; }
.d-benefit p { font-size: 14px; color: #1a1208; line-height: 1.5; }

/* ============================================================
   Showroom invite
   ============================================================ */
.o-showroom { padding-block: clamp(64px, 8vw, 110px); }
.showroom-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px,5vw,80px); align-items: stretch; }
.showroom-media .img { aspect-ratio: 4/5; border: 1px solid var(--gold-line); }
.o-showroom h2 { margin: 20px 0 22px; }
.o-showroom .addr { display: flex; gap: 16px; align-items: flex-start; padding: 22px; border: 1px solid var(--gold-line); background: rgba(216,178,117,.04); margin: 26px 0; }
.o-showroom .addr svg { width: 22px; height: 22px; stroke: var(--gold); flex: none; margin-top: 2px; }
.o-showroom .addr .at { font-weight: 700; color: var(--ink); }
.o-showroom .addr .ad { font-size: 14px; color: var(--ink-2); margin-top: 3px; }
.showroom-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
@media (max-width: 820px) { .showroom-grid { grid-template-columns: 1fr; gap: 36px; } .showroom-media { order: -1; } }

/* ============================================================
   Footer (same structure/tokens as premium footer)
   ============================================================ */
.site-footer { border-top: 1px solid var(--gold-line); background: #100d09; padding-block: clamp(40px, 6vh, 64px); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; padding-bottom: 30px; border-bottom: 1px solid var(--gold-line); }
.footer-top .f-left { max-width: 46ch; }
.footer-top .f-left p { margin-top: 18px; font-size: 14px; color: var(--ink-3); line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; text-align: right; }
.footer-links .footer-phone { font-family: var(--fd); font-weight: 800; font-size: 20px; letter-spacing: .01em; color: var(--ink); transition: color .3s; }
.footer-links .footer-phone:hover { color: var(--gold-bright); }
.footer-links a { font-size: 14px; color: var(--ink-2); transition: color .3s; }
.footer-links a:hover { color: var(--gold-bright); }
.footer-co { margin-top: 0; font-size: 13px; color: var(--ink-3); }
.footer-legal { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.footer-legal p { font-size: 11.5px; line-height: 1.55; color: #5f574b; max-width: 120ch; }
@media (max-width: 640px) { .footer-links { align-items: flex-start; text-align: left; } }

/* ============================================================
   MODAL (Политика обработки ПД)
   ============================================================ */
.mz-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(8,6,4,.72); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: clamp(16px, 4vw, 48px);
  animation: mzFade .3s var(--ease);
}
.mz-overlay[hidden] { display: none; }
@keyframes mzFade { from { opacity: 0; } to { opacity: 1; } }
.mz-modal {
  position: relative; width: min(720px, 100%); max-height: min(84vh, 900px);
  overflow-y: auto; overscroll-behavior: contain;
  background: linear-gradient(180deg, #17130d, #100d09);
  border: 1px solid var(--gold-line-2);
  box-shadow: 0 60px 120px -40px rgba(0,0,0,.9);
  padding: clamp(28px, 4vw, 48px);
  animation: mzUp .38s var(--ease);
}
@keyframes mzUp { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }
.mz-modal-close {
  position: sticky; float: right; top: 0; margin-left: 16px; margin-bottom: 8px;
  width: 40px; height: 40px; display: grid; place-items: center;
  background: transparent; border: 1px solid var(--gold-line); color: var(--ink-2);
  transition: color .3s, border-color .3s;
}
.mz-modal-close:hover { color: var(--gold-bright); border-color: var(--gold-line-2); }
.mz-modal-close svg { width: 16px; height: 16px; }

.mz-policy h2 {
  font-family: var(--fd); font-weight: 800; font-size: clamp(20px, 2.6vw, 27px);
  line-height: 1.2; color: var(--ink); margin: 0 0 20px; padding-right: 50px;
}
.mz-policy h3 {
  font-family: var(--fd); font-weight: 700; font-size: 16px; color: var(--gold-bright);
  margin: 26px 0 10px;
}
.mz-policy h3:first-of-type { margin-top: 4px; }
.mz-policy p { font-size: 14.5px; line-height: 1.65; color: var(--ink-2); margin-bottom: 10px; }
.mz-policy ul { margin: 4px 0 12px; padding-left: 20px; }
.mz-policy li { font-size: 14.5px; line-height: 1.65; color: var(--ink-2); margin-bottom: 8px; }

/* sticky mobile CTA */
.mobile-cta { position: fixed; inset: auto 0 0 0; z-index: 50; display: none; padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(12,9,6,.9); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-top: 1px solid var(--gold-line); }
.mobile-cta .btn { width: 100%; }
@media (max-width: 720px) { .mobile-cta { display: block; } body { padding-bottom: 78px; } }
