/* Custom Fonts */
        @font-face {
            font-family: 'La Roue';
            src: url('fonts/laroue-regular-webfont.woff2') format('woff2'),
                 url('fonts/laroue-regular-webfont.woff') format('woff');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Adventures Unlimited';
            src: local('Adventures Unlimited'), local('AdventuresUnlimited');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

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

        html {
            height: 100%;
            overflow-x: hidden;
            max-width: 100%;
            scroll-behavior: auto;
        }

        /* Mobile: handled at bottom of file */

        body {
            font-family: 'Garamond', 'Garamond', 'Garamond', serif;
            background: #1a1a1a;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
            max-width: 100vw;
            width: 100%;
        }

        * {
            max-width: 100%;
        }

        /* Background handled by #stage-bg with smooth color transitions */

        /* All sections float on the background */
        section {
            position: relative;
            z-index: 1;
        }

        /* Header Navigation */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

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

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: white;
            text-decoration: none;
            font-weight: 600;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: #e8d5b7;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s ease;
        }

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

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #e8d5b7;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: 0;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background: rgba(26, 26, 26, 0.98);
                backdrop-filter: blur(20px);
                display: flex !important;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 40px;
                transform: translateX(100%);
                transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 1000;
                margin: 0;
                padding: 0;
                box-shadow: -5px 0 15px rgba(0,0,0,0.5);
            }

            .nav-links.active {
                transform: translateX(0);
            }

            .nav-links li {
                list-style: none;
            }

            .nav-links a {
                font-size: 1.5rem;
            }

            .hamburger {
                display: flex;
                position: relative;
                z-index: 1001;
            }

            /* Add overlay when menu is open */
            .nav-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(0, 0, 0, 0.5);
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.4s ease, visibility 0.4s ease;
                z-index: 998;
            }

            .nav-overlay.active {
                opacity: 1;
                visibility: visible;
            }
        }

        /* Hero Section with 3-Layer Parallax */
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .hero-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            will-change: transform;
        }

        .hero-layer.background {
            background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/bg.png');
            background-size: cover;
            background-position: center;
            z-index: 1;
        }

        .hero-layer.couch {
            background-image: url('images/couch.png');
            background-size: cover;
            background-position: center;
            z-index: 2;
        }

        .hero-layer.subject {
            background-image: url('images/subject.png');
            background-size: cover;
            background-position: center;
            z-index: 3;
        }

        /* Mobile separator hero adjustments */
        @media (max-width: 768px) {
            .section-separator {
                height: 100vh !important;
            }

            .separator-layer {
                background-position: center center;
            }

            .separator-layer.separator-subject {
                background-size: auto 100%;
                background-position: center center;
            }

            .separator-layer.separator-bg {
                background-size: cover;
            }

            .separator-layer.separator-mug {
                background-size: auto 80%;
                background-position: 20% center;
            }

            .journey-content-area {
                flex-direction: column;
                gap: 30px;
            }

            .journey-image-wrapper {
                flex: 0 0 auto;
                width: 100%;
                max-width: 100%;
                height: 250px;
            }

            .journey-section {
                padding: 60px 20px;
            }

            .about-section {
                padding: 60px 20px;
            }

            .hero.home-hero {
                align-items: center;
                justify-content: center;
                padding: 0 20px 80px;
            }

            .hero.home-hero .hero-content {
                margin: 0;
                text-align: center;
            }

            .hero.home-hero h1,
            .hero.home-hero p {
                text-align: center;
            }

            .hero-actions {
                justify-content: center;
            }
        }

        .hero-content {
            position: relative;
            z-index: 4;
            text-align: center;
            transition: opacity 0.3s ease-out;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 8vw, 6rem);
            color: white;
            text-align: center;
            margin-bottom: 20px;
            text-shadow: 3px 6px 12px rgba(0,0,0,0.7);
            font-weight: 400;
            letter-spacing: 2px;
        }

        .hero p {
            font-family: 'Garamond', 'Garamond', 'Garamond', serif;
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            color: rgba(255, 255, 255, 0.95);
            text-align: center;
            max-width: 600px;
            text-shadow: 2px 4px 8px rgba(0,0,0,0.7);
            font-style: italic;
            line-height: 1.4;
        }

        /* Typography-Heavy Parallax Quote System */
        .quote-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            min-height: 100vh;
            pointer-events: none;
            z-index: 0;
        }

        .floating-quote {
            position: absolute;
            font-family: 'Playfair Display', serif;
            font-style: italic;
            white-space: nowrap;
            pointer-events: none;
            font-weight: 300;
            will-change: transform, opacity;
            transition: opacity 0.3s ease-out;
        }

        /* Quote sizes and styles based on z-depth */
        .floating-quote {
            /* Base styles - will be overridden by inline styles based on depth */
        }

        /* Books Section - Glass panels over persistent hero */
        .books-section {
            padding: clamp(80px, 12vh, 140px) 20px 40px;
            background: transparent;
            position: relative;
            overflow: visible;
        }

        .books-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .section-title {
            font-family: 'La Roue', 'Playfair Display', serif;
            font-size: clamp(2.4rem, 4.6vw, 4rem);
            font-weight: 300;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #e8d5b7;
            margin-bottom: clamp(60px, 10vh, 100px);
            text-align: center;
            transition: transform 0.8s ease-out, opacity 0.8s ease-out;
            opacity: 0;
            transform: translateY(30px);
        }

        .section-title.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .book-section-timeline {
            position: relative;
            margin-bottom: clamp(60px, 11vh, 140px);
            padding: clamp(28px, 4vw, 52px);
            border-radius: 32px;
            backdrop-filter: blur(18px);
            background: rgba(7, 7, 7, 0.7);
            border: 1px solid rgba(232, 213, 183, 0.12);
            box-shadow: 0 30px 80px rgba(0,0,0,0.55);
            will-change: transform;
        }

        .book-section-timeline::after {
            content: '';
            position: absolute;
            inset: 12px;
            border-radius: 24px;
            border: 1px solid rgba(74, 124, 89, 0.08);
            pointer-events: none;
        }

        .book-content-area {
            display: grid;
            grid-template-columns: minmax(240px, 32vw) minmax(0, 1fr);
            gap: clamp(24px, 4vw, 56px);
            align-items: stretch;
        }

        .book-section-timeline.right .book-content-area {
            grid-template-columns: minmax(0, 1fr) minmax(240px, 32vw);
        }

        .book-cover-wrapper {
            position: relative;
            border-radius: 28px;
            border: 1px solid rgba(232, 213, 183, 0.2);
            background: linear-gradient(135deg, rgba(232,213,183,0.08), rgba(0,0,0,0.5));
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.5);
            transition: transform 0.8s ease-out, opacity 0.8s ease-out;
            opacity: 0;
            transform: translateY(30px);
            aspect-ratio: 2 / 3;
            width: 100%;
            max-width: clamp(220px, 32vw, 360px);
            align-self: center;
            justify-self: center;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: clamp(12px, 2vw, 20px);
        }

        .book-cover-wrapper.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .book-cover-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .book-content {
            display: flex;
            flex-direction: column;
            gap: 18px;
            padding: clamp(20px, 3vw, 40px);
            border-radius: 24px;
            background: rgba(4, 4, 4, 0.7);
            border: 1px solid rgba(232, 213, 183, 0.1);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
        }

        .book-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            color: #e8d5b7;
            margin-bottom: 12px;
            font-weight: 300;
            font-style: italic;
            letter-spacing: 0.01em;
            transition: transform 0.8s ease-out 0.2s, opacity 0.8s ease-out 0.2s;
            opacity: 0;
            transform: translateY(20px);
        }

        .book-section-timeline.visible .book-title {
            opacity: 1;
            transform: translateY(0);
        }

        .book-subtitle {
            color: rgba(232, 213, 183, 0.65);
            font-size: 0.8rem;
            margin-bottom: 16px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            transition: transform 0.8s ease-out 0.3s, opacity 0.8s ease-out 0.3s;
            opacity: 0;
            transform: translateY(20px);
        }

        .book-section-timeline.visible .book-subtitle {
            opacity: 1;
            transform: translateY(0);
        }

        .book-synopsis {
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.78);
            font-size: 1rem;
            margin-bottom: 10px;
            transition: transform 0.8s ease-out 0.4s, opacity 0.8s ease-out 0.4s;
            opacity: 0;
            transform: translateY(20px);
        }

        .book-section-timeline.visible .book-synopsis {
            opacity: 1;
            transform: translateY(0);
        }

        .book-meta {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            transition: transform 0.8s ease-out 0.5s, opacity 0.8s ease-out 0.5s;
            opacity: 0;
            transform: translateY(20px);
        }

        .book-section-timeline.visible .book-meta {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 900px) {
            .book-content-area {
                grid-template-columns: 1fr;
            }

            .book-cover-wrapper {
                min-height: auto;
                aspect-ratio: 2 / 3;
            }

            .book-section-timeline.right .book-content-area {
                grid-template-columns: 1fr;
            }
        }

        .book-action {
            display: inline-block;
            padding: 12px 26px;
            background: #4a7c59;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            border-radius: 999px;
            font-family: 'Garamond', 'Garamond', serif;
        }

        .book-action:hover {
            background: #e8d5b7;
            color: #1a1a1a;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(74, 124, 89, 0.35);
        }

        .book-action.secondary {
            background: transparent;
            color: #4a7c59;
            border: 2px solid #4a7c59;
        }

        .book-action.secondary:hover {
            background: #4a7c59;
            color: white;
        }

        .book-action.tertiary {
            background: transparent;
            color: #e8d5b7;
            border: 2px solid #e8d5b7;
            font-size: 0.95rem;
        }

        .book-action.tertiary:hover {
            background: #e8d5b7;
            color: #1a1a1a;
        }

        @media (max-width: 600px) {
            .book-meta {
                flex-direction: column;
                width: 100%;
            }

            .book-action {
                width: 100%;
                text-align: center;
            }
        }

        /* Cassette Tape Audio Player */
        .cassette-container {
            position: relative;
            margin-top: 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
            opacity: 0;
            pointer-events: none;
        }

        .cassette-container.active {
            max-height: 520px;
            opacity: 1;
            pointer-events: auto;
        }

        .cassette-tape {
            background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
            border: 2px solid #4a7c59;
            border-radius: 8px;
            padding: 20px;
            position: relative;
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
            max-width: 500px;
            margin: 0 auto;
            aspect-ratio: 16 / 9;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .cassette-label {
            background: rgba(232, 213, 183, 0.1);
            border: 1px solid rgba(232, 213, 183, 0.3);
            border-radius: 4px;
            padding: 10px;
            margin-bottom: 15px;
            text-align: center;
        }

        .cassette-label h4 {
            color: #4a7c59;
            font-size: 0.9rem;
            margin-bottom: 5px;
            font-family: 'Playfair Display', serif;
        }

        .cassette-label p {
            color: rgba(232, 213, 183, 0.7);
            font-size: 0.75rem;
        }

        .cassette-reels {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 80px;
            margin-bottom: 15px;
            flex-shrink: 0;
        }

        .cassette-reel {
            width: 50px;
            height: 50px;
            border: 3px solid #4a7c59;
            border-radius: 50%;
            position: relative;
            background: radial-gradient(circle, #2a2a2a 30%, #1a1a1a 70%);
        }

        .cassette-reel::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            background: #4a7c59;
            border-radius: 50%;
        }

        /* Add visible spokes to the reel */
        .cassette-reel::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 2px;
            height: 80%;
            background: #e8d5b7;
            transform: translate(-50%, -50%);
            box-shadow:
                0 0 0 2px #e8d5b7,
                0 0 0 2px #e8d5b7;
            transform-origin: center;
        }

        .cassette-reel.spinning {
            animation: spinReel 3s linear infinite;
        }

        .cassette-reel.spinning::after {
            animation: spinReel 3s linear infinite;
        }

        @keyframes spinReel {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .cassette-controls {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .cassette-controls audio {
            flex: 1;
            height: 30px;
        }

        /* Mobile cassette controls - larger touch targets */
        @media (max-width: 768px) {
            .cassette-tape {
                padding: 15px;
                max-width: calc(100% - 40px);
                margin: 0 auto;
                aspect-ratio: 16 / 9;
            }

            .cassette-container {
                width: 100%;
                padding: 0 20px;
            }

            .cassette-label {
                padding: 8px;
                margin-bottom: 10px;
            }

            .cassette-controls {
                gap: 10px;
                justify-content: center;
            }

            .cassette-controls audio {
                height: 44px;
                max-width: 100%;
            }

            .cassette-reels {
                margin-bottom: 10px;
                justify-content: center;
                gap: 60px;
            }

            .cassette-reel {
                width: 55px;
                height: 55px;
            }
        }

        /* Soundtrack Section - Typography Heavy with Graphics */
        .soundtrack-section {
            min-height: 100vh;
            padding: 40px 20px 80px;
            background: transparent;
            position: relative;
            overflow: hidden;
        }

        .soundtrack-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(16, 21, 18, 0.88);
            z-index: 0;
            opacity: 0;
            transition: opacity 0.8s ease-out;
            pointer-events: none;
        }

        .soundtrack-section.stand-alone::after,
        .soundtrack-section:not(.stand-alone)::after {
            opacity: 1;
        }

        .soundtrack-section > * {
            position: relative;
            z-index: 2;
        }

        .soundtrack-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -20%;
            width: 140%;
            height: 100%;
            background: linear-gradient(45deg,
                rgba(74, 124, 89, 0.03) 0%,
                transparent 25%,
                rgba(232, 213, 183, 0.02) 50%,
                transparent 75%,
                rgba(74, 124, 89, 0.03) 100%
            );
            transform: skewY(-3deg);
            z-index: 1;
        }

        .soundtrack-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .soundtrack-hero {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

        .soundtrack-main-title {
            font-family: 'Garamond', 'Garamond', serif;
            font-size: clamp(1rem, 1.6vw, 1.25rem);
            color: rgba(232, 213, 183, 0.7);
            margin-bottom: 8px;
            font-weight: 300;
            letter-spacing: 0.4em;
            text-transform: uppercase;
        }

        .soundtrack-sub-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3.8rem, 7.5vw, 6.4rem);
            color: #9ddbb8;
            font-style: italic;
            font-weight: 600;
            margin-bottom: 32px;
            letter-spacing: -0.04em;
            line-height: 0.9;
            text-shadow: 0 6px 25px rgba(0,0,0,0.45);
        }

        .soundtrack-description {
            max-width: 860px;
            margin: 0 auto 70px;
            position: relative;
        }

        .soundtrack-columns {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: clamp(24px, 4vw, 50px);
        }

        .soundtrack-panel {
            background: rgba(8, 8, 8, 0.65);
            border-radius: 28px;
            border: 1px solid rgba(232, 213, 183, 0.12);
            padding: clamp(20px, 3vw, 36px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.5);
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }

        .soundtrack-panel > * {
            position: relative;
            z-index: 1;
        }

        .soundtrack-panel::after {
            content: '';
            position: absolute;
            inset: 12px;
            border-radius: 22px;
            border: 1px solid rgba(74, 124, 89, 0.12);
            pointer-events: none;
        }

        .soundtrack-intro {
            color: rgba(232, 213, 183, 0.75);
            font-size: clamp(1rem, 1.7vw, 1.15rem);
            line-height: 2;
            margin-bottom: 30px;
            font-family: 'Garamond', 'Garamond', serif;
            font-weight: 300;
            letter-spacing: 0.01em;
        }

        .soundtrack-intro.drop-cap {
            position: relative;
        }

        .drop-cap-letter {
            float: left;
            font-size: 4.5em;
            line-height: 0.85;
            margin-right: 0.08em;
            margin-top: 0.05em;
            font-family: 'Playfair Display', serif;
            color: #4a7c59;
            font-weight: 400;
        }

        .soundtrack-intro.body-text {
            text-indent: 2em;
        }

        .soundtrack-intro.confession {
            font-size: clamp(0.95rem, 1.6vw, 1.1rem);
            color: rgba(232, 213, 183, 0.6);
            font-style: italic;
            margin-top: 35px;
        }

        .soundtrack-intro.invitation {
            text-align: center;
            color: #e8d5b7;
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            margin-top: 45px;
            font-family: 'Playfair Display', serif;
            letter-spacing: 0.02em;
        }

        .em-dash {
            margin: 0 0.3em;
            color: rgba(74, 124, 89, 0.5);
        }

        .soundtrack-intro em {
            font-style: italic;
            color: rgba(232, 213, 183, 0.95);
        }

        /* Decorative elements removed for cleaner hero */

        /* Section Separators with Multi-Layer Parallax */
        .section-separator {
            position: relative;
            height: 100vh; /* Full viewport height to show complete image */
            width: 100%;
            max-width: 100vw;
            overflow: hidden;
            margin-top: 0;
            margin-bottom: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .separator-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            will-change: transform;
        }

        .separator-layer.separator-bg {
            background-image: url('images/separator-bg.png');
            z-index: 1;
        }

        .separator-layer.separator-mug {
            background-image: url('images/separator-mug.png');
            z-index: 10;
        }

        .separator-layer.separator-subject {
            background-image: url('images/separator-subject.png');
            z-index: 3;
        }

        @media (max-width: 768px) {
            .section-separator {
                height: 250px;
                width: 100%;
                overflow: hidden;
            }
            .separator-image {
                object-position: center 48%;
            }
            .separator-layer {
                /* Prevent horizontal scroll from parallax transforms on mobile */
                max-width: 100%;
                overflow: hidden;
            }
        }

        /* Floating vinyl graphics */
        .vinyl-decoration {
            position: absolute;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: radial-gradient(circle at center,
                rgba(74, 124, 89, 0.1) 0%,
                rgba(74, 124, 89, 0.05) 30%,
                transparent 70%
            );
            border: 2px solid rgba(74, 124, 89, 0.1);
        }

        .vinyl-decoration::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 20px;
            background: rgba(232, 213, 183, 0.1);
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }

        .vinyl-decoration.vinyl-1 {
            top: 10%;
            left: 5%;
            animation: slowSpin 15s linear infinite;
        }

        .vinyl-decoration.vinyl-2 {
            top: 20%;
            right: 8%;
            animation: slowSpin 20s linear infinite reverse;
        }

        .vinyl-decoration.vinyl-3 {
            bottom: 15%;
            left: 10%;
            animation: slowSpin 18s linear infinite;
        }

        @keyframes slowSpin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }


        .track-collection {
            display: flex;
            flex-direction: column;
            gap: 40px;
            margin-top: 60px;
        }

        .track-card {
            display: flex;
            align-items: center;
            gap: 40px;
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 0;
            transition: all 0.3s ease;
            border: 1px solid rgba(74, 124, 89, 0.2);
        }

        .track-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(10px);
            border-color: #e8d5b7;
        }

        .track-visual {
            position: relative;
            width: 250px;
            height: 250px;
            flex-shrink: 0;
        }

        .album-cover {
            position: absolute;
            width: 250px;
            height: 250px;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.4);
            z-index: 2;
            transition: transform 0.6s ease;
        }

        .track-card:hover .album-cover {
            transform: translateX(-50px) rotateY(-10deg);
        }

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

        .vinyl-record {
            position: absolute;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle at center, #1a1a1a 0%, #2a2a2a 30%, #1a1a1a 31%, #0a0a0a 100%);
            border-radius: 50%;
            box-shadow: 0 0 15px rgba(0,0,0,0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
            transition: transform 0.6s ease;
        }

        .track-card:hover .vinyl-record {
            transform: translateX(120px) rotateZ(15deg);
        }

        .vinyl-record.spinning {
            animation: spin 3s linear infinite;
        }

        @keyframes spin {
            from { transform: translateX(120px) rotateZ(0deg); }
            to { transform: translateX(120px) rotateZ(360deg); }
        }

        .vinyl-label {
            width: 60px;
            height: 60px;
            background: radial-gradient(circle at center, #4a7c59 0%, #3a6249 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            font-size: 1rem;
            font-weight: bold;
            z-index: 3;
            position: relative;
        }

        .vinyl-grooves {
            position: absolute;
            width: 230px;
            height: 230px;
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 50%;
            pointer-events: none;
        }

        .vinyl-grooves::before,
        .vinyl-grooves::after {
            content: '';
            position: absolute;
            border: 1px solid rgba(255,255,255,0.03);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .vinyl-grooves::before {
            width: 190px;
            height: 190px;
        }

        .vinyl-grooves::after {
            width: 150px;
            height: 150px;
        }

        .track-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 15px;
            padding-left: 40px;
            z-index: 10;
            position: relative;
        }

        .track-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: white;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .track-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .play-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #4a7c59;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 10px;
        }

        .play-btn:hover {
            background: #e8d5b7;
            color: #1a1a1a;
            transform: scale(1.1);
        }

        .play-btn.playing {
            background: #8b4513;
        }

        /* Streaming platform player */
        .streaming-player {
            margin-top: clamp(60px, 8vw, 100px);
            text-align: center;
        }

        .streaming-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            color: #e8d5b7;
            margin-bottom: 8px;
            font-weight: 400;
        }

        .streaming-subtitle {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.95rem;
            margin-bottom: 24px;
        }

        .platform-tabs {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }

        .platform-tab {
            padding: 10px 20px;
            border-radius: 999px;
            border: 1px solid rgba(232, 213, 183, 0.2);
            background: rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            font-family: 'Garamond', serif;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .platform-tab:hover {
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.9);
        }

        .platform-tab.active {
            background: rgba(74, 124, 89, 0.3);
            border-color: rgba(74, 124, 89, 0.6);
            color: #e8d5b7;
        }

        .platform-icon {
            font-size: 0.85rem;
        }

        .player-embed {
            max-width: 660px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
        }

        .player-embed iframe {
            display: block;
        }

        /* Mobile soundtrack controls - larger touch targets */
        @media (max-width: 768px) {
            .play-btn {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }

            .track-info {
                padding-left: 20px;
            }

            .track-title {
                font-size: 1.4rem;
            }

            .track-description {
                font-size: 0.95rem;
            }

            .track-card {
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 30px 20px;
            }

            .track-info {
                padding-left: 0;
                padding-top: 20px;
                align-items: center;
            }

            .vinyl-graphic {
                width: 120px;
                height: 120px;
            }
        }

        /* About Section - Exact Copy from Backup */
        .about-section {
            padding: 120px 20px;
            background: transparent;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
        }

        .about-section#about-content::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(15, 15, 15, 0.88);
            z-index: 0;
            opacity: 0;
            transition: opacity 0.8s ease-out;
            pointer-events: none;
        }

        .about-section#about-content.stand-alone::before,
        .about-section#about-content:not(.stand-alone)::before {
            opacity: 1;
        }

        .about-section#about-content > * {
            position: relative;
            z-index: 1;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .about-hero-content {
            position: absolute;
            left: clamp(20px, 5vw, 90px);
            bottom: clamp(30px, 8vh, 120px);
            text-align: left;
            margin: 0;
            max-width: min(520px, 45vw);
            padding: clamp(20px, 3vw, 38px);
            border-radius: 18px;
            border: 1px solid rgba(232, 213, 183, 0.18);
            background: rgba(3, 3, 3, 0.68);
            box-shadow: 0 25px 60px rgba(0,0,0,0.55);
        }

        .about-hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 300;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 18px;
            text-align: left;
            transition: transform 0.8s ease-out, opacity 0.8s ease-out;
            opacity: 0;
            transform: translateY(30px);
        }

        .about-hero-title.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .about-statement {
            font-size: clamp(1.1rem, 1.8vw, 1.35rem);
            line-height: 1.8;
            color: rgba(232, 213, 183, 0.8);
            margin: 0;
            padding: 0;
            font-weight: 300;
            letter-spacing: 0.02em;
            font-family: 'Garamond', 'Garamond', serif;
            text-align: left;
            position: relative;
        }

        .highlight {
            position: relative;
            color: #e8d5b7;
            font-weight: 400;
            font-style: italic;
            display: inline-block;
            border-bottom: 2px solid #4a7c59;
            padding-bottom: 2px;
        }

        .highlight.visible::after {
            width: 100%;
        }

        /* Biography Narrative - Flowing Editorial Style */
        .bio-narrative {
            max-width: 900px;
            margin: 0 auto;
            padding: 60px 40px;
        }

        .bio-paragraph {
            font-family: 'Garamond', 'Georgia', serif;
            font-size: clamp(1.15rem, 2vw, 1.4rem);
            line-height: 2;
            color: rgba(232, 213, 183, 0.9);
            margin-bottom: 0;
            text-align: justify;
            font-weight: 300;
            letter-spacing: 0.01em;
        }

        .bio-divider {
            width: 60px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #4a7c59, transparent);
            margin: 50px auto;
            position: relative;
        }

        .bio-divider::before {
            content: '✦';
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            color: #4a7c59;
            font-size: 0.8rem;
            background: #0f0f0f;
            padding: 0 10px;
        }

        .book-mention {
            font-family: 'Adventures Unlimited', cursive;
            font-style: normal;
            color: #e8d5b7;
            font-size: 1.15em;
            letter-spacing: 0.02em;
        }

        .journey-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Central Timeline Vertical Line */
        .journey-container::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(
                to bottom,
                transparent,
                rgba(74, 124, 89, 0.3) 10%,
                rgba(74, 124, 89, 0.3) 90%,
                transparent
            );
            transform: translateX(-50%);
        }

        .journey-section-timeline {
            position: relative;
            margin-bottom: 120px;
            display: flex;
            align-items: center;
            min-height: 300px;
        }

        /* Timeline Node at Center - About section only */
        .about-section .journey-section-timeline::after {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            width: 16px;
            height: 16px;
            background: #4a7c59;
            border: 3px solid #0f0f0f;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            box-shadow: 0 0 0 4px rgba(74, 124, 89, 0.2);
        }

        /* Horizontal connector from node to content - About section only */
        .about-section .journey-section-timeline.left::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            width: calc(50% - 60px);
            height: 1px;
            background: linear-gradient(to left, rgba(74, 124, 89, 0.3), transparent);
            transform: translateY(-50%);
        }

        .about-section .journey-section-timeline.right::before {
            content: '';
            position: absolute;
            right: 50%;
            top: 50%;
            width: calc(50% - 60px);
            height: 1px;
            background: linear-gradient(to right, rgba(74, 124, 89, 0.3), transparent);
            transform: translateY(-50%);
        }

        .journey-section-timeline.left {
            justify-content: flex-start;
        }

        .journey-section-timeline.left .section-content {
            text-align: left;
            max-width: 45%;
        }

        .journey-section-timeline.right {
            justify-content: flex-end;
        }

        .journey-section-timeline.right .section-content {
            text-align: right;
            max-width: 45%;
        }

        .section-number {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            font-size: 2.5rem;
            font-weight: 300;
            color: #4a7c59;
            font-family: 'La Roue', 'Playfair Display', serif;
            z-index: 11;
            background: #0f0f0f;
            padding: 8px 16px;
            border-radius: 4px;
            min-width: 70px;
            text-align: center;
            transition: transform 0.8s ease-out, opacity 0.8s ease-out;
            opacity: 0;
        }

        .section-number.visible {
            opacity: 1;
        }

        .section-content {
            flex: 1;
        }

        .journey-section-timeline .section-title {
            font-size: 1.5rem;
            color: white;
            margin-bottom: 8px;
            transition: transform 0.8s ease-out 0.3s, opacity 0.8s ease-out 0.3s;
            opacity: 0;
            transform: translateX(-30px);
        }

        .journey-section-timeline.visible .section-title {
            opacity: 1;
            transform: translateX(0);
        }

        .section-location {
            font-size: 0.9rem;
            color: #e8d5b7;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            transition: transform 0.8s ease-out 0.4s, opacity 0.8s ease-out 0.4s;
            opacity: 0;
            transform: translateY(20px);
        }

        .journey-section-timeline.visible .section-location {
            opacity: 1;
            transform: translateY(0);
        }

        .section-description {
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.05rem;
            transition: transform 0.8s ease-out 0.5s, opacity 0.8s ease-out 0.5s;
            opacity: 0;
            transform: translateY(20px);
        }

        .journey-section-timeline.visible .section-description {
            opacity: 1;
            transform: translateY(0);
        }

        /* Journey Section */
        .journey-section {
            padding: 120px 20px;
            background: transparent;
            position: relative;
        }

        .journey-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(16, 21, 18, 0.88);
            border-radius: 0;
            z-index: 0;
            opacity: 0;
            transition: opacity 0.8s ease-out;
            pointer-events: none;
        }

        .journey-section.stand-alone::before,
        .journey-section:not(.stand-alone)::before {
            opacity: 1;
        }

        .journey-section > * {
            position: relative;
            z-index: 1;
        }

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

        /* Visual Journey - Left side vertical timeline */
        .journey-section .journey-container::before {
            content: '';
            position: absolute;
            left: 80px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(
                to bottom,
                transparent,
                rgba(232, 213, 183, 0.3) 10%,
                rgba(232, 213, 183, 0.3) 90%,
                transparent
            );
        }

        .journey-number {
            position: absolute;
            left: 80px;
            top: 50%;
            transform: translate(-50%, -50%);
            font-size: 2.5rem;
            font-weight: 300;
            color: #e8d5b7;
            font-family: 'La Roue', 'Playfair Display', serif;
            background: rgba(16, 21, 18, 0.95);
            padding: 0;
            border-radius: 50%;
            width: 75px;
            height: 75px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(232, 213, 183, 0.4);
            z-index: 10;
            transition: transform 0.8s ease-out, opacity 0.8s ease-out;
            opacity: 0;
        }

        .journey-section-timeline.visible .journey-number {
            opacity: 1;
        }

        /* Horizontal connector from timeline to content - Visual Journey only */
        .journey-section .journey-section-timeline::before {
            content: '';
            position: absolute;
            left: 80px;
            top: 50%;
            width: 70px;
            height: 2px;
            background: linear-gradient(to right, rgba(232, 213, 183, 0.3), transparent);
            transform: translateY(-50%);
        }

        .journey-content-area {
            display: flex;
            align-items: center;
            gap: 60px;
            margin-left: 150px;
            position: relative;
        }

        .journey-image-wrapper {
            flex: 0 0 350px;
            position: relative;
            overflow: hidden;
            background: #f8f8f8;
            border-radius: 8px;
            border: 2px solid rgba(232, 213, 183, 0.3);
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
            transition: transform 0.8s ease-out, opacity 0.8s ease-out;
            opacity: 0;
            transform: translateX(-30px);
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .journey-section-timeline.visible .journey-image-wrapper {
            opacity: 1;
            transform: translateX(0);
        }

        .journey-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            opacity: 1;
        }

        .journey-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .journey-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            color: #e8d5b7;
            margin-bottom: 20px;
            transition: transform 0.8s ease-out 0.2s, opacity 0.8s ease-out 0.2s;
            opacity: 0;
            transform: translateX(-20px);
        }

        .journey-section-timeline.visible .journey-title {
            opacity: 1;
            transform: translateX(0);
        }

        /* Contact Section */
        .contact-section {
            min-height: 100vh;
            padding: 100px 20px;
            background: transparent;
            position: relative;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(11, 11, 11, 0.9);
            z-index: 0;
            opacity: 0;
            transition: opacity 0.8s ease-out;
            pointer-events: none;
        }

        .contact-section.stand-alone::before,
        .contact-section:not(.stand-alone)::before {
            opacity: 1;
        }

        .contact-section > * {
            position: relative;
            z-index: 1;
        }

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

        .contact-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 60px;
            line-height: 1.6;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.05);
            padding: 60px;
            border-radius: 8px;
            text-align: left;
            border: 1px solid rgba(74, 124, 89, 0.2);
        }

        .form-group {
            margin-bottom: 30px;
        }

        .form-group label {
            display: block;
            color: #e8d5b7;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            color: white;
            font-size: 1rem;
            font-family: 'Garamond', 'Garamond', serif;
        }

        /* Mobile form inputs - larger touch targets */
        @media (max-width: 768px) {
            .form-group input,
            .form-group textarea {
                padding: 18px;
                font-size: 16px; /* Prevents zoom on iOS */
            }

            .contact-form {
                padding: 30px 20px;
            }

            .form-submit {
                padding: 18px 40px;
                font-size: 1.1rem;
            }

            /* About section timeline - move to right on mobile */
            .about-section .journey-container::before {
                left: auto;
                right: 80px;
                transform: none;
            }

            .about-section .journey-section-timeline::after {
                left: auto;
                right: 80px;
                transform: translate(50%, -50%);
            }

            .about-section .journey-section-timeline.left::before {
                left: auto;
                right: 80px;
                width: 70px;
                background: linear-gradient(to right, rgba(74, 124, 89, 0.3), transparent);
            }

            .about-section .journey-section-timeline.right::before {
                right: 80px;
                width: 70px;
            }

            .about-section .section-number {
                left: auto;
                right: 80px;
                transform: translate(50%, -50%);
            }

            .about-section .journey-section-timeline.left .section-content,
            .about-section .journey-section-timeline.right .section-content {
                max-width: calc(100% - 180px);
                margin-right: 180px;
                text-align: left;
            }
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #4a7c59;
            background: rgba(255, 255, 255, 0.15);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .form-submit {
            background: #4a7c59;
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 4px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .form-submit:hover {
            background: #e8d5b7;
            color: #1a1a1a;
            transform: translateY(-2px);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            padding-top: 100px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.9);
        }

        /* Flipbook Styles */
        #flipbook-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 30px;
            padding: 20px;
            width: 100%;
            height: 100vh;
            box-sizing: border-box;
        }

        #book {
            box-shadow: 0 0 40px rgba(0,0,0,0.5);
            max-width: 90vw;
            max-height: 80vh;
        }

        .page {
            background: #f4f0e6;
            color: #1a1a1a;
            padding: 30px;
            font-family: 'Garamond', 'Garamond', serif;
            font-size: 0.95rem;
            line-height: 1.6;
            overflow: hidden;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .page p {
            margin-bottom: 1em;
        }

        .page h2 {
            color: #4a7c59;
            font-family: 'Playfair Display', serif;
            margin-bottom: 30px;
            text-align: center;
        }

        .flipbook-controls {
            display: flex;
            gap: 20px;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center;
        }

        .flipbook-btn {
            padding: 12px 24px;
            background: #4a7c59;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .flipbook-btn:hover:not(:disabled) {
            background: #5a8c69;
            transform: translateY(-2px);
        }

        .flipbook-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .page-counter {
            color: #e8d5b7;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            #flipbook-container {
                padding: 20px 15px;
                height: auto;
                min-height: 85vh;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                gap: 20px;
                position: relative;
                z-index: 1000;
            }

            .page {
                padding: 15px;
                font-size: 0.85rem;
                line-height: 1.5;
            }

            #book {
                max-width: 95vw;
                max-height: 65vh;
                margin-bottom: 10px;
                position: relative;
                z-index: 1001;
            }

            .flipbook-btn {
                padding: 12px 24px;
                font-size: 1rem;
                min-height: 44px;
            }

            #bookTitle {
                font-size: 1.3rem !important;
                margin-bottom: 15px;
                color: #e8d5b7 !important;
                position: relative;
                z-index: 1001;
            }

            .modal-content {
                width: 95%;
                padding: 20px;
                margin: 20px auto;
                max-height: 95vh;
                overflow-y: auto;
            }

            .close-modal {
                z-index: 1002 !important;
            }
        }

        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            overflow-y: auto;
        }

        .modal-content {
            margin: auto;
            display: block;
            width: 80%;
            max-width: 700px;
            background: rgba(26, 26, 26, 0.98);
            border-radius: 12px;
            padding: 40px;
            position: relative;
            border: 1px solid rgba(74, 124, 89, 0.3);
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: #fff;
            font-size: 30px;
            cursor: pointer;
            padding: 5px;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
            cursor: pointer;
        }

        .close-modal:hover,
        .close-modal:focus {
            color: #bbb;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .book-section-timeline {
                flex-direction: column;
                text-align: center;
                margin-bottom: 80px;
            }

            .book-section-timeline.left,
            .book-section-timeline.right {
                justify-content: center;
            }

            .book-section-timeline.left .book-number,
            .book-section-timeline.right .book-number {
                order: 0;
                margin: 0 0 30px 0;
            }

            .book-section-timeline.left .book-content-area,
            .book-section-timeline.right .book-content-area {
                order: 1;
                text-align: center;
                flex-direction: column;
            }

            .book-cover-wrapper {
                flex: none;
                width: 85%;
                max-width: 400px;
                height: 400px;
                margin: 0 auto 30px;
                overflow: hidden;
                order: 1;
            }

            .book-content {
                order: 2;
            }

            .book-cover-wrapper img {
                object-fit: cover;
                height: 120%;
                transform: translateY(0);
            }

            .track-card {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .track-info {
                padding-left: 0;
                padding-top: 20px;
            }

            .journey-section-timeline {
                flex-direction: column;
                text-align: center;
                margin-bottom: 80px;
            }

            .journey-section-timeline.left,
            .journey-section-timeline.right {
                justify-content: center;
            }

            .journey-section-timeline.left .section-number,
            .journey-section-timeline.right .section-number {
                order: 0;
                margin: 0 0 30px 0;
            }

            .journey-section-timeline.left .section-content,
            .journey-section-timeline.right .section-content {
                order: 2;
                text-align: center;
            }

            .journey-section-timeline.left .journey-content-area,
            .journey-section-timeline.right .journey-content-area {
                flex-direction: column;
            }

            .journey-section-timeline.left .journey-image-wrapper,
            .journey-section-timeline.right .journey-image-wrapper {
                order: 1;
            }

            .journey-section-timeline.left .journey-content,
            .journey-section-timeline.right .journey-content {
                order: 2;
            }

            .contact-form {
                padding: 40px 20px;
            }

            .soundtrack-description div[style*="grid-template-columns"] {
                grid-template-columns: 1fr !important;
                gap: 40px !important;
            }

            .soundtrack-description div[style*="border-left"] {
                border-left: none !important;
                border-top: 2px solid rgba(74, 124, 89, 0.3) !important;
                padding-left: 0 !important;
                padding-top: 40px !important;
            }
        }
        /* ========== SMOOTH SECTION TRANSITIONS ========== */
        /* Z-Index Stack:
           -1: #stage-bg (background color)
            1: .section-separator (hero image)
            5: #hero-overlay (darkening layer)
           10: section[id] (content sections)
        */

        #stage-bg {
            position: fixed;
            inset: 0;
            z-index: -1;
            background: #0b0b0b;
            transition: background-color .8s ease-out;
        }

        /* Hero section stays fixed while content scrolls over it */
        .section-separator {
            position: fixed !important;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: 1;
        }

        /* Darkening overlay sits between hero and content */
        #hero-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0);
            z-index: 5;
            pointer-events: none;
        }

        /* Add spacing between sections for smoother transitions */
        section[id] {
            margin: clamp(40px, 8vh, 90px) 0;
            position: relative;
            z-index: 10; /* Above hero and overlay */
        }

        /* First section (books) hovers over hero */
        #books {
            margin-top: 0;
            padding-top: clamp(160px, 24vh, 260px);
        }

        /* Tighten gaps between stacked panels */
        #soundtrack,
        #about {
            margin-top: clamp(30px, 6vh, 70px);
        }

        [data-soft-panel] {
            will-change: opacity, transform;
            isolation: isolate;
        }

        /* Modern scroll-driven animations (fallback handled in JS) */
        @supports (animation-timeline: view()) {
            [data-soft-panel] {
                animation: softSectionFade linear both;
                animation-timeline: view();
                animation-range: entry 15% cover 70%;
            }

            @keyframes softSectionFade {
                0%, 100% {
                    opacity: 1;
                    transform: translateY(1.25rem);
                }
                35%, 65% {
                    opacity: 1;
                    transform: none;
                }
            }
        }

        /* Accessibility: Reduced motion */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: .01ms !important;
                transition: none !important;
                scroll-behavior: auto !important;
            }
        }

        /* Fallback for browsers without scroll-driven animations */
        html.no-anim [data-soft-panel] {
            opacity: 1 !important;
            transform: none !important;
        }
