/* ============================================================
   Адвокатский кабинет Янушевича К.Е. — лендинг
   Стиль: navy + copper (антиква) × Liquid Glass (gptfox DS)
   ============================================================ */

/* Шрифты захостены локально — без зависимости от Google Fonts (важно для РФ-домена) */
@import url("google-fonts.css");

@font-face {
  font-family: "Forma DJR Cyrillic Deck";
  src: url("../fonts/FormaDJRCyrillicDeck.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* navy surfaces */
  --navy-950: #110E28;
  --navy-900: #181440;
  --navy-850: #1E1A4A;
  --navy-800: #251F58;
  --navy-700: #2E2768;

  /* copper accent (антиква акцент презентации) */
  --copper:        #CB7651;
  --copper-bright: #E2925F;
  --copper-deep:   #A85B39;
  --copper-15:  rgba(203,118,81,0.15);
  --copper-30:  rgba(203,118,81,0.30);

  /* ink / cream text */
  --cream:        #F3ECE2;
  --cream-90:     rgba(243,236,226,0.90);
  --cream-65:     rgba(243,236,226,0.64);
  --cream-45:     rgba(243,236,226,0.44);
  --line:         rgba(243,236,226,0.10);
  --line-strong:  rgba(243,236,226,0.18);

  /* glow accents (gptfox warm + violet ambient) */
  --glow-orange: rgba(255,107,26,0.32);
  --glow-violet: rgba(110,91,255,0.30);

  /* glass */
  --glass-bg:   rgba(255,255,255,0.045);
  --glass-bg-2: rgba(255,255,255,0.07);
  --glass-edge: rgba(255,255,255,0.16);
  --glass-blur: saturate(160%) blur(26px);

  /* shadows — warm */
  --sh-md: 0 10px 30px rgba(10,6,30,0.45), 0 2px 6px rgba(10,6,30,0.30);
  --sh-lg: 0 30px 70px -16px rgba(8,4,26,0.65), 0 8px 20px rgba(8,4,26,0.40);
  --sh-glow: 0 14px 44px rgba(203,118,81,0.34);

  /* type */
  --serif: "Spectral", "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Manrope", "Forma DJR Cyrillic Deck", system-ui, -apple-system, Arial, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, Menlo, monospace;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --maxw: 1240px;
}

* { box-sizing: border-box; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--copper); color: #1a0e07; padding: 12px 20px; border-radius: 0 0 var(--r-sm) 0; font-weight: 600; font-size: 14px; }
.skip-link:focus { left: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--navy-950);
  color: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ambient background glows fixed behind everything */
.bg-field {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 78% 8%, var(--glow-orange), transparent 60%),
    radial-gradient(55% 45% at 8% 30%, var(--glow-violet), transparent 60%),
    radial-gradient(70% 60% at 50% 110%, rgba(203,118,81,0.16), transparent 60%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900) 40%, var(--navy-950));
}
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
main, header, footer { position: relative; z-index: 2; }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { padding: 104px 0; position: relative; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--copper-bright);
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--copper); display: inline-block;
}
.center .eyebrow::after {
  content: ""; width: 26px; height: 1px; background: var(--copper); display: inline-block;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; margin: 0; line-height: 1.05; letter-spacing: -0.01em; }
h2 { font-size: clamp(30px, 4.4vw, 54px); color: var(--cream); text-wrap: balance; }
h3 { font-size: clamp(20px, 2.2vw, 26px); }
.lede { font-size: clamp(16px, 1.5vw, 19px); color: var(--cream-65); margin: 18px 0 0; text-wrap: pretty; }

.serif-accent { color: var(--copper-bright); font-style: italic; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: 15.5px; font-weight: 600;
  padding: 15px 26px; border-radius: var(--r-pill);
  border: 1px solid transparent; transition: all .28s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(180deg, var(--copper-bright), var(--copper));
  color: #1a0e07; box-shadow: var(--sh-glow); border-color: rgba(255,255,255,0.18);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 52px rgba(203,118,81,0.5); filter: brightness(1.04); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: var(--glass-bg); color: var(--cream);
  border: 1px solid var(--glass-edge); backdrop-filter: var(--glass-blur);
}
.btn-ghost:hover { background: var(--glass-bg-2); border-color: var(--copper-30); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 32px; font-size: 16.5px; }

/* ---------- glass card ---------- */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-edge);
  border-radius: var(--r-lg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--sh-md);
}

