/*
Theme Name: Roscoe Ford
Theme URI: https://roscoeford.com
Author: The Velvet Farm
Author URI: https://velvetfarm.com
Description: Custom one-page theme for Roscoe Ford — Alt.Southern.Rock. Manages releases via a custom post type, supports Contact Form 7, Songkick widget, and a tabbed music player.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: Private
Text Domain: roscoeford
*/

/* =========================================
   RESET & BASE
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black:       #0D0D0D;
    --charcoal:    #1A1614;
    --dark-brown:  #2A1F1A;
    --tobacco:     #8B6F47;
    --burnt-sienna:#C4654F;
    --rust:        #A0522D;
    --cream:       #E8DED0;
    --off-white:   #F5F1E8;
    --warm-gray:   #6B5D52;
}

body {
    font-family: 'Barlow', sans-serif;
    background: var(--charcoal);
    color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

a {
    color: var(--tobacco);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--burnt-sienna);
}

/* =========================================
   WORDPRESS ADMIN BAR OFFSET
   ========================================= */
.admin-bar header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar header {
        top: 46px;
    }
}

/* =========================================
   GRAIN TEXTURE OVERLAY
   ========================================= */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(139, 111, 71, 0.02) 2px,
            rgba(139, 111, 71, 0.02) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(139, 111, 71, 0.02) 2px,
            rgba(139, 111, 71, 0.02) 4px
        );
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
}

/* =========================================
   HEADER & NAV
   ========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(139, 111, 71, 0.2);
}

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

.logo img {
    height: 50px;
    filter: brightness(1.2);
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
    display: block;
}

/* WP custom logo wrapper */
.custom-logo-link img {
    height: 50px;
    width: auto;
    filter: brightness(1.2);
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
    display: block;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--tobacco);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
}

.social-links a:nth-child(1) { animation-delay: 0.1s; }
.social-links a:nth-child(2) { animation-delay: 0.2s; }
.social-links a:nth-child(3) { animation-delay: 0.3s; }
.social-links a:nth-child(4) { animation-delay: 0.4s; }
.social-links a:nth-child(5) { animation-delay: 0.5s; }
.social-links a:nth-child(6) { animation-delay: 0.6s; }

.social-links a:hover {
    color: var(--burnt-sienna);
}

/* =========================================
   HERO
   ========================================= */
.hero {
    position: relative;
    height: 90vh;
    min-height: 700px;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(42, 31, 26, 0.9) 0%, rgba(13, 13, 13, 0.8) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="%231A1614" width="100" height="100"/><circle fill="%232A1F1A" cx="50" cy="50" r="1"/></svg>');
    background-size: cover, 50px 50px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 900px;
    height: 90%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.15;
    filter: grayscale(40%) contrast(1.2);
    animation: fadeIn 2s ease forwards;
    mix-blend-mode: luminosity;
}

.skull-motif {
    position: absolute;
    width: 200px;
    height: 200px;
    opacity: 0.08;
    color: var(--tobacco);
}

.skull-left {
    top: 10%;
    left: 5%;
    transform: rotate(-15deg);
    animation: floatLeft 20s ease-in-out infinite;
}

.skull-right {
    bottom: 10%;
    right: 5%;
    transform: rotate(15deg);
    animation: floatRight 25s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: clamp(3.5rem, 10vw, 8rem);
    margin-bottom: 1rem;
    color: var(--cream);
    opacity: 0;
    animation: fadeInUp 1.2s ease forwards 0.3s;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.08em;
}

.hero .tagline {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--tobacco);
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1.2s ease forwards 0.5s;
}

.hero-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 1.2s ease forwards 0.7s;
}

.ornament-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--tobacco), transparent);
}

.ornament-diamond {
    color: var(--burnt-sienna);
    font-size: 1.5rem;
}

/* =========================================
   SECTIONS
   ========================================= */
section {
    padding: 6rem 0;
    position: relative;
}

