/* ============================================================
   ВСЁ в ГОЛОВЕ — стили лендинга
   ============================================================ */

:root {
    --c-wine:        #7a0d1f;
    --c-wine-deep:   #5a0a17;
    --c-wine-dark:   #3d0610;
    --c-black-soft:  #1a0307;
    --c-cream:       #f5e9dc;
    --c-cream-soft:  #fbf3ea;
    --c-text:        #2c1418;
    --c-text-soft:   #5a4044;
    --c-border:      rgba(122, 13, 31, 0.15);
    --c-accent:      #b8324a;
    --c-success:     #2d6a4f;
    --c-error:       #9a1626;

    --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius:       18px;
    --radius-lg:    32px;
    --shadow-sm:    0 4px 14px rgba(58, 6, 16, 0.08);
    --shadow-md:    0 12px 32px rgba(58, 6, 16, 0.12);
    --shadow-lg:    0 24px 60px rgba(58, 6, 16, 0.18);

    --container:    1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--c-text);
    background: var(--c-cream);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
ul { list-style: none; }
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Кнопки ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: none;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
    white-space: nowrap;
}
.btn--primary {
    background: linear-gradient(135deg, var(--c-wine) 0%, var(--c-wine-deep) 100%);
    color: var(--c-cream);
    box-shadow: 0 8px 22px rgba(122, 13, 31, 0.28);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(122, 13, 31, 0.38);
}
.btn--ghost {
    background: transparent;
    color: var(--c-wine-deep);
    border: 1.5px solid var(--c-wine-deep);
}
.btn--ghost:hover {
    background: var(--c-wine-deep);
    color: var(--c-cream);
    transform: translateY(-1px);
}
.btn--small  { padding: 10px 22px; font-size: 14px; }
.btn--full   { width: 100%; }

/* ---------- Кикер и заголовки ---------- */
.kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-wine);
    font-weight: 500;
    padding-bottom: 12px;
    position: relative;
    margin-bottom: 18px;
}
.kicker::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 0;
    width: 32px; height: 2px;
    background: var(--c-wine);
}
.kicker--light { color: rgba(245, 233, 220, 0.85); }
.kicker--light::after { background: var(--c-cream); }

.section__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(28px, 4.5vw, 56px);
    line-height: 1.1;
    color: var(--c-wine-deep);
    letter-spacing: -0.01em;
}
.section__title--light { color: var(--c-cream); }

.section__head { margin-bottom: 56px; max-width: 760px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head--center .kicker::after { left: 50%; transform: translateX(-50%); }

.section__lead {
    margin-top: 18px;
    font-size: 17px;
    color: var(--c-text-soft);
    max-width: 680px;
}
.section__head--center .section__lead { margin-left: auto; margin-right: auto; }

.section { padding: 110px 0; position: relative; }

/* ---------- Анимация появления ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s ease, transform .9s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Логотип ---------- */
.logo-mark {
    width: auto;
    height: 100%;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}
.nav__logo-img {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}
.logo-mark--footer {
    height: 52px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

/* ============================================================
   НАВИГАЦИЯ
   ============================================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 14px 0;
    background: rgba(245, 233, 220, 0.88);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(122, 13, 31, 0.08);
    transition: box-shadow .3s ease, background .3s ease, padding .3s ease;
}
.nav--scrolled {
    background: rgba(245, 233, 220, 0.96);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__brand {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--c-wine-deep);
    letter-spacing: 0.04em;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 15px;
    font-weight: 500;
}
.nav__menu > a {
    color: var(--c-text);
    position: relative;
    padding: 4px 0;
    transition: color .25s ease;
}
.nav__menu > a:hover { color: var(--c-wine); }
.nav__menu > a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1.5px;
    background: var(--c-wine);
    transition: width .3s ease;
}
.nav__menu > a:not(.btn):hover::after { width: 100%; }

.nav__cta {
    color: var(--c-wine-deep);
    border: 1.5px solid var(--c-wine-deep);
    background: transparent;
}
.nav__cta:hover {
    background: linear-gradient(135deg, var(--c-wine) 0%, var(--c-wine-deep) 100%);
    color: var(--c-cream);
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(122, 13, 31, 0.22);
    transform: translateY(-1px);
}
.nav--scrolled .nav__cta {
    background: linear-gradient(135deg, var(--c-wine) 0%, var(--c-wine-deep) 100%);
    color: var(--c-cream);
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(122, 13, 31, 0.22);
}

/* Бургер */
.nav__toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-wine-deep);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease, background .3s ease;
}
.nav__toggle.is-active span { background: var(--c-cream); }
.nav__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-active span:nth-child(2) { opacity: 0; }
.nav__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu-btn { display: none; }
.mobile-menu-socials { display: none; }

