@import url('https://fonts.googleapis.com/css2?family=Arvo:wght@400;700&family=Ubuntu:wght@300;400;500;700&display=swap');

:root {
    --bg-0: #06040a;
    --bg-1: #140712;
    --bg-2: #1f0a1b;
    --accent: #d2007a;
    --accent-soft: rgba(210, 0, 122, 0.24);
    --text-strong: #f9f8fb;
    --text-mid: #cbc8d2;
    --text-muted: #9a96a6;
    --surface: rgba(17, 15, 23, 0.68);
    --surface-strong: rgba(8, 6, 12, 0.84);
    --border: rgba(255, 255, 255, 0.1);
    --border-accent: rgba(210, 0, 122, 0.45);
    --font-serif: 'Arvo', serif;
    --font-sans: 'Ubuntu', sans-serif;
    --radius-md: 12px;
    --radius-lg: 18px;
    --shadow-lg: 0 22px 46px rgba(0, 0, 0, 0.45);
    --content-max: 1120px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    color: var(--text-strong);
    min-height: 100vh;
    line-height: 1.6;
    background:
        radial-gradient(circle at 10% 0%, rgba(210, 0, 122, 0.35), transparent 38%),
        radial-gradient(circle at 90% 18%, rgba(124, 18, 82, 0.22), transparent 30%),
        linear-gradient(180deg, #2d0d28 0%, #120713 26%, #06040a 58%, #050309 100%);
    background-attachment: fixed;
}

a {
    color: inherit;
}

.main-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.top-contact-bar {
    background: rgba(4, 3, 8, 0.72);
    border-bottom: 1px solid var(--border);
}

.container-inner {
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0.55rem clamp(1rem, 3vw, 2.75rem);
}

.top-contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
}

.contact-link {
    text-decoration: none;
    color: var(--text-mid);
    font-size: 0.84rem;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--text-strong);
}

.contact-label {
    color: var(--accent);
    margin-right: 0.28rem;
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(10px);
    background: rgba(8, 6, 12, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-shell {
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0.35rem clamp(1rem, 3vw, 2.75rem);
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    line-height: 1;
}

.logo-image {
    display: block;
    height: clamp(40px, 5.2vw, 56px);
    width: auto;
}

.logo-text {
    color: var(--text-strong);
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.9vw, 1.35rem);
    letter-spacing: 0.01em;
    font-weight: 700;
}

.logo-text span {
    color: var(--accent);
}

.nav-toggle {
    display: none;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-strong);
    border-radius: 10px;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    cursor: pointer;
}

.primary-nav {
    display: flex;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-link {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--text-mid);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-strong);
    background: rgba(210, 0, 122, 0.16);
}

.hero-banner {
    margin-top: 0;
    min-height: clamp(220px, 42vh, 420px);
    border-radius: 0;
    overflow: hidden;
    position: relative;
    border: 0;
    background-image:
        linear-gradient(120deg, rgba(2, 2, 3, 0.74), rgba(2, 2, 3, 0.26)),
        url('../img/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    box-shadow: none;
    display: flex;
    align-items: flex-end;
}

.hero-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(3, 2, 7, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    padding: clamp(1.1rem, 2vw, 2rem) clamp(1rem, 3vw, 2.75rem);
    max-width: var(--content-max);
}

.hero-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.74rem;
    color: #f7cae7;
}

.hero-title {
    margin: 0.45rem 0 0;
    font-size: clamp(1.55rem, 3vw, 2.65rem);
    line-height: 1.16;
}

.hero-subtitle {
    margin: 0.55rem 0 0;
    color: var(--text-mid);
    font-size: clamp(0.95rem, 1.4vw, 1.08rem);
}

.content-wrapper {
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 2.25rem clamp(1rem, 3vw, 2.75rem) 3.5rem;
}

.split-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 1.2rem;
}

.section-panel {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: clamp(0.25rem, 1.3vw, 0.65rem) 0;
    box-shadow: none;
}

