/* =============================================================
   _shared.css — EGOIST Real Estate CRO Wireframes
   Palette: navy #1a2b4a + orange #e87820 + cream #faf7f0
   Typography: Cormorant Garamond (h1-h3) + Inter (body)
   F-11 rule: max 700px desktop / 900px mobile per section
   ============================================================= */

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

/* 2026-04-22: dev wireframe-switcher bar HIDDEN by default — заважала переглядати дизайн.
   Тільки index.html показує її inline (override). Embedded iframe — теж приховано. */
.wf-nav { display: none !important; }
.embedded .wf-nav { display: none !important; }

/* ── Cross-page wireframe navigation bar (dev tool, non-sticky — scrolls away щоб не перекривати design header) ── */
.wf-nav.wf-nav--show {
  display: flex !important;
  position: static;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  padding: 8px 18px;
  background: #0f1e35;
  color: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  border-bottom: 1px solid rgba(232,120,32,.4);
}
.wf-nav strong {
  font-weight: 600;
  margin-right: 14px;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .85;
}
.wf-nav a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  padding: 6px 11px;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.wf-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}
.wf-nav a.active {
  background: #e87820;
  color: #fff;
  font-weight: 600;
}
/* 2026-04-22: mobile links — cream background для візуального відокремлення */
.wf-nav a[href$="-mobile.html"],
.wf-nav a[href="mobile.html"] {
  background: #faf7f0;
  color: #1a2b4a;
}
.wf-nav a[href$="-mobile.html"]:hover,
.wf-nav a[href="mobile.html"]:hover {
  background: #fff;
  color: #0f1e35;
}
.wf-nav a[href$="-mobile.html"].active,
.wf-nav a[href="mobile.html"].active {
  background: #e87820;
  color: #fff;
}
.wf-nav .spacer { flex: 1; min-width: 8px; }
.wf-nav .meta {
  opacity: .55;
  font-size: 11px;
  letter-spacing: .03em;
}

/* Device switcher: 🖥️ Desktop / 📱 Mobile */
.wf-device-switch {
  display: inline-flex;
  gap: 0;
  padding: 3px;
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  margin: 0 10px 0 4px;
}
.wf-device-switch .wf-dev-btn {
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  background: transparent;
  border-radius: 6px;
  text-decoration: none;
  line-height: 1;
  transition: background .15s, color .15s;
}
.wf-device-switch .wf-dev-btn:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}
.wf-device-switch .wf-dev-btn.active {
  background: #e87820;
  color: #fff;
}
@media (max-width: 720px) {
  .wf-nav { padding: 8px 10px; gap: 2px; font-size: 12px; }
  .wf-nav strong { width: 100%; margin: 0 0 6px; font-size: 11px; }
  .wf-nav a { padding: 5px 8px; font-size: 12px; }
  .wf-nav .meta { display: none; }
}
/* 2026-04-22: hide cross-page wireframe nav on mobile + print — dev-tool only, desktop preview */
@media (max-width: 768px) { .wf-nav.wf-nav--show { display: none !important; } }
@media print { .wf-nav.wf-nav--show { display: none !important; } }

/* 2026-04-22: header menu items — NEVER wrap text of individual links */
.header__menu_list > li > a,
.header__menu_list > li > button,
.header__menu-dropdown-trigger {
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════
   2026-04-22: Mobile wireframe preview on desktop.
   body.wf-mobile — коли моб-сторінку відкривають напряму в десктоп-
   браузері, показуємо її у "телефонному" контейнері (430px centered)
   на темному фоні, з warning-банером зверху.
   На реальному мобільному (≤640px) працює як звичайна сторінка.
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 641px) {
  html:has(body.wf-mobile) {
    background: #0f1e35;
  }
  body.wf-mobile {
    max-width: 430px;
    margin: 0 auto !important;
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 60px rgba(0,0,0,.5);
    overflow-x: hidden;
  }
  /* 2026-04-22: warning-банер прибрано (виглядав dev-ish на презентаціях).
     Mobile wireframes відкриваються через viewer (mobile.html) або з Overview
     перемикачем — там завжди коректний phone-frame. Raw file на десктопі —
     просто центрований 430px-контейнер без banner-у. */
  /* Sticky bottom CTA — центрувати в межах 430px */
  body.wf-mobile .m-sticky-cta {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
  }
  /* Drawer — не чіпаємо (full viewport overlay коли відкритий, це ок) */
}

