/* ============================================
   Terri Green Theme — Main Stylesheet
   ============================================ */

:root {
    --cream: #FAF8F5;
    --warm-white: #FFFFFF;
    --sand: #F0EBE3;
    --gold: #C9A96E;
    --gold-light: #E8D5B0;
    --gold-dark: #A8853F;
    --charcoal: #2C2C2C;
    --text: #3A3A3A;
    --text-light: #6B6B6B;
    --accent: #8B6F4E;
    --plum: #5C3D5E;
    --plum-light: #7A5A7C;
    --rose: #D4A0A0;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    font-weight: 300;
}

/* === NAVIGATION === */
.site-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    transition: all 0.3s ease;
}

.site-nav.scrolled {
    box-shadow: 0 2px 30px rgba(0,0,0,0.06);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 32px;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}

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

.nav-links .btn-book {
    background: var(--gold);
    color: white;
    padding: 0.55rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-links .btn-book:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

.lang-switch {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    border: 1px solid var(--gold-light);
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.lang-switch:hover {
    background: var(--gold);
    color: white;
}

.lang-item a {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold) !important;
    border: 1px solid var(--gold-light);
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.lang-item a:hover {
    background: var(--gold);
    color: white !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s;
}

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--cream) 0%, #F5F0E8 50%, var(--sand) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-tag {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: white;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--charcoal);
    padding: 1rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1.5px solid var(--gold-light);
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-newsletter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--gold);
    padding: 1rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background: var(--gold);
    color: #fff;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--sand);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 20px;
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 1.2rem 1.8rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    z-index: 3;
}

.floating-badge .badge-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
}

.floating-badge .badge-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--charcoal);
    font-weight: 700;
}

/* === PRESS QUOTES === */
.press-strip {
    padding: 3rem 2rem;
    background: var(--sand);
    overflow: hidden;
}

.press-quotes {
    display: flex;
    justify-content: center;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.press-quote {
    text-align: center;
    flex-shrink: 0;
}

.press-quote .quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.press-quote .quote-source {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
}

/* === SECTION COMMON === */
.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-tag {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* === UPCOMING DATES === */
.dates-section {
    padding: 6rem 2rem;
    background: var(--cream);
}

.dates-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(201, 169, 110, 0.15);
    border-radius: 16px;
    overflow: hidden;
}

.date-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--warm-white);
    gap: 2rem;
    transition: all 0.3s;
}

.date-item:hover {
    background: rgba(201, 169, 110, 0.04);
}

.date-item .date-day {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.date-item .date-month {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    font-weight: 600;
}

.date-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.date-details .venue {
    font-size: 0.9rem;
    color: var(--text-light);
}

.date-details .show-time {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.2rem;
}

.date-details .show-time svg {
    opacity: 0.6;
}

.date-details .diamond-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--plum);
    background: rgba(92, 61, 94, 0.08);
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    margin-top: 0.4rem;
}

.date-item .date-action {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.btn-tickets {
    background: var(--gold);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-tickets:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

.btn-info {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    white-space: nowrap;
}

.btn-info:hover { color: var(--gold); }

/* === MUSIC SECTION === */
.music-section {
    padding: 6rem 2rem;
    background: var(--warm-white);
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.album-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--cream);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
}

.album-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.album-cover {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--sand), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.album-cover .play-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.album-card:hover .play-icon { opacity: 1; }

.play-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--gold-dark);
    margin-left: 3px;
}

.album-info {
    padding: 1.3rem 1.5rem;
}

.album-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-bottom: 0.3rem;
}

