/* ================================
   IMMOBILIUM GLOBAL ART RENTAL
   Luxury Landing Page Styles
   ================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary-black: #000000;
    --accent-blue: #2563EB;
    --accent-blue-light: #3B82F6;
    --accent-blue-dark: #1D4ED8;
    --background-light: #F8FAFC;
    --background-blue: #F1F5F9;
    --text-dark: #1E293B;
    --text-light: #64748B;
    --white: #FFFFFF;
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 40px 0;
    --container-width: 1200px;
    
    /* Transitions */
    --smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    transition: var(--smooth);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--smooth);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    color: var(--white);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
    background: var(--primary-black);
    color: var(--white);
    transform: translateY(-2px);
}

/* Invert secondary button on dark section backgrounds for visibility */
.technology .btn-secondary, .final-cta .btn-secondary, .hero .btn-secondary {
    background: rgb(0 0 0 / 83%);
    color: var(--white) !important;
    border: 2px solid rgba(255,255,255,0.22);
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.technology .btn-secondary:hover,
.final-cta .btn-secondary:hover,
.hero .btn-secondary:hover {
    background: #ffffff;
    color: var(--primary-black) !important;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--smooth);
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(20px);
}

.header.scrolled {
    background: rgba(248, 250, 252, 0.98);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

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

.nav-logo h1 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--primary-black);
    margin: 0;
}

.nav-tagline {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--accent-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--smooth);
    position: relative;
}

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

.nav-link.cta-button {
    background: var(--accent-blue);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--smooth);
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: var(--smooth);
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-btn {
    background: var(--accent-blue);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.4);
    transition: var(--smooth);
}

.floating-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-blue) 100%);
    padding-top: 80px;
    padding-bottom: 4rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.parallax-layer {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    will-change: transform;
    z-index: 2;
    opacity: 0.5;
    transition: opacity 0.4s;
}

.parallax-layer.layer-1 {
    background: linear-gradient(120deg, #2563EB22 0%, #fff0 100%);
    z-index: 2;
}
.parallax-layer.layer-2 {
    background: linear-gradient(60deg, #1D4ED822 0%, #fff0 100%);
    z-index: 3;
}
.parallax-layer.layer-3 {
    background: linear-gradient(240deg, #3B82F622 0%, #fff0 100%);
    z-index: 4;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 90%;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-micro {
    font-size: 1rem;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.hero-overlay {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: var(--accent-blue);
    position: relative;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--accent-blue);
    border-bottom: 2px solid var(--accent-blue);
    transform: rotate(45deg);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.7; }
}

/* Hero Layout with Painting */
.hero-content .container {
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1600px;
    width: 95%;
}

.hero-painting-wrapper {
    flex: 0 0 42%;
    max-width: 750px;
    min-width: 340px;
}

.hero-painting {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: var(--smooth);
}

.hero-painting:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.hero-text-wrapper {
    flex: 1;
    min-width: 0;
    text-align: left;
}

/* Section Styles */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-black);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.section-text {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-dark);
    max-width: 750px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* Problem Section */
.problem {
    background: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.art-transformation {
    position: relative;
    height: 300px;
    margin: 4rem auto;
    max-width: 600px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #F0F0F0, #E8E8E8);
}

.art-covered, .art-illuminated {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 250px;
    border: 3px solid var(--accent-gold);
    border-radius: 10px;
    transform: translate(-50%, -50%);
    transition: var(--slow);
}

.art-covered {
    background: #333;
    opacity: 0.8;
}

.art-illuminated {
    background: linear-gradient(135deg, var(--accent-gold), #F4E5B8);
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.1);
}

.problem:hover .art-covered {
    opacity: 0;
}

.problem:hover .art-illuminated {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* How It Works Section */
.how-it-works {
    background: var(--background-ivory);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-blue));
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    background: var(--background-ivory);
    padding: 1rem;
    width: 25%;
    float: left;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
    transition: var(--smooth);
}

.timeline-step:hover .step-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.4);
}

.timeline-step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.timeline-step p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Global Network Section */
.network {
    background: var(--white);
    padding: 4rem 0;
}