/* ============================================================
   МОБИЛЬНОЕ МЕНЮ
   ============================================================ */
@media (max-width: 880px) {
    .nav__toggle { display: flex; }
    .nav__cta { display: none; }

    .nav__menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(160deg, var(--c-wine) 0%, var(--c-wine-deep) 60%, var(--c-black-soft) 100%);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 96px 32px 32px;
        transform: translateX(100%);
        transition: transform .4s cubic-bezier(.6, .05, .2, .95);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }
    .nav__menu.is-active { transform: translateX(0); }

    /* Текстовые ссылки меню */
    .nav__menu > a:not(.mobile-menu-btn) {
        display: block;
        width: 100%;
        padding: 16px 0;
        font-size: 17px;
        color: var(--c-cream);
        border-bottom: 1px solid rgba(245, 233, 220, 0.12);
        transition: color .25s ease, padding-left .25s ease;
    }
    .nav__menu > a:not(.mobile-menu-btn):hover {
        color: #fff;
        padding-left: 6px;
    }
    .nav__menu > a:not(.mobile-menu-btn)::after { display: none; }

    /* Кнопка "Записаться" в мобильном меню */
    .mobile-menu-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        margin-top: 28px;
        background: var(--c-cream);
        color: var(--c-wine-deep) !important;
        padding: 14px 28px !important;
        border-radius: 999px;
        font-weight: 600 !important;
        font-size: 15px;
        border: none !important;
        text-align: center;
        transition: background .25s ease, transform .25s ease;
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
    }
    .mobile-menu-btn:hover {
        background: #fff;
        color: var(--c-wine-deep) !important;
        transform: translateY(-1px);
    }

    /* Соцсети внизу меню */
.mobile-menu-socials {
    display: flex !important;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
    padding-top: 24px;
    padding-bottom: 8px;
    border-top: 1px solid rgba(245, 233, 220, 0.12);
}
    .mobile-menu-socials a {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(245, 233, 220, 0.08);
        border: 1px solid rgba(245, 233, 220, 0.18);
        display: flex !important;
        align-items: center;
        justify-content: center;
        color: var(--c-cream);
        padding: 0 !important;
        transition: background .25s ease, transform .25s ease, border-color .25s ease, color .25s ease;
    }
    .mobile-menu-socials a:hover {
        background: var(--c-cream);
        color: var(--c-wine-deep);
        border-color: var(--c-cream);
        transform: translateY(-2px);
        padding-left: 0 !important;
    }
    .mobile-menu-socials a::after { display: none !important; }
    .mobile-menu-socials svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
    }

    body.menu-open { overflow: hidden; }
    body.menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(26, 3, 7, 0.55);
        z-index: 95;
        animation: fadeIn .3s ease;
    }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
}

/* ============================================================
   ГЕРОЙ
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--c-cream);
    padding: 140px 0 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero__shape { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero__shape svg { width: 100%; height: 100%; }
.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}
.hero__content { color: var(--c-cream); padding-right: 24px; }
.hero__eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(245, 233, 220, 0.75);
    padding: 8px 18px;
    border: 1px solid rgba(245, 233, 220, 0.3);
    border-radius: 999px;
    margin-bottom: 28px;
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(48px, 9vw, 120px);
    font-weight: 600;
    line-height: 0.95;
    margin-bottom: 24px;
    color: var(--c-cream);
}
.hero__subtitle {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.4vw, 26px);
    font-weight: 400;
    line-height: 1.35;
    color: rgba(245, 233, 220, 0.95);
    margin-bottom: 24px;
    max-width: 560px;
}
.hero__text {
    font-size: 15.5px;
    color: rgba(245, 233, 220, 0.78);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 40px;
}
.hero__actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero__note { font-size: 14px; color: rgba(245, 233, 220, 0.7); }

.hero__visual { display: flex; justify-content: center; align-items: center; }
.hero__logo-wrap {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px;
}
.hero__logo-wrap::before, .hero__logo-wrap::after {
    content: ''; position: absolute; border-radius: 50%; pointer-events: none;
}
.hero__logo-wrap::before {
    inset: 0;
    border: 1px solid rgba(122, 13, 31, 0.2);
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.6), transparent 70%);
}
.hero__logo-wrap::after { inset: 18px; border: 1px dashed rgba(122, 13, 31, 0.25); }
.hero__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 14px 30px rgba(122, 13, 31, 0.25));
    position: relative;
    z-index: 1;
}

/* ============================================================
   О ПРОЕКТЕ
   ============================================================ */
