/* ============================================================
   ANDRE WEST — Official Artist Website
   Light Modern Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;1,400&family=Great+Vibes&display=swap');

:root {
    --bg:           #ffffff;
    --bg-2:         #f4f6f8;
    --bg-3:         #edf0f3;
    --bg-section:   #f8f9fa;

    --accent:       #0077b6;
    --accent-light: #0096c7;
    --accent-soft:  rgba(0,119,182,0.08);
    --accent-mid:   rgba(0,119,182,0.2);
    --gold:         #c8860a;
    --gold-soft:    rgba(200,134,10,0.1);

    /* keep these mapped so existing code doesn't break */
    --purple:       #0077b6;
    --purple-light: #0096c7;
    --purple-soft:  rgba(0,119,182,0.08);
    --purple-mid:   rgba(0,119,182,0.2);
    --pink:         #c8860a;
    --pink-soft:    rgba(200,134,10,0.1);

    --text:         #0d1b2a;
    --text-2:       #3a4a5c;
    --text-muted:   #7a8a9a;

    --border:       #dde3ea;
    --border-dark:  #b0bec5;

    --shadow-sm:    0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md:    0 4px 16px rgba(0,0,0,0.1), 0 2px 6px rgba(0,0,0,0.06);
    --shadow-lg:    0 12px 40px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08);
    --transition:   all 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-weight: 700; color: var(--text); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }

.gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--purple);
    font-weight: 700;
    display: block;
}

.divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    border-radius: 2px;
    margin: 0.75rem auto;
}
.divider.left { margin-left: 0; }

/* ---- Buttons ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.85rem 2.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 18px rgba(124,58,237,0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(124,58,237,0.45);
    color: #fff;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--purple);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.82rem 2rem;
    border: 2px solid var(--purple);
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}
.btn-outline:hover {
    background: var(--purple);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124,58,237,0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--text-2);
    border: 1.5px solid var(--border-dark);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}
.btn-ghost:hover {
    background: var(--purple-soft);
    border-color: var(--purple);
    color: var(--purple);
}

/* ---- Navigation ---- */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.1rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    transition: var(--transition);
}
.site-brand {
    font-family: 'Great Vibes', cursive;
    font-size: 2.3rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: var(--text);
    line-height: 1;
    white-space: nowrap;
}
.site-brand:hover { color: var(--accent); }
.site-social-links {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.site-social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(13,27,42,0.08);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    transition: var(--transition);
}
.site-social-links a:hover {
    transform: translateY(-2px);
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--gold));
}
.site-social-links i { font-size: 1.05rem; }

/* Burger button */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}
.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile fullscreen menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
.mobile-nav-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.mobile-nav-links a {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}
.mobile-nav-links a:hover { color: var(--accent); }
.mobile-menu-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}
.mobile-menu-close:hover { color: var(--accent); }
.site-nav.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 0.85rem 3rem;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex: 1;
    justify-content: center;
    list-style: none;
}
.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    transition: var(--transition);
    position: relative;
    padding-bottom: 2px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--accent);
    transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

/* ---- Hero ---- */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(110deg, #f5f6f8 0%, #eef2f6 45%, #e8edf3 100%);
    display: flex;
    align-items: center;
}

/* Full-bleed background image on the right */
.hero-bg-image {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.hero-bg-image img {
    position: absolute;
    top: 0;
    right: 0;
    width: 62%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: saturate(0.55) brightness(1.45) contrast(0.82);
}
/* Gradient overlay: left side fades white, bottom fades white */
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, #f2f4f7 30%, rgba(242,244,247,0.9) 42%, rgba(242,244,247,0.35) 56%, rgba(242,244,247,0.05) 72%),
        linear-gradient(to top, rgba(242,244,247,0.98) 0%, rgba(242,244,247,0.4) 12%, rgba(242,244,247,0) 28%);
}

/* Left content column */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin-left: clamp(2rem, 5vw, 6rem);
    padding-top: 8rem;
    padding-bottom: 7rem;
}

/* "OFFICIAL ARTIST" pill */
.hero-eyebrow {
    display: inline-block;
    border: 1.5px solid rgba(180,155,80,0.55);
    color: var(--text-2);
    background: transparent;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    padding: 0.38rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1.6rem;
}

