/* ==========================================================================
   08-circus-specific.css
   Специфика цирка огня и света «АРТНОНСТОП»
   То, чего нет в Bootstrap: перебивки, схема артели, хроники,
   гастроли, мастерская, команда, FAQ, контакты, искры.
   ВАЖНО: HTML страниц НЕ меняем — только перекрашиваем существующие классы.
   ========================================================================== */

/* ==========================================================================
   1. ЗАГОЛОВКИ СЕКЦИЙ
   ========================================================================== */
.section-heading {
    text-align: center;
    margin: 0 auto 3.5rem;
    max-width: 760px;
}

.section-heading .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 999px;
    color: var(--circus-gold-light);
    background: var(--circus-bg-accent);
    font-family: 'Unbounded', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0.75rem 0 0.85rem;
    color: var(--circus-text);
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.15rem, 5vw, 4rem);
    font-weight: 800;
}

.section-heading p {
    color: var(--circus-mute);
}

/* ==========================================================================
   2. ЗОЛОТЫЕ РАЗДЕЛИТЕЛИ
   ========================================================================== */
.gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 1rem auto;
}

.gold-divider::before,
.gold-divider::after {
    content: '';
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--circus-gold), var(--circus-fire));
}

.gold-divider::after {
    transform: scaleX(-1);
}

.gold-divider i {
    color: var(--circus-gold-light);
    font-size: 1.1rem;
}

/* ==========================================================================
   3. ПОЛНОЭКРАННЫЕ ПЕРЕБИВКИ
   ========================================================================== */
.chapter-break {
    min-height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 1.25rem;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-top: 1px solid var(--circus-border);
    border-bottom: 1px solid var(--circus-border);
}

.chapter-break::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(ellipse at center, transparent 10%, rgba(3, 5, 11, 0.65) 100%);
}

.chapter-break::after {
    content: '';
    position: absolute;
    left: 8%;
    right: 8%;
    top: 20px;
    bottom: 20px;
    z-index: 1;
    border-top: 1px solid rgba(212, 175, 55, 0.55);
    border-bottom: 1px solid rgba(212, 175, 55, 0.55);
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.14);
    pointer-events: none;
}

.chapter-break .kicker {
    color: var(--circus-fire);
    font-family: 'Unbounded', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.chapter-break h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.7rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 0.98;
    margin: 1.2rem 0;
    background: linear-gradient(180deg, #fff6dc 0%, var(--circus-gold-light) 40%, var(--circus-gold) 70%, #a9791d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 60px rgba(212, 175, 55, 0.35);
}

.chapter-break p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(245, 236, 217, 0.88);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
}

/* ==========================================================================
   4. СХЕМА АРТЕЛИ (дерево)
   ========================================================================== */
.tree {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.node {
    position: relative;
    border: 1px solid var(--circus-border);
    background: linear-gradient(170deg, var(--circus-bg-accent), var(--circus-bg-card));
    padding: 18px 30px;
    text-align: center;
    min-width: min(320px, 84vw);
    border-radius: 12px;
    transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
}

.node:hover {
    border-color: var(--circus-gold);
    box-shadow: 0 0 34px rgba(212, 175, 55, 0.28);
    transform: translateY(-3px);
}

.node .n-label {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.06rem;
    color: var(--circus-text);
}

.node .n-sub {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--circus-mute);
    margin-top: 7px;
}

.node-top {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(255, 107, 53, 0.12));
    border-color: var(--circus-border-strong);
}

.node-top .n-label {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    letter-spacing: 0.28em;
    font-size: 1rem;
    color: var(--circus-gold-light);
    text-shadow: 0 0 26px rgba(212, 175, 55, 0.5);
}

.node-core {
    border-color: var(--circus-gold);
    box-shadow: 0 0 46px rgba(212, 175, 55, 0.3);
    background: linear-gradient(160deg, #22283f, #141828);
    padding: 24px 40px;
}

.node-core .n-label {
    font-size: 1.3rem;
}

.node-star {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    background: var(--circus-gradient-gold);
    color: #0a0e1a;
    font-size: 0.85rem;
    border-radius: 50%;
    box-shadow: var(--circus-glow);
}

.v-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(180deg, var(--circus-gold), rgba(212, 175, 55, 0.15));
    position: relative;
}

.v-line::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: -3px;
    width: 7px;
    height: 7px;
    background: var(--circus-gold);
    transform: rotate(45deg);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
}

.tree-row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    width: 100%;
    padding-top: 44px;
}

.tree-row::before {
    content: '';
    position: absolute;
    top: 140px;
    left: calc(16.666% + 13px);
    right: calc(16.666% + 13px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--circus-border-strong) 15%, var(--circus-border-strong) 85%, transparent);
}

.tree-row .node {
    min-width: 0;
}

.tree-row .node::before {
    content: '';
    position: absolute;
    top: -44px;
    left: 50%;
    width: 1px;
    height: 44px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.15), var(--circus-gold));
}

.tree-note {
    margin: 54px auto 0;
    max-width: 720px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--circus-mute);
    border-top: 1px solid var(--circus-border);
    padding-top: 24px;
}

.tree-legend {
    display: flex;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
    margin-top: 30px;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.56rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--circus-mute);
}

.tree-legend span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.tree-legend i {
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    background: var(--circus-gold);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
    display: inline-block;
}

/* ==========================================================================
   5. ХРОНИКИ-ТАЙМЛАЙН
   ========================================================================== */
.timeline {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 920px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 128px;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--circus-border-strong) 8%, var(--circus-gold) 50%, var(--circus-border-strong) 92%, transparent);
}

.tl-item {
    position: relative;
    display: grid;
    grid-template-columns: 96px 64px 1fr;
    align-items: start;
    padding: 0 0 26px;
}

.tl-item:last-child {
    padding-bottom: 0;
}

.tl-year {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    color: var(--circus-gold-light);
    text-shadow: 0 0 28px rgba(212, 175, 55, 0.45);
    text-align: right;
    line-height: 1.1;
    padding-top: 14px;
    font-variant-numeric: tabular-nums;
}

.tl-dot {
    position: relative;
    width: 13px;
    height: 13px;
    margin: 24px auto 0;
    transform: rotate(45deg);
    background: var(--circus-gradient-gold);
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.8);
    z-index: 1;
}

.tl-dot::after {
    content: '';
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(212, 175, 55, 0.35);
}

.tl-card {
    position: relative;
    background: linear-gradient(170deg, var(--circus-bg-card), #101424);
    border: 1px solid var(--circus-border);
    border-radius: 12px;
    padding: 20px 22px;
    transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
}

.tl-card:hover {
    border-color: var(--circus-border-strong);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.45), 0 0 36px rgba(212, 175, 55, 0.14);
    transform: translateY(-3px);
}

.tl-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--circus-text);
    margin: 0 0 6px;
}

.tl-card p {
    color: var(--circus-mute);
    font-size: 0.92rem;
    margin: 0;
}

.tl-hot .tl-card {
    border-color: var(--circus-gold);
    box-shadow: 0 0 44px rgba(212, 175, 55, 0.22);
}

.tl-flag {
    position: absolute;
    top: -13px;
    right: 16px;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.52rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 6px 12px;
    background: var(--circus-gradient-gold);
    color: #0a0e1a;
    border-radius: 20px;
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.5);
}

.duo-vids {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    max-width: 920px;
    margin: 48px auto 0;
}
/* ==========================================================================
   6. ТВ-РЕПОРТАЖИ И ВИДЕО-КАРТОЧКИ
   (.video-poster, .play-orb, .media)
   ========================================================================== */
.video-poster {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--circus-border);
    background: var(--circus-bg-card);
    cursor: pointer;
    height: 100%;
    transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
}

.video-poster:hover {
    border-color: var(--circus-gold);
    transform: translateY(-4px);
    box-shadow: 0 0 28px rgba(212, 175, 55, 0.2);
}

.video-poster .media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.video-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.video-poster:hover img {
    transform: scale(1.07);
}

/* Кнопка воспроизведения (золотой круг) */
.play-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--circus-gold-light);
    background: rgba(10, 14, 26, 0.78);
    color: var(--circus-gold-light);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.55);
    transition: background 0.35s, color 0.35s, transform 0.35s;
    z-index: 2;
}

.video-poster:hover .play-orb {
    background: var(--circus-gradient-gold);
    color: #0a0e1a;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-orb i {
    font-size: 1.3rem;
    transform: translateX(2px);
}

/* Подпись под видео */
.video-poster .p-4 {
    padding: 1.2rem 1.25rem;
}

.video-poster .p-4 small {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.56rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--circus-gold-light);
}

.video-poster .p-4 h3 {
    color: var(--circus-text);
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0.5rem 0 0;
}

/* Длительность видео */
.video-poster .badge {
    background: rgba(10, 14, 26, 0.85) !important;
    color: var(--circus-gold-light) !important;
    border: 1px solid var(--circus-border) !important;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.52rem;
    padding: 4px 10px;
    border-radius: 6px;
}

/* ==========================================================================
   7. ГАСТРОЛИ — ГОРОДА
   (.city-card, .tour-card, .tour-media, .tour-body, .tour-city, .tour-meta)
   ========================================================================== */
.city-card,
.tour-card {
    position: relative;
    background: linear-gradient(170deg, var(--circus-bg-card), #101424);
    border: 1px solid var(--circus-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.45s, border-color 0.45s, box-shadow 0.45s;
}

.city-card:hover,
.tour-card:hover {
    transform: translateY(-7px);
    border-color: var(--circus-border-strong);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.16);
}

.tour-media,
.city-card .media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.tour-media img,
.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) saturate(0.95);
    transition: transform 1s, filter 0.5s;
}

.tour-card:hover .tour-media img,
.city-card:hover img {
    transform: scale(1.08);
    filter: brightness(1.02) saturate(1.08);
}

.tour-media::after,
.city-card .media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 14, 26, 0.85));
    pointer-events: none;
}

.tour-body {
    padding: 18px 20px 22px;
}

.tour-city {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--circus-text);
    margin: 0 0 6px;
}

.tour-meta {
    color: var(--circus-mute);
    font-family: 'Unbounded', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0;
}

.tour-hot {
    border-color: var(--circus-gold);
    box-shadow: 0 0 44px rgba(212, 175, 55, 0.2);
}

/* Бейдж «Парад 2026» в углу карточки */
.city-card .badge,
.tour-card .badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    background: var(--circus-gradient-gold) !important;
    color: #0a0e1a !important;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    border: none !important;
    box-shadow: 0 0 22px rgba(212, 175, 55, 0.5);
}

/* Иконка «карта» на карточке города */
.tour-body i.ph,
.city-card i.ph {
    color: var(--circus-fire);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* CTA-строка «Хотите увидеть цирк в вашем городе» */
.tour-cta {
    max-width: 760px;
    margin: 46px auto 0;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.02rem, 2.4vw, 1.25rem);
    color: #d8cdb4;
    border-top: 1px solid var(--circus-border);
    padding-top: 26px;
}

