/* =============================================
   STATURE MANAGEMENT — Premium Dark Luxury
   Clean Design System
   ============================================= */

:root {
    /* Colors */
    --color-black: #050505;
    --color-bg: #0a0a0a;
    --color-bg-alt: #111111;
    --color-surface: #111111;
    --color-surface-hover: #1a1a1a;
    --color-border: rgba(255, 255, 255, 0.05);
    --color-border-light: rgba(255, 255, 255, 0.08);
    --color-border-medium: rgba(64, 64, 64, 0.5);
    --color-gold: #e9c176;
    --color-gold-light: #ffdea5;
    --color-gold-dim: #997835;
    --color-cream: #f0e0ca;
    --color-cream-light: #fafafa;
    --color-muted: #c4c7c7;
    --color-muted-dim: #8e9192;
    --color-error: #ffb4ab;
    --color-error-bg: rgba(147, 0, 10, 0.2);

    /* Typography */
    --font-headline: 'Epilogue', sans-serif;
    --font-body: 'Manrope', sans-serif;

    /* Spacing */
    --section-gap: 128px;
    --margin-edge: 64px;
    --gutter: 32px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--color-black);
    color: var(--color-cream);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-black);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-dim);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headline);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-smooth);
}

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

/* --- Selection --- */
::selection {
    background: var(--color-gold);
    color: var(--color-black);
}

/* --- Material Symbols Base --- */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

/* =============================================
   GLOBAL UTILITIES
   ============================================= */
.text-gold { color: var(--color-gold); }
.text-gold-light { color: var(--color-gold-light); }
.text-cream { color: var(--color-cream); }
.text-muted { color: var(--color-muted); }
.text-white { color: #ffffff; }

.bg-black { background: var(--color-black); }
.bg-surface { background: var(--color-surface); }
.bg-bg { background: var(--color-bg); }

.section-gap {
    padding-top: var(--section-gap);
    padding-bottom: var(--section-gap);
}

.month-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(233, 193, 118, 0.3), transparent);
    margin: 48px 0 32px;
}

.gradient-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233, 193, 118, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

#navbar.scrolled {
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 32px;
}

.logo {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fafafa;
    letter-spacing: -0.03em;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.85;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 48px;
}

.nav-link {
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-muted-dim);
    transition: color var(--transition-smooth);
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
}

.nav-link:hover {
    color: var(--color-gold-light);
}

.nav-link.active {
    color: var(--color-cream-light);
    border-bottom-color: var(--color-gold);
}

.nav-cta-wrapper {
    display: none;
}

.nav-cta {
    background: #ffffff;
    color: #1c1b1b;
    padding: 12px 28px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    font-weight: 700;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
}

.nav-cta:hover {
    background: var(--color-gold);
    transform: scale(0.98);
}

.hamburger-btn {
    background: none;
    border: none;
    color: #fafafa;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
}

.hamburger-btn .material-symbols-outlined {
    font-size: 2rem;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
    .nav-cta-wrapper {
        display: block;
    }
    .hamburger-btn {
        display: none;
    }
}

/* =============================================
   MOBILE MENU
   ============================================= */
#mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 300px;
    background: var(--color-bg-alt);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
    border-left: 1px solid var(--color-border-light);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
}

#mobile-menu.open {
    transform: translateX(0);
}

#mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
}

#mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.mobile-menu-title {
    font-family: var(--font-headline);
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fafafa;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #8e9192;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-close .material-symbols-outlined {
    font-size: 1.8rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-muted-dim);
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

.mobile-nav-link:hover {
    color: var(--color-gold-light);
}

