:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dim: #7A6230;
    --bg: #0A0A09;
    --bg2: #111110;
    --bg3: #191917;
    --text: #F0EDE6;
    --text-muted: #8A8580;
    --red: #C0392B;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
    cursor: auto;
  }

  /* Custom cursor (отключён — используется системный курсор) */
  .cursor {
    display: none !important;
    width: 10px; height: 10px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.2s, height 0.2s, background 0.2s;
  }
  .cursor-ring {
    display: none !important;
    width: 36px; height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.3s, height 0.3s, opacity 0.3s;
    opacity: 0.5;
  }
  body:hover .cursor { opacity: 1; }

  /* Noise overlay */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9997;
    opacity: 0.6;
  }

  /* Меньше движения - системная настройка пользователя */
  @media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
    .hero-video video { display: none; }
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 48px;
    background: linear-gradient(to bottom, rgba(10,10,9,0.95), transparent);
    transition: background 0.3s;
  }
  nav.scrolled { background: rgba(10,10,9,0.97); border-bottom: 1px solid rgba(201,168,76,0.15); }

  .nav-logo {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-decoration: none;
  }
  .nav-logo span { color: var(--text); font-weight: 300; }

  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a { white-space: nowrap; }

  /* Узбекские и английские пункты меню длиннее русских -
     на средних экранах сжимаем, чтобы шапка держалась в одну строку */
  html[lang="uz"] .nav-links, html[lang="en"] .nav-links { gap: 22px; }
  @media (max-width: 1400px) {
    .nav-links { gap: 22px; }
    html[lang="uz"] .nav-links, html[lang="en"] .nav-links { gap: 16px; }
    html[lang="uz"] .nav-links a, html[lang="en"] .nav-links a {
      font-size: 11px; letter-spacing: 0.06em;
    }
  }
  @media (max-width: 1180px) {
    .nav-links a { font-size: 11px; letter-spacing: 0.06em; }
    .nav-links { gap: 14px; }
  }
  .nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 24px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: auto;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
  }
  .nav-cta:hover { background: var(--gold); color: var(--bg); }

  /* HERO */
  .hero {
    height: 100vh;
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 0 48px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background: 
      radial-gradient(ellipse 60% 50% at 70% 40%, rgba(201,168,76,0.08) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 20% 80%, rgba(192,57,43,0.06) 0%, transparent 60%),
      var(--bg);
    z-index: 0;
  }

  /* Animated grid lines */
  .hero-grid {
    position: absolute; inset: 0; z-index: 0;
    background-image:
      linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 80%);
    animation: gridShift 20s linear infinite;
  }
  @keyframes gridShift {
    from { transform: translateY(0); }
    to { transform: translateY(80px); }
  }

  /* HERO VIDEO */
  .hero-video {
    position: absolute;
    top: 110px;
    right: 48px;
    width: min(44vw, 760px);
    aspect-ratio: 16 / 10;
    z-index: 1;
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: 6px;
    overflow: hidden;
    pointer-events: none;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    background: #050403;
  }
  .hero-video video {
    width: 100%; height: 100%;
    object-fit: contain;
    display: block;
    filter: saturate(1.05) contrast(1.05);
  }
  .hero-video::after {
    content: '';
    position: absolute; inset: 0;
    background:
      linear-gradient(120deg, rgba(10,9,8,0.55) 0%, transparent 40%),
      linear-gradient(to top, rgba(10,9,8,0.45) 0%, transparent 35%);
    pointer-events: none;
  }
  .hero-eyebrow, .hero-title, .hero-bottom, .hero-ticker { position: relative; z-index: 2; }
  @media (max-width: 1100px) {
    .hero {
      height: auto;
      min-height: 100vh;
      justify-content: flex-start;
      padding-top: 96px;
    }
    .hero-video {
      display: block;
      position: relative;
      top: auto; right: auto;
      width: 100%;
      max-width: 300px;
      aspect-ratio: 9 / 16;
      margin: 0 auto 28px;
    }
  }

  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative; z-index: 1;
    display: flex; align-items: center; gap: 16px;
  }
  .hero-eyebrow::before {
    content: '';
    display: block; width: 40px; height: 1px;
    background: var(--gold);
  }

  .hero-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(56px, 10vw, 140px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.02em;
    position: relative; z-index: 1;
    margin-bottom: 40px;
  }
  .hero-title .line1 { display: block; color: var(--text); }
  .hero-title .line2 {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px var(--gold-dim);
  }

  .hero-bottom {
    display: flex; align-items: flex-end; justify-content: space-between;
    position: relative; z-index: 1;
  }
  .hero-desc {
    max-width: 420px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
  }
  .hero-actions { display: flex; gap: 16px; flex-direction: column; align-items: flex-end; }

  .btn-primary {
    background: var(--gold);
    color: var(--bg);
    border: none;
    padding: 16px 40px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: auto;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

  .btn-ghost {
    background: transparent;
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--text-muted);
    padding: 14px 32px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: auto;
    transition: border-color 0.2s, color 0.2s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

  .hero-ticker {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: var(--gold);
    color: var(--bg);
    padding: 10px 0;
    overflow: hidden;
    z-index: 2;
  }
  .ticker-track {
    display: flex; white-space: nowrap;
    animation: ticker 30s linear infinite;
  }
  .ticker-track span {
    font-family: 'Unbounded', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0 32px;
  }
  .ticker-track .sep { opacity: 0.5; }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* SECTION BASE */
  section { padding: 48px 48px; }

  .section-label {
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
  }
  .section-label::after {
    content: '';
    flex: 1; height: 1px;
    background: rgba(201,168,76,0.2);
    max-width: 60px;
  }

  .section-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 36px;
  }

  /* EVENTS */
  #events { background: var(--bg); }

  .events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .event-card {
    background: var(--bg2);
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: auto;
  }

  .event-card-bg {
    position: absolute; inset: 0;
    transition: transform 0.6s ease;
  }
  .event-card:hover .event-card-bg { transform: scale(1.06); }

  .event-card-bg-1 {
    background: 
      radial-gradient(circle at 30% 40%, rgba(201,168,76,0.25), transparent 60%),
      linear-gradient(135deg, #1a1208 0%, #0a0a09 100%);
  }
  .event-card-bg-2 {
    background:
      radial-gradient(circle at 70% 30%, rgba(192,57,43,0.2), transparent 60%),
      linear-gradient(135deg, #120808 0%, #0a0a09 100%);
  }
  .event-card-bg-3 {
    background:
      radial-gradient(circle at 50% 60%, rgba(100,60,160,0.2), transparent 60%),
      linear-gradient(135deg, #0d0812 0%, #0a0a09 100%);
  }
  .event-card-bg-featured {
    background:
      radial-gradient(circle at 40% 40%, rgba(201,168,76,0.3), transparent 65%),
      linear-gradient(135deg, #1a1208 0%, #0d0a04 100%);
  }

  .event-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,9,0.9) 0%, transparent 60%);
  }

  .event-card-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 32px;
  }
  .event-date {
    font-family: 'Unbounded', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 8px;
  }
  .event-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 8px;
  }
  .event-genre {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .event-tag {
    position: absolute; top: 24px; right: 24px;
    background: var(--gold);
    color: var(--bg);
    font-family: 'Unbounded', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 6px 12px;
    text-transform: uppercase;
  }

  .events-cta {
    margin-top: 48px;
    display: flex; align-items: center; gap: 32px;
  }
  .events-cta-line {
    flex: 1; height: 1px;
    background: rgba(201,168,76,0.15);
  }

  /* ABOUT */
  #about {
    background: var(--bg2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .about-visual {
    position: relative;
    aspect-ratio: 1;
  }
  .about-box {
    position: absolute;
    background: var(--bg3);
    border: 1px solid rgba(201,168,76,0.15);
  }
  .about-box-main {
    inset: 0; right: 20%; bottom: 20%;
    display: flex; align-items: center; justify-content: center;
  }
  .about-box-accent {
    left: 60%; bottom: 0; right: 0; top: 60%;
    background: var(--gold);
    border: none;
    display: flex; align-items: center; justify-content: center;
  }
  .about-box-main-inner {
    font-family: 'Unbounded', sans-serif;
    font-size: 80px;
    font-weight: 900;
    color: rgba(201,168,76,0.12);
    letter-spacing: -0.05em;
    line-height: 1;
    text-align: center;
    padding: 24px;
  }
  .about-box-accent-text {
    font-family: 'Unbounded', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--bg);
    letter-spacing: 0.1em;
    text-align: center;
    padding: 8px;
    line-height: 1.4;
  }

  .about-text .section-title { margin-bottom: 24px; }
  .about-lead {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 32px;
  }

  .about-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px; margin-top: 24px;
  }
  .stat {
    border-left: 2px solid var(--gold);
    padding-left: 16px;
  }
  .stat-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
  }
  .stat-label {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
  }

  /* TICKER 2 */
  .ticker2 {
    padding: 20px 0;
    background: var(--bg3);
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
    overflow: hidden;
  }
  .ticker2-track {
    display: flex; white-space: nowrap;
    animation: ticker 40s linear infinite reverse;
  }
  .ticker2-track span {
    font-family: 'Unbounded', sans-serif;
    font-size: 28px;
    font-weight: 300;
    color: transparent;
    -webkit-text-stroke: 1px rgba(201,168,76,0.25);
    letter-spacing: 0.05em;
    padding: 0 48px;
    text-transform: uppercase;
  }
  .ticker2-track .filled {
    color: var(--gold-dim);
    -webkit-text-stroke: 0;
  }

  /* PROMOS */
  #promos { background: var(--bg); }

  .promos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .promo-card {
    border: 1px solid rgba(201,168,76,0.12);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
    cursor: auto;
  }
  .promo-card:hover { border-color: rgba(201,168,76,0.4); }
  .promo-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .promo-card:hover::before { transform: scaleX(1); }

  .promo-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: rgba(201,168,76,0.08);
    line-height: 1;
    margin-bottom: 16px;
  }
  .promo-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
  }
  .promo-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
  }
  .promo-link {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: flex; align-items: center; gap: 8px;
  }
  .promo-link::after {
    content: '→';
    transition: transform 0.2s;
  }
  .promo-link:hover::after { transform: translateX(4px); }

  /* MENU */
  #menu { background: var(--bg2); }

  .menu-tabs {
    display: flex; gap: 0;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .tab-btn {
    background: none; border: none;
    color: var(--text-muted);
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 32px;
    cursor: auto;
    position: relative;
    transition: color 0.2s;
  }
  .tab-btn.active { color: var(--gold); }
  .tab-btn.active::after {
    content: ''; position: absolute;
    bottom: -1px; left: 0; right: 0; height: 2px;
    background: var(--gold);
  }

  .menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }
  .menu-item {
    background: var(--bg3);
    padding: 28px 32px;
    display: flex; align-items: center; justify-content: space-between;
    transition: background 0.2s;
    cursor: auto;
  }
  .menu-item:hover { background: rgba(201,168,76,0.04); }
  .menu-item-name {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
  }
  .menu-item-desc {
    font-size: 12px;
    color: var(--text-muted);
  }
  .menu-item-price {
    font-family: 'Unbounded', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
    margin-left: 24px;
  }

  /* FACECONTROL */
  #fc { background: var(--bg3); padding: 48px 48px; }

  .fc-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .fc-rules { list-style: none; }
  .fc-rules li {
    padding: 20px 0;
    border-bottom: 1px solid rgba(201,168,76,0.1);
    display: flex; align-items: flex-start; gap: 16px;
    font-size: 15px;
    color: var(--text-muted);
  }
  .fc-rules li:last-child { border-bottom: none; }
  .fc-rule-icon {
    width: 24px; height: 24px; flex-shrink: 0;
    border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; color: var(--gold); margin-top: 2px;
  }
  .fc-rule-icon.deny { border-color: var(--red); color: var(--red); }

  /* CONTACT */
  #contact {
    background: var(--bg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .contact-info { }
  .contact-map {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 480px;
  }
  .contact-map-frame {
    flex: 1;
    min-height: 420px;
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
    background: #111;
  }
  .contact-map-frame iframe {
    width: 100%; height: 100%;
    border: 0; display: block;
    filter: grayscale(0.15) contrast(1.05);
  }
  .contact-map-actions { display: flex; gap: 10px; flex-wrap: wrap; }
  .contact-map-actions a {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 16px;
    font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    border: 1px solid rgba(201,168,76,0.4); border-radius: 8px;
    transition: background .2s, color .2s;
  }
  .contact-map-actions a:hover { background: var(--gold); color: var(--bg); }
  @media (max-width: 900px) {
    .contact-map { min-height: 340px; margin-top: 32px; }
    .contact-map-frame { min-height: 300px; }
  }
  .contact-detail {
    margin-bottom: 32px;
  }
  .contact-detail-label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }
  .contact-detail-value {
    font-size: 18px;
    font-weight: 500;
  }
  .contact-detail-value a {
    color: var(--text); text-decoration: none;
    transition: color 0.2s;
  }
  .contact-detail-value a:hover { color: var(--gold); }

  .contact-socials {
    display: flex; gap: 12px; margin-top: 40px;
  }
  .social-btn {
    width: 44px; height: 44px;
    border: 1px solid rgba(201,168,76,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 13px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    cursor: auto;
    font-family: 'Unbounded', sans-serif;
    font-size: 10px;
    letter-spacing: 0.05em;
  }
  .social-btn:hover { border-color: var(--gold); color: var(--gold); }

  .book-form { }
  .form-group { margin-bottom: 20px; }
  .form-label {
    display: block;
    font-size: 11px; letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 8px;
  }
  .form-input {
    width: 100%;
    background: var(--bg2);
    border: 1px solid rgba(201,168,76,0.15);
    color: var(--text);
    padding: 14px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
  }
  .form-input:focus { border-color: var(--gold); }
  .form-input::placeholder { color: var(--text-muted); }
  select.form-input option { background: var(--bg2); }

  .menu-cat-label {
    font-family: 'Unbounded', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 32px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .menu-cat-label:first-child { margin-top: 0; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  /* FOOTER */
  footer {
    background: var(--bg2);
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 48px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px; flex-wrap: wrap;
  }
  .footer-logo {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-decoration: none;
  }
  .footer-logo span { color: rgba(240,237,230,0.3); font-weight: 300; }
  .footer-copy {
    font-size: 12px; color: var(--text-muted);
  }
  .footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
  .footer-links a {
    font-size: 12px; color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.05em;
  }
  .footer-links a:hover { color: var(--gold); }

  /* REVEAL */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Scrollbar */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--gold-dim); }

  @media (max-width: 900px) {
    nav { padding: 20px 24px; }
    .nav-links { display: none; }
    section { padding: 28px 24px; }
    .hero { padding: 96px 24px 60px; }
    .promos-grid { grid-template-columns: 1fr; }
    #about, #contact, .fc-inner { grid-template-columns: 1fr; }
    .about-visual { display: none; }
    .menu-grid { grid-template-columns: 1fr; }
    footer { flex-direction: column; gap: 24px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
  }
  /* Lang switcher */
  .lang-switcher { position: relative; }
  .lang-btn {
    background: transparent;
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold);
    padding: 7px 14px;
    font-family: 'Unbounded', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: auto;
    display: flex; align-items: center;
    transition: border-color 0.2s, background 0.2s;
  }
  .lang-btn:hover { border-color: var(--gold); background: rgba(201,168,76,0.07); }
  .lang-menu {
    display: none;
    position: absolute; top: calc(100% + 6px); right: 0;
    background: var(--bg2);
    border: 1px solid rgba(201,168,76,0.2);
    min-width: 0;
    width: max-content;
    z-index: 200;
    flex-direction: column;
  }
  .lang-menu.open { display: flex; }
  .lang-menu button {
    background: none; border: none;
    color: var(--text-muted);
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    padding: 7px 12px;
    text-align: left;
    cursor: auto;
    display: flex; align-items: center;
    transition: background 0.15s, color 0.15s;
    border-bottom: 1px solid rgba(201,168,76,0.07);
    white-space: nowrap;
  }
  .lang-menu button:last-child { border-bottom: none; }
  .lang-menu button:hover { background: rgba(201,168,76,0.07); color: var(--text); }
  .lang-menu button.active { color: var(--gold); }

.zone-card:hover { border-color: rgba(201,168,76,0.4) !important; }
  @media (max-width: 900px) { .zones-grid { grid-template-columns: 1fr 1fr !important; } }
  @media (max-width: 600px) { .zones-grid { grid-template-columns: 1fr !important; } }

.artists-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 2px;
  }
  .artist-card {
    background: var(--bg3);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: default;
  }
  .artist-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .artist-card:hover { background: rgba(201,168,76,0.05); }
  .artist-card:hover::before { transform: scaleX(1); }
  .artist-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 11px;
    color: var(--gold-dim);
    letter-spacing: 0.2em;
    margin-bottom: 16px;
  }
  .artist-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    color: var(--text);
  }
  .artist-genre {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  @media (max-width: 900px) {
    .artists-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  }
  @media (max-width: 500px) {
    .artists-grid { grid-template-columns: 1fr; }
  }
  .residents-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0,1fr));
    gap: 2px;
  }
  .resident-card {
    background: var(--bg3);
    border: 1px solid rgba(201,168,76,0.1);
    padding: 24px 20px;
    display: flex; flex-direction: column; gap: 6px;
    transition: border-color 0.25s, background 0.25s;
    cursor: default;
  }
  .resident-card:hover { background: rgba(201,168,76,0.05); border-color: rgba(201,168,76,0.35); }
  .resident-role {
    font-family: 'Unbounded', sans-serif;
    font-size: 9px; font-weight: 700;
    letter-spacing: 0.25em; color: var(--gold);
  }
  .resident-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 14px; font-weight: 700;
    color: var(--text); line-height: 1.2;
  }
  @media (max-width: 900px) { .residents-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
  @media (max-width: 500px) { .residents-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }

#reviews { padding: 96px 48px; background: var(--bg); }
  .rev-inner { max-width: 1100px; margin: 0 auto; }
  .rev-head { display: grid; grid-template-columns: auto 1fr; gap: 56px; align-items: center; }
  .rev-score { text-align: center; padding-right: 56px; border-right: 1px solid rgba(201,168,76,0.15); }
  .rev-num {
    font-family: 'Unbounded', sans-serif; font-weight: 900;
    font-size: 84px; line-height: 1; color: var(--gold);
  }
  .rev-stars { color: var(--gold); font-size: 22px; letter-spacing: 4px; margin-top: 12px; }
  .rev-count { color: var(--text-muted); font-size: 14px; margin-top: 10px; letter-spacing: 0.04em; }
  .rev-lead { color: var(--text-muted); line-height: 1.9; font-size: 16px; max-width: 52ch; }
  .rev-cards {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px;
  }
  .rev-card {
    display: block; text-decoration: none; padding: 26px 24px;
    border: 1px solid rgba(201,168,76,0.18); background: var(--bg2);
    transition: border-color .25s, background .25s, transform .25s;
  }
  .rev-card:hover { border-color: var(--gold); background: var(--bg3); transform: translateY(-3px); }
  .rev-card:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; }
  .rev-card-name {
    font-family: 'Unbounded', sans-serif; font-weight: 400; font-size: 15px;
    color: var(--text); letter-spacing: 0.04em;
  }
  .rev-card-act {
    color: var(--gold); font-size: 12px; letter-spacing: 0.14em;
    text-transform: uppercase; margin-top: 14px; display: flex; align-items: center; gap: 8px;
  }
  .rev-card-act::after { content: "→"; transition: transform .25s; }
  .rev-card:hover .rev-card-act::after { transform: translateX(4px); }
  .rev-note { color: var(--text-muted); font-size: 13px; margin-top: 28px; line-height: 1.8; }
  @media (max-width: 900px) {
    #reviews { padding: 64px 24px; }
    .rev-head { grid-template-columns: 1fr; gap: 32px; }
    .rev-score { padding-right: 0; padding-bottom: 32px; border-right: none;
                 border-bottom: 1px solid rgba(201,168,76,0.15); }
    .rev-num { font-size: 64px; }
    .rev-cards { grid-template-columns: 1fr; gap: 14px; }
  }