.what-we-offer-band {
    width: 100%;
    background-image: linear-gradient(120deg, rgba(4, 3, 8, 0.82), rgba(4, 3, 8, 0.46)), url('../img/bg_Equilizer.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.what-we-offer-inner {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.what-we-offer-panel {
    width: 100%;
    padding: 0;
}

.page-title {
    margin: 0 0 0.9rem;
    font-family: var(--font-serif);
    font-size: clamp(1.34rem, 2.4vw, 2rem);
    line-height: 1.2;
    color: #fff;
}

.text-highlight {
    margin: 0;
    color: #f4badf;
    text-transform: uppercase;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.lead {
    margin: 0.95rem 0 0;
    color: var(--text-mid);
}

.section-title {
    margin: 0 0 0.75rem;
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.section-copy {
    margin: 0;
    color: var(--text-mid);
}

.event-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.event-card {
    background: linear-gradient(170deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.event-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-accent);
}

.event-date {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #f0a9d6;
}

.event-title {
    margin-top: 0.35rem;
    font-weight: 700;
}

.event-desc {
    margin-top: 0.35rem;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.btn-reserve,
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.75rem;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid var(--border-accent);
    color: #ffe1f4;
    background: rgba(210, 0, 122, 0.13);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.45rem 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-reserve:hover,
.btn-submit:hover {
    background: rgba(210, 0, 122, 0.3);
    border-color: rgba(210, 0, 122, 0.78);
}

/* Honeypot: must be visually and functionally invisible to real users */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    tab-size: 0;
}

/* Form status banners */
.form-status {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-status--success {
    background: rgba(0, 180, 90, 0.15);
    border: 1px solid rgba(0, 200, 100, 0.35);
    color: #7fffb2;
}

.form-status--error {
    background: rgba(210, 0, 60, 0.15);
    border: 1px solid rgba(210, 0, 60, 0.35);
    color: #ffaac2;
}

.contact-form {
    display: grid;
    gap: 0.85rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.form-group {
    display: grid;
    gap: 0.35rem;
}

.form-group label {
    font-size: 0.83rem;
    color: var(--text-mid);
}

.form-control {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(5, 4, 9, 0.7);
    color: var(--text-strong);
    font: inherit;
    padding: 0.68rem 0.75rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--border-accent);
    box-shadow: 0 0 0 3px rgba(210, 0, 122, 0.12);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.video-card {
    background: rgba(10, 8, 14, 0.45);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}

.iframe-container iframe {
    position: absolute;
    inset: 0;
    border: 0;
    width: 100%;
    height: 100%;
}

.video-card-title {
    margin: 0;
    padding: 0.8rem;
    font-size: 0.92rem;
    color: var(--text-mid);
}

.work-grid {
    margin-top: 1.1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 220px));
    justify-content: start;
    gap: 0.8rem;
}

.work-card {
    border: 1px solid var(--border);
    background: rgba(10, 8, 14, 0.52);
    width: 100%;
    max-width: 220px;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
    text-align: left;
    color: var(--text-strong);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.work-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-accent);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.work-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.work-card-title {
    display: block;
    padding: 0.65rem;
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--text-mid);
}

.video-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 50;
}

.video-modal.is-open {
    display: block;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 1, 6, 0.82);
}

.video-modal-dialog {
    position: relative;
    width: min(980px, calc(100% - 2rem));
    margin: 6vh auto 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(11, 8, 15, 0.96);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.5);
    padding: 1rem;
}

.video-modal-close {
    position: absolute;
    top: 0.6rem;
    right: 0.7rem;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-strong);
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    cursor: pointer;
}

.video-modal-title {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    color: var(--text-mid);
    padding-right: 5rem;
}

.video-modal-frame-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.video-modal-frame-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.offer-list,
.working-hours,
.contact-details {
    list-style: none;
    margin: 0;
    padding: 0;
}

.offer-list li,
.working-hours li,
.contact-details li {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.7rem 0;
    color: var(--text-mid);
}

.offer-list li:first-child,
.working-hours li:first-child,
.contact-details li:first-child {
    border-top: 0;
    padding-top: 0;
}

.contact-details strong {
    color: #fff;
}

.offer-list-columns {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.offer-list-columns li,
.offer-list-columns li:first-child {
    border-top: 0;
    padding: 0.75rem 0.85rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-mid);
}

.working-hours li {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
}

.time-closed {
    color: #ff8fcb;
}

.map-container {
    margin-top: 0.8rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.map-container iframe {
    width: 100%;
    height: 280px;
    border: 0;
}

.site-footer {
    margin-top: 2rem;
    background: rgba(8, 6, 12, 0.62);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(6px);
}

.footer-content {
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 1rem clamp(1rem, 3vw, 2.75rem);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.footer-nav-link {
    text-decoration: none;
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
}

.footer-nav-link:hover {
    color: var(--text-strong);
}

.footer-bottom {
    width: 100%;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.74rem;
}

@media (max-width: 980px) {

    .split-layout,
    .video-grid,
    .event-grid {
        grid-template-columns: 1fr;
    }

    .work-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .offer-list-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .site-header {
        position: sticky;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .primary-nav {
        display: none;
        width: 100%;
    }

    .primary-nav[data-open='true'] {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 30;
    }

    .nav-menu {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        background: rgba(6, 4, 10, 0.92);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        border-left: 0;
        border-right: 0;
        border-radius: 0;
        padding: 0.45rem 1rem;
        margin: 0;
    }

    .nav-link {
        text-align: center;
    }

    .header-shell {
        flex-wrap: wrap;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .top-contact-links {
        justify-content: flex-start;
    }

    .contact-link {
        font-size: 0.78rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .map-container iframe {
        height: 220px;
    }

    .offer-list-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {

    body,
    .hero-banner,
    .what-we-offer-band {
        background-attachment: scroll;
    }
}