/* Main name — large dark navy */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 9vw, 8rem);
    font-weight: 700;
    line-height: 0.9;
    color: #0d1b2a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

/* Gold subtitle */
.hero-kicker {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-weight: 700;
    font-size: clamp(0.72rem, 1.4vw, 0.95rem);
    margin-bottom: 0.6rem;
}

/* Thin gold rule under kicker */
.hero-kicker::after {
    content: '';
    display: block;
    width: 60px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-top: 0.55rem;
    margin-bottom: 0.75rem;
}

/* Tagline body copy */
.hero-tagline {
    font-size: clamp(0.92rem, 1.5vw, 1.05rem);
    color: var(--text-2);
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.75;
    white-space: pre-line;
}

/* CTA buttons */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Primary: solid gold */
.hero .btn-primary {
    background: var(--gold);
    box-shadow: 0 4px 18px rgba(200,134,10,0.38);
}
.hero .btn-primary:hover {
    background: #b87a08;
    box-shadow: 0 8px 28px rgba(200,134,10,0.48);
}

/* Outline button in hero: dark border, no fill */
.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.82rem 2rem;
    border: 1.5px solid rgba(13,27,42,0.3);
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}
.hero-btn-outline:hover {
    border-color: var(--text);
    background: rgba(13,27,42,0.05);
    color: var(--text);
}

/* Platforms strip */
.hero-platforms {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-top: 0.25rem;
}
.hero-platforms-label {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    white-space: nowrap;
}
.hero-platforms-icons {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.hero-platforms-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8d97a3;
    text-decoration: none;
    transition: var(--transition);
    background: transparent;
    border: none;
    box-shadow: none;
    width: auto;
    height: auto;
}
.hero-platforms-icons a:hover { color: var(--text); transform: none; }
.hero-platforms-icons i { font-size: 1.3rem; }

/* Floating quote card — bottom right of the image area */
.hero-quote-float {
    position: absolute;
    bottom: clamp(4rem, 7vw, 6.5rem);
    right: clamp(2rem, 5vw, 5rem);
    z-index: 3;
    max-width: 260px;
    text-align: right;
    pointer-events: none;
}
.hero-quote-float-mark {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    line-height: 1;
    margin-bottom: 0.1rem;
    display: block;
    text-align: left;
}
.hero-quote-float p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    line-height: 1.65;
    color: var(--text);
    margin: 0 0 0.45rem 0;
}
.hero-quote-float-sig {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    color: var(--text-2);
    display: block;
}

/* Wave separator at bottom */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    line-height: 0;
}
.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.hero-scroll-mouse {
    width: 22px;
    height: 34px;
    border: 1.5px solid rgba(13,27,42,0.25);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}
.hero-scroll-dot {
    width: 3px;
    height: 8px;
    background: rgba(13,27,42,0.4);
    border-radius: 2px;
    animation: scrollDotBounce 1.6s ease-in-out infinite;
}
@keyframes scrollDotBounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(6px); opacity: 1; }
}

/* keep .scroll-line for any other usage */
.scroll-line {
    width: 2px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(200,134,10,0), rgba(200,134,10,0.75), rgba(200,134,10,0));
}