.tour-cta a {
    color: var(--circus-gold-light);
    border-bottom: 1px dashed var(--circus-border-strong);
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
}

.tour-cta a:hover {
    color: var(--circus-fire);
    border-color: var(--circus-fire);
}

/* ==========================================================================
   8. КЛЮЧЕВЫЕ СОБЫТИЯ — КАРТОЧКИ С ДАТОЙ
   (.event-card, .tag-list, .tag)
   ========================================================================== */
.event-card {
    position: relative;
    background: linear-gradient(170deg, var(--circus-bg-card), #101424);
    border: 1px solid var(--circus-border);
    border-radius: 16px;
    padding: 24px 22px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    transition: transform 0.45s, border-color 0.45s, box-shadow 0.45s;
}

.event-card:hover {
    transform: translateY(-6px);
    border-color: var(--circus-border-strong);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.16);
}

.event-card .date {
    color: var(--circus-fire);
    font-family: 'Unbounded', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.event-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--circus-text);
    margin: 0 0 0.6rem;
    line-height: 1.3;
}

.event-card p {
    color: var(--circus-mute);
    font-size: 0.9rem;
    line-height: 1.55;
    flex: 1;
    margin: 0 0 1rem;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    padding-top: 1rem;
    border-top: 1px solid var(--circus-border);
}

.tag-list span,
.tag {
    color: var(--circus-gold-light);
    font-family: 'Unbounded', sans-serif;
    font-size: 0.56rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border: 1px solid var(--circus-border);
    border-radius: 20px;
    background: rgba(212, 175, 55, 0.06);
}

/* Иконка календаря в event-card */
.event-card i.ph-calendar-blank {
    color: var(--circus-gold-light);
    font-size: 1.1rem;
}

/* Бейдж с датой в event-card (Bootstrap badge) */
.event-card .badge.bg-primary {
    background: var(--circus-bg-accent) !important;
    color: var(--circus-gold-light) !important;
    border: 1px solid var(--circus-border-strong) !important;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Бейдж с датой «Апрель 2026» (bg-danger внутри event-card) */
.event-card .badge.bg-danger {
    background: var(--circus-gradient-gold) !important;
    color: #0a0e1a !important;
    border: none !important;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Мелкие бейджи-теги внутри событий (bg-light text-dark border) */
.event-card .badge.bg-light {
    background: rgba(21, 25, 42, 0.9) !important;
    color: var(--circus-mute) !important;
    border-color: var(--circus-border) !important;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.52rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 20px;
    border: 1px solid var(--circus-border);
}
/* ==========================================================================
   9. МАСТЕРСКАЯ
   (.work-grid, .work-photo, .work-body, .badges, .pill)
   ========================================================================== */
.work-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(28px, 5vw, 60px);
    align-items: center;
}

.work-photo {
    margin: 0;
    position: relative;
    border: 1px solid var(--circus-border);
    padding: 12px;
    background: linear-gradient(160deg, rgba(26, 31, 53, 0.9), rgba(10, 14, 26, 0.7));
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
    border-radius: 16px;
    overflow: hidden;
}

.work-photo img {
    width: 100%;
    aspect-ratio: 4 / 4.4;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.05);
    border-radius: 12px;
    transition: transform 1.2s ease;
}

.work-photo:hover img {
    transform: scale(1.04);
}

.work-photo figcaption {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.56rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--circus-gold-light);
    text-align: center;
    padding: 14px 6px 4px;
}

.work-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: #cdc2ad;
}

.work-body .lead {
    color: #e6d9ba;
    font-size: 1.08rem;
    line-height: 1.6;
}

.work-body p {
    color: var(--circus-mute);
    line-height: 1.65;
    margin: 0;
}

.work-body strong {
    color: var(--circus-gold-light);
    font-weight: 600;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 8px;
}

.pill {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--circus-gold-light);
    border: 1px solid var(--circus-border-strong);
    background: rgba(212, 175, 55, 0.07);
    padding: 10px 16px;
    border-radius: 20px;
    transition: background 0.35s, transform 0.35s, box-shadow 0.35s, color 0.35s;
}

.pill:hover {
    background: var(--circus-gradient-gold);
    color: #0a0e1a;
    transform: translateY(-3px);
    box-shadow: var(--circus-glow);
}

/* ==========================================================================
   10. ОТЗЫВЫ
   (.review-card, .review-ico, .stars, .r-name, .r-role)
   ========================================================================== */
.review-card {
    margin: 0;
    background: linear-gradient(175deg, var(--circus-bg-card), #101424);
    border: 1px solid var(--circus-border);
    border-radius: 16px;
    padding: 30px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.45s, border-color 0.45s, box-shadow 0.45s;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: var(--circus-border-strong);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5), 0 0 44px rgba(212, 175, 55, 0.16);
}

.review-ico {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    color: var(--circus-gold-light);
    border: 1px solid var(--circus-border-strong);
    background: radial-gradient(circle at 30% 25%, rgba(255, 107, 53, 0.25), rgba(26, 31, 53, 0.9));
    box-shadow: 0 0 26px rgba(212, 175, 55, 0.18);
    border-radius: 50%;
}

.stars {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    background: linear-gradient(100deg, var(--circus-gold-light), var(--circus-fire));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.review-card blockquote {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.02rem;
    line-height: 1.6;
    color: #e6d9ba;
}

.review-card figcaption {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--circus-border);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.r-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--circus-text);
}

.r-role {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.54rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--circus-mute);
}

/* ==========================================================================
   11. КОМАНДА (JOIN)
   (.join, .join-bg, .join-shade, .join-inner, .join-grid, .join-card, .join-cta)
   ========================================================================== */
.join {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-top: 1px solid var(--circus-border);
    border-bottom: 1px solid var(--circus-border);
}

.join-bg {
    position: absolute;
    inset: -6% 0;
    z-index: -2;
    background-size: cover;
    background-position: center 35%;
    background-attachment: fixed;
    filter: saturate(1.05);
}

.join-shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.93), rgba(10, 14, 26, 0.78) 45%, rgba(10, 14, 26, 0.9)),
                radial-gradient(800px 460px at 50% 40%, rgba(255, 107, 53, 0.14), transparent 65%);
}

.join-inner {
    padding: clamp(72px, 9vw, 124px) 0;
    text-align: center;
}

.join-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 5vw, 3.4rem);
    font-weight: 900;
    letter-spacing: 0.02em;
    margin: 18px 0 0;
    background: linear-gradient(180deg, #fff6dc 0%, var(--circus-gold-light) 40%, var(--circus-gold) 70%, #b8861f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
}

.join-sub {
    max-width: 64ch;
    margin: 18px auto 0;
    color: #d8cdb4;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1rem, 2.4vw, 1.2rem);
    line-height: 1.6;
}

.join-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    margin-top: 48px;
    text-align: left;
}

.join-card {
    background: rgba(16, 20, 36, 0.82);
    /* bf off */
    border: 1px solid var(--circus-border);
    border-radius: 16px;
    padding: clamp(26px, 4vw, 38px);
}

.join-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--circus-gold-light);
    margin: 0 0 20px;
}

.join-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.join-card li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #cdc2ad;
    font-size: 0.94rem;
    line-height: 1.55;
}

.join-card li strong {
    color: var(--circus-gold-light);
    font-weight: 600;
}

.check-gold {
    flex: none;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #0a0e1a;
    background: var(--circus-gradient-gold);
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(212, 175, 55, 0.4);
}

.join-card .roles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 18px;
}

.join-card .roles li {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #e6d9ba;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.25);
    padding-bottom: 10px;
}

.join-cta {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.join-cta p {
    color: var(--circus-mute);
    font-family: 'Unbounded', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0;
}

.btn-big {
    padding: 20px 48px !important;
    font-size: 0.78rem !important;
}

/* ==========================================================================
   12. FAQ (details/summary)
   (.faq-list, .faq-item, .faq-answer, .q-num, .sign)
   ========================================================================== */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    border: 1px solid var(--circus-border);
    border-radius: 12px;
    background: linear-gradient(170deg, var(--circus-bg-card), #101424);
    transition: border-color 0.4s, box-shadow 0.4s;
    overflow: hidden;
}

.faq-item[open] {
    border-color: var(--circus-border-strong);
    box-shadow: 0 0 44px rgba(212, 175, 55, 0.14);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--circus-text);
    transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--circus-gold-light);
}

.faq-item summary .sign {
    margin-left: auto;
    flex: none;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid var(--circus-border-strong);
    border-radius: 50%;
    color: var(--circus-gold-light);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    transition: transform 0.4s, background 0.35s, color 0.35s;
}

.faq-item[open] summary .sign {
    transform: rotate(180deg);
    background: var(--circus-gradient-gold);
    color: #0a0e1a;
    border-color: transparent;
}

.faq-item .q-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.62rem;
    color: var(--circus-gold);
    letter-spacing: 0.1em;
    flex: none;
}

.faq-answer {
    padding: 0 24px 24px 78px;
    color: var(--circus-mute);
    font-size: 0.95rem;
    line-height: 1.65;
    animation: unfold 0.45s ease;
}

.faq-answer strong {
    color: var(--circus-text);
    font-weight: 600;
}

/* Variant — вопросы в Bootstrap-стиле (details.border-danger.rounded-3.p-3.bg-light) */
body.artnonstop-circus details.border-danger,
body.artnonstop-circus details.border-primary {
    background: linear-gradient(170deg, var(--circus-bg-card), #101424) !important;
    border: 1px solid var(--circus-border) !important;
    border-radius: 12px !important;
    padding: 18px 20px !important;
    margin-bottom: 12px;
}

body.artnonstop-circus details.border-danger summary,
body.artnonstop-circus details.border-primary summary {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--circus-text) !important;
    cursor: pointer;
    list-style: none;
    transition: color 0.3s;
}

body.artnonstop-circus details.border-danger summary:hover,
body.artnonstop-circus details.border-primary summary:hover {
    color: var(--circus-gold-light) !important;
}

body.artnonstop-circus details.border-danger summary::-webkit-details-marker,
body.artnonstop-circus details.border-primary summary::-webkit-details-marker {
    display: none;
}

body.artnonstop-circus details.border-danger[open],
body.artnonstop-circus details.border-primary[open] {
    border-color: var(--circus-border-strong) !important;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.12);
}

body.artnonstop-circus details.border-danger .mt-2,
body.artnonstop-circus details.border-primary .mt-2 {
    color: var(--circus-mute) !important;
}