.section--about { background: var(--c-cream); }
.about__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}
.about__lead { font-size: 19px; line-height: 1.7; color: var(--c-text); }
.about__quote {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.6vw, 30px);
    line-height: 1.35;
    color: var(--c-wine-deep);
    font-style: italic;
    padding: 32px 36px;
    border-left: 3px solid var(--c-wine);
    background: var(--c-cream-soft);
    border-radius: 0 var(--radius) var(--radius) 0;
}

/* ============================================================
   ОБО МНЕ
   ============================================================ */
.section--me { background: var(--c-cream-soft); position: relative; }
.section--me::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--c-cream), transparent);
}
.me__layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 72px;
    align-items: center;
}
.me__photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
    background: var(--c-cream);
}
.me__photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}
.me__photo:hover img { transform: scale(1.03); }
.me__photo-deco {
    position: absolute;
    bottom: -30px; right: -30px;
    width: 140px; height: 140px;
    border: 2px solid var(--c-wine);
    border-radius: 50%;
    opacity: 0.18;
    pointer-events: none;
}
.me__photo::before {
    content: '';
    position: absolute;
    top: -24px; left: -24px;
    width: 80px; height: 80px;
    border-top: 3px solid var(--c-wine);
    border-left: 3px solid var(--c-wine);
    border-top-left-radius: var(--radius);
    z-index: 2;
    pointer-events: none;
}
.facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 36px;
}
.facts__item {
    font-size: 13px;
    padding: 10px 14px;
    background: rgba(122, 13, 31, 0.06);
    color: var(--c-wine-deep);
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
}
.me__text p {
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--c-text);
    margin-top: 18px;
}
.me__text .section__title { margin-bottom: 8px; }

/* ============================================================
   ЗАПРОСЫ
   ============================================================ */
.section--requests { background: var(--c-cream); }
.requests {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}
.requests__item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: var(--c-cream-soft);
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.requests__item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-wine);
}
.requests__num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--c-wine);
    line-height: 1;
    flex-shrink: 0;
}
.requests__text { font-size: 15px; font-weight: 500; color: var(--c-text); }

/* ============================================================
   УСЛУГИ
   ============================================================ */
.section--services {
    background: linear-gradient(180deg, var(--c-cream-soft) 0%, var(--c-cream) 100%);
}
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.service-card {
    background: #fff;
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform .35s ease, box-shadow .35s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--c-border);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--c-wine), var(--c-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(122, 13, 31, 0.08), rgba(184, 50, 74, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-wine);
    margin-bottom: 20px;
}
.service-card__icon svg { width: 30px; height: 30px; }
.service-card__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 22px;
    color: var(--c-wine-deep);
    margin-bottom: 8px;
    line-height: 1.25;
}
.service-card__price {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--c-wine);
    background: rgba(122, 13, 31, 0.08);
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
}
.service-card__desc { font-size: 14.5px; color: var(--c-text-soft); line-height: 1.65; }
.services__note {
    margin-top: 36px;
    text-align: center;
    font-size: 14px;
    color: var(--c-text-soft);
    font-style: italic;
}

/* ============================================================
   ФОРМАТ РАБОТЫ
   ============================================================ */
.section--format { background: var(--c-cream); }
.format-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.format-card {
    padding: 32px 28px;
    background: var(--c-cream-soft);
    border-radius: var(--radius);
    border-top: 3px solid var(--c-wine);
    transition: transform .3s ease, box-shadow .3s ease;
}
.format-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.format-card__num {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 500;
    color: var(--c-wine);
    line-height: 1;
    display: block;
    margin-bottom: 12px;
    opacity: 0.7;
}
.format-card__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 20px;
    color: var(--c-wine-deep);
    margin-bottom: 8px;
}
.format-card__desc { font-size: 14.5px; color: var(--c-text-soft); line-height: 1.6; }

