/* ============ NDK Smart Partners — premium light, rounded ============ */
:root {
    --white: #ffffff;
    --bg: #fdfcfa;
    --bg-tint: #f5f1ea;
    --ink: #16181d;
    --ink-soft: #4a4e57;
    --muted: #8a8f99;
    --gold: #a4823f;
    --gold-soft: #c3a463;
    --gold-faint: rgba(164, 130, 63, 0.14);
    --line: #e9e4da;
    --navy: #101623;
    --r-sm: 14px;
    --r-md: 20px;
    --r-lg: 28px;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ---------- typography helpers ---------- */
.eyebrow {
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 20px;
}
.eyebrow--light { color: var(--gold-soft); }

.section__title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4.4vw, 52px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}
.section__lead {
    max-width: 560px;
    color: var(--ink-soft);
    font-size: 17px;
}
.section__head { margin-bottom: 64px; }
.section__head--center {
    text-align: center;
}
.section__head--center .section__lead { margin: 0 auto; }

/* ============================================================
   2.5D ICONS — layered stroke: gold shadow copy + ink copy
   ============================================================ */
.ico {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
    transform-origin: center;
    will-change: transform;
}
.ico g, .ico path, .ico circle, .ico rect {
    transform-box: fill-box;
    transform-origin: center;
}
/* pause all icon animations while off-screen (perf) */
.ico, .ico * { animation-play-state: paused; }
.ico.in-view, .ico.in-view * { animation-play-state: running; }
.ico__shadow {
    stroke: var(--gold-soft);
    stroke-width: 2;
    opacity: 0.45;
    transform: translate(2.6px, 3.2px);
    transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}
.ico__main {
    stroke: var(--ink);
    stroke-width: 2;
}
.ico__dots circle { fill: currentColor; stroke: none; }
.ico__shadow .ico__dots circle { fill: var(--gold-soft); }

/* stroke draw-in when revealed */
.ico [pathLength] {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}
.reveal.is-visible .ico [pathLength],
.icon-draw.is-visible [pathLength],
.icon-draw--auto [pathLength] {
    animation: draw 1.5s var(--ease) forwards;
}
.reveal.is-visible .ico [pathLength]:nth-of-type(2) { animation-delay: 0.12s; }
.reveal.is-visible .ico [pathLength]:nth-of-type(3) { animation-delay: 0.24s; }
.reveal.is-visible .ico [pathLength]:nth-of-type(4) { animation-delay: 0.36s; }
.reveal.is-visible .ico [pathLength]:nth-of-type(n+5) { animation-delay: 0.48s; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ---- idle animations (always running) ---- */
.ico--land      { animation: ico-bob 3.4s ease-in-out infinite; }
.ico--commerce  { animation: ico-breathe 4.2s ease-in-out infinite; }
.ico--antitrust { animation: ico-sway 4.6s ease-in-out infinite; }
.ico--labor     { animation: ico-bob 3.8s ease-in-out infinite; }
.ico--civil     { animation: ico-pulse 3.6s ease-in-out infinite; }
.ico--gavel     { animation: ico-knock 3.2s ease-in-out infinite; }
.ico--analysis  { animation: ico-orbit 5s ease-in-out infinite; }
.ico--clock .ico__hand {
    animation: ico-spin 10s linear infinite;
    transform-box: view-box;
    transform-origin: 50% 50%;
}
.ico--phone     { animation: ico-ring 4.4s ease-in-out infinite; }
.ico--mail      { animation: ico-bob 4s ease-in-out infinite; }
.ico--chat .d   { animation: ico-blink 1.6s ease-in-out infinite; }
.ico--chat .d--2 { animation-delay: 0.25s; }
.ico--chat .d--3 { animation-delay: 0.5s; }

@keyframes ico-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}
@keyframes ico-breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.045); }
}
@keyframes ico-sway {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}
@keyframes ico-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.055); }
}
@keyframes ico-knock {
    0%, 14%, 100% { transform: rotate(0); }
    5% { transform: rotate(-13deg); }
    9% { transform: rotate(2deg); }
}
@keyframes ico-orbit {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(2.5px, -2px); }
    50% { transform: translate(0, -3.5px); }
    75% { transform: translate(-2.5px, -1.5px); }
}
@keyframes ico-spin { to { transform: rotate(360deg); } }
@keyframes ico-ring {
    0%, 12%, 100% { transform: rotate(0); }
    2% { transform: rotate(-9deg); }
    4% { transform: rotate(8deg); }
    6% { transform: rotate(-6deg); }
    8% { transform: rotate(4deg); }
    10% { transform: rotate(-2deg); }
}
@keyframes ico-blink {
    0%, 100% { opacity: 0.25; }
    50% { opacity: 1; }
}

