/* REPIN LANDING CSS FOR TILDA
   Вставить в CSS страницы Tilda / Page settings / Additional CSS.
   Без тега .
*/

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@300;400;500&display=swap");

:root {
    --bg: #18120e;
    --bg-2: #241a13;
    --paper: #f7efe2;
    --paper-dim: #dccfbe;
    --ink: #fff7ec;
    --muted: #aa9b8b;
    --line: rgba(247, 239, 226, 0.16);
    --accent: #c9854d;
    --accent-2: #e7b86e;
    --serif: "Cormorant Garamond", "Times New Roman", serif;
    --sans: "Inter", system-ui, sans-serif;
    --mono: "JetBrains Mono", monospace;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: auto;
  }
  @media (max-width: 900px) { body { cursor: auto; } }

  /* Custom cursor */
  .cursor-dot, .cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease;
  }
  .cursor-dot {
    width: 6px; height: 6px;
    background: var(--paper);
    border-radius: 50%;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid rgba(235, 228, 214, 0.35);
    border-radius: 50%;
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease, transform 0.05s linear;
  }
  .cursor-ring.hover {
    width: 60px; height: 60px;
    background: rgba(235, 228, 214, 0.06);
    border-color: var(--paper);
    mix-blend-mode: difference;
  }
  @media (max-width: 900px) { .cursor-dot, .cursor-ring { display: none; } }

  /* Loader */
  .loader {
    position: fixed; inset: 0;
    background: var(--bg);
    z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    gap: 32px;
    transition: opacity 0.8s ease, visibility 0.8s ease;
  }
  .loader.hidden { opacity: 0; visibility: hidden; }
  .loader-text {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--muted);
    text-transform: uppercase;
  }
  .loader-bar {
    width: 240px; height: 1px;
    background: var(--line);
    overflow: hidden;
  }
  .loader-bar-fill {
    height: 100%;
    background: var(--paper);
    width: 0%;
    transition: width 0.1s linear;
  }
  .loader-name {
    font-family: var(--serif);
    font-size: 28px;
    font-style: italic;
    color: var(--paper);
  }

  /* Nav */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 22px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(0px);
    transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
  }
  .nav.scrolled {
    background: rgba(10, 8, 7, 0.7);
    backdrop-filter: blur(18px);
    padding: 16px 40px;
    border-bottom: 1px solid var(--line);
  }
  .nav-logo {
    font-family: var(--serif);
    font-size: 20px;
    font-style: italic;
    letter-spacing: 0.02em;
    color: var(--paper);
  }
  .nav-logo span { color: var(--accent-2); }
  .nav-links {
    display: flex; gap: 32px;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
  }
  .nav-links a {
    color: var(--paper-dim);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
  }
  .nav-links a:hover { color: var(--paper); }
  .nav-links a::after {
    content: ''; position: absolute;
    left: 0; bottom: -4px;
    width: 0; height: 1px;
    background: var(--accent-2);
    transition: width 0.3s ease;
  }
  .nav-links a:hover::after { width: 100%; }
  @media (max-width: 800px) { .nav-links { display: none; } .nav { padding: 16px 20px; } }
  .nav-cta {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--paper);
    padding: 11px 20px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  }
  .nav-cta:hover { background: var(--accent-2); color: var(--bg); transform: translateY(-1px); }

  /* HERO */
  .hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 0 40px 60px;
  }
  .hero-bg {
    position: absolute;
    inset: -5% -5%;
    background-image: url('https://donexpocentre.ru/media/filer_public_thumbnails/filer_public/ff/fa/fffa6e18-d58e-4672-a060-04e990c423a1/repin/22.webp');
    background-size: cover;
    background-position: center 35%;
    filter: brightness(0.55) contrast(1.05) saturate(0.92);
    transform: scale(1.08);
    transition: transform 0.1s linear;
    z-index: 0;
  }
  .hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 50% 100%, rgba(10,8,7,0.95), rgba(10,8,7,0.4) 50%, transparent),
      linear-gradient(180deg, rgba(10,8,7,0.55) 0%, rgba(10,8,7,0.1) 30%, rgba(10,8,7,0.85) 100%);
  }
  /* Film grain overlay */
  .grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.18;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }
  .hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
  }
  .hero-eyebrow {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 36px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--paper-dim);
  }
  .hero-eyebrow .dot {
    width: 6px; height: 6px;
    background: var(--accent-2);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent-2);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }
  .hero-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(56px, 11vw, 200px);
    line-height: 0.92;
    letter-spacing: -0.02em;
    color: var(--paper);
    margin-bottom: 28px;
    text-wrap: balance;
  }
  .hero-title .ital {
    font-style: italic;
    font-weight: 300;
    color: var(--accent-2);
  }
  .hero-title .stroke {
    -webkit-text-stroke: 1px var(--paper);
    color: transparent;
    font-style: italic;
    font-weight: 300;
  }
  .hero-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    border-top: 1px solid var(--line);
    padding-top: 28px;
    margin-top: 48px;
    max-width: 1100px;
  }
  @media (max-width: 800px) {
    .hero { padding: 0 20px 40px; }
  }
  .hero-meta-item .label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
  }
  .hero-meta-item .val {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--paper);
    font-weight: 400;
  }
  .hero-meta-item .val.italic { font-style: italic; }

  .hero-side {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: right center;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--muted);
    z-index: 3;
    white-space: nowrap;
  }
  @media (max-width: 1000px) { .hero-side { display: none; } }
  .scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--paper-dim);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .scroll-hint::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--paper-dim), transparent);
    animation: scrollLine 2s ease-in-out infinite;
  }
  @keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.01% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }

  /* MARQUEE */
  .marquee {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 32px 0;
    overflow: hidden;
    background: var(--bg);
  }
  .marquee-track {
    display: flex;
    gap: 64px;
    white-space: nowrap;
    animation: scroll 38s linear infinite;
    width: max-content;
  }
  @keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .marquee-item {
    font-family: var(--serif);
    font-size: clamp(40px, 7vw, 100px);
    line-height: 1;
    color: var(--paper);
    display: flex;
    align-items: center;
    gap: 64px;
    font-weight: 300;
  }
  .marquee-item.italic { font-style: italic; color: var(--accent-2); }
  .marquee-item .star {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--paper);
    flex-shrink: 0;
  }

  /* SECTION BASE */
  section {
    position: relative;
    padding: 140px 40px;
  }
  @media (max-width: 800px) { section { padding: 80px 20px; } }
  .container { max-width: 1500px; margin: 0 auto; }
  .section-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 48px;
  }
  .section-eyebrow .num {
    color: var(--accent-2);
    font-weight: 500;
  }
  .section-eyebrow .line-break {
    flex: 1;
    height: 1px;
    background: var(--line);
    max-width: 200px;
  }

  /* ABOUT */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
  }
  @media (max-width: 1000px) {
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
  }
  .about-title {
    font-family: var(--serif);
    font-size: clamp(40px, 5.5vw, 90px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--paper);
    text-wrap: balance;
  }
  .about-title em {
    font-style: italic;
    color: var(--accent-2);
    font-weight: 300;
  }
  .about-body {
    font-size: 17px;
    line-height: 1.7;
    color: var(--paper-dim);
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .about-body p:first-child::first-letter {
    font-family: var(--serif);
    font-size: 5em;
    float: left;
    line-height: 0.85;
    margin: 6px 12px 0 0;
    color: var(--accent-2);
    font-style: italic;
  }
  .about-stats {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    border-top: 1px solid var(--line);
    padding-top: 32px;
  }
  .stat .num {
    font-family: var(--serif);
    font-size: 64px;
    line-height: 1;
    color: var(--paper);
    font-weight: 400;
  }
  .stat .num em { font-style: italic; color: var(--accent-2); }
  .stat .label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 12px;
  }

  /* PUPILS */
  .pupils {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .pupils .container {
    max-width: 1680px;
  }
  .pupils-intro {
    max-width: none;
    margin-bottom: clamp(40px, 4.2vw, 68px);
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.1fr);
    gap: clamp(32px, 6vw, 96px);
    align-items: end;
  }
  .pupils-intro h2 {
    font-family: var(--serif);
    font-size: clamp(36px, 4.5vw, 70px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 0;
    text-wrap: balance;
  }
  .pupils-intro h2 em { font-style: italic; color: var(--accent-2); font-weight: 300; }
  .pupils-intro p {
    color: var(--paper-dim);
    font-size: clamp(16px, 1.1vw, 18px);
    max-width: 760px;
    line-height: 1.72;
    margin-left: auto;
  }
  @media (max-width: 1000px) {
    .pupils-intro {
      display: block;
      margin-bottom: 44px;
    }
    .pupils-intro h2 { margin-bottom: 20px; }
    .pupils-intro p { margin-left: 0; }
  }
  .pupils-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 1.35vw, 24px);
    align-items: stretch;
  }
  @media (min-width: 1500px) {
    .pupils-list { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  }
  @media (max-width: 980px) {
    .pupils-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }
  .pupil {
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1vw, 16px);
    padding: clamp(12px, 1vw, 16px);
    border: 1px solid var(--line);
    border-radius: clamp(20px, 1.8vw, 28px);
    background:
      linear-gradient(135deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012)),
      rgba(255,255,255,0.02);
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    cursor: pointer;
    overflow: hidden;
  }
  .pupil:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 177, 111, 0.42);
    background:
      linear-gradient(135deg, rgba(229,177,111,0.12), rgba(255,255,255,0.018)),
      rgba(255,255,255,0.03);
  }
  .pupil-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: clamp(16px, 1.3vw, 22px);
    overflow: hidden;
    background: var(--bg);
    border: 1px solid rgba(235, 228, 214, 0.12);
    flex-shrink: 0;
  }
  .pupil-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: sepia(0.16) saturate(0.92) contrast(1.04);
    transform: scale(1.01);
    transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.35s ease;
  }
  .pupil:hover .pupil-photo img {
    transform: scale(1.075);
    filter: sepia(0.08) saturate(1.02) contrast(1.06);
  }
  .pupil-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
    padding: 2px 2px 4px;
    flex: 1;
  }
  .pupil:hover .pupil-name { color: var(--accent-2); }
  .pupil-name {
    font-family: var(--serif);
    font-size: clamp(21px, 1.45vw, 29px);
    line-height: 1.02;
    font-weight: 400;
    transition: color 0.35s ease;
    text-wrap: balance;
  }
  .pupil-name em { font-style: italic; }
  .pupil-meta {
    font-family: var(--mono);
    font-size: clamp(8px, 0.65vw, 10px);
    letter-spacing: 0.16em;
    color: var(--muted);
    text-transform: uppercase;
  }
  @media (max-width: 560px) {
    .pupils-intro { margin-bottom: 36px; }
    .pupils-list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }
    .pupil {
      padding: 10px;
      border-radius: 18px;
      gap: 10px;
    }
    .pupil-photo { border-radius: 14px; }
    .pupil-name { font-size: clamp(18px, 5.4vw, 22px); }
    .pupil-meta { font-size: 8px; letter-spacing: 0.12em; }
  }

  /* IMMERSIVE — hall photos */
  .immersive {
    padding: 0;
    position: relative;
    overflow: hidden;
  }
  .immersive-inner {
    padding: 140px 40px;
    position: relative;
  }
  @media (max-width: 800px) { .immersive-inner { padding: 80px 20px; } }
  .immersive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 60px;
  }
  @media (max-width: 800px) { .immersive-grid { grid-template-columns: 1fr; } }
  .immersive-img {
    aspect-ratio: 3 / 2;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  .immersive-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,8,7,0.6) 100%);
    transition: opacity 0.5s ease;
  }
  .immersive-img .label {
    position: absolute;
    bottom: 24px; left: 24px;
    z-index: 2;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--paper);
  }
  .immersive-img.large {
    grid-column: span 2;
    aspect-ratio: 21 / 9;
  }
  @media (max-width: 800px) { .immersive-img.large { grid-column: span 1; aspect-ratio: 4/3; } }
  .immersive-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .immersive-img:hover img { transform: scale(1.05); }

  .immersive-headline {
    font-family: var(--serif);
    font-size: clamp(44px, 6vw, 100px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.02em;
    max-width: 1200px;
    text-wrap: balance;
  }
  .immersive-headline em { font-style: italic; color: var(--accent-2); font-weight: 300; }

  /* MASTERPIECES */
  .masterpieces {
    background: var(--bg);
  }
  .mp-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: end;
  }
  @media (max-width: 1000px) { .mp-intro { grid-template-columns: 1fr; gap: 32px; } }
  .mp-intro h2 {
    font-family: var(--serif);
    font-size: clamp(40px, 5.5vw, 84px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-wrap: balance;
  }
  .mp-intro h2 em { font-style: italic; color: var(--accent-2); font-weight: 300; }
  .mp-intro p { color: var(--paper-dim); font-size: 17px; line-height: 1.7; }
  .mp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  @media (max-width: 900px) { .mp-grid { grid-template-columns: 1fr; } }
  .mp-card {
    background: var(--bg);
    padding: 40px 32px;
    transition: background 0.5s ease;
    cursor: pointer;
    position: relative;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .mp-card:hover { background: var(--bg-2); }
  .mp-card .num {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--muted);
  }
  .mp-card .title {
    font-family: var(--serif);
    font-size: 28px;
    line-height: 1.1;
    font-weight: 400;
    color: var(--paper);
    margin-top: 24px;
  }
  .mp-card .title em { font-style: italic; color: var(--accent-2); }
  .mp-card .desc {
    font-size: 14px;
    color: var(--paper-dim);
    line-height: 1.6;
    margin-top: 20px;
  }
  .mp-card .arrow {
    margin-top: 24px;
    width: 28px; height: 28px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease;
  }
  .mp-card:hover .arrow { background: var(--accent-2); border-color: var(--accent-2); }
  .mp-card .arrow svg { width: 12px; height: 12px; transition: transform 0.3s ease; }
  .mp-card:hover .arrow svg { transform: rotate(-45deg); }

  /* SCHEDULE */
  .schedule {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
  }
  .sched-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 100px;
    align-items: start;
  }
  @media (max-width: 1000px) { .sched-grid { grid-template-columns: 1fr; gap: 50px; } }
  .sched-grid h2 {
    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 80px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-wrap: balance;
  }
  .sched-grid h2 em { font-style: italic; color: var(--accent-2); font-weight: 300; }
  .sched-grid .lead {
    color: var(--paper-dim);
    font-size: 17px;
    margin-top: 24px;
    line-height: 1.7;
  }
  .times {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  @media (max-width: 600px) { .times { grid-template-columns: repeat(3, 1fr); } }
  .time {
    background: var(--bg-2);
    padding: 22px 16px;
    text-align: center;
    font-family: var(--serif);
    font-size: 24px;
    color: var(--paper);
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    position: relative;
    font-weight: 400;
  }
  .time:hover { background: var(--accent); color: var(--paper); }
  .time .dur {
    display: block;
    font-family: var(--mono);
    font-size: 9px;
    color: var(--muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 4px;
    transition: color 0.3s ease;
  }
  .time:hover .dur { color: var(--paper); }
  .sched-note {
    margin-top: 24px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--muted);
    text-transform: uppercase;
    line-height: 1.7;
  }

  /* TICKETS CTA */
  .tickets {
    background: var(--bg);
    text-align: center;
    padding: 180px 40px;
    position: relative;
    overflow: hidden;
  }
  @media (max-width: 800px) { .tickets { padding: 100px 20px; } }
  .tickets-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://donexpocentre.ru/media/filer_public_thumbnails/filer_public/ff/fa/fffa6e18-d58e-4672-a060-04e990c423a1/repin/21.webp');
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.35) saturate(0.8) blur(2px);
    z-index: 0;
  }
  .tickets-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(10,8,7,0.5), rgba(10,8,7,0.95) 80%);
  }
  .tickets-content { position: relative; z-index: 2; }
  .tickets h2 {
    font-family: var(--serif);
    font-size: clamp(50px, 8vw, 140px);
    line-height: 0.95;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    text-wrap: balance;
  }
  .tickets h2 em { font-style: italic; color: var(--accent-2); font-weight: 300; }
  .tickets p {
    color: var(--paper-dim);
    max-width: 640px;
    margin: 0 auto 48px;
    font-size: 17px;
    line-height: 1.7;
  }
  .ticket-btn {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 24px 40px;
    background: var(--paper);
    color: var(--bg);
    border: none;
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .ticket-btn:hover { background: var(--accent-2); transform: translateY(-2px); }
  .ticket-btn .price {
    background: var(--bg);
    color: var(--paper);
    padding: 8px 14px;
    border-radius: 999px;
    font-family: var(--serif);
    font-size: 18px;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 400;
  }
  .ticket-btn .arrow-circle {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s ease;
  }
  .ticket-btn:hover .arrow-circle { transform: rotate(45deg); }
  .ticket-btn .arrow-circle svg { width: 14px; height: 14px; stroke: var(--paper); }

  /* VENUE */
  .venue {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
  }
  .venue-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
  }
  @media (max-width: 1000px) { .venue-grid { grid-template-columns: 1fr; gap: 40px; } }
  .venue h2 {
    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 80px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    text-wrap: balance;
  }
  .venue h2 em { font-style: italic; color: var(--accent-2); font-weight: 300; }
  .venue-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .venue-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
  }
  .venue-row .label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .venue-row .val {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--paper);
    font-weight: 400;
  }
  .venue-row .val em { font-style: italic; color: var(--accent-2); }
  .venue-row .val a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
  .venue-row .val a:hover { color: var(--accent-2); }

  .venue-map {
    aspect-ratio: 4 / 5;
    background: var(--bg);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
  }
  .venue-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
  .venue-map .pin {
    position: absolute;
    top: 38%; left: 52%;
    width: 14px; height: 14px;
    background: var(--accent-2);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(217, 159, 95, 0.2), 0 0 0 14px rgba(217, 159, 95, 0.1);
    animation: pulse 2.5s infinite;
  }
  .venue-map .pin-label {
    position: absolute;
    top: calc(38% - 36px); left: calc(52% - 90px);
    width: 200px;
    text-align: center;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--paper);
    text-shadow: 0 1px 4px var(--bg);
  }

  /* FOOTER */
  footer {
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding: 60px 40px 40px;
  }
  @media (max-width: 800px) { footer { padding: 40px 20px 24px; } }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  @media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }
  .footer-title {
    font-family: var(--serif);
    font-size: clamp(48px, 6vw, 110px);
    line-height: 0.92;
    font-weight: 400;
    letter-spacing: -0.02em;
  }
  .footer-title em { font-style: italic; color: var(--accent-2); font-weight: 300; }
  .footer-col h4 {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
    font-weight: 500;
  }
  .footer-col a {
    display: block;
    color: var(--paper-dim);
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
  }
  .footer-col a:hover { color: var(--paper); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--line);
    padding-top: 28px;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-bottom .org {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .footer-bottom .org img {
    height: 32px;
    filter: brightness(2.5) contrast(0.9);
  }
  .footer-bottom .org-text {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1.6;
  }
  .footer-bottom .copy {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* Reveal animations */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .reveal.in { opacity: 1; transform: translateY(0); }

  .reveal-line {
    overflow: hidden;
  }
  .reveal-line > * {
    display: block;
    transform: translateY(110%);
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .reveal-line.in > * {
    transform: translateY(0);
  }


  /* Refinements added after audit */
  @supports (color: oklch(62% 0.13 55)) {
    :root {
      --accent: oklch(62% 0.13 55);
      --accent-2: oklch(72% 0.12 80);
    }
  }
  body.has-custom-cursor { cursor: none; }
  .cursor-dot,
  .cursor-ring { display: none; }
  body.has-custom-cursor .cursor-dot,
  body.has-custom-cursor .cursor-ring { display: block; }
  @media (max-width: 900px) {
    body.has-custom-cursor { cursor: auto; }
    body.has-custom-cursor .cursor-dot,
    body.has-custom-cursor .cursor-ring { display: none; }
  }
  :focus-visible {
    outline: 2px solid var(--accent-2);
    outline-offset: 4px;
  }
  img { max-width: 100%; }
  .nav-logo,
  .nav-cta,
  .ticket-btn,
  .ghost-link {
    -webkit-tap-highlight-color: transparent;
  }
  .hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 34px;
    flex-wrap: wrap;
  }
  .ticket-btn--hero {
    padding: 18px 28px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  }
  .ghost-link {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    color: var(--paper-dim);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(235, 228, 214, 0.35);
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  }
  .ghost-link:hover {
    color: var(--accent-2);
    border-color: var(--accent-2);
    transform: translateY(-1px);
  }
  .ghost-link--light { color: var(--paper); }
  .tickets-eyebrow {
    max-width: 960px;
    margin: 0 auto 42px;
    justify-content: center;
  }
  .ticket-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 56px;
  }
  .immersive-img {
    border-radius: 24px;
    border: 1px solid rgba(235, 228, 214, 0.1);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  }
  .mp-card,
  .venue-map {
    border-radius: 22px;
  }
  .mp-grid {
    gap: 10px;
    background: transparent;
    border: 0;
  }
  .mp-card {
    border: 1px solid var(--line);
  }
  @media (max-width: 800px) {
    .hero-eyebrow {
      flex-wrap: wrap;
      gap: 12px;
      letter-spacing: 0.18em;
    }
    .hero-actions,
    .ticket-actions {
      align-items: stretch;
      flex-direction: column;
    }
    .ticket-btn,
    .ghost-link {
      justify-content: center;
      width: 100%;
    }
    .ticket-btn {
      padding: 18px 22px;
      gap: 14px;
      letter-spacing: 0.16em;
    }
    .about-stats {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 520px) {
    .times {
      grid-template-columns: repeat(2, 1fr);
    }
    .venue-row {
      grid-template-columns: 1fr;
      gap: 8px;
    }
  }

  /* Final refinements: lighter hero, logo header, external ticket link */
  .nav-logo {
    display: inline-flex;
    align-items: center;
    width: 124px;
    min-height: 42px;
    text-decoration: none;
  }
  .nav-logo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 38px;
    object-fit: contain;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
  }
  .hero {
    min-height: 100svh;
    align-items: center;
    padding: 132px 40px 76px;
  }
  .hero-content {
    max-width: 1280px;
  }
  .hero-eyebrow {
    margin-bottom: 24px;
    gap: 16px;
  }
  .hero-title {
    max-width: 1040px;
    margin-bottom: 0;
    font-size: clamp(58px, 9.6vw, 172px);
  }
  .hero-lead {
    max-width: 720px;
    margin-top: 28px;
    color: var(--paper-dim);
    font-family: var(--serif);
    font-size: clamp(20px, 2.2vw, 32px);
    line-height: 1.24;
    font-weight: 400;
  }
  .hero-actions {
    margin-top: 34px;
  }
  .hero-side {
    display: none;
  }
  .hero-bg::after {
    background:
      radial-gradient(ellipse at 22% 55%, rgba(10,8,7,0.42), rgba(10,8,7,0.18) 34%, transparent 62%),
      linear-gradient(180deg, rgba(10,8,7,0.54) 0%, rgba(10,8,7,0.14) 34%, rgba(10,8,7,0.82) 100%);
  }
  .tickets {
    padding: 150px 40px;
  }
  .tickets p {
    margin-bottom: 42px;
  }
  .ticket-actions {
    margin-bottom: 0;
  }
  @media (max-width: 800px) {
    .nav-logo {
      width: 104px;
      min-height: 34px;
    }
    .nav-logo img {
      max-height: 32px;
    }
    .hero {
      align-items: flex-end;
      padding: 116px 20px 52px;
    }
    .hero-title {
      font-size: clamp(54px, 17vw, 96px);
    }
    .hero-lead {
      margin-top: 20px;
      font-size: 20px;
    }
    .hero-actions {
      margin-top: 26px;
    }
    .tickets {
      padding: 96px 20px;
    }
  }


  /* Visual refresh: lighter tone, more photos, interactive movement */
  :root {
    --bg: #18120e;
    --bg-2: #241a13;
    --paper: #f7efe2;
    --paper-dim: #dccfbe;
    --ink: #fff7ec;
    --muted: #aa9b8b;
    --line: rgba(247, 239, 226, 0.16);
    --accent: #c9854d;
    --accent-2: #e7b86e;
  }
  body {
    background:
      radial-gradient(circle at 15% 0%, rgba(231, 184, 110, 0.11), transparent 30%),
      radial-gradient(circle at 80% 15%, rgba(201, 133, 77, 0.08), transparent 28%),
      var(--bg);
  }
  section { padding-top: 120px; padding-bottom: 120px; }
  .nav.scrolled { background: rgba(24, 18, 14, 0.78); }
  .hero {
    min-height: 92svh;
    padding: 128px 40px 68px;
  }
  .hero-bg { filter: brightness(0.66) contrast(1.02) saturate(0.98); }
  .hero-bg::after {
    background:
      radial-gradient(ellipse at 22% 55%, rgba(24,18,14,0.34), rgba(24,18,14,0.12) 34%, transparent 62%),
      linear-gradient(180deg, rgba(24,18,14,0.42) 0%, rgba(24,18,14,0.08) 34%, rgba(24,18,14,0.76) 100%);
  }
  .hero-title { max-width: 980px; }
  .hero-lead { max-width: 620px; margin-top: 24px; }
  .scroll-hint { display: none !important; }

  .photo-ribbon-section {
    padding: 86px 0 104px;
    background: linear-gradient(180deg, rgba(247,239,226,0.035), rgba(247,239,226,0.015));
    border-bottom: 1px solid var(--line);
    overflow: hidden;
  }
  .photo-ribbon-head {
    max-width: 1500px;
    margin: 0 auto 34px;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 36px;
  }
  .photo-ribbon-head span {
    font-family: var(--serif);
    font-size: clamp(34px, 4vw, 66px);
    line-height: 1;
    color: var(--paper);
  }
  .photo-ribbon-head p {
    max-width: 480px;
    color: var(--paper-dim);
    font-size: 15px;
    line-height: 1.65;
  }
  .photo-ribbon {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.12fr 0.82fr 0.92fr 0.82fr 1.12fr;
    gap: 16px;
    align-items: end;
  }
  .photo-ribbon-card,
  .float-photo,
  .gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(247, 239, 226, 0.14);
    background: rgba(247, 239, 226, 0.05);
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.24);
    isolation: isolate;
    transform: translateZ(0);
    transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.35s ease, box-shadow 0.35s ease;
  }
  .photo-ribbon-card { aspect-ratio: 4 / 5; }
  .photo-ribbon-card.is-large { aspect-ratio: 5 / 4; }
  .photo-ribbon-card.is-tall { aspect-ratio: 3 / 5; transform: translateY(28px); }
  .photo-ribbon-card img,
  .float-photo img,
  .gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.55s ease;
    filter: saturate(0.94) contrast(1.02) brightness(0.94);
    will-change: transform;
  }
  .photo-ribbon-card::after,
  .float-photo::after,
  .gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(24,18,14,0.74));
    z-index: 1;
    pointer-events: none;
  }
  .photo-ribbon-card figcaption,
  .gallery-card figcaption {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 2;
    color: var(--paper);
    font-family: var(--mono);
    font-size: 10px;
    line-height: 1.45;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }
  .photo-ribbon-card:hover,
  .float-photo:hover,
  .gallery-card:hover,
  .immersive-img:hover {
    transform: translateY(-10px) scale(1.01);
    border-color: rgba(231, 184, 110, 0.44);
    box-shadow: 0 34px 110px rgba(0, 0, 0, 0.34);
  }
  .photo-ribbon-card.is-tall:hover { transform: translateY(10px) scale(1.01); }
  .photo-ribbon-card:hover img,
  .float-photo:hover img,
  .gallery-card:hover img,
  .immersive-img:hover img { filter: saturate(1.04) contrast(1.04) brightness(1.02); }

  .about { background: linear-gradient(180deg, rgba(247,239,226,0.018), rgba(247,239,226,0.038)); }
  .about-grid { grid-template-columns: 0.95fr 1.05fr; gap: 78px; }
  .about-body { gap: 20px; }
  .about-visual-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 16px;
    align-items: end;
    margin-top: 24px;
  }
  .float-photo--wide { aspect-ratio: 16 / 10; }
  .float-photo--small { aspect-ratio: 4 / 5; transform: translateY(28px); }
  .float-photo--small:hover { transform: translateY(16px) scale(1.01); }

  .immersive { background: var(--bg-2); }
  .immersive-img {
    transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.35s ease, box-shadow 0.35s ease;
  }

  .photo-gallery {
    background: linear-gradient(180deg, var(--bg), #211812);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .gallery-intro {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 54px;
  }
  .gallery-intro h2 {
    font-family: var(--serif);
    font-size: clamp(42px, 5.6vw, 88px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.02em;
  }
  .gallery-intro h2 em { color: var(--accent-2); font-style: italic; font-weight: 300; }
  .gallery-intro p { color: var(--paper-dim); font-size: 17px; line-height: 1.7; }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: dense;
    gap: 16px;
  }
  .gallery-card { aspect-ratio: 1 / 1; }
  .gallery-card--wide { grid-column: span 2; aspect-ratio: 2 / 1; }
  .gallery-card--tall { grid-row: span 2; aspect-ratio: auto; min-height: 520px; }

  .tickets-bg {
    background-image: url('https://donexpocentre.ru/media/filer_public_thumbnails/filer_public/ff/fa/fffa6e18-d58e-4672-a060-04e990c423a1/repin/21.webp');
    filter: brightness(0.46) saturate(0.9) blur(1px);
  }
  .tickets-bg::after {
    background: radial-gradient(ellipse at center, rgba(24,18,14,0.44), rgba(24,18,14,0.9) 82%);
  }

  @media (max-width: 1100px) {
    .photo-ribbon { grid-template-columns: repeat(3, 1fr); }
    .photo-ribbon-card.is-tall { transform: none; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-card--tall { min-height: 440px; }
  }
  @media (max-width: 800px) {
    section { padding-top: 82px; padding-bottom: 82px; }
    .hero { min-height: 88svh; padding: 110px 20px 48px; }
    .photo-ribbon-section { padding: 66px 0 74px; }
    .photo-ribbon-head { padding: 0 20px; display: block; }
    .photo-ribbon-head p { margin-top: 14px; }
    .photo-ribbon { padding: 0 20px; grid-template-columns: 1fr; }
    .photo-ribbon-card,
    .photo-ribbon-card.is-large,
    .photo-ribbon-card.is-tall { aspect-ratio: 16 / 10; transform: none; }
    .about-grid,
    .gallery-intro { grid-template-columns: 1fr; gap: 34px; }
    .about-visual-grid { grid-template-columns: 1fr; }
    .float-photo--small { aspect-ratio: 16 / 10; transform: none; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-card,
    .gallery-card--wide,
    .gallery-card--tall { grid-column: auto; grid-row: auto; aspect-ratio: 16 / 10; min-height: 0; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    .marquee-track { animation: none; }
  }


  /* Client edits: bigger organizer logo, lighter palette, faster gallery hover */
  :root {
    --bg: #211913;
    --bg-2: #2b2018;
    --paper: #fff4e4;
    --paper-dim: #eadbc8;
    --ink: #fff8ed;
    --muted: #bba995;
    --line: rgba(255, 244, 228, 0.18);
  }
  .nav-logo {
    width: 176px;
    min-height: 58px;
  }
  .nav-logo img {
    max-height: 54px;
  }
  .hero-bg {
    background-image: url('https://donexpocentre.ru/media/filer_public_thumbnails/filer_public/ff/fa/fffa6e18-d58e-4672-a060-04e990c423a1/repin/22.webp');
    background-position: center 38%;
    filter: brightness(0.72) contrast(1.02) saturate(1.02);
  }
  .hero {
    min-height: 90svh;
  }
  .about-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 24px);
  }
  .stat .num {
    font-size: clamp(44px, 6vw, 64px);
  }
  .stat .label {
    line-height: 1.55;
    overflow-wrap: anywhere;
  }
  .gallery-card::after,
  .photo-ribbon-card::after,
  .float-photo::after {
    background: linear-gradient(180deg, transparent 62%, rgba(33,25,19,0.34));
  }
  .gallery-card figcaption,
  .photo-ribbon-card figcaption {
    display: none !important;
  }
  .gallery-card:hover img,
  .float-photo:hover img,
  .immersive-img:hover img {
    transform: scale(1.045);
  }
  .gallery-card,
  .float-photo,
  .immersive-img {
    will-change: auto;
  }
  .gallery-card img,
  .float-photo img,
  .immersive-img img {
    will-change: auto;
  }
  @media (max-width: 980px) {
    .nav-logo {
      width: 148px;
      min-height: 48px;
    }
    .nav-logo img {
      max-height: 46px;
    }
    .about-stats {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  @media (max-width: 720px) {
    .nav-logo {
      width: 126px;
      min-height: 42px;
    }
    .nav-logo img {
      max-height: 40px;
    }
    .about-stats {
      grid-template-columns: 1fr;
    }
    .stat .num {
      font-size: 52px;
    }
  }

  .cursor-dot, .cursor-ring { display: none !important; }
  body.has-custom-cursor { cursor: auto !important; }

  /* Client edits: Yandex map and exact gallery set */
  .gallery-intro--single {
    display: block;
    max-width: 1120px;
    margin-bottom: 48px;
  }
  .gallery-intro--single h2 {
    max-width: 1080px;
    text-wrap: balance;
  }
  .gallery-card::after { opacity: 0.22; }
  .gallery-card:hover {
    transform: translateY(-6px) scale(1.006);
  }
  .gallery-card:hover img {
    transform: scale(1.035);
  }
  .venue-grid {
    grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
    align-items: stretch;
  }
  .venue-map--yandex {
    aspect-ratio: auto;
    min-height: 720px;
    height: 720px;
    padding: 0;
    background: rgba(247, 239, 226, 0.045);
    overflow: hidden;
  }
  .venue-map--yandex iframe {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
  }
  .venue-map--yandex > ymaps,
  .venue-map--yandex > div {
    width: 100% !important;
    height: 100% !important;
  }
  @media (max-width: 1100px) {
    .venue-grid {
      grid-template-columns: 1fr;
    }
    .venue-map--yandex {
      min-height: 560px;
      height: 560px;
    }
  }
  @media (max-width: 720px) {
    .gallery-intro--single {
      margin-bottom: 30px;
    }
    .venue-map--yandex {
      min-height: 420px;
      height: 420px;
      border-radius: 18px;
    }
  }


  /* Final client edits: 50/50 contacts, stronger hero statement, webp photos */
  .hero-title {
    margin-bottom: clamp(20px, 3vw, 34px);
  }
  .hero-statement {
    max-width: 1040px;
    color: var(--paper);
    font-family: var(--serif);
    font-size: clamp(34px, 4.8vw, 78px);
    line-height: 1.03;
    letter-spacing: -0.018em;
    font-weight: 400;
    text-wrap: balance;
  }
  .hero-statement span {
    color: var(--paper-dim);
  }
  .hero-lead.hero-date {
    max-width: 760px;
    margin-top: 20px;
    color: var(--paper-dim);
    font-family: var(--mono);
    font-size: clamp(12px, 1.1vw, 15px);
    line-height: 1.65;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  .hero-actions {
    margin-top: 30px;
  }

  .venue-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: clamp(32px, 5vw, 76px);
    align-items: stretch;
  }
  .venue-grid > div:first-child {
    min-width: 0;
  }
  .venue-info {
    width: 100%;
    gap: 0;
  }
  .venue-row {
    grid-template-columns: 1fr !important;
    gap: 0;
    padding: clamp(20px, 2.4vw, 30px) 0;
  }
  .venue-row .val {
    width: 100%;
    max-width: none;
    color: var(--paper);
    font-size: clamp(24px, 2.35vw, 34px);
    line-height: 1.32;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
  .venue-map--yandex {
    height: 720px;
    min-height: 640px;
  }

  @media (max-width: 1100px) {
    .venue-grid {
      grid-template-columns: 1fr !important;
      gap: 42px;
    }
    .venue-map--yandex {
      height: 560px;
      min-height: 520px;
    }
    .venue-row .val {
      font-size: clamp(23px, 4vw, 32px);
    }
  }
  @media (max-width: 720px) {
    .hero {
      padding-top: 106px;
    }
    .hero-title {
      margin-bottom: 18px;
    }
    .hero-statement {
      font-size: clamp(29px, 8.2vw, 42px);
      line-height: 1.06;
    }
    .hero-lead.hero-date {
      margin-top: 16px;
      font-size: 11px;
      letter-spacing: 0.13em;
    }
    .venue h2 br {
      display: none;
    }
    .venue-row {
      padding: 20px 0;
    }
    .venue-row .val {
      font-size: 23px;
      line-height: 1.35;
    }
    .venue-map--yandex {
      height: 420px;
      min-height: 420px;
    }
  }



  /* Client edits: hero statement above title, hero image 22.webp, natural gallery proportions */
  .hero-eyebrow--statement {
    max-width: 920px;
    align-items: flex-start;
    flex-wrap: nowrap;
    line-height: 1.7;
    text-transform: none;
    letter-spacing: 0.18em;
    margin-bottom: clamp(24px, 3vw, 42px);
  }
  .hero-eyebrow--statement .dot {
    margin-top: 0.55em;
    flex: 0 0 auto;
  }
  .hero-statement { display: none !important; }
  .hero-bg {
    background-image: url('https://donexpocentre.ru/media/filer_public_thumbnails/filer_public/ff/fa/fffa6e18-d58e-4672-a060-04e990c423a1/repin/22.webp') !important;
    background-position: center 42%;
  }

  .gallery-grid--natural {
    display: block !important;
    column-count: 3;
    column-gap: clamp(14px, 1.6vw, 24px);
    background: transparent !important;
    border: 0 !important;
  }
  .gallery-grid--natural .gallery-card {
    display: inline-block;
    width: 100%;
    margin: 0 0 clamp(14px, 1.6vw, 24px);
    aspect-ratio: auto !important;
    min-height: 0 !important;
    grid-column: auto !important;
    grid-row: auto !important;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 244, 228, 0.035);
    border: 1px solid rgba(255, 244, 228, 0.13);
    transform: translateZ(0);
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
  }
  .gallery-grid--natural .gallery-card img {
    width: 100%;
    height: auto !important;
    max-height: none !important;
    display: block;
    object-fit: contain !important;
    transform: translateZ(0);
    transition: transform 0.45s ease, filter 0.45s ease;
  }
  .gallery-grid--natural .gallery-card:hover {
    transform: translateY(-4px) translateZ(0);
  }
  .gallery-grid--natural .gallery-card:hover img {
    transform: scale(1.025) translateZ(0);
    filter: brightness(1.05) contrast(1.03);
  }

  @media (max-width: 1050px) {
    .gallery-grid--natural { column-count: 2; }
  }
  @media (max-width: 720px) {
    .hero-eyebrow--statement {
      letter-spacing: 0.12em;
      line-height: 1.55;
      margin-bottom: 24px;
    }
    .gallery-grid--natural { column-count: 1; }
    .gallery-grid--natural .gallery-card { border-radius: 18px; }
  }



  /* Client edits: trailer in about section and full-width video after schedule */
  .about-video-card {
    margin-top: clamp(26px, 3vw, 42px);
    position: relative;
    overflow: hidden;
    border-radius: clamp(20px, 2.4vw, 32px);
    border: 1px solid rgba(255, 244, 228, 0.16);
    background: rgba(255, 244, 228, 0.045);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
  }
  .about-video-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(231, 184, 110, 0.08);
  }
  .about-video-player {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    max-height: 560px;
    object-fit: cover;
    background: #0d0907;
  }
  .wide-video-block {
    padding: 0 !important;
    margin: 0;
    background: #0d0907;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
  }
  .wide-video-block video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 86svh;
    object-fit: contain;
    background: #0d0907;
  }
  @media (max-width: 720px) {
    .about-video-card {
      border-radius: 18px;
      margin-top: 24px;
    }
    .about-video-player {
      max-height: none;
    }
    .wide-video-block video {
      max-height: none;
    }
  }


  /* Organizer link + custom trailer play button */
  .nav-links {
    gap: clamp(18px, 2.1vw, 32px);
  }
  .footer-bottom .org-link {
    text-decoration: none;
    color: inherit;
    border-radius: 18px;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .footer-bottom .org-link:hover {
    opacity: 0.88;
    transform: translateY(-1px);
  }
  .footer-bottom .org img {
    height: clamp(54px, 5.2vw, 82px);
    max-width: min(260px, 52vw);
    width: auto;
    object-fit: contain;
  }
  .footer-bottom .org-text {
    font-size: clamp(10px, 0.85vw, 12px);
  }
  .about-video-card {
    isolation: isolate;
  }
  .about-video-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
      radial-gradient(circle at 50% 50%, rgba(234, 177, 88, 0.12), transparent 28%),
      linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.28));
    transition: opacity 0.3s ease;
  }
  .about-video-card.is-playing::after {
    opacity: 0;
  }
  .about-video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 74px;
    padding: 14px 24px 14px 16px;
    border: 1px solid rgba(255, 247, 232, 0.62);
    border-radius: 999px;
    background: linear-gradient(135deg, #f3b45c, #ffe0a3);
    color: #25150b;
    font-family: var(--mono);
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow:
      0 24px 60px rgba(0, 0, 0, 0.36),
      0 0 0 10px rgba(239, 184, 98, 0.18),
      0 0 0 22px rgba(239, 184, 98, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  }
  .about-video-play:hover {
    transform: translate(-50%, -50%) scale(1.04);
    box-shadow:
      0 30px 74px rgba(0, 0, 0, 0.42),
      0 0 0 13px rgba(239, 184, 98, 0.22),
      0 0 0 28px rgba(239, 184, 98, 0.1);
  }
  .about-video-play-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(37, 21, 11, 0.94);
    color: #ffe6b3;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
  }
  .about-video-play-icon svg {
    width: 28px;
    height: 28px;
    margin-left: 3px;
  }
  .about-video-card.is-playing .about-video-play {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.92);
  }
  @media (max-width: 980px) {
    .nav-links {
      gap: 18px;
      font-size: 10px;
      letter-spacing: 0.12em;
    }
  }
  @media (max-width: 720px) {
    .footer-bottom .org {
      align-items: flex-start;
    }
    .footer-bottom .org img {
      height: 56px;
      max-width: 210px;
    }
    .about-video-play {
      min-height: 62px;
      padding: 11px 17px 11px 12px;
      gap: 10px;
      font-size: 10px;
      letter-spacing: 0.12em;
      box-shadow:
        0 20px 46px rgba(0, 0, 0, 0.35),
        0 0 0 7px rgba(239, 184, 98, 0.18),
        0 0 0 15px rgba(239, 184, 98, 0.08);
    }
    .about-video-play-icon {
      width: 40px;
      height: 40px;
    }
    .about-video-play-icon svg {
      width: 23px;
      height: 23px;
    }
    .about-video-play-text {
      max-width: 96px;
      line-height: 1.25;
    }
  }



  /* Final client edits: nav event date, contact date, video inside gallery */
  .nav-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(14px, 2vw, 24px);
    min-width: 0;
  }
  .nav-event-date {
    color: var(--paper-dim);
    font-family: var(--mono);
    font-size: clamp(9px, 0.78vw, 11px);
    line-height: 1.45;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0.92;
  }
  .venue-date {
    margin: -18px 0 32px;
    font-family: var(--serif);
    font-size: clamp(34px, 4.2vw, 72px);
    line-height: 0.95;
    color: var(--accent-2);
    font-weight: 400;
    letter-spacing: -0.02em;
  }
  .gallery-video {
    margin: clamp(34px, 5vw, 72px) 0 clamp(30px, 4vw, 54px);
    border: 1px solid var(--line);
    border-radius: clamp(20px, 2.4vw, 34px);
    overflow: hidden;
    background: #0d0907;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
    position: relative;
    isolation: isolate;
  }
  .gallery-video::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
      radial-gradient(circle at 50% 50%, rgba(234, 177, 88, 0.14), transparent 30%),
      linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.34));
    transition: opacity 0.3s ease;
  }
  .gallery-video.is-playing::after {
    opacity: 0;
  }
  .gallery-video-player {
    display: block;
    width: 100%;
    height: auto;
    max-height: 82svh;
    object-fit: contain;
    background: #0d0907;
  }
  .gallery-video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 74px;
    padding: 14px 24px 14px 16px;
    border: 1px solid rgba(255, 247, 232, 0.64);
    border-radius: 999px;
    background: linear-gradient(135deg, #f3b45c, #ffe0a3);
    color: #25150b !important;
    -webkit-text-fill-color: #25150b !important;
    font-family: var(--mono);
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow:
      0 24px 60px rgba(0, 0, 0, 0.36),
      0 0 0 10px rgba(239, 184, 98, 0.18),
      0 0 0 22px rgba(239, 184, 98, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  }
  .gallery-video-play:hover {
    transform: translate(-50%, -50%) scale(1.04);
    color: #25150b !important;
    -webkit-text-fill-color: #25150b !important;
    box-shadow:
      0 30px 74px rgba(0, 0, 0, 0.42),
      0 0 0 13px rgba(239, 184, 98, 0.22),
      0 0 0 28px rgba(239, 184, 98, 0.1);
  }
  .gallery-video-play * {
    color: inherit !important;
    -webkit-text-fill-color: inherit !important;
  }
  .gallery-video-play-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(37, 21, 11, 0.94);
    color: #ffe6b3 !important;
    -webkit-text-fill-color: #ffe6b3 !important;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
  }
  .gallery-video-play-icon svg {
    width: 28px;
    height: 28px;
    margin-left: 3px;
  }
  .gallery-video-play-icon svg,
  .gallery-video-play-icon path {
    fill: currentColor !important;
  }
  .gallery-video.is-playing .gallery-video-play {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.92);
  }
  @media (max-width: 1180px) {
    .nav-event-date { display: none; }
  }
  @media (max-width: 800px) {
    .nav-meta { gap: 10px; }
    .venue-date {
      margin: -10px 0 24px;
      font-size: clamp(32px, 11vw, 48px);
    }
    .gallery-video {
      margin: 28px 0 30px;
      border-radius: 18px;
    }
    .gallery-video-player { max-height: none; }
    .gallery-video-play {
      min-height: 62px;
      padding: 12px 18px 12px 12px;
      gap: 10px;
      font-size: 10px;
      letter-spacing: 0.13em;
    }
    .gallery-video-play-icon {
      width: 40px;
      height: 40px;
    }
    .gallery-video-play-icon svg {
      width: 23px;
      height: 23px;
    }
    .gallery-video-play-text {
      max-width: 96px;
      line-height: 1.25;
    }
  }



  /* Mobile hamburger menu */
  .mobile-menu-toggle,
  .mobile-menu-panel {
    display: none;
  }

  @media (max-width: 900px) {
    .nav {
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 14px;
      background: rgba(24, 18, 14, 0.72);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(247, 239, 226, 0.12);
    }

    .nav.scrolled {
      padding: 12px 14px;
    }

    .nav-logo {
      display: none !important;
    }

    .nav-links {
      display: none !important;
    }

    .mobile-menu-toggle {
      width: 48px;
      height: 48px;
      border: 1px solid rgba(247, 239, 226, 0.22);
      border-radius: 999px;
      background: rgba(247, 239, 226, 0.08);
      display: inline-flex !important;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      flex: 0 0 48px;
      padding: 0;
      cursor: pointer;
      color: #f7efe2;
      -webkit-tap-highlight-color: transparent;
      transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    }

    .mobile-menu-toggle:hover,
    .mobile-menu-toggle:focus-visible {
      background: rgba(247, 239, 226, 0.14);
      border-color: rgba(247, 239, 226, 0.38);
    }

    .mobile-menu-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      border-radius: 999px;
      background: #f7efe2;
      transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .nav.menu-open .mobile-menu-toggle span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .nav.menu-open .mobile-menu-toggle span:nth-child(2) {
      opacity: 0;
    }

    .nav.menu-open .mobile-menu-toggle span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .nav-meta {
      margin-left: auto;
      gap: 10px;
    }

    .nav-event-date {
      display: none !important;
    }

    .nav-cta {
      min-height: 44px;
      padding: 12px 16px;
      font-size: 10px;
      letter-spacing: 0.14em;
      white-space: nowrap;
    }

    .mobile-menu-panel {
      position: absolute;
      top: calc(100% + 10px);
      left: 14px;
      right: 14px;
      display: block;
      padding: 22px;
      border: 1px solid rgba(247, 239, 226, 0.16);
      border-radius: 26px;
      background:
        radial-gradient(circle at 16% 8%, rgba(231, 184, 110, 0.12), transparent 34%),
        rgba(24, 18, 14, 0.96);
      box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(-10px) scale(0.98);
      transform-origin: top center;
      transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
    }

    .nav.menu-open .mobile-menu-panel {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0) scale(1);
    }

    .mobile-menu-logo {
      display: inline-flex;
      width: 148px;
      margin-bottom: 18px;
      text-decoration: none;
    }

    .mobile-menu-logo img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
    }

    .mobile-menu-date {
      margin-bottom: 18px;
      color: #dccfbe;
      font-family: var(--mono);
      font-size: 10px;
      line-height: 1.55;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      opacity: 0.92;
    }

    .mobile-menu-links {
      display: grid;
      gap: 2px;
      padding: 8px 0 16px;
      border-top: 1px solid rgba(247, 239, 226, 0.12);
      border-bottom: 1px solid rgba(247, 239, 226, 0.12);
    }

    .mobile-menu-links a {
      display: flex;
      align-items: center;
      min-height: 46px;
      color: #f7efe2 !important;
      -webkit-text-fill-color: #f7efe2 !important;
      text-decoration: none !important;
      font-family: var(--serif);
      font-size: 28px;
      line-height: 1;
      letter-spacing: -0.01em;
    }

    .mobile-menu-links a:hover,
    .mobile-menu-links a:focus-visible {
      color: #e7b86e !important;
      -webkit-text-fill-color: #e7b86e !important;
    }

    .mobile-menu-ticket {
      margin-top: 18px;
      min-height: 54px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      width: 100%;
      border-radius: 999px;
      background: #f7efe2 !important;
      color: #18120e !important;
      -webkit-text-fill-color: #18120e !important;
      text-decoration: none !important;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .mobile-menu-ticket span {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      padding: 7px 10px;
      background: #18120e !important;
      color: #f7efe2 !important;
      -webkit-text-fill-color: #f7efe2 !important;
      font-family: var(--serif);
      font-size: 17px;
      letter-spacing: 0;
      text-transform: none;
    }
  }

  @media (max-width: 420px) {
    .nav-cta {
      padding: 11px 13px;
      font-size: 9px;
      letter-spacing: 0.11em;
    }

    .mobile-menu-links a {
      font-size: 25px;
    }

    .mobile-menu-panel {
      padding: 19px;
      border-radius: 22px;
    }
  }



  /* =========================================================
     MOBILE NAV FINAL: гамбургер справа, без затемнения шапки
     ========================================================= */
  @media (max-width: 900px) {
    .nav,
    .nav.scrolled {
      justify-content: flex-end !important;
      align-items: center !important;
      padding: max(14px, env(safe-area-inset-top)) 18px 10px !important;
      background: transparent !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
      border-bottom: 0 !important;
      box-shadow: none !important;
      pointer-events: none;
    }

    .nav-logo,
    .nav-links,
    .nav-event-date,
    .nav-meta,
    .nav .nav-cta {
      display: none !important;
    }

    .mobile-menu-toggle {
      position: relative;
      z-index: 101;
      margin-left: auto !important;
      margin-right: 0 !important;
      width: 54px !important;
      height: 54px !important;
      flex: 0 0 54px !important;
      display: inline-flex !important;
      background: rgba(24, 18, 14, 0.28) !important;
      border: 1px solid rgba(247, 239, 226, 0.42) !important;
      backdrop-filter: blur(10px) !important;
      -webkit-backdrop-filter: blur(10px) !important;
      pointer-events: auto;
    }

    .mobile-menu-toggle span {
      background: #f7efe2 !important;
      width: 24px !important;
      height: 2px !important;
    }

    .mobile-menu-panel {
      top: calc(100% + 8px) !important;
      left: 14px !important;
      right: 14px !important;
      pointer-events: none;
    }

    .nav.menu-open .mobile-menu-panel {
      pointer-events: auto;
    }

    .mobile-menu-ticket,
    .mobile-menu-ticket:link,
    .mobile-menu-ticket:visited,
    .mobile-menu-ticket:hover,
    .mobile-menu-ticket:focus,
    .mobile-menu-ticket:active {
      color: #18120e !important;
      -webkit-text-fill-color: #18120e !important;
      background: #f7efe2 !important;
      background-color: #f7efe2 !important;
      text-decoration: none !important;
    }

    .mobile-menu-ticket:not(.price),
    .mobile-menu-ticket > :not(.price) {
      color: #18120e !important;
      -webkit-text-fill-color: #18120e !important;
    }

    .mobile-menu-ticket span {
      color: #f7efe2 !important;
      -webkit-text-fill-color: #f7efe2 !important;
      background: #18120e !important;
      background-color: #18120e !important;
    }
  }

