:root {
    --navy: #16202e;
    --navy-2: #1f2c3e;
    --graphite: #2a3647;
    --gold: #c2a25a;
    --gold-dark: #a9883f;
    --burgundy: #7a2230;
    --text: #1c2531;
    --muted: #5d6b7a;
    --line: #e3e7ec;
    --bg: #ffffff;
    --bg-soft: #f5f7f9;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 17px;
}

h1, h2, h3, .logo__name { font-family: Georgia, "Times New Roman", Times, serif; }

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }

a { color: inherit; text-decoration: none; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background .2s, color .2s, border-color .2s, transform .1s;
    text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn--sm { padding: 10px 18px; font-size: 15px; }
.btn--gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--ghost { background: #fff; color: var(--navy); border-color: rgba(255,255,255,.65); }
.btn--ghost:hover { background: rgba(255,255,255,.92); border-color: rgba(255,255,255,.92); }

/* Header */
.header {
    position: sticky; top: 0; z-index: 50;
    background: var(--navy);
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.header__inner { display: flex; align-items: center; gap: 24px; height: 76px; }
.logo { display: flex; flex-direction: column; line-height: 1.2; margin-right: auto; }
.logo__name { font-size: 19px; font-weight: 700; }
.logo__sub { font-size: 12px; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; }
.nav { display: flex; gap: 26px; }
.nav__link { font-size: 15px; color: rgba(255,255,255,.85); transition: color .2s; }
.nav__link:hover { color: var(--gold); }
.header__actions { display: flex; align-items: center; gap: 18px; }
.header__phone { font-weight: 700; font-size: 16px; white-space: nowrap; }
.header__phone:hover { color: var(--gold); }
.burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.burger span { width: 26px; height: 2px; background: #fff; display: block; transition: .25s; }

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--graphite) 100%);
    color: #fff;
    padding: 80px 0 90px;
}
.hero__inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: center; }
.hero__title { font-size: 42px; line-height: 1.15; margin-bottom: 20px; }
.hero__subtitle { font-size: 19px; color: rgba(255,255,255,.85); margin-bottom: 24px; max-width: 560px; }
.hero__bullets {
    list-style: none;
    margin: 0 0 34px;
    padding: 0;
    display: grid;
    gap: 12px;
    max-width: 640px;
}
.hero__bullets li {
    position: relative;
    padding-left: 28px;
    color: rgba(255,255,255,.86);
    font-size: 17px;
}
.hero__bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-weight: 800;
}
.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__fine { margin-top: 18px; color: rgba(255,255,255,.75); font-size: 15px; }
.hero__phone { color: #fff; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.hero__phone:hover { color: var(--gold); }
.hero__card { position: relative; }
.hero__photo {
    aspect-ratio: 4 / 5;
    background: linear-gradient(160deg, var(--navy-2), #11192382);
    border: 1px solid rgba(194,162,90,.35);
    border-radius: 8px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 14px;
}
.hero__monogram {
    font-family: 'PT Serif', serif; font-size: 96px; color: var(--gold);
    width: 150px; height: 150px; border: 2px solid var(--gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.hero__photo-note { color: rgba(255,255,255,.4); font-size: 14px; letter-spacing: .05em; }
.hero__badge {
    position: absolute; bottom: -22px; left: -22px;
    background: var(--gold); color: var(--navy);
    border-radius: 6px; padding: 14px 22px; box-shadow: 0 14px 30px rgba(0,0,0,.25);
    display: flex; flex-direction: column; line-height: 1.1;
}
.hero__badge-num { font-family: 'PT Serif', serif; font-size: 30px; font-weight: 700; }
.hero__badge-text { font-size: 13px; font-weight: 700; }

/* Sections */
section { padding: 84px 0; }
.section-head { margin-bottom: 46px; }
.section-tag {
    display: inline-block; color: var(--gold-dark); font-weight: 700;
    text-transform: uppercase; letter-spacing: .12em; font-size: 13px; margin-bottom: 12px;
}
.section-title { font-size: 32px; line-height: 1.2; color: var(--navy); }

/* About */
.about { background: var(--bg-soft); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.about__text p { font-size: 18px; color: var(--text); margin-bottom: 18px; }
.about__text p:first-child { font-style: italic; color: var(--navy); }
.facts { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.fact { display: flex; gap: 14px; align-items: flex-start; }
.fact__icon {
    font-size: 22px; color: var(--gold-dark); flex-shrink: 0;
    width: 44px; height: 44px; background: #fff; border: 1px solid var(--line);
    border-radius: 6px; display: flex; align-items: center; justify-content: center;
}
.fact__title { font-size: 17px; margin-bottom: 4px; color: var(--navy); }
.fact__desc { font-size: 15px; color: var(--muted); }

/* Practice cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
    background: #fff; border: 1px solid var(--line); border-radius: 8px;
    padding: 34px 30px; border-top: 3px solid var(--gold);
    transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: 0 18px 40px rgba(22,32,46,.1); transform: translateY(-3px); }
.card__title { font-size: 21px; color: var(--navy); margin-bottom: 14px; }
.card__desc { color: var(--muted); font-size: 16px; }

/* Prices */
.prices { background: var(--bg-soft); }
.prices__lead { font-size: 18px; color: var(--muted); margin-bottom: 32px; max-width: 640px; }
.price-card {
    background: var(--navy); color: #fff; border-radius: 10px;
    padding: 40px; display: flex; justify-content: space-between; align-items: center;
    gap: 30px; flex-wrap: wrap; border-left: 4px solid var(--gold);
}
.price-card__title { font-size: 24px; margin-bottom: 6px; }
.price-card__sub { color: var(--gold); font-weight: 700; margin-bottom: 14px; }
.price-card__note { color: rgba(255,255,255,.7); font-size: 15px; max-width: 460px; }
.price-card__price { display: flex; flex-direction: column; align-items: flex-end; white-space: nowrap; }
.price-card__from { color: rgba(255,255,255,.7); font-size: 16px; }
.price-card__value { font-family: 'PT Serif', serif; font-size: 40px; font-weight: 700; color: var(--gold); }
.prices__cta { margin-top: 34px; text-align: center; }

/* FAQ */
.accordion { max-width: 820px; }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__q {
    width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
    font-family: 'PT Serif', serif; font-size: 19px; color: var(--navy);
    padding: 24px 40px 24px 0; position: relative; display: flex; justify-content: space-between;
}
.accordion__icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; margin-top: 6px; }
.accordion__icon::before, .accordion__icon::after {
    content: ''; position: absolute; background: var(--gold-dark); transition: transform .25s;
}
.accordion__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.accordion__icon::after { top: 0; left: 8px; width: 2px; height: 18px; }
.accordion__item.open .accordion__icon::after { transform: scaleY(0); }
.accordion__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.accordion__a p { padding: 0 40px 24px 0; color: var(--muted); font-size: 16px; }

/* Contacts */
.contacts__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.contacts__row { margin-bottom: 24px; }
.contacts__label {
    display: block; text-transform: uppercase; letter-spacing: .1em; font-size: 12px;
    color: var(--gold-dark); font-weight: 700; margin-bottom: 6px;
}
.contacts__link { font-weight: 700; font-size: 18px; color: var(--navy); }
.contacts__link:hover { color: var(--gold-dark); }
.contacts__map { min-height: 360px; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); }
.contacts__map iframe { display: block; width: 100%; height: 100%; min-height: 360px; border: 0; }

/* Map embed (loads on click for speed) */
.map-embed { width: 100%; height: 100%; min-height: 360px; display: flex; }
.map-embed__placeholder {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f6f8fb 100%);
}
.map-embed__title { font-family: Georgia, "Times New Roman", Times, serif; color: var(--navy); font-size: 22px; margin-bottom: 6px; }
.map-embed__desc { color: var(--muted); margin-bottom: 18px; }
.map-embed__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.map-embed__note { margin-top: 14px; font-size: 13px; color: rgba(93,107,122,.95); }

/* Footer */
.footer { background: var(--navy); color: rgba(255,255,255,.8); padding: 50px 0 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; padding-bottom: 36px; }
.footer__name { font-family: 'PT Serif', serif; color: #fff; font-size: 18px; margin-bottom: 6px; }
.footer__reg, .footer__addr { font-size: 14px; color: rgba(255,255,255,.6); }
.footer__col { display: flex; flex-direction: column; gap: 8px; }
.footer__link { font-size: 15px; color: rgba(255,255,255,.8); }
.footer__link:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; font-size: 13px; color: rgba(255,255,255,.5); }

/* Floating call button */
.float-call {
    position: fixed; right: 22px; bottom: 22px; z-index: 60;
    width: 58px; height: 58px; border-radius: 50%;
    background: var(--gold); color: #fff;
    display: none; align-items: center; justify-content: center;
    box-shadow: 0 10px 26px rgba(0,0,0,.3);
}
.float-call__icon { font-size: 26px; }

/* Responsive */
@media (max-width: 900px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero__card { max-width: 320px; margin: 0 auto; }
    .about__grid, .contacts__grid { grid-template-columns: 1fr; }
    .cards { grid-template-columns: 1fr; }
    .nav {
        position: fixed; top: 76px; right: 0; left: 0;
        background: var(--navy); flex-direction: column; gap: 0;
        padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .3s;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .nav.open { max-height: 320px; }
    .nav__link { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); width: 100%; }
    .header__actions { display: none; }
    .burger { display: flex; margin-left: auto; }
    .float-call { display: flex; }
}

@media (max-width: 560px) {
    body { font-size: 16px; }
    .hero { padding: 54px 0 70px; }
    .hero__title { font-size: 31px; }
    .hero__subtitle { font-size: 17px; }
    .hero__bullets li { font-size: 16px; }
    .hero__buttons .btn { width: 100%; }
    section { padding: 56px 0; }
    .section-title { font-size: 26px; }
    .facts { grid-template-columns: 1fr; }
    .price-card { padding: 28px; }
    .price-card__price { align-items: flex-start; }
    .hero__badge { left: 0; }
}
