:root {
    --bg: #0f1115;
    --bg-soft: #171a21;
    --card: #1d2230;
    --text: #f4f4f5;
    --muted: #b7beca;
    --accent: #d4a24c;
    --accent-dark: #b68533;
    --border: rgba(255, 255, 255, 0.08);
    --success: #3fbf7f;
    --danger: #ff7676;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    --radius: 20px;
    --max-width: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: linear-gradient(180deg, #0c0e12 0%, #121621 100%);
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

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

button, input, textarea, select {
    font: inherit;
}

.container {
    width: min(var(--max-width), calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.section-title h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
}

.section-title p {
    margin: 0;
    color: var(--muted);
    max-width: 700px;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    background: rgba(11, 14, 20, 0.75);
    border-bottom: 1px solid var(--border);
}

.nav {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
    flex: 0 0 46px;
    background: rgba(255, 255, 255, 0.05);
}

.brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-text strong {
    font-size: 18px;
    letter-spacing: 0.02em;
}

.brand-text span {
    color: var(--muted);
    font-size: 13px;
}

.brand strong {
    font-size: 18px;
    letter-spacing: 0.02em;
}

.brand span {
    color: var(--muted);
    font-size: 13px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.menu a {
    color: var(--muted);
    transition: 0.2s ease;
}

.menu a:hover {
    color: var(--text);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-soft);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 30px;
        transition: 0.3s ease;
        z-index: 100;
        padding: 100px 40px 40px;
    }

    .menu.active {
        right: 0;
    }

    .menu a {
        font-size: 24px;
        font-weight: 600;
    }

    body.menu-open {
        overflow: hidden;
    }

    .brand-text span {
        display: none;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.2s ease;
    font-weight: 600;
}

.btn-primary {
    background: var(--accent);
    color: #111;
}

.btn-primary:hover {
    background: var(--accent-dark);
}

.btn-secondary {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

.hero {
    padding: 48px 0 32px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.hero-copy,
.hero-card,
.news-card,
.booking-card,
.shop-card,
.about-card,
.contact-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-copy {
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: auto;
    position: relative;
    overflow: hidden;
}

.hero-copy::after {
    content: "";
    position: absolute;
    inset: auto -80px -80px auto;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(212, 162, 76, 0.25) 0%, rgba(212, 162, 76, 0) 70%);
    pointer-events: none;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--accent);
    background: rgba(212, 162, 76, 0.12);
    border: 1px solid rgba(212, 162, 76, 0.24);
    margin-bottom: 18px;
    font-size: 14px;
}

.hero h1 {
    margin: 0 0 8px;
    font-size: clamp(40px, 8vw, 74px);
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.hero h3 {
    margin: 0 0 22px;
    font-size: clamp(20px, 3vw, 28px);
    color: var(--muted);
    font-weight: 500;
}

.hero p {
    max-width: 680px;
    font-size: 18px;
    color: #dde2eb;
    margin: 0 0 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-bottom-links {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.hero-bottom-links a {
    padding: 12px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: var(--text);
    font-weight: 500;
    transition: 0.2s;
}

.hero-bottom-links a:hover {
    background: rgba(255, 255, 255, 0.08);
}

.hero-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.slider {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 14px 16px;
    background: rgba(12, 14, 19, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    font-size: 15px;
}

.slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    border: none;
    cursor: pointer;
    padding: 0;
}

.dot.active {
    background: var(--accent);
}

.slider-nav {
    display: flex;
    gap: 10px;
}

.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    cursor: pointer;
}

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

.news-card,
.booking-card,
.shop-card,
.about-card,
.contact-card {
    padding: 28px;
}

.list {
    display: grid;
    gap: 14px;
}

.news-item,
.track-item,
.contact-item {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
}

.news-date {
    display: inline-block;
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 8px;
}

.news-item h4,
.track-item h4,
.booking-card h3,
.shop-card h3,
.about-card h3,
.contact-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
}

.news-item p,
.track-item p,
.booking-card p,
.shop-card p,
.about-card p,
.contact-card p,
.purchase-option p,
.form-note,
label span {
    color: var(--muted);
}

.booking-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 22px 0;
}

.pill {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
}

.pill strong {
    display: block;
    margin-bottom: 4px;
}

.shop-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
    align-items: start;
}

.track-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
}

.track-meta small {
    display: block;
    color: var(--muted);
    margin-top: 6px;
}

audio {
    width: 100%;
    margin-top: 12px;
    height: 40px;
}

.purchase-box {
    display: grid;
    gap: 16px;
    position: sticky;
    top: 94px;
}

.purchase-option {
    padding: 20px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
}

.purchase-option strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
}

.price {
    font-size: 28px;
    font-weight: 800;
    margin: 8px 0 12px;
}

.paypal-box {
    padding: 18px;
    border-radius: 18px;
    border: 1px dashed rgba(212, 162, 76, 0.4);
    background: rgba(212, 162, 76, 0.06);
    color: #f0dfbf;
    font-size: 14px;
}

.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-features {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
}

.feature-badge {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 12px;
    background: rgba(212, 162, 76, 0.14);
    color: var(--accent);
    display: grid;
    place-items: center;
    font-weight: 800;
}

form {
    display: grid;
    gap: 16px;
    margin-top: 16px;
}

.field {
    display: grid;
    gap: 8px;
}

label {
    font-weight: 600;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    padding: 14px 16px;
    outline: none;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    border-color: rgba(212, 162, 76, 0.6);
    box-shadow: 0 0 0 4px rgba(212, 162, 76, 0.12);
}

.contact-list {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.footer {
    padding: 30px 0 50px;
    color: var(--muted);
    border-top: 1px solid var(--border);
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 1080px) {
    .hero-grid,
    .grid-2,
    .shop-layout,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .purchase-box {
        position: static;
    }
}

@media (max-width: 760px) {
    .menu {
        gap: 30px;
        justify-content: flex-start;
        padding-top: 100px;
    }

    .hero-copy,
    .hero-card,
    .news-card,
    .booking-card,
    .shop-card,
    .about-card,
    .contact-card {
        padding: 22px;
    }

    .booking-highlights {
        grid-template-columns: 1fr;
    }

    .track-item {
        grid-template-columns: 1fr;
    }

    .nav {
        padding: 12px 0;
        align-items: flex-start;
        flex-direction: column;
    }
}