/* ============================================================
   МОЛОДЁЖНОЕ НАПРАВЛЕНИЕ
   ============================================================ */
.section--youth {
    position: relative;
    color: var(--c-cream);
    overflow: hidden;
    background: var(--c-wine-deep);
    padding: 130px 0;
}
.youth__bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at top right, rgba(184, 50, 74, 0.4) 0%, transparent 60%),
        linear-gradient(135deg, var(--c-wine) 0%, var(--c-wine-deep) 50%, var(--c-black-soft) 100%);
}
.section--youth::before {
    content: '';
    position: absolute;
    top: -1px; left: 0; right: 0;
    height: 80px;
    background: var(--c-cream);
    clip-path: ellipse(70% 100% at 50% 0%);
    z-index: 1;
}
.section--youth::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 80px;
    background: var(--c-cream-soft);
    clip-path: ellipse(70% 100% at 50% 100%);
    z-index: 1;
}
.youth__inner {
    position: relative;
    z-index: 2;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}
.youth__photo {
    position: relative;
    margin: 36px auto 40px;
    max-width: 720px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    aspect-ratio: 16 / 10;
}
.youth__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}
.youth__photo:hover img { transform: scale(1.04); }
.youth__photo::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(245, 233, 220, 0.2);
    border-radius: calc(var(--radius-lg) - 12px);
    pointer-events: none;
}
.youth__lead {
    font-size: 17.5px;
    color: rgba(245, 233, 220, 0.85);
    line-height: 1.75;
    margin: 0 auto 40px;
    max-width: 720px;
}
.youth__subtitle {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--c-cream);
}
.youth__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}
.youth__list li {
    padding: 10px 22px;
    background: rgba(245, 233, 220, 0.1);
    border: 1px solid rgba(245, 233, 220, 0.2);
    border-radius: 999px;
    font-size: 14.5px;
    color: var(--c-cream);
    backdrop-filter: blur(8px);
    transition: background .25s ease, transform .25s ease;
}
.youth__list li:hover {
    background: rgba(245, 233, 220, 0.18);
    transform: translateY(-2px);
}
.youth__quote {
    font-family: var(--font-display);
    font-size: 22px;
    font-style: italic;
    color: rgba(245, 233, 220, 0.95);
    line-height: 1.5;
    max-width: 720px;
    margin: 0 auto;
}

/* ============================================================
   ОПЫТ
   ============================================================ */
.section--experience { background: var(--c-cream-soft); }
.experience__text {
    font-size: 17px;
    line-height: 1.75;
    color: var(--c-text);
    max-width: 820px;
    margin: 0 auto 56px;
    text-align: center;
}
.experience__pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.experience__pillar {
    text-align: center;
    padding: 36px 24px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
}
.experience__pillar:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.experience__num {
    display: block;
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 500;
    color: var(--c-wine);
    line-height: 1;
    margin-bottom: 8px;
}
.experience__label { font-size: 14px; color: var(--c-text-soft); letter-spacing: 0.04em; }

/* ============================================================
   ДОКУМЕНТЫ
   ============================================================ */
.section--docs { background: var(--c-cream); }

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.doc-card {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(58, 6, 16, 0.08);
    border: 1px solid var(--c-border);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    cursor: pointer;
}
.doc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(58, 6, 16, 0.18);
    border-color: var(--c-wine);
}

/* Миниатюра — полное изображение, никакой обрезки */
.doc-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    padding: 8px;
    transition: transform .5s ease;
}
.doc-card:hover img {
    transform: scale(1.03);
}

/* Иконка PDF, когда нет миниатюры */
.doc-card__pdf-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--c-cream-soft) 0%, #fff 100%);
    color: var(--c-wine);
}
.doc-card__pdf-icon svg {
    width: 50%;
    max-width: 100px;
    filter: drop-shadow(0 8px 20px rgba(122, 13, 31, 0.15));
    transition: transform .5s ease;
}
.doc-card:hover .doc-card__pdf-icon svg {
    transform: translateY(-4px) scale(1.04);
}

/* Оверлей при наведении: только иконка лупы */
.doc-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(58, 6, 16, 0.4);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
}
.doc-card:hover .doc-card__overlay { opacity: 1; }

