* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #070707;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 20px;
    font-weight: bold;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #b30000, #ff3d3d);
    font-weight: bold;
}

.main-nav {
    display: flex;
    gap: 24px;
}

.main-nav a {
    opacity: 0.85;
    transition: 0.2s ease;
}

.main-nav a:hover {
    opacity: 1;
    color: #ff4d4d;
}

.hero,
.hero-page {
    min-height: 68vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.9)),
        url('https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?q=80&w=1800&auto=format&fit=crop')
        center/cover;
}

.hero-page {
    min-height: 42vh;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-content.narrow {
    max-width: 940px;
}

.hero h1,
.hero-page h1 {
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.05;
    margin-bottom: 22px;
    letter-spacing: -2px;
}

.hero p,
.hero-text {
    font-size: 21px;
    opacity: 0.88;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn,
.primary-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: bold;
    transition: 0.2s ease;
}

.btn-primary,
.primary-btn {
    background: linear-gradient(135deg, #b30000, #ff3535);
}

.btn-primary:hover,
.primary-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ff1f1f, #ff5a5a);
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
}

.section,
.content-section,
.cta-section {
    padding: 80px 24px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.section-heading,
.cta-card {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 38px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #ff4d4d;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title,
.section-heading h2 {
    font-size: clamp(34px, 5vw, 48px);
    line-height: 1.1;
    margin-bottom: 18px;
}

.section-text,
.section-heading p {
    opacity: 0.75;
    max-width: 760px;
    margin-bottom: 40px;
}

.cards,
.service-grid {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.card,
.service-card,
.cta-card {
    background:
        linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(8px);
    transition: 0.2s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.card:hover,
.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,77,77,0.45);
    box-shadow: 0 24px 60px rgba(255,0,0,0.08);
}

.card h3,
.service-card h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.card p,
.service-card p {
    opacity: 0.74;
}

.artist-card {
    overflow: hidden;
    padding: 0;
}

.artist-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #111;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.3s ease;
}

.artist-card:hover .artist-image img {
    transform: scale(1.04);
}

.artist-content {
    padding: 28px;
}

.cta-section {
    padding-top: 20px;
}

.cta-card {
    text-align: center;
    max-width: 1000px;
}

.cta-card h2 {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.08;
    margin-bottom: 18px;
}

.cta-card p {
    max-width: 740px;
    margin: 0 auto 28px;
    opacity: 0.76;
    font-size: 18px;
}

.site-footer {
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    opacity: 0.65;
}

@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        gap: 18px;
        padding: 20px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .hero,
    .hero-page {
        min-height: 70vh;
        padding: 60px 20px;
    }

    .hero-page {
        min-height: 50vh;
    }

    .hero p,
    .hero-text {
        font-size: 18px;
    }

    .section,
    .content-section,
    .cta-section {
        padding: 60px 18px;
    }
}
.main-nav a.active {
    color: #ff4d4d;
    opacity: 1;
    position: relative;
}

.main-nav a.active::after {
    content: '';

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 100%;
    height: 2px;

    background: #ff4d4d;
    border-radius: 999px;
}