/* GTA Virtual Tours — Site shell V2: header + footer */

html {
    font-size: 15px !important;
    scroll-padding-top: 88px;
}

:root {
    --gta-site-dark: #0b0c0e;
    --gta-site-dark-2: #121417;
    --gta-site-paper: #ffffff;
    --gta-site-muted: #a8aaad;
    --gta-site-line: rgba(255,255,255,.14);
    --gta-site-accent: #b89252;
    --gta-site-accent-hover: #c9a66b;
    --gta-site-shell: 1180px;
}

html {
    scroll-padding-top: 88px;
}

body {
    padding-top: 0 !important;
}

.gta-site-shell {
    width: min(calc(100% - 40px), var(--gta-site-shell));
    margin-inline: auto;
}

/* HEADER */
.gta-site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(11,12,14,.97);
    border-bottom: 1px solid rgba(255,255,255,.09);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.admin-bar .gta-site-header {
    top: 32px;
}

.gta-header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.gta-site-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.gta-site-brand img {
    display: block;
    width: 88px;
    height: auto;
}

.gta-desktop-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(18px, 2.2vw, 34px);
    margin-left: auto;
}

.gta-desktop-nav a,
.gta-mobile-nav nav a {
    color: rgba(255,255,255,.78);
    text-decoration: none !important;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .92rem;
    font-weight: 700;
    transition: color .16s ease;
}

.gta-desktop-nav a:hover,
.gta-desktop-nav a:focus,
.gta-desktop-nav a.is-current,
.gta-mobile-nav nav a:hover,
.gta-mobile-nav nav a:focus {
    color: #fff;
}

.gta-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gta-header-book,
.gta-footer-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--gta-site-accent);
    color: #111 !important;
    text-decoration: none !important;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .9rem;
    font-weight: 800;
    white-space: nowrap;
    transition: transform .16s ease, background-color .16s ease;
}

.gta-header-book:hover,
.gta-header-book:focus,
.gta-footer-book:hover,
.gta-footer-book:focus {
    background: var(--gta-site-accent-hover);
    transform: translateY(-1px);
}

.gta-mobile-nav {
    display: none;
    position: relative;
}

.gta-mobile-nav summary {
    list-style: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    display: grid;
    place-content: center;
    gap: 4px;
    cursor: pointer;
}

.gta-mobile-nav summary::-webkit-details-marker {
    display: none;
}

.gta-mobile-nav summary span {
    display: block;
    width: 17px;
    height: 1.5px;
    background: #fff;
}

.gta-mobile-nav nav {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    width: min(290px, calc(100vw - 28px));
    padding: 12px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    background: #111316;
    box-shadow: 0 20px 50px rgba(0,0,0,.32);
}

.gta-mobile-nav nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
}

.gta-mobile-nav nav a:hover,
.gta-mobile-nav nav a:focus {
    background: rgba(255,255,255,.06);
}

/* FOOTER */
.gta-site-footer {
    background: #070809;
    color: #fff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    border-top: 1px solid rgba(255,255,255,.08);
}

.gta-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .8fr .9fr;
    gap: 70px;
    padding: 68px 0 52px;
}

.gta-footer-brand img {
    display: block;
    width: 96px;
    height: auto;
    margin-bottom: 20px;
}

.gta-footer-brand p {
    max-width: 42ch;
    margin: 0 0 24px;
    color: rgba(255,255,255,.66);
    line-height: 1.65;
}

.gta-footer-book {
    min-height: 40px;
    padding-inline: 16px;
}

.gta-footer-links,
.gta-footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.gta-footer-links h2,
.gta-footer-contact h2 {
    margin: 0 0 18px;
    color: #fff;
    font-family: "Cinzel", Georgia, serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.gta-footer-links a,
.gta-footer-contact a,
.gta-footer-bottom a {
    color: rgba(255,255,255,.74);
    text-decoration: none !important;
    transition: color .16s ease;
}

.gta-footer-links a + a {
    margin-top: 10px;
}

.gta-footer-links a:hover,
.gta-footer-links a:focus,
.gta-footer-contact a:hover,
.gta-footer-contact a:focus,
.gta-footer-bottom a:hover,
.gta-footer-bottom a:focus {
    color: #fff;
}

.gta-footer-contact p {
    margin: 0 0 8px;
}

.gta-footer-muted {
    margin-top: 10px !important;
    color: rgba(255,255,255,.52);
    line-height: 1.55;
}

.gta-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 18px;
}

.gta-footer-social a {
    font-size: .88rem;
    font-weight: 700;
}

.gta-footer-bottom {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid var(--gta-site-line);
    color: rgba(255,255,255,.45);
    font-size: .82rem;
}

.gta-footer-bottom p {
    margin: 0;
}

@media (max-width: 980px) {
    .gta-desktop-nav {
        display: none;
    }

    .gta-header-actions {
        margin-left: auto;
    }

    .gta-mobile-nav {
        display: block;
    }

    .gta-footer-grid {
        grid-template-columns: 1.3fr 1fr;
        gap: 46px;
    }

    .gta-footer-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 782px) {
    .admin-bar .gta-site-header {
        top: 46px;
    }
}

@media (max-width: 640px) {
    .gta-site-shell {
        width: min(calc(100% - 28px), var(--gta-site-shell));
    }

    .gta-header-inner {
        min-height: 64px;
        gap: 12px;
    }

    .gta-site-brand img {
        width: 72px;
    }

    .gta-header-book {
        min-height: 38px;
        padding-inline: 14px;
        font-size: .82rem;
    }

    .gta-footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 54px 0 42px;
    }

    .gta-footer-contact {
        grid-column: auto;
    }

    .gta-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 20px 0;
        gap: 8px;
    }
}
