/* Philip Olaomi — authentic black, white and electric-blue design system. */

:root {
    --brand-primary: #2eb2ff;
    --brand-primary-hover: #127fbe;
    --brand-secondary: #d6b151;
    --bg-primary: #ffffff;
    --bg-secondary: #f3f6f8;
    --bg-dark: #07090c;
    --bg-darker: #020305;
    --surface-primary: #ffffff;
    --surface-secondary: #eef3f6;
    --text-primary: #080b0e;
    --text-secondary: #53606a;
    --text-muted: #75818a;
    --text-light: #ffffff;
    --accent-gold: #2eb2ff;
    --accent-olive: #127fbe;
    --border-color: #dce3e8;
    --overlay-dark: rgba(2, 3, 5, 0.72);
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;
    --shadow-sm: 0 8px 24px rgba(3, 12, 18, 0.08);
    --shadow-md: 0 24px 60px rgba(3, 12, 18, 0.14);
    --container-width: 1240px;

    /* Typography Stack */
    --font-serif: 'Kanit', Arial, sans-serif;
    --font-sans: 'Kanit', Arial, sans-serif;
    --font-body: 'Source Sans 3', 'Source Sans Pro', system-ui, -apple-system, sans-serif;

    /* Spacing Standards */
    --section-spacing: 110px;
    --section-spacing-tablet: 80px;
    --section-spacing-mobile: 60px;
    --banner-padding-top: 60px;

    /* Button System Tokens */
    --btn-height: 48px;
    --btn-border-radius: 2px;
    --btn-font-size: 11px;
    --btn-letter-spacing: 1px;
    --btn-font-weight: 600;
    --btn-transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;

    /* Transitions */
    --transition-fast: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- BASE STYLES --- */
body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--text-primary);
    font-weight: 700;
}

p {
    color: var(--text-secondary);
}

.text-gold {
    color: var(--accent-gold) !important;
}

.font-sans-ui {
    font-family: var(--font-sans);
}

/* --- TOP UTILITY BAR --- */
.top-bar-custom {
    height: 38px;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.top-bar-custom .top-bar-message {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--text-secondary);
}

.top-bar-custom .social-top-list {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.top-bar-custom .social-top-link {
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: var(--transition-fast);
    display: inline-flex;
}

.top-bar-custom .social-top-link:hover {
    color: var(--accent-gold);
    transform: translateY(-1px);
}

/* --- MAIN STICKY NAVIGATION --- */
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.navbar-custom {
    padding: 1.2rem 0;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.header-wrapper.is-sticky .navbar-custom {
    padding: 0.7rem 0;
    background-color: rgba(245, 241, 232, 0.97);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(41, 36, 31, 0.03);
}

.logo-container img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.header-wrapper.is-sticky .logo-container img {
    height: 32px;
}

/* Navigation Links */
.nav-link-custom {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    text-transform: uppercase;
    padding: 0.5rem 0;
    margin: 0 0.9rem;
    position: relative;
    transition: var(--transition-fast);
    display: inline-block;
    white-space: nowrap; /* Prevent double active bar wrapping visual bug */
    text-decoration: none;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link-custom:hover {
    color: var(--accent-gold);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
    width: 100%;
}

/* Outlined CTA Navigation Button */
.btn-nav-booking {
    font-family: var(--font-sans);
    font-weight: var(--btn-font-weight);
    font-size: var(--btn-font-size);
    letter-spacing: var(--btn-letter-spacing);
    text-transform: uppercase;
    color: #1a1a1a;
    border: 1.5px solid #1a1a1a;
    padding: 0.75rem 1.6rem;
    border-radius: var(--btn-border-radius);
    transition: var(--btn-transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
}

.btn-nav-booking:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 26, 26, 0.1);
}

.btn-nav-booking:active {
    transform: translateY(-0.5px) scale(0.98) !important;
    box-shadow: 0 2px 8px rgba(26, 26, 26, 0.08) !important;
}

.btn-nav-booking:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.45) !important;
}

/* Mobile Hamburger Menu */
.mobile-nav-toggle {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-primary);
    cursor: pointer;
    display: none;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 380px;
    max-width: 100%;
    height: 100vh;
    background-color: var(--bg-primary);
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 40px rgba(41, 36, 31, 0.05);
    z-index: 1100;
    padding: 4rem 3rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    right: 0;
}

.mobile-drawer-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.mobile-drawer-close:hover {
    color: var(--accent-gold);
}

.mobile-drawer-menu {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
}

.mobile-drawer-menu .nav-link-custom {
    margin: 1rem 0;
    font-size: 1.3rem;
    letter-spacing: 0.12em;
    align-self: flex-start;
}

.hero-wrapper {
    padding: 70px 0 100px 0;
    background-color: var(--bg-primary);
    display: flex;
    align-items: center;
    min-height: 80vh;
    border-bottom: 1px solid var(--border-color);
}

@media (max-width: 991.98px) {
    .hero-wrapper {
        padding: 50px 0 60px 0;
        min-height: auto;
    }
    .hero-image-wrapper {
        margin-top: 3rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-vertical-label {
        display: none;
    }
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 0.3em;
    font-size: 0.65rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3.2rem, 7.5vw, 5.6rem);
    line-height: 1.02;
    margin-bottom: 1.8rem;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: var(--text-primary);
}

.hero-description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 2.8rem;
}

/* Premium Buttons Styling */
.btn-premium {
    font-family: var(--font-sans);
    font-weight: var(--btn-font-weight);
    font-size: var(--btn-font-size);
    letter-spacing: var(--btn-letter-spacing);
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: var(--btn-border-radius);
    transition: var(--btn-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-sizing: border-box;
    line-height: 1;
}

.btn-premium .btn-arrow {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-left: 0.5rem;
    font-size: 1rem;
    line-height: 1;
}

.btn-premium:hover .btn-arrow {
    transform: translateX(3px);
}

.btn-premium:active {
    transform: translateY(-0.5px) scale(0.98) !important;
    box-shadow: 0 2px 8px rgba(26, 26, 26, 0.08) !important;
}

.btn-premium:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.45) !important;
}

.btn-premium-dark {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
}

.btn-premium-dark:hover {
    background-color: #c9a24b;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 26, 26, 0.12);
}

.btn-premium-outline {
    background-color: transparent;
    color: #1a1a1a;
    border: 1.5px solid #1a1a1a;
}

.btn-premium-outline:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 26, 26, 0.08);
}

/* White outline button hover override for dark backgrounds */
.btn-premium-outline[style*="border-color"]:hover {
    background-color: #c9a24b !important;
    color: #1a1a1a !important;
    border-color: #c9a24b !important;
    box-shadow: 0 6px 15px rgba(201, 162, 75, 0.25) !important;
}

/* Image Framing styling */
.hero-image-wrapper {
    position: relative;
    padding: 15px;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    left: 15px;
    top: 15px;
    background-color: rgba(201, 162, 75, 0.05);
    border: 1px solid rgba(201, 162, 75, 0.15);
    border-radius: 8px;
    z-index: 1;
    pointer-events: none;
    transform: translate(15px, 15px);
    transition: var(--transition-smooth);
}

.hero-image-inner {
    border-radius: 8px;
    overflow: hidden;
    z-index: 2;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background-color: var(--bg-secondary);
}

.hero-image-inner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.hero-vertical-label {
    position: absolute;
    left: -35px;
    bottom: 50px;
    transform: rotate(-90deg);
    transform-origin: left bottom;
    font-family: var(--font-sans);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    color: rgba(201, 162, 75, 0.7);
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 3;
    pointer-events: none;
}

.hero-image-wrapper:hover::before {
    transform: translate(6px, 6px);
}

.hero-image-wrapper:hover .hero-image-inner img {
    transform: scale(1.03);
}

/* --- EDITORIAL BRAND STATEMENT --- */
.statement-section {
    padding: 140px 0;
    background-color: var(--bg-secondary);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.statement-eyebrow {
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: 0.25em;
    font-size: 0.7rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: block;
}

.statement-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    line-height: 1.55;
    font-style: italic;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: -0.01em;
}

.statement-line {
    width: 60px;
    height: 1px;
    background-color: var(--accent-gold);
    margin: 2.5rem auto 0 auto;
}

/* --- NEW RELEASES SECTION --- */
.new-releases-section {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

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

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--text-primary);
    font-family: var(--font-serif);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--accent-gold);
}

/* Card details directly underneath artwork */
.albums-slider-container {
    position: relative;
    padding: 0 1rem;
}

.album-card {
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    height: 100%;
    transition: var(--transition-smooth);
    display: block;
    text-decoration: none;
}

.album-img-box {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    border: 1px solid var(--border-color);
    aspect-ratio: 1 / 1;
    background-color: #12100f;
    box-shadow: 0 12px 30px rgba(41, 36, 31, 0.05);
    transition: var(--transition-smooth);
}

