/* ============================================================
   АЛЬТЕР-ЭГО — EDITORIAL DESIGN SYSTEM
   ============================================================ */

/* ===== VARIABLES ===== */
:root {
  /* Brand palette */
  --ink:        #0f0e0c;
  --paper:      #f5f2ec;
  --cream:      #ede8df;
  --gold:       #b8983a;
  --gold-light: #d4b45a;
  --gold-dim:   rgba(184,152,58,0.1);
  --muted:      #7a766e;
  --line:       #d4cfc5;

  /* Legacy aliases (used by existing HTML + JS + admin) */
  --navy:       #0f0e0c;
  --navy-deep:  #0a0908;
  --navy-mid:   #1c1b18;
  --bg:         #f5f2ec;
  --bg-white:   #f5f2ec;
  --bg-subtle:  #ede8df;
  --bg-warm:    #ede8df;
  --text:       #0f0e0c;
  --text-light: #7a766e;
  --border:     #d4cfc5;
  --shadow-sm:  0 1px 3px rgba(15,14,12,0.05);
  --shadow-md:  0 4px 14px rgba(15,14,12,0.08);
  --shadow-lg:  0 12px 36px rgba(15,14,12,0.14);
  --transition: 0.25s ease;

  /* Typography */
  --font-head:  'Cormorant Garamond', Georgia, serif;
  --font-body:  'Raleway', system-ui, sans-serif;
  --font-mono:  'IBM Plex Mono', 'Courier New', monospace;
  --font-serif: 'Cormorant Garamond', Georgia, serif;

  /* Dark surface text (on --ink background) */
  --on-dark-primary:   rgba(245,242,236,0.92);
  --on-dark-body:      rgba(245,242,236,0.75);
  --on-dark-secondary: rgba(245,242,236,0.60);
  --on-dark-muted:     rgba(245,242,236,0.40);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  font-kerning: normal;
  overflow-x: hidden;
}
@media (min-width: 769px) { body { font-size: 1.0625rem; } }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 400; line-height: 1.05; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: fixed; top: -100%; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: var(--paper); padding: 10px 24px;
  z-index: 10001; font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.1em; text-decoration: none; transition: top 0.2s ease;
  white-space: nowrap;
}
.skip-link:focus { top: 0; outline: 2px solid var(--gold); outline-offset: 2px; }

/* ===== UTILITIES ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section     { padding: 96px 0; }
.section-alt { background: var(--cream); }
.section-dark{ background: var(--ink); color: var(--on-dark-primary); }

/* Section eyebrow label */
.section-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* Section title (centered default) */
.section-title {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.05;
  color: var(--ink);
  text-align: center;
  margin-bottom: 0;
}
.section-dark .section-title { color: var(--on-dark-primary); }
.section-title em { font-style: italic; color: var(--gold); }

.section-subtitle {
  text-align: center; color: var(--muted);
  margin: 12px auto 52px; font-size: 0.9rem;
  max-width: 560px; line-height: 1.7; font-weight: 300;
}
.section-dark .section-subtitle { color: var(--on-dark-secondary); margin-bottom: 52px; }

/* Gold line — kept for HTML compatibility but invisible */
.gold-line { display: none; }
.gold-line-left { display: none; }

/* Editorial section header: label+title left, description right */
.section-header {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 48px; align-items: end; margin-bottom: 56px;
}
.section-header .section-title { text-align: left; }
.section-desc {
  font-size: 0.88rem; color: var(--muted); line-height: 1.7;
  max-width: 480px; align-self: end; font-weight: 300;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; border: 1px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  position: relative; overflow: hidden;
}
/* Primary/Navy/Gold: ink bg → gold on hover */
.btn-primary, .btn-navy, .btn-gold {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}
.btn-primary:hover, .btn-navy:hover, .btn-gold:hover {
  background: var(--gold); border-color: var(--gold); color: var(--paper);
}
/* Ghost/Outline: transparent → ink border */
.btn-ghost, .btn-outline {
  background: transparent; color: var(--ink); border-color: var(--line);
}
.btn-ghost:hover, .btn-outline:hover { border-color: var(--ink); }
/* Ghost on dark bg */
.section-dark .btn-outline, .cta-band .btn-outline,
.hero-right .btn-ghost, #hero .btn-ghost {
  color: var(--on-dark-primary); border-color: rgba(245,242,236,0.3);
}
.section-dark .btn-outline:hover, .cta-band .btn-outline:hover {
  background: var(--paper); color: var(--ink); border-color: var(--paper);
}

/* ===== GRID BACKGROUNDS (static, no animation) ===== */
.grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(184,152,58,0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,152,58,0.024) 1px, transparent 1px);
  background-size: 60px 60px;
}
.grid-bg-light {
  background-image:
    linear-gradient(rgba(212,207,197,0.49) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,207,197,0.49) 1px, transparent 1px);
  background-size: 60px 60px;
}
.grid-shimmer { display: none; }

/* ===== HEADER ===== */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(245,242,236,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition);
}
#header.scrolled { box-shadow: 0 2px 16px rgba(15,14,12,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }

/* Logo */
.logo { display: inline-flex; flex-direction: row; align-items: center; gap: 12px; line-height: 1; }
.logo-mark { width: 68px; height: 68px; object-fit: contain; flex-shrink: 0; display: block; }
@media (max-width: 768px) { .logo-mark { width: 44px; height: 44px; } }
.logo-text { display: flex; flex-direction: column; }
/* Footer logo (no .logo-text wrapper) */
footer .logo { flex-direction: column; align-items: flex-start; gap: 2px; }
.logo-name { font-family: var(--font-serif); font-style: italic; font-size: 1.25rem; font-weight: 400; color: var(--ink); letter-spacing: 0.01em; }
.logo-sub  { font-family: var(--font-mono); font-size: 0.52rem; color: var(--muted); letter-spacing: 0.3em; text-transform: uppercase; margin-top: 2px; }

/* Nav */
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-family: var(--font-mono); font-size: 0.74rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); transition: color var(--transition);
  position: relative;
}
.nav-links a::after { display: none; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.nav-active { color: var(--ink) !important; }
.nav-cta {
  padding: 8px 18px !important; border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--paper) !important; }

/* Header phone */
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--ink); text-decoration: none; letter-spacing: 0.05em; flex-shrink: 0;
}
.header-phone svg { display: none; width: 16px; height: 16px; flex-shrink: 0; }
.header-phone:hover { color: var(--gold); }

/* Burger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
  background: none; border: none; color: inherit; appearance: none;
}
.burger span { display: block; width: 24px; height: 1px; background: var(--ink); border-radius: 0; transition: transform var(--transition), opacity var(--transition); }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ===== HERO (SPLIT LAYOUT) ===== */
#hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }

.hero-left {
  background: var(--paper);
  padding: 152px 64px 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 0.58rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
}
.hero-badge::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }

