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

body {
    background: #000;
    color: #d7d7d8;
    font-family: 'Trebuchet MS', 'Segoe UI', Tahoma, sans-serif;
    line-height: 1.5;
    padding: 12px 0;
}

.vu--container {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    padding: 0 46px;
    background: #060606;
    position: relative;
}

.vu--container:before{
    content: '';
    width: 2px;
    height: 100%;
    background: linear-gradient(0deg,rgba(227, 175, 90, 0) 0%, rgba(227, 175, 90, 0.6) 50%, rgba(227, 175, 90, 0) 100%);
    position: absolute;
    left: 0;
    top: 0;
}

.vu--container:after{
    content: '';
    width: 2px;
    height: 100%;
    background: linear-gradient(0deg,rgba(227, 175, 90, 0) 0%, rgba(227, 175, 90, 0.6) 50%, rgba(227, 175, 90, 0) 100%);
    position: absolute;
    right: 0;
    top: 0;
}

.vu--subtitle {
    color: #e3af5a;
    font-family: 'Trebuchet MS', 'Segoe UI', Tahoma, sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1rem;
}

.vu--title {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    color: #f5f5f5;
    font-size: 2.8rem;
    line-height: 1.2;
}

h2 {
    font-weight: 400;
    font-family: Georgia, 'Times New Roman', serif;
    color: #f5f5f5;
    font-size: 2.2rem;
    line-height: 1.2;
}

.vu--divider {
    width: 70px;
    height: 2px;
    background: #e3af5a;
    margin: 0.5rem auto 1.2rem auto;
}

.vu--text {
    color: #d7d7d8;
    font-family: 'Trebuchet MS', 'Segoe UI', Tahoma, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
}

.vu--block {
    background: #0e0e0e;
    border: 1px solid #2a2928;
    border-radius: 0;
    padding: 1.8rem 1.5rem;
}

ul li{
    margin: 5px 0;
}

.vu--block-gold {
    border: 1px solid #e3af5a;
}

.vu--btn-gold {
    display: inline-block;
    background: transparent;
    border: 1px solid #e3af5a;
    color: #e3af5a;
    font-family: 'Trebuchet MS', 'Segoe UI', Tahoma, sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 3px;
    transition: 0.2s;
    text-decoration: none;
    cursor: pointer;
}

.vu--btn-gold:hover {
    background: #e3af5a;
    color: #111;
}

a {
    text-decoration: none;
    color: inherit;
}

.vu--header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0 0.8rem;
    border-bottom: 1px solid #2a2928;
    flex-wrap: wrap;
}

.vu--logoBox {
    display: flex;
    flex-direction: column;
    line-height: 1;
    align-items: center;
    text-align: center;
}

.vu--brand {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    color: #f5f5f5;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.vu--brandLine {
    color: #e3af5a;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 2px;
}

.vu--nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.vu--nav a {
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d7d7d8;
    transition: 0.15s;
}

.vu--nav a:hover {
    color: #e3af5a;
}

.vu--banner{
    position: relative;
    text-align:center;
    padding:90px 80px;
    margin:30px 0;
    border:1px solid rgba(227,175,90,.15);
    background:
        radial-gradient(circle at top, rgba(227,175,90,.05), transparent 60%),
        linear-gradient(180deg,#090909,#050505);
    overflow:hidden;
}

.vu--banner:before,
.vu--banner:after{
    content:"";
    position:absolute;
    width:70px;
    height:70px;
    border-color:#e3af5a;
    opacity:.8;
}

.vu--banner:before{
    left:18px;
    top:18px;
    border-left:1px solid;
    border-top:1px solid;
}

.vu--banner:after{
    right:18px;
    bottom:18px;
    border-right:1px solid;
    border-bottom:1px solid;
}
.vu--banner .vu--subtitle {
    margin-bottom: 0.25rem;
}

.vu--banner .vu--title {
    font-size: 3.6rem;
    margin: 0.2rem 0 0.5rem;
}

.vu--bannerText {
    max-width: 680px;
    margin: 0.8rem auto 1.8rem;
}

.vu--metrics {
    background: #e3af5a;
    padding: 1.3rem 1.2rem;
    border-radius: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0 2.5rem;
    color: #111;
}

.vu--metricItem {
    flex: 1 0 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.vu--metricItem:last-child {
    border-right: none;
}

.vu--metricNumber {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1;
    color: #111;
}

.vu--metricInfo {
    display: flex;
    flex-direction: column;
}

.vu--metricInfo strong {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #111;
}

.vu--metricInfo span {
    font-size: 0.8rem;
    color: #222;
}

.vu--entertainment {
    padding: 2.5rem 0 1rem;
    text-align: center;
}

.vu--entertainment .vu--divider {
    margin-left: auto;
    margin-right: auto;
}

.vu--entertainmentGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-top: 2.2rem;
    text-align: left;
}

.vu--entertainmentGrid .vu--block {
    display: flex;
    flex-direction: column;
    background: #0e0e0e;
    border: 1px solid #2a2928;
    border-radius: 0;
}

.vu--entertainmentGrid svg {
    color: #e3af5a;
    stroke: #e3af5a;
    fill: none;
    width: 44px;
    height: 44px;
    stroke-width: 1.2;
    margin-bottom: 0.8rem;
}

.vu--entertainmentGrid h4 {
    font-family: Georgia, 'Times New Roman', serif;
    color: #f5f5f5;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.3rem;
}

.vu--entertainmentGrid ul {
    list-style: none;
    margin-top: 0.8rem;
    font-size: 0.95rem;
}

.vu--entertainmentGrid ul li::before {
    content: "— ";
    color: #e3af5a;
    font-weight: 300;
}

.vu--about {
    padding: 2.5rem 0 1.5rem;
    text-align: center;
}

.vu--about .vu--divider {
    margin-left: auto;
    margin-right: auto;
}

.vu--aboutText {
    max-width: 780px;
    margin: 1.2rem auto 0;
    text-align: center;
    column-count: 1;
}

.vu--aboutText p {
    margin-bottom: 0.8rem;
}

.vu--responsible {
    padding: 2.5rem 0 1.5rem;
    text-align: center;
}

.vu--responsible .vu--divider {
    margin-left: auto;
    margin-right: auto;
}

.vu--responsibleGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-top: 2.2rem;
    text-align: left;
}