/* corner-marker decorative frame (motif from deck) */
.cmark { position: relative; }
.cmark::before, .cmark::after {
  content: ""; position: absolute; width: 16px; height: 16px; pointer-events: none;
  border-color: var(--copper-30); border-style: solid; border-width: 0;
}
.cmark::before { top: 12px; left: 12px; border-top-width: 1px; border-left-width: 1px; }
.cmark::after { bottom: 12px; right: 12px; border-bottom-width: 1px; border-right-width: 1px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(17,14,40,0.72);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 28px; height: 78px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand .logo-svg { width: 44px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text b { font-family: var(--serif); font-size: 21px; font-weight: 700; letter-spacing: .01em; }
.brand-text span { font-family: var(--mono); font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--cream-45); margin-top: 3px; }
.nav-links { display: flex; gap: 26px; margin-left: 18px; }
.nav-links a { font-size: 14.5px; color: var(--cream-65); transition: color .2s; position: relative; }
.nav-links a:hover { color: var(--cream); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--copper); transition: width .3s var(--ease); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.nav-phone { font-family: var(--mono); font-size: 14px; color: var(--cream-90); display: flex; align-items: center; gap: 8px; }
.nav-phone:hover { color: var(--copper-bright); }
.burger { display: none; background: none; border: 1px solid var(--glass-edge); border-radius: 10px; width: 44px; height: 44px; color: var(--cream); align-items: center; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 72px 0 96px; min-height: calc(100vh - 78px); display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; width: 100%; }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5.3vw, 72px);
  font-weight: 700; line-height: 1.0; letter-spacing: -0.015em;
  color: var(--cream); margin: 0 0 6px; text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--copper-bright); }
.hero .sub { font-size: clamp(16px, 1.5vw, 19px); color: var(--cream-65); max-width: 520px; margin: 24px 0 32px; }
.hero-firm { font-family: var(--mono); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--cream-45); margin: 22px 0 0; }

.trust-row { display: flex; gap: 34px; margin-top: 38px; flex-wrap: wrap; }
.trust-item .n { font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); font-weight: 700; color: var(--cream); line-height: 1; }
.trust-item .n .u { font-size: 0.5em; color: var(--copper-bright); font-family: var(--mono); font-weight: 500; margin-left: 4px; }
.trust-item .l { font-size: 13px; color: var(--cream-65); margin-top: 8px; max-width: 150px; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* lead form card */
.lead-card { padding: 34px; border-radius: var(--r-xl); position: relative; overflow: hidden; }
.lead-card.hero-form { box-shadow: var(--sh-lg); background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)); }
.lead-card .rim { position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none;
  background: linear-gradient(140deg, rgba(226,146,95,0.6), rgba(255,255,255,0.05) 35%, rgba(110,91,255,0.25));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
.lead-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.lead-head .badge { width: 46px; height: 46px; border-radius: 13px; flex: none; display: grid; place-items: center; background: var(--copper-15); border: 1px solid var(--copper-30); color: var(--copper-bright); }
.lead-head h3 { font-family: var(--serif); font-size: 23px; color: var(--cream); margin: 0; }
.lead-head p { font-size: 13.5px; color: var(--cream-65); margin: 4px 0 0; }

.field { margin-bottom: 14px; }
.field label { display: block; font-size: 12px; font-family: var(--mono); letter-spacing: .04em; color: var(--cream-65); margin-bottom: 7px; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 15px; color: var(--cream);
  background: rgba(0,0,0,0.22); border: 1px solid var(--line-strong);
  border-radius: var(--r-sm); padding: 13px 15px; transition: border-color .2s, box-shadow .2s; outline: none;
}
.field textarea { resize: vertical; min-height: 80px; }
.field input::placeholder, .field textarea::placeholder { color: var(--cream-45); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--copper); box-shadow: 0 0 0 3px var(--copper-15); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23CB7651' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 38px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.seg { display: flex; gap: 8px; }
.seg label { flex: 1; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg .opt { display: block; text-align: center; padding: 11px; border-radius: var(--r-sm); border: 1px solid var(--line-strong); background: rgba(0,0,0,0.18); font-size: 14px; color: var(--cream-65); transition: all .2s; cursor: pointer; }
.seg input:checked + .opt { border-color: var(--copper); background: var(--copper-15); color: var(--cream); }
.form-note { font-size: 11.5px; color: var(--cream-45); margin: 14px 0 0; text-align: center; line-height: 1.45; }
.form-note a { color: var(--cream-65); text-decoration: underline; text-underline-offset: 2px; }

.form-success { text-align: center; padding: 24px 8px; }
.form-success .ok { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center; background: var(--copper-15); border: 1px solid var(--copper-30); color: var(--copper-bright); }
.form-success h3 { font-family: var(--serif); font-size: 24px; margin: 0 0 8px; }
.form-success p { color: var(--cream-65); font-size: 14.5px; margin: 0; }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-card { padding: 30px 26px 32px; transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease); }
.why-card:hover { transform: translateY(-5px); border-color: var(--copper-30); background: var(--glass-bg-2); }
.why-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; color: var(--copper-bright);
  background: linear-gradient(160deg, var(--copper-15), rgba(255,255,255,0.02)); border: 1px solid var(--line-strong); margin-bottom: 20px; }
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 { font-family: var(--serif); font-size: 20px; color: var(--cream); margin: 0 0 10px; line-height: 1.15; }
.why-card p { font-size: 13.5px; color: var(--cream-65); margin: 0; }