/* ==========================================================================
   13. КОНТАКТЫ
   (.contact-grid, .form-plate, .info-plate, .info-list, .info-ico, .socials, .social)
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(28px, 5vw, 60px);
    align-items: start;
}

.form-plate {
    position: relative;
    border: 1px solid var(--circus-border);
    background: linear-gradient(170deg, var(--circus-bg-card), #101424);
    padding: clamp(26px, 4vw, 44px);
    border-radius: 16px;
}

.form-plate h3 {
    font-family: 'Playfair Display', serif;
    color: var(--circus-text);
    margin: 0 0 0.5rem;
}

.form-plate p {
    color: var(--circus-mute);
    margin: 0 0 1.5rem;
}

.field {
    display: block;
    margin-bottom: 22px;
}

.field span {
    display: block;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.56rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--circus-gold);
    margin-bottom: 9px;
}

.field input,
.field textarea {
    width: 100%;
    background: rgba(10, 14, 26, 0.7);
    border: 1px solid var(--circus-border);
    color: var(--circus-text);
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    padding: 15px 16px;
    border-radius: 10px;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.field textarea {
    min-height: 132px;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(154, 143, 126, 0.65);
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--circus-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
    background: rgba(10, 14, 26, 0.95);
}

.check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.8rem;
    color: var(--circus-mute);
    margin-bottom: 26px;
    cursor: pointer;
}

.check input {
    appearance: none;
    width: 20px;
    height: 20px;
    flex: none;
    border: 1px solid var(--circus-border-strong);
    background: rgba(10, 14, 26, 0.7);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s, border-color 0.3s;
}

.check input:checked {
    background: var(--circus-gradient-gold);
    border-color: var(--circus-gold);
}

.check input:checked::after {
    content: '✓';
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #0a0e1a;
    font-size: 0.8rem;
    font-weight: 700;
}

.form-note {
    font-size: 0.75rem;
    color: var(--circus-mute);
    margin-top: 16px;
}

.form-ok {
    border: 1px solid var(--circus-gold);
    background: rgba(212, 175, 55, 0.1);
    padding: 18px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--circus-gold-light);
    margin-bottom: 22px;
    border-radius: 12px;
}

/* Правая колонка — инфо-карточка */
.info-plate {
    border: 1px solid var(--circus-border);
    background: linear-gradient(170deg, rgba(26, 31, 53, 0.7), rgba(10, 14, 26, 0.6));
    padding: clamp(26px, 4vw, 44px);
    border-radius: 16px;
}

.info-plate h4 {
    font-family: 'Playfair Display', serif;
    color: var(--circus-text);
    margin: 0 0 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--circus-border);
}

.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-list li {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.info-list li:last-child {
    border-bottom: 0;
}

.info-ico {
    width: 40px;
    height: 40px;
    flex: none;
    display: grid;
    place-items: center;
    border: 1px solid var(--circus-border-strong);
    color: var(--circus-gold-light);
    border-radius: 50%;
    transition: background 0.35s, box-shadow 0.35s, transform 0.35s;
}

.info-list li:hover .info-ico {
    background: rgba(212, 175, 55, 0.14);
    box-shadow: 0 0 26px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.info-k {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.54rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--circus-mute);
    display: block;
}

.info-v {
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--circus-text);
    margin-top: 5px;
    display: block;
    word-break: break-word;
    transition: color 0.3s;
}

a.info-v:hover {
    color: var(--circus-gold-light);
}

/* Соцсети */
.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--circus-gold-light);
    border: 1px solid var(--circus-border-strong);
    padding: 11px 18px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.35s, transform 0.35s, box-shadow 0.35s, color 0.35s;
}

.social:hover {
    background: var(--circus-gradient-gold);
    color: #0a0e1a;
    transform: translateY(-3px);
    box-shadow: var(--circus-glow);
    text-decoration: none;
}

/* ==========================================================================
   14. ИСКРЫ (CANVAS) — фон hero
   ========================================================================== */
.hero-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   15. АНИМАЦИИ
   ========================================================================== */
@keyframes flamePulse {
    0%, 100% {
        opacity: 0.8;
        filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.4));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.8));
    }
}

.flame-pulse {
    animation: flamePulse 3s infinite ease-in-out;
}

@keyframes goldShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.shimmer-text {
    background: linear-gradient(90deg, var(--circus-gold) 0%, #fff 50%, var(--circus-gold) 100%);
    background-size: 200% 100%;
    animation: goldShimmer 6s infinite linear;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@keyframes unfold {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   16. REVEAL (fade-up при скролле)
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.3, 1);
    transition-delay: var(--d, 0ms);
    will-change: opacity, transform;
}

.reveal.in,
.reveal.on {
    opacity: 1;
    transform: none;
}

.reveal-line {
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.3, 1) var(--d, 0ms);
}

.reveal-line.in {
    transform: scaleX(1);
}

/* ==========================================================================
   17. МОБИЛЬНАЯ АДАПТАЦИЯ ДЛЯ СПЕЦИФИКИ ЦИРКА
   ========================================================================== */
@media (max-width: 1024px) {
    .tree-row {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-top: 140px;
    }
    .tree-row::before {
        display: none;
    }
    .tree-row .node::before {
        top: -34px;
        height: 34px;
    }
    .v-line {
        height: 34px;
    }
    .work-grid,
    .join-grid {
        grid-template-columns: 1fr;
    }
    .work-photo {
        max-width: 560px;
    }
    .duo-vids {
        grid-template-columns: 1fr 1fr;
    }
    .chapter-break,
    .join-bg {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .chapter-break {
        min-height: 62vh;
        padding: 4rem 1rem;
    }

    .section-heading {
        margin-bottom: 2.5rem;
    }

    .section-heading h2 {
        font-size: clamp(1.7rem, 8vw, 2.4rem);
    }

    /* Таймлайн — вертикальный, год над карточкой */
    .timeline::before {
        left: 14px;
    }
    .tl-item {
        grid-template-columns: 28px 1fr;
        gap: 0 14px;
    }
    .tl-year {
        display: none;
    }
    .tl-card::before {
        content: attr(data-year);
        display: block;
        font-family: 'Playfair Display', serif;
        font-weight: 900;
        font-size: 1.3rem;
        color: var(--circus-gold-light);
        margin-bottom: 6px;
    }
    .tl-dot {
        margin-top: 26px;
    }
    .tl-card {
        grid-column: 2;
    }

    /* Галерея — 2 колонки */
    .gal-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Мастерская */
    .work-photo img {
        aspect-ratio: 1 / 1;
    }

    /* Команда */
    .join-card .roles {
        grid-template-columns: 1fr;
    }
    .btn-big {
        width: 100%;
        padding: 18px 24px !important;
    }
    .join-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }

    /* FAQ */
    .faq-answer {
        padding-left: 24px;
    }

    /* Контакты */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* CTA в гастролях */
    .tour-cta {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .chapter-break h2 {
        font-size: clamp(1.8rem, 9vw, 3rem);
    }

    .review-card {
        padding: 24px 18px 22px;
    }
    .review-card blockquote {
        font-size: 0.95rem;
    }

    .section-heading h2 {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
}

/* ==========================================================================
   18. REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-line {
        opacity: 1;
        transform: none;
    }
    .chapter-break,
    .join-bg {
        background-attachment: scroll;
    }
}


/* ==========================================================================

   ФОНОВЫЕ РИСУНКИ С ПАРАЛЛАКСОМ

   Пути: /templates/artnonstop_circus/images/*.jpg

   ========================================================================== */



/* Общий фон с параллаксом и оверлеем */

.c-bg-parallax {

    position: relative;

    overflow: hidden;

    isolation: isolate;

    background-attachment: fixed;

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;

}

.c-bg-parallax::before {

    content: '';

    position: absolute;

    inset: 0;

    z-index: 0;

    pointer-events: none;

    background: linear-gradient(180deg, rgba(10, 14, 26, 0.88) 0%, rgba(10, 14, 26, 0.62) 38%, rgba(10, 14, 26, 0.7) 62%, rgba(10, 14, 26, 0.92) 100%);

}

.c-bg-parallax::after {

    content: '';

    position: absolute;

    inset: 0;

    z-index: 0;

    pointer-events: none;

    background: radial-gradient(1000px 500px at 50% 40%, rgba(255, 107, 53, 0.12), transparent 65%);

}

.c-bg-parallax > * {

    position: relative;

    z-index: 2;

}



/* HERO-фон */

.c-bg-hero {

    background-image:

        linear-gradient(135deg, rgba(5, 7, 14, 0.92) 0%, rgba(10, 14, 26, 0.75) 50%, rgba(5, 7, 14, 0.95) 100%),

        url('/templates/artnonstop_circus/images/hero-fire-artist.jpg');

    background-attachment: scroll, fixed;

    background-position: center center, center 30%;

    background-size: cover, cover;

}



/* Перебивка «Свет. Камера. Сцена.» */

.c-interlude-arches {

    background-image:

        linear-gradient(180deg, rgba(4, 6, 13, 0.86) 0%, rgba(10, 14, 26, 0.55) 45%, rgba(4, 6, 13, 0.92) 100%),

        url('/templates/artnonstop_circus/images/show-arches.jpg');

    background-attachment: scroll, fixed;

    background-position: center center, center 42%;

    background-size: cover, cover;

    border-radius: 24px;

    margin: 48px 0;

    padding: clamp(64px, 10vw, 140px) clamp(24px, 5vw, 64px);

    text-align: center;

}



/* Перебивка «Легенды фаер-шоу» */

.c-interlude-legends {

    background-image:

        linear-gradient(180deg, rgba(4, 6, 13, 0.88) 0%, rgba(10, 14, 26, 0.62) 45%, rgba(4, 6, 13, 0.94) 100%),

        url('/templates/artnonstop_circus/images/show-legends.jpg');

    background-attachment: scroll, fixed;

    background-position: center center, center 40%;

    background-size: cover, cover;

    border-radius: 24px;

    margin: 48px 0;

    padding: clamp(64px, 10vw, 140px) clamp(24px, 5vw, 64px);

    text-align: center;

}



/* Перебивка «Планета ЭЛ» */

.c-interlude-planeta {

    background-image:

        linear-gradient(180deg, rgba(4, 6, 13, 0.9) 0%, rgba(10, 14, 26, 0.62) 45%, rgba(4, 6, 13, 0.94) 100%),

        url('/templates/artnonstop_circus/images/show-planeta-el.jpg');

    background-attachment: scroll, fixed;

    background-position: center center, center 40%;

    background-size: cover, cover;

    border-radius: 24px;

    margin: 48px 0;

    padding: clamp(64px, 10vw, 140px) clamp(24px, 5vw, 64px);

    text-align: center;

}



/* Секция «Мастерская» */

.c-workshop-bg {

    background-image:

        linear-gradient(180deg, rgba(10, 14, 26, 0.9) 0%, rgba(10, 14, 26, 0.75) 50%, rgba(10, 14, 26, 0.92) 100%),

        url('/templates/artnonstop_circus/images/embers-veil.jpg');

    background-attachment: scroll, fixed;

    background-position: center center, center 50%;

    background-size: cover, cover;

    border-radius: 24px;

    padding: clamp(48px, 6vw, 80px) clamp(24px, 5vw, 64px);

}



/* Секция «Присоединиться» (Join) */

.c-join-bg {

    background-image:

        linear-gradient(135deg, rgba(5, 7, 14, 0.94) 0%, rgba(10, 14, 26, 0.78) 50%, rgba(5, 7, 14, 0.96) 100%),

        url('/templates/artnonstop_circus/images/show-legends.jpg');

    background-attachment: scroll, fixed;

    background-position: center center, center 35%;

    background-size: cover, cover;

    border-radius: 24px;

    padding: clamp(56px, 8vw, 96px) clamp(24px, 5vw, 64px);

}



/* Свечение-разделитель */

.c-glow-divider {

    position: relative;

    height: 1px;

    margin: 48px auto;

    width: min(760px, 80%);

    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.55), rgba(255, 107, 53, 0.55), transparent);

}

