*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --cream: #FDF6F0;
    --section-alt: #FAF0E8;
    --bronze: #C4956A;
    --mauve: #8B4F6D;
    --dark-mauve: #6B3A53;
    --brown: #3D2B1F;
    --gold: #D4A853;
    --light-rose: #F5E6E8;
    --medium-rose: #E8C4C4;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--cream);
    color: var(--brown);
    line-height: 1.6;
}

/* ── Navigation ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(253, 246, 240, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--medium-rose);
    padding: 1.1rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 38px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brown);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--mauve); }

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(to bottom, rgba(20, 8, 4, 0.20) 0%, rgba(20, 8, 4, 0.20) 100%),
        url('images/LC_CallMeBack_Cover_base.jpg') center / cover no-repeat;
}

/* Subtle decorative rings */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}
.hero::before { width: 700px; height: 700px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.hero::after  { width: 500px; height: 500px; top: 50%; left: 50%; transform: translate(-50%, -50%); }

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-eyebrow {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-logo {
    height: 20rem;
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
}

.hero-cta {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background-color: var(--mauve);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: background-color 0.3s, transform 0.2s;
    margin: 0 0.4rem;
}

.hero-cta:hover { background-color: var(--dark-mauve); transform: translateY(-2px); }

.hero-cta.outline {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: white;
}

.hero-cta.outline:hover { background-color: rgba(255, 255, 255, 0.15); border-color: white; }

/* ── Section Shared ── */
section { padding: 6rem 2rem; }
.section-alt { background-color: var(--section-alt); }

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--bronze);
    margin-bottom: 0.6rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--brown);
    font-weight: 600;
}

.section-title em { font-style: italic; color: var(--mauve); }

.section-line {
    width: 56px;
    height: 2px;
    background: linear-gradient(to right, var(--bronze), var(--mauve));
    margin: 1.5rem auto 0;
}

.container { max-width: 1100px; margin: 0 auto; }

/* ── Music / Streaming ── */
.streaming-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.streaming-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.streaming-text p {
    opacity: 0.75;
    margin-bottom: 2rem;
    line-height: 1.85;
}

.platform-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    border: 1.5px solid var(--bronze);
    color: var(--brown);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s;
    border-radius: 2px;
}

.platform-btn:hover { background-color: var(--bronze); color: white; }

/* Spotify-style widget */
.spotify-widget {
    background: #121212;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(61, 43, 31, 0.2);
}

.spotify-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.spotify-album-art {
    width: 72px;
    height: 72px;
    border-radius: 4px;
    flex-shrink: 0;
    object-fit: cover;
}

.spotify-info h4 {
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.spotify-info p { color: #999; font-size: 0.78rem; }

.spotify-tracks { list-style: none; }

.spotify-track {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.spotify-track:hover { background: #1e1e1e; }

.track-num { color: #555; font-size: 0.78rem; width: 18px; text-align: center; }
.track-name { color: white; font-size: 0.85rem; flex: 1; }
.track-duration { color: #555; font-size: 0.78rem; }

.spotify-footer { margin-top: 1.2rem; text-align: center; }
.spotify-footer a {
    color: #1DB954;
    font-size: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.06em;
}

/* ── Discography ── */
.discography-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 2rem;
}

.album-card { cursor: pointer; transition: transform 0.3s; }
.album-card:hover { transform: translateY(-6px); }

.album-art {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 4px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(139, 79, 109, 0.22);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--mauve), var(--bronze));
}

.album-art img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.album-art::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 55%, rgba(255,255,255,0.08));
    pointer-events: none;
}

.album-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.album-label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bronze);
    margin-bottom: 0.3rem;
}

.album-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--brown);
    margin-bottom: 0.2rem;
}

.album-year { font-size: 0.8rem; color: var(--brown); opacity: 0.55; }

/* ── Shows Table ── */
.shows-table-wrapper { overflow-x: auto; }

.shows-table {
    width: 100%;
    border-collapse: collapse;
}

.shows-table thead { border-bottom: 2px solid var(--bronze); }

.shows-table th {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bronze);
    padding: 1rem 1.5rem;
    text-align: left;
}

.shows-table td {
    padding: 1.15rem 1.5rem;
    border-bottom: 1px solid var(--medium-rose);
    font-size: 0.94rem;
    vertical-align: middle;
}

.shows-table tbody tr { transition: background-color 0.2s; }
.shows-table tbody tr:hover { background-color: var(--light-rose); }

.show-date-day {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--mauve);
    display: block;
    line-height: 1;
}

.show-date-month {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bronze);
}

.show-venue { font-weight: 700; }
.show-city  { font-size: 0.82rem; opacity: 0.65; }

.ticket-btn {
    display: inline-block;
    padding: 0.48rem 1.15rem;
    border: 1.5px solid var(--mauve);
    color: var(--mauve);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s;
    border-radius: 2px;
    white-space: nowrap;
}

.ticket-btn:hover { background-color: var(--mauve); color: white; }

.ticket-btn.sold-out {
    border-color: #ccc;
    color: #bbb;
    cursor: not-allowed;
}

.ticket-btn.sold-out:hover { background-color: transparent; color: #bbb; }

/* ── Footer ── */
footer {
    background-color: var(--brown);
    color: var(--cream);
    padding: 4.5rem 2rem 2.5rem;
    text-align: center;
}

.footer-logo {
    height: 60px;
    width: auto;
    display: block;
    margin: 0 auto 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.social-btn {
    width: 42px;
    height: 42px;
    border: 1.5px solid rgba(245, 230, 232, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--medium-rose);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: all 0.3s;
}

.social-btn:hover {
    border-color: var(--medium-rose);
    color: white;
    background: rgba(245, 230, 232, 0.12);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin-bottom: 3rem;
}

.footer-links a {
    color: var(--medium-rose);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    transition: color 0.3s;
}

.footer-links a:hover { color: white; }

.footer-copy {
    font-size: 0.72rem;
    opacity: 0.35;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .streaming-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .shows-table th:nth-child(4),
    .shows-table td:nth-child(4) { display: none; }
}