/* ============================================================
   PRACTICE (tabs)
   ============================================================ */
.tabs { display: inline-flex; gap: 6px; padding: 6px; border-radius: var(--r-pill); background: rgba(0,0,0,0.25); border: 1px solid var(--line); margin-bottom: 40px; }
.tab { padding: 12px 26px; border-radius: var(--r-pill); border: none; background: transparent; color: var(--cream-65); font-size: 15px; font-weight: 600; transition: all .25s var(--ease); }
.tab.active { background: linear-gradient(180deg, var(--copper-bright), var(--copper)); color: #1a0e07; box-shadow: var(--sh-glow); }
.tab:not(.active):hover { color: var(--cream); }
.practice-panel { display: none; }
.practice-panel.active { display: block; animation: fadeUp .5s var(--ease); }
.practice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pr-card { display: flex; align-items: flex-start; gap: 16px; padding: 24px; transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s; }
.pr-card:hover { transform: translateY(-4px); border-color: var(--copper-30); background: var(--glass-bg-2); }
.pr-card .ic { width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center; color: var(--copper-bright); background: var(--copper-15); border: 1px solid var(--line-strong); }
.pr-card .ic svg { width: 22px; height: 22px; }
.pr-card .t { font-size: 16px; font-weight: 600; color: var(--cream); line-height: 1.3; }
.pr-card .d { font-size: 13px; color: var(--cream-45); margin-top: 5px; }

/* ============================================================
   OUTSOURCING / FORMATS
   ============================================================ */
.formats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 56px; }
.format-card { padding: 34px 30px; position: relative; overflow: hidden; transition: transform .35s var(--ease), border-color .35s var(--ease); }
.format-card:hover { transform: translateY(-5px); border-color: var(--copper-30); }
.format-card .num { font-family: var(--serif); font-size: 64px; font-weight: 800; line-height: 1; color: transparent; -webkit-text-stroke: 1.4px var(--copper-30); margin-bottom: 18px; }
.format-card.feat { background: linear-gradient(165deg, rgba(203,118,81,0.22), rgba(255,255,255,0.03)); border-color: var(--copper-30); }
.format-card.feat .num { color: var(--copper-bright); -webkit-text-stroke: 0; }
.format-card h3 { font-family: var(--serif); font-size: 23px; color: var(--cream); margin: 0 0 12px; }
.format-card p { font-size: 14px; color: var(--cream-65); margin: 0 0 18px; }
.format-tag { display: inline-block; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--copper-bright); padding: 5px 12px; border-radius: var(--r-pill); border: 1px solid var(--copper-30); }

.adv-block { padding: 44px; border-radius: var(--r-xl); }
.adv-block h3 { font-family: var(--serif); font-size: 26px; margin: 0 0 28px; }
.adv-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px 30px; }
.adv-item { display: flex; gap: 12px; align-items: flex-start; }
.adv-item .dot { width: 22px; height: 22px; border-radius: 50%; flex: none; display: grid; place-items: center; background: var(--copper-15); border: 1px solid var(--copper-30); color: var(--copper-bright); margin-top: 1px; }
.adv-item .dot svg { width: 13px; height: 13px; }
.adv-item span { font-size: 14px; color: var(--cream-90); }

/* ============================================================
   CASES
   ============================================================ */
.case-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 52px; }
.metric-card { padding: 30px 26px; text-align: left; position: relative; overflow: hidden; }
.metric-card .mv { font-family: var(--serif); font-size: clamp(34px, 4vw, 50px); font-weight: 800; color: var(--cream); line-height: 1; letter-spacing: -0.02em; }
.metric-card .mv .u { font-family: var(--mono); font-size: 0.34em; color: var(--copper-bright); font-weight: 500; margin-left: 6px; letter-spacing: 0; }
.metric-card .ml { font-size: 13.5px; color: var(--cream-65); margin-top: 14px; }

