
@font-face {
    font-family: 'Garet';
    src: url('./assets/Garet-Book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Galderglynn Titling';
    src: url('./assets/Galderglynn%20Titling%20Rg.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
:root {
    --bg-color: #e6e6e6;
    --bg-primary: #e6e6e6;
    /* Monolith Light Grey */
    --bg-secondary: #f0f0f0;
    --text-primary: #000000;
    /* Black Text */
    --text-secondary: #666666;
    --accent: #ff0000;
    --border-color: rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.4);
    --font-main: 'Outfit', sans-serif;

    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 5rem;
    --spacing-xl: 10rem;

    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Removed cursor: none to fix emulator cursor missing */
}

@media (pointer: fine) and (min-width: 993px) {
    .custom-cursor {
        display: block;
    }
    body {
        cursor: none;
    }
    a, button {
        cursor: none;
    }
}

/* 3D Statue Container */
.statue-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

#lottie-statue {
    position: absolute;
    width: max(150vw, 150vh);
    height: max(150vw, 150vh);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    /* Slightly higher to align top */
    flex-shrink: 0;
    /* background: url('./assets/mountain.png') no-repeat center center / contain; (removed because file is missing and hero.webp is the placeholder) */
}

#lottie-statue svg,
#lottie-statue canvas {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

html {
    /* Removed scroll-behavior: smooth; to fix Lenis conflict */
    overflow-x: hidden;
    background-color: var(--bg-color);
    overscroll-behavior-y: none;
    touch-action: manipulation;
}

body {
    background-color: transparent;
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    touch-action: manipulation;
}

/* Beautiful vignette: Dark in the center for the mountain to pop, bright on the edges for the black text */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100vh;
    background-image:
        linear-gradient(rgba(242, 242, 242, 0.75), rgba(242, 242, 242, 0.75)),
        url('./assets/new_bg.webp');
    background-size: cover;
    background-position: center;
    z-index: -2;
    pointer-events: none;
}

/* ... keeping other code ... */