/* ---- icon chips ---- */
.chip {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    padding: 16px;
    border-radius: var(--r-md);
    background: linear-gradient(150deg, #ffffff 0%, #f4eee2 100%);
    border: 1px solid var(--line);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 10px 24px rgba(22, 24, 29, 0.06);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.5s var(--ease);
    flex-shrink: 0;
}
.chip--lg { width: 76px; height: 76px; padding: 18px; }
.chip--dark {
    background: linear-gradient(150deg, rgba(255,255,255,0.1) 0%, rgba(196,164,99,0.12) 100%);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 10px 24px rgba(0, 0, 0, 0.25);
    width: 60px; height: 60px; padding: 14px;
}
.chip--dark .ico__main { stroke: var(--gold-soft); }
.chip--dark .ico__shadow { stroke: rgba(255, 255, 255, 0.35); }

/* hover: chip lifts & tilts, shadow layer sinks deeper (more 2.5D) */
.practice-card:hover .chip,
.advantage:hover .chip,
.contact-line:hover .chip {
    transform: translateY(-5px) rotate(-4deg) scale(1.05);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 20px 36px rgba(164, 130, 63, 0.2);
}
.practice-card:hover .ico__shadow,
.advantage:hover .ico__shadow,
.contact-line:hover .ico__shadow {
    transform: translate(4.5px, 5.5px);
    opacity: 0.65;
}
/* hover: re-draw strokes + speed up idle motion */
.practice-card:hover .ico [pathLength],
.advantage:hover .ico [pathLength],
.contact-line:hover .ico [pathLength] {
    animation: draw 0.9s var(--ease) forwards;
}
/* (hover speed-up removed — changing animation-duration mid-flight causes visible jumps) */

/* ---------- header ---------- */
.header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    background: rgba(253, 252, 250, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.header.is-scrolled { border-bottom-color: var(--line); }
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
    gap: 32px;
}

.logo { display: flex; align-items: baseline; gap: 10px; }
.logo__mark {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--ink);
}
.logo__text {
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

/* nav lives OUTSIDE the header (Safari: backdrop-filter on header would
   trap a fixed overlay inside it) — on desktop it floats centered above it */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 84px;
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.nav__links { display: flex; gap: 36px; pointer-events: auto; }
.nav__footer { display: none; }
.nav__num { display: none; }
.nav__link {
    font-size: 14px;
    font-weight: 400;
    color: var(--ink-soft);
    letter-spacing: 0.02em;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s;
}
.nav__link::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.35s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { width: 100%; }

.header__phone {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    white-space: nowrap;
    padding: 10px 20px;
    border: 1px solid var(--line);
    border-radius: 999px;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.header__phone:hover { color: var(--gold); border-color: var(--gold-soft); background: var(--white); }

.burger { display: none; background: none; border: none; padding: 8px; position: relative; z-index: 210; }
.burger span {
    display: block;
    width: 24px; height: 1.5px;
    background: var(--ink);
    margin: 5px 0;
    transition: 0.3s var(--ease);
}
body.nav-open { overflow: hidden; }
/* while overlay is open: header goes on top, loses its frosted bar, logo inverts */
body.nav-open .header {
    z-index: 300;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
}
body.nav-open .logo__mark { color: var(--white); }
.logo__mark { transition: color 0.3s var(--ease); }

/* ---------- buttons ---------- */
.btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 999px;
    transition: background 0.35s var(--ease), color 0.35s var(--ease),
                border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    text-align: center;
    will-change: transform;
}
.btn--primary {
    background: var(--navy);
    color: var(--white);
}
.btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.14) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.7s var(--ease);
}
.btn--primary:hover::before { transform: translateX(100%); }
.btn--primary:hover {
    background: var(--gold);
    box-shadow: 0 14px 34px rgba(164, 130, 63, 0.3);
}
.btn--ghost {
    border-color: var(--line);
    color: var(--ink);
    background: var(--white);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--full { width: 100%; }

/* ---------- hero ---------- */
.hero {
    padding: 160px 0 90px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -220px; right: -180px;
    width: 640px; height: 640px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 164, 99, 0.12) 0%, transparent 65%);
    pointer-events: none;
}
.hero__inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 72px;
}
.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(42px, 5.6vw, 70px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.015em;
    margin-bottom: 28px;
}
.hero__title em {
    font-style: italic;
    color: var(--gold);
}
.hero__subtitle {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 520px;
    margin-bottom: 40px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__visual { position: relative; }
.hero__media {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 4 / 4.6;
    box-shadow: 0 40px 90px rgba(22, 24, 29, 0.16);
    will-change: transform;
}
.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}
.hero__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16, 22, 35, 0.55) 0%, transparent 45%);
}
.hero__badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px 14px 14px;
    background: rgba(253, 252, 250, 0.92);
    backdrop-filter: blur(10px);
    border-radius: var(--r-md);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}