.c-glow-divider::before {

    content: '';

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    width: 80px;

    height: 80px;

    border-radius: 50%;

    background: radial-gradient(circle, rgba(255, 107, 53, 0.25), transparent 70%);

    pointer-events: none;

}



/* Внутренние стили перебивок */

.c-kicker {

    display: inline-block;

    font-family: 'Unbounded', system-ui, sans-serif;

    font-size: 0.68rem;

    font-weight: 500;

    letter-spacing: 0.28em;

    text-transform: uppercase;

    color: var(--circus-fire);

    margin-bottom: 16px;

}

.c-interlude__title {

    font-family: 'Playfair Display', serif;

    font-size: clamp(2.4rem, 6vw, 5rem);

    font-weight: 900;

    line-height: 1;

    letter-spacing: 0.02em;

    margin: 0 0 22px 0;

    background: linear-gradient(180deg, #fff6dc 0%, #f0d060 40%, #d4af37 70%, #a9791d 100%);

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

    text-shadow: 0 0 60px rgba(212, 175, 55, 0.35);

}

.c-interlude__text {

    max-width: 62ch;

    margin: 0 auto;

    font-family: 'Playfair Display', serif;

    font-style: italic;

    font-size: clamp(1rem, 2vw, 1.2rem);

    line-height: 1.65;

    color: rgba(245, 236, 217, 0.85);

}



/* Отключаем параллакс на мобильных */

@media (max-width: 1024px) {

    .c-bg-parallax,

    .c-bg-hero,

    .c-interlude-arches,

    .c-interlude-legends,

    .c-interlude-planeta,

    .c-workshop-bg,

    .c-join-bg {

        background-attachment: scroll !important;

    }

}

@media (prefers-reduced-motion: reduce) {

    .c-bg-parallax,

    .c-bg-hero,

    .c-interlude-arches,

    .c-interlude-legends,

    .c-interlude-planeta,

    .c-workshop-bg,

    .c-join-bg {

        background-attachment: scroll !important;

    }

}
/* ==========================================================================
   C-HERO — главный блок цирка (дизайн Grok)
   ========================================================================== */

.c-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-radius: 24px;
    margin: 0 !important;
    padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 64px) clamp(88px, 10vw, 120px);
    background:
        radial-gradient(1200px 600px at 50% 0%, #1e1933 0%, #0a0e1a 75%),
        #0a0e1a;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.c-hero__sparks {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    border-radius: inherit;
    width: 100%;
    height: 100%;
}

.c-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

/* ЛЕВАЯ ЧАСТЬ */
.c-hero__left {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.c-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    padding: 8px 16px;
    font-family: 'Unbounded', system-ui, sans-serif;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--circus-gold-light);
    background: rgba(26, 31, 53, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 100px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.c-hero__kicker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--circus-fire);
    box-shadow: 0 0 8px var(--circus-fire);
    animation: c-hero-pulse 2s ease-in-out infinite;
}

@keyframes c-hero-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

.c-hero__title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.01em;
}

.c-hero__title-main {
    font-size: clamp(3rem, 8vw, 6.5rem);
    background: linear-gradient(135deg, #fff6dc 0%, #f0d060 30%, #d4af37 60%, #a9791d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.4), 0 0 80px rgba(255, 107, 53, 0.25);
}

.c-hero__title-sub {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    background: linear-gradient(100deg, #ff8c42 0%, #ff6b35 50%, #c94a15 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.5));
    margin-top: 8px;
}

.c-hero__lead {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(0.98rem, 1.2vw, 1.15rem);
    line-height: 1.65;
    color: rgba(245, 236, 217, 0.85);
    max-width: 52ch;
    margin: 0;
}

.c-hero__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    color: var(--circus-gold-light);
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.5);
    transition: color 0.25s, border-color 0.25s, gap 0.25s;
}

.c-hero__link:hover {
    color: var(--circus-fire);
    border-color: var(--circus-fire);
    gap: 12px;
}

.c-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 8px;
}

/* КНОПКИ */
.c-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Unbounded', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.3s, background 0.3s, border-color 0.3s, color 0.3s;
    white-space: nowrap;
}

.c-btn--gold {
    background: linear-gradient(135deg, #d4af37 0%, #ff6b35 100%);
    color: #0a0e1a;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35), 0 0 20px rgba(255, 107, 53, 0.2);
}

.c-btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(255, 107, 53, 0.55), 0 0 30px rgba(212, 175, 55, 0.7);
    color: #0a0e1a;
}

.c-btn--ghost {
    background: rgba(212, 175, 55, 0.05);
    color: var(--circus-gold-light);
    border-color: rgba(212, 175, 55, 0.55);
}

.c-btn--ghost:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--circus-gold);
    color: var(--circus-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

/* СЧЁТЧИКИ */
.c-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding-top: 24px;
    margin-top: 8px;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    max-width: 540px;
}

.c-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.c-hero__stat-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 900;
    line-height: 1;
    color: var(--circus-gold-light);
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.45);
}

.c-hero__stat-num--fire {
    color: var(--circus-fire);
    text-shadow: 0 0 25px rgba(255, 107, 53, 0.55);
}

.c-hero__stat-label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    color: var(--circus-mute);
    line-height: 1.35;
}

/* ПРАВАЯ ЧАСТЬ — КРУГ С ФОТО */
.c-hero__right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-hero__frame {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.6);
    box-shadow:
        0 0 50px rgba(212, 175, 55, 0.4),
        0 0 100px rgba(255, 107, 53, 0.2),
        inset 0 0 60px rgba(212, 175, 55, 0.1);
    background: #0a0e1a;
}

.c-hero__ring {
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.35);
    animation: c-hero-ring 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 3;
}

@keyframes c-hero-ring {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.04); opacity: 0.4; }
}

.c-hero__glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.15), transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.c-hero__image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.05) saturate(1.05);
    transition: transform 1.2s ease;
}

.c-hero__frame:hover .c-hero__image {
    transform: scale(1.04);
}

/* Золотые уголки */
.c-hero__corner {
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 3;
    pointer-events: none;
    border-color: var(--circus-gold-light);
    border-style: solid;
    border-width: 0;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.7));
}

.c-hero__corner--tl { top: 12px; left: 12px; border-top-width: 2px; border-left-width: 2px; }
.c-hero__corner--tr { top: 12px; right: 12px; border-top-width: 2px; border-right-width: 2px; }
.c-hero__corner--bl { bottom: 12px; left: 12px; border-bottom-width: 2px; border-left-width: 2px; }
.c-hero__corner--br { bottom: 12px; right: 12px; border-bottom-width: 2px; border-right-width: 2px; }

/* BADGE ВНИЗУ HERO */
.c-hero__badge {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--circus-text);
    background: rgba(21, 25, 42, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 100px;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
    white-space: nowrap;
    text-decoration: none;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.c-hero__badge:hover {
    border-color: var(--circus-gold);
    transform: translateX(-50%) scale(1.04);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.4);
}

.c-hero__badge strong {
    color: var(--circus-gold-light);
    font-weight: 700;
}

.c-hero__badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--circus-fire);
    box-shadow: 0 0 10px var(--circus-fire);
    animation: c-hero-pulse 1.8s ease-in-out infinite;
}

/* МОБИЛЬНАЯ АДАПТАЦИЯ */
@media (max-width: 992px) {
    .c-hero__inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }
    .c-hero__right {
        order: -1;
    }
    .c-hero__frame {
        max-width: 380px;
    }
    .c-hero__badge {
        position: static;
        transform: none;
        margin-top: 32px;
        white-space: normal;
        text-align: center;
        justify-content: center;
        width: 100%;
    }
    .c-hero__badge:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 576px) {
    .c-hero {
        border-radius: 16px;
        padding: 32px 20px 40px;
    }
    .c-hero__title-main {
        font-size: 2.6rem;
    }
    .c-hero__title-sub {
        font-size: 1.3rem;
    }
    .c-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .c-btn {
        width: 100%;
    }
    .c-hero__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .c-hero__stat-num {
        font-size: 1.4rem;
    }
    .c-hero__stat-label {
        font-size: 0.62rem;
    }
    .c-hero__frame {
        max-width: 280px;
    }
}



/* Фикс: АРТНОНСТОП в HERO — не выходит за пределы */

.c-hero__title-main {

    font-size: clamp(2.4rem, 6.5vw, 5rem) !important;

    word-break: keep-all;

    overflow-wrap: normal;

    hyphens: none;

}




/* ==========================================================================

   C-ANCHORS — якорное меню под HERO

   ========================================================================== */

.c-anchors {

    position: sticky;

    top: 140px;

    z-index: 50;

    background: rgba(10, 14, 26, 0.94);

    /* bf off */

    /* wbf off */

    border-top: none;

    border-bottom: none;

    padding: 12px 0;

    margin: 0;

    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);

}



.c-anchors__inner {

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 8px;

    max-width: 1440px;

    margin: 0 auto;

    padding: 0 8px;

}



.c-anchors__label {

    font-family: 'Unbounded', sans-serif;

    font-size: 0.62rem;

    font-weight: 600;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    color: var(--circus-gold-light);

    margin-right: 8px;

}



.c-anchors__link {

    display: inline-block;

    padding: 7px 14px;

    font-family: 'Unbounded', sans-serif;

    font-size: 0.58rem;

    font-weight: 500;

    letter-spacing: 0.14em;

    text-transform: uppercase;

    color: var(--circus-gold-light);

    text-decoration: none;

    border: 1px solid rgba(212, 175, 55, 0.35);

    border-radius: 100px;

    background: transparent;

    transition: background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;

    white-space: nowrap;

}



.c-anchors__link:hover {

    background: rgba(212, 175, 55, 0.12);

    border-color: var(--circus-gold);

    color: var(--circus-gold-light);

}