.mobile-nav-link.active {
    color: var(--color-cream-light);
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-cta {
    width: 100%;
    text-align: center;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-black) 0%, transparent 40%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-label {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 24px;
    display: block;
}

.hero-headline {
    font-family: var(--font-headline);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin-bottom: 32px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: rgba(240, 224, 202, 0.85);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto 48px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    z-index: 10;
}

.scroll-indicator span:first-child {
    font-family: var(--font-body);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.scroll-indicator .material-symbols-outlined {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    color: #1c1b1b;
    padding: 16px 40px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    font-weight: 700;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    background: var(--color-gold);
    transform: scale(0.98);
}

.btn-primary:active {
    transform: scale(0.96);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 16px 40px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    font-weight: 700;
    transition: all var(--transition-smooth);
    cursor: pointer;
    background: transparent;
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: scale(0.98);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 14px 32px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
    font-weight: 700;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-gold:hover {
    background: #ffffff;
    transform: scale(0.98);
}

.btn-gold:active {
    transform: scale(0.96);
}

.link-underline {
    color: var(--color-gold);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(233, 193, 118, 0.4);
    padding-bottom: 4px;
    transition: all var(--transition-smooth);
    cursor: pointer;
    background: none;
    border: none;
}

.link-underline:hover {
    color: #ffffff;
    border-color: #ffffff;
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
    padding: var(--section-gap) var(--margin-edge);
    max-width: 1600px;
    margin: 0 auto;
}

.section-dark {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.section-label {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 16px;
    display: block;
}

.section-headline {
    font-family: var(--font-headline);
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

/* =============================================
   ARTIST CARDS
   ============================================= */
.artist-roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--gutter);
}

.artist-card {
    position: relative;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: all var(--transition-smooth);
    cursor: pointer;
    display: block;
}

.artist-card:hover {
    border-color: rgba(233, 193, 118, 0.4);
    transform: translateY(-6px);
}

.artist-card-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    position: relative;
}

.artist-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    z-index: 1;
    opacity: 0.7;
    transition: opacity var(--transition-smooth);
}

.artist-card:hover .artist-card-image::after {
    opacity: 0.5;
}

.artist-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) brightness(0.85);
    transition: all var(--transition-slow);
}

.artist-card:hover .artist-card-image img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.artist-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 2;
    transform: translateY(0);
    transition: transform var(--transition-smooth);
}

.artist-card:hover .artist-card-body {
    transform: translateY(-4px);
}

.artist-card-name {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.artist-card-genre {
    font-family: var(--font-body);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
}

/* =============================================
   SERVICE CARDS
   ============================================= */
.service-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 48px 40px;
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    transform: translateX(-100%);
    transition: transform var(--transition-smooth);
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-card:hover {
    border-color: rgba(233, 193, 118, 0.4);
    transform: translateY(-4px);
}

.service-card-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 24px;
    transition: transform var(--transition-smooth);
}

.service-card:hover .service-card-icon {
    transform: scale(1.1);
}

.service-card-title {
    font-family: var(--font-headline);
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.service-card-desc {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-bottom: 28px;
    line-height: 1.7;
}

.service-card-list {
    list-style: none;
    text-align: left;
    width: 100%;
    margin-bottom: 32px;
}

.service-card-list li {
    font-size: 0.75rem;
    color: var(--color-muted);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.service-card-list li:last-child {
    border-bottom: none;
}

.service-card-list .check-icon {
    color: var(--color-gold);
    font-size: 1rem;
    flex-shrink: 0;
}

/* =============================================
   TOUR ROWS
   ============================================= */
.tour-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.tour-row:hover {
    background: var(--color-surface-hover);
    padding-left: 28px;
}

.tour-date-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.tour-date-day {
    font-family: var(--font-headline);
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    transition: color var(--transition-smooth);
    line-height: 1;
}

.tour-row:hover .tour-date-day {
    color: var(--color-gold);
}

.tour-date-month {
    font-family: var(--font-body);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-muted);
}

.tour-venue-name {
    font-family: var(--font-headline);
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    transition: color var(--transition-smooth);
}

.tour-row:hover .tour-venue-name {
    color: var(--color-gold);
}

.tour-city {
    font-size: 0.8rem;
    color: var(--color-muted);
}

.tour-badge {
    font-family: var(--font-body);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 999px;
    font-weight: 700;
}

.tour-badge-available {
    background: var(--color-gold);
    color: #5d4201;
}

.tour-badge-sold {
    background: var(--color-error-bg);
    color: var(--color-error);
}

/* =============================================
   CONTACT FORM
   ============================================= */
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border-medium);
    padding: 14px 18px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    transition: all var(--transition-smooth);
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.05);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #555;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e9c176' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 48px;
}