.album-info p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.album-info .chart-badge {
    display: inline-block;
    margin-top: 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 169, 110, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

/* === DIAMOND NIGHTS === */
.diamond-section {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, #2A1F2D 0%, #1A1520 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.diamond-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L35 25 L55 30 L35 35 L30 55 L25 35 L5 30 L25 25 Z' fill='rgba(201,169,110,0.03)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.diamond-section .section-tag { color: var(--gold-light); }
.diamond-section .section-title { color: white; }
.diamond-section .section-subtitle { color: rgba(255,255,255,0.6); }

.diamond-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.diamond-info p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.diamond-info .diamond-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.diamond-info .diamond-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--gold-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.diamond-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.diamond-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.diamond-feature .icon {
    width: 36px;
    height: 36px;
    background: rgba(201, 169, 110, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.diamond-feature .icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold-light);
    fill: none;
    stroke-width: 1.5;
}

.diamond-visual {
    position: relative;
}

.diamond-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.diamond-card .next-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.diamond-card .next-date {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.diamond-card .next-venue {
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.3rem;
}

.diamond-card .next-time {
    color: var(--gold-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.diamond-card .btn-primary {
    width: 100%;
    justify-content: center;
}

/* === ABOUT === */
.about-section {
    padding: 7rem 2rem;
    background: var(--warm-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, var(--sand), var(--gold-light));
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text .section-tag { text-align: left; }
.about-text .section-title { text-align: left; font-size: 2.4rem; }

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.02rem;
}

.awards {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--sand);
}

.award {
    text-align: center;
}

.award .award-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 700;
}

.award .award-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    font-weight: 600;
}

/* === BOOKING === */
.booking-section {
    padding: 6rem 2rem;
    background: var(--cream);
}

.booking-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.booking-content .section-title { margin-bottom: 1rem; }

.booking-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.booking-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.booking-card {
    background: var(--warm-white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(201, 169, 110, 0.15);
    transition: all 0.3s;
}

.booking-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.1);
}

.booking-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.booking-card p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.booking-card .btn-primary,
.booking-card .btn-secondary {
    font-size: 0.75rem;
    padding: 0.7rem 1.5rem;
}

/* === FOOTER === */
.site-footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.5);
    padding: 4rem 2rem 2rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand .logo img {
    height: 40px;
    filter: invert(1);
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.site-footer h4 {
    color: white;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.site-footer ul {
    list-style: none;
}

.site-footer ul li { margin-bottom: 0.6rem; }

.site-footer ul a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.1);
}

.social-links svg {
    width: 16px;
    height: 16px;
    fill: rgba(255,255,255,0.5);
}

.social-links a:hover svg { fill: var(--gold); }

.footer-bottom {
    max-width: 1100px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

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

/* === PAGE TEMPLATE === */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.page-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.page-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.02rem;
}

/* === LIVE EVENT PAGE === */
.page-template-default.page .page-content.page-content--wide {
    max-width: 1100px;
}

.page-content--wide h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--charcoal);
    margin: 2.5rem 0 1rem;
}

.page-content--wide h3 {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.page-content--wide ul {
    list-style: none;
    padding: 0;
}

.page-content--wide ul li {
    padding: 0.25rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.page-content--wide ul li:last-child {
    border-bottom: none;
}

.page-content--wide div[style*="grid-template-columns"] {
    display: grid;
}

.page-content--wide .tgp-cta-box {
    background: rgba(184, 151, 76, 0.1);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    margin-top: 2rem;
}

.page-content--wide .tgp-cta-box h2 {
    margin-top: 0;
}

.page-content--wide .tgp-cta-box .btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.page-content--wide .tgp-cta-box .btn-primary:hover {
    background: #a07f3a;
}

.tgp-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tgp-video-grid iframe,
.tgp-video-grid .wp-block-embed,
.tgp-video-grid figure {
    margin: 0;
    width: 100%;
}

.tgp-video-grid iframe {
    border-radius: 8px;
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .page-content--wide div[style*="grid-template-columns: 1fr 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    .page-content--wide div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    .tgp-video-grid {
        grid-template-columns: 1fr;
    }
}

/* === 404 === */
.error-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

.error-404 h1 {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.error-404 p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* === ANIMATIONS === */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === MUSIC WAVE ANIMATION === */
.music-wave {
    display: flex;
    gap: 3px;
    align-items: flex-end;
    height: 30px;
}

.music-wave span {
    width: 3px;
    background: var(--gold);
    border-radius: 2px;
    animation: wave 1.2s ease-in-out infinite;
}

.music-wave span:nth-child(1) { animation-delay: 0s; height: 10px; }
.music-wave span:nth-child(2) { animation-delay: 0.15s; height: 20px; }
.music-wave span:nth-child(3) { animation-delay: 0.3s; height: 15px; }
.music-wave span:nth-child(4) { animation-delay: 0.45s; height: 25px; }
.music-wave span:nth-child(5) { animation-delay: 0.6s; height: 12px; }

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.4); }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .hero-content { gap: 2rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(250, 248, 245, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--sand);
    }

    .nav-links.open { display: flex; }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-title { font-size: 2.6rem; }
    .hero-actions { justify-content: center; }
    .hero-image { order: -1; }

    .hero-image-wrapper { aspect-ratio: 3/4; max-width: 350px; margin: 0 auto; }

    .albums-grid { grid-template-columns: 1fr; max-width: 350px; margin: 0 auto; }

    .date-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
        padding: 1.2rem 1.5rem;
    }

    .date-item .date-action {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .diamond-content { grid-template-columns: 1fr; }
    .about-content { grid-template-columns: 1fr; }
    .about-image { max-width: 350px; margin: 0 auto; }
    .about-text .section-tag, .about-text .section-title { text-align: center; }
    .booking-options { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .footer-legal { justify-content: center; }
    .press-quotes { flex-direction: column; gap: 2rem; }
    .section-title { font-size: 2rem; }
    .diamond-info .diamond-title { font-size: 2rem; }

    .album-hero-inner { flex-direction: column; text-align: center; padding: 3rem 1.5rem; }
    .album-cover-large { max-width: 280px; }
    .streaming-grid { grid-template-columns: 1fr; }
}

/* ── Album Detail Page ── */

.album-detail {
    padding-top: 80px;
}

.album-hero {
    position: relative;
    overflow: hidden;
}

.album-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.album-cover-large {
    flex-shrink: 0;
    max-width: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.album-cover-large img {
    display: block;
    width: 100%;
    height: auto;
}

.album-hero-info {
    color: white;
}

.album-type-badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255,255,255,0.15);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.album-hero-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    line-height: 1.1;
}