/* We'll replace the .hero-content block entirely by matching the existing one */
/* Custom Cursor */
.custom-cursor {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.custom-cursor.hover {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid white;
    mix-blend-mode: normal;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 500;
    line-height: 1.1;
}

.huge-text {
    font-size: clamp(4rem, 10vw, 12rem);
    text-transform: uppercase;
    letter-spacing: -0.04em;
    margin-bottom: var(--spacing-lg);
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Header */
.header {
    position: absolute;
    /* Monolith has absolute header at top, not fixed/blur? Wait, monolith header scrolls away or stays? They stay fixed usually. I'll keep fixed. */
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    z-index: 100;
    background: transparent;
    transition: transform var(--transition-fast);
}

.header.hidden {
    transform: translateY(-100%);
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo a {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
}

.logo-meta {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    /* Grey text for time/location */
    font-weight: 600;
    letter-spacing: 0.02em;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.sound-toggle {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: #000 !important;
    font-size: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: 0.02em;
    cursor: pointer;
    padding: 0;
    margin-right: 0.5rem;
    text-transform: uppercase;
    transition: opacity 0.3s;
    z-index: 9999;
}

.sound-state-text {
    margin-right: 4px;
}

.eq-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 12px;
    margin-bottom: 2px;
}

.eq-bars .bar {
    width: 3px;
    background: #000;
    transform-origin: bottom;
    animation: eq-play 0.8s infinite alternate ease-in-out;
}

.eq-bars.paused .bar {
    animation: none;
    height: 20%;
}

.eq-bars .bar-1 { height: 60%; animation-delay: 0s; }
.eq-bars .bar-2 { height: 100%; animation-delay: 0.2s; }
.eq-bars .bar-3 { height: 80%; animation-delay: 0.4s; }

@keyframes eq-play {
    0% { transform: scaleY(0.2); }
    100% { transform: scaleY(1); }
}

.sound-toggle:hover {
    opacity: 0.7;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.mobile-menu-btn {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-text {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--text-primary);
}

.hamburger {
    position: relative;
    width: 26px;
    height: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
}

.dot.blink {
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/* Removed duplicate .nav base rules */

.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: width var(--transition-fast);
}

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

.btn-book {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    transition: var(--transition-fast);
}

.btn-book::after {
    display: none;
}

.btn-book:hover {
    background-color: #fff;
    color: #000;
}

.btn-book .arrow {
    transition: transform var(--transition-fast);
}

.btn-book:hover .arrow {
    transform: translateX(4px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #c5c5c5;
    color: #000;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #000;
}

.mobile-nav-brand .brand-name {
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    color: #000;
}

.mobile-nav-brand .brand-meta {
    font-size: 0.85rem;
    color: #444;
    margin-top: 0.2rem;
}

.mobile-close-btn {
    background: none;
    border: none;
    color: #000;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-family: inherit;
}

.mobile-close-btn .x-icon {
    font-size: 1.5rem;
    font-weight: 300;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 0.5rem;
}

.mobile-nav-links .mobile-link {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.mobile-nav-book {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.mobile-link-book {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-link-book .arrow {
    font-size: 1.5rem;
    font-weight: 300;
}

.mobile-nav-footer {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    color: #000;
}

.footer-col a,
.footer-col p {
    display: block;
    font-size: 0.95rem;
    color: #000;
    margin-bottom: 0.4rem;
    font-weight: 400;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 2rem;
    overflow: hidden;
}

.smoke-layer {
    position: absolute;
    width: 200vw;
    height: 200vh;
    background-image: url('./assets/smoke.webp');
    background-size: 50vw;
    background-repeat: repeat;
    filter: blur(15px);
    mix-blend-mode: screen;
    pointer-events: none;
    opacity: 0.8;
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 60%);
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 60%);
}

.smoke-1 {
    top: 30vh;
    left: -50vw;
    animation: float-smoke 20s infinite alternate ease-in-out;
}

.smoke-2 {
    top: 50vh;
    left: 10vw;
    animation: float-smoke 25s infinite alternate-reverse ease-in-out;
}

@keyframes float-smoke {
    0% {
        margin-top: 0;
        margin-left: 0;
    }

    100% {
        margin-top: -50px;
        margin-left: -50px;
    }
}



.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.3) 0%, rgba(5, 5, 5, 1) 100%);
}

.hero-content {
    margin-top: 50px;
    width: 100vw;
    margin-left: -2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reveal-text {
    font-family: 'Galderglynn Titling', sans-serif;
    width: max-content;
    font-size: 14vw;
    font-weight: normal;
    display: block;
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
    line-height: 0.8;
    letter-spacing: 0;
    z-index: -1;
    color: var(--text-primary);
    text-shadow: none;
}

.reveal-text span {
    display: inline-block;
    transform: translateY(100%);
    animation: reveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.scroll-word {
    color: var(--text-primary);
    opacity: 0.12;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
    transform: translate3d(0, 8px, 0);
    will-change: opacity, transform;
}

.scroll-word.active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@keyframes reveal {
    to {
        transform: translateY(0);
    }
}

.hero-subtitle {
    position: relative;
    margin-top: 0.5rem;
    text-align: right;
    width: max-content;
    font-size: clamp(0.9rem, 1.3vw, 1.3rem); /* Scaled 1.3x */
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: -0.02em;
    z-index: 10;
    color: var(--text-primary);
}

.hero-subtitle-large {
    font-family: 'Galderglynn Titling', sans-serif;
    display: block;
    font-size: 7.8vw;
    font-weight: normal;
    line-height: 0.9;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}



.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.scroll-indicator .line {
    width: 50px;
    height: 1px;
    background: var(--border-color);
    position: relative;
    overflow: hidden;
}

.scroll-indicator .line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    to {
        left: 100%;
    }
}

/* Birds in Hero */
.birds-container {
    position: absolute;
    top: 40vh;
    right: 15vw;
    width: 400px;
    height: 300px;
    pointer-events: none;
    z-index: 10;
    opacity: 0.7;
}

.bird-wrapper {
    position: absolute;
}

.bird-1 {
    top: 0;
    left: 0;
    width: 80px;
    height: 40px;
}

.bird-2 {
    top: 80px;
    left: 200px;
    width: 50px;
    height: 25px;
}

.bird-3 {
    top: 180px;
    left: 80px;
    width: 60px;
    height: 30px;
}

.bird {
    width: 100%;
    height: 100%;
    transform-origin: center;
}

/* About / Studio Section */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: start;
}

.tag {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    padding: 0.3rem 1rem;
    border-radius: 100px;
}

.about-text h2 {
    font-family: 'Garet', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2.5rem);
    font-weight: normal;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.about-text p:last-of-type {
    margin-bottom: 3rem;
}

.about-page-content {
    max-width: 900px;
}

.about-page-content p {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}




.about-sidenote {
    background-color: #000000;
    color: #ffffff;
    padding: 2rem;
    margin-top: 60vh;
    /* Smooth liquid transition that follows scroll with elegant inertia */
    transition: opacity 0.8s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.sidenote-content-float {
    animation: sidenoteContentFloat 5s ease-in-out infinite;
    display: block;
    width: 100%;
}

@keyframes sidenoteContentFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -15px, 0);
    }
}

.sidenote-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ffffff;
}