.dark-section {
    background:
        linear-gradient(180deg, rgba(13, 13, 13, 0.95) 0%, rgba(26, 22, 20, 0.95) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="%230D0D0D" width="100" height="100"/><path d="M0 0L50 50M50 50L100 0M50 50L100 100M50 50L0 100" stroke="%231A1614" stroke-width="0.5" opacity="0.3"/></svg>');
    background-size: cover, 100px 100px;
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
}

.light-section {
    background:
        linear-gradient(180deg, rgba(42, 31, 26, 0.3) 0%, rgba(26, 22, 20, 0.5) 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(139, 111, 71, 0.03) 10px,
            rgba(139, 111, 71, 0.03) 20px
        );
    border-bottom: 1px solid rgba(139, 111, 71, 0.15);
}

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

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--cream);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.skull-divider {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.skull-divider svg {
    width: 40px;
    height: 40px;
    color: var(--tobacco);
    opacity: 0.6;
}

/* =========================================
   RELEASE TYPE BADGES
   ========================================= */
.release-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    border-radius: 0;
}

.release-tag--single {
    background: var(--tobacco);
    color: var(--black);
}

.release-tag--ep {
    background: var(--burnt-sienna);
    color: var(--cream);
}

.release-tag--album {
    background: transparent;
    color: var(--tobacco);
    border: 1px solid var(--tobacco);
}

/* =========================================
   LATEST RELEASE
   ========================================= */
.latest-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.album-artwork {
    position: relative;
    max-width: 400px;
}

.album-artwork::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--tobacco);
    opacity: 0.3;
    z-index: -1;
}

.album-artwork img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

/* Video Toggle */
.release-video-toggle {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.55rem 1.2rem;
    background: transparent;
    border: 1px solid rgba(139, 111, 71, 0.5);
    color: var(--tobacco);
    font-family: 'Barlow', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.release-video-toggle:hover {
    background: rgba(139, 111, 71, 0.15);
    border-color: var(--tobacco);
}

.release-video-embed {
    display: none;
    margin-top: 1.5rem;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.release-video-embed.is-active {
    display: block;
}

.release-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.latest-info h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--cream);
}

.release-date {
    color: var(--tobacco);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.release-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--cream);
    opacity: 0.9;
}

.streaming-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.streaming-links a {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: transparent;
    border: 1px solid var(--tobacco);
    color: var(--tobacco);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.streaming-links a:hover {
    background: var(--tobacco);
    color: var(--black);
    transform: translateY(-2px);
}

/* =========================================
   MUSIC PLAYER
   ========================================= */
.streaming-player {
    max-width: 900px;
    margin: 0 auto;
}

.player-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.player-btn {
    background: transparent;
    border: 1px solid var(--tobacco);
    color: var(--tobacco);
    padding: 0.8rem 1.8rem;
    cursor: pointer;
    font-size: 0.85rem;
    font-family: 'Barlow', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.player-btn:hover {
    background: rgba(139, 111, 71, 0.1);
    transform: translateY(-2px);
}

.player-btn.active {
    background: var(--tobacco);
    color: var(--black);
    border-color: var(--tobacco);
}

.player-embed {
    min-height: 380px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(139, 111, 71, 0.2);
}

.player-embed iframe {
    width: 100%;
    border: none;
    display: block;
}

.player-fallback {
    text-align: center;
    padding: 4rem 2rem;
}

.player-fallback h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--cream);
}

.player-fallback a {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--tobacco);
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.player-fallback a:hover {
    background: var(--burnt-sienna);
    transform: translateY(-2px);
}

/* =========================================
   DISCOGRAPHY
   ========================================= */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.album-grid--single {
    max-width: 340px;
}

.album-card {
    background: rgba(42, 31, 26, 0.5);
    padding: 2rem;
    border: 1px solid rgba(139, 111, 71, 0.2);
    transition: all 0.3s ease;
}

.album-card:hover {
    transform: translateY(-5px);
    border-color: var(--tobacco);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.album-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.album-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(139, 111, 71, 0.2));
    pointer-events: none;
}