/* --- SvelteKit overrides & new layouts --- */
.section-separator.stand-alone {
    position: relative !important;
    height: min(90vh, 640px);
    margin: 0 auto 60px;
    overflow: hidden;
}

.hero.home-hero {
    position: relative;
    padding: 0 clamp(20px, 5vw, 100px) clamp(40px, 10vh, 120px);
    height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 30px;
}

        .hero.home-hero .hero-content {
            max-width: clamp(420px, 42vw, 560px);
            text-align: right;
            background: rgba(0, 0, 0, 0.6);
            padding: clamp(28px, 4vw, 48px);
            border-radius: 18px;
            border: 1px solid rgba(232, 213, 183, 0.2);
            box-shadow: 0 30px 70px rgba(0,0,0,0.55);
            margin-left: auto;
        }

        .hero.home-hero h1 {
            font-size: clamp(2.4rem, 5.5vw, 4.2rem);
            margin-bottom: 16px;
            text-align: right;
        }

        .hero-you {
            font-style: normal;
            color: #e8d5b7;
            font-size: 1.15em;
            letter-spacing: 0.04em;
            text-decoration: underline;
            text-decoration-color: rgba(124, 168, 138, 0.6);
            text-underline-offset: 6px;
            text-decoration-thickness: 3px;
        }

        .hero.home-hero p {
            text-align: right;
            margin-left: auto;
        }

        .hero-subtext {
            text-wrap: pretty;
        }

        .hero-author-line {
            font-style: italic;
            color: rgba(177, 200, 176, 0.9);
        }

        .hero-actions {
            display: flex;
            justify-content: flex-end;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 28px;
        }