.vu--responsibleGrid .vu--block {
    position: relative;
    overflow: hidden;
    background: #0e0e0e;
    border: 1px solid #2a2928;
    border-radius: 0;
    padding-top: 2.2rem;
}

.vu--responsibleGrid .vu--block::after {
    content: "01";
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 5.5rem;
    font-weight: 400;
    color: rgba(227, 175, 90, 0.08);
    position: absolute;
    bottom: 0.2rem;
    right: 0.8rem;
    line-height: 1;
    pointer-events: none;
}

.vu--responsibleGrid .vu--block:nth-child(2)::after {
    content: "02";
}

.vu--responsibleGrid .vu--block:nth-child(3)::after {
    content: "03";
}

.vu--responsibleGrid h4 {
    font-family: Georgia, 'Times New Roman', serif;
    color: #f5f5f5;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.2rem;
}

.vu--responsibleGrid ul {
    list-style: none;
    margin-top: 0.8rem;
    font-size: 0.95rem;
}

.vu--responsibleGrid ul li::before {
    content: "— ";
    color: #e3af5a;
}

.vu--footer {
    border-top: 1px solid #2a2928;
    padding: 2rem 0 1.2rem;
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: stretch;
}

.vu--footerCol {
    flex: 1 0 170px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-right: 1px solid #2a2928;
    padding-right: 1.8rem;
}

.vu--footerCol:last-child {
    border-right: none;
    padding-right: 0;
}

.vu--footerCol .vu--logoBox {
    align-items: flex-start;
    margin-bottom: 15px;
}

.vu--footerCol .vu--brand {
    font-size: 1.8rem;
    text-transform: uppercase;
    text-align: center;
}

.vu--footerCol .vu--brandLine {
    font-size: 0.7rem;
    text-align: center;
}

.vu--footerCol p {

    font-size: 0.9rem;
}

.vu--footerCol h3 {
    color: #e3af5a;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.vu--footerNav {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.vu--footerNav a {
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: 0.15s;
}

.vu--footerNav a:hover {
    color: #e3af5a;
}

.vu--footerContacts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
    margin: 0rem 0 0.5rem;
    font-size: 0.9rem;
}

.vu--footerContacts span {
    display: inline-block;
}

.vu--footerContacts .vu--dividerV {
    width: 1px;
    height: 18px;
    background: #2a2928;
    display: inline-block;
    margin: 0 0.2rem;
}

.vu--copy {
    width: 100%;
    border-top: 1px solid #2a2928;
    padding-top: 1.2rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #888;
    text-align: center;
}

.vu--textCenter {
    text-align: center;
}

.vu--mt2 {
    margin-top: 1.2rem;
}

