:root {
    --bg-dark: #080808;
    --bg-panel: #121212;
    --bg-card: #1a1a1a;
    --text-main: #e0e0e0;
    --text-muted: #999;
    --gold-primary: #d4af37;
    --gold-hover: #f3ce5e;
    --gold-dark: #997a15
}

*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
}

a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: .3s
}

a:hover {
    color: var(--gold-hover)
}

.site-header {
    background-color: rgba(8, 8, 8, .95);
    border-bottom: 1px solid var(--gold-dark);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px 20px;
    padding: 15px 5%;
    backdrop-filter: blur(4px);
    overflow: visible
}

.logo-container {
    justify-self: start
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: end;
    flex-shrink: 0
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--gold-dark);
    border-radius: 4px;
    background: rgba(212, 175, 55, .08);
    cursor: pointer;
    color: var(--gold-primary);
    flex-shrink: 0;
    transition: background .2s, border-color .2s
}

.nav-toggle:hover {
    background: rgba(212, 175, 55, .15);
    border-color: var(--gold-primary)
}

.nav-toggle:focus {
    outline: none
}

.nav-toggle:focus-visible {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px
}

.nav-toggle__bar {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform .22s ease, opacity .2s ease
}

.site-header.nav-open .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.site-header.nav-open .nav-toggle__bar:nth-child(2) {
    opacity: 0
}

.site-header.nav-open .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

header .site-nav {
    justify-self: center;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center
}

.logo-container img {
    height: 40px;
    width: auto
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center
}

.nav-menu ul li a {
    color: var(--text-main);
    font-size: .9rem;
    font-weight: 500;
    text-transform: uppercase
}

.nav-menu ul li a:hover {
    color: var(--gold-primary)
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0
}

.lang-switch__item {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid var(--gold-dark);
    border-radius: 4px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: none;
    line-height: 1.2
}

a.lang-switch__item {
    color: var(--gold-primary)
}

a.lang-switch__item:hover {
    background: rgba(212, 175, 55, .12);
    color: var(--gold-hover);
    border-color: var(--gold-primary)
}

.lang-switch__item--current {
    background-color: var(--gold-primary);
    color: var(--bg-dark);
    border-color: var(--gold-primary);
    cursor: default
}

main {
    padding-top: 70px
}

.section-block {
    padding: 80px 5%;
    border-bottom: 1px solid #222
}

.section-block--panel {
    background-color: var(--bg-panel)
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto
}

.section-title {
    color: var(--gold-primary);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 2px
}

.section-lead {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-inline: auto
}

.section-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0
}

.section-bg-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none
}

.section-bg-scrim--hero {
    background: linear-gradient(rgba(8, 8, 8, .5), rgba(8, 8, 8, .72))
}

.section-bg-scrim--section {
    background: linear-gradient(rgba(8, 8, 8, .82), rgba(8, 8, 8, .92))
}

.hero-section {
    position: relative;
    overflow: hidden;
    height: 80vh;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid var(--gold-dark)
}

.hero-section__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 20px
}

.section-block--bg-ktv,
.section-block--bg-party {
    position: relative;
    overflow: hidden
}

.section-block--bg-ktv .section-inner,
.section-block--bg-party .section-inner {
    position: relative;
    z-index: 2
}

.section-block--bg-ktv .mod-card,
.section-block--bg-party .mod-card {
    background-color: rgba(26, 26, 26, .9);
    backdrop-filter: blur(4px)
}

.section-block--bg-ktv .section-lead,
.section-block--bg-party .section-lead {
    color: #c5c5c5
}

.hero-section__content h1 {
    color: var(--gold-primary);
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(212, 175, 55, .3)
}

.hero-section__content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ccc
}

.cta-button {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center
}

.cta-button a {
    background-color: var(--gold-primary);
    color: var(--bg-dark);
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, .2)
}

.cta-button a:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px)
}

.mod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px
}

.mod-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #333;
    transition: .3s
}

.mod-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px)
}

.mod-card h3 {
    color: var(--gold-primary);
    margin-bottom: 15px;
    font-size: 1.3rem
}

.about-body p {
    margin-bottom: 15px
}

.section-block--about .about-layout {
    max-width: 42rem;
    margin: 0 auto
}

.section-block--about .about-body {
    text-align: left
}

.section-block--about .about-body p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.1rem;
    text-align: justify;
    text-justify: inter-ideograph
}

.section-block--about .about-intro {
    color: var(--text-main);
    font-size: 1.05rem
}

.section-block--about .about-intro strong {
    color: var(--gold-primary)
}

.about-highlights {
    margin-top: 20px;
    list-style-type: square;
    padding-left: 20px;
    color: var(--gold-primary)
}

.about-highlights li {
    margin-bottom: 10px;
    color: var(--text-main)
}