.album-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.album-overlay {
    position: absolute;
    inset: 0;
    background: rgba(41, 36, 31, 0.5);
    opacity: 0;
    backdrop-filter: blur(2px);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn-circle {
    width: 52px;
    height: 52px;
    background-color: var(--text-light);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transform: scale(0.85);
    transition: var(--transition-fast);
}

.album-card:hover {
    transform: translateY(-6px);
}

.album-card:hover .album-img-box {
    box-shadow: 0 20px 40px rgba(41, 36, 31, 0.1);
}

.album-card:hover .album-img-box img {
    transform: scale(1.03);
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.album-card:hover .play-btn-circle {
    transform: scale(1);
    background-color: var(--accent-gold);
    color: var(--text-light);
}

.album-card:hover .play-btn-circle:hover {
    transform: scale(1.08);
    background-color: var(--text-light);
    color: var(--accent-gold);
}

.album-info {
    padding: 1.4rem 0.2rem 0.2rem 0.2rem;
    text-align: left;
}

.album-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.album-artist {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0;
}

/* Minimalist control arrows on carousel */
.slider-control-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.slider-control-btn:hover {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-color: var(--bg-dark);
}

.slider-control-btn.prev-btn { left: -21px; }
.slider-control-btn.next-btn { right: -21px; }

/* View All Releases Link Style */
.btn-explore-releases {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-bottom: 6px;
    transition: var(--transition-fast);
}

.btn-explore-releases::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--text-primary);
    transition: width 0.3s ease;
}

.btn-explore-releases .link-arrow {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-left: 0.5rem;
    font-size: 1.1rem;
}

.btn-explore-releases:hover {
    color: var(--accent-gold);
}

.btn-explore-releases:hover::after {
    width: 100%;
    background-color: var(--accent-gold);
}

.btn-explore-releases:hover .link-arrow {
    transform: translateX(6px);
}

/* --- ARTIST STORY SECTION --- */
.story-section {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.story-image-wrapper {
    position: relative;
    padding: 12px;
}

.story-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--accent-gold);
    border-radius: 2px;
    z-index: 1;
    pointer-events: none;
    transform: translate(-6px, 6px);
    transition: var(--transition-smooth);
}

.story-image-inner {
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(41, 36, 31, 0.08);
    position: relative;
    z-index: 2;
    background-color: var(--bg-secondary);
}

.story-image-inner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.story-image-wrapper:hover::before {
    transform: translate(0, 0);
}

.story-image-wrapper:hover .story-image-inner img {
    transform: scale(1.03);
}