/* Two-column network showcase (left list, right hero image) */
.network-inner {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 2rem;
    align-items: stretch;
    min-height: 500px;
}

.network-left {
    background: #ffffff;
    padding: 4.5rem 3rem;
    border-right: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(16,24,40,0.06);
    border-radius: 10px;
}

.network-meta {
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: 0.6px;
    text-transform: none;
}

.network-title {
    font-family: var(--font-serif);
    font-size: 4.25rem;
    margin: 0 0 1.5rem 0;
    line-height: 1;
    font-weight: 700;
    color: rgb(0 0 0 / 55%);
    -webkit-font-smoothing: antialiased;
}
.network-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.network-list li {
    font-size: clamp(1.25rem, 2.4vw, 1.9rem);
    font-weight: 700;
    color: var(--primary-black);
    padding: 0.25rem 0.5rem;
    cursor: pointer;
}

.network-list li::marker { display: none; }
.network-list li + li { border-top: 1px solid rgba(16,24,40,0.03); }
.network-list li.active { color: var(--accent-gold); }
.network-list li:focus { outline: 2px solid rgba(37,99,235,0.08); outline-offset: 3px; }

.network-right {
    display: block;
    width: 100%;
    height: 100%;
}

.network-hero {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.network-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Keep the centered container padding on smaller viewports */
.network > .container {
    padding: 0 2rem;
}

@media (max-width: 980px) {
    .network-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .network-left {
        border-right: none;
        padding: 2rem 1.25rem 1.25rem;
    }
    .network-hero {
        height: 50vh;
    }
}

/* Technology Section */
.technology {
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.technology::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="circuit" patternUnits="userSpaceOnUse" width="100" height="100"><path d="M10,10 L90,10 L90,90 L10,90 Z" fill="none" stroke="%232563EB" stroke-width="0.5" opacity="0.1"/><circle cx="50" cy="50" r="3" fill="%232563EB" opacity="0.2"/></pattern></defs><rect width="1000" height="1000" fill="url(%23circuit)"/></svg>');
    opacity: 0.1;
    animation: circuitFlow 20s linear infinite;
}

@keyframes circuitFlow {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-100px) translateY(-100px); }
}

.technology .section-title {
    color: var(--white);
}

.technology .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

.tech-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--smooth);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: var(--smooth);
}

.tech-card:hover::before {
    left: 100%;
}

.tech-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-blue);
    box-shadow: 0 16px 48px rgba(37, 99, 235, 0.2);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
    transition: var(--smooth);
    position: relative;
}

.tech-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-blue-dark), var(--accent-blue));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: var(--smooth);
}

.tech-card:hover .tech-icon::after {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.tech-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.tech-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.blockchain-visual {
    position: relative;
    max-width: 600px;
    margin: 4rem auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.blockchain-nodes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.node {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(37, 99, 235, 0.1));
    border: 2px solid rgba(37, 99, 235, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--smooth);
}

.node::before {
    content: attr(data-label);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    white-space: nowrap;
}

.node.active {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    border-color: var(--accent-blue);
    animation: pulse 2s infinite;
}

.connection-lines {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), rgba(37, 99, 235, 0.3), var(--accent-blue));
    transform: translateY(-50%);
}

.connection-lines::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--accent-blue);
    animation: dataFlow 3s ease-in-out infinite;
}

@keyframes dataFlow {
    0%, 100% { width: 0; }
    50% { width: 100%; }
}

.venue-grid {
    display: grid;
    /* Make the venue grid two columns for a tidy layout */
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem; /* increased gap for clearer separation */
    margin: 0; /* remove extra margin so images can reach edges when container is full-bleed */
    width: 100%;
}

.venue-card {
    background: var(--white);
    border-radius: 8px; /* subtle rounding to look neat */
    padding: 0.75rem; /* breathing room around each venue card */
    text-align: left;
    transition: none; /* remove hover animation */
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(16,24,40,0.06);
}

.venue-card::before { content: none; }
.venue-card:hover::before { opacity: 0; }
.venue-card:hover { transform: none; box-shadow: none; }