/* =========================================================
   REPIN LANDING / FINAL TILDA OVERRIDES
   Этот блок намеренно стоит внизу лендинга, чтобы Tilda не красила меню и кнопки в оранжевый.
   ========================================================= */

html body .nav .nav-links a,
html body .nav .nav-links a:link,
html body .nav .nav-links a:visited,
html body nav.nav .nav-links a,
html body nav.nav .nav-links a:link,
html body nav.nav .nav-links a:visited {
  color: #dccfbe !important;
  -webkit-text-fill-color: #dccfbe !important;
  text-decoration: none !important;
  background: transparent !important;
  background-image: none !important;
  border-bottom: 0 !important;
}

html body .nav .nav-links a:hover,
html body .nav .nav-links a:focus,
html body .nav .nav-links a:active,
html body .nav .nav-links a:focus-visible,
html body nav.nav .nav-links a:hover,
html body nav.nav .nav-links a:focus,
html body nav.nav .nav-links a:active,
html body nav.nav .nav-links a:focus-visible {
  color: #f7efe2 !important;
  -webkit-text-fill-color: #f7efe2 !important;
  text-decoration: none !important;
  background: transparent !important;
  background-image: none !important;
}

html body .nav .nav-links a::after,
html body nav.nav .nav-links a::after {
  background-color: #e7b86e !important;
}