.doc-card__overlay-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(245, 233, 220, 0.95);
    color: var(--c-wine-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.85);
    transition: transform .35s cubic-bezier(.2, .8, .2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.doc-card:hover .doc-card__overlay-icon {
    transform: scale(1);
}
.doc-card__overlay-icon svg {
    width: 22px;
    height: 22px;
}

.docs-empty {
    text-align: center;
    padding: 48px 24px;
    color: var(--c-text-soft);
    font-style: italic;
    background: var(--c-cream-soft);
    border: 1px dashed var(--c-border);
    border-radius: var(--radius);
    font-size: 15.5px;
}

/* ============================================================
   ЛАЙТБОКС
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 2, 6, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 80px 100px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__inner {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.lightbox__img {
    max-width: 100%;
    max-height: calc(100vh - 200px);
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    background: var(--c-cream);
    animation: lbZoom .4s cubic-bezier(.2, .8, .2, 1);
}
@keyframes lbZoom {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}
.lightbox__caption {
    color: rgba(245, 233, 220, 0.85);
    font-size: 14.5px;
    text-align: center;
    max-width: 600px;
}
.lightbox__close {
    position: absolute;
    top: 24px; right: 24px;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(245, 233, 220, 0.1);
    border: 1px solid rgba(245, 233, 220, 0.25);
    color: var(--c-cream);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease, border-color .25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox__close:hover {
    background: rgba(245, 233, 220, 0.2);
    border-color: rgba(245, 233, 220, 0.5);
    transform: rotate(90deg);
}
.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(245, 233, 220, 0.08);
    border: 1px solid rgba(245, 233, 220, 0.2);
    color: var(--c-cream);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease, border-color .25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}
.lightbox__nav:hover {
    background: rgba(245, 233, 220, 0.18);
    border-color: rgba(245, 233, 220, 0.45);
}
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__nav--prev:hover { transform: translateY(-50%) translateX(-2px); }
.lightbox__nav--next:hover { transform: translateY(-50%) translateX(2px); }

/* ============================================================
   КОНТАКТЫ + ФОРМА
   ============================================================ */
.section--contact {
    background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-cream-soft) 100%);
}
.contact__layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: start;
}
.contact__lead {
    font-size: 16.5px;
    color: var(--c-text-soft);
    line-height: 1.7;
    margin: 18px 0 32px;
}
.contact__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--c-border);
}
.contact__item {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--c-border);
    transition: background .25s ease, padding-left .25s ease;
}
.contact__item:hover {
    padding-left: 8px;
    background: linear-gradient(90deg, rgba(122, 13, 31, 0.03), transparent 80%);
}
.contact__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--c-wine);
    font-weight: 600;
}
.contact__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--c-text);
    font-size: 15.5px;
    font-weight: 500;
    transition: color .25s ease, gap .25s ease;
    min-width: 0;
}
.contact__link-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: 1px solid transparent;
    transition: border-color .25s ease;
    padding-bottom: 2px;
}
.contact__link-arrow {
    flex-shrink: 0;
    font-size: 14px;
    color: var(--c-wine);
    opacity: 0.6;
    transition: transform .25s ease, opacity .25s ease;
}
.contact__link:hover {
    color: var(--c-wine);
    gap: 14px;
}
.contact__link:hover .contact__link-text {
    border-bottom-color: var(--c-wine);
}
.contact__link:hover .contact__link-arrow {
    transform: translate(2px, -2px);
    opacity: 1;
}

/* ============================================================
   КНОПКИ СВЯЗИ (CTA-buttons вместо формы обратной связи)
   ============================================================ */
.contact__layout--single {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
}

.contact-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 32px;
}

.contact-cta__btn {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    color: var(--c-text);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.contact-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-wine);
    background: linear-gradient(135deg, #fff 0%, var(--c-cream-soft) 100%);
}

.contact-cta__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--c-wine) 0%, var(--c-wine-deep) 100%);
    color: #fff;
    border-radius: 14px;
    transition: transform .3s ease;
}
.contact-cta__btn:hover .contact-cta__icon {
    transform: scale(1.06) rotate(-3deg);
}
.contact-cta__icon svg {
    width: 24px;
    height: 24px;
}

