/* --- index.html --- */
* {
            box-sizing: border-box;
        }

        body.index-body {
            margin: 0;
            padding: 0;
            background-color: #000000;
            color: #ffffff;
            font-family: 'Cormorant Garamond', serif;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .top-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 24px 32px;
            box-sizing: border-box;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 1000;
            pointer-events: none;
            background-color: transparent;
        }

        .top-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.94);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
            opacity: var(--header-opacity, 0);
            transition: opacity 0.35s ease;
            pointer-events: none;
            z-index: -1;
        }

        .top-header > * {
            position: relative;
            z-index: 1;
            pointer-events: auto;
        }

        .top-header.scrolled::before {
            opacity: var(--header-opacity, 1);
        }

        .custom-lang-dropdown {
            position: relative;
            display: inline-block;
            width: 44px;
        }

        .custom-lang-dropdown::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 12px;
        }

        .custom-lang-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            box-sizing: border-box;
            background: transparent;
            color: #ffffff;
            border: none;
            outline: none;
            font-family: 'Cormorant Garamond', serif;
            font-size: 13px;
            font-weight: 300;
            letter-spacing: 0.05em;
            cursor: pointer;
            padding: 6px 0;
            border-radius: 4px;
            line-height: 1;
            box-shadow: none;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.95), 0 2px 8px rgba(0, 0, 0, 0.85);
            -webkit-tap-highlight-color: transparent;
            user-select: none;
            transition: opacity 0.15s ease, color 0.15s ease;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .custom-lang-btn:hover,
        .custom-lang-btn:focus,
        .custom-lang-btn:active,
        .custom-lang-dropdown.open .custom-lang-btn {
            background: transparent;
            color: #ffffff;
            opacity: 0.85;
            outline: none;
            border: none;
            box-shadow: none;
        }

        .custom-lang-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-sizing: border-box;
            background: transparent;
            border-radius: 4px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-2px);
            transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
            box-shadow: none;
            border: none;
            outline: none;
            padding: 6px 0;
            z-index: 100;
        }

        .custom-lang-dropdown:hover .custom-lang-menu,
        .custom-lang-dropdown:focus-within .custom-lang-menu,
        .custom-lang-dropdown.open .custom-lang-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .custom-lang-item {
            color: #aaaaaa;
            text-decoration: none;
            background: transparent;
            font-family: 'Cormorant Garamond', serif;
            font-size: 13px;
            font-weight: 300;
            letter-spacing: 0.05em;
            padding: 6px 0;
            border-radius: 3px;
            border: none;
            outline: none;
            display: block;
            text-align: center;
            width: 100%;
            box-sizing: border-box;
            line-height: 1;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.95), 0 2px 8px rgba(0, 0, 0, 0.85);
            -webkit-tap-highlight-color: transparent;
            transition: color 0.15s ease, opacity 0.15s ease;
        }

        .custom-lang-item:hover,
        .custom-lang-item:focus,
        .custom-lang-item:active {
            color: #ffffff;
            background: transparent;
            outline: none;
            border: none;
        }

        .custom-lang-item.active {
            display: none !important;
        }

        .brand-link {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo {
            height: 32px;
            width: auto;
            object-fit: contain;
        }

        @media (min-width: 640px) {
            .logo {
                height: 38px;
            }
        }

        .brand-name {
            color: #ffffff;
            font-weight: 700;
            font-size: 16px;
            letter-spacing: 0.025em;
            margin: 0;
        }

        @media (min-width: 640px) {
            .brand-name {
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            header, .top-header {
                padding: 16px 20px;
                gap: 8px;
            }
            .brand-name {
                font-size: 14px;
            }
            .logo {
                height: 28px;
            }
            .custom-lang-btn {
                font-size: 11px;
                padding: 6px 8px;
            }
        }

        .main-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 80px 24px 40px 24px;
            text-align: center;
            width: 100%;
            max-width: 800px;
        }

        .language-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
            width: 100%;
            max-width: 200px;
            align-items: center;
        }

        @media (min-width: 640px) {
            .language-buttons {
                flex-direction: row;
                justify-content: center;
                max-width: none;
                gap: 16px;
            }
        }

        .lang-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 120px;
            padding: 8px 20px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 24px;
            color: #ffffff;
            background: transparent;
            text-decoration: none;
            font-family: 'Cormorant Garamond', serif;
            font-size: 13px;
            font-weight: 400;
            letter-spacing: 0.04em;
            text-align: center;
            transition: all 0.25s ease;
        }

        .lang-btn:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: #ffffff;
            transform: translateY(-2px);
        }

        .site-footer {
            max-width: 550px;
            margin: 16px auto 24px auto;
            padding: 0 16px;
            color: #aaaaaa;
            font-size: 10px;
            line-height: 1.4;
            text-align: center;
        }
        .site-footer p {
            margin: 3px 0;
        }
        .footer-url {
            display: inline-block;
            color: #aaaaaa;
            text-decoration: underline;
            font-size: 10.5px;
            margin-bottom: 3px;
        }
        .footer-text {
            margin-bottom: 3px;
            color: #aaaaaa;
            font-size: 10px;
        }
        .footer-dedication {
            margin-bottom: 4px;
            font-style: italic;
            color: #999999;
            font-size: 10px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-top: 4px;
            margin-bottom: 4px;
        }
        .footer-link {
            color: #aaaaaa;
            text-decoration: underline;
            font-size: 10px;
        }
        .footer-copyright {
            margin-top: 4px;
            color: #888888;
            font-size: 9.5px;
        }