.venue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.venue-image {
    width: 100%;
    /* Make venue images large and immersive but keep neat spacing */
    height: auto;
    border-radius: 0; /* image itself will have rounded corners via img */
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    background: none; /* remove coloured bands */
    box-shadow: none;
}

.hotel-lobby { background: none !important; }
.corporate-office { background: none !important; }
.private-yacht { background: none !important; }
.film-set { background: none !important; }

.venue-image::after {
    display: none; /* decorative rectangle removed per user request */
}

/* If an actual <img> is supplied inside .venue-image use it and hide the decorative pseudo element */
.venue-image img {
    width: 100%;
    /* Landscape framing: 16:9 aspect ratio with a consistent card height */
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 40vh; /* slightly smaller than gallery for balance */
    object-fit: cover;
    display: block;
    border-radius: 6px; /* slightly inset from card padding */
    transition: none; /* remove hover animation */
}

/* Horizontal CTA row for paired buttons */
.cta-row {
    display: flex; /* use full-width flex container to reliably center */
    width: 100%;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}
.cta-row .btn {
    min-width: 220px;
}

/* Make the network/venue section full-bleed like the gallery */
.network {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
}

.network > .container {
    max-width: 100vw;
    padding-left: 0;
    padding-right: 0;
}

.venue-image:hover img {
    transform: scale(1.04);
    transition: transform 0.45s cubic-bezier(0.2,0.8,0.2,1);
}

.venue-card:hover .venue-image {
    box-shadow: 0 20px 60px rgba(16,24,40,0.12);
    transform: translateY(-6px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.world-map {
    margin: 4rem 0;
    text-align: center;
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 300px;
    margin: 0 auto;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300"><rect width="600" height="300" fill="%23F5F5F5"/><path d="M50,150 Q150,100 250,150 T450,150 T550,150" stroke="%23D4AF37" stroke-width="2" fill="none" opacity="0.5"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
}

.map-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
    animation: pulse 2s infinite;
    cursor: pointer;
}

.map-dot::after {
    content: attr(data-location);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-black);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    transition: var(--smooth);
}

.map-dot:hover::after {
    opacity: 1;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

/* Benefits Section */
.benefits {
    background: var(--background-ivory);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.benefit-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--smooth);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: var(--smooth);
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-gold);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
    transition: var(--smooth);
}

.benefit-card:hover .benefit-icon {
    transform: rotate(360deg) scale(1.1);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.benefit-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

/* B2B Section */
.b2b {
    background: var(--white);
}

.b2b-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.b2b-card {
    background: var(--background-ivory);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--smooth);
}

.b2b-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.b2b-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.25rem;
    color: var(--accent-blue);
}

.lobby-showcase {
    margin: 4rem 0;
    text-align: center;
}

.lobby-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    background: linear-gradient(135deg, #2C2C2C, #4A4A4A);
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.lobby-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 150px;
    border: 3px solid var(--accent-gold);
    border-radius: 10px;
    transform: translate(-50%, -50%);
}

/* Earnings Section */
.earnings {
    background: var(--background-ivory);
    text-align: center;
}

.earnings-text {
    max-width: 600px;
    margin: 0 auto 4rem;
    font-size: 1.125rem;
    color: var(--text-light);
}

.earnings-calculator {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 500px;
    margin: 0 auto 4rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.slider-container {
    margin-bottom: 2rem;
}

.slider-container label {
    display: block;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #E0E0E0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin-bottom: 1rem;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-blue);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-blue);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-light);
}

.earnings-display {
    text-align: center;
}

.earnings-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-blue);
    font-family: var(--font-serif);
}

.earnings-period {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Testimonials Section */
.testimonials {
    background: var(--white);
}

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--background-ivory);
    border-radius: 20px;
    position: relative;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-content p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author strong {
    display: block;
    font-size: 1.125rem;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 1rem;
}

.artwork-carousel {
    text-align: center;
}

.artwork-carousel h3 {
    margin-bottom: 2rem;
    color: var(--primary-black);
}

.artwork-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.artwork-item {
    text-align: center;
}