#faq { padding: 96px 48px; background: var(--bg2); }
  .faq-inner { max-width: 900px; margin: 0 auto; }
  .faq-list { margin-top: 48px; }
  .faq-item { border-top: 1px solid rgba(201,168,76,0.15); }
  .faq-item:last-child { border-bottom: 1px solid rgba(201,168,76,0.15); }
  .faq-q {
    display: flex; justify-content: space-between; align-items: center; gap: 24px;
    padding: 26px 0; cursor: pointer; list-style: none;
    font-family: 'Manrope', sans-serif; font-size: 17px; font-weight: 500;
    color: var(--text); line-height: 1.5;
  }
  .faq-q::-webkit-details-marker { display: none; }
  .faq-q:hover { color: var(--gold); }
  .faq-q:focus-visible { outline: 1px solid var(--gold); outline-offset: 4px; }
  .faq-sign { flex: 0 0 auto; width: 16px; height: 16px; position: relative; }
  .faq-sign::before, .faq-sign::after {
    content: ""; position: absolute; inset: 0; margin: auto;
    background: var(--gold); transition: transform .28s ease;
  }
  .faq-sign::before { width: 16px; height: 1px; }
  .faq-sign::after  { width: 1px; height: 16px; }
  .faq-item[open] .faq-sign::after { transform: scaleY(0); }
  .faq-a {
    color: var(--text-muted); line-height: 1.9; font-size: 15px;
    max-width: 70ch; padding: 0 0 28px;
  }
  .faq-a a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(201,168,76,0.35); }
  .faq-a a:hover { color: var(--gold-light); }
  @media (max-width: 768px) {
    #faq { padding: 64px 24px; }
    .faq-q { font-size: 15px; padding: 22px 0; }
  }