/* ── CSS Custom Properties ───────────────────────────────────── */
:root {
  --navy:        #1a2b4a;
  --navy-deep:   #0f1e35;
  --navy-light:  #253d6a;
  --orange:      #e87820;
  --orange-deep: #c96210;
  --orange-soft: #f9e8d0;
  --cream:       #faf7f0;
  --cream-2:     #f3ede0;
  --white:       #ffffff;
  --text:        #222222;
  --text-muted:  #5a6475;
  --text-light:  #8e9aaa;
  --border:      #dde3ed;
  --border-soft: #edf0f5;
  --success:     #2d9b6e;
  --badge-new-bg: #e8f5ec;
  --badge-new-tx: #1a7a40;
  --badge-sec-bg: #eef0f4;
  --badge-sec-tx: #4a5568;
  /* BLK-04 additions: accent-2 + gold tokens */
  --accent-2:      #F28C28;
  --gold:          #c9a227;
  --gold-deep:     #a48517;
  --badge-gold-bg: #FFF8E1;
  --badge-gold-tx: #8A6D00;
  --shadow-sm:   0 2px 8px rgba(26,43,74,.08);
  --shadow-md:   0 4px 20px rgba(26,43,74,.12);
  --shadow-lg:   0 8px 40px rgba(26,43,74,.18);
  --radius:      8px;
  --radius-lg:   14px;
  --radius-xl:   20px;
  /* F-11: section height caps */
  --section-max: 700px;
  --hero-max:    900px;
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--text);
  margin: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Typography ──────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.2;
  margin: 0 0 .5em;
  color: var(--navy);
  letter-spacing: .02em;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; }

h1.hero-title {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  text-transform: uppercase;
  letter-spacing: .04em;
  text-wrap: balance;
}

.tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--orange);
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ── Layout ──────────────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section rhythm (F-11) ───────────────────────────────────── */
.section {
  padding: 56px 0;
  /* F-11: max 700px desktop — enforced via padding discipline */
  /* max-height: var(--section-max); — NOT applied globally as overflow:hidden clips content */
  /* Instead: rely on compact padding + content density */
}

.section--hero {
  padding: 0;
  min-height: clamp(500px, 70vh, var(--hero-max));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.section--dark { background: var(--navy); color: var(--white); }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,.82); }

.section--cream { background: var(--cream-2); }
.section--white { background: var(--white); }

/* ── Header: "Headroom" behaviour ──────────────────────────────
   Default    → absolute (у потоці на самому верху сторінки, скролиться разом із вмістом)
   Pinned     → fixed, видимий (з'являється лише при скролі вгору далеко від топу)
   Unpinned   → fixed, зверху сховано (transform), виїжджає вверх коли юзер скролить вниз
   Near top   → повертається до absolute (у потік)
─────────────────────────────────────────────────────────────── */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
  will-change: transform, position;
}
/* Reserve viewport space so content does not jump under absolute header */
body.has-site-header {
  padding-top: 64px;
}
.site-header.is-pinned,
.site-header.is-unpinned {
  position: fixed;
  transition: transform 0.3s ease;
}
.site-header.is-pinned {
  transform: translateY(0);
}
.site-header.is-unpinned {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 16px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
}
.header-logo:hover { text-decoration: none; color: var(--white); }

.header-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--white);
  font-family: 'Inter', sans-serif;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav a {
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s;
}
.header-nav a:hover { color: var(--orange); text-decoration: none; }

/* 5-lang switcher (F-13) */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lang-switch a {
  color: rgba(255,255,255,.65);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 3px 6px;
  border-radius: 3px;
  text-decoration: none;
  transition: color .2s, background .2s;
}
.lang-switch a:hover,
.lang-switch a.active { color: var(--white); background: rgba(255,255,255,.15); }
.lang-switch .sep { color: rgba(255,255,255,.3); font-size: .65rem; }

/* Header phone links (F-7) */
.header-contacts {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-contacts a.phone-link {
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}
.header-contacts a.phone-link:hover { color: var(--orange); text-decoration: none; }

/* Header CTA (F-1) */
.btn-header-cta {
  background: var(--orange);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
}
.btn-header-cta:hover { background: var(--orange-deep); color: var(--white); text-decoration: none; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, transform .1s;
  border: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-deep); color: var(--white); }

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); color: var(--white); }

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: .78rem; }