.hero-title {
  font-family: var(--font-head); font-weight: 300;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 1.0; color: var(--ink); margin-bottom: 10px;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-sub { margin: 28px 0; border-left: 1px solid var(--gold); padding-left: 20px; }
.hero-subtitle {
  font-size: 0.9rem; color: var(--muted); line-height: 1.65;
  max-width: 400px; font-weight: 300; margin: 0;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 0; margin-top: 52px;
  padding-top: 32px; border-top: 1px solid var(--line);
}
.hero-stat { padding: 0 28px; border-right: 1px solid var(--line); }
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child  { border-right: none; padding-right: 0; }
.hero-stat-num   { font-family: var(--font-head); font-size: 2.4rem; font-weight: 300; color: var(--ink); line-height: 1; }
.hero-stat-label { font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.hero-scroll {
  position: absolute; bottom: 36px; left: 64px;
  display: flex; align-items: flex-end; gap: 10px;
  font-family: var(--font-mono); font-size: 0.52rem;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted);
}
.scroll-line {
  display: block; width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{ opacity:0.4; transform:scaleY(0.5) translateY(-6px); } 50%{ opacity:1; transform:scaleY(1) translateY(0); } }

/* Hero right panel */
.hero-right { background: var(--ink); position: relative; overflow: hidden; }
.hero-grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(184,152,58,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,152,58,0.028) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-deco-letter {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-head); font-size: 20rem; font-weight: 300;
  color: rgba(184,152,58,0.04); pointer-events: none; user-select: none; line-height: 1;
}
.hero-deco-lines { position: absolute; top: 56px; right: 56px; }
.hero-deco-lines span { display: block; height: 1px; background: rgba(184,152,58,0.25); margin-bottom: 8px; }
.hero-deco-lines span:nth-child(1) { width: 72px; }
.hero-deco-lines span:nth-child(2) { width: 40px; }
.hero-deco-lines span:nth-child(3) { width: 56px; }

.hero-quote { position: absolute; bottom: 48px; left: 48px; right: 48px; }
.hero-quote-mark {
  font-family: var(--font-head); font-size: 5rem; font-weight: 300;
  color: var(--gold); opacity: 0.3; line-height: 0.8; margin-bottom: 8px;
}
.hero-quote-text {
  font-family: var(--font-head); font-style: italic; font-size: 1.25rem;
  color: var(--on-dark-primary); line-height: 1.5; max-width: 340px; margin-bottom: 18px;
}
.hero-quote-attr {
  font-family: var(--font-mono); font-size: 0.54rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); opacity: 0.8;
}

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-image-wrap { position: relative; }
.about-img-box {
  width: 100%; height: 420px; overflow: hidden;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.about-img-box svg { width: 80px; height: 80px; color: rgba(184,152,58,0.12); }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: var(--paper);
  width: 120px; height: 120px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-head);
}
.about-badge-num  { font-size: 2.2rem; font-weight: 300; line-height: 1; }
.about-badge-text { font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 3px; }
.about-text .section-title { text-align: left; }
.about-features { display: flex; flex-direction: column; gap: 0; margin: 28px 0 32px; border-top: 1px solid var(--line); }
.about-feature { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.feature-icon { display: none; }
.feature-text strong { display: block; font-family: var(--font-head); font-size: 1rem; font-weight: 400; margin-bottom: 3px; }
.feature-text span   { font-size: 0.84rem; color: var(--muted); font-weight: 300; }
.about-teaser-text { color: var(--muted); margin-bottom: 24px; font-weight: 300; line-height: 1.75; }

/* ===== SERVICES (HOME GRID) ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--line); counter-reset: practice;
  position: relative; z-index: 1;
}
.service-card {
  background: var(--paper); padding: 40px 32px;
  transition: background var(--transition);
  position: relative; overflow: hidden;
  counter-increment: practice; border: none;
}
.service-card::before {
  content: counter(practice, decimal-leading-zero);
  font-family: var(--font-mono); font-size: 0.58rem;
  color: var(--gold); letter-spacing: 0.2em; display: block; margin-bottom: 20px;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { background: var(--cream); transform: none; border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { display: none; }
.service-card h3 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 400; color: var(--ink); margin-bottom: 12px; }
.service-card p  { color: var(--muted); font-size: 0.84rem; margin: 0; line-height: 1.65; font-weight: 300; }
.service-arrow {
  display: block; margin-top: 18px;
  font-family: var(--font-mono); font-size: 0.56rem;
  color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase;
  opacity: 0; transition: opacity var(--transition);
}
.service-card:hover .service-arrow { opacity: 1; }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; position: relative; z-index: 1; }
.lawyer-card {
  background: transparent; border: none;
  transition: opacity var(--transition);
}
.lawyer-card:hover { opacity: 0.85; transform: none; border-color: transparent; }
.lawyer-photo {
  position: relative;
  height: 0; padding-bottom: 130%;
  background: var(--navy-mid);
  overflow: hidden; margin-bottom: 18px;
  border-bottom: none;
}
.lawyer-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lawyer-photo-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(184,152,58,0.12);
}
.lawyer-photo-placeholder svg { width: 60px; height: 60px; }
.lawyer-info { padding: 0; }
.lawyer-info h3    { font-family: var(--font-head); font-size: 1.45rem; font-weight: 400; color: var(--on-dark-primary); margin-bottom: 4px; line-height: 1.15; }
.lawyer-spec       { font-family: var(--font-mono); color: var(--gold); font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 10px; font-weight: 400; }
.lawyer-exp        { color: var(--on-dark-secondary); font-size: 0.8rem; display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-weight: 300; }
.lawyer-exp::before{ content: ''; display: inline-block; width: 16px; height: 1px; background: var(--gold); flex-shrink: 0; }
.lawyer-reg        { font-family: var(--font-mono); font-size: 0.56rem; color: rgba(245,242,236,0.2); margin-top: 6px; letter-spacing: 0.1em; }
.lawyer-palata     { font-family: var(--font-mono); font-size: 0.56rem; color: var(--gold); margin-top: 2px; opacity: 0.7; }

/* ===== ARTICLES (MAIN PAGE + ARTICLES PAGE) ===== */
.articles-more { text-align: center; margin-top: 48px; }
.articles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line); align-items: start;
}
.article-card {
  background: var(--paper); padding: 32px 28px;
  transition: background 0.3s ease; clip-path: none;
  border: none; opacity: 0; transform: translateY(8px);
}
.article-card:hover { background: var(--cream); }