.sidenote-title {
    font-size: 1.2rem;
    font-weight: 400;
}

.sidenote-header .dot {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
}

.about-sidenote p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Artists Section */
.artists {
    background-color: #000000;
}

.artists-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding-bottom: 1rem;
    /* Full bleed pe mobile */
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    /* Ascunde scrollbar-ul nativ */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.artists-grid::-webkit-scrollbar {
    display: none;
}

.artist-card {
    flex: 0 0 85%;
    /* Pe mobil ocupa 85% pt a se vedea putin din urmatorul */
    max-width: 400px;
    scroll-snap-align: start;
    position: relative;
}

@media (min-width: 993px) {
    .artists-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        margin: 0;
        padding: 0;
        overflow-x: visible;
    }
    .artist-card {
        flex: auto;
        max-width: none;
    }
    .artists-nav {
        display: none !important;
    }
}

.artist-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.artist-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.artist-card:hover .artist-img {
    transform: scale(1.05);
}





.artist-info {
    padding-top: 1.5rem;
    color: #ffffff;
}

.artist-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.artist-info .role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.artist-info .styles {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Booking Section */




.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition-fast);
    background: rgba(0, 0, 0, 0.3);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(10px);
}







/* Footer */
.footer {
    background-color: #000000;
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h2 {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    gap: 2rem;
}

.social-link {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: color var(--transition-fast);
}

.social-link:hover {
    color: var(--text-secondary);
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
}



/* Prevent the mask wrapper itself from fading/moving */

/* Responsive */
@media (max-width: 992px) {

    .header {
        align-items: center;
        padding: 1rem 1.5rem;
    }

    .logo {
        flex-direction: column;
        align-items: flex-start;
        z-index: 2;
    }

    .logo a {
        font-size: 0.9rem !important;
        white-space: nowrap;
        font-weight: 700;
        line-height: 1;
    }

    .logo-meta {
        display: block !important;
        font-size: 0.65rem !important;
        margin-top: 0.2rem;
        white-space: nowrap;
        color: #888 !important; /* Make it grey like Monolith */
        font-weight: 600;
    }

    .sound-toggle {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.65rem !important;
        white-space: nowrap;
        z-index: 1;
    }
    
    .sound-toggle .eq-bars {
        transform: scale(0.8);
        margin-left: 0.3rem;
    }

    .header-right {
        gap: 0; /* Remove gap since sound is absolute */
        z-index: 2;
    }

    .mobile-menu-btn {
        font-size: 0.85rem !important;
        white-space: nowrap;
    }


    .hero-content {
        margin-top: 75px !important;
        width: 100vw !important;
        margin-left: -2rem !important;
        align-items: center !important;
    }
    
    .scroll-indicator {
        bottom: max(3rem, calc(env(safe-area-inset-bottom) + 3rem));
    }


    .nav {
        display: none !important;
    }
    .reveal-text {
        font-size: 19.5vw;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }


    .mobile-menu-btn {
        display: flex;
    }



    .logo a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* About Section */
.artist-about {
    border-top: 1px solid var(--border-color);
}

.about-title-small {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.about-body-large p {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.4;
    color: var(--text-primary);
    max-width: 1200px;
    margin-bottom: 2rem;
}

.about-body-large p:last-child {
    margin-bottom: 0;
}

/* Gallery Section */
.artist-gallery {
    background-color: #050505;
    color: #ffffff;
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.gallery-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4rem;
}

.masonry-gallery {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.gallery-block {
    display: grid;
    gap: 2rem;
}

.gallery-block.type-1 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .gallery-block.type-1 {
        grid-template-columns: 2fr 1fr;
    }
}

.gallery-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.gallery-item {
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.gallery-block.type-2 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .gallery-block.type-2 {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-block.type-2 .stagger-down {
        margin-top: 20%;
    }
}

/* FAQ Section */
.artist-faq {
    background-color: var(--bg-color);
}

.faq-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4rem;
    color: var(--text-primary);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: #050505;
    color: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: var(--font-main);
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    transition: all 0.4s ease;
    background-color: #111;
}

.faq-answer p {
    padding: 0 2rem 2rem 2rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #cccccc;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}
.header {
    transition: background-color 0.3s, backdrop-filter 0.3s;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.mobile-menu-btn {
    padding: 0;
    transition: all 0.3s;
}

.sound-toggle {
    padding: 0;
    transition: all 0.3s;
}

/* CTA Massive Section */
.cta-massive-section {
    padding: 6rem 0;
    position: relative;
    z-index: 5;
    background: transparent;
    margin-bottom: 0;
}

.cta-massive-link {
    display: block;
    text-decoration: none;
    color: var(--text-primary);
    transition: color 0.3s;
    width: 100%;
}

.cta-massive-link h2 {
    font-size: clamp(3rem, 11vw, 12rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    display: flex;
    flex-direction: column;
    margin: 0;
    line-height: 0.95;
}

.cta-line {
    display: block;
    white-space: nowrap;
}

.cta-massive-link:hover {
    color: #888;
}

.cta-massive-link:hover .arrow {
    transform: translate(15px, -15px);
}

.cta-massive-link .arrow {
    font-size: 0.85em;
    font-weight: 300;
    transition: transform 0.5s;
    display: inline-block;
}

/* Reviews Section (Monolith Style) */
.reviews-section {
    padding: 2rem 0 var(--spacing-xl) 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
    background: transparent;
    content-visibility: auto;
    contain-intrinsic-size: auto none auto 400px;
}

.reviews-title {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 500;
    margin-bottom: 0.2rem;
    letter-spacing: -0.04em;
    color: var(--text-primary);
}

.reviews-marquee-wrapper {
    display: flex;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%); /* Break out of container to span full width */
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.reviews-marquee {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.reviews-marquee:hover {
    animation-play-state: paused;
}

.review-card {
    width: 480px;
    padding: 0.5rem 4rem 2rem 4rem;
    margin-right: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
}

.review-text {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.review-author {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.review-stars {
    color: var(--text-secondary);
    font-size: 1rem;
}

.review-stars strong {
    color: var(--text-primary);
    font-weight: 700;
    text-decoration: underline;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .reviews-section { padding: 1rem 0 3rem 0; }
    .review-card { width: 320px; padding: 0.5rem 2rem 1.5rem 2rem; }
    .review-text { font-size: 1.05rem; }
}

/* Blog Preview Section */
.blog-section-wrapper {
    background-color: #000000;
    padding: 1rem 0 6rem 0;
    content-visibility: auto;
    contain-intrinsic-size: auto none auto 500px;
}

.blog-preview-container {
    color: #fff;
    margin-top: 0;
}

.blog-preview-header {
    margin-bottom: 4rem;
}

.blog-preview-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.04em;
    color: #fff;
    line-height: 1.1;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem 2rem;
}

.blog-card {
    display: block;
    text-decoration: none;
    color: #fff;
    transition: opacity 0.3s;
}

.blog-card:hover {
    opacity: 0.8;
}

.blog-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: #111;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.03);
}

.blog-meta {
    display: flex;
    align-items: center;
    font-size: clamp(0.5rem, 1.5vw, 0.75rem);
    color: #aaa;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    overflow: hidden;
}

.blog-meta strong {
    color: #fff;
    font-weight: 700;
    margin-right: 0.5rem;
}

.blog-read-time {
    margin-left: auto;
}

.blog-title {
    font-size: clamp(0.85rem, 1.8vw, 1.15rem);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #fff;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }
    .blog-preview-btn {
        width: 100%;
    }
    
}

.reveal-text div {
    margin: 0;
    padding: 0;
    line-height: inherit;
    width: max-content;
    display: inline-block;
}

.text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: max-content;
}

/* Step Cards */
.step-card {
    background-color: var(--bg-primary);
    padding: 3rem;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: #555;
}

@media (max-width: 768px) {
    .step-card {
        padding: 2rem;
    }
}

/* Sidenote Buttons */
.about-sidenote .btn-book {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.about-sidenote .btn-book:hover {
    background-color: #ffffff;
    color: #000000;
}


/* ============================================
   INSTAGRAM FEED — Monolith-style layout
   ============================================ */

.instagram-feed {
    background-color: #000000;
    padding: 1rem 0 2rem 0;
    padding-left: max(4vw, 2rem);
    padding-right: max(4vw, 2rem);
    content-visibility: auto;
    contain-intrinsic-size: auto none auto 600px;
}

.insta-header {
    margin-bottom: 4rem;
}

.insta-title {
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    text-transform: none;
    letter-spacing: -0.02em;
    line-height: 1;
}


/* Row 1: positions 3 and 4 */

/* Row 2: positions 1, 2, and 5 */







/* ---- Responsive ---- */
@media (max-width: 768px) {
    .instagram-feed {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    /* Restack all items naturally in 2 cols */
}

@media (max-width: 380px) {
}

/* Behold Instagram Widget Styling */
#behold-feed-container {
    width: 100%;
}

behold-widget {
    --behold-background: transparent;
    --behold-gap: 1.5rem;
    width: 100%;
    display: block;
}

/* ============================================
   ARTIST PROFILE HERO STYLING (Premium minimal)
   ============================================ */

.artist-profile-hero {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background-color: var(--bg-color);
}

.artist-hero-top {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 16 / 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.artist-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s var(--transition-slow);
}

.artist-profile-hero:hover .artist-hero-img {
    transform: scale(1.03);
}

.artist-hero-name {
    font-family: 'Galderglynn Titling', sans-serif;
    font-size: clamp(3rem, 9vw, 9rem);
    font-weight: normal;
    text-transform: uppercase;
    line-height: 0.85;
    margin: 4rem 0 3rem 0;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.artist-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2.5rem;
}

.meta-col {
    flex: 1 1 200px;
}

.meta-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 0.5rem;
}

.meta-value {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-primary);
    display: block;
}

@media (max-width: 768px) {
    .artist-profile-hero {
        padding-top: 8rem;
        padding-bottom: 4rem;
    }
    
    .artist-hero-name {
        margin: 2.5rem 0 2rem 0;
    }
    
    .artist-meta-row {
        gap: 2rem;
        padding-top: 1.5rem;
    }
}

/* Screen reader only utility class for SEO and accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Homepage Gallery Slider */
.gallery-slider-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: calc(100% + 4rem);
    margin-left: -2rem;
    margin-right: -2rem;
}

.gallery-slider-grid::-webkit-scrollbar {
    display: none;
}

.gallery-slide-card {
    flex: 0 0 85%;
    max-width: 400px;
    scroll-snap-align: start;
    position: relative;
    aspect-ratio: 4/5;
    background: #111;
    overflow: hidden;
    border-radius: 4px;
}

@media (min-width: 993px) {
    .gallery-slider-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        max-width: none;
        margin: 0;
        padding: 0;
        overflow-x: visible;
        width: 100%;
    }
    .gallery-slide-card {
        flex: auto;
        max-width: none;
        border-radius: 4px;
        box-shadow: none;
    }
    .gallery-nav {
        display: none !important;
    }
}

.gallery-slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-slide-card:hover img {
    transform: scale(1.05);
}