html body .nav a:not(.nav-cta),
html body .nav a:not(.nav-cta):link,
html body .nav a:not(.nav-cta):visited,
html body nav.nav a:not(.nav-cta),
html body nav.nav a:not(.nav-cta):link,
html body nav.nav a:not(.nav-cta):visited {
  color: #dccfbe !important;
  -webkit-text-fill-color: #dccfbe !important;
  text-decoration: none !important;
}

html body .nav a:not(.nav-cta):hover,
html body .nav a:not(.nav-cta):focus,
html body .nav a:not(.nav-cta):active,
html body nav.nav a:not(.nav-cta):hover,
html body nav.nav a:not(.nav-cta):focus,
html body nav.nav a:not(.nav-cta):active {
  color: #f7efe2 !important;
  -webkit-text-fill-color: #f7efe2 !important;
  text-decoration: none !important;
}

html body .nav .nav-event-date,
html body .nav .nav-event-date *,
html body nav.nav .nav-event-date,
html body nav.nav .nav-event-date * {
  color: #dccfbe !important;
  -webkit-text-fill-color: #dccfbe !important;
}

/* Верхняя кнопка Купить билет */
html body a.nav-cta,
html body a.nav-cta:link,
html body a.nav-cta:visited,
html body a.nav-cta:hover,
html body a.nav-cta:focus,
html body a.nav-cta:active,
html body .nav a.nav-cta,
html body .nav a.nav-cta:link,
html body .nav a.nav-cta:visited,
html body .nav a.nav-cta:hover,
html body .nav a.nav-cta:focus,
html body .nav a.nav-cta:active,
html body nav.nav a.nav-cta,
html body nav.nav a.nav-cta:link,
html body nav.nav a.nav-cta:visited,
html body nav.nav a.nav-cta:hover,
html body nav.nav a.nav-cta:focus,
html body nav.nav a.nav-cta:active,
html body a[href*="afisha.yandex.ru"].nav-cta,
html body a[href*="afisha.yandex.ru"].nav-cta:link,
html body a[href*="afisha.yandex.ru"].nav-cta:visited,
html body a[href*="afisha.yandex.ru"].nav-cta:hover,
html body a[href*="afisha.yandex.ru"].nav-cta:focus,
html body a[href*="afisha.yandex.ru"].nav-cta:active {
  color: #18120e !important;
  -webkit-text-fill-color: #18120e !important;
  background: #f7efe2 !important;
  background-color: #f7efe2 !important;
  background-image: none !important;
  border-color: transparent !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

html body a.nav-cta:hover,
html body .nav a.nav-cta:hover,
html body nav.nav a.nav-cta:hover,
html body a[href*="afisha.yandex.ru"].nav-cta:hover {
  color: #18120e !important;
  -webkit-text-fill-color: #18120e !important;
  background: #e7b86e !important;
  background-color: #e7b86e !important;
  background-image: none !important;
}

html body a.nav-cta *,
html body a.nav-cta:hover *,
html body a.nav-cta:focus *,
html body a.nav-cta:active *,
html body .nav a.nav-cta *,
html body .nav a.nav-cta:hover *,
html body .nav a.nav-cta:focus *,
html body .nav a.nav-cta:active * {
  color: #18120e !important;
  -webkit-text-fill-color: #18120e !important;
  background: transparent !important;
  background-image: none !important;
  text-decoration: none !important;
}

html body .nav a.nav-cta::before,
html body .nav a.nav-cta::after,
html body nav.nav a.nav-cta::before,
html body nav.nav a.nav-cta::after {
  color: #18120e !important;
  -webkit-text-fill-color: #18120e !important;
}

/* Большие кнопки Купить билет */
html body a.ticket-btn,
html body a.ticket-btn:link,
html body a.ticket-btn:visited,
html body a.ticket-btn:hover,
html body a.ticket-btn:focus,
html body a.ticket-btn:active,
html body .ticket-btn,
html body .ticket-btn:link,
html body .ticket-btn:visited,
html body .ticket-btn:hover,
html body .ticket-btn:focus,
html body .ticket-btn:active {
  color: #18120e !important;
  -webkit-text-fill-color: #18120e !important;
  background: #f7efe2 !important;
  background-color: #f7efe2 !important;
  background-image: none !important;
  border-color: transparent !important;
  text-decoration: none !important;
}

html body a.ticket-btn:hover,
html body .ticket-btn:hover {
  color: #18120e !important;
  -webkit-text-fill-color: #18120e !important;
  background: #e7b86e !important;
  background-color: #e7b86e !important;
  background-image: none !important;
}

html body a.ticket-btn span,
html body a.ticket-btn:hover span,
html body a.ticket-btn:focus span,
html body a.ticket-btn:active span,
html body .ticket-btn span,
html body .ticket-btn:hover span,
html body .ticket-btn:focus span,
html body .ticket-btn:active span {
  color: #18120e !important;
  -webkit-text-fill-color: #18120e !important;
  text-decoration: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

html body a.ticket-btn .price,
html body a.ticket-btn:hover .price,
html body a.ticket-btn:focus .price,
html body a.ticket-btn:active .price,
html body .ticket-btn .price,
html body .ticket-btn:hover .price,
html body .ticket-btn:focus .price,
html body .ticket-btn:active .price {
  color: #f7efe2 !important;
  -webkit-text-fill-color: #f7efe2 !important;
  background: #18120e !important;
  background-color: #18120e !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-flex !important;
  align-items: center !important;
}

html body a.ticket-btn .price *,
html body a.ticket-btn:hover .price *,
html body a.ticket-btn:focus .price *,
html body a.ticket-btn:active .price *,
html body .ticket-btn .price *,
html body .ticket-btn:hover .price *,
html body .ticket-btn:focus .price *,
html body .ticket-btn:active .price * {
  color: #f7efe2 !important;
  -webkit-text-fill-color: #f7efe2 !important;
  background: transparent !important;
  background-color: transparent !important;
}

html body a.ticket-btn .arrow-circle,
html body a.ticket-btn:hover .arrow-circle,
html body .ticket-btn .arrow-circle,
html body .ticket-btn:hover .arrow-circle {
  background: #18120e !important;
  background-color: #18120e !important;
  color: #f7efe2 !important;
  -webkit-text-fill-color: #f7efe2 !important;
}

html body a.ticket-btn .arrow-circle svg,
html body a.ticket-btn:hover .arrow-circle svg,
html body a.ticket-btn .arrow-circle path,
html body a.ticket-btn:hover .arrow-circle path,
html body .ticket-btn .arrow-circle svg,
html body .ticket-btn:hover .arrow-circle svg,
html body .ticket-btn .arrow-circle path,
html body .ticket-btn:hover .arrow-circle path {
  stroke: #f7efe2 !important;
  color: #f7efe2 !important;
}

/* Ссылки в футере и контактах */
html body footer a,
html body footer a:link,
html body footer a:visited {
  color: #dccfbe !important;
  -webkit-text-fill-color: #dccfbe !important;
  text-decoration: none !important;
}

html body footer a:hover,
html body footer a:focus,
html body footer a:active {
  color: #f7efe2 !important;
  -webkit-text-fill-color: #f7efe2 !important;
  text-decoration: none !important;
}

html body .venue a,
html body .venue a:link,
html body .venue a:visited {
  color: #f7efe2 !important;
  -webkit-text-fill-color: #f7efe2 !important;
  text-decoration: none !important;
}

html body .venue a:hover,
html body .venue a:focus,
html body .venue a:active {
  color: #e7b86e !important;
  -webkit-text-fill-color: #e7b86e !important;
}

/* На случай, если Tilda применяет свои классы меню */
html body .t-menu__link-item,
html body .t-menu__link-item:link,
html body .t-menu__link-item:visited,
html body .t-menu__link-item:hover,
html body .t-menu__link-item:focus,
html body .t-menu__link-item:active {
  color: #dccfbe !important;
  -webkit-text-fill-color: #dccfbe !important;
  text-decoration: none !important;
}

html body .t-menu__link-item:hover {
  color: #f7efe2 !important;
  -webkit-text-fill-color: #f7efe2 !important;
}


/* Mobile hamburger menu final overrides */
@media (max-width: 900px) {
  html body .nav .nav-logo,
  html body nav.nav .nav-logo {
    display: none !important;
  }

  html body .nav .mobile-menu-toggle,
  html body nav.nav .mobile-menu-toggle {
    display: inline-flex !important;
    color: #f7efe2 !important;
    -webkit-text-fill-color: #f7efe2 !important;
    background: rgba(247, 239, 226, 0.08) !important;
    border-color: rgba(247, 239, 226, 0.22) !important;
  }

  html body .nav .mobile-menu-toggle span,
  html body nav.nav .mobile-menu-toggle span {
    background: #f7efe2 !important;
  }

  html body .nav .mobile-menu-panel,
  html body nav.nav .mobile-menu-panel {
    display: block !important;
  }

  html body .mobile-menu-logo,
  html body .mobile-menu-logo:link,
  html body .mobile-menu-logo:visited,
  html body .mobile-menu-logo:hover {
    color: inherit !important;
    -webkit-text-fill-color: inherit !important;
    text-decoration: none !important;
  }

  html body .mobile-menu-links a,
  html body .mobile-menu-links a:link,
  html body .mobile-menu-links a:visited,
  html body .mobile-menu-links a:hover,
  html body .mobile-menu-links a:focus,
  html body .mobile-menu-links a:active {
    color: #f7efe2 !important;
    -webkit-text-fill-color: #f7efe2 !important;
    background: transparent !important;
    text-decoration: none !important;
  }

  html body .mobile-menu-links a:hover,
  html body .mobile-menu-links a:focus-visible {
    color: #e7b86e !important;
    -webkit-text-fill-color: #e7b86e !important;
  }

  html body .mobile-menu-ticket,
  html body .mobile-menu-ticket:link,
  html body .mobile-menu-ticket:visited,
  html body .mobile-menu-ticket:hover,
  html body .mobile-menu-ticket:focus,
  html body .mobile-menu-ticket:active {
    color: #18120e !important;
    -webkit-text-fill-color: #18120e !important;
    background: #f7efe2 !important;
    background-color: #f7efe2 !important;
    text-decoration: none !important;
  }

  html body .mobile-menu-ticket span,
  html body .mobile-menu-ticket:hover span,
  html body .mobile-menu-ticket:focus span,
  html body .mobile-menu-ticket:active span {
    color: #f7efe2 !important;
    -webkit-text-fill-color: #f7efe2 !important;
    background: #18120e !important;
    background-color: #18120e !important;
  }
}



/* =========================================================
   FINAL REQUEST FIX: компактный заголовок в блоке 03 + кнопка в мобильном меню
   ========================================================= */
.immersive-headline {
  font-size: clamp(34px, 4.2vw, 68px) !important;
  line-height: 1.08 !important;
  max-width: 1080px !important;
}

@media (max-width: 800px) {
  .immersive-headline {
    font-size: clamp(30px, 8.5vw, 44px) !important;
    line-height: 1.08 !important;
  }
}

@media (max-width: 900px) {
  html body .mobile-menu-ticket,
  html body .mobile-menu-ticket:link,
  html body .mobile-menu-ticket:visited,
  html body .mobile-menu-ticket:hover,
  html body .mobile-menu-ticket:focus,
  html body .mobile-menu-ticket:active {
    width: 100% !important;
    min-height: 78px !important;
    padding: 14px 16px 14px 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    border-radius: 999px !important;
    background: #f7efe2 !important;
    background-color: #f7efe2 !important;
    color: #18120e !important;
    -webkit-text-fill-color: #18120e !important;
    text-decoration: none !important;
    font-family: var(--mono), monospace !important;
    font-size: 13px !important;
    line-height: 1 !important;
    letter-spacing: 0.24em !important;
    text-transform: uppercase !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22) !important;
  }

  html body .mobile-menu-ticket .mobile-menu-ticket-label,
  html body .mobile-menu-ticket:hover .mobile-menu-ticket-label,
  html body .mobile-menu-ticket:focus .mobile-menu-ticket-label,
  html body .mobile-menu-ticket:active .mobile-menu-ticket-label {
    color: #18120e !important;
    -webkit-text-fill-color: #18120e !important;
    background: transparent !important;
    background-color: transparent !important;
    opacity: 1 !important;
    visibility: visible !important;
    white-space: nowrap !important;
  }

  html body .mobile-menu-ticket .price,
  html body .mobile-menu-ticket:hover .price,
  html body .mobile-menu-ticket:focus .price,
  html body .mobile-menu-ticket:active .price {
    min-height: 48px !important;
    padding: 0 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    color: #f7efe2 !important;
    -webkit-text-fill-color: #f7efe2 !important;
    background: #18120e !important;
    background-color: #18120e !important;
    font-family: var(--serif), serif !important;
    font-size: 18px !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    white-space: nowrap !important;
  }

  html body .mobile-menu-ticket .arrow-circle,
  html body .mobile-menu-ticket:hover .arrow-circle,
  html body .mobile-menu-ticket:focus .arrow-circle,
  html body .mobile-menu-ticket:active .arrow-circle {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: #18120e !important;
    background-color: #18120e !important;
    color: #f7efe2 !important;
    -webkit-text-fill-color: #f7efe2 !important;
  }

  html body .mobile-menu-ticket .arrow-circle svg,
  html body .mobile-menu-ticket:hover .arrow-circle svg,
  html body .mobile-menu-ticket .arrow-circle path,
  html body .mobile-menu-ticket:hover .arrow-circle path {
    width: 17px !important;
    height: 17px !important;
    stroke: #f7efe2 !important;
    color: #f7efe2 !important;
  }
}

@media (max-width: 420px) {
  html body .mobile-menu-ticket,
  html body .mobile-menu-ticket:link,
  html body .mobile-menu-ticket:visited,
  html body .mobile-menu-ticket:hover,
  html body .mobile-menu-ticket:focus,
  html body .mobile-menu-ticket:active {
    padding: 12px 12px 12px 17px !important;
    gap: 9px !important;
    font-size: 11px !important;
    letter-spacing: 0.17em !important;
  }

  html body .mobile-menu-ticket .price,
  html body .mobile-menu-ticket:hover .price {
    min-height: 44px !important;
    padding: 0 13px !important;
    font-size: 16px !important;
  }

  html body .mobile-menu-ticket .arrow-circle,
  html body .mobile-menu-ticket:hover .arrow-circle {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
  }
}

/* =========================================================
   REPIN / TILDA: ticket widget + price block
   ========================================================= */
html body .tickets--widget {
  padding: clamp(92px, 10vw, 160px) 40px;
  text-align: left;
}

html body .tickets-content--wide {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
}

html body .tickets-widget-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(560px, 1.1fr);
  gap: clamp(36px, 5vw, 78px);
  align-items: start;
}