.hero__badge-icon {
    width: 46px;
    height: 46px;
    color: var(--gold);
    flex-shrink: 0;
}
.hero__badge-icon svg { width: 100%; height: 100%; }
.hero__badge-text {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--ink);
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 36px 44px;
    box-shadow: 0 24px 60px rgba(22, 24, 29, 0.05);
}
.stat { text-align: center; }
.stat__num {
    display: block;
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
}
.stat__label {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ---------- marquee ---------- */
.marquee {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    padding: 22px 0;
    background: var(--white);
    position: relative;
}
.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--white), transparent); }
.marquee__track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: marquee 36s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
    font-family: var(--font-serif);
    font-size: 19px;
    font-style: italic;
    color: var(--ink-soft);
    white-space: nowrap;
}
.marquee__track i {
    font-family: var(--font-serif);
    font-style: normal;
    color: var(--gold);
    font-size: 16px;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { padding: 110px 0; }
.section--tinted {
    background: var(--bg-tint);
    border-radius: var(--r-lg);
    margin: 0 16px;
}

/* ---------- practice ---------- */
.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.practice-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 34px 32px 40px;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
    cursor: default;
}
.practice-card:hover {
    transform: translateY(-8px);
    border-color: rgba(164, 130, 63, 0.4);
    box-shadow: 0 30px 64px rgba(22, 24, 29, 0.1);
}
.practice-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 44px;
}
.practice-card__num {
    font-family: var(--font-serif);
    font-size: 15px;
    color: var(--muted);
    letter-spacing: 0.1em;
    transition: color 0.4s;
}
.practice-card:hover .practice-card__num { color: var(--gold); }
.practice-card__title {
    font-family: var(--font-serif);
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.25;
}
.practice-card__desc {
    font-size: 15px;
    color: var(--ink-soft);
}