/* ── Property Cards (F-3, F-16) ──────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .card-grid { grid-template-columns: 1fr; }
}

.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
}
.property-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.property-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--border-soft);
}

.property-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.property-card:hover .property-card__image img { transform: scale(1.04); }

.property-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 4px 10px;
  border-radius: 20px;
}

/* F-16 badge variants */
.badge--new {
  background: var(--badge-new-bg);
  color: var(--badge-new-tx);
}
.badge--secondary {
  background: var(--badge-sec-bg);
  color: var(--badge-sec-tx);
}
.badge--gold,
.badge.gold {
  background: var(--badge-gold-bg);
  color: var(--badge-gold-tx);
}

/* BLK-04: gold button variant */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(201,162,39,.25);
}
.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,162,39,.4);
}

/* BLK-04: chip component (moved from inline styles in catalog pages) */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text);
  font-size: .82rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, border-color .15s;
}
.chip:hover {
  background: var(--orange-soft);
  border-color: var(--orange);
}
.chip--active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.property-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  /* F-12: SVG replaced with inline emoji — no 404 risk */
}

.property-card__body {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.property-card__location {
  font-size: .75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}

.property-card__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.property-card__specs {
  display: flex;
  gap: 12px;
  font-size: .75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.property-card__price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.property-card__price .price-sqm {
  font-size: .8rem;
  font-weight: 400;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

.property-card__cta {
  margin-top: auto;
}

/* ── Trust 4-cards ───────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .trust-grid { grid-template-columns: 1fr; }
}

.trust-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.trust-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.trust-card__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy);
  margin-bottom: 8px;
}

.trust-card__text {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Filter bar (catalog) ────────────────────────────────────── */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 64px;
  z-index: 100;
}

.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  transition: all .2s;
}

.pill:hover { border-color: var(--orange); color: var(--orange); }
.pill.active { background: var(--orange); border-color: var(--orange); color: var(--white); }

.filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 14px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  color: var(--text);
}
.filter-toggle input[type="checkbox"] { accent-color: var(--orange); }

/* ── Gallery (property page) ─────────────────────────────────── */
.gallery-hero {
  position: relative;
  aspect-ratio: 16/9;
  max-height: 520px;
  overflow: hidden;
  background: var(--border-soft);
  border-radius: var(--radius-lg);
}

.gallery-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-counter {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,.55);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
}

.gallery-thumbs img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  scroll-snap-align: start;
  cursor: pointer;
  opacity: .7;
  transition: opacity .2s;
}
.gallery-thumbs img:hover,
.gallery-thumbs img.active { opacity: 1; }

/* ── Specs table (property page) ─────────────────────────────── */
.specs-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.specs-list li {
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: 12px 16px;
}

.specs-list .spec-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.specs-list .spec-value {
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
}

/* ── Testimonials ────────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--orange-soft);
  position: absolute;
  top: 8px;
  left: 20px;
  pointer-events: none;
}

.testimonial-card__text {
  padding-top: 20px;
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
}

.testimonial-card__author {
  margin-top: 16px;
  font-weight: 700;
  font-size: .85rem;
  color: var(--navy);
}

.testimonial-card__location {
  font-size: .75rem;
  color: var(--text-muted);
}

.stars { color: #f5a623; letter-spacing: 2px; font-size: .85rem; }

/* ── Process steps ───────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr; }
}

.process-step {
  text-align: center;
  padding: 24px 16px;
}

.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 14px;
}

.process-step__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
  margin-bottom: 8px;
}

.process-step__text {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.75);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .06em;
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
}
.footer-logo:hover { color: var(--orange); text-decoration: none; }

.footer-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--orange);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  margin-bottom: 8px;
}

.footer-contact-item a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
}
.footer-contact-item a:hover { color: var(--orange); text-decoration: none; }

.footer-col-title {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.4);
  margin-bottom: 14px;
}

.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav-list li + li { margin-top: 8px; }
.footer-nav-list a {
  color: rgba(255,255,255,.7);
  font-size: .83rem;
  text-decoration: none;
}
.footer-nav-list a:hover { color: var(--orange); text-decoration: none; }

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  color: rgba(255,255,255,.75);
  font-size: .75rem;
  text-decoration: none;
  transition: background .2s;
}
.footer-social a:hover { background: var(--orange); color: var(--white); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
}

.footer-bottom a {
  color: rgba(255,255,255,.5);
}
.footer-bottom a:hover { color: var(--orange); }

/* ── Floating bot widget (F-14) ──────────────────────────────── */
.floating-bot {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
}

.floating-bot__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(232,120,32,.45);
  transition: background .2s, transform .2s;
}
.floating-bot__btn:hover {
  background: var(--orange-deep);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
}