html body .tickets-copy h2 {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: clamp(44px, 5.6vw, 94px);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--paper) !important;
  text-wrap: balance;
}

html body .tickets-copy h2 em {
  font-style: italic;
  color: var(--accent-2) !important;
  font-weight: 300;
}

html body .tickets-copy p {
  max-width: 620px;
  margin: 0 0 34px;
  color: var(--paper-dim) !important;
  font-size: 17px;
  line-height: 1.7;
}

html body .ticket-price-card {
  width: 100%;
  border: 1px solid rgba(247, 239, 226, 0.18);
  border-radius: 28px;
  background: rgba(247, 239, 226, 0.075);
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

html body .ticket-price-card__head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 28px 22px;
  border-bottom: 1px solid rgba(247, 239, 226, 0.14);
}

html body .ticket-price-kicker,
html body .ticket-widget-card__top span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--mono), monospace;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted) !important;
}

html body .ticket-price-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 44px);
  line-height: 1;
  font-weight: 400;
  color: var(--paper) !important;
}

html body .ticket-price-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--paper) !important;
  color: var(--bg) !important;
  -webkit-text-fill-color: var(--bg) !important;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
  white-space: nowrap;
}

html body .ticket-price-table {
  display: grid;
}

html body .ticket-price-row {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) 108px 108px;
  gap: 0;
  border-bottom: 1px solid rgba(247, 239, 226, 0.12);
}