/* ---------- statement ---------- */
.statement {
    background: var(--navy);
    color: var(--white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-radius: var(--r-lg);
    margin: 40px 16px;
}
.statement::before {
    content: '§';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-serif);
    font-size: 480px;
    line-height: 1;
    color: rgba(196, 164, 99, 0.06);
    pointer-events: none;
}
.statement__inner {
    text-align: center;
    max-width: 880px;
    position: relative;
}
.statement__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    border: 1px solid rgba(196, 164, 99, 0.4);
    border-radius: 50%;
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--gold-soft);
    margin-bottom: 36px;
    animation: ico-pulse 3.6s ease-in-out infinite;
}
.statement__title {
    font-family: var(--font-serif);
    font-size: clamp(30px, 4.2vw, 50px);
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 28px;
}
.statement__title em {
    font-style: italic;
    color: var(--gold-soft);
    position: relative;
    white-space: nowrap;
}
.statement__title em::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 100%; height: 1px;
    background: var(--gold-soft);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.2s var(--ease) 0.6s;
}
.reveal.is-visible .statement__title em::after { transform: scaleX(1); }
.statement__sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.04em;
}

/* ---------- about ---------- */
.about {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
}
.about__media { position: relative; }
.about__media > img {
    border-radius: var(--r-lg);
    aspect-ratio: 4 / 4.4;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 36px 80px rgba(22, 24, 29, 0.14);
}
.about__panel {
    position: absolute;
    right: -36px;
    bottom: -30px;
    max-width: 380px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 34px 32px;
    box-shadow: 0 28px 64px rgba(22, 24, 29, 0.14);
    will-change: transform;
}
.about__quote {
    font-family: var(--font-serif);
    font-size: 17px;
    font-style: italic;
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 16px;
}
.about__quote-author {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}
.about__text p { color: var(--ink-soft); margin-bottom: 18px; font-size: 16.5px; }
.about__leader {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}
.about__leader-avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold-soft);
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--gold-soft);
    box-shadow: 0 0 0 4px var(--gold-faint), 0 10px 24px rgba(22, 24, 29, 0.12);
}
/* photo is pre-cropped to the face — just fill the circle */
.about__leader-avatar img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.about__leader-initials { position: relative; }
.about__leader-name { font-weight: 500; font-size: 17px; color: var(--ink); }
.about__leader-role { font-size: 13.5px; color: var(--muted); letter-spacing: 0.04em; }

/* ---------- advantages ---------- */
.advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.advantage {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 40px 36px;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.advantage:hover {
    transform: translateY(-8px);
    border-color: rgba(164, 130, 63, 0.45);
    box-shadow: 0 28px 60px rgba(22, 24, 29, 0.09);
}
.advantage .chip { margin-bottom: 28px; }
.advantage__title {
    font-family: var(--font-serif);
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}
.advantage__desc { font-size: 15px; color: var(--ink-soft); }

/* ---------- contact / cta ---------- */
.section--cta {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-radius: var(--r-lg);
    margin: 40px 16px 0;
}
.section--cta::before {
    content: '';
    position: absolute;
    bottom: -260px; left: -160px;
    width: 560px; height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 164, 99, 0.1) 0%, transparent 65%);
    pointer-events: none;
}
.cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}
.cta__title {
    font-family: var(--font-serif);
    font-size: clamp(30px, 3.8vw, 46px);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}
.cta__lead { color: rgba(255, 255, 255, 0.65); font-size: 17px; max-width: 480px; margin-bottom: 44px; }

.cta__contacts { display: flex; flex-direction: column; gap: 20px; }
/* min-width: 0 lets grid/flex children shrink below their content width —
   without it the long unbreakable email stretches the layout past the viewport */
.cta > * { min-width: 0; }
.contact-line {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 0;
}
.contact-line > div { min-width: 0; }
.contact-line__label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-soft);
    font-weight: 500;
    margin-bottom: 2px;
}
.contact-line__value {
    display: block;
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--white);
    transition: color 0.3s;
    overflow-wrap: anywhere; /* long emails wrap instead of overflowing */
}
.contact-line:hover .contact-line__value { color: var(--gold-soft); }