.case-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.case-card { padding: 30px; transition: transform .35s var(--ease), border-color .35s var(--ease); }
.case-card:hover { transform: translateY(-4px); border-color: var(--copper-30); }
.case-card .tag { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--copper-bright); }
.case-card h3 { font-family: var(--serif); font-size: 21px; color: var(--cream); margin: 12px 0 12px; line-height: 1.2; }
.case-card p { font-size: 14px; color: var(--cream-65); margin: 0 0 16px; }
.case-card .docs { display: flex; flex-wrap: wrap; gap: 7px; }
.case-card .doc { font-family: var(--mono); font-size: 11.5px; color: var(--cream-65); padding: 5px 10px; border-radius: 7px; background: rgba(0,0,0,0.25); border: 1px solid var(--line); }
.case-card.win { background: linear-gradient(165deg, rgba(203,118,81,0.16), rgba(255,255,255,0.02)); border-color: var(--copper-30); }

/* ============================================================
   BANNER (lead magnet mid)
   ============================================================ */
.banner { padding: 0; }
.banner-inner { border-radius: var(--r-xl); padding: 60px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); border: 1px solid var(--copper-30);
  display: grid; grid-template-columns: 1.2fr auto; gap: 40px; align-items: center; }
.banner-inner::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(50% 120% at 100% 0%, var(--glow-orange), transparent 55%), radial-gradient(60% 120% at 0% 100%, var(--glow-violet), transparent 55%); }
.banner-inner > * { position: relative; }
.banner h2 { font-size: clamp(26px, 3vw, 40px); margin: 0 0 14px; }
.banner p { color: var(--cream-65); font-size: 16px; margin: 0; max-width: 520px; }
.banner-form { display: flex; gap: 10px; flex-wrap: wrap; }
.banner-form input { font-family: var(--sans); font-size: 15px; color: var(--cream); background: rgba(0,0,0,0.3); border: 1px solid var(--line-strong); border-radius: var(--r-pill); padding: 15px 22px; min-width: 220px; outline: none; }
.banner-form input:focus { border-color: var(--copper); }

/* ============================================================
   ADDITIONAL SERVICES
   ============================================================ */
.addl-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.addl-card { padding: 28px 22px; transition: transform .3s var(--ease), border-color .3s; text-align: left; }
.addl-card:hover { transform: translateY(-4px); border-color: var(--copper-30); }
.addl-card .num { font-family: var(--mono); font-size: 13px; color: var(--copper-bright); }
.addl-card .t { font-family: var(--serif); font-size: 18px; color: var(--cream); margin-top: 16px; line-height: 1.2; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.portrait { aspect-ratio: 4/5; border-radius: var(--r-xl); position: relative; overflow: hidden; border: 1px solid var(--glass-edge);
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950)); display: grid; place-items: center; }
.portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.portrait::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 55%, rgba(17,14,40,0.45)); }
.about-body h2 { margin-bottom: 24px; }
.about-body p { color: var(--cream-65); font-size: 16px; margin: 0 0 18px; }
.about-body p strong { color: var(--cream); font-weight: 600; }
.about-stats { display: flex; gap: 40px; margin-top: 34px; flex-wrap: wrap; }
.about-stats .n { font-family: var(--serif); font-size: 38px; font-weight: 700; color: var(--copper-bright); line-height: 1; }
.about-stats .l { font-size: 13px; color: var(--cream-65); margin-top: 8px; max-width: 160px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tst-card { padding: 32px 30px; position: relative; }
.tst-card .quote { font-family: var(--serif); font-size: 60px; line-height: 0.6; color: var(--copper-30); height: 28px; }
.tst-card p { font-size: 15px; color: var(--cream-90); margin: 8px 0 24px; font-style: italic; }
.tst-meta { display: flex; align-items: center; gap: 13px; }
.tst-meta .av { width: 44px; height: 44px; border-radius: 50%; flex: none; background: linear-gradient(160deg, var(--copper), var(--copper-deep)); display: grid; place-items: center; font-family: var(--serif); font-weight: 700; color: #1a0e07; }
.tst-meta .who b { display: block; font-size: 14.5px; color: var(--cream); font-family: var(--sans); font-weight: 600; }
.tst-meta .who span { font-size: 12.5px; color: var(--cream-45); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 26px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--cream); font-family: var(--serif); font-size: clamp(17px, 2vw, 21px); font-weight: 600; transition: color .2s; }
.faq-q:hover { color: var(--copper-bright); }
.faq-q .pm { width: 34px; height: 34px; flex: none; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; transition: all .3s var(--ease); color: var(--copper-bright); }
.faq-item.open .faq-q .pm { background: var(--copper); color: #1a0e07; transform: rotate(180deg); border-color: var(--copper); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 0 26px; color: var(--cream-65); font-size: 15.5px; max-width: 760px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-info { padding: 44px; display: flex; flex-direction: column; gap: 4px; }
.ci-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.ci-item:last-child { border-bottom: none; }
.ci-item .ic { width: 46px; height: 46px; border-radius: 13px; flex: none; display: grid; place-items: center; color: var(--copper-bright); background: var(--copper-15); border: 1px solid var(--line-strong); }
.ci-item .ic svg { width: 22px; height: 22px; }
.ci-item .l { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--cream-45); }
.ci-item .v { font-size: 16px; color: var(--cream); margin-top: 5px; }
.ci-item .v a:hover { color: var(--copper-bright); }
.map { border-radius: var(--r-xl); overflow: hidden; position: relative; border: 1px solid var(--glass-edge); min-height: 420px; display: block;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950)); }
.map img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; object-position: center; transition: transform .5s var(--ease); filter: saturate(1.02); }
.map:hover img { transform: scale(1.04); }
.map-chip { position: absolute; left: 18px; bottom: 18px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; color: var(--cream); background: rgba(17,14,40,0.85); backdrop-filter: blur(8px); padding: 9px 15px; border-radius: var(--r-pill); border: 1px solid var(--line-strong); box-shadow: var(--sh-md); transition: border-color .25s, color .25s; }
.map-chip svg { color: var(--copper-bright); }
.map:hover .map-chip { border-color: var(--copper-30); color: var(--copper-bright); }