/* --- CINEMATIC PERFORMANCE GRID --- */
.performance-section {
    padding: 0;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.performance-banner-item {
    position: relative;
    overflow: hidden;
    height: 560px;
    cursor: pointer;
    border: 8px solid var(--bg-dark);
}

.performance-banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.performance-banner-overlay {
    position: absolute;
    inset: 0;
    /* Dark gradient overlay behind text to improve readability */
    background: linear-gradient(to top, rgba(25, 23, 21, 0.95) 0%, rgba(25, 23, 21, 0.4) 60%, rgba(25, 23, 21, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 4rem;
    z-index: 2;
}

.performance-label {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.performance-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
    line-height: 1.25;
}

.performance-banner-item:hover img {
    transform: scale(1.03);
    opacity: 0.7;
}

/* Stacked items on side */
.performance-side-item {
    position: relative;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    border: 8px solid var(--bg-dark);
}

.performance-side-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.performance-side-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(25, 23, 21, 0.85) 0%, rgba(25, 23, 21, 0.1) 100%);
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.performance-side-item:hover img {
    transform: scale(1.03);
    opacity: 0.6;
}

/* --- BOOKING CTA PANEL --- */
.booking-section {
    padding: 110px 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.booking-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.15;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.booking-description {
    font-size: 1.05rem;
    color: #D8D0C2;
    max-width: 600px;
    margin: 0 auto 2.8rem auto;
}

/* Outlined Booking CTA */
.btn-booking-action {
    font-family: var(--font-sans);
    font-weight: var(--btn-font-weight);
    font-size: var(--btn-font-size);
    letter-spacing: var(--btn-letter-spacing);
    text-transform: uppercase;
    color: #ffffff;
    border: 1.5px solid #ffffff;
    padding: 14px 28px;
    border-radius: var(--btn-border-radius);
    transition: var(--btn-transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
    line-height: 1;
}

.btn-booking-action .btn-arrow {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-left: 0.5rem;
    font-size: 1rem;
    line-height: 1;
}

.btn-booking-action:hover {
    background-color: #c9a24b;
    color: #1a1a1a;
    border-color: #c9a24b;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(201, 162, 75, 0.25);
}

.btn-booking-action:hover .btn-arrow {
    transform: translateX(3px);
}

.btn-booking-action:active {
    transform: translateY(-0.5px) scale(0.98) !important;
    box-shadow: 0 2px 8px rgba(26, 26, 26, 0.08) !important;
}

.btn-booking-action:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.45) !important;
}

/* --- PREMIUM FOOTER --- */
.footer-section {
    background-color: var(--bg-dark);
    padding: 4rem 0 2.5rem 0;
    color: #D8D0C2;
}

.footer-brand {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.footer-tagline {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.footer-desc-text {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #BDB3A5;
    max-width: 320px;
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #D8D0C2;
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

.footer-social-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    padding: 0;
    list-style: none;
    margin-bottom: 1.1rem;
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: rgba(255, 255, 255, 0.02);
    color: #D8D0C2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-social-btn:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    background-color: rgba(180, 154, 104, 0.05);
    transform: translateY(-3px) scale(1.05);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: #9E968B;
    text-transform: uppercase;
}

/* --- ANIMATION REVEALS --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.12s; }
.delay-200 { transition-delay: 0.24s; }
.delay-300 { transition-delay: 0.36s; }

/* --- RESPONSIVE ADAPTATIONS --- */
@media (max-width: 1199.98px) {
    .navbar-custom .nav-link-custom {
        margin: 0 0.6rem;
    }
}

@media (max-width: 991.98px) {
    :root {
        --section-spacing: var(--section-spacing-tablet);
        --banner-padding-top: 45px;
    }

    .top-bar-custom {
        display: none !important;
    }

    .navbar-custom {
        padding: 1.3rem 0;
    }

    .desktop-nav {
        display: none !important;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .hero-wrapper {
        text-align: center;
        padding-top: var(--banner-padding-top);
        min-height: auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image-wrapper {
        margin-top: 3.5rem;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-vertical-label {
        display: none;
    }

    .albums-slider-container {
        padding: 0;
    }

    .slider-control-btn {
        display: none !important;
    }

    .performance-banner-item {
        height: 400px;
    }

    .performance-banner-overlay {
        padding: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-spacing: var(--section-spacing-mobile);
        --banner-padding-top: 35px;
    }

    .statement-section {
        padding: 80px 0;
    }

    .story-image-inner {
        margin-bottom: 2.5rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-social-list {
        justify-content: center;
    }

    .footer-bottom {
        text-align: center !important;
    }
}

/* ========================================================================== */
/* 2026 AUTHENTIC BRAND MIGRATION                                              */
/* ========================================================================== */

html {
    scroll-behavior: smooth;
    background: var(--bg-dark);
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
}

body::selection {
    color: #020305;
    background: var(--brand-primary);
}

.container {
    width: min(100% - 40px, var(--container-width));
    max-width: var(--container-width);
}

h1, h2, h3, h4, h5, h6,
.hero-title,
.about-hero-title,
.section-title,
.booking-title,
.event-details-title,
.featured-album-title,
.featured-post-title,
.video-card-title {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0.035em;
}

a,
button,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(46, 178, 255, 0.55);
    outline-offset: 3px;
}

img {
    max-width: 100%;
}

.text-gold {
    color: var(--brand-primary) !important;
}

.top-bar-custom {
    height: 34px;
    background: var(--brand-primary);
    border: 0;
}

.top-bar-custom .top-bar-message,
.top-bar-custom .social-top-link {
    color: #031119;
}

.top-bar-custom .social-top-link:hover {
    color: #fff;
}

.navbar-custom,
.header-wrapper.is-sticky .navbar-custom {
    background: rgba(3, 5, 8, 0.96);
    border-color: rgba(255, 255, 255, 0.09);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(18px);
}

.navbar-custom {
    padding: 0.85rem 0;
}

.header-wrapper.is-sticky .navbar-custom {
    padding: 0.55rem 0;
}

.logo-container {
    padding: 0;
    margin-right: 1rem;
}

.logo-container img,
.header-wrapper.is-sticky .logo-container img {
    height: 56px;
    width: auto;
}

.header-wrapper.is-sticky .logo-container img {
    height: 46px;
}

.nav-link-custom {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.69rem;
    letter-spacing: 0.12em;
    margin: 0 0.72rem;
}

.nav-link-custom::after {
    height: 2px;
    background: var(--brand-primary);
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: #fff;
}

.btn-nav-booking,
.btn-premium-dark,
.btn-booking-submit,
.btn-booking-action {
    color: #031119;
    background: var(--brand-primary);
    border-color: var(--brand-primary);
}

.btn-nav-booking {
    padding: 0.75rem 1.35rem;
}

.btn-nav-booking:hover,
.btn-premium-dark:hover,
.btn-booking-submit:hover,
.btn-booking-action:hover {
    color: #fff;
    background: var(--brand-primary-hover);
    border-color: var(--brand-primary-hover);
    box-shadow: 0 10px 28px rgba(46, 178, 255, 0.24);
}

.mobile-nav-toggle {
    min-width: 44px;
    min-height: 44px;
    color: #fff;
}

.mobile-drawer {
    width: min(390px, 92vw);
    background: #080b0f;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: -24px 0 70px rgba(0, 0, 0, 0.35);
    padding: 4rem 2.25rem 2rem;
}

.mobile-drawer-close {
    min-width: 44px;
    min-height: 44px;
    color: #fff;
}

.mobile-drawer .border-top {
    border-color: rgba(255, 255, 255, 0.12) !important;
}

.mobile-drawer .text-muted,
.mobile-drawer .social-top-link {
    color: rgba(255, 255, 255, 0.7) !important;
}

.mobile-drawer-menu {
    gap: 0.1rem;
    margin-top: 0;
}

.mobile-drawer-menu .nav-link-custom {
    width: 100%;
    margin: 0;
    padding: 0.7rem 0;
    font-size: 1.05rem;
}

.mobile-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1090;
    display: block;
    visibility: hidden;
    opacity: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.66);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-backdrop.open {
    visibility: visible;
    opacity: 1;
}

.hero-wrapper {
    min-height: min(820px, calc(100vh - 110px));
    padding: 72px 0 84px;
    overflow: hidden;
    border: 0;
    background:
        radial-gradient(circle at 78% 35%, rgba(46, 178, 255, 0.16), transparent 31%),
        linear-gradient(105deg, rgba(2, 3, 5, 0.98), rgba(6, 11, 18, 0.94)),
        url('../images/philip-olaomi-worship-background.jpg') center / cover;
}

.hero-wrapper .hero-subtitle,
.about-eyebrow,
.statement-eyebrow,
.featured-label,
.post-category-tag,
.video-card-meta {
    color: var(--brand-primary);
    font-family: var(--font-sans);
    font-weight: 500;
    letter-spacing: 0.22em;
}

.hero-wrapper .hero-title,
.hero-wrapper h1 {
    max-width: 660px;
    color: #fff;
    font-size: clamp(3.1rem, 7vw, 6.3rem);
    line-height: 0.9;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.hero-wrapper .hero-description {
    max-width: 590px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.06rem;
}

.hero-wrapper .btn-premium-outline,
.dark-booking-cta-section .btn-premium-outline,
.events-dark-cta-section .btn-premium-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.65);
}

.hero-wrapper .btn-premium-outline:hover,
.dark-booking-cta-section .btn-premium-outline:hover,
.events-dark-cta-section .btn-premium-outline:hover {
    color: #031119;
    background: #fff;
    border-color: #fff;
}

.btn-premium,
.btn-booking-action,
.btn-booking-submit,
.album-explore-btn,
.video-filter-btn,
.shop-filter-btn {
    min-height: 48px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    letter-spacing: 0.1em;
}

.hero-image-wrapper {
    height: 620px;
    padding: 0;
}

.hero-image-wrapper::before {
    inset: auto 0 22px 6%;
    width: 82%;
    height: 72%;
    border: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 178, 255, 0.2), transparent 67%);
    filter: blur(14px);
    transform: none;
}

.hero-image-inner {
    height: 100%;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.hero-image-inner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 30px 35px rgba(0, 0, 0, 0.34));
}

.hero-image-wrapper:hover::before {
    transform: none;
}

.hero-image-wrapper:hover .hero-image-inner img {
    transform: translateY(-4px);
}

.hero-vertical-label {
    left: -18px;
    color: rgba(255, 255, 255, 0.45);
}

.statement-section,
.new-releases-section,
.about-story-section,
.album-collection-section,
.booking-form-section-container,
.shop-grid-container,
.blog-layout-container,
.featured-event-section,
.videos-grid-section {
    background: var(--bg-primary);
}

.statement-section {
    padding: clamp(78px, 9vw, 132px) 0;
}

.statement-quote {
    max-width: 980px;
    color: var(--text-primary);
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.2vw, 4.35rem);
    font-style: normal;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.statement-line,
.section-title::after,
.qt-capseparator {
    background: var(--brand-primary);
}

.section-title {
    text-transform: uppercase;
}

.new-releases-section,
.album-collection-section,
.videos-grid-section {
    background: var(--bg-secondary);
}

.album-card,
.album-grid-card,
.product-card-custom,
.video-grid-card,
.social-streaming-card {
    border-radius: var(--radius-md);
}

.album-img-box,
.album-grid-card .album-img-box,
.product-card-custom .product-img-box,
.featured-artwork-box,
.album-story-artwork,
.sidebar-album-thumb {
    border: 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.album-img-box img,
.album-grid-card .album-img-box img,
.product-card-custom .product-img-box img,
.featured-artwork-box img,
.album-story-artwork img {
    aspect-ratio: 1;
    object-fit: cover;
}

.album-overlay {
    background: rgba(0, 0, 0, 0.64);
}

.play-btn-circle,
.play-btn-overlay-custom {
    color: #031119;
    background: var(--brand-primary);
}

.album-card:hover .play-btn-circle,
.video-grid-card:hover .play-btn-overlay-custom,
.featured-video-img-wrap:hover .play-btn-overlay-custom {
    color: #fff;
    background: var(--brand-primary-hover);
}

.album-title,
.product-title,
.album-grid-card .album-title,
.video-card-title {
    font-family: var(--font-serif);
    letter-spacing: 0.02em;
}

.slider-control-btn {
    color: #031119;
    background: var(--brand-primary);
    border: 0;
}

.slider-control-btn:hover {
    color: #fff;
    background: var(--brand-primary-hover);
}

.story-section,
.achievements-section,
.featured-release-section,
.featured-video-section,
.stay-connected-section,
.dark-booking-cta-section,
.events-dark-cta-section {
    color: #fff;
    background:
        linear-gradient(115deg, rgba(3, 5, 8, 0.98), rgba(7, 15, 24, 0.95)),
        url('../images/philip-olaomi-worship-background.jpg') center / cover;
}

.story-section h2,
.story-section h3,
.story-section p,
.achievements-section h2,
.achievements-section h3,
.achievements-section p,
.featured-release-section h2,
.featured-release-section h3,
.featured-release-section p,
.featured-video-section h2,
.featured-video-section h3,
.featured-video-section p,
.stay-connected-section h2,
.stay-connected-section h3,
.stay-connected-section p,
.dark-booking-cta-section h2,
.dark-booking-cta-section p,
.events-dark-cta-section h2,
.events-dark-cta-section p {
    color: inherit;
}

.story-image-inner,
.about-hero-image-inner,
.booking-hero-image-inner,
.album-hero-image-inner {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.story-image-wrapper::before,
.about-hero-image-wrapper::before,
.booking-hero-image-wrapper::before,
.album-hero-image-wrapper::before {
    border-color: rgba(46, 178, 255, 0.45);
    background: rgba(46, 178, 255, 0.07);
}

.performance-banner-overlay,
.performance-side-overlay,
.cinematic-image-overlay,
.events-image-banner-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.84));
}

.performance-label,
.event-date-number,
.event-date-month-year,
.product-price,
.featured-album-meta,
.album-meta,
.achievement-year,
.required-mark {
    color: var(--brand-primary) !important;
}

.booking-section {
    background: var(--brand-primary);
}

.booking-section .booking-title,
.booking-section .booking-description {
    color: #031119;
}

.booking-section .btn-booking-action {
    color: #fff;
    background: #05080b;
    border-color: #05080b;
}

.booking-section .btn-booking-action:hover {
    color: #05080b;
    background: #fff;
    border-color: #fff;
}

.footer-section {
    position: relative;
    overflow: hidden;
    padding-top: clamp(72px, 8vw, 112px);
    color: rgba(255, 255, 255, 0.78);
    background: #020305;
}

.footer-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 84% 10%, rgba(46, 178, 255, 0.13), transparent 30%);
}

.footer-section .container {
    position: relative;
}

.footer-brand,
.footer-heading {
    color: #fff;
}

.footer-tagline,
.footer-links a:hover {
    color: var(--brand-primary);
}

.footer-desc-text,
.footer-links a,
.footer-copyright {
    color: rgba(255, 255, 255, 0.62);
}

.footer-social-btn {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
}

.footer-social-btn:hover {
    color: #031119;
    background: var(--brand-primary);
    border-color: var(--brand-primary);
}

.footer-bottom {
    border-color: rgba(255, 255, 255, 0.12);
}