/* ---------- form ---------- */
.cta__form-wrap { width: 100%; }
.form {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 44px 40px;
    color: var(--ink);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.3);
}
.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.field { display: block; margin-bottom: 18px; }
.field__label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}
.field__input {
    width: 100%;
    padding: 15px 18px;
    font: inherit;
    font-size: 15px;
    color: var(--ink);
    background: #f7f5f0;
    border: 1px solid transparent;
    border-radius: var(--r-sm);
    outline: none;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.field__input::placeholder { color: var(--muted); }
.field__input:focus {
    background: var(--white);
    border-color: var(--gold-soft);
    box-shadow: 0 0 0 4px var(--gold-faint);
}
.field__input--area { resize: vertical; min-height: 110px; }
.field__error {
    display: block;
    font-size: 12.5px;
    color: #b3383d;
    margin-top: 6px;
}
.form .btn { margin-top: 8px; }
.form__note {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    margin-top: 14px;
}
.form__success {
    background: #eef7ee;
    border: 1px solid #bfe3bf;
    color: #2e6b2e;
    border-radius: var(--r-sm);
    padding: 14px 18px;
    font-size: 14px;
    margin-bottom: 22px;
}

/* ---------- services page ---------- */
.page-hero {
    padding: 170px 0 70px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -220px; right: -180px;
    width: 640px; height: 640px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 164, 99, 0.12) 0%, transparent 65%);
    pointer-events: none;
}
.page-hero__inner { max-width: 800px; }
.page-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin-bottom: 24px;
}
.page-hero__title em { font-style: italic; color: var(--gold); }
.page-hero__lead {
    font-size: 17.5px;
    color: var(--ink-soft);
    max-width: 640px;
    margin-bottom: 36px;
}
.page-hero__pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
    padding: 10px 22px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    font-size: 13.5px;
    font-weight: 400;
    color: var(--ink-soft);
    transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.3s var(--ease);
}
.pill:hover {
    border-color: var(--gold-soft);
    color: var(--gold);
    transform: translateY(-2px);
}

.section--services { padding-top: 40px; }
.service-list { display: flex; flex-direction: column; gap: 28px; }
.service-block {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 52px 56px;
    scroll-margin-top: 110px;
    transition: box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.service-block:hover {
    border-color: rgba(164, 130, 63, 0.35);
    box-shadow: 0 28px 64px rgba(22, 24, 29, 0.08);
}
.service-block__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
}
.service-block__num {
    font-family: var(--font-serif);
    font-size: 15px;
    color: var(--muted);
    letter-spacing: 0.1em;
}
.service-block__title {
    font-family: var(--font-serif);
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}
.service-block__desc { font-size: 15.5px; color: var(--ink-soft); }

.service-block__prices {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    border-left: 1px solid var(--line);
    padding-left: 56px;
}
.price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 13px 0;
}
.price-row + .price-row { border-top: 1px dashed var(--line); }
.price-row__name { font-size: 15px; color: var(--ink); }
.price-row__dots { flex: 1; }
.price-row__price {
    font-family: var(--font-serif);
    font-size: 16.5px;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
}
.price-row__price--free {
    color: #2e7d46;
}
.services-note {
    margin-top: 28px;
    font-size: 13.5px;
    color: var(--muted);
    max-width: 640px;
}

/* practice card link */
.practice-card__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--gold);
    transition: gap 0.3s var(--ease), color 0.3s;
}
.practice-card__more:hover { gap: 14px; color: var(--ink); }

/* CTA banner (services page) */
.cta-banner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 56px;
    align-items: center;
}
.cta-banner__actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.btn--gold {
    background: var(--gold);
    color: var(--white);
}
.btn--gold:hover {
    background: var(--gold-soft);
    box-shadow: 0 14px 34px rgba(164, 130, 63, 0.35);
}
.btn--outline-light {
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
}
.btn--outline-light:hover { border-color: var(--gold-soft); color: var(--gold-soft); }

/* ---------- footer ---------- */
.footer {
    background: var(--bg);
    padding: 88px 0 0;
}
.footer__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
}
.logo--footer { margin-bottom: 18px; }
.footer__title {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 18px;
}
.footer__link {
    display: block;
    font-size: 15px;
    color: var(--ink-soft);
    margin-bottom: 10px;
    transition: color 0.3s;
}
.footer__link:hover { color: var(--gold); }
.footer__desc { font-size: 14px; color: var(--muted); }
.footer__bottom {
    border-top: 1px solid var(--line);
    padding: 24px 32px;
    font-size: 13px;
    color: var(--muted);
}