.hero-actions .book-action {
    min-width: 180px;
    text-align: center;
}

section.stand-alone {
    margin-top: 80px;
    margin-bottom: 120px;
}

section.stand-alone.hero {
    margin-top: 0;
}

section.stand-alone#books {
    margin-top: 60px;
    padding-top: 40px;
}

section.stand-alone#soundtrack,
section.stand-alone#about,
section.stand-alone#visual-journey,
section.stand-alone#contact {
    margin-top: 60px;
}

.home-overview {
    padding: 120px 20px;
    background: linear-gradient(180deg, rgba(11, 11, 11, 0.85), rgba(26, 26, 26, 0.95));
}

.overview-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.overview-card {
    background: rgba(26, 26, 26, 0.85);
    border: 1px solid rgba(232, 213, 183, 0.1);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.overview-card h2 {
    font-family: 'La Roue', 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: #e8d5b7;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.overview-card p {
    color: rgba(232, 213, 183, 0.85);
    line-height: 1.8;
}

.overview-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.overview-card li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(255, 255, 255, 0.03);
    padding: 14px 16px;
    border-radius: 6px;
    border: 1px solid rgba(232, 213, 183, 0.06);
}

.overview-card li strong {
    font-family: 'Playfair Display', serif;
    color: #e8d5b7;
}