/* Crop-preview utility (used in admin) */
.hero-crop-preview { margin-bottom: 1.4rem; }
.hero-img-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--hero-image-size, 420px);
    height: var(--hero-image-size, 420px);
}
.hero-img-ring { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-img-ring-1 {
    width: calc(var(--hero-image-size, 420px) + 110px);
    height: calc(var(--hero-image-size, 420px) + 110px);
    border: 2px solid rgba(0,180,216,0.3);
}
.hero-img-ring-2 {
    width: calc(var(--hero-image-size, 420px) + 190px);
    height: calc(var(--hero-image-size, 420px) + 190px);
    border: 1.5px solid rgba(232,160,32,0.18);
}
.hero-crop-preview .hero-img-ring-1 { width: 290px; height: 290px; }
.hero-crop-preview .hero-img-ring-2 { width: 360px; height: 360px; }
.hero-crop-preview .hero-artist-img,
.hero-crop-preview .hero-artist-placeholder { width: 220px; height: 220px; }
.hero-artist-img {
    width: var(--hero-image-size, 340px);
    height: var(--hero-image-size, 340px);
    border-radius: 50%;
    object-fit: contain;
    object-position: var(--hero-focus-x, 50%) var(--hero-focus-y, 50%);
    transform: scale(var(--hero-zoom, 1));
    transform-origin: center center;
    border: 5px solid #fff;
    box-shadow: var(--shadow-lg), 0 0 0 12px rgba(0,119,182,0.1);
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}
.hero-artist-placeholder {
    width: var(--hero-image-size, 340px);
    height: var(--hero-image-size, 340px);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,180,216,0.12), rgba(232,160,32,0.1));
    border: 5px solid var(--border);
    box-shadow: var(--shadow-lg), 0 0 0 12px rgba(0,119,182,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5.5rem;
    color: var(--purple);
    opacity: 0.5;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

/* ---- Sections ---- */
section { padding: 6rem 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 0.5rem; }

/* ---- Music / Track Rows ---- */
.music-section { background: var(--bg); }

.track-list {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.track-row {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    cursor: default;
}
.track-row:last-child { border-bottom: none; }
.track-row:hover { background: var(--bg-2); }

.track-num {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    text-align: center;
    flex-shrink: 0;
}
.track-row:hover .track-num { color: var(--purple); }

.track-info { min-width: 0; }
.track-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.15rem;
}
.track-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.track-featured-pill {
    background: linear-gradient(135deg, var(--purple-soft), var(--pink-soft));
    border: 1px solid var(--purple-mid);
    color: var(--purple);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.15rem 0.55rem;
    border-radius: 50px;
}

.track-actions {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}
.stream-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: var(--transition);
    border: 1.5px solid transparent;
    white-space: nowrap;
}
.stream-btn.spotify {
    background: #f0fdf4;
    color: #16a34a;
    border-color: #bbf7d0;
}
.stream-btn.spotify:hover { background: #1ED760; color: #fff; border-color: #1ED760; }
.stream-btn.youtube {
    background: #fff5f5;
    color: #dc2626;
    border-color: #fecaca;
}
.stream-btn.youtube:hover { background: #FF0000; color: #fff; border-color: #FF0000; }
.stream-btn.apple {
    background: #fff1f2;
    color: #e11d48;
    border-color: #fecdd3;
}
.stream-btn.apple:hover { background: #FC3C44; color: #fff; border-color: #FC3C44; }

/* ---- Platforms ---- */
.platforms-section {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 5rem 0;
}
.platforms-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.platform-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 1.6rem 1.8rem;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-2);
    transition: var(--transition);
    min-width: 120px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.platform-link:hover {
    border-color: var(--purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    color: var(--text);
}
.platform-icon { font-size: 2.2rem; line-height: 1; }
.platform-name { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-2); }
.platform-link.spotify .platform-icon { color: #1ED760; }
.platform-link.youtube .platform-icon { color: #FF0000; }
.platform-link.apple .platform-icon { color: #FC3C44; }
.platform-link.instagram .platform-icon { color: #E1306C; }
.platform-link.facebook .platform-icon { color: #1877F2; }
.platform-link.soundcloud .platform-icon { color: #FF5500; }

/* ---- About ---- */
.about-section { background: var(--bg); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}
.about-image-frame {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, rgba(0,180,216,0.08), rgba(232,160,32,0.06));
    border: 1.5px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.about-image-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 24px;
}
.about-image-placeholder {
    width: 100%; min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--purple);
    opacity: 0.2;
}
.about-text p {
    color: var(--text-2);
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.9;
}
.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.8rem;
}
.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--purple-soft);
    border: 1.5px solid var(--purple-mid);
    color: var(--purple);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.4rem 1rem;
    border-radius: 50px;
}
.about-meta {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1.5px solid var(--border);
    border-bottom: 1.5px solid var(--border);
}
.meta-value {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
}
.meta-label {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* ---- Stats Band ---- */
.stats-band {
    background: var(--text);
    padding: 3.5rem 0;
}
.stats-band-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.stats-band-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 3.5rem;
    text-align: center;
}
.stats-band-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.4rem;
}
.stats-band-label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
}
.stats-band-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.15);
}

/* ---- Quote Section ---- */
.quote-section {
    background: var(--accent);
    padding: 5rem 0;
}
.quote-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    line-height: 0.5;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1.5rem;
    display: block;
}
.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-style: italic;
    color: #fff;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 2rem;
}
.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
}
.quote-line {
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.5);
}