html body .ticket-price-row:last-child {
  border-bottom: none;
}

html body .ticket-price-row > div {
  padding: 18px 20px;
  border-right: 1px solid rgba(247, 239, 226, 0.1);
  color: var(--paper) !important;
}

html body .ticket-price-row > div:last-child {
  border-right: none;
}

html body .ticket-price-row--head > div {
  padding-top: 14px;
  padding-bottom: 14px;
  font-family: var(--mono), monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted) !important;
  background: rgba(0, 0, 0, 0.12);
}

html body .ticket-price-row strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.08;
  font-weight: 400;
  color: var(--paper) !important;
}

html body .ticket-price-row span {
  display: block;
  max-width: 420px;
  color: var(--paper-dim) !important;
  font-size: 13px;
  line-height: 1.45;
}

html body .ticket-price-row > div:nth-child(2),
html body .ticket-price-row > div:nth-child(3) {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
  color: var(--accent-2) !important;
  white-space: nowrap;
}

html body .ticket-price-row--head > div:nth-child(2),
html body .ticket-price-row--head > div:nth-child(3) {
  font-family: var(--mono), monospace;
  font-size: 10px;
  color: var(--muted) !important;
}

html body .ticket-widget-card {
  border: 1px solid rgba(247, 239, 226, 0.18);
  border-radius: 32px;
  background: rgba(247, 239, 226, 0.085);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

html body .ticket-widget-card__top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 26px 28px;
  border-bottom: 1px solid rgba(247, 239, 226, 0.14);
}