/* --- catalogue.html (FR) --- */
body {
            margin: 0;
            padding: 0;
            background-color: #000000;
            color: #ffffff;
            font-family: 'Cormorant Garamond', serif;
            min-height: 100vh;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 24px;
            box-sizing: border-box;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            z-index: 1000;
            pointer-events: none;
            background-color: transparent;
        }

        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.94);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
            opacity: var(--header-opacity, 0);
            transition: opacity 0.35s ease;
            pointer-events: none;
            z-index: -1;
        }

        header > * {
            position: relative;
            z-index: 1;
            pointer-events: auto;
        }

        header.scrolled::before {
            opacity: var(--header-opacity, 1);
        }

        @media (min-width: 640px) {
            header {
                padding: 32px 48px;
            }
        }

        .banner-wrapper {
            position: relative;
            width: 100%;
            height: 40vh;
            min-height: 300px;
            background-color: #000000;
            overflow: hidden;
        }

        .banner {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #333333; /* Fallback color */
            background-image: url('Le_Cercle_Hilliger-banner.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.6;
        }
        
        /* Optional overlay for better text readability */
        .banner::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,1) 100%);
            pointer-events: none;
        }

        .carousel-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 5;
            width: 100%;
            height: 65%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .carousel-img {
            position: absolute;
            max-height: 100%;
            max-width: 90vw;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            object-fit: contain;
        }

        .carousel-img.active {
            opacity: 1;
        }

        .logo {
            height: 32px;
            width: auto;
            object-fit: contain;
        }

        @media (min-width: 768px) {
            .logo {
                height: 40px;
            }
        }

        .brand-name {
            color: #ffffff;
            font-weight: 700;
            font-size: 16px;
            letter-spacing: 0.025em;
            text-decoration: none;
        }

        @media (min-width: 768px) {
            .brand-name {
                font-size: 22px;
            }
        }

        .content-section {
            max-width: 1550px;
            margin: 48px auto;
            padding: 0 32px;
            text-align: left;
        }

        @media (min-width: 640px) {
            .content-section {
                padding: 0 64px;
            }
        }

        .page-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px;
            text-align: center;
            font-weight: 300;
            color: #ffffff;
            margin-top: 48px;
            margin-bottom: 48px;
            letter-spacing: 0.04em;
        }

        .content-section p {
            font-size: 19px;
            line-height: 1.85;
            color: #ffffff;
            font-weight: 400;
        }

        .content-section em,
        .content-section strong,
        .content-section b {
            color: #ffffff;
        }

        .action-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 32px;
            margin-bottom: 40px;
        }

        .action-button {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            background-color: transparent;
            border: 1px solid #ffffff;
            border-radius: 6px;
            padding: 12px 24px;
            color: #ffffff;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
            font-size: 16px;
            text-decoration: none;
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .action-button:hover {
            background-color: #ffffff;
            color: #000000;
        }

        .collapsible-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 21px;
            text-align: left;
            color: #ffffff;
            cursor: pointer;
            margin-top: 36px;
            margin-bottom: 18px;
            display: block;
            user-select: none;
            text-transform: uppercase;
            font-weight: 400;
            letter-spacing: 0.03em;
        }

        .section-divider {
            border: 0;
            height: 1px;
            background-color: #333333;
            margin-top: 0;
            margin-bottom: 24px;
        }

        .collapsible-content {
            display: none;
        }

        .collapsible-content.expanded {
            display: block;
        }

        .availability-section {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 40px;
            margin-top: 40px;
            margin-bottom: 72px;
        }

        @media (max-width: 768px) {
            .availability-section {
                grid-template-columns: 1fr;
                gap: 28px;
            }
        }

        .availability-column {
            min-width: 0;
            width: 100%;
        }
        .availability-title {
            font-size: 19px;
            color: #ffffff;
            margin-top: 0;
            margin-bottom: 16px;
            font-weight: 400;
            white-space: nowrap;
        }
        .icon-container {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }
        .store-icon {
            width: 36px;
            height: 36px;
            object-fit: contain;
            border-radius: 6px;
            transition: opacity 0.2s ease;
            display: block;
        }
        .store-icon:hover {
            opacity: 0.75;
        }
        .placeholder-icon {
            width: 36px;
            height: 36px;
            background-color: #333333;
            border-radius: 8px;
        }
        
        .podcast-section {
            margin-top: 48px;
            margin-bottom: 72px;
        }
        .podcast-link {
            color: #ffffff;
            text-decoration: underline;
            text-transform: uppercase;
            font-size: 18px;
            font-weight: 400;
        }
        .podcast-link:hover {
            color: #ffffff;
        }

        .site-footer {
            max-width: 800px;
            margin: 180px auto 72px auto;
            padding: 0 16px 24px 16px;
            color: #aaaaaa;
            font-size: 13px;
            line-height: 1.5;
            text-align: center;
        }
        .site-footer p {
            margin: 4px 0;
        }
        .footer-url {
            display: inline-block;
            color: #aaaaaa;
            text-decoration: underline;
            font-size: 14px;
            margin-bottom: 4px;
        }
        .footer-text {
            margin-bottom: 4px;
            color: #aaaaaa;
            font-size: 13px;
        }
        .footer-dedication {
            margin-bottom: 6px;
            font-style: italic;
            color: #999999;
            font-size: 13px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-top: 4px;
            margin-bottom: 4px;
        }
        .footer-link {
            color: #aaaaaa;
            text-decoration: underline;
            font-size: 10px;
        }
        .footer-copyright {
            margin-top: 4px;
            color: #888888;
            font-size: 9.5px;
        }

