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

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #1a1d1a;
    color: #d4d9d4;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 17px; /* Increased from default 16px */
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(26, 29, 26, 0.95);
    padding: 24px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(107, 142, 107, 0.2);
}

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

.logo {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #d4d9d4;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
}

.nav-menu a {
    color: #7a8f7a;
    text-decoration: none;
    font-size: 11px; /* Increased from 10px */
    letter-spacing: 1.5px;
    font-weight: 400;
    transition: color 0.2s;
    text-transform: uppercase;
}

.nav-menu a:hover {
    color: #9db89d;
}

/* Hero Section */
.hero {
    width: 100%;
    min-height: 100vh;
    background: #1a1d1a;
    display: flex;
    align-items: stretch;
    padding-top: 73px;
    position: relative;
}

.hero-image {
    flex: 0 0 33.333%;
    position: relative;
    overflow: hidden;
}

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

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, transparent 0%, rgba(26, 29, 26, 0.3) 100%);
}

.hero-content {
    flex: 0 0 66.666%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 80px 80px 60px;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(72, 61, 139, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(25, 25, 112, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #1a1d1a 0%, #1e2222 50%, #1a1d1a 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle stars in hero background */
.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Elegant scattered stars */
        radial-gradient(circle 2px at 15% 25%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(circle 1px at 35% 15%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(circle 2px at 75% 35%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(circle 1px at 85% 65%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(circle 1px at 25% 75%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(circle 2px at 65% 85%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(circle 1px at 45% 45%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(circle 1px at 90% 40%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(circle 1px at 10% 55%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(circle 1px at 55% 20%, rgba(255, 255, 255, 0.3), transparent);
    background-size: 100% 100%;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

/* Subtle nebula glow effect */
.hero-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 70% 50%, rgba(157, 184, 157, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(86, 108, 118, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #9db89d;
    margin-bottom: 24px;
    line-height: 1;
    position: relative;
    z-index: 1;
    text-shadow: 
        0 0 20px rgba(157, 184, 157, 0.3),
        0 0 40px rgba(157, 184, 157, 0.1);
}

.hero-subtitle {
    font-size: clamp(20px, 3vw, 36px); /* 50% of hero-title (40px*0.5=20px, 72px*0.5=36px) */
    letter-spacing: 0.25em;
    margin-bottom: 60px;
    color: #6b8e6b;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.hero-logo {
    font-size: clamp(100px, 15vw, 180px);
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 0.9;
    margin: 40px 0;
    color: #e8ebe8;
    position: relative;
    z-index: 1;
    text-shadow: 
        0 0 30px rgba(232, 235, 232, 0.2),
        0 0 60px rgba(232, 235, 232, 0.1);
}

.hero-welcome {
    font-size: clamp(16px, 2vw, 24px);
    letter-spacing: 0.3em;
    font-weight: 700;
    margin-top: 40px;
    color: #c4ccc4;
    position: relative;
    z-index: 1;
}

/* Bookings Section */
.bookings-section {
    width: 100%;
    background: linear-gradient(135deg, #4a3b52 0%, #5c4a63 50%, #4a3b52 100%);
    padding: 0;
    position: relative;
}

.bookings-container {
    width: 100%;
    display: flex;
    align-items: stretch;
    min-height: 60vh;
}

.bookings-left {
    flex: 0 0 50%;
    overflow: hidden;
}

.bookings-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bookings-container:hover .bookings-left img {
    transform: scale(1.05);
}

.bookings-logo {
    font-size: clamp(80px, 12vw, 160px);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(232, 235, 232, 0.15);
    line-height: 0.9;
}

.bookings-right {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 120px;
    background: linear-gradient(135deg, #4a3b52 0%, #5c4a63 50%, #4a3b52 100%);
}

.bookings-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.bookings-badge .arrow {
    font-size: 24px;
    color: #e8ebe8;
}

.bookings-badge h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #e8ebe8;
}

.bookings-text {
    font-size: clamp(17px, 1.5vw, 19px); /* Increased from 14-18px */
    line-height: 1.8;
    color: #c4ccc4;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
}

.bookings-link {
    display: inline-block;
    color: #e8ebe8;
    text-decoration: none;
    font-size: 12px; /* Increased from 11px */
    letter-spacing: 0.2em;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid #e8ebe8;
    padding-bottom: 8px;
    transition: color 0.2s, border-color 0.2s;
}

.bookings-link:hover {
    color: #9db89d;
    border-color: #9db89d;
}

/* Release Section (Out of Office) */
.release-section {
    background: #e8dcc8;
    padding: 0;
    position: relative;
}

.release-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.release-left {
    flex: 0 0 33.333%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background: #e8dcc8;
}

.release-number {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #1a1d1a;
}

.release-right {
    flex: 0 0 66.666%;
    background: #000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
}

.release-artwork {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.release-stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, #fff, transparent),
        radial-gradient(2px 2px at 60% 70%, #fff, transparent),
        radial-gradient(1px 1px at 50% 50%, #fff, transparent),
        radial-gradient(1px 1px at 80% 10%, #fff, transparent),
        radial-gradient(2px 2px at 90% 60%, #fff, transparent),
        radial-gradient(1px 1px at 33% 80%, #fff, transparent),
        radial-gradient(1px 1px at 15% 60%, #fff, transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    opacity: 0.6;
}

.release-icon {
    width: 150px;
    height: 150px;
    color: #e8dcc8;
    position: relative;
    z-index: 1;
}

.release-icon svg {
    width: 100%;
    height: 100%;
}

.release-badge {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #e8dcc8;
    position: relative;
    z-index: 1;
}

.release-button {
    display: inline-block;
    padding: 16px 48px;
    background: transparent;
    border: 2px solid #d4a574;
    color: #d4a574;
    text-decoration: none;
    font-size: 12px; /* Increased from 11px */
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: all 0.2s;
    position: relative;
    z-index: 1;
}

.release-button:hover {
    background: #d4a574;
    color: #000;
}

/* Out Now Section - SEPIA UNIVERSE ☄️✨ */
.out-now-section {
    width: 100%;
    background: 
        /* Warm sepia space gradient */
        radial-gradient(ellipse at 50% 50%, rgba(60, 40, 20, 0.4) 0%, transparent 70%),
        radial-gradient(ellipse at 20% 30%, rgba(70, 50, 30, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(50, 35, 20, 0.3) 0%, transparent 50%),
        #0a0806;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Starfield - Warm Sepia Stars + Planets */
.out-now-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        /* PLANETS - Large celestial bodies */
        radial-gradient(circle 12px at 8% 40%, rgba(232, 220, 200, 0.6), transparent),
        radial-gradient(circle 10px at 92% 65%, rgba(232, 220, 200, 0.5), transparent),
        radial-gradient(circle 8px at 50% 85%, rgba(232, 220, 200, 0.55), transparent),
        /* MASSIVE STARS - Super bright */
        radial-gradient(ellipse 8px 7px at 40% 12%, #e8dcc8, transparent),
        radial-gradient(circle 9px at 88% 15%, #e8dcc8, transparent),
        radial-gradient(ellipse 7px 8px at 15% 75%, #e8dcc8, transparent),
        /* Constellation 1 - Upper Left - Big organic stars */
        radial-gradient(ellipse 5px 4px at 15% 20%, #e8dcc8, transparent),
        radial-gradient(circle 4px at 20% 25%, #e8dcc8, transparent),
        radial-gradient(ellipse 3px 4px at 18% 30%, #e8dcc8, transparent),
        radial-gradient(ellipse 6px 5px at 22% 22%, #e8dcc8, transparent),
        radial-gradient(circle 3px at 17% 27%, #e8dcc8, transparent),
        /* Constellation 2 - Upper Right */
        radial-gradient(ellipse 5px 6px at 75% 30%, #e8dcc8, transparent),
        radial-gradient(circle 4px at 78% 35%, #e8dcc8, transparent),
        radial-gradient(ellipse 4px 3px at 72% 38%, #e8dcc8, transparent),
        radial-gradient(ellipse 6px 5px at 80% 27%, #e8dcc8, transparent),
        radial-gradient(circle 3px at 76% 33%, #e8dcc8, transparent),
        /* Constellation 3 - Lower Center */
        radial-gradient(circle 4px at 45% 65%, #e8dcc8, transparent),
        radial-gradient(ellipse 5px 4px at 50% 68%, #e8dcc8, transparent),
        radial-gradient(circle 3px at 48% 72%, #e8dcc8, transparent),
        radial-gradient(ellipse 4px 5px at 43% 70%, #e8dcc8, transparent),
        radial-gradient(circle 3px at 47% 67%, #e8dcc8, transparent),
        /* Medium scattered stars */
        radial-gradient(ellipse 3px 4px at 30% 15%, #e8dcc8, transparent),
        radial-gradient(circle 3px at 60% 50%, #e8dcc8, transparent),
        radial-gradient(ellipse 4px 3px at 85% 60%, #e8dcc8, transparent),
        radial-gradient(circle 3px at 10% 80%, #e8dcc8, transparent),
        radial-gradient(ellipse 3px 4px at 90% 85%, #e8dcc8, transparent),
        radial-gradient(circle 3px at 35% 45%, #e8dcc8, transparent),
        radial-gradient(ellipse 4px 3px at 65% 20%, #e8dcc8, transparent),
        radial-gradient(circle 3px at 25% 55%, #e8dcc8, transparent),
        /* Small twinkle stars */
        radial-gradient(circle 2px at 40% 18%, #e8dcc8, transparent),
        radial-gradient(circle 2px at 55% 40%, #e8dcc8, transparent),
        radial-gradient(circle 2px at 70% 75%, #e8dcc8, transparent),
        radial-gradient(circle 2px at 28% 62%, #e8dcc8, transparent),
        radial-gradient(circle 2px at 82% 48%, #e8dcc8, transparent),
        radial-gradient(circle 2px at 12% 35%, #e8dcc8, transparent),
        /* TINY STARS - Distant sparkles */
        radial-gradient(circle 1px at 33% 28%, rgba(232, 220, 200, 0.8), transparent),
        radial-gradient(circle 1px at 58% 32%, rgba(232, 220, 200, 0.7), transparent),
        radial-gradient(circle 1px at 68% 55%, rgba(232, 220, 200, 0.8), transparent),
        radial-gradient(circle 1px at 14% 48%, rgba(232, 220, 200, 0.7), transparent),
        radial-gradient(circle 1px at 45% 38%, rgba(232, 220, 200, 0.8), transparent),
        radial-gradient(circle 1px at 77% 68%, rgba(232, 220, 200, 0.7), transparent),
        radial-gradient(circle 1px at 22% 58%, rgba(232, 220, 200, 0.8), transparent),
        radial-gradient(circle 1px at 52% 78%, rgba(232, 220, 200, 0.7), transparent),
        radial-gradient(circle 1px at 38% 88%, rgba(232, 220, 200, 0.8), transparent),
        radial-gradient(circle 1px at 85% 25%, rgba(232, 220, 200, 0.7), transparent),
        radial-gradient(circle 1px at 95% 45%, rgba(232, 220, 200, 0.8), transparent),
        radial-gradient(circle 1px at 7% 15%, rgba(232, 220, 200, 0.7), transparent);
    background-size: 100% 100%;
    opacity: 0.9;
    z-index: 1;
}

/* NEBULA CLOUDS - Warm sepia cosmic dust */
.out-now-container::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: 
        /* Amber nebula (upper left) */
        radial-gradient(ellipse 600px 400px at 25% 30%, rgba(212, 165, 116, 0.12) 0%, transparent 60%),
        /* Golden nebula (right side) */
        radial-gradient(ellipse 500px 500px at 75% 50%, rgba(218, 165, 32, 0.10) 0%, transparent 55%),
        /* Copper nebula (bottom) */
        radial-gradient(ellipse 700px 300px at 50% 80%, rgba(184, 115, 51, 0.08) 0%, transparent 50%),
        /* Warm mist (top right) */
        radial-gradient(ellipse 400px 400px at 85% 20%, rgba(205, 133, 63, 0.06) 0%, transparent 50%);
    opacity: 0.7;
    animation: nebula-float 40s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes nebula-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -20px) rotate(2deg);
    }
    50% {
        transform: translate(-20px, 30px) rotate(-1deg);
    }
    75% {
        transform: translate(20px, 20px) rotate(1deg);
    }
}

/* Constellation Lines - Warm sepia */
.out-now-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        /* Diagonal lines connecting constellation 1 */
        linear-gradient(45deg, transparent 49.5%, rgba(232, 220, 200, 0.2) 49.5%, rgba(232, 220, 200, 0.2) 50.5%, transparent 50.5%),
        linear-gradient(-30deg, transparent 49.5%, rgba(232, 220, 200, 0.15) 49.5%, rgba(232, 220, 200, 0.15) 50.5%, transparent 50.5%);
    background-size: 40% 40%, 30% 30%;
    background-position: 15% 25%, 75% 32%;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 1;
}

.out-now-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.out-now-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.out-now-left img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 8px;
    mix-blend-mode: screen;
    filter: contrast(1.1) brightness(1.1);
}

.release-number {
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #e8dcc8;
    text-shadow: 
        0 0 20px rgba(232, 220, 200, 0.5),
        0 0 40px rgba(232, 220, 200, 0.2);
}

.out-now-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.out-now-badge {
    display: flex;
    align-items: center;
    gap: 20px;
}

.badge-circle {
    font-size: 20px;
    color: #e8dcc8;
    letter-spacing: 4px;
}

.out-now-badge h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #e8dcc8;
    text-shadow: 
        0 0 15px rgba(232, 220, 200, 0.4),
        0 0 25px rgba(232, 220, 200, 0.2);
}

.order-button {
    display: inline-block;
    padding: 16px 48px;
    background: transparent;
    border: 2px solid #d4a574;
    color: #d4a574;
    text-decoration: none;
    font-size: 12px; /* Increased from 11px */
    letter-spacing: 0.2em;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 
        0 0 15px rgba(212, 165, 116, 0.3),
        inset 0 0 15px rgba(212, 165, 116, 0.05);
}

.order-button:hover {
    background: #d4a574;
    border-color: #d4a574;
    color: #0a0806;
    box-shadow: 
        0 0 30px rgba(212, 165, 116, 0.8),
        0 0 60px rgba(212, 165, 116, 0.4);
}

/* Live Section */
.live-section {
    width: 100%;
    background: #d4a574;
    padding: 0;
}

.live-container {
    width: 100%;
    display: flex;
    align-items: stretch;
    min-height: 60vh;
}

.live-left {
    flex: 0 0 50%;
    overflow: hidden;
}

.live-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.live-container:hover .live-left img {
    transform: scale(1.05);
}

.live-right {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Centered */
    text-align: center; /* Centered text */
    padding: 80px 120px;
    background: #d4a574;
}

.live-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #2d2318;
    margin-bottom: 40px;
}

.live-text {
    font-size: clamp(17px, 1.8vw, 21px); /* Increased from 16-20px */
    line-height: 1.8;
    color: #3d3328;
    letter-spacing: 0.05em;
    margin-bottom: 48px;
}

.live-link {
    display: inline-block;
    color: #2d2318;
    text-decoration: none;
    font-size: 12px; /* Increased from 11px */
    letter-spacing: 0.2em;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid #2d2318;
    padding-bottom: 8px;
    transition: all 0.2s;
    width: fit-content;
}

.live-link:hover {
    color: #1a1612;
    border-color: #1a1612;
}

/* Studio Section */
.studio-section {
    width: 100%;
    background: #566c76;
    padding: 0;
}

.studio-container {
    width: 100%;
    display: flex;
    min-height: 60vh;
}

.studio-left {
    flex: 0 0 50%;
    overflow: hidden;
}

.studio-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.studio-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Centered */
    text-align: center; /* Centered text */
    padding: 80px 120px;
    background: #566c76;
}

.studio-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #e8ebe8;
    margin-bottom: 40px;
}

.studio-text {
    font-size: clamp(17px, 1.8vw, 21px); /* Increased from 16-20px */
    line-height: 1.8;
    color: #c4ccc4;
    letter-spacing: 0.05em;
    margin-bottom: 48px;
}

.studio-link {
    display: inline-block;
    color: #e8ebe8;
    text-decoration: none;
    font-size: 12px; /* Increased from 11px */
    letter-spacing: 0.2em;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid #e8ebe8;
    padding-bottom: 8px;
    transition: all 0.2s;
    width: fit-content;
}

.studio-link:hover {
    color: #9db89d;
    border-color: #9db89d;
}

/* Mixing Section */
.mixing-section {
    width: 100%;
    background: #2d2318;
    padding: 0;
}

.mixing-container {
    width: 100%;
    display: flex;
    min-height: 60vh;
}

.mixing-left {
    flex: 0 0 50%;
    overflow: hidden;
}

.mixing-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mixing-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Centered */
    text-align: center; /* Centered text */
    padding: 80px 120px;
    background: #2d2318;
}

.mixing-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #d4a574;
    margin-bottom: 40px;
}

.mixing-text {
    font-size: clamp(17px, 1.8vw, 21px); /* Increased from 16-20px */
    line-height: 1.8;
    color: #c9b896;
    letter-spacing: 0.05em;
    margin-bottom: 48px;
}

.mixing-link {
    display: inline-block;
    color: #d4a574;
    text-decoration: none;
    font-size: 12px; /* Increased from 11px */
    letter-spacing: 0.2em;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid #d4a574;
    padding-bottom: 8px;
    transition: all 0.2s;
    width: fit-content;
}

.mixing-link:hover {
    color: #c99464;
    border-color: #c99464;
}

/* Coming Soon Section */
.coming-soon-section {
    width: 100%;
    background: #0a0a0a;
    padding: 0;
}

.coming-soon-container {
    width: 100%;
    display: flex;
    min-height: 60vh;
}

.coming-soon-left {
    flex: 0 0 50%;
    overflow: hidden;
}

.coming-soon-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coming-soon-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 120px;
    background: #0a0a0a;
}

.coming-soon-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #e8ebe8;
    margin-bottom: 32px;
    line-height: 1.3;
}

.coming-soon-text {
    font-size: clamp(18px, 2vw, 24px);
    letter-spacing: 0.25em;
    color: #9db89d;
    font-weight: 700;
}

/* Newsletter Section */
.newsletter-section {
    width: 100%;
    background: linear-gradient(135deg, #4a3b52 0%, #5c4a63 50%, #4a3b52 100%);
    padding: 100px 0;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px;
}

.newsletter-content {
    text-align: center;
}

.newsletter-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #e8ebe8;
    margin-bottom: 16px;
}

.newsletter-subtitle {
    font-size: clamp(14px, 1.5vw, 16px);
    color: #c4ccc4;
    letter-spacing: 0.05em;
    margin-bottom: 48px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 18px 24px;
    background: rgba(232, 235, 232, 0.1);
    border: 2px solid rgba(232, 235, 232, 0.2);
    color: #e8ebe8;
    font-size: 14px;
    letter-spacing: 0.05em;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.2s;
}

.newsletter-input::placeholder {
    color: rgba(232, 235, 232, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: #9db89d;
    background: rgba(232, 235, 232, 0.15);
}

.newsletter-button {
    padding: 18px 40px;
    background: transparent;
    border: 2px solid #e8ebe8;
    color: #e8ebe8;
    font-size: 12px; /* Increased from 11px */
    letter-spacing: 0.2em;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.newsletter-button:hover {
    background: #9db89d;
    border-color: #9db89d;
    color: #4a3b52;
}

/* Footer */
.footer {
    width: 100%;
    background: #1a1d1a;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(107, 142, 107, 0.2);
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(107, 142, 107, 0.1);
}

.footer-brand {
    flex: 0 0 300px;
}

.footer-logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #e8ebe8;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 13px;
    color: #7a8f7a;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

.footer-links {
    flex: 1;
    display: flex;
    gap: 80px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 13px; /* Increased from 12px */
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #9db89d;
    margin-bottom: 24px;
    text-transform: uppercase;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #7a8f7a;
    text-decoration: none;
    font-size: 15px; /* Increased from 14px */
    letter-spacing: 0.03em;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #9db89d;
}

.social-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-block;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(157, 184, 157, 0.3);
    color: #7a8f7a;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.social-link i {
    font-size: 20px;
}

.social-link:hover {
    border-color: #9db89d;
    color: #9db89d;
    background: rgba(157, 184, 157, 0.05);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-bottom p {
    font-size: 13px; /* Increased from 12px */
    color: #6b8e6b;
    letter-spacing: 0.05em;
}

.footer-legal {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-legal a {
    font-size: 13px; /* Increased from 12px */
    color: #7a8f7a;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: #9db89d;
}

.footer-legal span {
    color: #6b8e6b;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 24px;
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        flex-direction: column;
        padding-top: 0;
    }

    .hero-image {
        flex: 0 0 40vh;
        min-height: 300px;
    }

    .hero-content {
        flex: 1;
        padding: 60px 24px;
        align-items: center;
        text-align: center;
    }

    .hero-title {
        letter-spacing: 0.1em;
    }

    .hero-subtitle {
        letter-spacing: 0.15em;
    }

    .hero-logo {
        letter-spacing: 0.05em;
    }

    .bookings-container {
        flex-direction: column;
    }

    .bookings-left {
        flex: 0 0 40vh;
        min-height: 300px;
    }

    .bookings-right {
        padding: 60px 24px;
        text-align: center;
    }

    .bookings-badge {
        justify-content: center;
    }

    .release-container {
        flex-direction: column;
    }

    .release-left {
        padding: 60px 24px;
    }

    .release-right {
        padding: 60px 24px;
    }

    .out-now-container {
        flex-direction: column;
        padding: 0 24px;
        text-align: center;
    }

    .live-container,
    .studio-container,
    .mixing-container,
    .coming-soon-container {
        flex-direction: column;
    }

    .live-left,
    .studio-left,
    .mixing-left,
    .coming-soon-left {
        flex: 0 0 40vh;
        min-height: 300px;
    }

    .live-right,
    .studio-right,
    .mixing-right,
    .coming-soon-right {
        padding: 60px 24px;
        text-align: center;
    }

    .newsletter-container {
        padding: 0 24px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-button {
        width: 100%;
    }

    .footer-container {
        padding: 0 24px;
    }

    .footer-top {
        flex-direction: column;
        gap: 48px;
    }

    .footer-brand {
        flex: 1;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}