.c-anchors__link--gold {

    background: linear-gradient(135deg, #d4af37 0%, #ff6b35 100%);

    color: #0a0e1a;

    border-color: transparent;

    font-weight: 700;

}



.c-anchors__link--gold:hover {

    filter: brightness(1.1);

    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.4);

    color: #0a0e1a;

}



@media (max-width: 1024px) {

    .c-anchors {

        top: 140px;

        margin-left: -20px;

        margin-right: -20px;

    }

    .c-anchors__inner {

        flex-wrap: nowrap;

        overflow-x: auto;

        -webkit-overflow-scrolling: touch;

        padding: 0 20px;

    }

    .c-anchors__inner::-webkit-scrollbar { height: 4px; }

    .c-anchors__inner::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.4); border-radius: 4px; }

}



@media (max-width: 768px) {

    .c-anchors {

        top: 140px;

        margin-left: -12px;

        margin-right: -12px;

        padding: 10px 0;

    }

    .c-anchors__inner { padding: 0 12px; }

    .c-anchors__label { font-size: 0.55rem; }

    .c-anchors__link { font-size: 0.54rem; padding: 6px 12px; }

}

/* ==========================================================================
   C-SECTION — базовая обёртка секции
   ========================================================================== */
.c-section {
    position: relative;
    padding: clamp(56px, 7vw, 96px) 0;
    margin: 0 !important;
}

.c-section__head {
    text-align: center;
    max-width: 860px;
    margin: 0 auto clamp(32px, 5vw, 56px);
}

.c-kicker {
    display: inline-block;
    font-family: 'Unbounded', system-ui, sans-serif;
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--circus-fire);
    margin-bottom: 14px;
}

.c-section__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin: 0 0 16px 0;
    color: var(--circus-text);
}

.c-section__sub {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.6;
    color: var(--circus-mute);
    margin: 0 auto;
    max-width: 62ch;
}

.c-gold {
    background: linear-gradient(135deg, #fff6dc 0%, #f0d060 40%, #d4af37 70%, #a9791d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

/* Золотой разделитель */
.c-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 22px auto 0;
    width: min(420px, 80%);
}

.c-divider i {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6));
}

.c-divider i:last-child {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.6), transparent);
}

.c-divider span {
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, #d4af37, #ff6b35);
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.7);
    flex: none;
}

/* ==========================================================================
   C-TREE — схема артели
   ========================================================================== */
.c-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
}

.c-tree__root {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 48px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(255, 107, 53, 0.10));
    border: 2px solid var(--circus-gold);
    border-radius: 20px;
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.4);
    text-align: center;
}

.c-tree__root i {
    font-size: 1.6rem;
    color: var(--circus-gold-light);
    margin-bottom: 6px;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
}

.c-tree__root strong {
    font-family: 'Unbounded', system-ui, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    color: var(--circus-gold-light);
    text-shadow: 0 0 26px rgba(212, 175, 55, 0.5);
}

.c-tree__root small {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--circus-mute);
    margin-top: 6px;
}

.c-tree__line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--circus-gold), rgba(212, 175, 55, 0.15));
    position: relative;
}

.c-tree__line::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: -3px;
    width: 8px;
    height: 8px;
    background: var(--circus-gold);
    transform: rotate(45deg);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
}

.c-tree__core {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 22px 44px;
    background: linear-gradient(160deg, #22283f, #141828);
    border: 2px solid var(--circus-gold);
    border-radius: 16px;
    box-shadow: 0 0 46px rgba(212, 175, 55, 0.35);
    text-align: center;
}

.c-tree__core i {
    font-size: 1.4rem;
    color: var(--circus-fire);
    margin-bottom: 6px;
    filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.6));
}

.c-tree__core strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--circus-text);
    letter-spacing: 0.01em;
}

.c-tree__core small {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--circus-fire);
    margin-top: 4px;
}

.c-tree__row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    padding-top: 40px;
}

.c-tree__row::before {
    content: '';
    position: absolute;
    top: 140px;
    left: calc(16.666% + 12px);
    right: calc(16.666% + 12px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5) 15%, rgba(212, 175, 55, 0.5) 85%, transparent);
}

.c-node {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 20px;
    background: linear-gradient(170deg, #1a1f35, #15192a);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 16px;
    text-align: center;
    transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.c-node::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.2), var(--circus-gold));
}

.c-node:hover {
    transform: translateY(-4px);
    border-color: var(--circus-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.2);
}

.c-node i {
    font-size: 1.8rem;
    color: var(--circus-gold-light);
    margin-bottom: 12px;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.5));
}

.c-node strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--circus-text);
    margin-bottom: 4px;
    line-height: 1.25;
}

.c-node small {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--circus-mute);
    line-height: 1.4;
}

/* Ключевой узел (Цирк огня и света) */
.c-node--star {
    background: linear-gradient(170deg, #231a30, #1a1f35);
    border: 2px solid var(--circus-gold);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.3), 0 0 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-6px);
    padding-top: 32px;
}

.c-node--star::before {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.2), var(--circus-fire));
}

.c-node--star i {
    font-size: 2.2rem;
    color: var(--circus-fire);
    filter: drop-shadow(0 0 14px rgba(255, 107, 53, 0.7));
}

.c-node--star strong {
    color: var(--circus-gold-light);
    font-size: 1.2rem;
}

.c-node--star small {
    color: var(--circus-gold-light);
    font-weight: 700;
}

.c-node__badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 14px;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0a0e1a;
    background: linear-gradient(135deg, #d4af37, #ff6b35);
    border-radius: 100px;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
    white-space: nowrap;
    z-index: 2;
}

/* Мелкие узлы (второй ряд) */
.c-node--sm {
    padding: 20px 16px;
}

.c-node--sm i {
    font-size: 1.5rem;
}

.c-node--sm strong {
    font-size: 1rem;
}

.c-tree__note {
    margin: 52px auto 0;
    max-width: 720px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--circus-mute);
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    padding-top: 22px;
}

/* Мобильная адаптация дерева */
@media (max-width: 1024px) {
    .c-tree__row {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
        padding-top: 140px;
    }
    .c-tree__row::before {
        display: none;
    }
    .c-node::before {
        top: -34px;
        height: 34px;
    }
    .c-node--star {
        transform: none;
    }
    .c-tree__line {
        height: 34px;
    }
}

@media (max-width: 576px) {
    .c-tree__root {
        padding: 16px 24px;
    }
    .c-tree__root strong {
        font-size: 1rem;
        letter-spacing: 0.2em;
    }
    .c-tree__core {
        padding: 18px 24px;
    }
    .c-tree__core strong {
        font-size: 1.1rem;
    }
    .c-node strong {
        font-size: 1rem;
    }
}


/* ==========================================================================

   C-TREE v2 — правильная иерархия артели

   Уровень 1: АРТНОНСТОП (root)

   Уровень 2: 4 отдела (Продюсерский центр, Event, Курсы, МАП)

   Уровень 3: 3 проекта центра (Киностудия, Цирк огня и света, Сервис)

   ========================================================================== */

.c-tree {

    display: flex;

    flex-direction: column;

    align-items: center;

    max-width: 1240px;

    margin: 0 auto;

    position: relative;

}



/* ROOT */

.c-tree__root {

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    padding: 24px 56px;

    background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(255, 107, 53, 0.12));

    border: 2px solid var(--circus-gold);

    border-radius: 20px;

    box-shadow:

        0 0 40px rgba(212, 175, 55, 0.5),

        0 0 80px rgba(255, 107, 53, 0.2),

        inset 0 0 30px rgba(212, 175, 55, 0.08);

    text-align: center;

    z-index: 3;

}

.c-tree__root i {

    font-size: 1.8rem;

    color: var(--circus-gold-light);

    margin-bottom: 8px;

    filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.8));

}

.c-tree__root strong {

    font-family: 'Unbounded', system-ui, sans-serif;

    font-size: 1.35rem;

    font-weight: 800;

    letter-spacing: 0.3em;

    color: var(--circus-gold-light);

    text-shadow: 0 0 30px rgba(212, 175, 55, 0.7);

}

.c-tree__root small {

    font-family: 'Unbounded', sans-serif;

    font-size: 0.58rem;

    letter-spacing: 0.22em;

    text-transform: uppercase;

    color: var(--circus-mute);

    margin-top: 8px;

}



/* ВЕРТИКАЛЬНАЯ СВЯЗКА */

.c-tree__line {

    width: 3px;

    height: 44px;

    background: linear-gradient(180deg, var(--circus-gold), var(--circus-fire));

    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);

    position: relative;

    z-index: 1;

}

.c-tree__line::after {

    content: '';

    position: absolute;

    bottom: -5px;

    left: 50%;

    transform: translateX(-50%) rotate(45deg);

    width: 10px;

    height: 10px;

    background: var(--circus-fire);

    box-shadow: 0 0 14px rgba(255, 107, 53, 0.9);

}



/* РЯД УЗЛОВ */

.c-tree__row {

    position: relative;

    display: grid;

    gap: 20px;

    width: 100%;

    padding-top: 52px;

    margin-top: 4px;

}

.c-tree__row--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.c-tree__row--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }



/* Горизонтальная ветка */

.c-tree__row::before {

    content: '';

    position: absolute;

    top: 20px;

    left: calc(12.5% + 10px);

    right: calc(12.5% + 10px);

    height: 3px;

    background: linear-gradient(90deg, transparent 0%, var(--circus-gold) 15%, var(--circus-gold) 85%, transparent 100%);

    box-shadow: 0 0 14px rgba(212, 175, 55, 0.6);

    z-index: 0;

}



/* Для ряда с 3 узлами — ветка шире по краям */

.c-tree__row--3::before {

    left: calc(16.666% + 12px);

    right: calc(16.666% + 12px);

}



/* Карточка */

.c-node {

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    padding: 22px 16px;

    background: linear-gradient(170deg, #1a1f35, #15192a);

    border: 1px solid rgba(212, 175, 55, 0.35);

    border-radius: 16px;

    text-align: center;

    transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;

    margin-top: 20px;

    z-index: 1;

}



/* Вертикальная ножка от ветки */

.c-node::before {

    content: '';

    position: absolute;

    top: -32px;

    left: 50%;

    transform: translateX(-50%);

    width: 3px;

    height: 32px;

    background: linear-gradient(180deg, rgba(212, 175, 55, 0.4), var(--circus-gold));

    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);

}

.c-node::after {

    content: '';

    position: absolute;

    top: -6px;

    left: 50%;

    transform: translateX(-50%) rotate(45deg);

    width: 10px;

    height: 10px;

    background: var(--circus-gold);

    box-shadow: 0 0 14px rgba(212, 175, 55, 0.9);

}



.c-node:hover {

    transform: translateY(-4px);

    border-color: var(--circus-gold);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.25);

}

.c-node i {

    font-size: 1.7rem;

    color: var(--circus-gold-light);

    margin-bottom: 10px;

    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.5));

}