.article-category {
  font-family: var(--font-mono); font-size: 0.56rem; font-weight: 400;
  color: var(--gold); text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 14px;
}
.article-card h3 {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 400;
  color: var(--ink); margin: 0 0 12px 0; line-height: 1.2;
}
.article-date {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.58rem;
  color: var(--muted); margin-bottom: 14px; letter-spacing: 0.05em;
}
.article-reading-time {
  font-family: var(--font-mono); font-size: 0.56rem; font-weight: 400;
  color: var(--gold); letter-spacing: 0.05em;
  border-left: 1px solid var(--line); padding-left: 10px; white-space: nowrap;
}
.article-excerpt {
  font-family: var(--font-body); font-size: 0.88rem; color: var(--muted);
  line-height: 1.65; margin-bottom: 18px; font-weight: 300;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.read-more {
  font-family: var(--font-mono); font-size: 0.58rem; font-weight: 400;
  color: var(--ink); letter-spacing: 0.15em; text-transform: uppercase;
  border-bottom: 1px solid var(--gold); padding-bottom: 2px;
  display: inline-block; transition: color 0.2s, border-bottom-color 0.2s;
}
.read-more:hover { color: var(--gold); border-bottom-color: var(--ink); }

/* Cat badge */
.cat-badge {
  display: inline-block; padding: 3px 10px;
  font-family: var(--font-mono); font-size: 0.56rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(15,14,12,0.06); color: var(--ink);
  backdrop-filter: none;
}

/* ===== ARTICLES PAGE ===== */
.articles-page-hero {
  background: var(--ink); padding: 112px 0 60px; position: relative; overflow: hidden;
}
.articles-page-hero .hero-base { opacity: 0.6; }
.articles-page-hero h1 { font-family: var(--font-head); font-style: italic; color: var(--on-dark-primary); font-size: clamp(2rem,3.5vw,3.5rem); position: relative; z-index: 2; }
.articles-page-hero p  { color: var(--on-dark-secondary); margin-top: 10px; position: relative; z-index: 2; font-weight: 300; }

.category-filter { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 40px; }
.cat-btn {
  padding: 8px 16px;
  font-family: var(--font-mono); font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; border: 1px solid var(--line);
  background: transparent; color: var(--muted);
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.cat-btn:hover { border-color: var(--ink); color: var(--ink); }
.cat-btn.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.pagination { display: flex; gap: 4px; justify-content: center; margin-top: 48px; }
.page-btn {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 400;
  cursor: pointer; border: 1px solid var(--line); background: transparent; color: var(--muted);
  transition: all var(--transition); position: relative; overflow: hidden;
}
.page-btn:hover { border-color: var(--ink); color: var(--ink); }
.page-btn.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.page-btn:disabled { opacity: 0.35; cursor: not-allowed; }

/* ===== ARTICLE MODAL ===== */
.article-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(15,14,12,0.75); backdrop-filter: blur(6px);
  align-items: flex-start; justify-content: center; padding: 80px 16px 40px; overflow-y: auto;
}
.article-modal-overlay.open { display: flex; }
.article-modal-box {
  background: var(--paper); width: 100%; max-width: 720px;
  box-shadow: var(--shadow-lg); animation: modalIn 0.25s ease;
}
@keyframes modalIn { from{opacity:0;transform:translateY(-12px);} to{opacity:1;transform:translateY(0);} }
.article-modal-header {
  padding: 24px 28px; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
}
.article-modal-header h2 { font-family: var(--font-head); font-size: 1.5rem; color: var(--ink); flex: 1; font-weight: 400; }
.modal-close-btn {
  width: 34px; height: 34px; border: 1px solid var(--line);
  background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 1rem; flex-shrink: 0;
  transition: all var(--transition);
}
.modal-close-btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.article-modal-meta {
  padding: 14px 28px; background: var(--cream);
  border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 12px;
}
.article-modal-body {
  padding: 28px; font-size: 0.95rem; line-height: 1.85;
  color: var(--ink); font-weight: 300;
}
.article-modal-body p { margin-bottom: 1.1rem; }

/* ===== CONTACTS ===== */
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contacts-info h3 { font-family: var(--font-head); color: var(--ink); margin-bottom: 28px; font-weight: 400; }
.contact-item { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.contact-icon {
  width: 40px; height: 40px; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold);
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-label {
  font-family: var(--font-mono); font-size: 0.56rem; color: var(--muted);
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 3px;
}
.contact-value { font-weight: 400; color: var(--ink); font-size: 0.95rem; }
.contact-value a:hover { color: var(--gold); }
.map-placeholder {
  margin-top: 24px; height: 180px; background: var(--cream); border: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--muted); font-family: var(--font-mono); font-size: 0.72rem; gap: 8px;
  letter-spacing: 0.1em;
}
.map-placeholder svg { width: 26px; height: 26px; color: var(--gold); }

/* Contact form */
.contact-form h3 { font-family: var(--font-head); color: var(--ink); margin-bottom: 28px; font-weight: 400; font-size: 1.5rem; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-family: var(--font-mono); font-size: 0.62rem; font-weight: 400;
  color: var(--ink); margin-bottom: 6px; letter-spacing: 0.1em; text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 11px 14px; border: 1px solid var(--line);
  background: var(--paper); font-family: var(--font-body); font-size: 0.88rem;
  color: var(--ink); font-weight: 300;
  transition: border-color var(--transition); outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-error { display: none; font-family: var(--font-mono); font-size: 0.62rem; color: #c0392b; margin-top: 4px; line-height: 1.4; }
.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"],
.form-group select[aria-invalid="true"] { border-color: #e74c3c; }

.consent-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
.consent-row input[type="checkbox"] { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; accent-color: var(--ink); cursor: pointer; }
.consent-row label { font-size: 0.82rem; color: var(--muted); line-height: 1.55; cursor: pointer; font-weight: 300; }
.consent-row a { color: var(--gold); text-decoration: underline; }

.disclaimer {
  background: var(--cream); border: 1px solid var(--line);
  padding: 14px 18px; font-size: 0.82rem; color: var(--muted); line-height: 1.6;
  margin-bottom: 18px; display: flex; gap: 10px; align-items: flex-start; font-weight: 300;
}
.disclaimer svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 1px; }

/* ===== FOOTER ===== */
footer {
  background: var(--paper); color: var(--muted);
  padding: 48px 0 28px; border-top: 1px solid var(--line);
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 36px; }
.footer-brand .logo-name { font-size: 1.1rem; }
.footer-brand p { font-family: var(--font-body); font-size: 0.82rem; max-width: 300px; line-height: 1.65; font-weight: 300; margin-top: 12px; }
.footer-nav h4 {
  font-family: var(--font-mono); color: var(--ink); font-size: 0.58rem;
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px; font-weight: 400;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { font-family: var(--font-body); font-size: 0.84rem; transition: color var(--transition); font-weight: 300; }
.footer-nav a:hover { color: var(--gold); }

.footer-legal { border-top: 1px solid var(--line); padding-top: 24px; margin-top: 0; }
.footer-legal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px 32px; margin-bottom: 16px; }
.legal-item { font-family: var(--font-body); font-size: 0.76rem; color: var(--muted); line-height: 1.5; font-weight: 300; }
.legal-item strong {
  font-family: var(--font-mono); color: var(--ink); display: block; margin-bottom: 1px;
  font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400;
}
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 16px; margin-top: 16px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.05em;
}
.footer-disclaimer { font-family: var(--font-mono); font-size: 0.62rem; color: var(--muted); max-width: 560px; line-height: 1.5; }
.social-links { display: flex; gap: 8px; }
.social-link {
  width: 32px; height: 32px; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; font-size: 0.75rem;
  transition: border-color var(--transition), color var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ===== SUCCESS MODAL ===== */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(15,14,12,0.6); backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal { background: var(--paper); padding: 40px; max-width: 460px; width: 90%; position: relative; animation: modalIn 0.25s ease; }
.modal-close { position: absolute; top: 14px; right: 18px; font-size: 1.2rem; cursor: pointer; color: var(--muted); }
.modal h3 { font-family: var(--font-head); margin-bottom: 16px; color: var(--ink); font-weight: 400; font-size: 1.4rem; }

/* ===== PRIVACY PAGE ===== */
.privacy-hero { background: var(--ink); padding: 122px 0 60px; position: relative; overflow: hidden; }
.privacy-hero h1 { font-family: var(--font-head); font-style: italic; color: var(--on-dark-primary); font-size: clamp(1.8rem,3vw,2.6rem); position: relative; z-index: 2; }
.privacy-hero p { color: var(--on-dark-secondary); margin-top: 10px; position: relative; z-index: 2; font-weight: 300; }
.privacy-content { max-width: 820px; margin: 0 auto; padding: 64px 24px 80px; }
.privacy-content h2 { font-family: var(--font-head); font-size: 1.25rem; color: var(--ink); margin: 36px 0 14px; padding-top: 36px; border-top: 1px solid var(--line); font-weight: 400; }
.privacy-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.privacy-content p,
.privacy-content li { color: var(--muted); font-size: 0.92rem; line-height: 1.8; font-weight: 300; }
.privacy-content ul { margin: 10px 0 16px 20px; list-style: disc; }
.privacy-content li { margin-bottom: 6px; }
.privacy-content strong { color: var(--ink); }
.privacy-updated {
  background: var(--cream); border: 1px solid var(--line); padding: 12px 18px;
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted); margin-bottom: 32px; letter-spacing: 0.05em;
}

/* ===== SCROLL ANIMATION ===== */
.fade-up { opacity: 1; transform: none; }

/* ===== TESTIMONIALS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(245,242,236,0.05); margin-top: 40px; }
.review-card {
  background: rgba(245,242,236,0.03); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background var(--transition); border: none;
}
.review-card:hover { background: rgba(245,242,236,0.07); }
.review-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 3px; }
.review-text  { color: var(--on-dark-body); font-family: var(--font-head); font-style: italic; font-size: 1rem; line-height: 1.75; flex: 1; font-weight: 400; }
.review-author { border-top: 1px solid rgba(245,242,236,0.08); padding-top: 14px; }
.review-name { color: var(--on-dark-primary); font-weight: 400; font-size: 0.87rem; }
.review-case { font-family: var(--font-mono); color: var(--gold); font-size: 0.56rem; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 3px; }

/* ===== AFTER-CONTACT STEPS ===== */
.after-contact-wrap { padding: 36px 0 0; }
.after-contact-intro { text-align: center; margin-bottom: 20px; }
.after-contact-intro h3 { font-family: var(--font-head); font-size: 1.2rem; color: var(--ink); margin-bottom: 6px; font-weight: 400; }
.after-contact-intro p  { font-size: 0.87rem; color: var(--muted); font-weight: 300; }
.after-contact-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.after-step { display: flex; align-items: flex-start; gap: 12px; padding: 16px 14px; border: 1px solid var(--line); }
.after-step-num {
  width: 26px; height: 26px; flex-shrink: 0; background: var(--ink); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 400;
}
.after-step-text { font-size: 0.82rem; color: var(--ink); line-height: 1.45; font-weight: 300; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs-bar { background: var(--cream); border-bottom: 1px solid var(--line); padding: 10px 0; }
.breadcrumbs {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.08em; flex-wrap: wrap;
}
.breadcrumbs a { color: var(--muted); transition: color var(--transition); }
.breadcrumbs a:hover { color: var(--gold); }
.bc-sep  { color: var(--line); line-height: 1; }
.bc-current { color: var(--ink); font-weight: 400; }

/* ===== PAGE HERO (inner pages — dark) ===== */
.page-hero { background: var(--ink); padding: 128px 0 56px; position: relative; overflow: hidden; }
.hero-base { position: absolute; inset: 0; background: var(--ink); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-head); font-style: italic; color: var(--on-dark-primary);
  font-size: clamp(1.8rem, 3.5vw, 3rem); margin-bottom: 10px; letter-spacing: -0.01em;
}
.page-hero p { color: var(--on-dark-secondary); font-size: 0.9rem; font-weight: 300; }
.page-hero .hero-badge { color: var(--gold); margin-bottom: 16px; position: relative; z-index: 2; }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--ink); padding: 80px 0;
  position: relative; overflow: hidden; text-align: center;
}
.cta-band::before {
  content: 'АЭ'; position: absolute; right: -40px; top: -60px;
  font-family: var(--font-head); font-size: 18rem; font-weight: 300;
  color: rgba(184,152,58,0.04); pointer-events: none; user-select: none; line-height: 1;
}
.cta-band h2  { color: var(--on-dark-primary); margin-bottom: 14px; }
.cta-band p   { color: var(--on-dark-secondary); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; font-weight: 300; }
.cta-band .btn { margin: 0 6px; }