.about-hero-wrapper,
.booking-hero-wrapper,
.album-hero-wrapper,
.blog-hero-wrapper,
.events-hero-wrapper,
.videos-hero-wrapper,
.shop-hero-wrapper {
    background:
        radial-gradient(circle at 82% 22%, rgba(46, 178, 255, 0.16), transparent 30%),
        linear-gradient(110deg, #030508, #08121c);
}

.about-hero-wrapper h1,
.about-hero-wrapper h2,
.about-hero-wrapper p,
.booking-hero-wrapper h1,
.booking-hero-wrapper h2,
.booking-hero-wrapper p,
.album-hero-wrapper h1,
.album-hero-wrapper h2,
.album-hero-wrapper p,
.blog-hero-wrapper h1,
.blog-hero-wrapper h2,
.blog-hero-wrapper p,
.events-hero-wrapper h1,
.events-hero-wrapper h2,
.events-hero-wrapper p,
.videos-hero-wrapper h1,
.videos-hero-wrapper h2,
.videos-hero-wrapper p,
.shop-hero-wrapper h1,
.shop-hero-wrapper h2,
.shop-hero-wrapper p {
    color: #fff;
}

.about-hero-title {
    text-transform: uppercase;
}

.about-hero-image-inner,
.booking-hero-image-inner {
    background: radial-gradient(circle at 50% 65%, rgba(46, 178, 255, 0.16), transparent 64%);
}

.about-hero-image-inner img {
    object-fit: contain;
    object-position: center bottom;
}

.booking-card-wrapper,
.featured-post-card,
.sidebar-widget,
.scripture-card,
.success-message-wrapper {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.booking-card-wrapper {
    padding: clamp(24px, 5vw, 72px);
}

.booking-step-number {
    color: #031119;
    background: var(--brand-primary);
}

.booking-form-divider,
.blog-list-item,
.sidebar-list-item {
    border-color: var(--border-color);
}

.form-control-custom,
.search-widget-input,
.shop-sort-select {
    min-height: 52px;
    color: var(--text-primary);
    border: 1px solid #cfd9e0;
    border-radius: var(--radius-sm);
    background: #fff;
}

.form-control-custom:focus,
.search-widget-input:focus,
.shop-sort-select:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px rgba(46, 178, 255, 0.12);
}

.form-control-custom.is-invalid {
    border-color: #c13f3f;
}

.validation-error-alert {
    color: #8f2424;
    background: #fff1f1;
}

.shop-filter-btn.active,
.shop-filter-btn:hover,
.video-filter-btn.active,
.video-filter-btn:hover,
.pagination-number.active,
.pagination-number:hover {
    color: #031119;
    background: var(--brand-primary);
    border-color: var(--brand-primary);
}

.cart-badge-indicator,
.duration-badge-custom {
    color: #031119;
    background: var(--brand-primary);
}

.album-story-section-alt,
.scripture-section,
.editorial-quote-section {
    background: var(--bg-secondary);
}

.cinematic-image-break,
.events-image-banner-wrapper {
    background-position: center;
}

.featured-video-img-wrap,
.video-thumbnail-box,
.featured-event-img-wrap {
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.featured-video-img-wrap,
.video-thumbnail-box {
    aspect-ratio: 16 / 9;
}

.featured-video-img-wrap img,
.video-thumbnail-box img,
.featured-event-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-lightbox-modal {
    background: rgba(0, 0, 0, 0.92);
}

.video-lightbox-content {
    border-radius: var(--radius-md);
    background: #071018;
}

.social-streaming-card {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
}

.social-streaming-card:hover {
    border-color: var(--brand-primary);
    background: rgba(46, 178, 255, 0.1);
}

.social-streaming-card i {
    color: var(--brand-primary);
}

.reveal-on-scroll {
    transform: translateY(18px);
}

@media (max-width: 1199.98px) {
    .navbar-custom .nav-link-custom {
        margin-inline: 0.48rem;
        letter-spacing: 0.08em;
    }

    .btn-nav-booking {
        padding-inline: 1rem;
    }
}

@media (max-width: 991.98px) {
    .container {
        width: min(100% - 32px, var(--container-width));
    }

    .navbar-custom,
    .header-wrapper.is-sticky .navbar-custom {
        padding: 0.55rem 0;
    }

    .logo-container img,
    .header-wrapper.is-sticky .logo-container img {
        height: 48px;
    }

    .hero-wrapper {
        padding: 64px 0 0;
        text-align: left;
    }

    .hero-wrapper .hero-description {
        margin-inline: 0;
    }

    .hero-image-wrapper {
        height: 500px;
        max-width: 500px;
        margin-top: 2rem;
    }

    .about-hero-wrapper,
    .booking-hero-wrapper,
    .album-hero-wrapper,
    .shop-hero-wrapper {
        text-align: left;
    }

    .blog-sidebar-wrapper {
        margin-top: 3rem;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 16px;
    }

    .container {
        width: min(100% - 28px, var(--container-width));
    }

    .hero-wrapper .hero-title,
    .about-hero-title {
        font-size: clamp(2.8rem, 15vw, 4.25rem);
    }

    .hero-wrapper .hero-description {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-image-wrapper {
        height: 430px;
        margin-bottom: 0;
    }

    .statement-quote {
        font-size: clamp(1.85rem, 9.5vw, 3rem);
    }

    .booking-card-wrapper {
        padding: 24px 18px;
    }

    .performance-banner-item {
        height: 340px;
    }

    .mobile-drawer {
        padding-inline: 1.5rem;
    }

    .video-lightbox-content {
        width: calc(100% - 24px);
    }
}

@media (max-width: 420px) {
    .container {
        width: min(100% - 24px, var(--container-width));
    }

    .hero-wrapper .hero-title,
    .about-hero-title {
        font-size: clamp(2.55rem, 15vw, 3.5rem);
    }

    .hero-image-wrapper {
        height: 380px;
    }

    .footer-section .col-6 {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 575.98px) {
    .logo-container img {
        height: 42px;
    }

    .btn-premium {
        width: 100%;
        margin-bottom: 0.8rem;
    }

    .btn-premium:last-child {
        margin-bottom: 0;
    }

    .booking-section {
        padding: 80px 0;
    }
}

/* --- ABOUT PAGE SPECIFIC PREMIUM STYLES --- */
.about-hero-wrapper {
    padding: var(--banner-padding-top) 0 var(--section-spacing) 0;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.about-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--accent-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.2rem;
}

.about-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3.2rem, 7vw, 5.8rem);
    line-height: 1.05;
    margin-bottom: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: none;
}

.about-hero-tagline {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--accent-olive);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.about-hero-intro {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 580px;
    margin-bottom: 0;
}

.about-hero-image-wrapper {
    position: relative;
    padding-left: 20px;
}

.about-hero-image-inner {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--accent-gold);
    box-shadow: 0 20px 50px rgba(41, 36, 31, 0.08);
    position: relative;
    background-color: var(--bg-secondary);
}

.about-hero-image-inner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.about-hero-image-inner img:hover {
    transform: scale(1.02);
}

.about-hero-vertical-label {
    position: absolute;
    right: -50px;
    top: 100px;
    transform: rotate(90deg);
    transform-origin: left top;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    color: var(--accent-gold);
    text-transform: uppercase;
    white-space: nowrap;
}

/* Story Sections */
.about-story-section {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-primary);
}

.story-grid-item {
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
}

.story-grid-item:last-child {
    border-bottom: 1px solid var(--border-color);
}

.story-number {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 0.1em;
}

.story-section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--text-primary);
    font-weight: 600;
}

.story-para {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-secondary);
    max-width: 720px;
    margin-bottom: 1.5rem;
}

.story-para:last-child {
    margin-bottom: 0;
}