html body .ticket-widget-card__top strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(26px, 2.4vw, 40px);
  line-height: 1;
  font-weight: 400;
  color: var(--paper) !important;
}

html body .ya-widget-shell {
  min-height: 600px;
  background: #fff;
  overflow: hidden;
}

html body #ya-widget-frame {
  width: 100%;
  min-height: 600px;
  background: #fff;
}

html body .ticket-btn[href="#buy-ticket"],
html body .nav-cta[href="#buy-ticket"],
html body .mobile-menu-ticket[href="#buy-ticket"] {
  scroll-margin-top: 120px;
}

@media (max-width: 1100px) {
  html body .tickets-widget-layout {
    grid-template-columns: 1fr;
  }

  html body .tickets-copy p {
    max-width: 760px;
  }
}

@media (max-width: 800px) {
  html body .tickets--widget {
    padding: 86px 20px;
  }

  html body .ticket-price-card,
  html body .ticket-widget-card {
    border-radius: 24px;
  }

  html body .ticket-price-card__head {
    padding: 24px 20px 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  html body .ticket-price-row {
    grid-template-columns: 1fr;
  }

  html body .ticket-price-row--head {
    display: none;
  }

  html body .ticket-price-row > div {
    border-right: none;
    padding: 16px 18px;
  }

  html body .ticket-price-row > div:first-child {
    padding-bottom: 8px;
  }

  html body .ticket-price-row > div:nth-child(2),
  html body .ticket-price-row > div:nth-child(3) {
    justify-content: space-between;
    font-size: 22px;
    border-top: 1px solid rgba(247, 239, 226, 0.08);
  }

  html body .ticket-price-row > div:nth-child(2)::before {
    content: 'Будни';
    font-family: var(--mono), monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
  }

  html body .ticket-price-row > div:nth-child(3)::before {
    content: 'Выходные';
    font-family: var(--mono), monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
  }

  html body .ticket-widget-card__top {
    padding: 24px 20px;
  }

  html body .ya-widget-shell,
  html body #ya-widget-frame {
    min-height: 620px;
  }
}