.vu--mb1 {
    margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
    .vu--header {
        flex-direction: column;
        gap: 0.6rem;
        align-items: stretch;
    }

    .vu--nav {
        justify-content: center;
        gap: 1.2rem;
    }

    .vu--entertainmentGrid,
    .vu--responsibleGrid {
        grid-template-columns: 1fr;
    }

    .vu--metrics {
        flex-direction: column;
        gap: 0.6rem;
    }

    .vu--metricItem {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding: 0.6rem 0;
    }

    .vu--metricItem:last-child {
        border-bottom: none;
    }

    .vu--banner .vu--title {
        font-size: 2.4rem;
    }

    .vu--footer {
        flex-direction: column;
        gap: 1.5rem;
    }

    .vu--footerCol {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #2a2928;
        padding-bottom: 1rem;
    }

    .vu--footerCol:last-child {
        border-bottom: none;
    }
    .vu--container{
        padding: 0 20px;
    }
    .vu--metricItem{
        flex: auto;
    }
    .vu--metricNumber{
        width: 70px;
        text-align: center;
    }
    .vu--footerCol{
        flex: auto;
    }
    .vu--banner{
        padding: 40px 30px;
    }
    .vu--metricNumber{
        width: 80px;
        text-align: center;
    }
    .vu--metricItem{
        justify-content: flex-start;
    }
}
.vu--goldLink {
    color: #e3af5a;
    transition: 0.15s;
}

.vu--goldLink:hover {
    text-decoration: underline;
}

.vu--pageHead {
    position: relative;
    text-align: center;
    padding: 60px 40px 50px;
    margin: 30px 0;
    border: 1px solid rgba(227, 175, 90, .15);
    background:
        radial-gradient(circle at top, rgba(227, 175, 90, .05), transparent 60%),
        linear-gradient(180deg, #090909, #050505);
}

.vu--contactGrid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 1.8rem;
    margin: 0 0 2.5rem;
    text-align: left;
}

.vu--contactHeading {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
}

.vu--contactGrid h4 {
    font-family: Georgia, 'Times New Roman', serif;
    color: #f5f5f5;
    font-size: 1.2rem;
    font-weight: 400;
    margin: 1rem 0 0.4rem;
}

.vu--address {
    font-style: normal;
    line-height: 1.7;
    margin-bottom: 0.6rem;
}

.vu--hoursList {
    list-style: none;
    font-size: 0.95rem;
    color: #d7d7d8;
}

.vu--hoursList li::before {
    content: "— ";
    color: #e3af5a;
}

.vu--form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 0.6rem;
}

.vu--form label {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #d7d7d8;
}

.vu--form input,
.vu--form textarea {
    background: #060606;
    border: 1px solid #2a2928;
    color: #f5f5f5;
    padding: 0.55rem 0.7rem;
    font-family: 'Trebuchet MS', 'Segoe UI', Tahoma, sans-serif;
    font-size: 0.95rem;
}

.vu--form input:focus-visible,
.vu--form textarea:focus-visible {
    outline: 1px solid #e3af5a;
    outline-offset: 1px;
}

.vu--formRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.vu--check {
    flex-direction: row !important;
    align-items: center;
    text-transform: none !important;
    letter-spacing: 0 !important;
    gap: 0.5rem !important;
    font-size: 0.95rem !important;
}

.vu--trap {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.vu--formOk {
    border: 1px solid #e3af5a;
    padding: 1rem;
}

.vu--formErr {
    color: #e3af5a;
    font-size: 0.9rem;
}

.vu--formNote {
    font-size: 0.85rem;
    color: #888;
}

.vu--legal {
    max-width: 780px;
    margin: 0 auto 2.5rem;
    text-align: left;
}

.vu--legal h2 {
    font-size: 1.3rem;
    margin: 1.6rem 0 0.4rem;
    text-align: left;
}

.vu--legal p {
    margin-bottom: 0.6rem;
}

.vu--visit {
    padding: 2.5rem 0 2rem;
    text-align: center;
}

.vu--visit .vu--divider {
    margin-left: auto;
    margin-right: auto;
}

.vu--btn-plain {
    display: inline-block;
    background: transparent;
    border: 1px solid #2a2928;
    color: #d7d7d8;
    font-family: 'Trebuchet MS', 'Segoe UI', Tahoma, sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 3px;
    transition: 0.2s;
    cursor: pointer;
}

.vu--btn-plain:hover {
    border-color: #e3af5a;
    color: #e3af5a;
}

.vu--cookieBar[hidden] {
    display: none;
}

.vu--cookieBar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.8rem 1.6rem;
    padding: 0.9rem 1.4rem;
    background: #0e0e0e;
    border-top: 1px solid #e3af5a;
}

.vu--cookieBar p {
    margin: 0;
    font-size: 0.9rem;
    max-width: 560px;
}

.vu--cookieActions {
    display: flex;
    gap: 0.6rem;
}

@media (max-width: 768px) {
    .vu--contactGrid,
    .vu--formRow {
        grid-template-columns: 1fr;
    }

    .vu--pageHead {
        padding: 40px 24px;
    }
}