.overview-card li span {
    font-size: 0.95rem;
    color: rgba(232, 213, 183, 0.75);
}

.overview-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.overview-actions .book-action {
    flex: 1 1 140px;
    text-align: center;
}

.book-action.tertiary {
    background: transparent;
    border: 1px solid rgba(232, 213, 183, 0.4);
    color: #e8d5b7;
}

.nav-links a.active {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 6px;
}

.hamburger {
    background: transparent;
    border: none;
    padding: 4px;
}

.reserve-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.reserve-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #e8d5b7;
    font-size: 0.95rem;
}

.reserve-form input,
.reserve-form select,
.reserve-form textarea {
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(74, 124, 89, 0.3);
    border-radius: 4px;
    color: white;
    font-size: 1rem;
}

.reserve-form textarea {
    resize: vertical;
}

.book-action[disabled],
.form-submit[disabled] {
    opacity: 0.6;
    cursor: wait;
}

.track-card.playing .track-title {
    color: #e8d5b7;
}


/* ==========================================================
   MOBILE EXPERIENCE — Touch devices (phones + tablets)
   Architecture:
     - "Wrapper" sections (.books-section, .about-section#about-content,
       .journey-section) are pass-through — NO snap, NO height lock,
       NO overflow clip. They just hold children.
     - "Screen" elements are individual snap targets: hero, each book,
       soundtrack, each journey item, contact. Each = one full viewport.
   ========================================================== */