/* ---- Contact ---- */
.contact-section {
    background: var(--bg-2);
    text-align: center;
}
.contact-sub {
    color: var(--text-2);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.contact-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--text);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.02em;
}
.contact-email-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: #fff;
}
.contact-note {
    margin-top: 1.2rem;
    font-size: 0.76rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ---- Footer ---- */
.site-footer {
    background: #0d1b2a;
    padding: 3rem 0;
    text-align: center;
}
.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1.5rem;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition);
}
.footer-links a:hover { color: #fff; }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.75rem; }

/* ============================================================
   ADMIN
   ============================================================ */
.admin-wrapper {
    min-height: 100vh;
    background: var(--bg-2);
    display: flex;
    flex-direction: column;
}
.admin-topbar {
    background: #fff;
    border-bottom: 1.5px solid var(--border);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.admin-brand {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    text-decoration: none;
}
.admin-brand span {
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.12em;
    display: block;
    -webkit-text-fill-color: var(--text-muted);
}
.admin-layout { display: flex; flex: 1; }
.admin-sidebar {
    width: 240px;
    min-width: 240px;
    background: #fff;
    border-right: 1.5px solid var(--border);
    padding: 1.5rem 0;
}
.admin-nav { list-style: none; }
.admin-nav-item a, .admin-nav-item button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.5rem;
    color: var(--text-2);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-left: 3px solid transparent;
    border-radius: 0 8px 8px 0;
    margin: 0.1rem 0;
}
.admin-nav-item a:hover, .admin-nav-item button:hover {
    color: var(--purple);
    border-left-color: var(--purple);
    background: var(--purple-soft);
}
.admin-nav-item a.active {
    color: var(--purple);
    border-left-color: var(--purple);
    background: var(--purple-soft);
    font-weight: 700;
}
.admin-nav-section {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 1.2rem 1.5rem 0.4rem;
    font-weight: 600;
}
.admin-main { flex: 1; padding: 2.5rem; overflow-y: auto; }
.admin-page-title { font-size: 1.6rem; font-weight: 800; color: var(--text); margin-bottom: 0.3rem; }
.admin-page-subtitle { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 2rem; }
.admin-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}
.admin-card-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--purple);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1.5px solid var(--border);
}

/* Forms */
.form-group { margin-bottom: 1.2rem; }
.form-label {
    display: block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-2);
    margin-bottom: 0.45rem;
}
.form-control {
    width: 100%;
    background: var(--bg-2);
    border: 1.5px solid var(--border);
    color: var(--text);
    padding: 0.72rem 1rem;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}
.form-control:focus {
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0,119,182,0.1);
}
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-check { display: flex; align-items: center; gap: 0.6rem; cursor: pointer; }
.form-check-input { width: 18px; height: 18px; accent-color: var(--purple); cursor: pointer; }
.form-check-label { font-size: 0.88rem; color: var(--text-2); cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-hint { font-size: 0.74rem; color: var(--text-muted); margin-top: 0.3rem; }

/* Admin Table */
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.admin-table th {
    text-align: left;
    padding: 0.75rem 1rem;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--purple);
    border-bottom: 1.5px solid var(--border);
    font-weight: 700;
    background: var(--bg-3);
}
.admin-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-2);
    vertical-align: middle;
}
.admin-table tr:hover td { background: var(--bg-2); }
.admin-table td strong { color: var(--text); }