.form-select option {
    background: var(--color-bg);
    color: #ffffff;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-label {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--color-muted);
    margin-bottom: 8px;
    display: block;
}

/* =============================================
   SOCIAL CIRCLES
   ============================================= */
.social-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--color-border-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all var(--transition-smooth);
    cursor: pointer;
    background: transparent;
}

.social-circle:hover {
    transform: translateY(-3px);
}

.social-circle.instagram:hover {
    border-color: #E4405F;
    color: #E4405F;
    background: rgba(228, 64, 95, 0.1);
}

.social-circle.twitter:hover {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.social-circle.facebook:hover {
    border-color: #1877F2;
    color: #1877F2;
    background: rgba(24, 119, 242, 0.1);
}

.social-circle.tiktok:hover {
    border-color: #ff0050;
    color: #ff0050;
    background: rgba(255, 0, 80, 0.1);
}

.social-circle.youtube:hover {
    border-color: #FF0000;
    color: #FF0000;
    background: rgba(255, 0, 0, 0.1);
}

.social-circle.spotify:hover {
    border-color: #1DB954;
    color: #1DB954;
    background: rgba(29, 185, 84, 0.1);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    padding: 64px var(--margin-edge) 32px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
    gap: 48px;
}

.footer-brand {
    flex: 2;
    min-width: 250px;
}

.footer-logo {
    font-family: var(--font-headline);
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #f5f5f5;
    display: block;
    margin-bottom: 16px;
}

.footer-description {
    font-size: 0.75rem;
    color: #737373;
    max-width: 300px;
    line-height: 1.6;
}

.footer-links-col {
    flex: 1;
    min-width: 150px;
}

.footer-heading {
    font-family: var(--font-headline);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.7rem;
    color: #737373;
    text-decoration: none;
    transition: color var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-locations {
    font-size: 0.7rem;
    color: #737373;
}

.footer-bottom {
    max-width: 1600px;
    margin: 48px auto 0;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.65rem;
    color: #525252;
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   DISCOGRAPHY - 4 COLUMN GRID
   ============================================= */
.discography-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.discography-item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 24px 20px;
    text-align: center;
    transition: all var(--transition-smooth);
}

.discography-item:hover {
    border-color: rgba(233, 193, 118, 0.4);
    transform: translateY(-4px);
}

.discography-artwork {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 20px;
}

.discography-artwork-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 4px;
}

.discography-artwork-placeholder .material-symbols-outlined {
    font-size: 3rem;
    color: var(--color-gold);
    opacity: 0.4;
}

.discography-title {
    font-family: var(--font-headline);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.discography-meta {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--color-gold);
}

.discography-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    color: var(--color-muted-dim);
}

.discography-empty .material-symbols-outlined {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
    color: var(--color-gold-dim);
}

@media (max-width: 1024px) {
    .discography-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .discography-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .discography-item {
        padding: 16px 12px;
    }
    .discography-title {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .discography-grid {
        gap: 12px;
    }
    .discography-item {
        padding: 12px;
    }
    .discography-title {
        font-size: 0.75rem;
    }
    .discography-meta {
        font-size: 0.5rem;
    }
}

/* =============================================
   PROFILE PAGE STYLES
   ============================================= */
.profile-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    max-height: 600px;
    overflow: hidden;
}

.profile-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(233, 193, 118, 0.12) 0%, transparent 70%);
    z-index: 1;
}

.profile-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.85);
}

.profile-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #050505 0%, transparent 40%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px 80px;
}

.profile-header {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    text-align: center;
}

.profile-name {
    font-family: var(--font-headline);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.profile-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.profile-genre {
    display: inline-block;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-gold);
    background: rgba(233, 193, 118, 0.1);
    border: 1px solid rgba(233, 193, 118, 0.25);
    padding: 6px 20px;
    border-radius: 999px;
}