.c-node strong {

    font-family: 'Playfair Display', serif;

    font-size: 1.05rem;

    font-weight: 700;

    color: var(--circus-text);

    margin-bottom: 4px;

    line-height: 1.25;

}

.c-node small {

    font-family: 'Unbounded', sans-serif;

    font-size: 0.52rem;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    color: var(--circus-mute);

    line-height: 1.4;

}



/* КЛЮЧЕВОЙ УЗЕЛ */

.c-node--star {

    background: linear-gradient(170deg, #2a1f38, #1a1f35);

    border: 2px solid var(--circus-fire);

    box-shadow:

        0 0 40px rgba(255, 107, 53, 0.5),

        0 0 20px rgba(212, 175, 55, 0.3),

        inset 0 0 24px rgba(255, 107, 53, 0.08);

    transform: translateY(-12px);

    padding-top: 34px;

    margin-top: 8px;

}

.c-node--star::before {

    height: 44px;

    top: -44px;

    background: linear-gradient(180deg, rgba(255, 107, 53, 0.4), var(--circus-fire));

    box-shadow: 0 0 12px rgba(255, 107, 53, 0.7);

}

.c-node--star::after {

    top: -18px;

    background: var(--circus-fire);

    box-shadow: 0 0 16px rgba(255, 107, 53, 1);

}

.c-node--star i {

    font-size: 2.2rem;

    color: var(--circus-fire);

    filter: drop-shadow(0 0 16px rgba(255, 107, 53, 0.9));

}

.c-node--star strong {

    color: var(--circus-gold-light);

    font-size: 1.15rem;

}

.c-node--star small {

    color: var(--circus-gold-light);

    font-weight: 700;

}



/* БЕЙДЖ */

.c-node__badge {

    position: absolute;

    top: -18px;

    left: 50%;

    transform: translateX(-50%);

    padding: 6px 16px;

    font-family: 'Unbounded', sans-serif;

    font-size: 0.52rem;

    font-weight: 800;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    color: #0a0e1a;

    background: linear-gradient(135deg, #d4af37, #ff6b35);

    border-radius: 100px;

    box-shadow: 0 0 22px rgba(255, 107, 53, 0.8);

    white-space: nowrap;

    z-index: 4;

}



/* Уровень 3 — приглушённые (проекты центра) */

.c-node--sm {

    padding: 18px 14px;

    background: linear-gradient(170deg, #15192a, #101424);

    border-color: rgba(212, 175, 55, 0.22);

}

.c-node--sm i {

    font-size: 1.4rem;

    opacity: 0.9;

}

.c-node--sm strong {

    font-size: 0.95rem;

}

.c-node--sm small {

    opacity: 0.85;

}



/* Подпись «проекты центра» между 2 и 3 уровнями */

.c-tree__drops {

    display: flex;

    align-items: center;

    gap: 16px;

    margin: 40px auto 0;

    width: min(560px, 85%);

    position: relative;

}

.c-tree__drops::before,

.c-tree__drops::after {

    content: '';

    flex: 1;

    height: 1px;

    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), rgba(212, 175, 55, 0.5), transparent);

}

.c-tree__drops-label {

    font-family: 'Unbounded', sans-serif;

    font-size: 0.58rem;

    font-weight: 500;

    letter-spacing: 0.24em;

    text-transform: uppercase;

    color: var(--circus-gold-light);

    white-space: nowrap;

    text-shadow: 0 0 12px rgba(212, 175, 55, 0.4);

}



/* Цитата */

.c-tree__note {

    margin: 52px auto 0;

    max-width: 720px;

    text-align: center;

    font-family: 'Playfair Display', serif;

    font-style: italic;

    font-size: 1.05rem;

    color: var(--circus-mute);

    border-top: 1px solid rgba(212, 175, 55, 0.3);

    padding-top: 22px;

}



/* ПОДПИСЬ ПОД 2-м РЯДОМ — «отделы артели» */

.c-tree__row--4::after {

    content: '';

    position: absolute;

    bottom: -20px;

    left: 10%;

    right: 10%;

    height: 1px;

    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);

}



/* МОБИЛЬНАЯ */

@media (max-width: 1024px) {

    .c-tree__row--4,

    .c-tree__row--3 {

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 16px;

    }

    .c-tree__row::before,

    .c-tree__row::after {

        display: none;

    }

    .c-node {

        margin-top: 140px;

    }

    .c-node::before {

        top: -32px;

        height: 32px;

    }

    .c-node--star {

        transform: none;

        margin-top: 140px;

    }

    .c-tree__drops {

        margin-top: 32px;

    }

}

@media (max-width: 640px) {

    .c-tree__row--4,

    .c-tree__row--3 {

        grid-template-columns: minmax(0, 1fr);

        gap: 22px;

    }

    .c-tree__root {

        padding: 18px 28px;

    }

    .c-tree__root strong {

        font-size: 1rem;

        letter-spacing: 0.22em;

    }

}




/* ==========================================================================

   C-HEADER — шапка в одну полосу, sticky

   ========================================================================== */

body.artnonstop-circus .container-header {

    position: sticky !important;

    top: 0 !important;

    z-index: 100 !important;

    display: flex !important;

    flex-direction: row !important;

    align-items: center !important;

    justify-content: space-between !important;

    gap: 24px !important;

    padding: 12px 28px !important;

    background: rgba(10, 14, 26, 0.95) !important;

    /* bf off */

    /* wbf off */

    border-bottom: 1px solid rgba(212, 175, 55, 0.25) !important;

    max-width: 100% !important;

    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);

    transition: background 0.3s, border-color 0.3s;

}



/* Убираем внутренние grid-child — шапка становится одной строкой */

body.artnonstop-circus .container-header > .grid-child {

    padding: 0 !important;

    max-width: none !important;

    margin: 0 !important;

    width: auto !important;

}



/* Логотип слева */

body.artnonstop-circus .container-header > .grid-child:first-child {

    flex: 0 0 auto !important;

    order: 1 !important;

}



body.artnonstop-circus .container-header .navbar-brand {

    display: flex !important;

    flex-direction: row !important;

    align-items: center !important;

    gap: 12px !important;

    padding: 0 !important;

}



body.artnonstop-circus .container-header .brand-logo {

    display: flex !important;

    align-items: center !important;

    gap: 12px !important;

    font-family: 'Unbounded', sans-serif !important;

    font-size: 1.15rem !important;

    font-weight: 800 !important;

    letter-spacing: 0.14em !important;

    color: var(--circus-gold-light) !important;

    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5) !important;

    text-decoration: none !important;

    line-height: 1 !important;

    white-space: nowrap !important;

}



body.artnonstop-circus .container-header .brand-logo::before {


    font-size: 1.5rem !important;

    line-height: 1 !important;

    filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.7)) !important;

}



body.artnonstop-circus .container-header .site-description {

    font-family: 'Unbounded', sans-serif !important;

    font-size: 0.48rem !important;

    letter-spacing: 0.28em !important;

    text-transform: uppercase !important;

    color: var(--circus-mute) !important;

    margin: 0 !important;

    padding: 0 !important;

    display: block !important;

    text-align: left !important;

}



/* Меню + поиск + бургер в одной строке справа */

body.artnonstop-circus .container-header .container-nav {

    display: flex !important;

    align-items: center !important;

    gap: 24px !important;

    padding: 0 !important;

    flex: 1 1 auto !important;

    justify-content: flex-end !important;

    background: transparent !important;

    border: none !important;

    order: 2 !important;

    position: static !important;

}



body.artnonstop-circus .container-header .mod-menu.mod-list.nav {

    display: flex !important;

    flex-wrap: nowrap !important;

    gap: 4px !important;

    margin: 0 !important;

    padding: 0 !important;

    list-style: none !important;

    align-items: center !important;

}



body.artnonstop-circus .container-header .mod-menu.mod-list.nav > li > a {

    display: block !important;

    padding: 8px 14px !important;

    font-family: 'Unbounded', sans-serif !important;

    font-size: 0.6rem !important;

    font-weight: 500 !important;

    letter-spacing: 0.16em !important;

    text-transform: uppercase !important;

    color: var(--circus-text) !important;

    text-decoration: none !important;

    border-radius: 100px !important;

    border: 1px solid transparent !important;

    transition: all 0.25s !important;

    white-space: nowrap !important;

    background: transparent !important;

}



body.artnonstop-circus .container-header .mod-menu.mod-list.nav > li > a:hover,

body.artnonstop-circus .container-header .mod-menu.mod-list.nav > li.active > a,

body.artnonstop-circus .container-header .mod-menu.mod-list.nav > li.current > a {

    color: var(--circus-gold-light) !important;

    background: rgba(212, 175, 55, 0.1) !important;

    border-color: rgba(212, 175, 55, 0.45) !important;

}



/* ПОИСК — компактный, справа */

body.artnonstop-circus .container-header .container-search {

    position: static !important;

    margin: 0 !important;

    padding: 0 !important;

    display: flex !important;

    align-items: center !important;

    flex: 0 0 auto !important;

}



body.artnonstop-circus .container-header .container-search form {

    display: flex !important;

    align-items: center !important;

    gap: 0 !important;

    margin: 0 !important;

    padding: 0 !important;

    background: rgba(21, 25, 42, 0.85) !important;

    border: 1px solid rgba(212, 175, 55, 0.3) !important;

    border-radius: 100px !important;

    overflow: hidden !important;

    transition: border-color 0.25s, box-shadow 0.25s;

}



body.artnonstop-circus .container-header .container-search form:focus-within {

    border-color: var(--circus-gold) !important;

    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18) !important;

}



body.artnonstop-circus .container-header .container-search input {

    width: 140px !important;

    padding: 8px 14px !important;

    font-size: 0.72rem !important;

    background: transparent !important;

    border: none !important;

    color: var(--circus-text) !important;

    outline: none !important;

    font-family: 'Manrope', sans-serif !important;

}



body.artnonstop-circus .container-header .container-search input::placeholder {

    color: var(--circus-mute) !important;

    font-size: 0.7rem !important;

}



body.artnonstop-circus .container-header .container-search button,