/* Achievements section */
.achievements-section {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.achievement-year-wrap {
    text-align: center;
}

.achievement-year {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    line-height: 1;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 1rem;
}

.achievement-title {
    font-family: var(--font-sans);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.achievement-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
}

.achievement-item {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    color: var(--text-secondary);
    font-style: italic;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(180, 154, 104, 0.2);
    text-align: center;
}

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

/* Album Story */
.album-story-wrapper {
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.album-story-artwork {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(41, 36, 31, 0.06);
}

.album-story-artwork img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.album-story-artwork:hover img {
    transform: scale(1.02);
}

/* Full Width Image Break */
.cinematic-image-break {
    height: 480px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.cinematic-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(41,36,31,0.2) 0%, rgba(41,36,31,0.5) 100%);
}

/* Large Editorial Quote */
.editorial-quote-section {
    padding: 130px 0;
    background-color: var(--bg-primary);
    text-align: center;
}

.large-quote-mark {
    font-family: var(--font-serif);
    font-size: 5rem;
    line-height: 0.1;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 1.5rem;
}

.editorial-quote-text {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    line-height: 1.5;
    color: var(--text-primary);
    max-width: 850px;
    margin: 0 auto;
    font-style: italic;
}

/* Lyrics Section */
.lyrics-section {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.lyrics-intro-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-primary);
    max-width: 650px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.lyrics-container {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    line-height: 1.9;
    color: var(--text-primary);
    max-width: 680px;
    margin: 0 auto;
    letter-spacing: 0.01em;
}

.lyrics-stanza {
    margin-bottom: 2rem;
}

.lyrics-stanza:last-child {
    margin-bottom: 0;
}

/* Scripture Section */
.scripture-section {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.scripture-intro {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: #D8D0C2;
    margin-bottom: 2.5rem;
}

.scripture-card {
    border: 1px solid rgba(180, 154, 104, 0.25);
    padding: 3rem;
    border-radius: 4px;
    background-color: rgba(33, 29, 25, 0.4);
}

.scripture-reference {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.5rem;
}

.scripture-text {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.7rem);
    line-height: 1.7;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

/* Responsive Overrides for About Page */
@media (max-width: 991.98px) {
    .about-hero-title {
        font-size: clamp(2.8rem, 6vw, 4.2rem);
    }

    .about-hero-image-wrapper {
        padding-left: 0;
        margin-top: 3rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero-vertical-label {
        display: none;
    }

    .story-grid-item {
        padding: 2rem 0;
    }

    .cinematic-image-break {
        height: 350px;
    }

    .scripture-card {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .about-hero-wrapper {
        text-align: center;
        padding-top: 3rem;
    }

    .about-hero-intro {
        margin-left: auto;
        margin-right: auto;
    }

    .editorial-quote-section {
        padding: 80px 0;
    }

    .large-quote-mark {
        font-size: 4rem;
    }
}

/* --- BOOKING PAGE SPECIFIC PREMIUM STYLES --- */
.booking-hero-wrapper {
    padding: var(--banner-padding-top) 0 var(--section-spacing) 0;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.booking-hero-image-wrapper {
    position: relative;
    padding-left: 20px;
}

.booking-hero-image-inner {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--accent-gold);
    box-shadow: 0 20px 50px rgba(41, 36, 31, 0.08);
    position: relative;
    background-color: var(--bg-secondary);
}

.booking-hero-image-inner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.booking-hero-image-inner img:hover {
    transform: scale(1.02);
}

.booking-form-section-container {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-primary);
}

/* Premium Booking Card Details */
.booking-card-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #FBF8F1;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(41, 36, 31, 0.04);
    padding: 4rem;
}

.booking-form-divider {
    border-top: 1px solid var(--border-color);
    margin: 3.5rem 0;
}

/* Sections Inside Form */
.booking-form-step {
    margin-bottom: 0;
}

.booking-step-number {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 0.5rem;
}

.booking-step-title {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Custom form inputs styling */
.form-group-custom {
    margin-bottom: 1.8rem;
}

.form-group-custom:last-child {
    margin-bottom: 0;
}

.form-label-custom {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #4F4942;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}

.form-label-custom .required-mark {
    color: var(--accent-gold);
    font-weight: bold;
    margin-left: 3px;
}

.form-input-desc {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 0.4rem;
    line-height: 1.4;
}

.form-control-custom {
    width: 100%;
    background-color: #F9F6EF;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    height: 52px;
    padding: 0 1.2rem;
    border-radius: 4px;
    transition: var(--transition-fast);
    outline: none;
    box-sizing: border-box;
}

select.form-control-custom {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23716960' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

textarea.form-control-custom {
    height: auto;
    min-height: 160px;
    padding: 1rem 1.2rem;
    resize: vertical;
}

.form-control-custom::placeholder {
    color: #A69E94;
    font-size: 14px;
}

.form-control-custom:focus {
    border-color: var(--accent-gold);
    background-color: #FBF9F4;
    box-shadow: 0 0 0 4px rgba(180, 154, 104, 0.08);
}

.form-control-custom.is-invalid {
    border-color: #C25C4D !important;
    background-color: #FCF7F6;
}

.form-control-custom.is-invalid:focus {
    box-shadow: 0 0 0 4px rgba(194, 92, 77, 0.08);
}

.validation-error-alert {
    color: #C25C4D;
    font-family: var(--font-body);
    font-size: 12px;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Premium Currency Treatment */
.currency-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol-prefix {
    position: absolute;
    left: 1.2rem;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 14px;
    color: var(--text-secondary);
    pointer-events: none;
}

.currency-input-wrapper .form-control-custom {
    padding-left: 2.2rem;
}

/* Submission action */
.form-submit-wrapper {
    margin-top: 3.5rem;
    text-align: right;
}

.btn-booking-submit {
    font-family: var(--font-sans);
    font-weight: var(--btn-font-weight);
    font-size: var(--btn-font-size);
    letter-spacing: var(--btn-letter-spacing);
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: var(--btn-border-radius);
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    transition: var(--btn-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-sizing: border-box;
    line-height: 1;
}

.btn-booking-submit .btn-arrow {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-left: 0.5rem;
    font-size: 1rem;
    line-height: 1;
}

.btn-booking-submit:hover {
    background-color: #c9a24b;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 26, 26, 0.12);
}

.btn-booking-submit:hover .btn-arrow {
    transform: translateX(3px);
}

.btn-booking-submit:active {
    transform: translateY(-0.5px) scale(0.98) !important;
    box-shadow: 0 2px 8px rgba(26, 26, 26, 0.08) !important;
}

.btn-booking-submit:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.45) !important;
}

/* Success Envelop Panel */
.success-message-wrapper {
    text-align: center;
    padding: 3rem 0;
}

.success-icon-box {
    width: 72px;
    height: 72px;
    background-color: rgba(105, 112, 90, 0.12);
    color: var(--accent-olive);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.8rem auto;
}

.success-message-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.success-message-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.8;
}

/* Dark CTA section styling */
.dark-booking-cta-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 90px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive booking overrides */
@media (max-width: 991.98px) {
    .booking-card-wrapper {
        padding: 3rem 2rem;
    }

    .booking-form-divider {
        margin: 2.5rem 0;
    }

    .form-submit-wrapper {
        text-align: center;
    }

    .btn-booking-submit {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .booking-hero-wrapper {
        text-align: center;
        padding-top: 3rem;
    }

    .booking-hero-image-wrapper {
        padding-left: 0;
        margin-top: 3rem;
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
    }

    .booking-card-wrapper {
        padding: 2rem 1.25rem;
    }

    .booking-step-title {
        margin-bottom: 1.5rem;
    }
}

/* --- SHOP PAGE SPECIFIC PREMIUM STYLES --- */
.shop-hero-wrapper {
    padding: var(--banner-padding-top) 0 var(--section-spacing) 0;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.shop-hero-collage {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-collage-item {
    position: absolute;
    width: 240px;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--accent-gold);
    box-shadow: 0 15px 40px rgba(41, 36, 31, 0.08);
    transition: var(--transition-smooth);
    background-color: var(--bg-secondary);
}

.shop-collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-collage-item-1 {
    transform: rotate(-6deg) translateX(-40px);
    z-index: 2;
}

.shop-collage-item-2 {
    transform: rotate(6deg) translateX(50px) translateY(20px);
    z-index: 1;
}

.shop-hero-collage:hover .shop-collage-item-1 {
    transform: rotate(-3deg) translateX(-60px);
}

.shop-hero-collage:hover .shop-collage-item-2 {
    transform: rotate(3deg) translateX(70px) translateY(10px);
}

/* Shop controls layout */
.shop-controls-container {
    padding: 3rem 0 0 0;
    background-color: var(--bg-primary);
}

.shop-controls-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.shop-filters {
    display: flex;
    gap: 1.5rem;
}

.shop-filter-btn {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    text-transform: uppercase;
    text-decoration: none;
    padding-bottom: 4px;
    position: relative;
    transition: var(--transition-fast);
}

.shop-filter-btn:hover,
.shop-filter-btn.active {
    color: var(--text-primary);
}

.shop-filter-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent-gold);
}

.shop-results-count {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* Custom styled sort dropdown */
.shop-sort-wrapper {
    position: relative;
}

.shop-sort-select {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-primary);
    text-transform: uppercase;
    background-color: transparent;
    border: 1px solid var(--border-color);
    padding: 0.6rem 2.2rem 0.6rem 1.2rem;
    border-radius: 4px;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2329241F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 0.8rem;
    transition: var(--transition-fast);
    cursor: pointer;
}

.shop-sort-select:focus {
    border-color: var(--accent-gold);
}

/* Product grid cards */
.shop-grid-container {
    padding-top: 3rem;
    padding-bottom: var(--section-spacing);
    background-color: var(--bg-primary);
}

.product-card-custom {
    background-color: transparent;
    border: none;
    border-radius: 0;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-custom .product-img-box {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(41, 36, 31, 0.03);
    transition: var(--transition-smooth);
}

.product-card-custom .product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.product-card-custom:hover .product-img-box {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(41, 36, 31, 0.06);
}

.product-card-custom:hover .product-img-box img {
    transform: scale(1.03);
}

/* Album Card Metadata below image */
.product-card-custom .product-info-wrap {
    padding-top: 1.2rem;
    text-align: center;
}

.product-card-custom .product-category {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.product-card-custom .product-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.product-card-custom .product-price {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    margin-bottom: 1.2rem;
}

/* Cart Badge indicator in header menu */
.cart-badge-indicator {
    background-color: var(--accent-gold);
    color: var(--text-light);
    font-size: 9px;
    font-weight: 700;
    padding: 0.1rem 0.35rem;
    border-radius: 50px;
    vertical-align: middle;
    margin-left: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .shop-hero-collage {
        margin-top: 3rem;
        height: 280px;
    }

    .shop-collage-item {
        width: 180px;
    }

    .shop-collage-item-1 {
        transform: rotate(-6deg) translateX(-30px);
    }

    .shop-collage-item-2 {
        transform: rotate(6deg) translateX(40px) translateY(10px);
    }

    .shop-grid-container {
        padding-bottom: var(--section-spacing-tablet);
    }
}

@media (max-width: 767.98px) {
    .shop-hero-wrapper {
        text-align: center;
        padding-top: 3rem;
    }

    .shop-hero-collage {
        display: none; /* Hide collage on mobile screens to save space */
    }

    .shop-controls-bar {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .shop-sort-wrapper {
        width: 100%;
    }

    .shop-sort-select {
        width: 100%;
    }

}

/* --- ALBUM CATALOGUE SPECIFIC PREMIUM STYLES --- */
.album-hero-wrapper {
    padding: var(--banner-padding-top) 0 var(--section-spacing) 0;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.album-hero-image-wrapper {
    position: relative;
    padding-left: 20px;
}

.album-hero-image-inner {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--accent-gold);
    box-shadow: 0 20px 50px rgba(41, 36, 31, 0.08);
    position: relative;
    background-color: var(--bg-secondary);
}

.album-hero-image-inner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.album-hero-image-inner img:hover {
    transform: scale(1.02);
}

/* Featured Release Section */
.featured-release-section {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.featured-label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.featured-album-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.featured-album-artist {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.featured-album-meta {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent-olive);
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: flex;
    gap: 1.5rem;
}

.featured-album-desc {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.featured-artwork-box {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 45px rgba(41, 36, 31, 0.06);
    background-color: var(--bg-primary);
}

.featured-artwork-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.featured-artwork-box:hover img {
    transform: scale(1.02);
}

/* Album Collection Grid */
.album-collection-section {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.album-grid-card {
    background-color: transparent;
    border: none;
    border-radius: 0;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.album-grid-card .album-img-box {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(41, 36, 31, 0.03);
    transition: var(--transition-smooth);
}

.album-grid-card .album-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.album-grid-card:hover .album-img-box {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(41, 36, 31, 0.06);
}

.album-grid-card:hover .album-img-box img {
    transform: scale(1.03);
}

.album-grid-card .album-info-wrap {
    padding-top: 1.2rem;
    text-align: center;
}

.album-grid-card .album-meta {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.album-grid-card .album-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.album-grid-card .album-explore-btn {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 2px;
    transition: var(--transition-fast);
    display: inline-block;
    margin-top: 0.6rem;
}

.album-grid-card:hover .album-explore-btn {
    color: var(--accent-gold);
    border-bottom-color: var(--text-primary);
}

/* Ministry block styling */
.album-story-section-alt {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-secondary);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .featured-artwork-box {
        margin-top: 3rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767.98px) {
    .album-hero-wrapper {
        text-align: center;
        padding-top: 3rem;
    }

    .album-hero-image-wrapper {
        padding-left: 0;
        margin-top: 3rem;
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
    }

    .featured-album-meta {
        justify-content: center;
    }

    .featured-release-section {
        text-align: center;
    }

    .featured-album-desc {
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- BLOG PAGE SPECIFIC PREMIUM STYLES --- */
.blog-hero-wrapper {
    padding: var(--banner-padding-top) 0 var(--section-spacing) 0;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.blog-layout-container {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-primary);
}

/* Post card layouts */
.featured-post-card {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 3.5rem;
    margin-bottom: 3.5rem;
}

.post-category-tag {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.8rem;
}

.featured-post-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.25;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.post-meta-details {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.post-excerpt {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 760px;
    margin-bottom: 2rem;
}

.blog-list-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
}

.blog-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.blog-post-title {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    line-height: 1.35;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.blog-post-title:hover {
    color: var(--accent-gold);
}

.read-article-link {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 2px;
    transition: var(--transition-fast);
    display: inline-block;
}

.read-article-link:hover {
    color: var(--accent-gold);
    border-bottom-color: var(--text-primary);
}

/* Sidebar Styling */
.blog-sidebar-wrapper {
    padding-left: 2rem;
}

.sidebar-widget {
    margin-bottom: 3.5rem;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget-title {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.8rem;
    margin-bottom: 1.5rem;
}

/* Search widget */
.search-widget-input {
    width: 100%;
    background-color: #F9F6EF;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    height: 48px;
    padding: 0 1rem;
    border-radius: 4px;
    transition: var(--transition-fast);
    outline: none;
}

.search-widget-input:focus {
    border-color: var(--accent-gold);
    background-color: #FBF9F4;
}

/* Categories & lists in sidebar */
.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list-item {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(216, 208, 194, 0.4);
    font-size: 14px;
}

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

.sidebar-list-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.sidebar-list-item a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

/* Album Mini Sidebar Card */
.sidebar-album-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(216, 208, 194, 0.4);
}

.sidebar-album-card:last-child {
    border-bottom: none;
}

.sidebar-album-thumb {
    width: 54px;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
    transition: var(--transition-fast);
}

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

.sidebar-album-details {
    flex-grow: 1;
}

.sidebar-album-title {
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
    line-height: 1.3;
}

.sidebar-album-meta {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.sidebar-album-card:hover .sidebar-album-thumb {
    transform: scale(1.04);
    border-color: var(--accent-gold);
}

/* Pagination bar */
.blog-pagination-container {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.pagination-arrow {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.pagination-arrow:hover {
    color: var(--accent-gold);
}

.pagination-arrow.disabled {
    color: #D8D0C2;
    pointer-events: none;
}

.pagination-number {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: none;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.pagination-number:hover,
.pagination-number.active {
    color: var(--text-primary);
}

.pagination-number.active {
    border-bottom: 1px solid var(--accent-gold);
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    .blog-sidebar-wrapper {
        padding-left: 0;
        margin-top: 5rem;
        border-top: 1px solid var(--border-color);
        padding-top: 4rem;
    }
}

/* --- EVENTS PAGE SPECIFIC PREMIUM STYLES --- */
.events-hero-wrapper {
    padding: var(--banner-padding-top) 0 var(--section-spacing) 0;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.featured-event-section {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.featured-event-img-wrap {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 45px rgba(41, 36, 31, 0.06);
    background-color: var(--bg-primary);
}

.featured-event-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.featured-event-img-wrap:hover img {
    transform: scale(1.03);
}

/* Date Block */
.event-date-block {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.event-date-number {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.event-date-month-year {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    text-transform: uppercase;
    line-height: 1.3;
}

.event-details-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.event-details-location {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-details-desc {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 580px;
    margin-bottom: 2rem;
}

/* Empty State STAY CONNECTED Section */
.stay-connected-section {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.social-streaming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.social-streaming-card {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 1.8rem;
    text-align: center;
    background-color: var(--bg-secondary);
    transition: var(--transition-smooth);
    text-decoration: none;
    display: block;
}

.social-streaming-card i {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: inline-block;
    transition: var(--transition-fast);
}

.social-streaming-title {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.social-streaming-desc {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
}

.social-streaming-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 35px rgba(41, 36, 31, 0.05);
}

.social-streaming-card:hover i {
    color: var(--accent-gold);
}

/* Visual banner override styling if needed */
.events-image-banner-wrapper {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.events-image-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(41, 36, 31, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.events-banner-text {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #F7F3EA;
    text-transform: uppercase;
}

/* Dark CTA section styling */
.events-dark-cta-section {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
}

.events-dark-cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.events-dark-cta-desc {
    font-family: var(--font-body);
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.8;
    color: rgba(247, 243, 234, 0.7);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .featured-event-img-wrap {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 3rem;
    }
}

@media (max-width: 767.98px) {
    .events-hero-wrapper {
        text-align: center;
    }

    .featured-event-section {
        text-align: center;
    }

    .event-date-block {
        justify-content: center;
    }

    .event-details-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .event-details-location {
        justify-content: center;
    }
}

/* --- VIDEOS PAGE SPECIFIC PREMIUM STYLES --- */
.videos-hero-wrapper {
    padding: var(--banner-padding-top) 0 var(--section-spacing) 0;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.featured-video-section {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.featured-video-img-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 45px rgba(41, 36, 31, 0.06);
    background-color: var(--bg-primary);
    cursor: pointer;
}

.featured-video-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.featured-video-img-wrap:hover img {
    transform: scale(1.02);
}

/* Play Button and Badge Overlays */
.play-btn-overlay-custom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(25, 24, 23, 0.65);
    border: 1px solid rgba(216, 199, 163, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    color: #F7F3EA;
    font-size: 1.3rem;
}

.featured-video-img-wrap:hover .play-btn-overlay-custom {
    background: var(--accent-gold);
    border-color: var(--text-primary);
    color: var(--text-primary);
    transform: translate(-50%, -50%) scale(1.08);
}

.duration-badge-custom {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(25, 24, 23, 0.85);
    border: 1px solid rgba(216, 208, 194, 0.2);
    color: #F7F3EA;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 2px;
    letter-spacing: 0.05em;
}

/* Videos List Grid */
.videos-grid-section {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-primary);
}

.video-filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.video-filter-btn {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 4px;
    transition: var(--transition-fast);
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.video-filter-btn.active,
.video-filter-btn:hover {
    color: var(--text-primary);
    border-bottom-color: var(--accent-gold);
}

.video-grid-card {
    background: transparent;
    border: none;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.video-thumbnail-box {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(41, 36, 31, 0.03);
    margin-bottom: 1rem;
    background-color: var(--bg-secondary);
}

.video-thumbnail-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.video-grid-card:hover .video-thumbnail-box img {
    transform: scale(1.03);
}

.video-grid-card:hover .play-btn-overlay-custom {
    background: var(--accent-gold);
    border-color: var(--text-primary);
    color: var(--text-primary);
    transform: translate(-50%, -50%) scale(1.05);
}

.video-card-meta {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    display: block;
}

.video-card-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.35;
}

/* Lightbox Modal */
.video-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(25, 24, 23, 0.95);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 2rem;
}

.video-lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.video-lightbox-content {
    width: 100%;
    max-width: 960px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.video-lightbox-modal.active .video-lightbox-content {
    transform: translateY(0);
}

.video-lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: #F7F3EA;
    font-size: 2.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 1;
}

.video-lightbox-close:hover {
    color: var(--accent-gold);
}

.video-lightbox-player-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid rgba(216, 208, 194, 0.15);
    background-color: #000;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.video-lightbox-player-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-lightbox-details {
    padding-top: 1.5rem;
    color: #F7F3EA;
}

.video-lightbox-category {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.video-lightbox-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    .featured-video-img-wrap {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 3rem;
    }

    .video-lightbox-modal {
        padding: 1rem;
    }

    .video-lightbox-close {
        top: -40px;
        right: 10px;
    }
}

@media (max-width: 767.98px) {
    .videos-hero-wrapper {
        text-align: center;
    }

    .featured-video-section {
        text-align: center;
    }
}

/* Final page-level cascade for the authentic brand theme. */
.about-hero-wrapper,
.booking-hero-wrapper,
.album-hero-wrapper,
.blog-hero-wrapper,
.events-hero-wrapper,
.videos-hero-wrapper,
.shop-hero-wrapper {
    background:
        radial-gradient(circle at 82% 22%, rgba(46, 178, 255, 0.16), transparent 30%),
        linear-gradient(110deg, #030508, #08121c);
}

.about-hero-title,
.about-hero-tagline,
.about-hero-intro,
.blog-hero-wrapper .about-hero-title,
.blog-hero-wrapper .about-hero-tagline,
.events-hero-wrapper .about-hero-title,
.events-hero-wrapper .about-hero-tagline,
.videos-hero-wrapper .about-hero-title,
.videos-hero-wrapper .about-hero-tagline,
.shop-hero-wrapper .about-hero-title,
.shop-hero-wrapper .about-hero-tagline {
    color: #fff;
}

.about-eyebrow,
.featured-label,
.post-category-tag,
.video-card-meta,
.video-lightbox-category,
.product-category,
.album-grid-card .album-meta,
.sidebar-album-meta {
    color: var(--brand-primary);
}

.about-hero-image-inner,
.booking-hero-image-inner,
.album-hero-image-inner {
    border-radius: var(--radius-md);
    background: radial-gradient(circle at 50% 65%, rgba(46, 178, 255, 0.16), transparent 64%);
    box-shadow: var(--shadow-md);
}

.about-hero-image-inner img {
    object-fit: contain;
    object-position: center bottom;
}

.story-number,
.booking-step-number {
    color: #031119;
    background: var(--brand-primary);
}

.achievements-section,
.featured-release-section,
.featured-video-section,
.stay-connected-section,
.dark-booking-cta-section,
.events-dark-cta-section {
    color: #fff;
    background:
        linear-gradient(115deg, rgba(3, 5, 8, 0.98), rgba(7, 15, 24, 0.95)),
        url('../images/philip-olaomi-worship-background.jpg') center / cover;
}

.achievements-section h2,
.achievements-section h3,
.achievements-section p,
.featured-release-section h2,
.featured-release-section h3,
.featured-release-section p,
.featured-video-section h2,
.featured-video-section h3,
.featured-video-section p,
.stay-connected-section h2,
.stay-connected-section h3,
.stay-connected-section p,
.dark-booking-cta-section h2,
.dark-booking-cta-section p,
.events-dark-cta-section h2,
.events-dark-cta-section p {
    color: inherit;
}

.album-story-section-alt,
.scripture-section,
.editorial-quote-section,
.album-collection-section,
.videos-grid-section {
    background: var(--bg-secondary);
}

.booking-card-wrapper,
.featured-post-card,
.sidebar-widget,
.scripture-card,
.success-message-wrapper {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.form-control-custom,
.search-widget-input,
.shop-sort-select {
    min-height: 52px;
    color: var(--text-primary);
    border-color: #cfd9e0;
    border-radius: var(--radius-sm);
    background-color: #fff;
}

.form-control-custom:focus,
.search-widget-input:focus,
.shop-sort-select:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px rgba(46, 178, 255, 0.12);
}

.shop-filter-btn.active,
.shop-filter-btn:hover,
.video-filter-btn.active,
.video-filter-btn:hover,
.pagination-number.active,
.pagination-number:hover {
    color: #031119;
    background: var(--brand-primary);
    border-color: var(--brand-primary);
}

.product-card-custom .product-img-box,
.album-grid-card .album-img-box,
.featured-artwork-box,
.featured-video-img-wrap,
.video-thumbnail-box,
.featured-event-img-wrap {
    overflow: hidden;
    border-color: transparent;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.featured-video-img-wrap,
.video-thumbnail-box {
    aspect-ratio: 16 / 9;
}

.featured-video-img-wrap img,
.video-thumbnail-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-lightbox-modal {
    background: rgba(0, 0, 0, 0.92);
}

.video-lightbox-content {
    border-radius: var(--radius-md);
    background: #071018;
}

@media (max-width: 767.98px) {
    .about-hero-wrapper,
    .booking-hero-wrapper,
    .album-hero-wrapper,
    .shop-hero-wrapper,
    .events-hero-wrapper,
    .videos-hero-wrapper {
        text-align: left;
    }

    .booking-card-wrapper {
        padding: 24px 18px;
    }
}

/* ========================================================================== */
/* RESPONSIVE SPACING AUDIT                                                    */
/* ========================================================================== */

:root {
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --section-spacing: clamp(4.5rem, 7vw, 6.5rem);
    --section-spacing-compact: clamp(3.25rem, 5vw, 4.75rem);
    --page-hero-spacing: clamp(4rem, 6vw, 5.75rem);
    --content-gap: clamp(1.75rem, 4vw, 3rem);
}

main > section {
    margin: 0;
}

.row.g-5 {
    --bs-gutter-x: var(--content-gap);
    --bs-gutter-y: var(--content-gap);
}

.row.g-4 {
    --bs-gutter-x: clamp(1.25rem, 2.5vw, 1.75rem);
    --bs-gutter-y: clamp(1.25rem, 2.5vw, 1.75rem);
}

.about-hero-wrapper,
.booking-hero-wrapper,
.album-hero-wrapper,
.shop-hero-wrapper,
.blog-hero-wrapper,
.events-hero-wrapper,
.videos-hero-wrapper {
    padding-block: var(--page-hero-spacing);
}

.new-releases-section,
.story-section,
.about-story-section,
.achievements-section,
.lyrics-section,
.scripture-section,
.booking-form-section-container,
.featured-release-section,
.album-collection-section,
.album-story-section-alt,
.blog-layout-container,
.featured-event-section,
.stay-connected-section,
.featured-video-section,
.videos-grid-section {
    padding-block: var(--section-spacing);
}

.statement-section,
.editorial-quote-section,
.booking-section,
.dark-booking-cta-section,
.events-dark-cta-section {
    padding-block: var(--section-spacing-compact);
}

.section-header-wrap {
    margin-bottom: clamp(2.5rem, 4vw, 3.75rem);
}

.statement-eyebrow,
.about-eyebrow,
.hero-subtitle {
    margin-bottom: var(--space-md);
}

.statement-line {
    margin-top: var(--space-xl);
}

.hero-title,
.about-hero-title {
    margin-bottom: var(--space-lg);
}

.hero-description {
    margin-bottom: var(--space-xl);
}

.about-hero-tagline {
    margin-bottom: var(--space-lg);
}

.about-hero-intro,
.featured-album-desc,
.event-details-desc {
    margin-bottom: 0;
}

.album-card,
.album-grid-card,
.product-card-custom,
.video-grid-card {
    margin-bottom: 0;
}

.album-info,
.album-grid-card .album-info-wrap,
.product-card-custom .product-info-wrap {
    padding-top: 1.25rem;
}

.story-grid-item {
    padding-block: clamp(1.75rem, 3vw, 2.5rem);
}

.story-image-wrapper,
.about-hero-image-wrapper,
.booking-hero-image-wrapper,
.album-hero-image-wrapper {
    margin: 0;
}

.booking-card-wrapper {
    padding: clamp(2rem, 5vw, 4rem);
}

.booking-form-divider {
    margin-block: clamp(2rem, 4vw, 3rem);
}

.form-group-custom {
    margin-bottom: var(--space-lg);
}

.scripture-card {
    padding: clamp(1.5rem, 4vw, 3rem);
}

.shop-controls-container {
    padding: var(--section-spacing-compact) 0 var(--space-lg);
}

.shop-controls-bar {
    padding-bottom: var(--space-lg);
    gap: var(--space-lg);
}

.shop-controls-bar > .d-flex {
    flex-wrap: wrap;
    row-gap: var(--space-sm) !important;
}

.shop-grid-container {
    padding: var(--space-lg) 0 var(--section-spacing);
}

.featured-post-card {
    padding: 0 0 clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
    border-width: 0 0 1px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.blog-list-item {
    padding-bottom: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.blog-sidebar-wrapper {
    padding-left: clamp(1.5rem, 3vw, 2.5rem);
}

.sidebar-widget {
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: var(--space-lg);
}

.blog-pagination-container {
    padding-top: var(--space-xl);
    margin-top: var(--space-2xl);
}

.social-streaming-grid {
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.social-streaming-card {
    padding: clamp(1.25rem, 3vw, 1.75rem);
}

.video-filter-bar {
    gap: var(--space-md) var(--space-lg);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.events-image-banner-wrapper {
    height: clamp(16rem, 30vw, 22rem);
}

.cinematic-image-break {
    height: clamp(20rem, 40vw, 30rem);
}

.footer-section {
    padding: var(--section-spacing-compact) 0 var(--space-xl);
}

.footer-section .row.g-5 {
    --bs-gutter-y: var(--space-2xl);
}

.footer-bottom {
    margin-top: var(--space-2xl);
    padding-top: var(--space-lg);
}

@media (max-width: 991.98px) {
    :root {
        --section-spacing: clamp(3.75rem, 8vw, 5rem);
        --section-spacing-compact: clamp(3rem, 7vw, 4rem);
        --page-hero-spacing: clamp(3.5rem, 8vw, 4.75rem);
        --content-gap: clamp(1.75rem, 5vw, 2.5rem);
    }

    .about-hero-image-wrapper,
    .booking-hero-image-wrapper,
    .album-hero-image-wrapper,
    .shop-hero-collage,
    .featured-artwork-box,
    .featured-event-img-wrap,
    .featured-video-img-wrap {
        margin-top: 0;
        margin-bottom: 0;
    }

    .about-hero-image-wrapper,
    .booking-hero-image-wrapper,
    .album-hero-image-wrapper {
        max-width: 34rem;
        padding-left: 0;
        margin-inline: auto;
    }

    .about-hero-vertical-label {
        display: none;
    }

    .blog-sidebar-wrapper {
        margin-top: 0;
        padding: var(--space-2xl) 0 0;
        border-top: 1px solid var(--border-color);
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-spacing: 3.5rem;
        --section-spacing-compact: 3rem;
        --page-hero-spacing: 3.25rem;
        --content-gap: 2rem;
    }

    .container {
        width: min(100% - 2rem, var(--container-width));
    }

    .row.g-4,
    .row.g-5 {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: var(--content-gap);
    }

    .hero-wrapper {
        padding-top: var(--page-hero-spacing);
    }

    .story-image-inner,
    .featured-artwork-box,
    .featured-event-img-wrap,
    .featured-video-img-wrap {
        margin-bottom: 0;
    }

    .performance-banner-item,
    .performance-side-item {
        border-width: 4px;
    }

    .performance-banner-overlay {
        padding: clamp(1.5rem, 7vw, 2.5rem);
    }

    .performance-side-item {
        height: 13rem;
    }

    .shop-controls-container {
        padding-top: var(--section-spacing-compact);
    }

    .shop-controls-bar {
        gap: var(--space-lg);
    }

    .shop-filters {
        width: 100%;
        gap: var(--space-lg);
        overflow-x: auto;
        padding-bottom: var(--space-xs);
    }

    .shop-controls-bar > .d-flex {
        width: 100%;
        justify-content: space-between;
        gap: var(--space-md) !important;
    }

    .featured-album-meta {
        flex-wrap: wrap;
        gap: var(--space-sm);
    }

    .blog-pagination {
        gap: var(--space-md);
        flex-wrap: wrap;
    }

    .social-streaming-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-md);
        margin-top: var(--space-xl);
    }

    .video-filter-bar {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: var(--space-sm);
    }

    .footer-section .row.g-5 {
        --bs-gutter-y: var(--space-xl);
    }

    .footer-bottom {
        margin-top: var(--space-xl);
    }
}

@media (max-width: 420px) {
    :root {
        --section-spacing: 3rem;
        --section-spacing-compact: 2.75rem;
        --page-hero-spacing: 3rem;
        --content-gap: 1.75rem;
    }

    .container {
        width: min(100% - 1.5rem, var(--container-width));
    }

    .social-streaming-grid {
        grid-template-columns: 1fr;
    }

    .shop-controls-bar > .d-flex {
        align-items: stretch !important;
        flex-direction: column;
    }
}

/* Cart and checkout */
.nav-cart-link {
    position: relative;
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-fast);
}

.nav-cart-link:hover,
.nav-cart-link.active {
    color: #031119;
    border-color: var(--brand-primary);
    background: var(--brand-primary);
}

.nav-cart-link span {
    position: absolute;
    top: -5px;
    right: -5px;
    display: inline-flex;
    min-width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    padding-inline: 4px;
    color: #031119;
    font: 600 0.66rem/1 var(--font-sans);
    border: 2px solid #07090c;
    border-radius: 999px;
    background: var(--brand-primary);
}

.commerce-hero-wrapper {
    padding-block: var(--page-hero-spacing);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at 75% 25%, rgba(46, 178, 255, 0.18), transparent 30%),
        linear-gradient(110deg, #030508, #08121c);
}

.commerce-hero-wrapper .about-hero-title,
.commerce-hero-wrapper .about-hero-intro {
    color: #fff;
}

.commerce-hero-wrapper .about-hero-intro {
    max-width: 36rem;
}

.commerce-section {
    padding-block: var(--section-spacing);
    background: var(--bg-secondary);
}

.commerce-notice {
    margin-bottom: var(--space-xl);
    padding: 0.9rem 1rem;
    color: #06324a;
    border: 1px solid rgba(46, 178, 255, 0.35);
    border-radius: var(--radius-md);
    background: rgba(46, 178, 255, 0.1);
}

.empty-cart-panel,
.checkout-success-panel {
    max-width: 46rem;
    margin-inline: auto;
    padding: clamp(2rem, 6vw, 4.5rem);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.empty-cart-panel h2,
.checkout-success-panel h2 {
    margin-bottom: var(--space-sm);
}

.empty-cart-panel p,
.checkout-success-panel p {
    margin-bottom: var(--space-xl);
}

.empty-cart-icon,
.checkout-success-icon {
    display: inline-block;
    margin-bottom: var(--space-lg);
    color: var(--brand-primary);
    font-size: 3rem;
}

.cart-list {
    border-top: 1px solid var(--border-color);
}

.cart-line-item {
    position: relative;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) 90px 100px 36px;
    gap: var(--space-lg);
    align-items: center;
    padding-block: var(--space-lg);
    border-bottom: 1px solid var(--border-color);
}

.cart-line-artwork {
    width: 92px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.cart-line-title {
    margin: 0.15rem 0 0.2rem;
    font-size: 1.35rem;
}

.cart-line-price {
    margin: 0;
    color: var(--text-secondary);
}

.cart-line-quantity label,
.cart-line-total span {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text-muted);
    font: 500 0.7rem/1.2 var(--font-sans);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cart-line-quantity input {
    width: 76px;
    min-height: 44px;
    padding-inline: 0.75rem;
    border: 1px solid #cfd9e0;
    border-radius: var(--radius-sm);
    background: #fff;
}

.cart-line-total strong {
    color: var(--text-primary);
    font-size: 1.05rem;
}

.cart-remove-btn {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border: 0;
    border-radius: 50%;
    background: transparent;
}

.cart-remove-btn:hover {
    color: #fff;
    background: #9e2f2f;
}

.cart-list-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    padding-top: var(--space-xl);
}

.cart-text-link,
.clear-cart-btn {
    color: var(--text-primary);
    font: 600 0.72rem/1.2 var(--font-sans);
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
}

.cart-text-link:hover,
.clear-cart-btn:hover {
    color: var(--brand-primary-hover);
}

.order-summary-card,
.checkout-form-card {
    padding: clamp(1.5rem, 4vw, 2.25rem);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.order-summary-card {
    position: sticky;
    top: 7rem;
}

.order-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding-block: var(--space-md);
    border-top: 1px solid var(--border-color);
}

.order-summary-total {
    margin-bottom: var(--space-lg);
    padding-block: var(--space-lg);
    font-size: 1.2rem;
}

.order-summary-card form {
    margin-top: var(--space-md);
    text-align: center;
}

.clear-cart-btn {
    padding: var(--space-sm);
    border: 0;
    background: transparent;
}

.checkout-section-title {
    margin-bottom: var(--space-xl);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.checkout-form-card .form-group-custom {
    margin-bottom: 0;
}

.checkout-payment-note {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    margin: var(--space-xl) 0 var(--space-lg);
    padding: var(--space-md);
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
}

.checkout-order-line {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-md);
    padding-block: var(--space-md);
    border-top: 1px solid var(--border-color);
}

.checkout-order-line span {
    display: block;
    margin-top: 0.2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 991.98px) {
    .order-summary-card {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .cart-line-item {
        grid-template-columns: 72px minmax(0, 1fr) 36px;
        gap: var(--space-md);
    }

    .cart-line-artwork {
        width: 72px;
    }

    .cart-line-quantity,
    .cart-line-total {
        grid-column: 2;
    }

    .cart-line-total {
        align-self: end;
    }

    .cart-remove-btn {
        grid-column: 3;
        grid-row: 1;
    }

    .cart-list-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .cart-list-actions .btn,
    .cart-text-link {
        width: 100%;
        text-align: center;
    }
}