/* ── Breadcrumb ──────────────────────────────────────────────── */
.breadcrumb {
  font-size: .78rem;
  color: var(--text-muted);
  padding: 10px 0;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { margin: 0 6px; color: var(--border); }

/* ── Hero with overlay ───────────────────────────────────────── */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(26,43,74,.78) 0%, rgba(26,43,74,.45) 60%, rgba(26,43,74,.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.hero-content h1,
.hero-content h2 { color: var(--white); }

/* ── Section hero image placeholder ─────────────────────────── */
.img-placeholder {
  background: linear-gradient(135deg, var(--border-soft) 0%, var(--border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .75rem;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
}

/* ── Google Rating badge ─────────────────────────────────────── */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 8px 16px;
  box-shadow: var(--shadow-sm);
}

.rating-badge__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.rating-badge__label {
  font-size: .72rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ── FAQ accordion ───────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
  list-style: none;
  user-select: none;
}
.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--orange);
  flex-shrink: 0;
  margin-left: 12px;
}
details[open] .faq-question::after { content: '−'; }

.faq-answer {
  padding: 0 4px 16px;
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Benefits list ───────────────────────────────────────────── */
.benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: .88rem;
}
.benefits-list li:last-child { border-bottom: none; }
.benefits-list .benefit-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Contact cards ───────────────────────────────────────────── */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-card__icon {
  font-size: 2rem;
  margin-bottom: 4px;
}

.contact-card__title {
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy);
}

.contact-card__link {
  font-size: .9rem;
  color: var(--orange);
  font-weight: 500;
}

/* ── Page-nav wireframe strip ────────────────────────────────── */
.wf-page-nav {
  background: var(--navy-deep);
  padding: 10px 24px;
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.wf-page-nav a { color: rgba(255,255,255,.65); }
.wf-page-nav a:hover { color: var(--orange); }
.wf-page-nav .cur { color: var(--orange); font-weight: 600; }

/* ── Dev annotations ─────────────────────────────────────────── */
.dev-note {
  display: inline-block;
  background: #fff3cd;
  border: 1px solid #ffc107;
  color: #664d03;
  font-size: .7rem;
  font-family: 'Inter', monospace;
  padding: 2px 7px;
  border-radius: 4px;
  margin: 2px 0;
}

/* ── Responsive helpers ──────────────────────────────────────── */
.hide-mobile { display: block; }
.show-mobile { display: none !important; }

@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .show-mobile { display: block !important; }

  .section { padding: 40px 0; }

  h1 { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  h2 { font-size: clamp(1.3rem, 5vw, 1.8rem); }

  .header-inner { padding: 0 16px; }
  .header-nav { display: none; }
  .header-contacts { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .container { padding: 0 16px; }
  .container--narrow { padding: 0 16px; }
}

/* ── Vikki portrait block ────────────────────────────────────── */
.vikki-block {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--cream-2);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
}
@media (max-width: 640px) {
  .vikki-block { flex-direction: column; text-align: center; }
}

.vikki-block__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--orange);
}

.vikki-block__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.vikki-block__quote {
  font-style: italic;
  font-size: .9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── Location map placeholder ────────────────────────────────── */
.map-embed {
  width: 100%;
  height: 360px;
  border-radius: var(--radius-lg);
  border: 0;
  background: var(--border-soft);
}

/* ── Rassrochka info box ─────────────────────────────────────── */
.rassrochka-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}
.rassrochka-box h3 { color: var(--orange); margin-bottom: 12px; }
.rassrochka-box p { color: rgba(255,255,255,.82); font-size: .88rem; }

/* ── Utility classes ─────────────────────────────────────────── */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text-muted); }
.fw-bold { font-weight: 700; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ── Section max-height annotation comments
   F-11 compliance: each .section capped with inline comment
   Hero: ≤900px desktop / ≤1200px mobile
   Other: ≤700px desktop / ≤900px mobile
   Enforced via compact padding. Large images use aspect-ratio instead of fixed heights.
   ──────────────────────────────────────────────────────────── */

/* ═══════════════════════════════════════════════════════════
   EGOIST BRAND — watermark, hero-with-photo, card overlays
   ═══════════════════════════════════════════════════════════ */

/* Shared EGOIST watermark text */
.egoist-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.12);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(60px, 8vw, 140px);
  letter-spacing: 0.25em;
  pointer-events: none;
  user-select: none;
  text-transform: uppercase;
  z-index: 1;
}