body.artnonstop-circus .container-header .container-search .btn {

    padding: 8px 16px !important;

    font-family: 'Unbounded', sans-serif !important;

    font-size: 0.58rem !important;

    font-weight: 700 !important;

    letter-spacing: 0.12em !important;

    text-transform: uppercase !important;

    background: linear-gradient(135deg, #d4af37 0%, #ff6b35 100%) !important;

    color: #0a0e1a !important;

    border: none !important;

    border-radius: 0 !important;

    cursor: pointer !important;

    white-space: nowrap !important;

    transition: filter 0.25s !important;

}



body.artnonstop-circus .container-header .container-search button:hover {

    filter: brightness(1.1) !important;

}



/* Бургер — на мобильных */

body.artnonstop-circus .container-header .an-burger {

    display: none !important;

    width: 40px !important;

    height: 40px !important;

    flex-direction: column !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 4px !important;

    background: transparent !important;

    border: 1px solid rgba(212, 175, 55, 0.35) !important;

    border-radius: 8px !important;

    cursor: pointer !important;

    flex: 0 0 auto !important;

}



body.artnonstop-circus .container-header .an-burger span {

    display: block !important;

    width: 18px !important;

    height: 2px !important;

    background: var(--circus-gold-light) !important;

    transition: transform 0.3s !important;

}



/* Верхняя полоса topbar (если есть) — тоже sticky вместе с шапкой */

body.artnonstop-circus .container-topbar {

    position: relative !important;

    z-index: 99 !important;

}



/* ==========================================================================

   BREADCRUMBS — компактно под шапкой

   ========================================================================== */

body.artnonstop-circus .container-component .mod-breadcrumbs__wrapper {

    margin: 16px 0 24px 0 !important;

    padding: 0 !important;

}



body.artnonstop-circus .container-component .breadcrumb {

    background: transparent !important;

    margin: 0 !important;

    padding: 0 !important;

    display: flex !important;

    align-items: center !important;

    gap: 8px !important;

    list-style: none !important;

    font-size: 0 !important;

}



body.artnonstop-circus .container-component .breadcrumb-item,

body.artnonstop-circus .container-component .breadcrumb-item a,

body.artnonstop-circus .container-component .mod-breadcrumbs__here {

    font-family: 'Unbounded', sans-serif !important;

    font-size: 0.58rem !important;

    letter-spacing: 0.18em !important;

    text-transform: uppercase !important;

    color: var(--circus-mute) !important;

    text-decoration: none !important;

    transition: color 0.25s !important;

}



body.artnonstop-circus .container-component .breadcrumb-item a:hover {

    color: var(--circus-gold-light) !important;

}



body.artnonstop-circus .container-component .breadcrumb-item.active,

body.artnonstop-circus .container-component .breadcrumb-item.active span {

    color: var(--circus-gold-light) !important;

}



body.artnonstop-circus .container-component .breadcrumb-item + .breadcrumb-item::before {

    content: '/' !important;

    color: rgba(212, 175, 55, 0.5) !important;

    margin: 0 8px 0 4px !important;

    font-size: 0.58rem !important;

}



/* ==========================================================================

   МОБИЛЬНАЯ АДАПТАЦИЯ ШАПКИ

   ========================================================================== */

@media (max-width: 1200px) {

    body.artnonstop-circus .container-header {

        padding: 10px 20px !important;

        gap: 16px !important;

    }

    body.artnonstop-circus .container-header .mod-menu.mod-list.nav > li > a {

        padding: 7px 10px !important;

        font-size: 0.55rem !important;

        letter-spacing: 0.12em !important;

    }

    body.artnonstop-circus .container-header .container-search input {

        width: 100px !important;

    }

}



@media (max-width: 992px) {

    body.artnonstop-circus .container-header {

        padding: 10px 16px !important;

        gap: 12px !important;

    }

    body.artnonstop-circus .container-header .mod-menu.mod-list.nav {

        display: none !important;

    }

    body.artnonstop-circus .container-header .container-search {

        display: none !important;

    }

    body.artnonstop-circus .container-header .an-burger {

        display: flex !important;

    }

    body.artnonstop-circus .container-header .brand-logo {

        font-size: 1rem !important;

    }

}



@media (max-width: 576px) {

    body.artnonstop-circus .container-header {

        padding: 8px 12px !important;

    }

    body.artnonstop-circus .container-header .brand-logo {

        font-size: 0.85rem !important;

        letter-spacing: 0.1em !important;

    }

    body.artnonstop-circus .container-header .brand-logo::before {

        font-size: 1.25rem !important;

    }

    body.artnonstop-circus .container-header .site-description {

        display: none !important;

    }

}




/* Автофикс: якорное меню вплотную под шапкой */

body.artnonstop-circus .c-anchors {

    top: var(--header-total-height, 70px) !important;

}
/* ==========================================================================
   30. ПРИНЦИПЫ РАБОТЫ (.c-grid-4, .c-card, .c-note)
   Стиль карточек: тёмный фон, золотая рамка с засечками, hover-подъём.
   ========================================================================== */

/* ---- Сетка 4 колонки ---- */
.c-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
    margin: 0 auto;
    max-width: 1280px;
}

/* ---- Карточка принципа ---- */
.c-card {
    position: relative;
    background: linear-gradient(170deg, var(--circus-bg-card) 0%, #101424 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 14px;
    padding: 30px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition:
        transform 0.45s cubic-bezier(0.2, 0.7, 0.3, 1),
        border-color 0.45s,
        box-shadow 0.45s;
    overflow: hidden;
}

/* Золотые уголки-засечки (как .orn в превью) */
.c-card::before,
.c-card::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    pointer-events: none;
    z-index: 2;
    transition: width 0.4s, height 0.4s, filter 0.4s;
}
.c-card::before {
    top: 8px;
    left: 8px;
    border-top: 1px solid rgba(212, 175, 55, 0.75);
    border-left: 1px solid rgba(212, 175, 55, 0.75);
}
.c-card::after {
    bottom: 8px;
    right: 8px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.75);
    border-right: 1px solid rgba(212, 175, 55, 0.75);
}

/* Hover карточки */
.c-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.65);
    box-shadow:
        0 20px 44px rgba(0, 0, 0, 0.5),
        0 0 36px rgba(212, 175, 55, 0.18);
}
.c-card:hover::before,
.c-card:hover::after {
    width: 26px;
    height: 26px;
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.85));
}

/* ---- Иконка в карточке ---- */
.c-card__icon {
    width: 56px;
    height: 56px;
    flex: none;
    display: grid;
    place-items: center;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 14px;
    background:
        radial-gradient(circle at 30% 25%, rgba(255, 107, 53, 0.25), transparent 65%),
        linear-gradient(160deg, rgba(26, 31, 53, 0.95), rgba(10, 14, 26, 0.9));
    color: var(--circus-gold-light);
    box-shadow: 0 0 22px rgba(212, 175, 55, 0.15);
    transition:
        transform 0.45s cubic-bezier(0.2, 0.7, 0.3, 1),
        box-shadow 0.45s,
        color 0.35s,
        border-color 0.35s;
}
.c-card__icon i {
    font-size: 1.7rem;
    line-height: 1;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.45));
}

.c-card:hover .c-card__icon {
    transform: translateY(-2px) rotate(-4deg);
    color: var(--circus-fire);
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow:
        0 0 32px rgba(255, 107, 53, 0.35),
        0 0 16px rgba(212, 175, 55, 0.4);
}

/* ---- Заголовок принципа ---- */
.c-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.28;
    color: var(--circus-text);
    margin: 4px 0 0;
    transition: color 0.35s;
}
.c-card:hover h3 {
    color: var(--circus-gold-light);
}

/* ---- Текст принципа ---- */
.c-card p {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--circus-mute);
    margin: 0;
    flex: 1;
}

/* ---- Плашка «Финансовая анонимность» ---- */
.c-note {
    position: relative;
    max-width: 920px;
    margin: 42px auto 0;
    padding: 22px 28px 22px 68px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(255, 107, 53, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 14px;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.98rem;
    line-height: 1.55;
    color: rgba(245, 236, 217, 0.9);
    text-align: left;
    box-shadow: 0 0 34px rgba(212, 175, 55, 0.1);
}

.c-note::before {
    content: '★';
    position: absolute;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    font-size: 0.95rem;
    color: #0a0e1a;
    background: linear-gradient(135deg, #d4af37, #ff6b35);
    border-radius: 50%;
    box-shadow: 0 0 22px rgba(212, 175, 55, 0.55);
}

.c-note strong {
    color: var(--circus-gold-light);
    font-weight: 700;
}

/* Скрываем иконку <i class="ph ph-star"> из HTML — используем ::before */
.c-note > i.ph {
    display: none;
}

/* ---- Адаптив ---- */
@media (max-width: 1180px) {
    .c-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }
}

@media (max-width: 640px) {
    .c-grid-4 {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }
    .c-card {
        padding: 24px 20px 22px;
    }
    .c-card__icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }
    .c-card__icon i {
        font-size: 1.5rem;
    }
    .c-card h3 {
        font-size: 1.08rem;
    }
    .c-note {
        padding: 20px 20px 20px 60px;
        font-size: 0.92rem;
    }
    .c-note::before {
        left: 18px;
        width: 26px;
        height: 26px;
        font-size: 0.85rem;
    }
}