/* ============================================================
   PRE-FOOTER LEAD
   ============================================================ */
.final-cta { padding: 110px 0; }
.final-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: 64px; align-items: center; }
.final-grid h2 { font-size: clamp(32px, 4.5vw, 58px); }
.final-grid .lede { max-width: 480px; }
.final-pts { margin: 32px 0 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.final-pts li { display: flex; gap: 12px; align-items: center; font-size: 15.5px; color: var(--cream-90); }
.final-pts .dot { width: 24px; height: 24px; border-radius: 50%; flex: none; display: grid; place-items: center; background: var(--copper-15); border: 1px solid var(--copper-30); color: var(--copper-bright); }
.final-pts .dot svg { width: 14px; height: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-grid h4 { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--cream-45); margin: 0 0 20px; font-weight: 500; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-grid a { font-size: 14.5px; color: var(--cream-65); transition: color .2s; }
.footer-grid a:hover { color: var(--copper-bright); }
.footer-about { font-size: 14px; color: var(--cream-65); max-width: 320px; margin: 20px 0 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 28px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.footer-bottom p { font-size: 12.5px; color: var(--cream-45); margin: 0; }

/* ============================================================
   FLOATING WIDGET (lead magnet)
   ============================================================ */
.fab { position: fixed; right: 26px; bottom: 26px; z-index: 60; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.fab-btn { display: inline-flex; align-items: center; gap: 11px; padding: 15px 22px; border-radius: var(--r-pill);
  background: linear-gradient(180deg, var(--copper-bright), var(--copper)); color: #1a0e07; font-weight: 600; font-size: 14.5px;
  border: 1px solid rgba(255,255,255,0.2); box-shadow: var(--sh-glow); transition: transform .28s var(--ease), box-shadow .28s; }
.fab-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 52px rgba(203,118,81,0.55); }
.fab-btn svg { width: 20px; height: 20px; }
.fab-btn .pulse { position: relative; }
.fab-pulse { position: absolute; right: 30px; bottom: 30px; width: 56px; height: 56px; border-radius: 50%; border: 2px solid var(--copper); animation: ring 2.4s var(--ease) infinite; pointer-events: none; opacity: 0; z-index: 59; }

/* MODAL */
.modal-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(8,5,22,0.7); backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; padding: 24px; opacity: 0; transition: opacity .3s var(--ease); }
.modal-overlay.open { display: flex; opacity: 1; }
.modal { width: 100%; max-width: 480px; padding: 38px; border-radius: var(--r-xl); position: relative; transform: translateY(16px) scale(.98); transition: transform .35s var(--ease); box-shadow: var(--sh-lg);
  background: linear-gradient(180deg, var(--navy-800), var(--navy-900)); }
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 50%; background: rgba(0,0,0,0.25); border: 1px solid var(--line-strong); color: var(--cream-65); display: grid; place-items: center; transition: all .2s; }
.modal-close:hover { color: var(--cream); border-color: var(--copper-30); }

/* ============================================================
   ANIMATIONS / REVEAL
   ============================================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes ring { 0% { transform: scale(.7); opacity: .7; } 100% { transform: scale(1.6); opacity: 0; } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }
.reveal.d6 { transition-delay: .48s; }
.reveal.d7 { transition-delay: .56s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-list { grid-template-columns: repeat(2, 1fr); }
  .addl-list { grid-template-columns: repeat(3, 1fr); }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  section { padding: 76px 0; }
  .hero-grid, .about-grid, .final-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { min-height: auto; }
  .nav-links { display: none; }
  .nav-phone span { display: none; }
  .banner-inner { grid-template-columns: 1fr; padding: 40px 28px; }
  .case-list { grid-template-columns: 1fr; }
  .case-metrics { grid-template-columns: repeat(2, 1fr); }
  .formats { grid-template-columns: 1fr; }
  .tst-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .burger { display: flex; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .why-grid, .practice-grid, .addl-list, .adv-list, .case-metrics { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .lead-card { padding: 26px; }
  .nav-cta .btn-primary { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-row { gap: 24px; }
  .fab-btn span { display: none; }
  .fab-btn { padding: 16px; }
}

/* ============================================================
   SUBPAGES — направления (breadcrumbs + page hero + process)
   ============================================================ */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; font-family: var(--mono); font-size: 12px; letter-spacing: .04em; color: var(--cream-45); padding: 26px 0 0; }