@media (pointer: coarse) {

    /* ── Snap engine ── */
    html {
        scroll-snap-type: y mandatory;
        -webkit-overflow-scrolling: touch;
    }

    /* Hide desktop-only decorative layers on mobile */
    .quote-layer { display: none !important; }
    #stage-bg { display: none !important; }
    #hero-overlay { display: none !important; }

    /* Kill stand-alone page margins */
    section.stand-alone { margin: 0 !important; }

    /* ── PASS-THROUGH WRAPPERS ──
       These sections contain multiple snap children.
       They must NOT be snap targets, must NOT clip, must NOT lock height. */
    .books-section,
    .about-section#about-content,
    .journey-section {
        scroll-snap-align: none !important;
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
        overflow: visible !important;
        padding: 0 !important;
        display: block !important;
    }

    /* Inner containers — flatten */
    .books-container,
    .soundtrack-container,
    .about-container,
    .journey-container,
    .contact-container,
    .overview-container {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Overlays always visible on mobile */
    .journey-section::before,
    .contact-section::before,
    .about-section#about-content::before,
    .soundtrack-section::after {
        opacity: 1 !important;
    }

    /* ── SNAP SCREEN BASE ──
       Common styles for every element that acts as its own swipe page. */
    .hero.home-hero,
    .hero.about-section,
    .book-section-timeline,
    .journey-section-timeline,
    .soundtrack-section,
    .contact-section {
        scroll-snap-align: start;
        scroll-snap-stop: always;
        min-height: 100dvh;
        height: 100dvh;
        max-height: 100dvh;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        padding: 60px 20px 24px;
    }

    /* ── HERO ── */
    .hero.home-hero {
        padding: 0 24px;
    }

    .section-separator {
        height: 100dvh !important;
    }

    .hero.home-hero .hero-content {
        max-width: 100%;
        width: 100%;
        text-align: center;
        padding: 24px 20px;
        margin: 0;
        border-radius: 16px;
    }

    .hero.home-hero h1 {
        font-size: 1.8rem;
        text-align: center;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .hero.home-hero p {
        text-align: center;
        margin: 0;
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        margin-top: 16px;
    }

    .hero-actions .book-action {
        width: 100%;
        min-width: unset;
        text-align: center;
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    .hero-author-line {
        display: block;
        margin-bottom: 4px;
    }

    .hero-subtext {
        font-size: 0.95rem;
    }

    /* ── BOOKS ── */
    /* The "BOOKS" heading inside .books-section */
    .books-section > .books-container > .section-title {
        scroll-snap-align: none;
        display: none !important;
    }

    /* Each book = its own snap screen */
    .book-section-timeline {
        margin: 0 !important;
        background: #0b0b0b;
        gap: 0;
    }

    /* Kill desktop timeline pseudo-elements */
    .book-section-timeline::after,
    .book-section-timeline::before { display: none !important; }

    .book-content-area {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        align-items: center;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    /* Book cover — compact, centered */
    .book-cover-wrapper {
        all: unset !important;
        display: block !important;
        width: 130px !important;
        flex-shrink: 0;
        text-align: center;
    }

    .book-cover-wrapper img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    }

    /* Book text — strip all card styling */
    .book-content {
        all: unset !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 6px !important;
        color: #f7f0e3 !important;
        flex: 1;
        min-height: 0;
        overflow: hidden;
        width: 100%;
    }

    .book-title {
        font-size: 1.3rem !important;
        margin: 0 !important;
        opacity: 1 !important;
        transform: none !important;
        color: #f7f0e3 !important;
    }

    .book-subtitle {
        font-size: 0.75rem !important;
        margin: 0 0 4px !important;
        opacity: 1 !important;
        transform: none !important;
        color: rgba(247,240,227,0.6) !important;
    }

    /* Synopsis — truncated, first paragraph only */
    .book-synopsis {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        text-align: center;
        color: rgba(247,240,227,0.8) !important;
    }

    .book-synopsis p { margin: 0; }
    .book-synopsis p:not(:first-child) { display: none; }

    .book-meta {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 8px !important;
        margin-top: auto !important;
        flex-shrink: 0;
    }

    .book-action {
        width: 100% !important;
        text-align: center !important;
        padding: 12px 16px !important;
        font-size: 0.9rem !important;
    }

    /* Hide cassette player on mobile */
    .cassette-player { display: none !important; }

    /* ── SOUNDTRACK ── */
    .soundtrack-section {
        padding: 60px 20px 24px !important;
        overflow-y: auto !important;
    }

    .vinyl-decoration { display: none !important; }

    .soundtrack-hero { margin-bottom: 12px; }
    .soundtrack-main-title { font-size: 1.3rem !important; letter-spacing: 0.08em !important; }
    .soundtrack-sub-title { font-size: 0.95rem !important; }
    .soundtrack-description { margin-top: 8px; }

    .soundtrack-columns {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
    }

    .soundtrack-panel {
        all: unset !important;
        display: block !important;
        color: #f7f0e3 !important;
    }

    .soundtrack-intro {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }

    /* Drop cap — reset on mobile */
    .soundtrack-intro.drop-cap .drop-cap-letter {
        float: none !important;
        font-size: inherit !important;
        line-height: inherit !important;
        margin: 0 !important;
    }

    /* Track cards — compact horizontal list */
    .track-collection {
        gap: 8px !important;
        margin-top: 12px !important;
    }

    .track-card {
        all: unset !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 10px !important;
        border-bottom: 1px solid rgba(255,255,255,0.06) !important;
        color: #f7f0e3 !important;
    }

    .track-visual {
        width: 48px !important;
        height: 48px !important;
        flex-shrink: 0;
    }

    .album-cover {
        position: relative !important;
        width: 48px !important;
        height: 48px !important;
        border-radius: 6px !important;
        overflow: hidden;
    }

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

    .vinyl-record { display: none !important; }

    .track-info {
        all: unset !important;
        display: flex !important;
        flex-direction: column !important;
        flex: 1 !important;
        min-width: 0 !important;
        color: #f7f0e3 !important;
    }

    .track-title {
        font-size: 0.95rem !important;
        margin: 0 !important;
        color: #f7f0e3 !important;
    }

    .track-description {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
        margin: 2px 0 0 !important;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        color: rgba(247,240,227,0.5) !important;
    }

    .play-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
        margin: 0 !important;
        flex-shrink: 0;
    }

    /* Streaming player — compact */
    .streaming-player { margin-top: 16px; }
    .streaming-title { font-size: 1rem !important; margin-bottom: 4px !important; }
    .streaming-subtitle { font-size: 0.8rem !important; }
    .platform-tabs { gap: 4px; }
    .platform-tab { padding: 6px 10px; font-size: 0.75rem; }
    .player-embed { max-width: 100%; }
    .player-embed iframe { height: 180px !important; }

    /* ── ABOUT HERO ── */
    .hero.about-section {
        padding: 0 24px;
    }

    .about-hero-content {
        position: static !important;
        max-width: 100% !important;
        padding: 24px 20px !important;
        margin: 0 !important;
        text-align: center !important;
        border: none !important;
        background: rgba(0,0,0,0.5) !important;
        box-shadow: none !important;
        border-radius: 16px !important;
    }

    .about-hero-title {
        font-size: 1.4rem !important;
        letter-spacing: 1px !important;
        text-align: center !important;
    }

    .about-statement {
        font-size: 0.9rem !important;
        text-align: center !important;
    }

    /* ── ABOUT TIMELINE (journey highlights) ── */
    /* Each journey item = its own snap screen */
    .journey-section-timeline {
        margin: 0 !important;
        background: #0f0f0f;
    }

    /* Kill timeline pseudo-elements */
    .journey-container::before { display: none !important; }
    .journey-section-timeline::after,
    .journey-section-timeline::before { display: none !important; }

    .journey-section-timeline.left,
    .journey-section-timeline.right {
        padding: 60px 24px 24px !important;
    }

    .section-number,
    .journey-number {
        position: static !important;
        transform: none !important;
        margin: 0 auto 12px !important;
        width: 48px !important;
        height: 48px !important;
        font-size: 1.4rem !important;
        opacity: 1 !important;
    }

    .section-content { text-align: center; }
    .section-title { text-align: center !important; font-size: 1.3rem !important; }
    .section-location { text-align: center !important; font-size: 0.75rem !important; }
    .section-description { text-align: center !important; font-size: 0.9rem !important; line-height: 1.5 !important; }

    /* ── VISUAL JOURNEY (Gallery) ── */
    /* Pass-through wrapper already handled above */

    .journey-section .journey-section-timeline::before { display: none !important; }

    .journey-content-area {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .journey-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        height: 160px !important;
        flex-shrink: 0;
    }

    .journey-image-wrapper img {
        border-radius: 12px !important;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .journey-title {
        font-size: 1.2rem !important;
        text-align: center !important;
    }

    /* ── CONTACT ── */
    .contact-section {
        overflow-y: auto !important;
    }

    .contact-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 16px !important;
        text-align: center;
    }

    .contact-form {
        all: unset !important;
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        color: #f7f0e3 !important;
    }

    .form-group {
        margin-bottom: 12px !important;
    }

    .form-group label {
        display: block;
        margin-bottom: 4px;
        font-size: 0.85rem;
        color: rgba(247,240,227,0.6);
    }

    .form-group input,
    .form-group textarea {
        width: 100% !important;
        padding: 14px !important;
        font-size: 16px !important; /* prevent iOS zoom */
        border-radius: 8px !important;
        background: rgba(255,255,255,0.05) !important;
        border: 1px solid rgba(255,255,255,0.1) !important;
        color: #f7f0e3 !important;
        box-sizing: border-box;
    }

    .form-group textarea {
        resize: none;
        height: 100px !important;
    }

    .form-submit {
        width: 100%;
        padding: 14px !important;
        font-size: 1rem !important;
        margin-top: 4px;
    }
}

/* ── PHONE LANDSCAPE ── */
@media (max-height: 500px) and (orientation: landscape) and (pointer: coarse) {
    html { scroll-snap-type: y proximity; }

    .hero.home-hero,
    .hero.about-section,
    .book-section-timeline,
    .journey-section-timeline,
    .soundtrack-section,
    .contact-section {
        height: auto !important;
        max-height: none !important;
        min-height: 100dvh;
        padding: 16px 32px !important;
    }

    .hero.home-hero .hero-content {
        max-width: 70%;
        margin: 0 auto;
    }

    .hero.home-hero h1 { font-size: 1.4rem; }

    .book-content-area { flex-direction: row !important; }
    .book-cover-wrapper { width: 100px !important; }
    .book-synopsis { -webkit-line-clamp: 4 !important; }
}

/* ── TABLET PORTRAIT (431–820px) ── */
@media (min-width: 431px) and (max-width: 820px) and (orientation: portrait) and (pointer: coarse) {
    .hero.home-hero h1 { font-size: 2.2rem; }
    .hero.home-hero .hero-content { max-width: 85%; margin: 0 auto; }
    .book-cover-wrapper { width: 160px !important; }
    .book-synopsis { -webkit-line-clamp: 10 !important; font-size: 0.9rem !important; }
    .track-visual { width: 64px !important; height: 64px !important; }
    .album-cover { width: 64px !important; height: 64px !important; }
    .track-description { -webkit-line-clamp: 2 !important; }
    .journey-image-wrapper { height: 220px !important; }
}