/* Badges */
.badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}
.badge-gold, .badge-purple {
    background: var(--purple-soft);
    color: var(--purple);
    border: 1px solid var(--purple-mid);
}
.badge-green { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.badge-grey { background: #f5f5f5; color: #888; border: 1px solid #e0e0e0; }

/* Alerts */
.alert { padding: 0.9rem 1.2rem; border-radius: 10px; font-size: 0.88rem; margin-bottom: 1.2rem; font-weight: 500; }
.alert-success { background: #f0fdf4; border: 1.5px solid #bbf7d0; color: #16a34a; }
.alert-error { background: #fff5f5; border: 1.5px solid #fecaca; color: #dc2626; }
.alert-info { background: var(--purple-soft); border: 1.5px solid var(--purple-mid); color: var(--purple); }

/* Login */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(160deg, #ffffff 0%, #eef4fa 50%, #f8f9fa 100%);
}
.login-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 24px;
    padding: 3rem;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
}
.login-logo { text-align: center; margin-bottom: 2.5rem; }
.login-logo .brand {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.login-logo .sub {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    gap: 1.2rem;
    margin-bottom: 2rem;
}
.stat-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}
.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

/* Admin save/submit button */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--text);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    margin-top: 0.5rem;
}
.btn-gold:hover {
    background: var(--accent);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn-gold:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

/* Action Buttons */
.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.32rem 0.85rem;
    border-radius: 50px;
    font-size: 0.74rem;
    font-weight: 700;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: var(--transition);
    text-decoration: none;
}
.action-btn.edit {
    background: var(--purple-soft);
    color: var(--purple);
    border-color: var(--purple-mid);
}
.action-btn.edit:hover { background: var(--purple); color: #fff; }
.action-btn.delete {
    background: #fff5f5;
    color: #dc2626;
    border-color: #fecaca;
}
.action-btn.delete:hover { background: #dc2626; color: #fff; }

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,16,51,0.45);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(6px);
}
.modal-box {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1.5px solid var(--border);
}
.modal-title { font-size: 1.2rem; font-weight: 800; color: var(--text); }
.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
    padding: 0;
}
.modal-close:hover { color: var(--purple); }
.modal-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1.5px solid var(--border);
}

/* Responsive */
@media (max-width: 900px) {
    .hero-shell-single {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: left;
        padding-top: 6rem;
        margin-left: 2rem;
        margin-right: auto;
        max-width: 420px;
    }
    .hero-shell-single .hero-copy { margin-left: 0; margin-right: 0; }
    .hero-shell-single .hero-lead { margin-left: 0; margin-right: 0; }
    .hero-image-stack { width: min(100%, 360px); }
    .hero-scroll-single { bottom: 1rem; }
    .about-grid { grid-template-columns: 1fr; }
    .admin-layout { flex-direction: column; }
    .admin-sidebar { width: 100%; min-width: unset; border-right: none; border-bottom: 1.5px solid var(--border); padding: 1rem; }
    .admin-nav { display: flex; flex-wrap: wrap; gap: 0.3rem; }
    .admin-nav-section { display: none; }
    .site-nav { padding: 1rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .track-row { grid-template-columns: 36px 1fr; }
    .track-actions { display: none; }
}
@media (max-width: 600px) {
    .nav-links { display: none; }
    .site-social-links { display: none; }
    .burger { display: flex; }
    .hero-shell-single {
        margin-left: 1.2rem;
        margin-right: 1.2rem;
        max-width: none;
    }
    .hero-shell-single .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-shell-single .hero-title { font-size: clamp(3rem, 20vw, 4.8rem); }
    .hero-image-stack { width: 100%; }
    .hero-mini-quote { font-size: 0.46rem; }
    .about-meta { gap: 1.5rem; }
    .admin-main { padding: 1.5rem 1rem; }
    .platforms-grid { gap: 0.8rem; }
    .platform-link { min-width: 95px; padding: 1.2rem 1rem; }
    .stats-band-item { padding: 0.8rem 1.8rem; }
    .stats-band-divider { display: none; }
    .quote-text { font-size: 1.2rem; }
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.55s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }

/* Blazor Error */
#blazor-error-ui {
    background: #fef2f2;
    border-top: 1.5px solid #fecaca;
    bottom: 0; left: 0; right: 0;
    display: none;
    padding: 0.8rem 1.5rem;
    position: fixed;
    z-index: 9999;
    color: #dc2626;
    font-size: 0.85rem;
}
#blazor-error-ui .dismiss { cursor: pointer; float: right; font-size: 1.2rem; }
.blazor-error-boundary::after {
    content: "An error has occurred.";
    background: #fef2f2;
    color: #dc2626;
    padding: 1rem;
    display: block;
    border-radius: 8px;
    border: 1px solid #fecaca;
}
.valid.modified:not([type=checkbox]) { outline: 1.5px solid #16a34a; border-radius: 4px; }
.invalid { outline: 1.5px solid #dc2626; border-radius: 4px; }
.validation-message { color: #dc2626; font-size: 0.76rem; margin-top: 0.3rem; }