/* ===== ABOUT PAGE ===== */
.about-full-text { color: var(--muted); font-size: 1rem; line-height: 1.8; margin-bottom: 20px; font-weight: 300; }
.about-full-text strong { color: var(--ink); }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 48px; }
.value-card {
  background: none; border: none; border-top: 1px solid var(--line);
  padding: 28px 40px 28px 0; transition: border-top-color var(--transition);
}
.value-card:nth-child(odd)  { border-right: 1px solid var(--line); }
.value-card:nth-child(even) { padding-left: 40px; padding-right: 0; }
.value-card:hover { transform: none; border-top-color: var(--gold); }
.value-card .value-icon { display: none; }
.value-card h3 { font-family: var(--font-head); color: var(--ink); margin-bottom: 10px; font-size: 1.2rem; font-weight: 400; }
.value-card p  { color: var(--muted); font-size: 0.88rem; margin: 0; line-height: 1.65; font-weight: 300; }

.requisites-card { background: var(--ink); padding: 36px 40px; position: relative; overflow: hidden; }
.requisites-card .grid-bg { opacity: 0.5; }
.requisites-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 1; }
.req-item strong { display: block; font-family: var(--font-mono); font-size: 0.56rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.req-item span   { color: var(--on-dark-body); font-size: 0.88rem; font-weight: 300; }

/* ===== SERVICES PAGE ===== */
.services-full-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line); counter-reset: practice;
}
.service-full-card {
  background: var(--paper); padding: 36px 32px;
  display: flex; flex-direction: column; gap: 0;
  transition: background var(--transition);
  position: relative; counter-increment: practice; overflow: hidden;
}
.service-full-card::before {
  content: counter(practice, decimal-leading-zero);
  font-family: var(--font-mono); font-size: 0.58rem;
  color: var(--gold); letter-spacing: 0.2em; display: block; margin-bottom: 20px;
}
.service-full-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-full-card:hover { background: var(--cream); transform: none; border-color: transparent; }
.service-full-card:hover::after { transform: scaleX(1); }
.service-full-icon { display: none; }
.service-full-body h3  { font-family: var(--font-head); color: var(--ink); margin-bottom: 12px; font-size: 1.5rem; font-weight: 400; }
.service-full-body p   { color: var(--muted); font-size: 0.88rem; margin: 0; line-height: 1.65; font-weight: 300; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.service-tag  {
  font-family: var(--font-mono); font-size: 0.56rem; padding: 4px 10px;
  background: transparent; color: var(--muted); border: 1px solid var(--line);
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* Process steps */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step { padding: 32px 28px; border-left: 1px solid var(--line); position: relative; }
.step:first-child { border-left: none; }
.step-num { font-family: var(--font-head); font-size: 2.8rem; font-weight: 300; color: var(--gold); opacity: 0.2; line-height: 1; margin-bottom: 14px; }
.step h4  { font-family: var(--font-head); color: var(--ink); margin-bottom: 8px; font-size: 1.1rem; font-weight: 400; }
.step p   { color: var(--muted); font-size: 0.85rem; margin: 0; line-height: 1.65; font-weight: 300; }

/* ===== TEAM PAGE ===== */
.team-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.lawyer-full-card { background: transparent; border: none; overflow: visible; transition: opacity var(--transition); }
.lawyer-full-card:hover { transform: none; border-color: transparent; opacity: 0.85; }
.lawyer-full-photo {
  height: 0; padding-bottom: 130%; background: var(--ink);
  position: relative; overflow: hidden; display: block; margin-bottom: 20px;
}
.lawyer-full-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lawyer-full-photo svg { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 64px; height: 64px; color: rgba(184,152,58,0.1); }
.lawyer-full-info { padding: 0; }
.lawyer-full-info h3     { font-family: var(--font-head); color: var(--ink); margin-bottom: 4px; font-size: 1.5rem; font-weight: 400; line-height: 1.15; }
.lawyer-full-spec        { font-family: var(--font-mono); color: var(--gold); font-size: 0.58rem; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 12px; }
.lawyer-full-bio         { color: var(--muted); font-size: 0.86rem; line-height: 1.65; margin-bottom: 14px; font-weight: 300; }
.lawyer-full-meta        { display: flex; flex-direction: column; gap: 4px; padding-top: 14px; border-top: 1px solid var(--line); }
.lawyer-full-meta span   { font-family: var(--font-body); font-size: 0.76rem; color: var(--muted); font-weight: 300; }
.lawyer-full-meta strong { font-family: var(--font-mono); color: var(--ink); font-size: 0.62rem; margin-right: 4px; font-weight: 400; letter-spacing: 0.08em; }

/* ===== CONTACT PAGE ===== */
.contact-page-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; }
.contact-info-block h2 { font-family: var(--font-head); color: var(--ink); margin-bottom: 28px; font-size: 1.6rem; font-weight: 400; }
.contact-alt { display: flex; flex-direction: column; gap: 8px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
.contact-alt a { font-family: var(--font-body); font-size: 0.88rem; color: var(--muted); display: flex; align-items: center; gap: 8px; transition: color var(--transition); font-weight: 300; }
.contact-alt a:hover { color: var(--gold); }
.contact-alt svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ===== HEADER PHONE — mobile adaptation ===== */
@media (max-width: 768px) {
  .header-phone {
    padding: 10px; min-width: 44px; min-height: 44px;
    justify-content: center; border: 1px solid var(--line);
  }
  .header-phone-text { display: none; }
  .header-phone svg { display: block; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-legal-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .requisites-grid { grid-template-columns: repeat(2, 1fr); }
  .services-full-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .team-full-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-page-grid { grid-template-columns: 1fr; gap: 40px; }
  .section-header { grid-template-columns: 1fr; gap: 12px; }
  .hero-stat { padding: 0 18px; }
}

@media (max-width: 900px) {
  /* Hero splits to single column */
  #hero { grid-template-columns: 1fr; }
  .hero-left { padding: 120px 40px 64px; justify-content: flex-start; }
  .hero-right { min-height: 280px; }
  .hero-deco-letter { font-size: 10rem; }
  .hero-scroll { left: 40px; }
}

/* Desktop: скрываем mobile-only элементы */
.hero-call-btn        { display: none; }
.nav-phone-drawer     { display: none; }
.contact-call-mobile  { display: none; }

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 52px 0; }
  .section-subtitle { margin-bottom: 28px; font-size: 0.9rem; }
  .section-dark .section-subtitle { margin-bottom: 28px; }

  /* Sidebar nav */
  .nav-links {
    display: flex; flex-direction: column; align-items: flex-start;
    position: fixed; left: 0; top: 0;
    height: 100dvh; width: 260px;
    background: var(--paper); border-right: 1px solid var(--line);
    padding: 88px 0 32px; gap: 0; z-index: 999; overflow-y: auto;
    transform: translateX(-260px); transition: transform 0.3s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    width: 100%; padding: 16px 28px;
    border-bottom: 1px solid var(--line); font-size: 0.72rem; display: block; color: var(--muted);
  }
  .nav-cta { margin-top: 8px; border-bottom: none !important; text-align: center; }
  .burger { display: flex; padding: 10px 4px; }

  .services-grid  { grid-template-columns: 1fr; }
  .team-grid      { grid-template-columns: 1fr; }
  .articles-grid  { grid-template-columns: 1fr; }
  .contacts-grid  { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats     { flex-wrap: wrap; gap: 16px; }
  .hero-stat      { flex: 1 1 calc(50% - 8px); padding: 0; border-right: none; }
  .form-row       { grid-template-columns: 1fr; }
  .footer-inner   { grid-template-columns: 1fr; gap: 24px; }
  .footer-legal-grid { grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .about-badge    { right: 0; }
  .values-grid { margin-top: 24px; }
  .value-card { padding: 22px 0; border-right: none !important; }
  .value-card:nth-child(even) { padding-left: 0; }

  .hero-left { padding: 104px 24px 52px; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .hero-sub { margin: 20px 0; }
  .hero-stats { margin-top: 32px; padding-top: 24px; }
  .hero-scroll { left: 24px; bottom: 28px; }
  .hero-right { min-height: 200px; }
  .hero-quote { bottom: 24px; left: 24px; right: 24px; }
  .hero-quote-text { font-size: 1rem; }
  .hero-deco-letter { font-size: 7rem; }

  .btn { min-height: 44px; padding: 12px 22px; }
  .nav-cta { padding: 13px 22px !important; min-height: 44px !important; display: flex !important; align-items: center; justify-content: center; }

  .cta-band { padding: 52px 0; }
  .cta-band::before { display: none; }
  .cta-band .btn { margin: 6px auto !important; display: flex; width: fit-content; }

  .about-img-box { height: 220px; }
  .about-badge { width: 80px; height: 80px; bottom: -12px; }
  .about-badge-num { font-size: 1.6rem; }
  .about-badge-text { font-size: 0.48rem; }

  .page-hero { padding: 92px 0 36px; }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .articles-page-hero { padding: 88px 0 36px; }
  .privacy-hero { padding: 88px 0 40px; }
  .privacy-content { padding: 36px 0 56px; }
  .requisites-card { padding: 22px 16px; }
  .service-full-card { padding: 24px 20px; }
  .step { padding: 20px 0; }
  .steps-grid .step { border-left: none; border-top: 1px solid var(--line); }
  .steps-grid .step:first-child { border-top: none; }
  .team-full-grid { grid-template-columns: 1fr; }
  .contact-page-grid { gap: 28px; }
  .contact-info-block h2 { font-size: 1.3rem; }
  .article-modal-overlay { padding: 72px 10px 20px; }
  .article-modal-header { padding: 16px; }
  .article-modal-body { padding: 18px 16px; }
  .article-modal-meta { padding: 12px 16px; }
  footer { padding: 40px 0 20px; }
  .after-contact-steps { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  html, body { overflow-x: hidden; }

  /* ============================================================
     MOBILE UX — юридическая сфера
     ============================================================ */

  /* 1. Hero: скрываем декор-панель до минимума, убираем скролл-хинт */
  .hero-right  { min-height: 140px; }
  .hero-scroll { display: none; }

  /* 2. Hero-actions: строго вертикальный стек, каждая кнопка полная ширина */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-actions .btn { justify-content: center; width: 100%; }

  /* 3. Кнопка "Позвонить" (mobile-only) — золотая, первый CTA */
  .hero-call-btn {
    display: flex; justify-content: center;
    background: var(--gold); border-color: var(--gold); color: var(--paper);
    font-size: 0.72rem; letter-spacing: 0.15em;
    min-height: 52px; padding: 14px 22px;
    order: -1;
  }
  .hero-call-btn:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--paper); }

  /* 4. Телефон в ящике навигации */
  .nav-phone-drawer {
    display: flex; align-items: center; gap: 10px;
    width: 100%; padding: 18px 28px;
    font-family: var(--font-mono); font-size: 0.82rem;
    color: var(--gold); letter-spacing: 0.05em;
    border-top: 2px solid var(--gold);
    margin-top: 8px;
  }
  .nav-phone-drawer svg { width: 15px; height: 15px; flex-shrink: 0; }

  /* 5. Навигационные ссылки: читаемый размер */
  .nav-links a { font-size: 0.88rem; padding: 18px 28px; letter-spacing: 0.12em; }

  /* 6. Кнопки: чуть больше текст */
  .btn { font-size: 0.7rem; letter-spacing: 0.15em; }
  .nav-cta { padding: 14px 22px !important; font-size: 0.72rem !important; }

  /* 7. Лейблы/метаданные: минимум ~11px */
  .section-label          { font-size: 0.68rem; letter-spacing: 0.22em; }
  .hero-badge             { font-size: 0.64rem; letter-spacing: 0.2em; }
  .hero-stat-label        { font-size: 0.62rem; letter-spacing: 0.1em; }
  .article-category       { font-size: 0.64rem; }
  .article-date           { font-size: 0.64rem; }
  .article-reading-time   { font-size: 0.62rem; }
  .read-more              { font-size: 0.66rem; letter-spacing: 0.12em; }
  .lawyer-spec            { font-size: 0.68rem; letter-spacing: 0.14em; }
  .lawyer-reg             { font-size: 0.64rem; color: rgba(245,242,236,0.4); }
  .lawyer-palata          { font-size: 0.64rem; }
  .breadcrumbs            { font-size: 0.68rem; }
  .contact-label          { font-size: 0.64rem; }
  .service-tag            { font-size: 0.62rem; }
  .cat-btn                { font-size: 0.64rem; padding: 10px 14px; }
  .req-item strong        { font-size: 0.62rem; }
  .footer-disclaimer      { font-size: 0.68rem; }
  .legal-item strong      { font-size: 0.66rem; }
  .legal-item             { font-size: 0.8rem; }

  /* 8. Стрелки карточек: всегда видимы на touch (нет hover) */
  .service-card .service-arrow,
  .service-full-card .service-arrow { opacity: 0.85; }

  /* 9. Страница контактов: большая кнопка звонка */
  .contact-call-mobile {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 16px; margin-bottom: 24px;
    background: var(--gold); color: var(--paper);
    font-family: var(--font-mono); font-size: 0.8rem;
    letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
    border: none;
  }
  .contact-call-mobile svg { width: 16px; height: 16px; }
  /* Скрыта на десктопе — объявлена выше */
  .contact-call-mobile { display: flex; } /* override: показать на мобиле */
}

/* Mobile nav overlay */
@media (max-width: 768px) {
  body::before {
    content: ''; position: fixed; inset: 0; z-index: 998;
    background: rgba(15,14,12,0.55);
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
  }
  body.nav-open::before { opacity: 1; pointer-events: auto; }
  body.nav-open { overflow: hidden; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .grid-bg, .scroll-line { animation: none !important; }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .section { padding: 72px 0; }
  .section-subtitle { margin-bottom: 40px; }
  .page-hero { padding: 104px 0 48px; }
  .hero-stat { padding: 0 16px; }
}

/* Prevent horizontal scroll */
html, body { overflow-x: hidden; }

/* ============================================================
   PAGE LOADER — Весы Фемиды
   ============================================================ */
#pageLoader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.55s ease;
}
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.loader-scales {
  width: 120px; height: 120px; color: var(--gold);
  filter: drop-shadow(0 0 14px rgba(184,152,58,0.2));
}
.loader-beam {
  transform-box: view-box; transform-origin: 50% 30%;
  animation: scaleRock 2s linear 0.1s 1 both;
}
@keyframes scaleRock {
  0%   { transform: rotate(-13deg); animation-timing-function: cubic-bezier(0.37,0,0.63,1); }
  26%  { transform: rotate(9.5deg); animation-timing-function: cubic-bezier(0.37,0,0.63,1); }
  48%  { transform: rotate(-5.5deg); animation-timing-function: cubic-bezier(0.37,0,0.63,1); }
  66%  { transform: rotate(3deg);  animation-timing-function: cubic-bezier(0.37,0,0.63,1); }
  80%  { transform: rotate(-1.2deg); animation-timing-function: cubic-bezier(0.37,0,0.63,1); }
  91%  { transform: rotate(0.5deg); animation-timing-function: ease-out; }
  100% { transform: rotate(0deg); }
}
.loader-brand { text-align: center; animation: loaderFadeUp 0.6s ease 0.35s both; }
.loader-brand-name { display: block; font-family: var(--font-head); font-style: italic; font-size: 1.4rem; color: var(--ink); letter-spacing: 0.04em; }
.loader-brand-sub  { display: block; font-family: var(--font-mono); font-size: 0.52rem; color: var(--gold); letter-spacing: 0.25em; text-transform: uppercase; margin-top: 6px; }
.loader-line {
  width: 36px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5; animation: loaderFadeUp 0.5s ease 0.55s both;
}
@keyframes loaderFadeUp { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 480px) {
  .loader-scales { width: 90px; height: 90px; }
  .loader-brand-name { font-size: 1.1rem; }
}

/* ============================================================
   RIPPLE EFFECT
   ============================================================ */
.cat-btn, .page-btn { position: relative; overflow: hidden; }
.ripple {
  position: absolute; border-radius: 50%; width: 0; height: 0;
  background: rgba(255,255,255,0.18); transform: translate(-50%, -50%);
  animation: rippleEffect 0.65s ease-out forwards; pointer-events: none;
}
.btn-primary .ripple, .btn-navy .ripple, .btn-gold .ripple { background: rgba(245,242,236,0.15); }
@keyframes rippleEffect { from { width: 0; height: 0; opacity: 0.6; } to { width: 300px; height: 300px; opacity: 0; } }

/* ============================================================
   GRID PARALLAX hook
   ============================================================ */
.grid-bg[data-parallax] { transition: none; }

/* ============================================================
   ARTICLES PAGE background
   ============================================================ */
#articlesPage { background: var(--cream); }

/* ============================================================
   ARTICLE STATIC PAGE
   ============================================================ */
.article-full-body { font-size: 1.0625rem; line-height: 1.85; color: var(--ink); font-weight: 300; }
.article-full-body p { margin-bottom: 1.25rem; }
.article-lead {
  font-size: 1.1rem; font-style: italic; color: var(--muted);
  border-top: 2px solid var(--gold); padding-top: 1.25rem;
  margin-bottom: 2rem; line-height: 1.75; font-weight: 300;
}
.article-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.article-list li { padding: 6px 0 6px 20px; position: relative; color: var(--ink); font-weight: 300; }
.article-list li::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%); width: 6px; height: 1px; background: var(--gold);
}

/* ============================================================
   ADMIN PANEL — separate visual system, preserved
   ============================================================ */
.admin-body { font-family: var(--font-body); background: #f0f2f5; min-height: 100vh; color: var(--ink); }

.admin-login { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--ink); position: relative; overflow: hidden; }
.admin-login-box { background: var(--paper); padding: 48px; width: 100%; max-width: 420px; box-shadow: var(--shadow-lg); position: relative; z-index: 2; }
.admin-login-logo { text-align: center; margin-bottom: 32px; }
.admin-login-logo .logo-name { font-size: 1.5rem; color: var(--ink); }
.admin-login-logo .logo-sub  { color: var(--gold); }
.admin-login h2 { text-align: center; color: var(--ink); margin-bottom: 8px; font-size: 1.3rem; }
.admin-login p  { text-align: center; color: var(--muted); font-size: 0.88rem; margin-bottom: 28px; font-weight: 300; }
.admin-login .form-group label { color: var(--ink); }
.admin-login-error { color: #c0392b; font-size: 0.85rem; text-align: center; margin-top: 10px; display: none; }

.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 256px; background: var(--ink); color: var(--on-dark-primary);
  flex-shrink: 0; display: flex; flex-direction: column;
  position: fixed; top: 0; bottom: 0; left: 0; overflow-y: auto; z-index: 100;
}
.admin-sidebar-header { padding: 26px 22px; border-bottom: 1px solid rgba(245,242,236,0.08); }
.admin-sidebar-header .logo-name { font-size: 1rem; }
.admin-sidebar-header .logo-sub  { color: var(--gold); }
.admin-nav { padding: 10px; flex: 1; }
.admin-nav-item {
  display: flex; align-items: center; gap: 10px; padding: 11px 14px;
  cursor: pointer; color: var(--on-dark-secondary); font-size: 0.87rem; font-weight: 300;
  transition: background var(--transition), color var(--transition);
  margin-bottom: 2px;
}
.admin-nav-item:hover { background: rgba(245,242,236,0.06); color: var(--on-dark-primary); }
.admin-nav-item.active { background: rgba(184,152,58,0.13); color: var(--gold); }
.admin-nav-item .nav-icon { width: 20px; text-align: center; flex-shrink: 0; font-size: 1rem; line-height: 1; }
.admin-nav-item .nav-icon svg { width: 16px; height: 16px; }
.admin-sidebar-footer { padding: 18px 22px; border-top: 1px solid rgba(245,242,236,0.08); }
.admin-logout { display: flex; align-items: center; gap: 9px; color: var(--on-dark-secondary); font-size: 0.84rem; cursor: pointer; transition: color var(--transition); }
.admin-logout:hover { color: var(--on-dark-primary); }

.admin-nav-mobile-only { display: none; }
.admin-modal-handle { display: none; width: 36px; height: 4px; background: #cfd4de; margin: 10px auto 2px; flex-shrink: 0; }
.admin-fab {
  display: none; position: fixed; bottom: 24px; right: 20px; z-index: 500;
  width: 56px; height: 56px; background: var(--ink); color: var(--gold);
  border: none; font-size: 1.7rem; line-height: 1; cursor: pointer;
  box-shadow: var(--shadow-md); transition: transform 0.15s ease;
  align-items: center; justify-content: center;
}
.admin-fab:active { transform: scale(0.92); }
.admin-fab.fab-hidden { display: none !important; }

.admin-main { margin-left: 256px; flex: 1; display: flex; flex-direction: column; min-height: 100vh; }
.admin-topbar {
  background: var(--paper); padding: 0 28px; height: 62px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100;
}
.admin-topbar h1 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 400; color: var(--ink); }
.admin-content { padding: 28px; flex: 1; }

.admin-section { display: none; }
.admin-section.active { display: block; }

.admin-card { background: var(--paper); border: 1px solid var(--line); overflow: hidden; margin-bottom: 20px; }
.admin-card-header { padding: 16px 22px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.admin-card-header h2 { font-size: 0.95rem; font-weight: 400; color: var(--ink); }
.admin-card-body { padding: 22px; }

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  text-align: left; padding: 9px 14px;
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); border-bottom: 1px solid var(--line); font-weight: 400;
}
.admin-table td { padding: 13px 14px; border-bottom: 1px solid var(--line); vertical-align: middle; font-size: 0.88rem; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--cream); }