.contact-cta__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.contact-cta__title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    color: var(--c-wine-deep);
    line-height: 1.2;
}
.contact-cta__sub {
    font-size: 13.5px;
    color: var(--c-text-soft);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-cta__arrow {
    flex-shrink: 0;
    font-size: 20px;
    color: var(--c-wine);
    opacity: 0.5;
    transition: transform .3s ease, opacity .3s ease;
}
.contact-cta__btn:hover .contact-cta__arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* ============================================================
   ФУТЕР
   ============================================================ */
.footer {
    background: var(--c-black-soft);
    color: rgba(245, 233, 220, 0.7);
    padding: 56px 0 32px;
}
.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}
.footer__brand { display: flex; align-items: center; gap: 16px; }
.footer__name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--c-cream);
    letter-spacing: 0.04em;
}
.footer__sub {
    font-size: 13px;
    color: rgba(245, 233, 220, 0.6);
    margin-top: 2px;
}
.footer__links { display: flex; gap: 28px; font-size: 14px; }
.footer__links a { transition: color .25s ease; }
.footer__links a:hover { color: var(--c-cream); }
.footer__copy {
    font-size: 12.5px;
    color: rgba(245, 233, 220, 0.45);
    width: 100%;
    text-align: center;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(245, 233, 220, 0.1);
}


/* ============================================================
   СМИ — упоминания в публикациях
   ============================================================ */
.section--media {
    background: var(--c-cream-soft);
    position: relative;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 22px;
}

.media-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-sm);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    color: var(--c-text);
    height: 100%;
}
.media-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--c-wine);
}

/* Превью / заглушка */
.media-card__thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--c-cream-soft);
    flex-shrink: 0;
    position: relative;
}
.media-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.media-card:hover .media-card__thumb img { transform: scale(1.05); }

/* Заглушка с буквой источника */
.media-card__thumb--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--c-wine) 0%, var(--c-wine-deep) 100%);
    color: var(--c-cream);
    position: relative;
    overflow: hidden;
}
.media-card__thumb--placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(245, 233, 220, 0.15), transparent 60%);
}
.media-card__source-letter {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Тело карточки */
.media-card__body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}
.media-card__source {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--c-wine);
    font-weight: 600;
}
.media-card__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-wine);
    flex-shrink: 0;
}
.media-card__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 19px;
    line-height: 1.3;
    color: var(--c-wine-deep);
    margin: 0;
    /* Обрезка длинных заголовков по 3 строки */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.media-card__desc {
    font-size: 14px;
    color: var(--c-text-soft);
    line-height: 1.55;
    /* Обрезка по 2 строки */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.media-card__cta {
    margin-top: auto;
    padding-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--c-wine);
    transition: gap .25s ease;
}
.media-card__arrow {
    font-size: 14px;
    opacity: 0.7;
    transition: transform .25s ease, opacity .25s ease;
}
.media-card:hover .media-card__cta { gap: 10px; }
.media-card:hover .media-card__arrow {
    transform: translate(2px, -2px);
    opacity: 1;
}

/* ============================================================
   АДАПТИВ
   ============================================================ */
@media (max-width: 1024px) {
    .hero__inner { gap: 40px; }
    .me__layout { gap: 48px; }
    .contact__layout { gap: 48px; }
    .about__grid { gap: 40px; }
}

@media (max-width: 880px) {
    .container { padding: 0 20px; }
    .section { padding: 64px 0; }
    .section__head { margin-bottom: 36px; }

    .hero {
        background: linear-gradient(160deg, var(--c-wine) 0%, var(--c-wine-deep) 50%, var(--c-black-soft) 100%);
        min-height: auto;
        padding: 96px 0 48px;
    }
    .hero__shape { display: none; }
    .hero__inner { grid-template-columns: 1fr; gap: 32px; }
    .hero__content { padding-right: 0; }
    .hero__logo-wrap { max-width: 220px; padding: 22px; margin: 0 auto; }
    .hero__logo-wrap::before {
        background: radial-gradient(circle at 30% 30%, rgba(245, 233, 220, 0.15), transparent 70%);
        border-color: rgba(245, 233, 220, 0.25);
    }
    .hero__logo-wrap::after { border-color: rgba(245, 233, 220, 0.3); }
    .hero__logo { filter: brightness(0) invert(1); }

    .about__grid { grid-template-columns: 1fr; gap: 24px; }
    .about__quote { padding: 22px 26px; }

    .me__layout { grid-template-columns: 1fr; gap: 36px; }
    .me__photo { max-width: 320px; margin: 0 auto; }
    .me__photo::before { width: 60px; height: 60px; top: -16px; left: -16px; }
    .me__photo-deco { width: 100px; height: 100px; bottom: -20px; right: -20px; }

    .contact__layout { grid-template-columns: 1fr; gap: 36px; }

    .footer__inner { flex-direction: column; text-align: center; gap: 24px; }
}