.album-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.album-card:hover .album-image img {
    transform: scale(1.05);
}

.album-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--cream);
}

.album-type {
    font-size: 0.85rem;
    color: var(--tobacco);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.album-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.album-links a {
    font-size: 0.8rem;
    color: var(--tobacco);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(139, 111, 71, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.album-links a:hover {
    background: rgba(139, 111, 71, 0.1);
    border-color: var(--tobacco);
}

.physical-btn {
    display: block;
    text-align: center;
    padding: 0.8rem;
    background: linear-gradient(135deg, var(--tobacco) 0%, var(--rust) 100%);
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.physical-btn:hover {
    background: linear-gradient(135deg, var(--burnt-sienna) 0%, var(--tobacco) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: var(--black);
}

/* =========================================
   BIO / ABOUT
   ========================================= */
.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.bio-image {
    position: relative;
}

.bio-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--tobacco);
    opacity: 0.3;
    z-index: -1;
}

.bio-image img {
    width: 100%;
    display: block;
    filter: grayscale(20%) contrast(1.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.bio-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--cream);
}

.bio-content p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.bio-content em {
    color: var(--tobacco);
    font-style: italic;
}

.bio-content a {
    color: var(--burnt-sienna);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.bio-content a:hover {
    border-bottom-color: var(--burnt-sienna);
}

.bio-badge {
    margin-top: 2rem;
}

.bio-badge img {
    height: 70px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: brightness(1.2);
}

.bio-badge img:hover {
    opacity: 1;
}

/* =========================================
   HOUSE SHOWS — 2-COLUMN WITH SONGKICK
   ========================================= */
.house-shows-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.house-shows-intro {
    text-align: left;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--cream);
    opacity: 0.9;
}

.upcoming-shows-col h3 {
    font-size: 1.8rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}

/* =========================================
   FORMS (native + CF7)
   ========================================= */
.booking-form,
.wpcf7-form {
    background: rgba(42, 31, 26, 0.4);
    padding: 2.5rem;
    border: 1px solid rgba(139, 111, 71, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label,
.wpcf7-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--tobacco);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(139, 111, 71, 0.3);
    background: rgba(13, 13, 13, 0.5);
    color: var(--cream);
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--tobacco);
    background: rgba(13, 13, 13, 0.7);
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: var(--warm-gray);
}

.form-group textarea,
.wpcf7-form textarea {
    min-height: 130px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.submit-btn,
.wpcf7-form input[type="submit"],
.wpcf7-submit {
    background: linear-gradient(135deg, var(--tobacco) 0%, var(--rust) 100%);
    color: var(--black) !important;
    border: none;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: block;
    text-align: center;
}

.submit-btn:hover,
.wpcf7-form input[type="submit"]:hover,
.wpcf7-submit:hover {
    background: linear-gradient(135deg, var(--burnt-sienna) 0%, var(--tobacco) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

/* Footer email signup — CF7 styled as horizontal row */
.email-signup .wpcf7 {
    width: 100%;
}

.email-signup .wpcf7-form {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    align-items: stretch;
    background: transparent;
    padding: 0;
    border: none;
}

.email-signup .wpcf7-form .wpcf7-turnstile {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.email-signup .wpcf7-form .wpcf7-form-control-wrap {
    display: contents;
}

.email-signup .wpcf7-form input[type="email"] {
    flex: 0 1 260px;
    width: auto;
    padding: 1rem;
    border: 1px solid rgba(139, 111, 71, 0.3);
    background: rgba(26, 22, 20, 0.5);
    color: var(--cream);
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
}

.email-signup .wpcf7-form input[type="email"]:focus {
    outline: none;
    border-color: var(--tobacco);
    background: rgba(26, 22, 20, 0.7);
}

.email-signup .wpcf7-form input[type="email"]::placeholder {
    color: var(--warm-gray);
}

.email-signup .wpcf7-form input[type="submit"] {
    flex-shrink: 0;
    padding: 1rem 2rem;
    width: auto;
    display: inline-block;
    background: linear-gradient(135deg, var(--tobacco) 0%, var(--rust) 100%);
    color: var(--black) !important;
    border: none;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.email-signup .wpcf7-form input[type="submit"]:hover {
    background: linear-gradient(135deg, var(--burnt-sienna) 0%, var(--tobacco) 100%);
    transform: none;
    box-shadow: none;
}

.email-signup .wpcf7-response-output {
    margin-top: 1rem !important;
    text-align: center;
    font-size: 0.85rem;
}

.email-signup .wpcf7-not-valid-tip {
    color: var(--burnt-sienna);
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .email-signup .wpcf7-form {
        flex-direction: column;
    }
}

/* CF7 validation */
.wpcf7-not-valid-tip {
    color: var(--burnt-sienna);
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: block;
}

.wpcf7-response-output {
    margin-top: 1.5rem !important;
    padding: 1rem !important;
    border: 1px solid var(--tobacco) !important;
    color: var(--cream) !important;
    font-size: 0.9rem;
    background: rgba(13, 13, 13, 0.3) !important;
}

/* CF7 form row helper */
.cf7-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 0;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background:
        linear-gradient(180deg, rgba(13, 13, 13, 0.98) 0%, rgba(13, 13, 13, 1) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect fill="%230D0D0D" width="60" height="60"/><circle fill="%231A1614" cx="30" cy="30" r="2"/></svg>');
    background-size: cover, 60px 60px;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(139, 111, 71, 0.2);
}

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

.email-signup {
    max-width: 500px;
    margin: 0 auto 3rem;
}

.email-signup h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--cream);
}

.email-signup p {
    margin-bottom: 2rem;
    color: var(--tobacco);
}

.email-form {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.email-form input {
    flex: 1;
    padding: 1rem;
    border: 1px solid rgba(139, 111, 71, 0.3);
    background: rgba(26, 22, 20, 0.5);
    color: var(--cream);
    font-family: 'Barlow', sans-serif;
}

.email-form input::placeholder {
    color: var(--warm-gray);
}

.email-form input:focus {
    outline: none;
    border-color: var(--tobacco);
    background: rgba(26, 22, 20, 0.7);
}

.email-form button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--tobacco) 0%, var(--rust) 100%);
    color: var(--black);
    border: none;
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.email-form button:hover {
    background: linear-gradient(135deg, var(--burnt-sienna) 0%, var(--tobacco) 100%);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.footer-social a {
    color: var(--tobacco);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--burnt-sienna);
}

.footer-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
}

.footer-ornament svg {
    width: 30px;
    height: 30px;
    color: var(--tobacco);
    opacity: 0.4;
}

.footer-ornament .ornament-line {
    width: 120px;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 111, 71, 0.2);
    font-size: 0.8rem;
    color: var(--warm-gray);
}

.footer-bottom a {
    color: var(--tobacco);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--burnt-sienna);
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 0.15; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes floatLeft {
    0%, 100% { transform: rotate(-15deg) translateY(0); }
    50%       { transform: rotate(-15deg) translateY(-20px); }
}

@keyframes floatRight {
    0%, 100% { transform: rotate(15deg) translateY(0); }
    50%       { transform: rotate(15deg) translateY(20px); }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 968px) {
    .latest-content,
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .album-artwork::before,
    .bio-image::before {
        display: none;
    }

    .form-row,
    .cf7-row {
        grid-template-columns: 1fr;
    }

    .house-shows-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .social-links {
        justify-content: center;
    }

    .hero {
        height: 75vh;
        margin-top: 100px;
    }

    .skull-motif {
        width: 120px;
        height: 120px;
    }

    section {
        padding: 4rem 0;
    }

    .booking-form,
    .wpcf7-form {
        padding: 1.5rem;
    }

    .email-form {
        flex-direction: column;
    }

    .player-controls {
        flex-direction: column;
        width: 100%;
    }

    .player-btn {
        width: 100%;
    }

    .album-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}