.section-block--about .about-highlights {
    list-style-position: outside;
    padding-left: 1.25rem;
    margin-top: 1.75rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 36rem;
    text-align: left
}

.section-block--about .about-highlights li {
    margin-bottom: 12px;
    line-height: 1.65;
    color: var(--text-muted)
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px
}

.review-card {
    background: var(--bg-card);
    padding: 25px;
    border-left: 3px solid var(--gold-primary);
    font-style: italic
}

.review-card cite {
    display: block;
    margin-top: 15px;
    color: var(--gold-primary);
    font-style: normal;
    font-weight: 700;
    font-size: .9rem
}

.faq-list {
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    background: var(--bg-card);
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #333
}

.faq-item summary {
    padding: 18px 20px;
    font-weight: 700;
    cursor: pointer;
    color: var(--gold-primary);
    list-style: none;
    outline: 0
}

.faq-item summary::-webkit-details-marker {
    display: none
}

.faq-a {
    padding: 0 20px 20px;
    color: var(--text-muted)
}

footer {
    background-color: var(--bg-panel);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid var(--gold-dark)
}

.footer-info p {
    margin-bottom: 10px;
    font-size: .9rem;
    color: #888
}

.disclaimer {
    margin-top: 20px;
    font-size: .8rem;
    color: #666;
    border: 1px solid #333;
    padding: 10px;
    display: inline-block
}

@media (max-width:768px) {
    .site-header {
        --toolbar-btn-w: 5rem;
        --toolbar-btn-h: 36px;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 0 12px;
        padding: 12px 4%;
        align-items: center
    }

    .logo-container img {
        height: 40px
    }

    .logo-container {
        grid-column: 1;
        grid-row: 1
    }

    .header-tools {
        grid-column: 2;
        grid-row: 1;
        gap: 10px;
        align-items: center
    }

    .lang-switch {
        gap: 8px
    }

    .nav-toggle {
        display: inline-flex;
        width: var(--toolbar-btn-w);
        min-width: var(--toolbar-btn-w);
        max-width: var(--toolbar-btn-w);
        height: var(--toolbar-btn-h);
        box-sizing: border-box;
        border-radius: 6px;
        gap: 4px;
        background: rgba(212, 175, 55, .06);
        border-color: rgba(153, 122, 21, .85)
    }

    .nav-toggle__bar {
        width: 17px
    }

    .site-header.nav-open .nav-toggle__bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg)
    }

    .site-header.nav-open .nav-toggle__bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg)
    }

    .lang-switch__item {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: var(--toolbar-btn-w);
        min-width: var(--toolbar-btn-w);
        max-width: var(--toolbar-btn-w);
        height: var(--toolbar-btn-h);
        padding: 0 6px;
        box-sizing: border-box;
        font-size: .68rem;
        font-weight: 600;
        line-height: 1.1;
        text-align: center;
        white-space: nowrap;
        border-radius: 6px;
        letter-spacing: .02em;
        background: rgba(212, 175, 55, .06);
        border-color: rgba(153, 122, 21, .85)
    }

    a.lang-switch__item {
        color: rgba(212, 175, 55, .88)
    }

    .site-header .lang-switch__item--current {
        background: rgba(212, 175, 55, .16);
        color: var(--gold-hover);
        border-color: var(--gold-primary);
        box-shadow: inset 0 0 0 1px rgba(212, 175, 55, .25)
    }

    .site-header .site-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        position: relative;
        width: 100%;
        margin-top: 10px;
        justify-content: stretch
    }

    .nav-menu {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        z-index: 99;
        background: rgba(8, 8, 8, 0.98);
        border: 1px solid var(--gold-dark);
        border-radius: 0 0 8px 8px;
        box-shadow: 0 16px 32px rgba(0, 0, 0, .5);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.35s ease, opacity 0.22s ease, visibility 0.22s
    }

    .site-header.nav-open .nav-menu {
        max-height: min(75vh, 400px);
        opacity: 1;
        visibility: visible;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch
    }

    .nav-menu ul {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 0;
        justify-content: stretch;
        padding: 6px 0 12px
    }

    .nav-menu ul li {
        border-bottom: 1px solid rgba(153, 122, 21, .28)
    }

    .nav-menu ul li:last-child {
        border-bottom: none
    }

    .nav-menu ul li a {
        display: block;
        padding: 14px 16px;
        font-size: 0.92rem;
        text-align: center;
        text-transform: none;
        letter-spacing: 0.02em
    }

    .nav-menu ul li a:hover,
    .nav-menu ul li a:focus-visible {
        background: rgba(212, 175, 55, .12);
        color: var(--gold-hover)
    }

    main {
        padding-top: 64px
    }

    .section-block {
        padding: 50px 5%
    }
}