.crumbs a { color: var(--cream-65); transition: color .2s; }
.crumbs a:hover { color: var(--copper-bright); }
.crumbs .sep { color: var(--line-strong); }
.crumbs span[aria-current] { color: var(--cream); }

.page-hero { padding: 40px 0 72px; }
.page-hero .hero-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(34px, 4.8vw, 60px); font-weight: 700; line-height: 1.02; letter-spacing: -0.015em; color: var(--cream); margin: 0 0 6px; text-wrap: balance; }
.page-hero h1 em { font-style: italic; color: var(--copper-bright); }
.page-hero .sub { font-size: clamp(16px, 1.5vw, 19px); color: var(--cream-65); max-width: 560px; margin: 22px 0 30px; text-wrap: pretty; }

/* side summary card in subpage hero */
.page-aside { padding: 30px; border-radius: var(--r-xl); position: relative; overflow: hidden; box-shadow: var(--sh-lg); background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)); }
.page-aside h3 { font-family: var(--serif); font-size: 21px; color: var(--cream); margin: 0 0 18px; }
.page-aside ul { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 13px; }
.page-aside li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--cream-90); }
.page-aside .dot { width: 22px; height: 22px; border-radius: 50%; flex: none; display: grid; place-items: center; background: var(--copper-15); border: 1px solid var(--copper-30); color: var(--copper-bright); margin-top: 1px; }
.page-aside .dot svg { width: 13px; height: 13px; }

/* lead-in paragraph block under a section head */
.prose { max-width: 760px; }
.prose p { font-size: 16px; color: var(--cream-65); margin: 0 0 18px; text-wrap: pretty; }
.prose p strong { color: var(--cream); font-weight: 600; }

/* process steps reuse format-card grid but as ordered flow */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process .step { padding: 30px 26px; transition: transform .35s var(--ease), border-color .35s var(--ease); }
.process .step:hover { transform: translateY(-5px); border-color: var(--copper-30); }
.process .step .num { font-family: var(--serif); font-size: 52px; font-weight: 800; line-height: 1; color: transparent; -webkit-text-stroke: 1.4px var(--copper-30); margin-bottom: 16px; }
.process .step h3 { font-family: var(--serif); font-size: 19px; color: var(--cream); margin: 0 0 10px; line-height: 1.15; }
.process .step p { font-size: 13.5px; color: var(--cream-65); margin: 0; }

@media (max-width: 1080px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 920px) {
  .page-hero .hero-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 24px 0 56px; }
}
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } }

/* ============================================================
   BLOG — listing
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; transition: transform .35s var(--ease), border-color .35s var(--ease); }
.post-card:hover { transform: translateY(-5px); border-color: var(--copper-30); }
.post-cover { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); }
.post-cover::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 100% at 100% 0%, var(--glow-orange), transparent 55%), radial-gradient(70% 100% at 0% 100%, var(--glow-violet), transparent 55%); }
.post-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-card:hover .post-cover img { transform: scale(1.05); }
.post-cover .cover-mark { position: absolute; right: 18px; bottom: 12px; font-family: var(--serif); font-size: 64px; font-weight: 700; line-height: 1; color: transparent; -webkit-text-stroke: 1.2px var(--copper-30); pointer-events: none; user-select: none; }
.post-card-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 14px; }
.post-tag { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--copper-bright); padding: 5px 11px; border-radius: var(--r-pill); border: 1px solid var(--copper-30); }
.post-date { font-family: var(--mono); font-size: 12px; color: var(--cream-45); letter-spacing: .04em; }
.post-card h3 { font-family: var(--serif); font-size: 22px; color: var(--cream); margin: 0 0 12px; line-height: 1.2; }
.post-card .post-excerpt { font-size: 14px; color: var(--cream-65); margin: 0 0 18px; text-wrap: pretty; }
.post-card .post-more { margin-top: auto; font-family: var(--mono); font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--copper-bright); display: inline-flex; align-items: center; gap: 8px; }
.post-card .post-more svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.post-card:hover .post-more svg { transform: translateX(4px); }

.blog-empty { text-align: center; color: var(--cream-45); font-size: 16px; padding: 60px 0; border: 1px dashed var(--line-strong); border-radius: var(--r-lg); }

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

/* ============================================================
   BLOG — single article
   ============================================================ */