@media (max-width: 600px) {
    .container { padding: 0 16px; }
    .section { padding: 56px 0; }
    .section__head { margin-bottom: 28px; }
    .section__lead { font-size: 15.5px; }

    .nav { padding: 10px 0; }
    .nav--scrolled { padding: 8px 0; }
    .nav__logo { gap: 10px; }
    .nav__logo-img { width: 36px; height: 36px; }
    .nav__brand { font-size: 16px; letter-spacing: 0.03em; }
    .nav__menu { max-width: 280px; padding: 80px 24px 24px; }

    .hero { padding: 88px 0 40px; }
    .hero__inner { gap: 24px; }
    .hero__eyebrow { font-size: 10px; padding: 6px 14px; letter-spacing: 0.18em; margin-bottom: 16px; }
    .hero__title { font-size: clamp(40px, 14vw, 64px); margin-bottom: 14px; }
    .hero__subtitle { font-size: 16px; margin-bottom: 14px; }
    .hero__text { font-size: 14.5px; margin-bottom: 24px; line-height: 1.6; }
    .hero__actions { flex-direction: column; align-items: stretch; gap: 12px; width: 100%; }
    .hero__actions .btn { width: 100%; }
    .hero__note { text-align: center; }
    .hero__logo-wrap { max-width: 180px; padding: 18px; }

    .btn { padding: 14px 24px; font-size: 14px; }
    .btn--small { padding: 9px 18px; font-size: 13px; }

    .about__lead { font-size: 16px; }
    .about__quote { font-size: 17px; padding: 20px 22px; }

    .me__photo { max-width: 100%; }
    .me__text p { font-size: 15.5px; }
    .facts { grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 20px; }
    .facts__item { font-size: 12.5px; padding: 9px 10px; }

    .requests { gap: 10px; grid-template-columns: 1fr; }
    .requests__item { padding: 16px 18px; gap: 14px; }
    .requests__num { font-size: 22px; }
    .requests__text { font-size: 14.5px; }

    .services { grid-template-columns: 1fr; gap: 14px; }
    .service-card { padding: 26px 22px; }
    .service-card__title { font-size: 19px; }

    .format-grid { grid-template-columns: 1fr; gap: 14px; }
    .format-card { padding: 24px 20px; }

    .section--youth { padding: 80px 0; }
    .section--youth::before, .section--youth::after { height: 40px; }
    .youth__photo { margin: 24px auto 28px; aspect-ratio: 4 / 3; }
    .youth__photo::after { inset: 8px; }
    .youth__lead { font-size: 15.5px; margin: 0 auto 28px; }
    .youth__subtitle { font-size: 19px; margin-bottom: 18px; }
    .youth__list { gap: 8px; margin-bottom: 28px; }
    .youth__list li { font-size: 13.5px; padding: 7px 14px; }
    .youth__quote { font-size: 17px; }

    .experience__text { font-size: 15.5px; margin-bottom: 28px; }
    .experience__pillars { grid-template-columns: 1fr; gap: 12px; }
    .experience__pillar { padding: 24px 18px; }
    .experience__num { font-size: 44px; }

.docs-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
.doc-card img { padding: 6px; }

.media-grid { grid-template-columns: 1fr; gap: 14px; }
.media-card__body { padding: 18px 20px 20px; }
.media-card__title { font-size: 17px; }
.media-card__source-letter { font-size: 56px; }

    .contact__item {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 14px 0;
    }
    .contact__item:hover {
        padding-left: 0;
        background: transparent;
    }
    .contact__link { font-size: 15px; }

    .contact-cta { gap: 12px; margin-top: 26px; }
    .contact-cta__btn { padding: 16px 18px; gap: 14px; }
    .contact-cta__icon { width: 42px; height: 42px; border-radius: 12px; }
    .contact-cta__icon svg { width: 22px; height: 22px; }
    .contact-cta__title { font-size: 17px; }
    .contact-cta__sub { font-size: 13px; }

    .footer { padding: 36px 0 20px; }
    .footer__brand { flex-direction: column; gap: 8px; text-align: center; }
    .footer__links { gap: 18px; flex-wrap: wrap; justify-content: center; }

    .lightbox { padding: 60px 12px 80px; }
    .lightbox__img { max-height: calc(100vh - 160px); }
    .lightbox__close { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 24px; }
    .lightbox__nav { width: 44px; height: 44px; font-size: 26px; }
    .lightbox__nav--prev { left: 8px; }
    .lightbox__nav--next { right: 8px; }
    .lightbox__caption { font-size: 13px; }
}