.admin-avatar { width: 38px; height: 38px; background: var(--ink); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 0.85rem; overflow: hidden; }
.admin-avatar img { width: 100%; height: 100%; object-fit: cover; }

.tag { display: inline-block; padding: 3px 9px; font-family: var(--font-mono); font-size: 0.62rem; font-weight: 400; letter-spacing: 0.08em; }
.tag-blue { background: rgba(15,14,12,0.07); color: var(--ink); }
.tag-gold { background: rgba(184,152,58,0.1); color: #7a5c0a; }

.btn-sm { padding: 7px 13px; font-family: var(--font-mono); font-size: 0.72rem; cursor: pointer; border: 1px solid; display: inline-flex; align-items: center; gap: 5px; transition: all var(--transition); font-weight: 400; }
.btn-edit   { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-edit:hover { border-color: var(--ink); background: rgba(15,14,12,0.04); }
.btn-delete { background: transparent; color: #c0392b; border-color: #f5d5d0; }
.btn-delete:hover { background: #fdf0ef; border-color: #c0392b; }

.admin-warning { background: #fffbe6; border: 1px solid #ffe082; padding: 12px 16px; margin-bottom: 18px; font-size: 0.83rem; color: #7a5c00; display: flex; gap: 10px; align-items: flex-start; line-height: 1.55; }
.admin-warning svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }

.admin-modal-overlay { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.45); align-items: center; justify-content: center; padding: 20px; }
.admin-modal-overlay.open { display: flex; }
.admin-modal { background: var(--paper); width: 100%; max-width: 580px; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg); }
.admin-modal-header { padding: 18px 22px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; background: var(--paper); z-index: 1; }
.admin-modal-header h3 { font-size: 0.98rem; font-weight: 400; color: var(--ink); }
.admin-modal-body { padding: 22px; }
.admin-modal-footer { padding: 14px 22px; border-top: 1px solid var(--line); display: flex; justify-content: flex-end; gap: 10px; }

.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: var(--ink); color: var(--paper);
  padding: 13px 18px; font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 9px;
  box-shadow: var(--shadow-lg);
  transform: translateY(80px); opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-top: 3px solid var(--gold); max-width: 340px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-top-color: #27ae60; }
.toast.error   { border-top-color: #e74c3c; }

.empty-state { text-align: center; padding: 48px 24px; color: var(--muted); }
.empty-state-icon { font-size: 2.5rem; margin-bottom: 14px; opacity: 0.35; }

/* Admin sidebar drawer on ≤768px */
@media (max-width: 768px) {
  .admin-sidebar  { transform: translateX(-100%); transition: transform 0.3s; z-index: 200; }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .admin-content { padding: 18px 14px; }
  .admin-topbar { padding: 0 16px; }
}

/* Admin bottom-nav on ≤640px */
@media (max-width: 640px) {
  .admin-layout { flex-direction: column; }
  .admin-sidebar {
    width: 100%; height: auto; position: fixed !important;
    bottom: 0; top: auto; left: 0; right: 0;
    transform: none !important; overflow: visible; flex-direction: row;
    z-index: 300; box-shadow: 0 -1px 0 rgba(245,242,236,0.07), 0 -8px 32px rgba(15,14,12,0.22);
  }
  .admin-sidebar-header { display: none; }
  .admin-sidebar-footer { display: none; }
  .admin-nav { flex-direction: row !important; display: flex !important; overflow: hidden; padding: 0; width: 100%; scrollbar-width: none; }
  .admin-nav::-webkit-scrollbar { display: none; }
  .admin-nav-item { flex: 1; flex-shrink: 0; flex-direction: column; gap: 4px; border-top: 2px solid transparent; margin-bottom: 0; padding: 10px 4px 8px; text-align: center; justify-content: center; align-items: center; font-size: 0; line-height: 1; transition: background var(--transition), color var(--transition), border-top-color var(--transition); }
  .admin-nav-item .nav-icon { font-size: 1.35rem; display: block; width: auto; line-height: 1; margin-bottom: 2px; }
  .admin-nav-item.active { background: rgba(184,152,58,0.1); border-top-color: var(--gold) !important; color: var(--gold); }
  .admin-nav-mobile-only { display: flex; flex: 0 0 52px; padding: 10px 4px 8px; }
  .admin-main { margin-left: 0; padding-bottom: 64px; }
  .admin-content { padding: 12px 10px; }
  .admin-topbar { padding: 0 14px; height: auto; min-height: 52px; }
  .admin-topbar h1 { font-size: 0.9rem; }
  .admin-card-header { padding: 12px 14px; flex-wrap: wrap; gap: 8px; }
  .admin-card-body { overflow-x: unset !important; }
  .admin-table, .admin-table tbody { min-width: 0 !important; width: 100%; display: block; }
  .admin-table thead { display: none; }
  .admin-table tr { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 10px; padding: 13px 14px; border-bottom: 1px solid var(--line); }
  .admin-table tr:last-child { border-bottom: none; }
  .admin-table tr:hover td { background: transparent; }
  .admin-table td { padding: 0; border: none; font-size: 0.87rem; }
  .admin-table td[data-mobile="avatar"] { flex-shrink: 0; align-self: center; }
  .admin-table td[data-mobile="main"]   { flex: 1; min-width: 100px; }
  .admin-table td[data-mobile="sub"]    { order: 3; width: 100%; margin-top: 3px; }
  .admin-table td[data-mobile="hide"]   { display: none !important; }
  .admin-table td[data-mobile="actions"] { order: 4; width: 100%; display: flex; gap: 8px; padding-top: 10px; margin-top: 4px; border-top: 1px solid var(--line); }
  .admin-table td[data-mobile="actions"] .btn-sm { flex: 1; justify-content: center; min-height: 42px; font-size: 0.84rem; margin-top: 0 !important; }
  .admin-modal-overlay { align-items: flex-end; padding: 0; }
  .admin-modal { border-radius: 0; max-height: 92vh; width: 100%; max-width: 100%; }
  .admin-modal-handle { display: block; }
  .admin-modal-header { padding: 10px 16px 14px; }
  .admin-modal-body { padding: 14px 16px; }
  .admin-modal-footer { padding: 12px 16px; gap: 8px; flex-wrap: wrap; }
  .admin-modal .form-row { grid-template-columns: 1fr !important; }
  .admin-modal input, .admin-modal textarea, .admin-modal select { min-height: 44px; font-size: 1rem; }
  .admin-modal-footer .btn, .admin-modal-footer .btn-sm { flex: 1; min-height: 44px; justify-content: center; }
  .admin-fab { display: flex; bottom: 76px; }
  .btn-sm { min-height: 40px; padding: 8px 12px; }
  .admin-login-box { padding: 28px 20px; margin: 12px; }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--ink);
  border-top: 1px solid rgba(184,152,58,0.3);
  transform: translateY(0);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.cookie-banner--hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 200px;
  color: var(--on-dark-body);
  font-size: 0.8rem;
  line-height: 1.55;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
}
.cookie-text strong { color: var(--on-dark-primary); font-weight: 500; }
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-accept {
  background: var(--gold);
  color: var(--paper);
  border: 1px solid var(--gold);
  padding: 8px 22px;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.cookie-accept:hover { background: var(--gold-light); border-color: var(--gold-light); }
.cookie-decline {
  background: transparent;
  color: var(--on-dark-secondary);
  border: 1px solid rgba(245,242,236,0.2);
  padding: 8px 16px;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
}
.cookie-decline:hover { color: var(--on-dark-primary); border-color: rgba(245,242,236,0.4); }
.cookie-more {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--gold);
  text-decoration: underline;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.cookie-more:hover { color: var(--gold-light); }

/* ===== FOOTER: 0+ mark & cookie manage ===== */
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.age-mark {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 2px 7px;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.cookie-manage-btn {
  background: transparent;
  border: none;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.cookie-manage-btn:hover { color: var(--text-light); }

@media (max-width: 480px) {
  .cookie-inner { padding: 12px 16px; gap: 12px; }
  .cookie-actions { gap: 8px; }
  .footer-bottom-right { gap: 10px; }
}