.profile-label-text {
    font-size: 0.8rem;
    color: #8e9192;
}

.profile-tagline {
    font-size: 1.15rem;
    color: #dec1af;
    font-style: italic;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.profile-book-btn {
    margin-bottom: 36px;
    padding: 14px 36px;
}

.profile-social {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 56px;
}

.profile-social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4c7c7;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    text-decoration: none;
}

.profile-social-link:hover {
    transform: translateY(-3px);
    color: var(--color-gold);
    border-color: rgba(233, 193, 118, 0.5);
    background: rgba(233, 193, 118, 0.05);
}

.profile-section {
    margin-bottom: 72px;
}

.profile-section-title {
    font-family: var(--font-headline);
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.profile-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--color-gold);
}

.profile-bio {
    font-size: 1rem;
    color: #c4c7c7;
    line-height: 1.8;
}

.profile-streaming {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.stream-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 999px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
}

.stream-link.spotify {
    background: #1DB954;
    color: #000;
}

.stream-link.spotify:hover {
    background: #fff;
    transform: scale(0.98);
}

.stream-link.apple {
    background: #FA243C;
    color: #fff;
}

.stream-link.apple:hover {
    background: #fff;
    color: #000;
    transform: scale(0.98);
}

.stream-link.youtube {
    background: #FF0000;
    color: #fff;
}

.stream-link.youtube:hover {
    background: #fff;
    color: #000;
    transform: scale(0.98);
}

.tour-dates-container {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.loading-small {
    text-align: center;
    padding: 48px;
    color: #8e9192;
    font-size: 0.8rem;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.experience-card {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.experience-card:hover {
    border-color: rgba(233, 193, 118, 0.35);
    transform: translateY(-5px);
}

.experience-icon {
    font-size: 2.8rem;
    color: var(--color-gold);
    margin-bottom: 20px;
    display: block;
}

.experience-title {
    font-family: var(--font-headline);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.experience-desc {
    font-size: 0.85rem;
    color: #c4c7c7;
    margin-bottom: 24px;
    line-height: 1.7;
}

.experience-btn {
    width: 100%;
    justify-content: center;
}

.loading-state {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 2px solid rgba(233, 193, 118, 0.1);
    border-top-color: var(--color-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-state p {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    color: #8e9192;
}

.error-state {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: center;
    padding: 24px;
}

.error-state .material-symbols-outlined {
    font-size: 4rem;
    color: #8e9192;
}

.error-state p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #c4c7c7;
}

.booking-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(233, 193, 118, 0.2);
    padding: 16px 24px;
    display: none;
}

.booking-bar .btn-gold {
    width: 100%;
    justify-content: center;
}

@media (max-width: 768px) {
    .booking-bar {
        display: block;
    }
    .profile-container {
        padding: 0 24px 60px;
    }
    .profile-header {
        margin-top: -60px;
    }
    .profile-section-title {
        font-size: 1.5rem;
    }
    .experiences-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .profile-name {
        font-size: 2rem;
    }
    .profile-tagline {
        font-size: 1rem;
    }
    .site-footer {
        padding: 48px 24px 32px;
    }
    .footer-container {
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .profile-hero {
        min-height: 350px;
    }
    .profile-container {
        padding: 0 20px 48px;
    }
    .profile-book-btn {
        width: 100%;
    }
}

/* =============================================
   RESPONSIVE GLOBAL
   ============================================= */
@media (max-width: 768px) {
    :root {
        --section-gap: 80px;
        --margin-edge: 24px;
        --gutter: 20px;
    }
    .hero-headline {
        font-size: 2.5rem;
    }
    .hero-tagline {
        font-size: 1rem;
    }
    .tour-row {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        padding: 20px 16px;
    }
    .tour-date-block {
        flex-direction: row;
        gap: 12px;
        min-width: auto;
    }
    .service-card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .btn-primary, .btn-outline {
        width: 100%;
        justify-content: center;
    }
}