/* ---------- reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal--delay { transition-delay: 0.15s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.practice-grid .reveal:nth-child(2),
.advantages .reveal:nth-child(2) { transition-delay: 0.12s; }
.practice-grid .reveal:nth-child(3),
.advantages .reveal:nth-child(3) { transition-delay: 0.24s; }
.practice-grid .reveal:nth-child(4) { transition-delay: 0.1s; }
.practice-grid .reveal:nth-child(5) { transition-delay: 0.22s; }
.practice-grid .reveal:nth-child(6) { transition-delay: 0.34s; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .marquee__track { animation: none; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .ico, .ico * , .statement__mark { animation: none !important; }
    .ico [pathLength] { stroke-dashoffset: 0; }
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; gap: 48px; }
    .hero__media { aspect-ratio: 16 / 10; }
    .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .about { grid-template-columns: 1fr; gap: 72px; }
    .about__panel { right: 16px; bottom: -30px; }
    .cta { grid-template-columns: 1fr; gap: 48px; }
    .practice-grid { grid-template-columns: repeat(2, 1fr); }
    .advantages { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .header__inner { height: 72px; }
    .header__phone { display: none; }
    .burger { display: block; }

    /* --- full-screen overlay nav --- */
    .nav {
        position: fixed;
        inset: 0;
        height: auto;
        z-index: 200;
        background: var(--navy);
        flex-direction: column;
        align-items: stretch;
        justify-content: space-between;
        padding: 110px 28px 40px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        clip-path: circle(0% at calc(100% - 44px) 36px);
        -webkit-clip-path: circle(0% at calc(100% - 44px) 36px);
        transition: clip-path 0.7s var(--ease), opacity 0.4s var(--ease),
                    visibility 0s linear 0.7s;
    }
    .nav::before {
        content: '§';
        position: absolute;
        right: -60px;
        bottom: -80px;
        font-family: var(--font-serif);
        font-size: 380px;
        line-height: 1;
        color: rgba(196, 164, 99, 0.07);
        pointer-events: none;
    }
    .nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        clip-path: circle(150% at calc(100% - 44px) 36px);
        -webkit-clip-path: circle(150% at calc(100% - 44px) 36px);
        transition: clip-path 0.7s var(--ease), opacity 0.4s var(--ease),
                    visibility 0s;
    }
    .nav__links { flex-direction: column; gap: 0; }
    .nav__link {
        display: flex;
        align-items: baseline;
        gap: 16px;
        font-family: var(--font-serif);
        font-size: clamp(32px, 9vw, 44px);
        font-weight: 500;
        color: var(--white);
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.15s ease;
    }
    .nav__link::after { display: none; }
    .nav__link:hover, .nav__link:active { color: var(--gold-soft); }
    .nav.is-open .nav__link { opacity: 1; transform: translateY(0); }
    /* delays only for opacity & transform (entrance stagger) — color hover stays instant */
    .nav.is-open .nav__link:nth-child(1) { transition-delay: 0.1s, 0.1s, 0s; }
    .nav.is-open .nav__link:nth-child(2) { transition-delay: 0.16s, 0.16s, 0s; }
    .nav.is-open .nav__link:nth-child(3) { transition-delay: 0.22s, 0.22s, 0s; }
    .nav.is-open .nav__link:nth-child(4) { transition-delay: 0.28s, 0.28s, 0s; }
    .nav__num {
        display: inline;
        font-family: var(--font-sans);
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.2em;
        color: var(--gold-soft);
    }
    .nav__footer {
        display: block;
        position: relative;
        opacity: 0;
        transform: translateY(16px);
        transition: opacity 0.4s var(--ease) 0.34s, transform 0.4s var(--ease) 0.34s;
    }
    .nav.is-open .nav__footer { opacity: 1; transform: translateY(0); }
    .nav__contact {
        display: block;
        font-size: 17px;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 8px;
    }
    .nav__contact:hover { color: var(--gold-soft); }
    .nav__tagline {
        margin-top: 18px;
        font-family: var(--font-serif);
        font-style: italic;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.35);
    }

    .burger.is-open span { background: var(--white); }
    .burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .burger.is-open span:nth-child(2) { opacity: 0; }
    .burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    .hero { padding: 128px 0 64px; }
    .hero__stats { padding: 28px 24px; }
    .section { padding: 76px 0; }
    .section--tinted, .section--cta, .statement { margin-left: 8px; margin-right: 8px; }
    .statement { padding: 88px 0; }
    .practice-grid { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr; gap: 36px; }
    .form { padding: 32px 24px; }
    .form__row { grid-template-columns: 1fr; gap: 0; }
    .about__panel { position: static; max-width: none; margin-top: -60px; margin-left: 16px; margin-right: 16px; }
    .marquee__track span { font-size: 16px; }

    .page-hero { padding: 128px 0 48px; }
    .service-block {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 24px;
    }
    .service-block__prices { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 20px; }
    .cta-banner { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- small phones ---------- */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 60px 0; }
    .section__head { margin-bottom: 44px; }
    .section__lead { font-size: 15.5px; }
    .eyebrow { font-size: 11px; letter-spacing: 0.22em; }

    .hero { padding: 112px 0 52px; }
    .hero__subtitle { font-size: 16px; margin-bottom: 32px; }
    .hero__actions { flex-direction: column; align-items: stretch; }
    .hero__badge {
        left: 14px; right: 14px; bottom: 14px;
        gap: 10px;
        padding: 10px 14px 10px 10px;
    }
    .hero__badge-icon { width: 38px; height: 38px; }
    .hero__badge-text { font-size: 13px; }
    .hero__stats { padding: 24px 18px; gap: 24px 16px; }
    .stat__num { font-size: 30px; }
    .stat__label { font-size: 10.5px; }

    .marquee { padding: 16px 0; }
    .marquee::before, .marquee::after { width: 60px; }
    .marquee__track { gap: 24px; }
    .marquee__track span { font-size: 14px; }

    .statement { padding: 68px 0; }
    .statement__mark { width: 48px; height: 48px; font-size: 20px; margin-bottom: 26px; }
    .statement__sub { font-size: 14px; }

    .practice-card { padding: 26px 22px 30px; }
    .practice-card__top { margin-bottom: 30px; }
    .practice-card__title { font-size: 20px; }
    .chip { width: 58px; height: 58px; padding: 13px; }
    .chip--lg { width: 64px; height: 64px; padding: 15px; }

    .about { gap: 52px; }
    .about__panel { padding: 26px 22px; margin-left: 10px; margin-right: 10px; margin-top: -44px; }
    .about__quote { font-size: 15.5px; }
    .about__text p { font-size: 15.5px; }
    .about__leader-avatar { width: 60px; height: 60px; }

    .advantage { padding: 30px 24px; }
    .advantage .chip { margin-bottom: 22px; }

    .cta { gap: 40px; }
    .cta__lead { font-size: 15.5px; margin-bottom: 32px; }
    .cta__contacts { gap: 16px; }
    .contact-line { gap: 14px; }
    .contact-line__value { font-size: 18px; }
    .chip--dark { width: 52px; height: 52px; padding: 12px; }

    .form { padding: 26px 18px; border-radius: var(--r-md); }
    .field__input { padding: 13px 15px; }
    .btn { padding: 16px 32px; }

    .page-hero { padding: 112px 0 40px; }
    .page-hero__lead { font-size: 15.5px; }
    .pill { padding: 8px 16px; font-size: 12.5px; }
    .service-block { padding: 26px 18px; }
    .price-row__name { font-size: 14px; }
    .price-row__price { font-size: 15px; }

    .footer { padding-top: 64px; }
    .footer__inner { gap: 28px; padding-bottom: 40px; }
    .footer__bottom { padding: 20px 16px; font-size: 12px; }
}