/* --- catalogue.html (EN) --- */
body {
            margin: 0;
            padding: 0;
            background-color: #000000;
            color: #ffffff;
            font-family: 'Cormorant Garamond', serif;
            min-height: 100vh;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 24px;
            box-sizing: border-box;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            z-index: 1000;
            pointer-events: none;
            background-color: transparent;
        }

        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.94);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
            opacity: var(--header-opacity, 0);
            transition: opacity 0.35s ease;
            pointer-events: none;
            z-index: -1;
        }

        header > * {
            position: relative;
            z-index: 1;
            pointer-events: auto;
        }

        header.scrolled::before {
            opacity: var(--header-opacity, 1);
        }

        @media (min-width: 640px) {
            header {
                padding: 32px 48px;
            }
        }

        .banner-wrapper {
            position: relative;
            width: 100%;
            height: 40vh;
            min-height: 300px;
            background-color: #000000;
            overflow: hidden;
        }

        .banner {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #333333;
            background-image: url('/Le_Cercle_Hilliger-banner.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.6;
        }
        
        .banner::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,1) 100%);
            pointer-events: none;
        }

        .carousel-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 5;
            width: 100%;
            height: 65%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .carousel-img {
            position: absolute;
            max-height: 100%;
            max-width: 90vw;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            object-fit: contain;
        }

        .carousel-img.active {
            opacity: 1;
        }

        .logo {
            height: 32px;
            width: auto;
            object-fit: contain;
        }

        @media (min-width: 768px) {
            .logo {
                height: 40px;
            }
        }

        .brand-name {
            color: #ffffff;
            font-weight: 700;
            font-size: 16px;
            letter-spacing: 0.025em;
            text-decoration: none;
        }

        @media (min-width: 768px) {
            .brand-name {
                font-size: 18px;
            }
        }

        .content-section {
            max-width: 1200px;
            margin: 48px auto;
            padding: 0 32px;
            text-align: left;
        }

        @media (min-width: 640px) {
            .content-section {
                padding: 0 64px;
            }
        }

        .page-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            text-align: center;
            font-weight: 400;
            color: #ffffff;
            margin-top: 40px;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .content-section p {
            font-size: 16px;
            line-height: 1.8;
            color: #ffffff;
        }

        .content-section em,
        .content-section strong,
        .content-section b {
            color: #ffffff;
        }

        .action-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 32px;
            margin-bottom: 40px;
        }

        .action-button {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            background-color: transparent;
            border: 1px solid #cccccc;
            border-radius: 6px;
            padding: 10px 20px;
            color: #ffffff;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
            font-size: 14px;
            text-decoration: none;
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .action-button:hover {
            background-color: #ffffff;
            color: #000000;
        }

        .collapsible-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 18px;
            text-align: left;
            color: #ffffff;
            cursor: pointer;
            margin-top: 32px;
            margin-bottom: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }

        .section-divider {
            border: 0;
            height: 1px;
            background-color: #333333;
            margin-top: 0;
            margin-bottom: 24px;
        }

        .collapsible-content {
            display: none;
        }

        .collapsible-content.expanded {
            display: block;
        }

        .availability-section {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 40px;
            margin-top: 40px;
            margin-bottom: 32px;
        }

        @media (max-width: 768px) {
            .availability-section {
                grid-template-columns: 1fr;
                gap: 28px;
            }
        }

        .availability-column {
            min-width: 0;
            width: 100%;
        }

        .availability-title {
            font-size: 16px;
            color: #ffffff;
            margin-top: 0;
            margin-bottom: 16px;
            font-weight: 400;
            white-space: nowrap;
        }

        .icon-container {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .store-icon {
            width: 32px;
            height: 32px;
            object-fit: contain;
            border-radius: 6px;
            transition: opacity 0.2s ease;
            display: block;
        }

        .store-icon:hover {
            opacity: 0.75;
        }

        .placeholder-icon {
            width: 32px;
            height: 32px;
            background-color: #222222;
            border: 1px solid #444444;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .podcast-section {
            margin-top: 24px;
            margin-bottom: 24px;
        }

        .podcast-link {
            color: #ffffff;
            text-decoration: underline;
            text-transform: uppercase;
            font-size: 16px;
            font-weight: 400;
        }

        .podcast-link:hover {
            color: #ffffff;
        }

        .research-link {
            display: inline-block;
            margin-top: 12px;
            margin-bottom: 32px;
            color: #ffffff;
            text-decoration: underline;
            text-transform: uppercase;
            font-size: 14px;
            font-weight: 400;
            line-height: 1.6;
        }

        .research-link:hover {
            color: #ffffff;
        }

        .site-footer {
            max-width: 550px;
            margin: 36px auto 72px auto;
            padding: 0 16px 24px 16px;
            color: #aaaaaa;
            font-size: 10px;
            line-height: 1.4;
            text-align: center;
        }

        .site-footer p {
            margin: 3px 0;
        }

        .footer-url {
            display: inline-block;
            color: #aaaaaa;
            text-decoration: underline;
            font-size: 10.5px;
            margin-bottom: 3px;
        }

        .footer-text {
            margin-bottom: 3px;
            color: #aaaaaa;
            font-size: 10px;
        }

        .footer-dedication {
            margin-bottom: 4px;
            font-style: italic;
            color: #999999;
            font-size: 10px;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-top: 4px;
            margin-bottom: 4px;
        }

        .footer-link {
            color: #aaaaaa;
            text-decoration: underline;
            font-size: 10px;
        }

        .footer-copyright {
            margin-top: 4px;
            color: #888888;
            font-size: 9.5px;
        }

/* --- catalogue.html (ES) --- */
body {
            margin: 0;
            padding: 0;
            background-color: #000000;
            color: #ffffff;
            font-family: 'Cormorant Garamond', serif;
            min-height: 100vh;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 24px;
            box-sizing: border-box;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            z-index: 1000;
            pointer-events: none;
            background-color: transparent;
        }

        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.94);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
            opacity: var(--header-opacity, 0);
            transition: opacity 0.35s ease;
            pointer-events: none;
            z-index: -1;
        }

        header > * {
            position: relative;
            z-index: 1;
            pointer-events: auto;
        }

        header.scrolled::before {
            opacity: var(--header-opacity, 1);
        }

        @media (min-width: 640px) {
            header {
                padding: 32px 48px;
            }
        }

        .banner-wrapper {
            position: relative;
            width: 100%;
            height: 40vh;
            min-height: 300px;
            background-color: #000000;
            overflow: hidden;
        }

        .banner {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #333333;
            background-image: url('/Le_Cercle_Hilliger-banner.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.6;
        }
        
        .banner::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,1) 100%);
            pointer-events: none;
        }

        .carousel-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 5;
            width: 100%;
            height: 65%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .carousel-img {
            position: absolute;
            max-height: 100%;
            max-width: 90vw;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            object-fit: contain;
        }

        .carousel-img.active {
            opacity: 1;
        }

        .logo {
            height: 32px;
            width: auto;
            object-fit: contain;
        }

        @media (min-width: 768px) {
            .logo {
                height: 40px;
            }
        }

        .brand-name {
            color: #ffffff;
            font-weight: 700;
            font-size: 16px;
            letter-spacing: 0.025em;
            text-decoration: none;
        }

        @media (min-width: 768px) {
            .brand-name {
                font-size: 18px;
            }
        }

        .content-section {
            max-width: 1200px;
            margin: 48px auto;
            padding: 0 32px;
            text-align: left;
        }

        @media (min-width: 640px) {
            .content-section {
                padding: 0 64px;
            }
        }

        .page-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            text-align: center;
            font-weight: 400;
            color: #ffffff;
            margin-top: 40px;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .content-section p {
            font-size: 16px;
            line-height: 1.8;
            color: #ffffff;
        }

        .content-section em,
        .content-section strong,
        .content-section b {
            color: #ffffff;
        }

        .action-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 32px;
            margin-bottom: 40px;
        }

        .action-button {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            background-color: transparent;
            border: 1px solid #cccccc;
            border-radius: 6px;
            padding: 10px 20px;
            color: #ffffff;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
            font-size: 14px;
            text-decoration: none;
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .action-button:hover {
            background-color: #ffffff;
            color: #000000;
        }

        .collapsible-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 18px;
            text-align: left;
            color: #ffffff;
            cursor: pointer;
            margin-top: 32px;
            margin-bottom: 16px;
            display: block;
            user-select: none;
            text-transform: uppercase;
        }

        .section-divider {
            border: 0;
            height: 1px;
            background-color: #333333;
            margin-top: 0;
            margin-bottom: 24px;
        }

        .collapsible-content {
            display: none;
        }

        .collapsible-content.expanded {
            display: block;
        }

        .availability-section {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 40px;
            margin-top: 40px;
            margin-bottom: 72px;
        }

        @media (max-width: 768px) {
            .availability-section {
                grid-template-columns: 1fr;
                gap: 28px;
            }
        }

        .availability-column {
            min-width: 0;
            width: 100%;
        }

        .availability-title {
            font-size: 16px;
            color: #ffffff;
            margin-top: 0;
            margin-bottom: 16px;
            font-weight: 400;
            white-space: nowrap;
        }

        .icon-container {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .store-icon {
            width: 32px;
            height: 32px;
            object-fit: contain;
            border-radius: 6px;
            transition: opacity 0.2s ease;
            display: block;
        }

        .store-icon:hover {
            opacity: 0.75;
        }

        .placeholder-icon {
            width: 32px;
            height: 32px;
            background-color: #333333;
            border-radius: 8px;
        }

        .podcast-section {
            margin-top: 48px;
            margin-bottom: 72px;
        }

        .podcast-link {
            color: #ffffff;
            text-decoration: underline;
            text-transform: uppercase;
            font-size: 16px;
            font-weight: 400;
        }

        .podcast-link:hover {
            color: #ffffff;
        }

        .site-footer {
            max-width: 550px;
            margin: 225px auto 72px auto;
            padding: 0 16px 24px 16px;
            color: #aaaaaa;
            font-size: 10px;
            line-height: 1.4;
            text-align: center;
        }

        .site-footer p {
            margin: 3px 0;
        }

        .footer-url {
            display: inline-block;
            color: #aaaaaa;
            text-decoration: underline;
            font-size: 10.5px;
            margin-bottom: 3px;
        }

        .footer-text {
            margin-bottom: 3px;
            color: #aaaaaa;
            font-size: 10px;
        }

        .footer-dedication {
            margin-bottom: 4px;
            font-style: italic;
            color: #999999;
            font-size: 10px;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-top: 4px;
            margin-bottom: 4px;
        }

        .footer-link {
            color: #aaaaaa;
            text-decoration: underline;
            font-size: 10px;
        }

        .footer-copyright {
            margin-top: 4px;
            color: #888888;
            font-size: 9.5px;
        }

        /* --- Conditions d'utilisation / Pages Légales --- */
        .banner-title-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 5;
            text-align: center;
            width: 90%;
            max-width: 900px;
        }

        .banner-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            font-weight: 300;
            color: #ffffff;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin: 0;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 4px 25px rgba(0, 0, 0, 0.9);
        }

        @media (min-width: 640px) {
            .banner-title {
                font-size: 30px;
                letter-spacing: 0.05em;
            }
        }

        .legal-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 48px 24px 60px 24px;
            box-sizing: border-box;
            font-family: 'Cormorant Garamond', serif;
        }

        @media (min-width: 768px) {
            .legal-container {
                padding: 64px 32px 80px 32px;
            }
        }

        .legal-main-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            font-weight: 300;
            color: #ffffff;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            text-align: center;
            margin: 0 0 32px 0;
            line-height: 1.4;
        }

        @media (min-width: 640px) {
            .legal-main-title {
                font-size: 28px;
                margin-bottom: 40px;
            }
        }

        .legal-intro {
            font-family: 'Cormorant Garamond', serif;
            font-size: 18.5px;
            line-height: 1.85;
            color: #ffffff;
            margin-bottom: 36px;
            padding-bottom: 28px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        }

        .legal-section {
            margin-bottom: 36px;
            font-family: 'Cormorant Garamond', serif;
        }

        .legal-section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 19px;
            font-weight: 300;
            color: #ffffff;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            margin: 0 0 14px 0;
        }

        .legal-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 18.5px;
            line-height: 1.85;
            color: #ffffff;
            margin: 0 0 14px 0;
        }

        .legal-text:last-child {
            margin-bottom: 0;
        }

        .legal-text a {
            color: #ffffff;
            text-decoration: underline;
        }

        .footer-copyright a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s ease, text-decoration 0.2s ease;
        }

        .footer-copyright a:hover {
            color: #cccccc;
            text-decoration: underline;
        }