.artwork-frame {
    width: 100%;
    height: 120px;
    background: var(--accent-blue);
    border-radius: 10px;
    margin-bottom: 1rem;
    position: relative;
    transition: var(--smooth);
    overflow: hidden;
}

.artwork-frame::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(135deg, #2C2C2C, #4A4A4A);
    border-radius: 5px;
}

.artwork-item:hover .artwork-frame {
    transform: translateY(-5px) rotateX(5deg);
    box-shadow: 0 16px 32px rgba(212, 175, 55, 0.3);
}

.artwork-item span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* FAQ Section */
.faq {
    background: var(--background-ivory);
    padding: 4rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-black);
    transition: var(--smooth);
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question i {
    color: var(--accent-blue);
    transition: var(--smooth);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    margin: 0;
}

.faq-contact {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-light);
}

.faq-contact a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
}

/* Final CTA Section */
.final-cta {
    background: var(--primary-black);
    color: var(--white);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 4rem 0;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.parallax-studio {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><rect width="100" height="150" x="200" y="300" fill="%23D4AF37" opacity="0.3"/><rect width="120" height="180" x="500" y="200" fill="%23D4AF37" opacity="0.2"/><rect width="80" height="120" x="700" y="400" fill="%23D4AF37" opacity="0.25"/></svg>');
    background-size: cover;
    animation: slowPan 30s infinite linear;
}

@keyframes slowPan {
    0% { transform: translateX(0) scale(1.1); }
    100% { transform: translateX(-50px) scale(1.1); }
}

.cta-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Application Form */
.apply {
    background: var(--white);
    padding: 4rem 0;
}

.apply-description {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 4rem;
}

.application-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--background-ivory);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--smooth);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.form-progress {
    text-align: center;
    margin-top: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(37, 99, 235, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: var(--accent-blue);
    transition: width 0.5s ease-out;
    width: 50%;
}

.progress-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-confirmation {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--background-ivory);
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.confirmation-content i {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.confirmation-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-black);
}

/* About Section */
.about {
    background: var(--background-ivory);
    text-align: center;
    padding: 4rem 0 2rem; /* reduced bottom padding to tighten gap before footer */
}

.about .container {
    margin-bottom: 0; /* ensure container doesn't add extra space */
    padding-bottom: 0;
}

.about > .container > div:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.about-text {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    color: var(--text-light);
}

.platform-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
    margin: 1.75rem 0 0; /* more space above the stats block */
    padding: 0.75rem 0.5rem;
    background: linear-gradient(135deg, var(--white), var(--background-ivory));
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.06);
}

/* Give the about CTA more breathing room from the stats */
.about .btn {
    margin-top: 2.25rem;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
    opacity: 0.3;
}

/* Contact Section */
.contact {
    background: var(--background-light);
    padding: 5rem 0 6rem;
}

.contact-grid {
    max-width: 1100px;
    margin: 3.5rem auto 0;
    padding: 0 2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: var(--smooth);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.12);
    border-color: var(--accent-blue);
}

.contact-item i {
    font-size: 2rem;
    color: var(--accent-blue);
    flex-shrink: 0;
    background: rgba(37, 99, 235, 0.08);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

.contact-item div {
    width: 100%;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0.35rem 0;
    font-size: 0.95rem;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--smooth);
    display: inline-block;
}

.contact-item a:hover {
    color: var(--accent-blue);
    transform: translateX(2px);
}

/* Responsive Contact Section */
@media (max-width: 968px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 2rem 1.5rem;
    }
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--white);
    padding: 2rem 0 1.25rem; /* reduced top padding to pull footer closer */
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--smooth);
}

.footer-column a:hover {
    color: var(--accent-gold);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--smooth);
}