.post-hero { padding: 30px 0 40px; }
.post-hero .wrap { max-width: 880px; }
.post-meta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 20px; }
.post-hero h1 { font-family: var(--serif); font-size: clamp(32px, 4.4vw, 52px); font-weight: 700; line-height: 1.06; letter-spacing: -0.015em; color: var(--cream); margin: 0 0 18px; text-wrap: balance; }
.post-hero .post-lead { font-size: clamp(17px, 1.7vw, 20px); color: var(--cream-90); line-height: 1.5; margin: 0; text-wrap: pretty; }

.post-cover-lg { max-width: 1040px; margin: 0 auto 8px; aspect-ratio: 21 / 9; border-radius: var(--r-xl); overflow: hidden; position: relative; border: 1px solid var(--glass-edge); background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); }
.post-cover-lg::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 92% 0%, var(--glow-orange), transparent 55%), radial-gradient(60% 120% at 8% 100%, var(--glow-violet), transparent 55%); }
.post-cover-lg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.post-cover-lg .cover-mark { position: absolute; right: 36px; bottom: 18px; font-family: var(--serif); font-size: 120px; font-weight: 700; line-height: 1; color: transparent; -webkit-text-stroke: 1.4px var(--copper-30); pointer-events: none; user-select: none; }

.post-body { max-width: 760px; margin: 0 auto; }
.post-body > * { margin-left: auto; margin-right: auto; }
.post-body h2 { font-family: var(--serif); font-size: clamp(24px, 3vw, 32px); color: var(--cream); margin: 48px 0 18px; line-height: 1.15; letter-spacing: -0.01em; }
.post-body h3 { font-family: var(--serif); font-size: clamp(20px, 2.2vw, 24px); color: var(--cream); margin: 36px 0 14px; }
.post-body p { font-size: 17px; line-height: 1.7; color: var(--cream-90); margin: 0 0 20px; text-wrap: pretty; }
.post-body a { color: var(--copper-bright); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.post-body a:hover { color: var(--copper); }
.post-body strong { color: var(--cream); font-weight: 600; }
.post-body em { font-style: italic; }
.post-body ul, .post-body ol { margin: 0 0 22px; padding-left: 4px; list-style: none; display: grid; gap: 12px; }
.post-body ul li, .post-body ol li { position: relative; padding-left: 30px; font-size: 17px; line-height: 1.6; color: var(--cream-90); }
.post-body ul li::before { content: ""; position: absolute; left: 6px; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--copper); }
.post-body ol { counter-reset: li; }
.post-body ol li { counter-increment: li; }
.post-body ol li::before { content: counter(li); position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%; background: var(--copper-15); border: 1px solid var(--copper-30); color: var(--copper-bright); font-family: var(--mono); font-size: 11px; display: grid; place-items: center; }
.post-body blockquote { margin: 28px 0; padding: 6px 0 6px 26px; border-left: 3px solid var(--copper); font-family: var(--serif); font-size: clamp(20px, 2.4vw, 26px); font-style: italic; color: var(--cream); line-height: 1.4; }
.post-body hr { border: none; height: 1px; background: var(--line-strong); margin: 44px auto; max-width: 120px; }
.post-body h2:first-child, .post-body h3:first-child, .post-body p:first-child { margin-top: 0; }

/* tables inside articles */
.post-table { max-width: 760px; margin: 0 auto 26px; overflow-x: auto; border-radius: var(--r-md); border: 1px solid var(--line-strong); -webkit-overflow-scrolling: touch; }
.post-body table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 460px; }
.post-body table th, .post-body table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); vertical-align: top; line-height: 1.5; }
.post-body table thead th { font-family: var(--mono); font-size: 11.5px; letter-spacing: .03em; text-transform: uppercase; color: var(--copper-bright); background: var(--copper-15); border-bottom: 1px solid var(--copper-30); }
.post-body table tbody tr:nth-child(even) { background: rgba(0,0,0,0.16); }
.post-body table tbody tr:last-child td { border-bottom: none; }
.post-body table td:first-child { color: var(--cream); font-weight: 600; }

