:root {
    --bg-color: #f2f2f2;
    --text-color: #000;
    --border-color: #999;
    --font-serif: 'Inter', 'Noto Sans SC', 'PingFang SC', sans-serif;
    --font-sans: 'Inter', 'Noto Sans SC', 'PingFang SC', sans-serif;
}

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

body, html {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    line-height: 1.2;
}

/* Global Helpers */
.serif { font-family: var(--font-serif); }
.sans { font-family: var(--font-sans); }
.sans-bold { font-family: var(--font-sans); font-weight: 800; }
.italic { font-style: italic; }
.border-right { border-right: 1px solid var(--border-color); }
.border-bottom { border-bottom: 1px solid var(--border-color); }
.border-top { border-top: 1px solid var(--border-color); }
.text-right { text-align: right; }

/* Background Grid Lines */
.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.grid-line-v {
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: rgba(0,0,0,0.05);
}

.grid-line-v:nth-child(1) { left: 20%; }
.grid-line-v:nth-child(2) { left: 80%; }

.grid-line-h {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(0,0,0,0.05);
    top: 85%;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1100;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 250, 250, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: -1;
}

.mobile-menu-btn {
    display: none;
    border: none;
    background: transparent;
    padding: 10px;
    cursor: pointer;
    z-index: 9999; /* Fix hamburger menu interaction block */
    pointer-events: auto;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    position: relative;
}

.hamburger-line {
    width: 20px;
    height: 1.5px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
    transform-origin: center;
}