/* ---- Уважаем prefers-reduced-motion ---- */
@media (prefers-reduced-motion: reduce) {
    .c-card,
    .c-card::before,
    .c-card::after,
    .c-card__icon {
        transition-duration: 0.001ms !important;
    }
    .c-card:hover {
        transform: none;
    }
}ਊ⼊‪㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽ਊ†퀠킯킚킞킠킝킞ₕ鳐闐鷐껐钀퀠톿킀킰킲킺₸뻐苑㈠㈰ⴶ㤰㈭ਲ †ꏐ뇐胑냐뷐퀠킻킵킹킱ⲻ턠킃킲킵킻톸킇킵₽裑胑룐蓑苑ਮ †㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽⨠ਯ⸊ⵣ湡档牯彳楟湮牥笠ਊ††番瑳晩⵹潣瑮湥㩴挠湥整㭲ਊ††慧㩰ㄠ瀰㭸ਊ੽ਊ⸊ⵣ湡档牯彳江扡汥笠ਊ††楤灳慬㩹渠湯㭥ਊ੽ਊ⸊ⵣ湡档牯彳江湩⁫੻ †映湯⵴楳敺›⸰㠷敲㭭ਊ††慰摤湩㩧ㄠ瀰⁸〲硰਻ †氠瑥整⵲灳捡湩㩧〠ㄮ攲㭭ਊ੽ਊ䀊敭楤⁡洨硡眭摩桴›㘷瀸⥸笠ਊ††挮愭据潨獲彟楬歮笠ਊ††††潦瑮猭穩㩥〠㜮爲浥਻ †††瀠摡楤杮›瀸⁸㐱硰਻ †素ਊ੽ਊਊ⨯㴠㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽਽ †鋐闐ꃐꗐ鷐闐闐퀠킜킕킝₮胢ₔ뿐胑냐닐뫐룐퀠톾₂〲㘲〭ⴹ㈲ਊ†퀠킣킲킵킻톸킇킵₽裑胑룐蓑苑ਮ †㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽⨠ਯ戊摯⹹牡湴湯瑳灯挭物畣⁳挮湯慴湩牥栭慥敤⁲洮摯洭湥⹵潭ⵤ楬瑳渮癡㸠氠⁩‾⁡੻ †映湯⵴楳敺›⸰㈷敲⁭椡灭牯慴瑮਻ †瀠摡楤杮›〱硰ㄠ瀶⁸椡灭牯慴瑮਻ †氠瑥整⵲灳捡湩㩧〠ㄮ攴⁭椡灭牯慴瑮਻紊ਊਊ浀摥慩⠠慭⵸楷瑤㩨ㄠ〲瀰⥸笠ਊ††潢祤愮瑲潮獮潴⵰楣捲獵⸠潣瑮楡敮⵲敨摡牥⸠潭ⵤ敭畮洮摯氭獩⹴慮⁶‾楬㸠愠笠ਊ††††潦瑮猭穩㩥〠㘮爵浥℠浩潰瑲湡㭴ਊ††††慰摤湩㩧㠠硰ㄠ瀲⁸椡灭牯慴瑮਻ †素ਊ੽ਊਊ⨯㴠㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽਽ †꣐郐鿐髐郐钀턠킆킵톽톂킀톸킀킾킲킰킽킸₵볐뗐뷐軑‬裑룐胑룐뷐냐퀠킺킰₺菑턠톁톂킀킰킽톸톆ઋ †鿐胑냐닐뫐룐퀠톾₂〲㘲〭ⴹ㈲ਊ†㴠㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽‽⼪ਊ潢祤愮瑲潮獮潴⵰楣捲獵⸠潣瑮楡敮⵲敨摡牥笠ਊ††楷瑤㩨洠湩ㄨ㐴瀰ⱸㄠ〰‥‭㘵硰 椡灭牯慴瑮਻ †洠硡眭摩桴›㐱〴硰℠浩潰瑲湡㭴ਊ††慭杲湩›‰畡潴℠浩潰瑲湡㭴ਊ††慰摤湩㩧ㄠ瀲⁸‰椡灭牯慴瑮਻ †搠獩汰祡›牧摩℠浩潰瑲湡㭴ਊ††牧摩琭浥汰瑡ⵥ潣畬湭㩳愠瑵⁯昱⁲畡潴℠浩潰瑲湡㭴ਊ††污杩⵮瑩浥㩳挠湥整⁲椡灭牯慴瑮਻ †朠灡›㈳硰℠浩潰瑲湡㭴ਊ††敬瑦›㬰ਊ††楲桧㩴〠਻紊ਊਊ潢祤愮瑲潮獮潴⵰楣捲獵⸠潣瑮楡敮⵲敨摡牥㸠⸠牧摩挭楨摬昺物瑳挭楨摬笠ਊ††牧摩挭汯浵㩮ㄠ℠浩潰瑲湡㭴ਊ††番瑳晩⵹敳晬›瑳牡⁴椡灭牯慴瑮਻紊ਊਊ潢祤愮瑲潮獮潴⵰楣捲獵⸠潣瑮楡敮⵲敨摡牥⸠潣瑮楡敮⵲慮⁶੻ †朠楲ⵤ潣畬湭›′椡灭牯慴瑮਻ †樠獵楴祦猭汥㩦挠湥整⁲椡灭牯慴瑮਻ †樠獵楴祦挭湯整瑮›散瑮牥℠浩潰瑲湡㭴ਊ††楤灳慬㩹映敬⁸椡灭牯慴瑮਻ †映敬⵸牷灡›牷灡℠浩潰瑲湡㭴ਊ††慧㩰㐠硰℠浩潰瑲湡㭴ਊ੽ਊ戊摯⹹牡湴湯瑳灯挭物畣⁳挮湯慴湩牥栭慥敤⁲挮湯慴湩牥猭慥捲⁨੻ †朠楲ⵤ潣畬湭›″椡灭牯慴瑮਻ †樠獵楴祦猭汥㩦攠摮℠浩潰瑲湡㭴ਊ੽ਊ䀊敭楤⁡洨硡眭摩桴›㤹瀲⥸笠ਊ††潢祤愮瑲潮獮潴⵰楣捲獵⸠潣瑮楡敮⵲敨摡牥笠ਊ††††牧摩琭浥汰瑡ⵥ潣畬湭㩳愠瑵⁯昱⁲畡潴℠浩潰瑲湡㭴ਊ††††楷瑤㩨洠湩ㄨ〰Ⱕㄠ〰‥‭㐲硰 椡灭牯慴瑮਻ †††朠灡›㈱硰℠浩潰瑲湡㭴ਊ††੽ †戠摯⹹牡湴湯瑳灯挭物畣⁳挮湯慴湩牥栭慥敤⁲挮湯慴湩牥渭癡笠ਊ††††楤灳慬㩹渠湯⁥椡灭牯慴瑮਻ †素ਊ੽ਊ⼊‪㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽ਊ†퀠킯킚킞킠킝킞ₕ鳐闐鷐껐钀턠킆킵톽톂킀톸킀킾킲킰킽킸ⲵ턠톈킀톸톄₂뫐胑菑뿐뷐뗐뗐‬믐뗐말뇐믐턠킃톱킀킰ઽ †㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽⨠ਯ⸊ⵣ湡档牯彳楟湮牥笠ਊ††番瑳晩⵹潣瑮湥㩴挠湥整㭲ਊ††慧㩰ㄠ瀰㭸ਊ੽ਊ⸊ⵣ湡档牯彳江扡汥笠ਊ††楤灳慬㩹渠湯㭥ਊ੽ਊ⸊ⵣ湡档牯彳江湩⁫੻ †映湯⵴楳敺›⸰㠷敲㭭ਊ††慰摤湩㩧ㄠ瀰⁸〲硰਻ †氠瑥整⵲灳捡湩㩧〠ㄮ攲㭭ਊ੽ਊ䀊敭楤⁡洨硡眭摩桴›㘷瀸⥸笠ਊ††挮愭据潨獲彟楬歮笠ਊ††††潦瑮猭穩㩥〠㜮爲浥਻ †††瀠摡楤杮›瀸⁸㐱硰਻ †素ਊ੽ਊਊ⨯㴠㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽਽ †꣐郐鿐髐郐钀턠킆킵톽톂킀톸킀킾킲킰킽킸₵볐뗐뷐軑‬裑룐胑룐뷐냐퀠킺킰₺菑턠톁톂킀킰킽톸톆ઋ †鿐胑냐닐뫐룐퀠톾₂〲㘲〭ⴹ㈲ਊ†㴠㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽‽⼪ਊ潢祤愮瑲潮獮潴⵰楣捲獵⸠潣瑮楡敮⵲敨摡牥笠ਊ††楷瑤㩨洠湩ㄨ㐴瀰ⱸㄠ〰‥‭㘵硰 椡灭牯慴瑮਻ †洠硡眭摩桴›㐱〴硰℠浩潰瑲湡㭴ਊ††慭杲湩›‰畡潴℠浩潰瑲湡㭴ਊ††慰摤湩㩧ㄠ瀲⁸‰椡灭牯慴瑮਻ †搠獩汰祡›牧摩℠浩潰瑲湡㭴ਊ††牧摩琭浥汰瑡ⵥ潣畬湭㩳愠瑵⁯昱⁲畡潴℠浩潰瑲湡㭴ਊ††污杩⵮瑩浥㩳挠湥整⁲椡灭牯慴瑮਻ †朠灡›㈳硰℠浩潰瑲湡㭴ਊ††敬瑦›㬰ਊ††楲桧㩴〠਻紊ਊਊ潢祤愮瑲潮獮潴⵰楣捲獵⸠潣瑮楡敮⵲敨摡牥㸠⸠牧摩挭楨摬昺物瑳挭楨摬笠ਊ††牧摩挭汯浵㩮ㄠ℠浩潰瑲湡㭴ਊ††番瑳晩⵹敳晬›瑳牡⁴椡灭牯慴瑮਻紊ਊਊ潢祤愮瑲潮獮潴⵰楣捲獵⸠潣瑮楡敮⵲敨摡牥⸠潣瑮楡敮⵲慮⁶੻ †朠楲ⵤ潣畬湭›′椡灭牯慴瑮਻ †樠獵楴祦猭汥㩦挠湥整⁲椡灭牯慴瑮਻ †樠獵楴祦挭湯整瑮›散瑮牥℠浩潰瑲湡㭴ਊ††楤灳慬㩹映敬⁸椡灭牯慴瑮਻ †映敬⵸牷灡›牷灡℠浩潰瑲湡㭴ਊ††慧㩰㐠硰℠浩潰瑲湡㭴ਊ੽ਊ戊摯⹹牡湴湯瑳灯挭物畣⁳挮湯慴湩牥栭慥敤⁲挮湯慴湩牥猭慥捲⁨੻ †朠楲ⵤ潣畬湭›″椡灭牯慴瑮਻ †樠獵楴祦猭汥㩦攠摮℠浩潰瑲湡㭴ਊ੽ਊ䀊敭楤⁡洨硡眭摩桴›㤹瀲⥸笠ਊ††潢祤愮瑲潮獮潴⵰楣捲獵⸠潣瑮楡敮⵲敨摡牥笠ਊ††††牧摩琭浥汰瑡ⵥ潣畬湭㩳愠瑵⁯昱⁲畡潴℠浩潰瑲湡㭴ਊ††††楷瑤㩨洠湩ㄨ〰Ⱕㄠ〰‥‭㐲硰 椡灭牯慴瑮਻ †††朠灡›㈱硰℠浩潰瑲湡㭴ਊ††੽ †戠摯⹹牡湴湯瑳灯挭物畣⁳挮湯慴湩牥栭慥敤⁲挮湯慴湩牥渭癡笠ਊ††††楤灳慬㩹渠湯⁥椡灭牯慴瑮਻ †素ਊ੽ਊ⼊‪㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽ਊ†퀠킯킚킞킠킝킞ₕ鳐闐鷐껐钀턠킆킵톽톂킀톸킀킾킲킰킽킸ⲵ턠톈킀톸톄₂뫐胑菑뿐뷐뗐뗐‬믐뗐말뇐믐턠킃톱킀킰ઽ †㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽㴽⨠ਯ⸊ⵣ湡档牯彳楟湮牥笠ਊ††番瑳晩⵹潣瑮湥㩴挠湥整㭲ਊ††慧㩰ㄠ瀰㭸ਊ੽ਊ⸊ⵣ湡档牯彳江扡汥笠ਊ††楤灳慬㩹渠湯⁥椡灭牯慴瑮਻紊ਊਊ挮愭据潨獲彟楬歮笠ਊ††潦瑮猭穩㩥〠㜮爸浥਻ †瀠摡楤杮›〱硰㈠瀰㭸ਊ††敬瑴牥猭慰楣杮›⸰㈱浥਻紊ਊਊ浀摥慩⠠慭⵸楷瑤㩨㜠㠶硰 ੻ †⸠ⵣ湡档牯彳江湩⁫੻ †††映湯⵴楳敺›⸰㈷敲㭭ਊ††††慰摤湩㩧㠠硰ㄠ瀴㭸ਊ††੽紊ਊ