.album-artist {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    opacity: 0.8;
    margin: 0 0 0.5rem;
}

.album-release {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    opacity: 0.6;
    margin: 0 0 1rem;
}

.album-chart-badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(201,169,110,0.15);
    border: 1px solid rgba(201,169,110,0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.album-streaming {
    background: var(--cream);
    padding: 4rem 0;
}

.album-streaming h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    text-align: center;
    color: var(--dark);
    margin-bottom: 2rem;
}

.streaming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.streaming-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.2rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.streaming-btn:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(201,169,110,0.15);
    transform: translateY(-2px);
}

.streaming-btn svg {
    opacity: 0.4;
    transition: opacity 0.3s;
}

.streaming-btn:hover svg {
    opacity: 0.8;
}

.album-cd-order {
    text-align: center;
    margin-top: 2rem;
}

.btn-cd-order {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--gold);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-cd-order:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.album-content {
    background: white;
    padding: 4rem 0;
}

.album-content-body {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.8;
}

.album-content-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--dark);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold-light);
}

.album-content-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--dark);
    margin: 2rem 0 0.5rem;
}

.album-content-body p {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
}

.album-content-body strong {
    color: var(--dark);
}

.album-back {
    background: var(--cream);
    padding: 2rem 0;
    text-align: center;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.btn-back:hover {
    color: var(--gold);
}

/* ============================================
   Press Page
   ============================================ */

.press-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.press-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.15rem;
    color: #666;
}

.press-item {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.press-item:last-child {
    border-bottom: none;
}

.press-date {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.press-item h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    color: var(--dark);
}

.press-item h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.press-item p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #444;
}

.press-item ul {
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.8;
    color: #444;
}

.press-item ul li {
    margin-bottom: 0.3rem;
}

.press-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.press-img-wide {
    max-width: 100%;
}

.press-img-side {
    float: right;
    max-width: 280px;
    margin: 0 0 1.5rem 2rem;
}

.press-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1rem 0 1.5rem;
}

.press-img-grid .press-img {
    max-width: 100%;
    margin: 0;
}

.press-item blockquote {
    border-left: 3px solid var(--gold);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: rgba(0,0,0,0.02);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    line-height: 1.8;
    color: #555;
}

.press-item blockquote cite {
    display: block;
    margin-top: 0.75rem;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
}

.press-item-featured {
    background: linear-gradient(135deg, rgba(61,43,79,0.03), rgba(107,78,122,0.03));
    padding: 2rem;
    border-radius: 12px;
    border-bottom: none;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .press-img-side {
        float: none;
        max-width: 100%;
        margin: 1rem 0 1.5rem;
    }

    .press-img-grid {
        grid-template-columns: 1fr;
    }

    .press-item h2 {
        font-size: 1.4rem;
    }

    .press-item-featured {
        padding: 1.25rem;
    }
}
