.elementor-2414 .elementor-element.elementor-element-c007f35{--display:flex;--margin-top:-128px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-6565120 */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
  :root {
    --gold: #C9A96E;
    --gold-light: #E8D5A9;
    --dark: #0E0C0A;
    --dark-2: #1A1714;
    --dark-3: #242019;
    --text: #F0ECE3;
    --text-muted: #A09A8E;
    --white: #FFFFFF;
    --ff-display: 'Cormorant Garamond', Georgia, serif;
    --ff-body: 'Jost', sans-serif;
    --section-gap: 90px;
    --container: 1140px;
  }
 
  body {
    font-family: var(--ff-body);
    background: var(--dark);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }
 
  .container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
  }
 
  img { display: block; max-width: 100%; }
 
  a { color: var(--gold); text-decoration: none; }
  a:hover { color: var(--gold-light); }
 
  /* ─── HERO ─── */
  .hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
  }
  .hero__bg {
    position: absolute; inset: 0;
    background-image: url('https://medvedizadance.by/wp-content/uploads/2025/01/photo_2025-03-05_06-38-18.webp');
    background-size: cover;
    background-position: center top;
    transform: scale(1.05);
    animation: heroZoom 12s ease-out forwards;
  }
  @keyframes heroZoom {
    to { transform: scale(1); }
  }
  .hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(14,12,10,0.25) 0%,
      rgba(14,12,10,0.55) 50%,
      rgba(14,12,10,0.92) 100%
    );
  }
  .hero__content {
    position: relative;
    z-index: 2;
    padding: 80px 0 72px;
    width: 100%;
  }
  .hero__eyebrow {
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }
  .hero__title {
    font-family: var(--ff-display);
    font-size: clamp(42px, 6vw, 82px);
    font-weight: 500;
    line-height: 1.1;
    color: var(--white);
    max-width: 820px;
    margin-bottom: 28px;
  }
  .hero__title em {
    font-style: italic;
    color: var(--gold-light);
  }
  .hero__desc {
    font-size: 18px;
    font-weight: 300;
    color: rgba(240,236,227,0.85);
    max-width: 560px;
    margin-bottom: 48px;
    line-height: 1.8;
  }
  .hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
  }
  .btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 18px 40px;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover {
    background: var(--gold-light);
    color: var(--dark);
    transform: translateY(-1px);
  }
  .btn-outline {
    display: inline-block;
    border: 1px solid rgba(201,169,110,0.5);
    color: var(--gold-light);
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 17px 32px;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
  }
 
  /* ─── STATS BAR ─── */
  .stats {
    background: var(--gold);
    padding: 32px 0;
  }
  .stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
  }
  .stats__item {
    padding: 0 20px;
    border-right: 1px solid rgba(14,12,10,0.2);
  }
  .stats__item:last-child { border-right: none; }
  .stats__num {
    font-family: var(--ff-display);
    font-size: 44px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 4px;
  }
  .stats__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(14,12,10,0.65);
  }
 
  /* ─── SECTION HEADER ─── */
  .section-header {
    margin-bottom: 56px;
    text-align: center;
  }
  .section-header--left { text-align: left; }
  .section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .section-title {
    font-family: var(--ff-display);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
  }
  .section-title em { font-style: italic; color: var(--gold-light); }
  .section-desc {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
  }
  .section-header--left .section-desc { margin: 0; }
  .gold-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 24px auto 0;
  }
  .section-header--left .gold-line { margin-left: 0; }
 
  /* ─── INTRO ─── */
  .intro { padding: var(--section-gap) 0; }
  .intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .intro__img {
    position: relative;
  }
  .intro__img img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top;
  }
  .intro__badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--dark);
    padding: 20px 28px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.5;
  }
  .intro__badge strong {
    display: block;
    font-family: var(--ff-display);
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 2px;
  }
  .intro__text { padding-right: 20px; }
  .intro__lead {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 24px;
  }
  .intro__body {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 24px;
  }
  .intro__quote {
    border-left: 2px solid var(--gold);
    padding-left: 24px;
    margin: 32px 0;
  }
  .intro__quote p {
    font-family: var(--ff-display);
    font-size: 22px;
    font-style: italic;
    color: var(--gold-light);
    line-height: 1.6;
    margin-bottom: 10px;
  }
  .intro__quote cite {
    font-size: 13px;
    color: var(--text-muted);
    font-style: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
 
  /* ─── FOR WHOM ─── */
  .audience { padding: var(--section-gap) 0; background: var(--dark-2); }
  .audience__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(201,169,110,0.15);
    border: 1px solid rgba(201,169,110,0.15);
    margin-top: 56px;
  }
  .audience__card {
    background: var(--dark-2);
    padding: 44px 32px;
    transition: background 0.25s;
    position: relative;
    overflow: hidden;
  }
  .audience__card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
  }
  .audience__card:hover { background: var(--dark-3); }
  .audience__card:hover::after { transform: scaleX(1); }
  .audience__num {
    font-family: var(--ff-display);
    font-size: 56px;
    font-weight: 300;
    color: rgba(201,169,110,0.2);
    line-height: 1;
    margin-bottom: 20px;
  }
  .audience__title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
  }
  .audience__desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
  }
 
  /* ─── PROGRAMME ─── */
  .programme { padding: var(--section-gap) 0; }
  .programme__layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
  }
  .programme__items { display: flex; flex-direction: column; gap: 0; }
  .programme__item {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(201,169,110,0.12);
    align-items: flex-start;
    transition: padding-left 0.2s;
  }
  .programme__item:first-child { padding-top: 0; }
  .programme__item:hover { padding-left: 8px; }
  .programme__icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201,169,110,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 20px;
  }
  .programme__icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
  .programme__label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
  }
  .programme__text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
  }
  .programme__visual { position: sticky; top: 40px; }
  .programme__img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top;
  }
  .programme__caption {
    background: var(--dark-2);
    padding: 24px 28px;
    border-left: 2px solid var(--gold);
    margin-top: 0;
  }
  .programme__caption p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
  }
  .programme__caption strong { color: var(--gold-light); }
 
  /* ─── EXPERT / TATYANA ─── */
  .expert { padding: var(--section-gap) 0; background: var(--dark-2); }
  .expert__grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 72px;
    align-items: start;
  }
  .expert__photo-wrap { position: relative; }
  .expert__photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top;
  }
  .expert__tag {
    position: absolute;
    top: 28px;
    left: -16px;
    background: var(--gold);
    color: var(--dark);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 18px;
  }
  .expert__name {
    font-family: var(--ff-display);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 8px;
  }
  .expert__title-label {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
  }
  .expert__bio {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 36px;
  }
  .expert__credentials {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
  }
  .expert__cred {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .expert__cred-icon {
    width: 36px;
    height: 36px;
    background: rgba(201,169,110,0.1);
    border: 1px solid rgba(201,169,110,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    color: var(--gold);
  }
  .expert__cred-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    padding-top: 7px;
  }
  .expert__cred-text strong { color: var(--text); font-weight: 500; }
 
  /* ─── GALLERY ─── */
  .gallery-section { padding: var(--section-gap) 0; }
  .gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 8px;
    margin-top: 56px;
  }
  .gallery__item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 2; }
  .gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease, filter 0.3s;
    filter: brightness(0.88) saturate(0.85);
  }
  .gallery__item:hover img {
    transform: scale(1.04);
    filter: brightness(1) saturate(1);
  }
  .gallery__item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(14,12,10,0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 16px;
  }
  .gallery__item:hover .gallery__item-overlay { opacity: 1; }
  .gallery__item-caption {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.5px;
  }
 
  /* ─── FORMATS ─── */
  .formats { padding: var(--section-gap) 0; background: var(--dark-2); }
  .formats__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 56px;
  }
  .format__card {
    border: 1px solid rgba(201,169,110,0.2);
    padding: 52px 48px;
    position: relative;
    transition: border-color 0.25s;
  }
  .format__card:hover { border-color: rgba(201,169,110,0.5); }
  .format__type {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }
  .format__title {
    font-family: var(--ff-display);
    font-size: 32px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
  }
  .format__desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 36px;
  }
  .format__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
  }
  .format__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
  }
  .format__features li::before {
    content: '';
    width: 18px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
  }
  .format__features li strong { color: var(--text); font-weight: 500; }
  .format__card--featured {
    background: var(--gold);
    border-color: var(--gold);
  }
  .format__card--featured .format__type { color: rgba(14,12,10,0.6); }
  .format__card--featured .format__title { color: var(--dark); }
  .format__card--featured .format__desc { color: rgba(14,12,10,0.7); }
  .format__card--featured .format__features li { color: rgba(14,12,10,0.7); }
  .format__card--featured .format__features li::before { background: rgba(14,12,10,0.5); }
  .format__card--featured .format__features li strong { color: var(--dark); }
  .btn-dark {
    display: inline-block;
    background: var(--dark);
    color: var(--gold);
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 32px;
    transition: background 0.2s, color 0.2s;
  }
  .btn-dark:hover { background: var(--dark-2); color: var(--gold-light); }
 
  /* ─── RESULTS ─── */
  .results { padding: var(--section-gap) 0; }
  .results__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201,169,110,0.12);
    border: 1px solid rgba(201,169,110,0.12);
    margin-top: 56px;
  }
  .result__item {
    background: var(--dark);
    padding: 44px 36px;
  }
  .result__icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(201,169,110,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--gold);
  }
  .result__icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
  .result__title {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 10px;
  }
  .result__text { font-size: 14px; color: var(--text-muted); line-height: 1.8; }
 
  /* ─── CTA ─── */
  .cta-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('https://medvedizadance.by/wp-content/uploads/2025/01/photo_2025-03-05_06-39-37-600.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
  }
  .cta-section .container { position: relative; z-index: 2; }
  .cta__eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }
  .cta__title {
    font-family: var(--ff-display);
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.15;
    max-width: 700px;
    margin: 0 auto 24px;
  }
  .cta__title em { font-style: italic; color: var(--gold-light); }
  .cta__desc {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 48px;
    line-height: 1.8;
  }
  .cta__divider {
    width: 1px;
    height: 24px;
    background: rgba(201,169,110,0.35);
    margin: 0 auto 20px;
  }
 
  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .stats__item:nth-child(2) { border-right: none; }
    .stats__item:nth-child(3) { border-right: 1px solid rgba(14,12,10,0.2); border-top: 1px solid rgba(14,12,10,0.2); }
    .stats__item:nth-child(4) { border-top: 1px solid rgba(14,12,10,0.2); }
    .intro__grid { grid-template-columns: 1fr; gap: 48px; }
    .intro__img { max-width: 480px; }
    .intro__badge { right: 0; bottom: -10px; }
    .audience__grid { grid-template-columns: repeat(2, 1fr); }
    .expert__grid { grid-template-columns: 1fr; }
    .expert__photo { max-height: 500px; object-fit: cover; }
    .formats__grid { grid-template-columns: 1fr; }
    .gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
    .results__grid { grid-template-columns: 1fr 1fr; }
    .programme__layout { grid-template-columns: 1fr; gap: 48px; }
    .programme__visual { position: static; }
  }
 
  @media (max-width: 640px) {
    :root { --section-gap: 60px; }
    .hero { min-height: 100svh; }
    .hero__title { font-size: 38px; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .stats__item { padding: 16px 12px; }
    .stats__num { font-size: 32px; }
    .audience__grid { grid-template-columns: 1fr; }
    .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .gallery__item--wide { grid-column: span 1; }
    .gallery__item--tall { grid-row: span 1; }
    .results__grid { grid-template-columns: 1fr; }
    .format__card { padding: 36px 28px; }
  }/* End custom CSS */