/* Hero sections that carry both a bg photo and Vikki portrait */
.hero--with-photo {
  position: relative;
  overflow: hidden;
}
.hero--with-photo > * {
  position: relative;
  z-index: 2;
}

/* Card image wrapper — enables EGOIST watermark overlay per card */
.card-img-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.property-card:hover .card-img-wrap img { transform: scale(1.04); }

.card-img-wrap::after {
  content: 'EGOIST';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  letter-spacing: 0.2em;
  pointer-events: none;
  user-select: none;
}

/* Vikki photo — portrait frame with orange ring */
.vikki-portrait {
  position: relative;
  display: inline-block;
}
.vikki-portrait img,
.vikki-portrait .vikki-photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.vikki-portrait .egoist-watermark {
  font-size: clamp(24px, 4vw, 56px);
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.18);
  border-radius: 12px;
}

/* Vikki photo placeholder when real image unavailable */
.vikki-photo-placeholder {
  background: linear-gradient(150deg, #1a3558 0%, #2a4d7a 50%, #1a2b4a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: .72rem;
  font-family: 'Inter', sans-serif;
  text-align: center;
  padding: 20px;
  border: 2px dashed rgba(232, 120, 32, 0.5);
  border-radius: 12px;
}
.vikki-photo-placeholder span {
  font-size: 2.5rem;
  opacity: .6;
}

/* ── Hero 2-col layout: text (60%) + Vikki portrait (40%) ── */
.hero-layout-2col {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: center;
  width: 100%;
}
@media (max-width: 1024px) {
  .hero-layout-2col { grid-template-columns: 1fr 300px; gap: 28px; }
}
@media (max-width: 768px) {
  .hero-layout-2col { grid-template-columns: 1fr; }
  .hero-layout-2col .hero-portrait-col { display: none; }
}

/* ── CTA pulse animation ── */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 120, 32, 0.5); }
  50%       { box-shadow: 0 0 0 14px rgba(232, 120, 32, 0); }
}
.btn-pulse { animation: pulse 2.4s infinite; }

/* ── Rating badge (hero) ── */
.rating-badge--hero {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  padding: 5px 14px;
  color: #fff;
  font-size: .82rem;
}
.rating-badge--hero strong {
  color: #fff;
  font-weight: 700;
}

/* ── Lang switcher — dropdown style (F-13 fix) ── */
.lang-switcher {
  position: relative;
}
.lang-switcher .lang-current {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  transition: background .2s;
}
.lang-switcher .lang-current:hover { background: rgba(255,255,255,.2); }
.lang-switcher .lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--navy-deep);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  overflow: hidden;
  min-width: 160px;
  list-style: none;
  margin: 0;
  padding: 4px 0;
  z-index: 300;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.lang-switcher .lang-menu li a {
  display: block;
  padding: 9px 16px;
  color: rgba(255,255,255,.78);
  font-size: .8rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.lang-switcher .lang-menu li a:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
  text-decoration: none;
}
.lang-switcher:hover .lang-menu,
.lang-switcher:focus-within .lang-menu { display: block; }
.lang-switcher .lang-menu[hidden] { display: none; }

/* Phone links — prevent wrapping (F-7 fix) */
.phone-link {
  white-space: nowrap !important;
}

/* ── Trust cards glass (dark bg) ── */
.trust-card--glass {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.trust-card--glass .trust-card__title { color: #fff; }
.trust-card--glass .trust-card__text { color: rgba(255,255,255,.75); }

/* ═══ ICE H-01 hero inline micro-form ═══ */
.budget-chip {
  display: inline-block;
  padding: 10px 16px;
  background: rgba(232,120,32,.15);
  border: 1px solid rgba(232,120,32,.5);
  color: #fff;
  border-radius: 24px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .02em;
  text-decoration: none;
  transition: all .2s ease;
  white-space: nowrap;
}
.budget-chip:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-1px);
}
.budget-chip--muted {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
}
.budget-chip--muted:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.4);
}

/* ═══ Hero fix 2026-04-21: left-align + tight Vikki photo ═══ */
.hero-content {
  text-align: left !important;
  max-width: 620px;
}
.hero-layout-2col {
  align-items: start !important;
  padding-top: 40px;
  padding-bottom: 40px;
}
.vikki-portrait {
  height: auto !important;
  max-height: 560px;
  align-self: end;
}
.vikki-portrait img {
  height: auto !important;
  max-height: 560px;
  object-fit: contain !important;
  object-position: bottom !important;
}
/* allow USP subheading to NOT inherit uppercase */
.hero-content h1 + p { text-transform: none !important; }