@media (max-width: 380px) {
    .hero__title { font-size: clamp(36px, 13vw, 52px); }
    .nav__brand { display: none; }
    .docs-grid { grid-template-columns: 1fr; }
}

.docs-more {
    margin-top: 56px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.docs-more__text {
    font-size: 16px;
    color: var(--c-text-soft);
    max-width: 520px;
    line-height: 1.6;
}
.docs-more__btn {
    padding: 16px 36px;
    font-size: 15px;
}
.docs-more__arrow {
    transition: transform .25s ease;
    display: inline-block;
}
.docs-more__btn:hover .docs-more__arrow {
    transform: translate(2px, -2px);
}

@media (max-width: 600px) {
    .docs-more { margin-top: 36px; gap: 14px; }
    .docs-more__text { font-size: 14.5px; }
    .docs-more__btn { width: 100%; padding: 14px 24px; }
}

/* ============================================================
   ПЛАВАЮЩАЯ ПУЛЬСИРУЮЩАЯ КНОПКА ЗВОНКА
   Фиксированная кнопка в правом нижнем углу, ведёт на tel:
   ============================================================ */
.floating-call {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px 14px 18px;
    background: linear-gradient(135deg, var(--c-wine) 0%, var(--c-wine-deep) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(122, 13, 31, 0.35),
                0 4px 12px rgba(58, 6, 16, 0.25);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.01em;
    transition: transform .25s ease, box-shadow .3s ease, background .3s ease;
    animation: floatingCallBob 4s ease-in-out infinite;
}
.floating-call:hover,
.floating-call:focus-visible {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 18px 40px rgba(122, 13, 31, 0.45),
                0 6px 16px rgba(58, 6, 16, 0.3);
    background: linear-gradient(135deg, #8f1027 0%, var(--c-wine) 100%);
    outline: none;
}

.floating-call__icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #fff;
    animation: floatingCallShake 1.6s ease-in-out infinite;
    transform-origin: center;
}
.floating-call__icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.floating-call__label {
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

/* Пульсирующие кольца вокруг кнопки */
.floating-call__ring {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    border: 2px solid var(--c-wine);
    pointer-events: none;
    opacity: 0;
    animation: floatingCallPulse 2s ease-out infinite;
    z-index: 1;
}
.floating-call__ring--delayed {
    animation-delay: 1s;
}

@keyframes floatingCallPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    80% {
        opacity: 0;
        transform: scale(1.5);
    }
    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

@keyframes floatingCallShake {
    0%, 60%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-14deg); }
    20% { transform: rotate(14deg); }
    30% { transform: rotate(-14deg); }
    40% { transform: rotate(14deg); }
    50% { transform: rotate(-8deg); }
}

@keyframes floatingCallBob {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -3px; }
}

/* На мобильных — только иконка (кружок), без текста */
@media (max-width: 600px) {
    .floating-call {
        right: 16px;
        bottom: 16px;
        padding: 0;
        width: 58px;
        height: 58px;
        justify-content: center;
        gap: 0;
    }
    .floating-call__label {
        display: none;
    }
    .floating-call__icon {
        width: 26px;
        height: 26px;
    }
    .floating-call__icon svg {
        width: 26px;
        height: 26px;
    }
}

/* Уважаем пожелания пользователя: если он отключил анимации в ОС — выключаем их */
@media (prefers-reduced-motion: reduce) {
    .floating-call,
    .floating-call__icon,
    .floating-call__ring {
        animation: none !important;
    }
}