.social-icons a:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-content .container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-painting-wrapper {
        flex: unset;
        max-width: 90%;
        width: 100%;
    }
    
    .hero-text-wrapper {
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(250, 248, 245, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: var(--smooth);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .hero {
        padding: 120px 0 60px;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .timeline {
        padding: 1rem 0;
    }
    
    .timeline-step {
        width: 100%;
        float: none;
        margin-bottom: 2rem;
    }
    
    .timeline-line {
        display: none;
    }
    
    .venue-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* For medium screens, make it two columns */
    @media (min-width: 769px) and (max-width: 1024px) {
        .venue-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .b2b-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .platform-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .blockchain-nodes {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .node {
        width: 60px;
        height: 60px;
        font-size: 0.8rem;
    }
    
    .artwork-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .form-navigation .btn {
        width: 100%;
        max-width: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .floating-cta {
        bottom: 1rem;
        right: 1rem;
    }
    
    .floating-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Touch-friendly enhancements */
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .benefit-card, .venue-card, .b2b-card {
        padding: 2rem 1.5rem;
    }
    
    /* Reduce parallax on mobile for performance */
    .parallax-layer {
        animation: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .earnings-amount {
        font-size: 2.5rem;
    }
    
    .application-form {
        padding: 2rem 1.5rem;
    }
}

/* Animation Utilities - Removed lazy load animations */

/* Gallery Showcase Section */
.gallery-showcase {
    background: var(--white);
    /* Add comfortable padding on top/bottom while remaining full-bleed */
    padding: 40px 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* Make the gallery container full-bleed but keep internal horizontal padding */
.gallery-showcase > .container {
    max-width: 100vw;
    padding: 0 2rem; /* horizontal breathing room */
}


.gallery-grid {
    display: grid;
    /* Strong two-column layout for impactful images */
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem; /* increased gap for clear separation */
    margin: 0;
    align-items: start;
    width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px; /* subtle rounding for a neat card look */
    cursor: default;
    transition: none; /* remove hover animation */
    grid-column: auto !important;
    display: block;
    background: var(--white);
    padding: 0.75rem; /* breathing room so cards look separated */
    box-shadow: 0 8px 24px rgba(16,24,40,0.06);
}

.gallery-item img {
    width: 100%;
    /* Landscape framing: 16:9 aspect ratio and large presence */
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 50vh;
    object-fit: cover;
    transition: none; /* remove hover animation */
    display: block;
    border-radius: 6px; /* slightly inset from card edges */
}

/* Ensure the gallery rows don't introduce gaps on odd item counts */
.gallery-item.large { grid-row: span 1; }

.gallery-item:hover img {
    transform: none; /* no hover scaling */
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--smooth);
    color: var(--white);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.rental-price {
    display: inline-block;
    background: var(--accent-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Featured Collections Section */
.featured-collections {
    background: var(--background-ivory);
    padding: 4rem 0;
}

.collections-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.collection-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--smooth);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.collection-header {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.collection-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--smooth);
}

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

.collection-content {
    padding: 2rem;
}

.collection-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.collection-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.collection-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.collection-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.collection-stats i {
    color: var(--accent-blue);
}

/* Artist Stories Section */
.artist-stories {
    background: var(--white);
    padding: 4rem 0;
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.artist-card {
    background: var(--background-ivory);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--smooth);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.artist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.artist-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

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

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

.artist-info {
    padding: 2rem;
}

.artist-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.artist-type {
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.artist-location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.artist-earnings {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.earnings-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.earnings-amount {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.earnings-pieces {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.artist-quote {
    font-style: italic;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    border-left: 3px solid var(--accent-blue);
    padding-left: 1rem;
    margin: 0;
}

/* Visual Process Timeline Section */
.visual-process {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-blue) 100%);
    padding: 4rem 0;
}

.process-visual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.process-visual-item {
    position: relative;
    text-align: center;
}

.process-image {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--smooth);
}

.process-visual-item:hover .process-image img {
    transform: scale(1.05);
}

.process-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 60px;
    height: 60px;
    background: var(--accent-blue);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
    z-index: 10;
}

.process-visual-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-black);
}

.process-visual-item p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item,
    .gallery-item.large,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-item img {
        min-height: 250px;
    }
    
    .collections-slider {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .artist-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-visual-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .earnings-amount {
        font-size: 2rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(8, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 4;
    }
    
    .gallery-item.tall {
        grid-column: span 4;
    }
    
    .gallery-item:not(.large):not(.tall) {
        grid-column: span 4;
    }
}

/* Smooth scroll enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}