/* ══════ CRO WIREFRAME BADGES (2026-04-22, moved from home.html) ══════ */
.cro-badge {
  position: sticky; top: 64px; z-index: 50;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 10px 16px;
  border-left: 4px solid;
  display: flex; align-items: center; gap: 10px;
  line-height: 1.4;
  margin: 0;
}
.cro-badge__type { flex-shrink: 0; font-size: .68rem; }
.cro-badge__text { font-weight: 500; text-transform: none; letter-spacing: normal; opacity: .95; }
.cro-badge code { background: rgba(0,0,0,.08); padding: 2px 6px; border-radius: 3px; font-size: .95em; }

.cro-badge--live    { background: #eaf3ff; color: #1a4b8c; border-color: #3b82f6; }
.cro-badge--changed { background: #fff8e1; color: #7a5800; border-color: #f59e0b; }
.cro-badge--new     { background: #e7f7ec; color: #1a6b3a; border-color: #10b981; }
.cro-badge--remove  { background: #fde8e8; color: #8c1a1a; border-color: #ef4444; }

body.cro-badges-hidden .cro-badge { display: none !important; }

/* Hide CRO dev-badges on mobile — they are internal annotations, not content */
@media (max-width: 768px) { .cro-badge { display: none !important; } }
@media print { .cro-badge { display: none !important; } }
/* ══════ END CRO BADGES ══════ */

/* ══════════════════════════════════════════════════════════════
   MOBILE HEADER + DRAWER (shared across all *-mobile.html pages)
   Moved from inline <style> in home-mobile.html — fixes
   about-mobile, catalog-map-mobile, sellers-mobile, upravlenie-mobile
   where drawer was rendering unstyled.
   ══════════════════════════════════════════════════════════════ */
.m-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy); color: #fff;
  padding: 10px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.m-header__logo img { height: 32px; filter: brightness(0) invert(1); display: block; }
.m-header__cta {
  background: transparent; color: #fff;
  border: 1.5px solid var(--orange);
  border-radius: 4px; padding: 8px 14px;
  font-size: .72rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; text-decoration: none; white-space: nowrap;
}
.m-header__lang {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 4px; padding: 6px 10px;
  font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  cursor: pointer;
}
.m-header__burger {
  background: none; border: none; padding: 6px;
  color: #fff; cursor: pointer; position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.4rem; line-height: 1;
}
.m-header__burger::after {
  content: ''; position: absolute; top: 3px; right: 3px;
  width: 6px; height: 6px; background: var(--orange); border-radius: 50%;
}

/* ═══ DRAWER ═══ */
.m-drawer {
  position: fixed; inset: 0;
  background: rgba(15,30,53,.96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .28s ease-out;
  overflow-y: auto; padding: 20px;
}
.m-drawer.open { transform: translateX(0); }
.m-drawer__close {
  position: absolute; top: 12px; right: 14px;
  background: none; border: none; color: #fff; font-size: 2rem;
  cursor: pointer; padding: 4px 10px; line-height: 1;
}
.m-drawer__vikki {
  display: flex; align-items: center; gap: 14px; margin: 44px 0 28px;
  padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.m-drawer__vikki-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg,#c8d8e4,#90b4c8);
  border: 2px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; color: #555; flex-shrink: 0;
}
.m-drawer__vikki-info p { color: #fff; font-size: .95rem; font-weight: 600; margin: 0; }
.m-drawer__vikki-info small { color: rgba(255,255,255,.6); font-size: .78rem; }
.m-drawer__nav a {
  display: block; color: #fff; text-decoration: none;
  font-size: 1.1rem; font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-transform: uppercase; letter-spacing: .04em;
}
.m-drawer__nav a.active { color: var(--orange); }
.m-drawer__cta-primary {
  display: block; width: 100%; background: var(--orange); color: #fff;
  text-align: center; padding: 14px; border-radius: 8px;
  font-weight: 700; font-size: .92rem;
  letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; margin: 20px 0 12px;
}
.m-drawer__phones a {
  display: flex; align-items: center; gap: 10px;
  color: #fff; text-decoration: none; padding: 10px 0; font-size: 1rem;
}
.m-drawer__socials {
  display: flex; gap: 12px; margin-top: 20px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.m-drawer__socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
}
.m-drawer__socials svg { fill: #fff; width: 18px; height: 18px; }