.post-disclaimer { max-width: 760px; margin: 40px auto 0; font-size: 13px; color: var(--cream-45); line-height: 1.55; padding: 18px 22px; border-radius: var(--r-md); background: rgba(0,0,0,0.18); border: 1px solid var(--line); }

.post-cta { max-width: 880px; margin: 64px auto 0; border-radius: var(--r-xl); padding: 48px; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); border: 1px solid var(--copper-30); text-align: center; }
.post-cta::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(60% 120% at 100% 0%, var(--glow-orange), transparent 55%), radial-gradient(60% 120% at 0% 100%, var(--glow-violet), transparent 55%); }
.post-cta > * { position: relative; }
.post-cta h2 { font-family: var(--serif); font-size: clamp(24px, 3vw, 36px); margin: 0 0 12px; }
.post-cta p { color: var(--cream-65); font-size: 16px; margin: 0 0 26px; max-width: 520px; margin-left: auto; margin-right: auto; }

.post-back { max-width: 760px; margin: 40px auto 0; }
.post-back a { font-family: var(--mono); font-size: 13px; letter-spacing: .04em; color: var(--cream-65); display: inline-flex; align-items: center; gap: 9px; transition: color .2s; }
.post-back a:hover { color: var(--copper-bright); }
.post-back svg { width: 16px; height: 16px; }

@media (max-width: 560px) {
  .post-cover-lg .cover-mark { font-size: 72px; right: 20px; }
  .post-cta { padding: 34px 24px; }
}

/* ============================================================
   LOGO IMAGE
   ============================================================ */
.brand img.logo-svg { width: auto; height: 40px; object-fit: contain; display: block; }

/* ============================================================
   PRACTICE — ACCORDION
   ============================================================ */
.practice-acc { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; align-items: start; }
.acc-item { overflow: hidden; transition: border-color .3s var(--ease), background .3s var(--ease); }
.acc-item.open { border-color: var(--copper-30); background: var(--glass-bg-2); }
.acc-head { width: 100%; display: flex; align-items: center; gap: 16px; padding: 21px 24px; background: transparent; border: none; cursor: pointer; text-align: left; color: var(--cream); font-family: inherit; }
.acc-head .ic { width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center; color: var(--copper-bright); background: var(--copper-15); border: 1px solid var(--line-strong); }
.acc-head .ic svg { width: 22px; height: 22px; }
.acc-head .t { font-size: 16px; font-weight: 600; line-height: 1.3; flex: 1; transition: color .2s; }
.acc-head .chev { flex: none; color: var(--cream-45); transition: transform .35s var(--ease), color .25s; line-height: 0; }
.acc-head .chev svg { width: 20px; height: 20px; display: block; }
.acc-item.open .acc-head .chev { transform: rotate(180deg); color: var(--copper-bright); }
.acc-head:hover .t { color: var(--copper-bright); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc-body-in { padding: 0 24px 22px 84px; }
.acc-body-in p { font-size: 14px; color: var(--cream-65); margin: 0; line-height: 1.6; }
.acc-link { color: var(--copper-bright); font-weight: 600; white-space: nowrap; }
.acc-link:hover { text-decoration: underline; }

/* ============================================================
   CASES — EXPANDABLE
   ============================================================ */
.case-more { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; padding: 0; background: transparent; border: none; cursor: pointer; color: var(--copper-bright); font-size: 14px; font-weight: 600; font-family: inherit; }
.case-more svg { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.case-card.open .case-more svg { transform: rotate(180deg); }
.case-detail { max-height: 0; overflow: hidden; transition: max-height .55s var(--ease); }
.case-detail-in { padding-top: 22px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.cd-row { padding: 16px 18px; border-radius: 12px; background: rgba(0,0,0,.18); border: 1px solid var(--line); }
.cd-row b { color: var(--cream); font-size: 14.5px; }
.cd-court { font-family: var(--mono); font-size: 10.5px; letter-spacing: .07em; text-transform: uppercase; color: var(--copper-bright); margin-left: 8px; white-space: nowrap; }
.cd-row p { font-size: 13.5px; color: var(--cream-65); margin: 8px 0 0; line-height: 1.55; }

@media (max-width: 760px) {
  .practice-acc { grid-template-columns: 1fr; }
  .acc-body-in { padding-left: 24px; }
  .case-detail-in { grid-template-columns: 1fr; }
}