.dark-mode .hamburger-line {
    background-color: #fff;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-main.small {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo-sub {
    font-size: 0.5rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.nav-links a.active {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .navbar {
        padding: 0.8rem 5%;
        border-bottom: 1px solid rgba(0,0,0,0.05); /* Lighter border for mobile */
    }
    
    .navbar.menu-open::before {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    .navbar.menu-open {
        border-bottom: none !important;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 9999 !important;
        pointer-events: auto !important;
    }
    
    .language-switcher {
        margin-left: auto;
        margin-right: 0.5rem;
        z-index: 1200;
        position: relative;
    }
    
    .logo {
        z-index: 1200;
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: rgba(250, 250, 250, 0.35);
        backdrop-filter: blur(50px) saturate(220%);
        -webkit-backdrop-filter: blur(50px) saturate(220%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 20vh;
        padding-left: 10vw;
        gap: 1.2rem;
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transform: translate3d(0, -20px, 0);
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        margin: 0;
        border: none;
        will-change: opacity, transform;
        isolation: isolate;
    }

    .dark-mode .nav-links {
        background: rgba(15, 15, 15, 0.35);
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 2rem;
        font-weight: 600;
        letter-spacing: -0.01em;
        line-height: 1.2;
        text-transform: capitalize;
        opacity: 0;
        transform: translateY(15px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .nav-links.open a {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger transitions for a premium feel */
    .nav-links.open a:nth-child(1) { transition-delay: 0.10s; }
    .nav-links.open a:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.open a:nth-child(3) { transition-delay: 0.20s; }
    .nav-links.open a:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.open a:nth-child(5) { transition-delay: 0.30s; }
    .nav-links.open a:nth-child(6) { transition-delay: 0.35s; }

    /* Cross animation for the hamburger */
    .mobile-menu-btn.open .hamburger-line:first-child {
        transform: translateY(3.25px) rotate(45deg);
    }
    .mobile-menu-btn.open .hamburger-line:last-child {
        transform: translateY(-3.25px) rotate(-45deg);
    }
}

.lang-btn {
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border-radius: 50px;
    padding: 6px 14px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    color: var(--text-color);
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10; /* Establish stacking context for ::before */
    background: transparent;
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    z-index: -1;
    transition: background 0.3s ease;
}

.lang-btn:hover::before {
    background: rgba(255, 255, 255, 0.8);
}
.lang-btn:hover {
    border: 1px solid rgba(255, 255, 255, 0.6);
}
.lang-btn:active {
    transform: scale(0.95);
}

.dark-mode .lang-btn {
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.dark-mode .lang-btn::before {
    background: rgba(40, 40, 40, 0.6);
}
.dark-mode .lang-btn:hover::before {
    background: rgba(50, 50, 50, 0.8);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 5% 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 25% 50% 25%;
    align-items: center;
    position: relative;
}

@media (max-width: 900px) {
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
    }
    .portrait-container {
        order: -1;
        margin-top: 0;
    }
    .hero-desc {
        padding-top: 0;
        text-align: center;
    }
    .side-info {
        align-self: center;
        text-align: center;
        padding-bottom: 0;
    }
    .main-title {
        white-space: normal !important;
        word-wrap: break-word;
        font-size: clamp(2rem, 12vw, 4rem);
        line-height: 1.1;
        width: 100vw;
        position: relative !important;
        top: 0 !important;
        order: -2;
        margin-bottom: -1rem;
    }
    .portrait-img {
        width: 85%;
        max-height: 50vh;
    }
}

.main-title {
    grid-column: 1 / 4;
    position: absolute;
    top: -5rem;
    left: 0;
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.85;
    font-weight: 800;
    z-index: 1;
    pointer-events: none;
}

/* Premium Editorial Typography */
.gallery-hero .main-title {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    pointer-events: auto !important;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1.1;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.05em;
    width: 100%;
    margin-bottom: 2rem;
}

.gallery-focus-word {
    font-style: italic;
    font-family: var(--font-serif);
    font-weight: 300;
    color: #555;
}

.gallery-sub-phrase {
    display: block;
    font-family: var(--font-sans);
    font-size: clamp(0.7rem, 1.2vw, 0.9rem);
    font-weight: 400;
    letter-spacing: 0.4em;
    margin-top: 1.5rem;
    color: #888;
    text-transform: uppercase;
}

/* Statement Style Gallery Title */
.gallery-statement-p1 {
    display: block;
    font-family: var(--font-sans);
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    font-weight: 300;
    color: #333;
    letter-spacing: 0.25em;
    margin-right: -0.25em;
    margin-bottom: 1rem;
    line-height: 1.4;
}
.gallery-statement-p2 {
    display: block;
    font-family: var(--font-sans);
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    font-weight: 200;
    color: #666;
    letter-spacing: 0.4em;
    margin-right: -0.4em;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-transform: uppercase;
}
.gallery-statement-p3 {
    display: block;
    font-family: var(--font-sans);
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #000;
    letter-spacing: -0.02em;
    margin-right: 0;
    line-height: 1.1;
}
.gallery-statement-p4 {
    display: block;
    font-family: var(--font-sans);
    font-size: clamp(0.7rem, 1vw, 0.8rem);
    font-weight: 700;
    color: #000;
    letter-spacing: 0.3em;
    margin-right: -0.3em;
    margin-top: 3rem;
    text-transform: uppercase;
    border-top: 1px solid #111;
    padding-top: 1rem;
    width: max-content;
}

@media (max-width: 768px) {
    .gallery-hero { padding: 40px 5% 40px; }
    .gallery-statement-p1 { font-size: 1rem; letter-spacing: 0.1em; margin-bottom: 0.8rem; }
    .gallery-statement-p2 { font-size: 0.7rem; letter-spacing: 0.2em; margin-bottom: 0.8rem; }
    .gallery-statement-p3 { font-size: 1.8rem; letter-spacing: 0; }
    .gallery-statement-p4 { font-size: 0.6rem; margin-top: 2rem; }
}

/* Auditory Statement Typography */
.auditory-hero {
    padding: 140px 5% 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 45vh;
}
.auditory-title {
    text-align: left;
    width: 100%;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    pointer-events: auto !important;
}
.auditory-statement-p1 {
    display: block;
    font-family: var(--font-sans);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 200;
    color: #111;
    letter-spacing: 0.15em;
    margin-right: -0.15em;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-align: left;
}
.auditory-statement-p2 {
    display: block;
    font-family: var(--font-sans);
    font-size: clamp(0.8rem, 1.5vw, 1.2rem);
    font-weight: 700;
    color: #777;
    letter-spacing: 0.6em;
    margin-right: -0.6em;
    margin-bottom: 1rem;
    padding-left: 15%;
    text-transform: uppercase;
    text-align: left;
}
.auditory-statement-p3 {
    display: block;
    font-family: var(--font-sans);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    color: #222;
    letter-spacing: 0.3em;
    margin-right: -0.3em;
    line-height: 1.1;
    text-align: right;
}

@media (max-width: 768px) {
    .auditory-hero {
        padding: 100px 5% 40px;
        min-height: auto;
    }
    .auditory-statement-p1 { font-size: 2rem; letter-spacing: 0.1em; }
    .auditory-statement-p2 { font-size: 0.7rem; letter-spacing: 0.3em; padding-left: 10%; }
    .auditory-statement-p3 { font-size: 1.8rem; letter-spacing: 0.1em; }
}

.hero-desc {
    grid-column: 1 / 2;
    font-size: 2.2rem;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -1px;
    padding-top: 5rem;
}

.portrait-container {
    grid-column: 2 / 3;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -5rem;
}

.portrait-img {
    width: 110%;
    max-height: 80vh;
    object-fit: contain;
    filter: grayscale(5%);
    position: relative;
    z-index: 2;
    transition: transform 0.1s ease-out;
}

.portrait-bg-text-wrapper {
    position: absolute;
    width: 100%;
    text-align: center;
    z-index: 1;
    pointer-events: none;
}

.portrait-name-outline {
    font-size: clamp(6rem, 15vw, 15rem);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0,0,0,0.1);
    letter-spacing: 15px;
    display: inline-block;
    transition: transform 0.1s ease-out;
}

.side-info {
    grid-column: 3 / 4;
    align-self: flex-end;
    text-align: right;
    padding-bottom: 5rem;
}

.side-info p {
    font-size: clamp(1.2rem, 2.5vw, 2.2rem);
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 0.2rem;
    letter-spacing: -0.5px;
}

/* Footer Controls */
.footer-controls {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 1.5rem 5%;
    height: 100px;
    position: relative;
    z-index: 100;
}

.footer-left {
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
}

.footer-center {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.btn-learn-more {
    background: transparent;
    border: 1px solid var(--text-color);
    padding: 0.6rem 2.5rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    background: var(--text-color);
    color: #fff;
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
    gap: 0.5rem;
    font-weight: 500;
}

/* Sections Global */
.section-label {
    padding: 3rem 5% 1rem 5%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.section-label.border-bottom {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.dark-mode .section-label.border-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.section-heading {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text-color);
}

/* Latest Works Grid */
.works-grid {
    display: grid;
    grid-template-columns: 20% 20% 30% 30%;
    grid-auto-rows: minmax(200px, auto);
}

.grid-cell {
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.cell-2x2 {
    grid-column: span 2;
    grid-row: span 2;
}

.cell-v {
    grid-row: span 2;
}

.cell-h-large {
    grid-column: span 3;
    height: 400px;
}

.nested-grid-4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 100%;
}

.media-box {
    width: 100%;
    height: 100%;
    background-color: #ddd;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.media-box.video {
    background-color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-icon {
    font-size: 2rem;
    color: #fff;
    opacity: 0.8;
}

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

/* BTS Section */
.bts-videos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 350px;
}

.video-item {
    padding: 2rem;
}

.bts-thumbs {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    height: 150px;
}

.thumb {
    background-color: #eee;
    border-bottom: 1px solid var(--border-color);
}

/* Other Content */
.content-table {
    display: flex;
    flex-direction: column;
}

.table-row {
    display: grid;
    grid-template-columns: 20% 80%;
    min-height: 60px;
    align-items: center;
}

.table-key {
    padding: 1rem 2rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.table-val {
    padding: 1rem 2rem;
    font-size: 2.2rem;
    font-weight: 400;
}

.minimal-footer {
    height: 60px;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0,0,0,0.02);
    list-style: none;
    padding: 6px;
    display: none;
    width: 150px;
    z-index: 2000;
    text-align: left;
}

.lang-dropdown li {
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
    cursor: pointer;
    color: var(--text-color);
    transition: background 0.2s ease;
    border-radius: 8px;
    margin-bottom: 2px;
}
.lang-dropdown li:last-child {
    margin-bottom: 0;
}

.lang-dropdown li:hover {
    background: rgba(0, 0, 0, 0.06);
}

.dark-mode .lang-dropdown {
    background: rgba(30, 30, 30, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-mode .lang-dropdown li:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* Gallery Page Specifics */

.gallery-container {
    padding-top: 80px;
}

.gallery-hero {
    padding: 180px 5% 60px !important; /* Enforced padding to clear fixed navbar */
    text-align: left;
    position: relative;
    display: block;
}

.visual-hero {
    padding: 180px 5% 60px !important; /* Match gallery for consistency */
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-hero .main-title,
.visual-hero .main-title {
    position: relative;
    top: 0;
    margin-top: 2rem;
    z-index: 10;
}

.gallery-section {
    padding: 0;
    scroll-margin-top: 80px;
    display: flex;
    flex-direction: column;
    margin-bottom: 5rem;
}

@media (min-width: 1000px) {
    .gallery-section {
        flex-direction: row;
        align-items: flex-start;
        position: relative;
    }
}

.editorial-section-header {
    background-color: transparent;
    padding: 5rem 4% 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 1000px) {
    .editorial-section-header {
        flex: 0 0 35%; /* Strict left pillar */
        padding: 5rem 4%;
        height: fit-content;
        z-index: 5;
    }
}

.esh-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--text-color);
    white-space: normal;
    word-break: break-word;
}

@media (max-width: 900px) {
    .editorial-section-header { padding: 4rem 5% 1rem; }
    .esh-title { font-size: clamp(3rem, 12vw, 4rem); }
}

.btn-editorial-explore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.75rem;
    font-family: var(--font-sans);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--bg-color); /* Invert text */
    background-color: var(--text-color); /* Solid bold bg */
    margin-top: 2rem;
    padding: 0.8rem 2rem;
    border-radius: 50px; /* High-end Pill */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
}

.btn-editorial-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    opacity: 0.9;
}

/* =========================================
   Horizontal Track Layout (Gallery Grids)
   ========================================= */
.horizontal-track {
    display: flex;
    flex: 1; /* Strict Right cascade on desktop */
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    gap: 3rem;
    padding: 0 5% 5rem;
    padding-top: 5rem;
    background-color: var(--bg-color);
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: var(--text-color) var(--bg-color); /* Firefox */
}

/* Elegant ultra-thin scrollbar layout to hint at scorllability */
.horizontal-track::-webkit-scrollbar {
    display: block; 
    height: 3px; 
}
.horizontal-track::-webkit-scrollbar-track {
    background: transparent; 
}
.horizontal-track::-webkit-scrollbar-thumb {
    background: var(--text-color); 
    border-radius: 50px;
}

.track-item {
    scroll-snap-align: center;
    flex: 0 0 auto; /* Never force width. Let the native image dictate its aspect ratio */
    height: 70vh;
    position: relative;
    /* Do not use overflow hidden as it suppresses shadow effects */
}

.art-img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain; /* Failsafe */
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center right;
    will-change: transform, opacity;
}

@media (max-width: 900px) {
    .horizontal-track {
        padding-top: 1rem;
        gap: 1rem;
    }
    .track-item {
        height: 35vh; /* Made smaller per user request */
    }
    .huge-view-all {
        width: 150px;
        height: 150px;
        font-size: 0.8rem;
    }
}

.artwork-link {
    display: block;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.artwork-link:hover {
    opacity: 0.8;
}

.art-box {
    width: 100%;
    height: 100%;
    background-size: contain; /* Respect Uncropped Masterpiece */
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.5s ease;
}

.art-box:hover {
    transform: scale(1.05);
}

/* Artistic Placeholders */
.photo-1 { background: url('assets/gallery/photography/%E4%BA%BA%E5%83%8F.png') center/cover; }
.photo-2 { background: url('assets/gallery/photography/%E4%BA%BA%E5%83%8F2.png') center/cover; }
.photo-3 { background: url('assets/gallery/photography/%E6%83%85%E7%BB%AA%E4%BA%BA%E5%83%8F.png') center/cover; }
.photo-4 { background: url('assets/gallery/photography/%E6%83%85%E7%BB%AA%E4%BA%BA%E5%83%8F2.png') center/cover; }
.photo-5 { background: url('assets/gallery/photography/%E6%9C%8D%E8%A3%85.png') center/cover; }
.photo-6 { background: url('assets/gallery/photography/%E7%BA%AA%E5%AE%9E.png') center/cover; }
.photo-7 { background: url('assets/gallery/photography/%E7%BA%AA%E5%AE%9E2.png') center/cover; }
.photo-8 { background: url('assets/gallery/photography/%E7%BA%AA%E5%AE%9E3.png') center/cover; }
.photo-9 { background: url('assets/gallery/photography/%E7%BA%AA%E5%AE%9E4.png') center/cover; }
.photo-10 { background: url('assets/gallery/photography/%E7%BA%AA%E5%AE%9E5.png') center/cover; }
.photo-11 { background: url('assets/gallery/photography/%E7%BA%AA%E5%AE%9E6.png') center/cover; }
.photo-12 { background: url('assets/gallery/photography/%E9%A3%8E%E5%85%89.png') center/cover; }

.fine-1 { background: url('assets/gallery/fine-art/Birdman.png') center/cover; } 
.fine-2 { background: url('assets/gallery/fine-art/Core.png') center/cover; }
.fine-3 { background: url('assets/gallery/fine-art/Facing-the-Inner-Abyss-(Draft).png') center/cover; }
.fine-4 { background: url('assets/gallery/fine-art/Facing-the-Inner-Abyss.jpeg') center/cover; }
.fine-5 { background: url('assets/gallery/fine-art/The-Silent-Gaze.png') center/cover; }

.dr-1 { background: url('assets/gallery/design-and-rendering/AUDIO-DEVICES.png') center/cover; }
.dr-2 { background: url('assets/gallery/design-and-rendering/Block-off.png') center/cover; }
.dr-3 { background: url('assets/gallery/design-and-rendering/%C3%89DOUARD-CLARITY-COLLECTION-Typeset.png') center/cover; }
.dr-4 { background: url('assets/gallery/design-and-rendering/%C3%89DOUARD-CLARITY-COLLECTION.png') center/cover; }
.dr-5 { background: url('assets/gallery/design-and-rendering/LOGO(Draft).jpeg') center/cover; }
.dr-6 { background: url('assets/gallery/design-and-rendering/LOGO.png') center/cover; }
.dr-7 { background: url('assets/gallery/design-and-rendering/Office-design-drawing.png') center/cover; }
.dr-8 { background: url('assets/gallery/design-and-rendering/Office-rendering.png') center/cover; }
.dr-9 { background: url('assets/gallery/design-and-rendering/RoomOne1.png') center/cover; }
.dr-10 { background: url('assets/gallery/design-and-rendering/RoomOne2.png') center/cover; }
.dr-11 { background: url('assets/gallery/design-and-rendering/RoomOne3.png') center/cover; }
.dr-12 { background: url('assets/gallery/design-and-rendering/RoomOne4.png') center/cover; }
.dr-13 { background: url('assets/gallery/design-and-rendering/RoomTwo1.png') center/cover; }
.dr-14 { background: url('assets/gallery/design-and-rendering/Sanitation.png') center/cover; }

.section-footer {
    padding: 2rem 5%;
    display: flex;
    justify-content: flex-start;
}

.btn-learn-more-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 0.8rem 3rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-learn-more-outline:hover {
    background: var(--text-color);
    color: #fff;
    border-color: var(--text-color);
}

/* VISUAL PAGE */
.visual-page-container {
    padding-top: 80px;
}
.visual-hero {
    position: relative;
    padding: 60px 5%;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.visual-page-title {
    top: 5rem;
    z-index: 5;
}
.video-container {
    width: 60%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.video-cover-img {
    width: 100%;
    filter: grayscale(10%);
    display: block;
}
.video-play-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.1);
}
.huge-play-btn {
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 1.5rem 3rem;
    font-size: 2rem;
    cursor: pointer;
    transition: background 0.3s;
}
.huge-play-btn:hover { background: #000; }

.visual-overlay-text {
    position: absolute;
    z-index: 3;
}
.left-txt { left: 5%; top: 40%; max-width: 300px; }
.right-bottom-txt { right: 5%; bottom: 10%; text-align: right; }
.right-bottom-txt p.large { font-size: 2.5rem; line-height: 1.1; margin: 0; }
.btn-watch-now {
    background: transparent; border: 1px solid var(--text-color);
    padding: 0.8rem 2rem; font-family: var(--font-sans); margin-top: 2rem;
    cursor: pointer;
}

.background-text-huge {
    position: absolute; right: -5%; top: 20%;
    font-size: 25vw; color: transparent;
    -webkit-text-stroke: 2px rgba(0,0,0,0.1);
    z-index: 1; pointer-events: none;
}

.horizontal-scroll-list {
    display: flex;
    background: var(--bg-color);
    overflow-x: auto;
}
.scroll-item {
    flex: 0 0 25%;
    min-width: 250px;
    height: 150px;
    display: flex; flex-direction: column; justify-content: center;
}
.scroll-item.label-item { padding: 1rem; }
.horizontal-scroll-list .media-box { 
    width: 100%; height: 100%; border: none; 
    cursor: pointer;
    transition: transform 0.3s;
}
.horizontal-scroll-list .media-box:hover { transform: scale(1.05); }

/* NEW VISUAL GRID SECTION */
.visual-grid-section {
    padding: 0;
}
.visual-editorial-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-flow: dense;
    background-color: var(--border-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.visual-editorial-grid .visual-item-card {
    background-color: var(--bg-color);
    padding: 3rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.visual-card-large { grid-column: span 8; }
.visual-card-small { grid-column: span 4; }
.visual-card-full { 
    grid-column: span 12; 
    align-items: center; 
    text-align: center; 
    padding: 6rem 5%;
}
@media (max-width: 900px) {
    .visual-editorial-grid { display: flex; flex-direction: column; }
    .visual-item-card { border-right: none; border-bottom: 1px solid var(--border-color); }
}
.visual-detailed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.visual-item-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.visual-item-card .media-box {
    aspect-ratio: 16/9;
}
.visual-item-info h4 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.visual-item-info p { font-size: 0.9rem; opacity: 0.8; }

/* CREATIVE PROCESS SECTION */
.process-section {
    padding: 6rem 5%;
    display: flex;
    gap: 4rem;
}
.process-text {
    width: 40%;
}
.process-text h2 { font-size: 3rem; margin-bottom: 2rem; }
.process-text p { font-size: 1.1rem; line-height: 1.6; margin-bottom: 1.5rem; }
.process-stats {
    width: 60%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.stat-item {
    padding: 2rem;
    background: #f9f9f9;
    border: 1px solid var(--border-color);
}
.stat-num { font-size: 2.5rem; font-family: var(--font-serif); display: block; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

/* VISUAL FOOTER & CREDITS */
.visual-footer {
    padding: 4rem 5%;
    display: flex;
    justify-content: space-between;
}
.credits-block {
    display: flex;
    gap: 4rem;
}
.credit-group h5 { font-size: 0.7rem; text-transform: uppercase; margin-bottom: 0.5rem; opacity: 0.6; }
.credit-group p { font-size: 1rem; font-family: var(--font-serif); }
.next-chapter-btn {
    border: none; background: transparent; font-size: 2rem; cursor: pointer; transition: transform 0.3s;
}
.next-chapter-btn:hover { transform: translateX(10px); }
.thumb-bg-1 { background: #000; }
.thumb-bg-2 { background: #333; }
.thumb-bg-3 { background: #111; }
.thumb-bg-4 { background: #444; }

/* VIDEO DETAIL PAGE */
.video-container-page { padding-top: 80px; }
.video-hero { padding: 4rem 5%; text-align: center; }
.huge-text { font-size: clamp(3rem, 8vw, 6rem); letter-spacing: -2px; }

/* Premium Editorial overrides */
.product-hero .huge-text {
    margin-top: 2rem;
    margin-bottom: 4rem;
    text-align: center;
}

.premium-serif {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-right: -0.15em; /* Optical centering */
    display: block;
    margin-bottom: 1rem;
    color: #111;
    text-transform: uppercase;
}

.premium-sans {
    font-family: var(--font-sans);
    font-size: clamp(0.75rem, 1.5vw, 1rem);
    font-weight: 400;
    letter-spacing: 0.4em;
    margin-right: -0.4em; /* Optical centering */
    display: block;
    color: #555;
    text-transform: uppercase;
}
.centered-native-video-wrapper {
    padding: 5rem 10%;
    background: #e5e5e5;
}
.fake-native-video {
    width: 100%; aspect-ratio: 16/9; background: #222; position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.video-controls-bar {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(0,0,0,0.7); height: 40px;
    display: flex; align-items: center; padding: 0 1rem; color: #fff; gap: 1rem;
}
.progress-bar { flex: 1; }
.video-footer { display: flex; height: 120px; }
.footer-sidebar { width: 25%; display: flex; flex-direction: column; }
.btn-wrap { flex: 1; display:flex; align-items:center; justify-content:center; }
.btn-full { width: 100%; height: 100%; background: transparent; border: none; font-family: var(--font-sans); cursor: pointer; }
.dropdown-btn { display: flex; flex-direction: column; align-items: center; font-size: 0.8rem; }
.footer-main-desc { width: 75%; display: flex; align-items: center; justify-content: flex-end; padding-right: 5%; }
.footer-main-desc h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 300; letter-spacing: -1px; }

/* ARTWORK DETAIL PAGE */
.artwork-container { padding-top: 80px; }
.artwork-hero { padding: 3rem 5%; text-align: center; }
.artwork-display {
    position: relative; padding: 5rem 5%;
    display: flex; justify-content: space-between; align-items: center;
    min-height: 70vh;
}
.bg-layer-text {
    position: absolute; top: 10%; left: 0; width: 100%; text-align: center;
    font-size: 15vw; color: transparent; -webkit-text-stroke: 1px rgba(0,0,0,0.1);
    z-index: 1; pointer-events: none;
}
.artwork-left-desc { width: 22%; z-index: 2; padding-right: 1.5rem; }
.artwork-right-desc { width: 22%; z-index: 2; text-align: left; padding-left: 1.5rem; }
.artwork-frame {
    width: auto;          /* frame adapts to image width */
    max-width: 45%;       /* slightly smaller to avoid overlap */
    z-index: 3;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.3);
    background: #111;
    padding: 0.75rem;
    margin-top: -5rem;
    flex-shrink: 0;
}
.frame-matte {
    background: #fff;
    padding: 1.5rem;    /* uniform mat border around the image */
}
.frame-image.arch-photo {
    display: block;       /* real <img> tag */
    width: auto;          /* natural image width */
    max-width: 100%;      /* constrain within matte */
    height: auto;         /* natural aspect ratio — no crop */
    filter: none;
    background: none;
}

.large-desc { font-size: 2rem; line-height: 1.1; margin-bottom: 2rem; letter-spacing: -1px; }
.btn-framed { background: transparent; border: 1px solid #000; padding: 0.5rem 2rem; width: 100%; cursor: pointer; }
.br-btn-wrap { display: flex; align-items: flex-start; }
.artwork-right-desc h3 { font-size: 2rem; margin-bottom: 0.5rem; font-weight: 400; }
.artwork-right-desc p { font-size: 1.2rem; }

/* AUDITORY PAGE */
.auditory-container { padding-top: 80px; }
.auditory-hero { padding: 4rem 5%; }
.section-label-top { padding: 1rem 5%; }
.audio-grid.block-grid-3 {
    display: grid; grid-template-columns: repeat(3, 1fr);
}
.audio-card {
    padding: 1.5rem; background: var(--bg-color);
}
.waveform-bg {
    width: 100%; height: 80px; margin-bottom: 1rem;
    background: repeating-linear-gradient(90deg, #333, #333 2px, transparent 2px, transparent 6px);
}
.wave-1 { clip-path: polygon(0 40%, 10% 20%, 20% 60%, 30% 10%, 40% 80%, 50% 30%, 60% 70%, 70% 20%, 80% 90%, 90% 40%, 100% 50%, 100% 100%, 0 100%); opacity: 0.8;}
.wave-2 { clip-path: polygon(0 60%, 15% 10%, 25% 80%, 40% 20%, 55% 90%, 70% 30%, 85% 70%, 100% 40%, 100% 100%, 0 100%); opacity: 0.6; }
.wave-3 { clip-path: polygon(0 20%, 20% 80%, 40% 10%, 60% 90%, 80% 30%, 100% 60%, 100% 100%, 0 100%); opacity: 0.7; }
.wave-4 { clip-path: polygon(0 50%, 10% 90%, 30% 20%, 50% 80%, 70% 10%, 90% 70%, 100% 30%, 100% 100%, 0 100%); opacity: 0.9; }
.wave-5 { clip-path: polygon(0 70%, 20% 10%, 40% 90%, 60% 20%, 80% 80%, 100% 40%, 100% 100%, 0 100%); opacity: 0.5; }
.wave-6 { clip-path: polygon(0 30%, 15% 70%, 35% 10%, 55% 90%, 75% 20%, 95% 80%, 100% 50%, 100% 100%, 0 100%); opacity: 0.8; }
.audio-controls-row {
    display: flex; align-items: center; gap: 1rem;
}
.circle-play {
    width: 40px; height: 40px; border-radius: 50%; background: #000; color: #fff; border: none; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.track-name { flex: 1; font-weight: 500; }
.mini { font-size: 0.8rem; }

/* MUSIC PLAYER FULL PAGE */
.music-player-container { padding-top: 80px; }
.mp-header { display: flex; }
.mp-title-block { width: 50%; padding: 2rem 5%; }
.mp-header-empty { width: 50%; }
.mp-body {
    overflow-x: hidden;
    max-width: 100vw; display: flex; min-height: 70vh; }
.mp-visual { width: 50%; display: flex; flex-direction: column; }
.mp-3d-graphic {
    flex: 1; display: flex; align-items: center; justify-content: center;
    background: radial-gradient(circle, #e0e0e0 0%, var(--bg-color) 70%);
}
.music-note-wireframe {
    font-size: 10rem; color: #333; transform: rotate(-10deg);
    text-shadow: 5px 5px 0 #999, 10px 10px 0 #ccc;
}
.mp-progress-bar { display: flex; align-items: center; gap: 1rem; }
.progress-slider { flex: 1; accent-color: #000; }
.mp-controls { width: 50%; display: flex; flex-direction: column; }
.padding-2 { padding: 2rem 5%; }
.block-title { display: block; margin-bottom: 0.5rem; letter-spacing: 1px; }
.track-title-lg { font-size: 2rem; text-transform: uppercase; line-height: 1.1; }
.track-title-lg .sub { font-size: 1.2rem; display: block; }
.play-btn-group { display: flex; gap: 2rem; }
.mp-btn { background: transparent; border: none; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; cursor: pointer; font-family: var(--font-sans); color: #000; font-weight: 600; }
.mp-btn span { font-size: 2rem; }
.volume-slider-wrap { display: flex; align-items: center; gap: 1rem; width: 60%; }
.volume-slider { flex: 1; accent-color: #000; }
.playlist-list { list-style: none; margin-top: 1rem; }
.playlist-list li { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px dashed var(--border-color); font-size: 0.9rem; }

/* GLOBAL MINI PLAYER */
.global-mini-player {
    position: fixed; bottom: 20px; right: 20px;
    width: 320px; 
    background: rgba(255, 255, 255, 0.5); 
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
    display: none;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}
.global-mini-player.visible { display: flex; }
.global-mini-player.minimized {
    transform: translateY(calc(100% - 40px));
}
.mp-mini-header {
    height: 44px; display: flex; justify-content: space-between; align-items: center;
    padding: 0 1.2rem; border-bottom: 1px solid rgba(0,0,0,0.05); background: transparent;
    cursor: pointer;
}
.mp-mini-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.5px; color: #1d1d1f; text-transform: uppercase; }
/* Global Mini Player Fixes */
.mp-mini-btn { background: none; border: none; color: #1d1d1f; cursor: pointer; padding: 5px; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; transition: opacity 0.2s; }
.mp-mini-btn:hover { opacity: 0.6; }
.mp-mini-toggle { border: none; background: transparent; cursor: pointer; font-size: 1.2rem; color: #1d1d1f; }
.mp-mini-body { padding: 1.2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.mp-mini-track { font-size: 0.85rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #1d1d1f; }
.mp-mini-controls { display: flex; align-items: center; justify-content: space-between; }
.mp-mini-play { width: 44px; height: 44px; background: rgba(0,0,0,0.85); border-radius: 50%; color: #fff; display: flex !important; align-items: center; justify-content: center; transition: transform 0.2s; }
.mp-mini-play:active { transform: scale(0.9); }
.mp-mini-play svg { width: 18px; height: 18px; fill: #fff; }

.dark-mode .global-mini-player {
    background: rgba(30, 30, 30, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.dark-mode .mp-mini-header { border-bottom: 1px solid rgba(255,255,255,0.1); }
.dark-mode .mp-mini-title, .dark-mode .mp-mini-track, .dark-mode .mp-mini-toggle, .dark-mode .mp-mini-btn { color: #f5f5f7; }
.dark-mode .mp-mini-play { background: rgba(255,255,255,0.9); }
.dark-mode .mp-mini-play svg { fill: #000; }

/* Responsive */
@media (max-width: 1024px) {
    /* Navbar styles removed to prevent breaking 900px cascading */
    .section-heading {
        font-size: 1.8rem;
    }
    .works-grid {
        grid-template-columns: 1fr;
    }
    .cell-2x2, .cell-v, .cell-h-large {
        grid-column: span 1;
        grid-row: span 1;
        height: auto;
        min-height: 250px;
    }
    .bts-videos {
        grid-template-columns: 1fr;
        height: auto;
    }
    .bts-thumbs {
        grid-template-columns: repeat(4, 1fr);
        height: auto;
    }
    .table-row {
        grid-template-columns: 1fr;
    }
    .table-key {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        font-size: 1.2rem;
    }
    .table-val {
        font-size: 1.5rem;
    }

    /* Gallery Responsive */
    .section-title { font-size: 3rem; }
    .photography-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
    .item-row1-col1, .item-row1-col6, .item-row2-col3, .item-row2-col4, .item-row2-col5, .item-row2-col6 { grid-column: span 1; }
    .photography-grid .grid-item { aspect-ratio: 1 / 1; }
    .art-grid { grid-template-columns: repeat(3, 1fr); }
    .design-grid, .rendering-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .nav-links {
        display: none;
    }
    .main-title {
        font-size: 2.5rem;
    }
    .section-title { font-size: 2rem; }
    .photography-grid, .art-grid, .design-grid, .rendering-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* =========================================
   PHASE 3: NEW SPECIALIZED PAGES 
   ========================================= */

/* PRODUCT-DESIGN PAGE */
.product-container { padding-top: 80px; }
.clarity-banner-wrapper { position: relative; display: block; width: fit-content; max-width: 90%; margin: 2rem auto; overflow: hidden; background: transparent; line-height: 0; }
.giant-bg-text { position: absolute; font-size: 25vw; font-family: var(--font-sans); color: transparent; -webkit-text-stroke: 1px rgba(0,0,0,0.5); z-index: 1; top: 50%; transform: translateY(-50%); white-space: nowrap; }
.clarity-banner-img { position: relative; z-index: 2; width: auto; max-width: 100%; height: auto; display: block; border: 1px solid #000; }
.clarity-banner-caption { position: absolute; bottom: 2rem; z-index: 3; background: rgba(255,255,255,0.8); padding: 1rem; border: 1px solid #000; }
.prod-category-bar { display: flex; justify-content: space-between; padding: 1rem 5%; font-size: 0.8rem; }
.prod-3col-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: start; }
.prod-disp-card { padding: 3rem 2rem; }
.prod-graph-bg { display: block; width: fit-content; max-width: 100%; margin: 2rem auto 0; overflow: hidden; position: relative; line-height: 0; background: transparent; }
.prod-disp-img { width: auto; max-width: 100%; height: auto; display: block; border: 1px solid #000; }
.btn-group-2 { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.5rem; }
.btn-grey { background: #d0d0d0; border: 1px solid #000; padding: 0.8rem 1.5rem; font-family: var(--font-sans); font-size: 0.8rem; cursor: pointer; text-transform: uppercase; transition: 0.2s; }
.btn-grey:hover { background: #bbb; }
.prod-info-links { display: flex; justify-content: space-between; padding: 1.5rem 5%; font-size: 0.8rem; }
.links-left a { margin-right: 2rem; text-decoration: none; color: #000; font-weight: bold; }
.prod-giant-type { padding: 4rem 5%; }
.outline-text-made { font-size: 0.85rem; letter-spacing: 0.4em; font-weight: 400; color: #666; margin-top: 1.5rem; text-transform: uppercase; }
.prod-dense-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.span-2 { grid-column: span 2; }
.p-card { padding: 3rem; background: #e8e8e8; display: flex; flex-direction: column; transition: 0.3s; }
.p-card:hover { background: #dfdfdf; }
.p-img-wrap { display: block; width: fit-content; max-width: 100%; margin: 0 auto 2rem; overflow: hidden; background: transparent; position: relative; line-height: 0; }
.p-img { width: auto; max-width: 100%; height: auto; display: block; border: 1px solid #000; }
.p-card-horizontal { 
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    padding: 5rem 10%; 
    background: #e8e8e8; 
    gap: 10rem; 
    transition: 0.3s;
}
.p-card-horizontal:hover { background: #dfdfdf; }
.p-card-horizontal .p-img-wrap { width: 45%; margin: 0; }
.p-card-horizontal .p-info { 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: flex-start;
    margin-top: 0;
    width: 45%;
}
.p-card-horizontal .p-info-inner { width: 100%; }
.p-card-horizontal h3 { font-size: 2.2rem; margin-bottom: 2rem; }
.p-card-horizontal .p-price-row { 
    flex-direction: row; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
    margin-top: 3rem; 
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 2rem;
}

@media (max-width: 1024px) {
    .p-card-horizontal { flex-direction: column; gap: 4rem; padding: 4rem 5%; }
    .p-card-horizontal .p-img-wrap { width: 80%; }
    .p-card-horizontal .p-info { width: 100%; align-items: center; text-align: center; }
    .p-card-horizontal .p-price-row { flex-direction: column; gap: 2rem; }
}

.p-info { display: flex; justify-content: space-between; align-items: flex-start; margin-top: auto; padding-top: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.p-title-area { flex: 1 1 60%; display: flex; flex-direction: column; gap: 0.5rem; }
.p-info h3 { 
    font-size: 1.8rem; 
    line-height: 1.2; 
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 800;
}
.p-specs {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    line-height: 1.4;
}
.p-price-row { display: flex; flex-direction: column; align-items: flex-end; gap: 1rem; flex-shrink: 0; }
.price { font-size: 2.5rem; }
.btn-line { background: transparent; border: 1px solid #000; padding: 0.8rem 2rem; cursor: pointer; text-transform: uppercase; font-family: var(--font-sans); font-weight: bold; transition: 0.2s; white-space: nowrap; }
.btn-line:hover { background: #000; color: #fff; }

/* PREMIUM PRODUCT TYPOGRAPHY */
.premium-label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: left;
}

.label-title {
    font-family: var(--font-serif);
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 0.9;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.label-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.3rem);
    opacity: 0.85;
    margin-bottom: 0.2rem;
}

.label-meta {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #333;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.label-meta span {
    display: inline-flex;
    align-items: center;
}

.label-meta span:not(:last-child):after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 2px;
    background: #000;
    border-radius: 50%;
    margin: 0 12px;
}

.premium-label.text-center {
    text-align: center;
}

.premium-label.text-center .label-meta {
    justify-content: center;
}

.prod-footer { padding: 6rem 5%; background: #e0e0e0; }

/* ABOUT-ME PAGE */
.about-container { padding-top: 80px; }
.about-hero { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--border-color); }
.about-hero-text { padding: 4rem 5%; display: flex; flex-direction: column; justify-content: center; }
.about-hero-img { background: url('assets/edouard.png') center/cover; min-height: 60vh; border-left: 1px solid var(--border-color); }
.about-giant-name { font-size: clamp(4rem, 10vw, 8rem); font-family: var(--font-serif); margin-bottom: 2rem; letter-spacing: -2px; line-height: 0.9; }
.about-desc-lg { font-size: clamp(2rem, 4vw, 3rem); font-family: var(--font-sans); line-height: 1.1; letter-spacing: -1px; }
.about-grid { display: grid; grid-template-columns: 50% 25% 25%; }
.grid-cell { padding: 2rem 5%; border-right: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.grid-cell:last-child { border-right: none; }
.grid-cell h3 { font-size: 2rem; margin-bottom: 1.5rem; }
.social-icons { display: flex; gap: 1rem; margin-top: 1rem; }
.fake-icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: #000; color: #fff; border-radius: 4px; font-weight: bold; }

/* GALLERY DETAIL PAGE (Learn More) */
.gallery-detail-container { padding-top: 80px; }
.gd-hero { padding: 6rem 5% 2rem; border-bottom: 1px solid var(--border-color); }
/* .gd-masonry is defined later in the file using column-count */
.gd-info-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.gd-info-cell { padding: 3rem 5%; }
.gd-other-content { padding: 4rem 5%; }
.gd-other-grid { display: grid; grid-template-columns: 1fr 1fr; padding-top: 2rem; }
.gd-other-grid .left-col { padding-right: 2rem; }
.left-col p, .right-col p { margin-bottom: 1rem; }

/* AUDITORY V2 PAGE */
.auditory-v2-container { padding-top: 80px; }
.audio-track-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

/* Vertical Auditory Grid Adjustments */
@media (max-width: 1000px) {
    .gallery-section .editorial-section-header {
        border-right: none !important;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .dark-mode .gallery-section .editorial-section-header {
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
}
.dark-mode .gallery-section .editorial-section-header {
    border-right-color: rgba(255,255,255,0.06) !important;
}

.vertical-auditory-grid {
    padding: 4rem 5% 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .vertical-auditory-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        padding: 2rem 5% 2rem;
    }
    
    .at-info {
        padding: 1rem;
        gap: 1rem;
    }
    
    .at-header h4 {
        font-size: 1rem; /* Shrink title slightly */
    }
    
    .circle-play {
        width: 36px;
        height: 36px;
    }
    .circle-play svg {
        width: 16px;
        height: 16px;
    }
    
    .spotify-link {
        font-size: 0.75rem;
    }
}

.audio-track-card { 
    background: #ffffff; 
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    display: flex; 
    flex-direction: column; /* Vertical Stack */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.dark-mode .audio-track-card {
    background: #1c1c1e;
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.audio-track-card:hover { 
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.dark-mode .audio-track-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}
.audio-track-card.playing { 
    border-color: #007aff; /* iOS blue accent when playing */
    box-shadow: 0 12px 40px rgba(0, 122, 255, 0.2); 
}

.at-cover { width: 100%; aspect-ratio: 1 / 1; height: auto; background: #000; }
.at-cover img { width: 100%; height: 100%; object-fit: cover; }

.at-info { padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.at-header { display: flex; justify-content: space-between; align-items: flex-start; }

.at-controls { display: flex; align-items: center; gap: 1rem; width: 100%; }
.circle-play { width: 44px; height: 44px; border-radius: 50%; background: #f2f2f7; color: #000; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); flex-shrink: 0; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.dark-mode .circle-play { background: #2c2c2e; box-shadow: none; }
.circle-play:hover { transform: scale(1.05); background: #e5e5ea; }
.dark-mode .circle-play:hover { background: #3a3a3c; }
.circle-play svg { width: 20px; height: 20px; fill: #000; transition: all 0.2s; }
.dark-mode .circle-play svg { fill: #fff; }

.at-time { font-family: -apple-system, sans-serif; font-size: 0.75rem; font-weight: 500; color: #888; }
.at-timeline { flex-grow: 1; height: 4px; background: rgba(0,0,0,0.08); border-radius: 2px; position: relative; overflow: hidden; }
.dark-mode .at-timeline { background: rgba(255,255,255,0.1); }
.at-progress { height: 100%; background: #007aff; border-radius: 2px; width: 0; transition: width 0.1s linear; }

/* Soundtrack Grid / Apple Music Track Cells */
.st-grid { display: flex; flex-direction: column; }

.ios-track-cell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}
.dark-mode .ios-track-cell {
    background: #1c1c1e;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.ios-track-cell:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.dark-mode .ios-track-cell:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}

.ios-track-left { display: flex; align-items: center; gap: 1rem; }
.ios-track-num { font-family: -apple-system, sans-serif; color: #999; font-size: 0.9rem; font-weight: 500; width: 24px; text-align: center; }
.ios-track-thumb { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; box-shadow: 0 2px 6px rgba(0,0,0,0.06); }
.ios-track-info { display: flex; flex-direction: column; gap: 0.15rem; margin-left: 0.2rem; }
.ios-track-title { font-family: -apple-system, sans-serif; font-size: 1.05rem; font-weight: 500; letter-spacing: -0.01em; color: var(--text-color); }
.ios-track-sub { font-family: -apple-system, sans-serif; font-size: 0.8rem; color: #888; }

.ios-track-cell .btn-mini-play {
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.ios-track-cell .btn-mini-play:hover { background: rgba(0,0,0,0.05); }
.dark-mode .ios-track-cell .btn-mini-play:hover { background: rgba(255,255,255,0.1); }
.ios-track-cell .btn-mini-play svg {
    width: 14px;
    height: 14px;
    fill: var(--text-color);
    margin-left: 2px;
}

/* Responsive adjustments for new pages */
@media (max-width: 1024px) {
    .prod-3col-grid { grid-template-columns: 1fr; }
    .prod-3col-grid .prod-disp-card { border-right: none; border-bottom: 1px solid #000; }
    .prod-dense-grid { grid-template-columns: 1fr; }
    .p-card.border-right { border-right: none; }
    .about-hero { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .grid-cell { border-right: none; }
    .gd-masonry { grid-template-columns: repeat(2, 1fr); }
    .gd-info-grid { grid-template-columns: 1fr; }
    .gd-info-cell.border-right { border-right: none; border-bottom: 1px solid var(--border-color); }
    .audio-track-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .giant-bg-text { font-size: 35vw; }
    .prod-info-links { flex-direction: column; gap: 1rem; text-align: center; }
    .links-left a { margin: 0 0.5rem; }
    .gd-other-grid { grid-template-columns: 1fr; }
    .gd-other-grid .left-col { border-right: none; border-bottom: 1px solid var(--border-color); padding-bottom: 2rem; margin-bottom: 2rem; }
}

/* Global Footer & Unifications */
.global-footer {
    display: flex;
    flex-direction: column;
    padding: 3rem 5% 4rem 5%;
    background: var(--bg-color);
    z-index: 100;
    position: relative;
}

.global-footer.border-top {
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.dark-mode .global-footer.border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.footer-left .block-text {
    display: block;
    line-height: 1.1;
    font-weight: 700;
}
.footer-center {
    display: flex;
    gap: 2.5rem;
}
.footer-center a {
    text-decoration: none;
    color: #777;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    font-weight: 600;
    transition: color 0.3s;
}
.dark-mode .footer-center a {
    color: #aaa;
}
.footer-center a:hover {
    color: var(--text-color);
}
.footer-right {
    text-align: right;
    font-weight: 500;
    color: #999;
    font-size: 0.65rem;
    letter-spacing: 0.02em;
}
.dark-mode .footer-right {
    color: #666;
}
.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    .footer-center {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 1.5rem;
    }
    .footer-right {
        width: 100%;
        text-align: left;
    }
    .footer-right .text-right {
        text-align: left !important;
    }
}

/* Typography Utilities */
.font-lg { font-size: 1.5rem; }
.font-sm { font-size: 0.85rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.w-full { width: 100%; display: block; }
.border { border: 1px solid var(--border-color); }

/* ABOUT PAGE */
.about-container { padding-top: 80px; position: relative; z-index: 2; }
.about-hero {
    display: flex;
    justify-content: space-between;
    padding: 100px 5% 60px;
    align-items: center;
}
.about-hero-text {
    width: 60%;
}
.about-giant-name {
    font-size: clamp(4rem, 8vw, 10rem);
    font-family: var(--font-serif);
    line-height: 0.9;
    letter-spacing: -2px;
}
.about-desc-lg {
    font-size: 2rem;
    margin-top: 2rem;
    max-width: 600px;
}
.about-hero-img {
    width: 35%;
    aspect-ratio: 3/4;
    background: url('assets/ABOUT-ME/about-edouard.png') center/cover;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-top: 1px solid var(--border-color);
}
.grid-cell.bio-cell, .grid-cell.expertise-cell, .grid-cell.contact-cell {
    padding: 3rem 5%;
}
.about-grid h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.about-grid p { font-size: 1rem; line-height: 1.6; opacity: 0.8; }
.large-sans { font-size: 1.5rem !important; line-height: 1.8 !important; }
.social-icons { display: flex; gap: 1rem; }
.fake-icon { border: 1px solid var(--border-color); padding: 0.5rem; cursor: pointer; }

/* GALLERY DETAIL PAGE */
.gallery-detail-container { padding-top: 80px; position: relative; z-index: 2; }
.gd-hero {
    padding: 60px 5%;
}
.massive-text {
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 1;
    letter-spacing: -2px;
}

/* Premium Minimal overrides */
.prod-giant-type {
    padding: 6rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.prod-giant-type .massive-text {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.4;
    letter-spacing: 0.25em;
    font-weight: 300;
    font-style: normal;
    text-align: center;
    margin-left: 0;
    margin-bottom: 1.5rem;
    color: #111;
}
.gd-masonry {
    column-count: 3;
    column-gap: 1rem;
    padding: 2rem 5%;
}
.gd-item {
    break-inside: avoid;
    margin-bottom: 1rem;
}
.gd-item img {
    width: 100%;
    display: block;
    height: auto;
}
.gd-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
}
.gd-info-cell {
    padding: 3rem 5%;
}
.gd-info-cell h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-transform: uppercase;
}
.gd-info-cell p { font-size: 1rem; opacity: 0.8; }
.gd-other-content { padding: 4rem 5%; }
.gd-other-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
}
.left-col { padding: 2rem; display: flex; flex-direction: column; gap: 2rem; }
.right-col { padding: 2rem; display: flex; flex-direction: column; gap: 2rem; }

/* MASONRY OVERRIDES */
/* Homepage: Latest Works & BTS Optimization */
.works-masonry {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 2rem;
    padding: 2rem 5%;
    width: 100%;
}

/* ==========================================
   CLOUD MV PAGE
   ========================================== */
.mv-container {
    padding-top: 100px !important;
    padding-bottom: 50px;
}
.mv-hero {
    padding: 4rem 5%;
    text-align: center;
}
.mv-title {
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: -2px;
    margin-bottom: 1rem;
}
.mv-subtitle {
    font-size: 1.5rem;
    opacity: 0.7;
    font-weight: 300;
}
.mv-grid {
    column-count: 2;
    column-gap: 2rem;
    padding: 2rem 5%;
}
.mv-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}
.mv-item img {
    width: 100%;
    height: auto;
    display: block;
}
.mv-desc-section {
    padding: 4rem 15%;
    text-align: center;
}
.mv-desc-section p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 300;
}
@media (max-width: 768px) {
    .mv-grid { column-count: 1; }
}

.bts-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden; /* prevent images from bleeding above/below the strip */
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) transparent;
}
.bts-scroll-wrapper::-webkit-scrollbar {
    height: 3px;
}
.bts-scroll-wrapper::-webkit-scrollbar-thumb {
    background: var(--border-color);
}

/* BTS: fixed-height horizontal strip — width per item adapts to image ratio */
.bts-masonry {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    padding: 2rem 5% 1.5rem 5%;
    width: max-content;
    min-width: 100%;
    align-items: stretch;
    scroll-snap-type: x mandatory;
    height: 420px; /* strip height: all items fill this */
}

/* All BTS items: height 100%, width auto by default */
.bts-masonry .masonry-item,
.bts-masonry .collection-group {
    flex: none !important;
    width: auto !important;
    min-width: unset !important;
    max-width: unset !important;
    height: 100%;
    max-height: 100%; /* never exceed strip height */
    overflow: hidden; /* clip any content that exceeds the box */
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

/* BTS collection groups: image grid fills available height */
.bts-masonry .collection-group .collection-grid {
    flex: 1 1 0;
    min-height: 0;
    grid-template-rows: 1fr; /* Force 1 explicit row */
}

/* BTS collection groups: fixed width */
.bts-masonry .collection-group {
    width: 480px !important; /* Ideal cinematic width for 2 horizontal images */
}

/* BTS collection groups: images perfectly split the width */
.bts-masonry .collection-group .collection-grid {
    display: flex !important; /* Override typical grid for natural shrink-wrap */
    flex-wrap: nowrap;
    gap: 0.75rem;
    height: 100%;
}
.bts-masonry .collection-group .collection-grid img {
    flex: 1 1 0; /* Forces images to fill the container equally and eliminates gaps */
    width: 0 !important;
    height: 100% !important;
    min-height: 0; /* important for flexbox layout */
    object-fit: cover !important;
    display: block;
    border-radius: 12px;
}

/* BTS single items: uniform iOS-style cards */
.bts-masonry > .masonry-item:not(.collection-group) {
    overflow: hidden;
    width: max-content !important; /* Absolutely forces wrapper to perfectly hug image bounds */
}
.bts-masonry > .masonry-item:not(.collection-group) img {
    height: 100% !important;
    width: auto !important; /* Prevents stretching */
    object-fit: cover !important;
    display: block;
    max-width: none;
    border-radius: 24px; /* match outer wrapper */
}

.masonry-item {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.03);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease;
    min-height: 0;  /* allow flex/grid stretch to work */
}

.dark-mode .masonry-item {
    background-color: #1c1c1e;
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Generic masonry item images (outside BTS) */
.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: initial;
}


/* Collection Group Styles - Optimized for wide layout */
.collection-group {
    grid-column: span 2; /* 3 boxes will fit in one 6-column row */
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.03);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.dark-mode .collection-group {
    background-color: #1c1c1e;
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cols for condensation */
    grid-gap: 0.75rem;
    /* Don't force grid cells to a fixed height */
    align-items: start;
}

.collection-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.collection-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Images inside collection grid: uniform square cells, no whitespace */
.collection-grid img {
    width: 100%;
    height: 140px;             /* increased height to prevent ultra-wide cards */
    object-fit: cover !important;
    object-position: center 20%; /* Preserves faces from vertical cropping */
    display: block;
    border-radius: 12px;
}


/* Override for images NOT in collection-grid (standalone masonry items) */
.works-masonry > .masonry-item:not(.collection-group) img {
    width: 100%;
    height: auto !important;
    object-fit: initial !important;
    display: block;
}


.collection-label {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 1rem;
}

.dark-mode .collection-label {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.collection-label span:first-child {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: -0.01em;
}

.collection-label span:last-child {
    font-size: 0.65rem;
    font-weight: 600;
    color: #777;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 14px;
    text-transform: uppercase;
}

.dark-mode .collection-label span:last-child {
    background: rgba(255, 255, 255, 0.08);
    color: #aaa;
}

.masonry-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.dark-mode .masonry-item:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 1200px) {
    .works-masonry { grid-template-columns: repeat(4, 1fr); }
    /* BTS: keep auto-width, just reduce strip height */
    .bts-masonry { height: 380px; }
}

@media (max-width: 1024px) {
    .works-masonry { grid-template-columns: repeat(2, 1fr); }
    .collection-group { grid-column: span 1; }
}

@media (max-width: 768px) {
    .works-masonry { grid-template-columns: 1fr; }
    .bts-masonry { height: 300px; }
    .bts-masonry .collection-group { width: 360px !important; }
    
    .bts-masonry > .masonry-item:not(.collection-group) img {
        min-width: 190px !important;
    }
    .bts-single .floating-label {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 8px 10px;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 4px;
    }
    .bts-single .floating-label span:first-child {
        font-size: 0.70rem;
        white-space: nowrap;
    }
    .bts-single .floating-label span:last-child {
        font-size: 0.6rem;
        padding: 4px 8px;
        white-space: nowrap;
    }
}

/* FULLSCREEN PLAYER OVERLAY */
#global-fullscreen-player {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: transparent;
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow: hidden;
}
#global-fullscreen-player.active {
    opacity: 1;
    pointer-events: auto;
}

/* UI Stagger Transition to Mask Blur Lag */
#global-fullscreen-player .am-left-col,
#global-fullscreen-player .am-right-col,
#global-fullscreen-player .fs-close-btn {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

#global-fullscreen-player.active .am-left-col {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

#global-fullscreen-player.active .am-right-col {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
}

#global-fullscreen-player.active .fs-close-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}

/* Apple Glassmorphism Widget Style */
.apple-glass-widget {
    width: 100%;
    max-width: 380px;
    background: rgba(30, 30, 30, 0.4);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 32px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    padding: 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    margin-left: 2vw; /* Push slightly in from the left edge */
}

/* Let the artwork float freely above the glass card */
.apple-glass-widget .am-artwork {
    width: 130%;
    aspect-ratio: auto;
    border-radius: 0;
    box-shadow: none;
    margin-top: -6rem;
    margin-bottom: 1.5rem;
    object-fit: contain;
    background: transparent;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
    z-index: 5;
}

/* Adjust text and controls spacing inside widget */
.apple-glass-widget .am-track-info {
    text-align: left;
    width: 100%;
    margin-bottom: 2rem;
}

.apple-glass-widget .am-track-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.apple-glass-widget .am-track-artist {
    font-size: 1rem;
    opacity: 0.8;
}
.fs-player-container {
    background: #fff;
    width: 100%;
    max-width: 1200px;
    height: 90vh;
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
}
.fs-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}
.fs-mp-header {
    padding: 2rem;
}
.fs-mp-body {
    display: flex;
    flex: 1;
    overflow: hidden;
}
.fs-mp-visual {
    width: 50%;
    display: flex;
    flex-direction: column;
}
.music-note-wireframe {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15vw;
    color: rgba(0,0,0,0.05);
}
.fs-mp-controls {
    width: 50%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.fs-playlist-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.fs-playlist-list li {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}
.fs-playlist-list li:hover {
    background: #fafafa;
}

/* ==========================================
   FULLSCREEN PLAYER - scoped overrides 
   ========================================== */
.fs-player-container .main-title {
    position: static !important;
    top: auto !important;
    font-size: clamp(2rem, 4vw, 3.5rem) !important;
    line-height: 1 !important;
    margin-bottom: 0 !important;
    pointer-events: auto !important;
    letter-spacing: -2px;
}
.fs-mp-header {
    padding: 2rem 2.5rem;
    min-height: auto;
    display: flex;
    align-items: center;
}

/* Gallery detail: Pinterest-style masonry — images at natural proportions */
.gd-masonry {
    column-count: 3;
    column-gap: 8px;
    padding: 2rem 5%;
    background: transparent;
}
.gd-item {
    break-inside: avoid;
    margin-bottom: 8px;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}
.gd-item img {
    width: 100%;
    height: auto;          /* natural image proportions — no crop */
    display: block;
    transition: transform 0.4s ease, opacity 0.3s ease;
}
.gd-item:hover img {
    transform: scale(1.03);
    opacity: 0.92;
}

/* Home page sections scoped — prevent bleedthrough via SPA */


@media (max-width: 1024px) { .gd-masonry { column-count: 2; } }
@media (max-width: 600px)  { .gd-masonry { column-count: 1; } }

/* Back Button */
.back-btn {
    position: fixed;
    top: 6rem;
    left: 2rem;
    z-index: 9999;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(5px);
}
.back-btn:hover {
    background: var(--text-color);
    color: var(--bg-color);
}

/* Modal Styles */
.reserve-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reserve-modal-overlay.open {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


/* Music Player Fix */
#global-mini-player-ui {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: auto;
    min-width: 250px;
    max-width: 300px;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 10000;
    transition: all 0.3s ease;
    transform-origin: bottom right;
}

/* About Page Mobile Fixes */
@media (max-width: 900px) {
    .about-hero {
        flex-direction: column !important;
        padding: 50px 5% 30px !important;
        align-items: flex-start !important;
    }
    .about-hero-img {
        width: 100% !important;
        aspect-ratio: 4/5 !important;
        min-height: auto;
        border-left: none;
        border-top: 1px solid var(--border-color);
        margin-top: 2rem;
    }
    .about-hero-text {
        width: 100% !important;
        padding: 0 !important;
    }
    .about-grid {
        grid-template-columns: 1fr !important;
    }
    .bio-cell, .expertise-cell, .contact-cell {
        border-right: none !important;
        border-bottom: 1px solid var(--border-color);
    }
    .about-grid p {
        font-size: 0.95rem;
    }
    
    /* Home Page Hero Mobile Fix - Editorial Desktop Style */
    .hero {
        min-height: auto;
        padding-top: 9rem; /* Added space to avoid top bar */
        padding-bottom: 4rem;
        align-items: flex-start;
    }
        .hero-content {
        display: grid;
        grid-template-columns: 35% 30% 35%; /* Side text columns, narrower center */
        align-items: center; /* Center the text vertically relative to portrait */
        gap: 0;
    }
    .hero .main-title {
        position: absolute !important;
        top: -2rem !important; 
        left: 0 !important;
        grid-column: 1 / 4;
        font-size: clamp(1.8rem, 10vw, 3.5rem);
        max-width: 96vw;
        letter-spacing: -1px;
        word-break: break-word; /* Ensure long European language words wrap safely */
        margin-bottom: 0;
        line-height: 0.85;
        z-index: 0 !important; /* Placed BEHIND the person */
        pointer-events: none;
    }
    .hero-desc {
        text-align: left;
        max-width: 100%;
        margin: 0;
        font-size: 0.8rem; /* shrink font to fit the narrow column beautifully */
        padding-right: 0.5rem;
        z-index: 2;
    }
    .side-info {
        text-align: right;
        padding-top: 0;
        font-size: 0.8rem;
        z-index: 2;
    }
    .portrait-container {
        z-index: 10 !important; /* Bring portrait to the FRONT */
    }
        .portrait-container {
        grid-column: 2;
        width: 100%;
        display: flex;
        justify-content: center;
        z-index: 10 !important; /* FRONT OF TEXT */
    }
    .portrait-img {
        width: 150%; /* Make portrait gigantic so it spills into left/right columns over the text */
        max-width: none;
        max-height: 50vh;
        object-fit: contain;
        transform: translateX(-15%); /* Pull towards center visually if needed */
    }

    .back-btn {
        top: 4.5rem;
        left: 1rem;
        width: 40px;
        height: 40px;
    }
    .artwork-display {
        flex-direction: column !important;
        padding-top: 4rem !important;
    }
    .artwork-frame {
        max-width: 90% !important;
        width: 90% !important;
        margin: 3rem auto !important;
    }
    .artwork-left-desc, .artwork-right-desc {
        width: 100% !important;
        text-align: left !important;
    }
    .artwork-right-desc {
        margin-top: 2rem;
    }
}

/* Global Social Links */
.global-social-link, .about-social-link {
    cursor: pointer;
    transition: opacity 0.3s;
}
.global-social-link:hover, .about-social-link:hover {
    opacity: 0.6;
}

/* Typography Helpers */
.mobi-br { display: none; }
@media (max-width: 768px) {
    .mobi-br { display: block; content: ""; }
}

/* About Typography Fixes */
.bio-cell { padding-right: 3rem !important; }
.bio-cell p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.5rem; text-align: left !important; }

/* Modal Safety & Base Layout Constraints */
.reserve-modal { 
    background: var(--bg-color);
    border-radius: 28px;
    border: 1px solid rgba(128,128,128,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    padding: 3rem; 
    width: 95%; 
    max-width: 500px;
    margin: 0 1rem;
}
.reserve-modal h2.modal-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    margin-bottom: 1rem;
    font-family: -apple-system, sans-serif;
    font-weight: 600;
}
.reserve-modal .modal-desc {
    font-family: -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    color: var(--text-color);
}
.reserve-modal .modal-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.reserve-modal .apple-btn-primary {
    width: 100%;
    border-radius: 14px;
    padding: 1.2rem;
    font-size: 1.1rem;
}
.reserve-modal .modal-btn-secondary {
    width: 100%;
    border-radius: 14px;
    padding: 1.2rem;
    background: rgba(128,128,128,0.1);
    color: var(--text-color);
    border: none;
    font-size: 1.1rem;
    font-family: -apple-system, sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}
.reserve-modal .modal-btn-secondary:hover {
    background: rgba(128,128,128,0.2);
}

@media (max-width: 768px) {
    .reserve-modal {
        padding: 1.8rem 1.2rem;
        border-radius: 20px;
    }
    .reserve-modal h2.modal-title {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }
    .reserve-modal .modal-desc {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    .reserve-modal .apple-btn-primary,
    .reserve-modal .modal-btn-secondary {
        padding: 0.8rem;
        font-size: 0.95rem;
        border-radius: 12px;
    }
    .reserve-modal .modal-actions {
        gap: 0.8rem;
    }
}

/* AssistiveTouch Minimized Player */
.global-mini-player {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.global-mini-player.minimized {
    transform: none !important;
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    max-width: 64px !important;
    max-height: 64px !important;
    flex: 0 0 64px !important;
    border-radius: 50% !important; /* Circular assistive ball */
    box-sizing: border-box !important;
    aspect-ratio: 1/1 !important;
    overflow: hidden;
    padding: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: grab;
    background: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(25px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(200%) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15) !important;
}
.global-mini-player.minimized:active {
    cursor: grabbing;
    transform: scale(0.95) !important;
}
.global-mini-player.minimized .mp-mini-header,
.global-mini-player.minimized .mp-mini-body {
    display: none !important;
}

.assistive-ball-icon {
    display: none;
    pointer-events: none;
}
.global-mini-player.minimized .assistive-ball-icon {
    display: block;
    width: 28px;
    height: 28px;
    fill: #1d1d1f;
    opacity: 0.9;
}
.dark-mode .global-mini-player.minimized .assistive-ball-icon {
    fill: #f5f5f7;
}

/* Unified Exhibition Catalog Layout */
.info-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 4rem clamp(2rem, 12vw, 16rem);
    gap: 3rem;
}
.info-block {
    display: flex;
    flex-direction: column;
}
.info-block .block-title {
    opacity: 0.5;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-size: 0.8rem;
}
.editorial-section {
    display: grid;
    grid-template-columns: 2fr 5fr;
    gap: 8rem;
    padding-left: clamp(2rem, 12vw, 16rem);
    padding-right: clamp(2rem, 12vw, 16rem);
}
.editorial-title-col {
    position: sticky;
    top: 6rem;
    align-self: start;
}
.editorial-title-col .block-title {
    opacity: 0.5;
    letter-spacing: 2px;
    font-size: 0.85rem;
}
.editorial-text {
    column-count: 2;
    column-gap: 4rem;
    column-rule: 1px solid rgba(0,0,0,0.1);
    font-size: 1.15rem;
    line-height: 2;
    text-align: justify;
    color: #222;
    font-weight: 300;
}
.editorial-text::first-letter {
    font-size: 4.5rem;
    float: left;
    line-height: 0.8;
    padding-right: 0.8rem;
    padding-top: 0.4rem;
    font-family: var(--font-serif);
    color: #000;
}
@media (max-width: 1024px) {
    .editorial-section {
        grid-template-columns: 1fr 2fr;
        gap: 4rem;
    }
}
@media (max-width: 900px) {
    .info-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .editorial-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .editorial-title-col {
        position: static;
    }
    .editorial-text {
        column-count: 1;
        column-rule: none;
    }
}

/* =========================================
   WECHAT QR MODAL
   ========================================= */
.qr-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.qr-modal-overlay.active {
    display: flex;
    opacity: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.qr-modal-content {
    position: relative;
    background: #fff;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: scaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.qr-image {
    width: 300px;
    height: 300px;
    object-fit: contain;
    border: 1px solid var(--border-color);
}

.qr-close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}
.qr-close-btn:hover { background: #fff; color: #000; }

@keyframes scaleUp {
    0% { transform: scale(0.95); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* =========================================
   APPLE MUSIC FULL-SCREEN PLAYER
   ========================================= */
.music-player-full-page {
    position: relative;
    overflow-x: hidden;
    background-color: #000; /* Fallback */
}

/* Dynamic Ambient Gradient Background */
.music-player-full-page::before {
    content: "";
    position: fixed;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.06) 0%, rgba(20,20,20,0.18) 38%, #000 82%);
    filter: blur(120px);
    z-index: -1;
    animation: flowBg 30s ease-in-out infinite alternate;
    pointer-events: none;
}

.music-player-container.am-mode {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

#fs-page-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.12) 28%, rgba(0,0,0,0.18) 62%, rgba(0,0,0,0.25) 100%),
        radial-gradient(circle at 18% 12%, rgba(255,255,255,0.10) 0%, transparent 24%),
        radial-gradient(circle at 82% 16%, rgba(255,255,255,0.06) 0%, transparent 22%),
        rgba(0,0,0,0.06);
    backdrop-filter: blur(35px) saturate(140%) brightness(0.9);
    -webkit-backdrop-filter: blur(35px) saturate(140%) brightness(0.9);
    will-change: transform, backdrop-filter;
    transform: translateZ(0);
}

.fs-page-backdrop-stage {
    position: absolute;
    inset: 0;
    width: 100vw;
    min-height: 100vh;
    transform-origin: top center;
    filter: saturate(108%) brightness(1.01) contrast(0.94); /* blur removed for perf */
    opacity: 0.7;
    will-change: transform;
    transform: translateZ(0);
}

.fs-page-backdrop-stage > * {
    pointer-events: none !important;
}

#fs-ambient-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    isolation: isolate;
    opacity: 1;
    will-change: transform;
    transform: translateZ(0);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03) 30%, rgba(255,255,255,0.025) 62%, rgba(255,255,255,0.06) 100%),
        radial-gradient(circle at 50% 18%, var(--ambient-vignette, rgba(255,255,255,0.12)) 0%, transparent 34%),
        radial-gradient(circle at 56% 72%, var(--ambient-haze, rgba(255,255,255,0.05)) 0%, transparent 40%),
        var(--ambient-base, rgba(255,255,255,0.02));
}

#fs-ambient-bg::before,
#fs-ambient-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

#fs-ambient-bg::before {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.045) 18%, transparent 40%, transparent 100%),
        radial-gradient(circle at 24% 18%, rgba(255,255,255,0.09) 0%, transparent 22%),
        radial-gradient(circle at 78% 24%, rgba(255,255,255,0.045) 0%, transparent 18%);
    opacity: 0.24;
    transform: translateZ(0); /* Hardware accelerate */
}

#fs-ambient-bg::after {
    background:
        linear-gradient(135deg, rgba(255,255,255,0.07), transparent 28%, transparent 72%, rgba(255,255,255,0.04));
    opacity: 0.08;
    transform: translateZ(0); /* Hardware accelerate */
}

.scribble-canvas,
.scribble-haze,
.glass-sheen,
.glass-haze {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.scribble-canvas,
.scribble-haze {
    display: none;
}

.glass-sheen {
    background:
        linear-gradient(112deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.025) 18%, transparent 42%),
        radial-gradient(circle at 12% 8%, rgba(255,255,255,0.09) 0%, transparent 22%);
    opacity: 0.14;
}

.glass-haze {
    background:
        radial-gradient(circle at 32% 64%, rgba(255,255,255,0.04) 0%, transparent 24%),
        radial-gradient(circle at 64% 46%, rgba(255,255,255,0.028) 0%, transparent 28%),
        radial-gradient(circle at 82% 78%, rgba(255,255,255,0.022) 0%, transparent 18%);
    opacity: 0.12;
    transform: translateZ(0); /* Hardware accelerate */
}

@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .fs-page-backdrop-stage {
        opacity: 0;
    }
}

.music-player-container.am-mode {
    display: flex;
    padding: 120px 5% 5rem;
    height: 100vh;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    gap: 10%;
    color: #fff;
    text-shadow: 0 8px 24px rgba(0,0,0,0.34);
}

/* Left Column: Artwork & Controls */
.am-left-col {
    position: relative;
    z-index: 2;
    width: 40%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.24), 0 18px 42px rgba(0,0,0,0.08);
    backdrop-filter: blur(16px) saturate(118%);
    -webkit-backdrop-filter: blur(16px) saturate(118%);
}

.am-artwork {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.24);
    margin-bottom: 2rem;
    object-fit: cover;
}

.am-track-info {
    width: 100%;
    text-align: left;
    margin-bottom: 1.5rem;
}

.am-track-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.am-track-artist {
    font-size: 1rem;
    opacity: 0.7;
}

.am-progress {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.am-progress input[type="range"] {
    flex: 1;
    height: 4px;
    -webkit-appearance: none;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    outline: none;
}

.am-progress input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

.am-time { font-size: 0.8rem; font-family: monospace; opacity: 0.6; }

.am-controls {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
}

.am-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.am-btn:hover { opacity: 0.7; }
.am-btn svg { fill: #fff; width: 24px; height: 24px; }
.am-btn-play { transition: none !important; }
.am-btn-play svg { width: 44px; height: 44px; display: block; }
.mp-mini-play { transition: none !important; }


/* Right Column: Lyrics */
.am-right-col {
    position: relative;
    z-index: 2;
    width: 50%;
    height: 70vh;
    overflow-y: auto;
    padding: 2rem 2.5rem 2rem 2rem;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0.06));
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 18px 42px rgba(0,0,0,0.06);
    backdrop-filter: blur(16px) saturate(118%);
    -webkit-backdrop-filter: blur(16px) saturate(118%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}
.am-right-col::before,
.am-right-col::after {
    content: '';
    display: block;
    height: 40vh; /* Provide empty scroll space to center the first/last items */
}
.am-right-col::-webkit-scrollbar { display: none; } /* hide scrollbar */

.am-lyric-line {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.3;
    opacity: 0.4;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 1rem;
    transform-origin: left center;
}

.am-lyric-line:hover {
    opacity: 0.7;
}

.am-lyric-line.active {
    opacity: 1;
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

@media (max-width: 900px) {
    .music-player-container.am-mode {
        flex-direction: column;
        padding: 80px 5% 3rem;
        gap: 1.5rem;
        height: auto;
    }
    .am-left-col { 
        width: 100%; 
        max-width: 100%; 
        padding: 1.5rem; 
    }
    .am-left-col .am-artwork {
        width: 75%;
        max-width: 300px;
        margin: 0 auto 1.5rem;
    }
    .am-left-col .am-track-title {
        font-size: 1.5rem;
    }
    .am-left-col .am-btn svg {
        width: 20px; height: 20px;
    }
    .am-left-col .am-btn-play svg {
        width: 36px; height: 36px;
    }
    .am-right-col { 
        width: 100%;
        max-width: 100%;
        height: 60vh; 
        min-height: 400px;
        padding: 1.5rem;
        border-radius: 24px;
        mask-image: none; 
        -webkit-mask-image: none; 
    }
    .am-right-col .am-lyric-line {
        font-size: 1.6rem;
    }
}

/* ========================================================
/* ========================================================
   VERTICAL CINEMATIC FLOW (VISUAL PAGE)
   ======================================================== */
.visual-page-container.gallery-section {
    overflow: visible; /* Required for position: sticky to work on children */
}

.visual-page-container .editorial-section-header {
    /* Engage the sticky left pillar when vertical scrolling begins */
    position: sticky;
    top: 5rem; /* Margin from top of screen */
    align-self: flex-start; /* Stop flex from stretching the height to 100% */
    z-index: 10;
}

@media (max-width: 1000px) {
    .visual-page-container .editorial-section-header {
        position: relative;
        top: auto;
        z-index: 1;
    }
}

.vertical-cinematic-flow {
    flex: 1; /* Occupies the 65% right space on desktop */
    display: flex;
    flex-direction: column;
    padding: 0 5% 5rem;
    padding-top: 5rem;
    gap: 8rem; /* Massive theatrical breathing room between videos */
}

@media (max-width: 900px) {
    .vertical-cinematic-flow {
        padding: 2rem 5% 5rem;
        gap: 5rem;
    }
}

.cinematic-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.art-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Elegant subtle rounding */
    box-shadow: 0 10px 40px rgba(0,0,0,0.15); /* Premium depth */
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cinematic-caption {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 0.5rem;
}

.cinematic-caption h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
    font-family: var(--font-sans);
}

.cinematic-caption p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =========================================
   EDITORIAL HERO SECTIONS (GALLERY & AUDITORY)
   ========================================= */
.editorial-hero {
    padding: 110px 5% 2rem;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-color);
}

.eh-huge-title {
    margin-bottom: 2rem;
    max-width: 100%;
}

.eh-huge-title h1 {
    font-size: clamp(2rem, 4.5vw, 4rem);
    line-height: 1.1;
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--text-color);
    white-space: normal; /* allow wrapping if absolutely necessary */
}

.eh-statement-container {
    display: flex;
    justify-content: flex-end;
}

.eh-statement-text {
    max-width: 500px;
    width: 100%;
}

.gallery-statement-p1, .auditory-statement-p1 {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-style: italic;
    line-height: 1.4;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.gallery-statement-p2, .auditory-statement-p2 {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    opacity: 0.8;
    margin-left: 2.5rem;
    margin-bottom: 0.75rem;
}

.gallery-statement-p3, .auditory-statement-p3 {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.9;
}

.gallery-statement-p4 {
    display: inline-block;
    margin-top: 1.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: var(--font-sans);
    font-weight: 600;
}

@media (max-width: 900px) {
    .editorial-hero { padding-top: 100px; }
    .eh-huge-title h1 { font-size: clamp(2.2rem, 7vw, 3rem); }

    .eh-statement-container { justify-content: flex-start; }
    .gallery-statement-p2, .auditory-statement-p2 { margin-left: 1rem; }
}

/* =========================================
   Horizontal Track Interactions (Deck & Endcard)
   ========================================= */
.scroll-affordance {
    margin-top: 2rem;
    display: inline-block;
    animation: panRight 2s infinite ease-in-out;
}
@keyframes panRight {
    0%, 100% { transform: translateX(0); opacity: 0.4; }
    50% { transform: translateX(10px); opacity: 0.8; }
}

.end-card-item {
    background-color: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.huge-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    font-weight: 300;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.huge-view-all:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
    transform: scale(1.05);
}

.horizontal-track .track-item .art-box {
    transform-origin: center right;
    will-change: transform, opacity;
}

/* =========================================================================
   CINEMATIC THEATRE PLAYER (video-player.html)
   ========================================================================= */

/* =========================================================================
   APPLE EDITORIAL VIDEO PLAYER (video-player.html)
   ========================================================================= */

.apple-video-body {
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

.apple-video-container {
    width: 100%;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.apple-video-section {
    width: 85%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.video-meta-top {
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.apple-link-primary.back-to-visuals {
    margin-bottom: 2rem;
    display: inline-block;
    color: #888;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.apple-link-primary.back-to-visuals:hover {
    color: var(--text-color);
}

.apple-video-stage-wrapper {
    width: 100%;
    margin-bottom: 2rem;
}

.apple-video-stage {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    background: #f0f0f0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s;
}

.dark-mode .apple-video-stage {
    background: #111;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.apple-video-stage:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.dark-mode .apple-video-stage:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.apple-video-element {
    width: 100%;
    height: auto;
    max-height: 85vh;
    display: block;
    object-fit: contain;
    background: #000;
}

.play-overlay-button {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.1);
    cursor: pointer;
    transition: background 0.3s, opacity 0.3s;
    z-index: 5;
}

.play-overlay-button:hover {
    background: rgba(0,0,0,0.2);
}

.play-overlay-button.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-icon-glass {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s;
}

.play-overlay-button:hover .play-icon-glass {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.play-icon-glass svg {
    width: 36px;
    height: 36px;
    fill: #fff;
    margin-left: 4px; /* visually center the triangle */
}

.video-meta-bottom {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #666;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .apple-video-section {
        width: 90%;
    }
    .video-meta-top {
        margin-bottom: 2rem;
    }
    .play-icon-glass {
        width: 60px;
        height: 60px;
    }
    .play-icon-glass svg {
        width: 28px;
        height: 28px;
    }
}

/* =========================================================================
   CUSTOM LOGO IMAGES
   ========================================================================= */

.nav-logo-img {
    height: 28px;
    width: auto;
    max-width: 250px;
    display: block;
    object-fit: contain;
    transform: translateY(2px);
}

.footer-logo-img {
    height: 40px;
    width: auto;
    max-width: 250px;
    display: block;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

/* =========================================================================
   FLOATING iOS PILL (BTS Single Items)
   ========================================================================= */

.bts-single {
    border-radius: 28px;
    background: transparent;
    padding: 12px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05); /* Match global border color */
}
.dark-mode .bts-single {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.06);
}
.bts-single img {
    border-radius: 18px;
    width: 100%;
    display: block;
}

.bts-single .floating-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 0.8rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.dark-mode .bts-single .floating-label {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bts-single .floating-label span:first-child {
    font-size: 0.85rem;
    font-weight: 600;
    color: #000;
    letter-spacing: -0.01em;
}

.dark-mode .bts-single .floating-label span:first-child {
    color: #fff;
}

.bts-single .floating-label span:last-child {
    font-size: 0.65rem;
    font-weight: 600;
    color: #444;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 14px;
}

.dark-mode .bts-single .floating-label span:last-child {
    color: #ccc;
    background: rgba(255, 255, 255, 0.1);
}

/* =========================================================================
   APPLE STYLE AESTHETICS (PRODUCT PAGE REDESIGN)
   ========================================================================= */

.apple-pill-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.8rem;
    border-radius: 999px;
    background: transparent;
    color: var(--text-color);
    border: 1px solid rgba(128, 128, 128, 0.4);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.1em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.apple-pill-btn:hover {
    background: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
    transform: scale(1.02);
}

.apple-hero-container {
    padding: 10rem 5% 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bg-color); /* pure background */
}

.apple-hero-title {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.apple-hero-sub {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    color: #86868b;
    margin-bottom: 2rem;
}

.apple-btn-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.apple-btn-primary {
    background-color: var(--text-color);
    color: var(--bg-color);
    font-family: "Inter", "Noto Sans SC", sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.8rem 2.4rem;
    border-radius: 50px;
    border: 1px solid var(--text-color);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.apple-btn-primary:hover {
    background-color: transparent;
    color: var(--text-color);
}

.apple-link-primary {
    color: var(--text-color);
    font-family: "Inter", "Noto Sans SC", sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(128,128,128,0.4);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.apple-link-primary:hover {
    border-bottom-color: var(--text-color);
    text-decoration: none;
}
.dark-mode .apple-link-primary {
    border-bottom-color: rgba(255,255,255,0.4);
}

.apple-bento-section {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.apple-bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .apple-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .apple-bento-grid {
        grid-template-columns: 1fr;
    }
}

/* Base item class */
.apple-card {
    background: #fbfbfd;
    border-radius: 30px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.dark-mode .apple-card {
    background: #1c1c1e;
    border: 1px solid rgba(255,255,255,0.05);
}

.apple-card:hover {
    transform: scale(1.02);
}

/* Specific Span Configurations */
.apple-card-span-3 {
    grid-column: span 3;
    flex-direction: row;
    padding: 3rem;
    text-align: left;
    align-items: center;
    justify-content: space-between;
}

.apple-card-span-3 .apple-card-title,
.apple-card-span-3 .apple-card-meta,
.apple-card-span-3 .apple-card-sub {
    justify-content: flex-start;
    text-align: left;
}

.apple-card-span-2 {
    grid-column: span 2;
    flex-direction: column;
}

@media (max-width: 1024px) {
    .apple-card-span-3 {
        grid-column: 1 / -1; /* Full width */
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }
    .apple-card-span-3 .apple-card-title,
    .apple-card-span-3 .apple-card-meta,
    .apple-card-span-3 .apple-card-sub {
        justify-content: center;
        text-align: center;
    }

    .apple-card-span-2 {
        grid-column: span 1; /* 50% width */
    }
    .apple-card-span-2.tablet-full {
        grid-column: 1 / -1; /* The odd one out takes full width */
    }
}

@media (max-width: 768px) {
    .apple-card-span-3, 
    .apple-card-span-2 {
        grid-column: 1 / -1;
    }
}

.apple-card-title {
    font-family: -apple-system, sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    min-height: 72px; /* Force 2 lines to align siblings */
    display: flex;
    align-items: center;
    justify-content: center;
}

.apple-card-sub {
    font-family: -apple-system, sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #86868b;
    margin-bottom: 2rem;
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apple-card-meta {
    font-family: -apple-system, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #86868b;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apple-card-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    margin-top: 2rem;
    border-radius: 16px;
}

.apple-card-span-3 .apple-card-img {
    width: 45%;
    max-width: 400px;
    margin-top: 0;
}

.apple-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-top: auto;
    margin-bottom: 2rem;
}

.apple-card-span-3 .apple-price-row {
    justify-content: flex-start;
}

@media (max-width: 1024px) {
    .apple-card-span-3 .apple-price-row {
        justify-content: center;
    }
    .apple-card-span-3 .apple-card-img {
        width: 100%;
        margin-top: 2rem;
    }
    .apple-card-img {
        max-width: 400px;
    }
}

.apple-price {
    font-family: -apple-system, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}