html body #buy-ticket {
  scroll-margin-top: 110px;
}

@media (max-width: 800px) {
  html body #buy-ticket {
    scroll-margin-top: 82px;
  }
}


/* Ticket purchase notice */
.ticket-purchase-note {
  max-width: 980px;
  margin: 28px auto 34px;
  padding: 24px 28px;
  border: 1px solid rgba(247, 239, 226, 0.18);
  border-radius: 24px;
  background: rgba(247, 239, 226, 0.055);
  color: #dccfbe;
  text-align: center;
}

.ticket-purchase-note p {
  margin: 0;
  font-family: var(--sans, "Inter", system-ui, sans-serif);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.6;
}

.ticket-purchase-note p + p {
  margin-top: 8px;
}

.ticket-purchase-note strong {
  color: #f7efe2;
  font-weight: 600;
}

@media (max-width: 640px) {
  .ticket-purchase-note {
    margin: 22px auto 28px;
    padding: 20px 18px;
    border-radius: 20px;
    text-align: left;
  }
}

/* Clean Yandex widget block */
.ya-widget-shell {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
  border-radius: 24px;
  background: #f7f4ed;
  border: 1px solid rgba(247, 239, 226, 0.18);
}

#ya-widget-frame {
  width: 100%;
  min-height: 600px;
}

#ya-widget-frame iframe {
  width: 100% !important;
  min-height: 600px !important;
  border: 0 !important;
}

.ya-widget-fallback-link {
  display: none;
  margin-top: 16px;
  width: 100%;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 20px;
  border-radius: 999px;
  background: #f7efe2;
  color: #18120e !important;
  -webkit-text-fill-color: #18120e !important;
  text-decoration: none !important;
  font-family: var(--mono, "JetBrains Mono", monospace);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.ya-widget-fallback-link.is-visible {
  display: flex;
}

@media (max-width: 760px) {
  .ya-widget-shell,
  #ya-widget-frame,
  #ya-widget-frame iframe {
    min-height: 640px !important;
  }
}
