/* 
========================================================================
   STATTOOS SOCIETY - CINEMATIC NOIR DESIGN SYSTEM
   Uncompromising Technical Excellence Meets High-End Underground
========================================================================
*/

/* --- Import Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Anybody:ital,wght@0,100..900;1,100..900&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');

/* --- Design Tokens --- */
:root {
    /* Color Palette */
    --color-bg: #000000;
    --color-surface-lvl1: #0A0A0A;
    --color-surface-lvl2: #121212;
    --color-surface-lvl3: #1C1B1B;
    --color-red: #E50914;
    --color-red-hover: #FF1F2D;
    --color-red-dark: #8B0000;
    --color-red-glow: rgba(229, 9, 20, 0.2);
    --color-silver: #E5E5E5;
    --color-silver-dim: rgba(229, 229, 229, 0.4);
    --color-white: #FFFFFF;
    --color-grey: #8E9192;
    --color-dark-grey: #353534;

    /* Typography */
    --font-display: 'Anybody', 'Impact', sans-serif;
    --font-serif: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Hanken Grotesk', 'Inter', sans-serif;

    /* Spacing & Grid */
    --gutter: 24px;
    --container-max: 1440px;
    --section-gap-lg: 140px;
    --section-gap-md: 70px;
    
    /* Layout Details */
    --border-width: 1px;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Base Resets & Global Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border-radius: 0; /* STRICT REQUIREMENT: Sharp corner radius (0px) everywhere */
}

body {
    background-color: var(--color-bg);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--color-red);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   SHADER INTRO PRELOADER
   ========================================================================== */
#intro-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.8s ease;
}

#shader-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0;
    animation: shader-fadein 0.5s ease 0.1s forwards;
}

@keyframes shader-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


.preloader-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(229,9,20,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.preloader-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-logo-img {
    width: clamp(140px, 22vw, 260px);
    filter: brightness(0) invert(1);
    animation: preloader-pulse 2s ease-in-out infinite;
}

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

/* --- Utility Classes --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.text-red { color: var(--color-red); }
.text-silver { color: var(--color-silver); }
.text-grey { color: var(--color-grey); }

.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.bold { font-weight: 700; }

.section-title-container {
    margin-bottom: 50px;
    text-align: center;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--color-red);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-red);
    margin-bottom: 10px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 15px 35px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--color-red);
    color: var(--color-white);
    box-shadow: 0 4px 15px var(--color-red-glow);
    border-radius: 999px !important;
    padding: 12px 30px;
    font-weight: 700;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.75s;
}

.btn-primary:hover::after {
    left: 150%;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.04);
    background-color: var(--color-red-hover);
    box-shadow: 0 0 20px rgba(255, 31, 45, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
}

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

.btn-ghost-red {
    background-color: transparent;
    color: var(--color-red);
    border: 1px solid var(--color-red);
    border-radius: 999px !important;
    padding: 12px 30px;
}
.btn-ghost-red:hover {
    background-color: var(--color-red);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* --- Navigation Header --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(229, 9, 20, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(0, 0, 0, 0.85);
    padding: 8px 0;
    border-bottom: 1px solid rgba(229, 9, 20, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-link svg {
    height: 48px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-item a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-grey);
    padding: 10px 0;
    position: relative;
}

.nav-item a:hover {
    color: var(--color-red-hover);
}

.nav-item.active a {
    color: var(--color-white);
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-red);
    transition: var(--transition-smooth);
}

.nav-item.active a::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
}

/* --- SPA View Routing Transitions --- */
.page-section {
    display: none;
    opacity: 0;
    padding-top: 85px; /* Offset for sticky nav */
    min-height: calc(100vh - 85px);
    animation: fadeOut 0.4s ease forwards;
}

.page-section.active {
    display: block;
    animation: fadeIn 0.8s ease forwards;
}

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

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

/* --- Footer --- */
.site-footer {
    background-color: #050505;
    border-top: 1px solid rgba(229, 9, 20, 0.12);
    padding: clamp(60px, 6vw, 100px) 0 40px 0;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.footer-top-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229, 9, 20, 0.4), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-white);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-brand-desc {
    color: var(--color-grey);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 380px;
}

.footer-copy {
    color: var(--color-grey);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-grey);
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-red);
    padding-left: 5px;
}

.footer-address {
    font-style: normal;
    color: var(--color-grey);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Glassmorphism Buttons in Footer */
.footer-social-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social-btn,
.footer-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid rgba(229, 9, 20, 0.15);
    background: rgba(12, 12, 12, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-social-btn i,
.footer-map-btn i {
    color: var(--color-red);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.footer-social-btn:hover,
.footer-map-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(229, 9, 20, 0.5);
    background: rgba(229, 9, 20, 0.08);
    box-shadow: 
        0 0 20px rgba(229, 9, 20, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer-social-btn:hover i,
.footer-map-btn:hover i {
    transform: scale(1.2);
    color: var(--color-red-hover);
}


/* --- Newsletter Input (Artist Profile & Generic) --- */
.newsletter-form {
    display: flex;
    border: 1px solid var(--color-silver-dim);
    height: 48px;
}

.newsletter-form input {
    flex-grow: 1;
    background-color: var(--color-surface-lvl2);
    border: none;
    color: var(--color-white);
    padding: 0 15px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.newsletter-form input::placeholder {
    color: var(--color-grey);
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    background-color: var(--color-white);
    color: var(--color-bg);
    border: none;
    width: 48px;
    height: 100%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.newsletter-form button:hover {
    background-color: var(--color-red);
    color: var(--color-bg);
}

/* 
========================================================================
   PAGES SPECIFIC STYLING
========================================================================
*/

/* --- 1. HOME SECTION (#home) --- */
.hero-home {
    height: 100vh;
    margin-top: -85px; /* Pull content behind nav bar */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.35) contrast(1.1) grayscale(0.25);
    animation: kenBurns 20s infinite alternate;
    z-index: 1;
}

@keyframes kenBurns {
    0% { transform: scale(1.0); }
    100% { transform: scale(1.08); }
}

.hero-video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.78vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
    border: none;
    opacity: 0.85;
}



.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(229, 9, 20, 0.08) 50%,
        rgba(0, 0, 0, 0.95) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    margin-top: 100px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 0.9;
    margin-bottom: 30px;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--color-grey);
    cursor: pointer;
}

.scroll-down span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-down i {
    font-size: 16px;
    color: var(--color-red);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* Meet Our Masters (Home Grid) */
.masters-section {
    background-color: var(--color-bg);
    padding: clamp(70px, 8vw, 130px) 0;
    border-top: 1px solid var(--color-surface-lvl2);
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.masters-intro {
    max-width: 600px;
    margin: -20px auto 60px auto;
    text-align: center;
    color: var(--color-grey);
    font-size: 18px;
}

.masters-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.master-card {
    background-color: var(--color-surface-lvl1);
    position: relative;
    border: 1px solid rgba(229, 229, 229, 0.05);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.master-card:hover {
    border-color: var(--color-red);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.15);
}

.master-img-wrapper {
    height: 480px;
    overflow: hidden;
    position: relative;
}

.master-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.15) brightness(0.85);
    transition: var(--transition-smooth);
}

.master-card:hover .master-img {
    filter: grayscale(0.4) contrast(1.25) brightness(0.75);
    transform: scale(1.05);
}

.master-info {
    padding: 30px;
    background: linear-gradient(to top, var(--color-surface-lvl1) 80%, rgba(10,10,10,0));
}

.master-specialization {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-red);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.master-name {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--color-white);
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.master-card:hover .master-name {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.view-portfolio-link {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-red);
    position: relative;
    padding-bottom: 4px;
    transition: var(--transition-smooth);
}

.view-portfolio-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-red);
    transform: scaleX(1);
    transform-origin: bottom left;
    transition: var(--transition-smooth);
}

.master-card:hover .view-portfolio-link {
    color: var(--color-red-hover);
    transform: translateX(6px);
}

.master-card:hover .view-portfolio-link::after {
    background-color: var(--color-red-hover);
    transform: scaleX(1.3);
}

/* --- 2. GALLERY SECTION (#gallery) --- */
.gallery-section {
    background-color: var(--color-bg);
    padding: clamp(70px, 8vw, 130px) 0;
    border-top: 1px solid var(--color-surface-lvl2);
    border-bottom: 1px solid var(--color-surface-lvl2);
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

/* ── Unified background zone: wraps masters + gallery + cta ── */
.unified-bg-zone {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--color-bg);
}

/* Single canvas that covers the full height of the three-section block */
.unified-bg-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: block;
}

/* Make individual sections transparent — canvas provides the bg */
.masters-section,
.gallery-section,
.cta-premium-section {
    background: transparent !important;
    border: none !important;
    isolation: auto;
    overflow: visible;
}

/* Ensure all content stays above the shared canvas */
.masters-section > .container,
.gallery-section > .container,
.cta-premium-section > .container {
    position: relative;
    z-index: 2;
}


.gallery-intro {
    max-width: 700px;
    margin: 0 auto 50px auto;
    text-align: center;
    color: var(--color-grey);
    font-size: 16px;
    line-height: 1.7;
}

/* =========================================================
   FILM STRIP — Infinite horizontal scroll + drag
   ========================================================= */

.film-strip-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 35px 0; /* Padding vertical incrementado para albergar la perspectiva 3D */
    cursor: grab;
    user-select: none;
    background-color: transparent !important; /* Totalmente transparente */
    border-top: 1px solid rgba(229, 9, 20, 0.18);
    border-bottom: 1px solid rgba(229, 9, 20, 0.18);
    /* 3D Perspective setup */
    perspective: 1200px;
    perspective-origin: 50% 50%;
    /* Desvanecido real con máscara transparente en los extremos izquierdo y derecho */
    mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

.film-strip-wrapper:active {
    cursor: grabbing;
}

.film-strip-track {
    display: flex;
    gap: 36px; /* Aumentado de 16px a 36px para que las tarjetas respiren y tengan más espacio */
    width: max-content;
    will-change: transform;
    transform-style: preserve-3d;
}

.film-strip-item {
    flex-shrink: 0;
    width: clamp(240px, 22vw, 340px);
    height: clamp(300px, 28vw, 420px);
    overflow: hidden;
    position: relative;
    border-radius: 18px; /* esquinas redondeadas 18px */
    border: 1px solid rgba(255, 255, 255, 0.12); /* borde de vidrio delgado translúcido */
    background: rgba(255, 255, 255, 0.02); /* sutil transparencia de cristal */
    backdrop-filter: blur(8px); /* desenfoque de fondo */
    -webkit-backdrop-filter: blur(8px);
    /* Sombras suaves de ambiente flotante y brillo sutil rojo */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(229, 9, 20, 0.03);
    will-change: transform;
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                border-color 0.4s ease, 
                box-shadow 0.4s ease,
                filter 0.4s ease;
}

/* Elegante destello de reflejo en hover */
.film-strip-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.08),
        transparent
    );
    transform: skewX(-25deg);
    transition: 0.75s ease;
    pointer-events: none;
}

.film-strip-item:hover::after {
    left: 150%;
}

.film-strip-item:hover {
    transform: scale(1.05) translateZ(30px) !important; /* Escala y levanta la tarjeta */
    border-color: rgba(229, 9, 20, 0.4); /* Resplandor rojo en el borde de vidrio */
    box-shadow: 0 20px 45px rgba(229, 9, 20, 0.18), 
                0 0 30px rgba(229, 9, 20, 0.08);
    filter: brightness(1.08); /* Brillo aumentado levemente */
    z-index: 10;
}

.film-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    pointer-events: none;
}

.film-strip-item:hover img {
    transform: scale(1.04);
}

/* Mobile — curva plana sin perspectiva */
@media (max-width: 640px) {
    .film-strip-item {
        width: 200px;
        height: 260px;
        border-radius: 12px; /* Reducción en mobile */
    }
    .film-strip-wrapper {
        padding: 15px 0;
        perspective: none;
        mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    }
}


/* Lightbox overlay styling */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
}

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

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
    border: 1px solid rgba(229, 9, 20, 0.25);
    border-radius: 8px;
    box-shadow: 0 0 35px rgba(229, 9, 20, 0.2);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: var(--color-white);
    font-size: 45px;
    font-weight: 200;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--color-red-hover);
    transform: scale(1.1);
}


/* --- CTA PREMIUM SECTION --- */
.cta-premium-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--color-bg);
    overflow: hidden;
    isolation: isolate;
}

/* Canvas for particles sits behind everything */
#cta-particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* The glass premium card */
.cta-premium-card {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    padding: 72px 64px;
    border-radius: 28px;
    border: 1px solid rgba(229, 9, 20, 0.18);
    background: rgba(12, 12, 12, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 
        0 0 60px rgba(229, 9, 20, 0.10),
        0 30px 80px rgba(0, 0, 0, 0.65),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    text-align: center;
    overflow: hidden;
}

/* Red glow disc behind the card */
.cta-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(229, 9, 20, 0.18) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    animation: ctaGlowPulse 4s ease-in-out infinite alternate;
}

@keyframes ctaGlowPulse {
    from { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    to   { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
}

/* Title */
.cta-premium-title {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: 44px;
}

/* CTA Button */
.btn-cta-premium {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 52px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--color-white);
    background: linear-gradient(135deg, #E50914 0%, #B80010 60%, #8B0000 100%);
    box-shadow: 
        0 6px 30px rgba(229, 9, 20, 0.45),
        0 2px 8px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
                background 0.3s ease;
}

.btn-cta-text {
    position: relative;
    z-index: 2;
}

/* Light sweep overlay */
.btn-sweep-light {
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.28) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    z-index: 3;
    pointer-events: none;
    transition: none;
}

/* Hover states */
.btn-cta-premium:hover {
    transform: scale(1.04);
    background: linear-gradient(135deg, #FF1F2D 0%, #E50914 60%, #B80010 100%);
    box-shadow: 
        0 10px 45px rgba(229, 9, 20, 0.65),
        0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Trigger sweep animation on hover */
.btn-cta-premium:hover .btn-sweep-light {
    animation: sweepLight 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes sweepLight {
    0%   { left: -75%; }
    100% { left: 130%;  }
}

/* Responsive */
@media (max-width: 768px) {
    .cta-premium-section {
        padding: 80px 0;
    }

    .cta-premium-card {
        padding: 48px 28px;
        border-radius: 20px;
        margin: 0 16px;
    }

    .cta-premium-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
        margin-bottom: 36px;
    }

    .btn-cta-premium {
        padding: 16px 36px;
        font-size: 14px;
        width: 100%;
        max-width: 320px;
    }
}


/* --- 2. ARTISTS LIST SECTION (#artists) --- */
.artists-header-section {
    padding: 80px 0 40px 0;
    background-color: var(--color-bg);
    text-align: center;
}

.artists-intro-text {
    max-width: 800px;
    margin: 20px auto 40px auto;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 1.7;
    color: var(--color-grey);
}

/* Filter Controls */
.filter-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    gap: 15px;
}

.filter-btn {
    background-color: var(--color-surface-lvl2);
    color: var(--color-grey);
    border: 1px solid var(--color-silver-dim);
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    color: var(--color-white);
    border-color: var(--color-white);
}

.filter-btn.active {
    background-color: var(--color-red);
    color: var(--color-bg);
    border-color: var(--color-red);
}

/* Artists Page Grid */
.artists-grid-section {
    padding-bottom: var(--section-gap-lg);
    background-color: var(--color-bg);
}

.artists-main-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.artist-grid-card {
    background-color: var(--color-surface-lvl1);
    position: relative;
    border: 1px solid rgba(229, 229, 229, 0.03);
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-slow);
}

.artist-grid-card:hover {
    border-color: var(--color-red);
}

.artist-grid-img-wrapper {
    height: 380px;
    overflow: hidden;
    position: relative;
}

.artist-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.1) brightness(0.85);
    transition: var(--transition-slow);
}

.artist-grid-card:hover .artist-grid-img {
    filter: grayscale(0.4) contrast(1.05) brightness(0.9);
    transform: scale(1.04);
}

.artist-grid-info {
    padding: 20px;
    background-color: var(--color-surface-lvl1);
}

.artist-grid-style {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-red);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.artist-grid-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    color: var(--color-white);
}

.artist-badge-tag {
    background-color: var(--color-red-glow);
    color: var(--color-red);
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    margin-left: 6px;
    vertical-align: middle;
}

/* --- 3. ARTIST PROFILE SECTION (#artist-profile) --- */
.profile-hero {
    height: 60vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.profile-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) contrast(1.1) grayscale(0.5);
    z-index: 1;
}

.profile-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 50px;
    width: 100%;
}

.profile-tag {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-red);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.profile-name {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
}

.profile-details-row {
    display: flex;
    gap: 40px;
    margin-top: 20px;
    border-top: 1px solid var(--color-silver-dim);
    padding-top: 20px;
    max-width: 600px;
}

.profile-detail-item {
    font-size: 15px;
    color: var(--color-grey);
}

.profile-detail-item strong {
    color: var(--color-white);
}

.profile-content-area {
    padding: var(--section-gap-lg) 0;
    background-color: var(--color-bg);
}

.profile-portfolio-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 60px;
}

.profile-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.profile-portfolio-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(229, 229, 229, 0.05);
}

.profile-portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.15);
    transition: var(--transition-slow);
}

.profile-portfolio-item:hover img {
    filter: grayscale(0) contrast(1);
    transform: scale(1.05);
}

.profile-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
}

.profile-vertical-name {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: var(--font-display);
    font-size: 110px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-dark-grey);
    user-select: none;
    line-height: 1;
    margin-top: auto;
}

/* --- 4. CONVENTIONS SECTION (#conventions) --- */
.conventions-hero {
    height: 70vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.conventions-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3) grayscale(0.5);
    z-index: 1;
}

.conventions-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 var(--gutter);
}

.conventions-subtitle {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--color-red);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.conventions-main-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 25px;
}

.conventions-desc {
    font-size: 17px;
    color: var(--color-grey);
    max-width: 600px;
    margin: 0 auto;
}

/* Chronological Timeline Scroll List */
.timeline-section {
    background-color: var(--color-bg);
    padding: var(--section-gap-lg) 0;
}

.timeline-event-block {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    margin-bottom: var(--section-gap-lg);
    align-items: center;
}

.timeline-event-block:last-child {
    margin-bottom: 0;
}

.timeline-event-block.reverse {
    grid-template-columns: 1fr 1.1fr;
}

.timeline-img-side {
    position: relative;
    overflow: hidden;
}

.timeline-main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(1) contrast(1.15);
    transition: var(--transition-slow);
}

.timeline-img-side:hover .timeline-main-img {
    filter: grayscale(0.4) contrast(1.05);
}

.timeline-tag-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background-color: var(--color-bg);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 10px 20px;
    border: 1px solid var(--color-silver-dim);
}

.timeline-event-block.reverse .timeline-tag-badge {
    left: auto;
    right: 25px;
    top: 25px;
    bottom: auto;
}

.timeline-text-side {
    display: flex;
    flex-direction: column;
}

.timeline-event-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.timeline-event-desc {
    color: var(--color-grey);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.timeline-previews {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.timeline-previews img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    filter: grayscale(1) contrast(1.2);
}

/* Join Circle Section */
.join-circle-section {
    padding: var(--section-gap-lg) 0;
    background-color: var(--color-surface-lvl1);
    border-top: 1px solid var(--color-surface-lvl2);
    text-align: center;
}

.join-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.join-desc {
    color: var(--color-grey);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.join-btn-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* --- 5. PIERCINGS SECTION (#piercings) --- */
.piercing-hero {
    height: 70vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.piercing-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 25%;
    filter: brightness(0.4) contrast(1.1) grayscale(0.3);
    z-index: 1;
}

.piercing-hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.piercing-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.piercing-hero-desc {
    font-size: 18px;
    color: var(--color-grey);
    margin-bottom: 35px;
}

.piercing-hero-btn-row {
    display: flex;
    gap: 20px;
}

/* Space of Sovereignty */
.sovereignty-section {
    padding: var(--section-gap-lg) 0;
    background-color: var(--color-bg);
}

.sovereignty-intro {
    max-width: 650px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.sovereignty-title {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.sovereignty-desc {
    color: var(--color-grey);
    font-size: 16px;
}

.sovereignty-filter-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.sovereignty-filter-btn {
    background: none;
    border: none;
    color: var(--color-grey);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    cursor: pointer;
    text-transform: uppercase;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: var(--transition-smooth);
}

.sovereignty-filter-btn.active {
    color: var(--color-red);
    border-bottom-color: var(--color-red);
}

/* Sovereignty Showcase Grid */
.sovereignty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

/* Make facial mods card span 2 rows tall */
.sovereignty-card.tall {
    grid-row: span 2;
}

/* Make curated ear card span 2 columns wide */
.sovereignty-card.wide {
    grid-column: span 2;
}

.sovereignty-card {
    position: relative;
    overflow: hidden;
    background-color: var(--color-surface-lvl1);
    border: 1px solid rgba(229, 229, 229, 0.05);
}

.sovereignty-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.15) brightness(0.8);
    transition: var(--transition-slow);
}

.sovereignty-card:hover img {
    filter: grayscale(0.3) contrast(1.1) brightness(0.9);
    transform: scale(1.03);
}

.sovereignty-overlay-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 40%, rgba(0,0,0,0));
    z-index: 2;
}

.sovereignty-card-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 4px;
}

.sovereignty-card-subtitle {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-red);
    text-transform: uppercase;
}

/* clinical-trials-like Ethos Section */
.clinical-ethos-section {
    padding: var(--section-gap-lg) 0;
    background-color: var(--color-surface-lvl1);
    border-top: 1px solid var(--color-surface-lvl2);
    border-bottom: 1px solid var(--color-surface-lvl2);
}

.clinical-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.clinical-left h3 {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
}

.clinical-bullets {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.clinical-bullet {
    border-left: 2px solid var(--color-red);
    padding-left: 20px;
}

.clinical-bullet-title {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--color-white);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.clinical-bullet-text {
    font-size: 15px;
    color: var(--color-grey);
}

.medical-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--color-red);
    padding: 15px 25px;
    background-color: rgba(212, 175, 55, 0.05);
}

.medical-badge i {
    font-size: 24px;
    color: var(--color-red);
}

.medical-badge-text {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--color-red);
    text-transform: uppercase;
    line-height: 1.3;
}

.clinical-right {
    position: relative;
}

.clinical-right img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    filter: grayscale(1) contrast(1.15);
}

.clinical-study-label {
    position: absolute;
    top: 25px;
    left: 25px;
    background-color: var(--color-bg);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 8px 16px;
    border: 1px solid var(--color-silver-dim);
}

/* Piercing Application Form */
.application-section {
    padding: var(--section-gap-lg) 0;
    background-color: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.application-bg-text {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 18vw;
    font-weight: 900;
    color: var(--color-surface-lvl1);
    letter-spacing: -0.05em;
    user-select: none;
    z-index: 1;
    line-height: 0.8;
}

.application-container {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-silver-dim);
    padding: 60px;
}

.application-title {
    text-align: center;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--color-grey);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.form-control {
    width: 100%;
    background-color: var(--color-surface-lvl2);
    border: 1px solid var(--color-dark-grey);
    color: var(--color-white);
    padding: 15px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-red);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* --- 6. BOOKING SECTION (#booking) --- */
.booking-hero {
    height: 55vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.booking-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 60%;
    filter: brightness(0.35) contrast(1.1) grayscale(0.5);
    z-index: 1;
}

.booking-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.booking-hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 20px;
}

.booking-hero-desc {
    font-size: 18px;
    color: var(--color-grey);
}

/* Concierge & Map section */
.booking-details-section {
    padding: var(--section-gap-lg) 0;
    background-color: var(--color-bg);
}

.booking-details-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
}

.concierge-box {
    border-left: 2px solid var(--color-red);
    padding-left: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.concierge-badge {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--color-red);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.concierge-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
}

.concierge-text {
    color: var(--color-grey);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.whatsapp-btn {
    background-color: var(--color-red);
    color: var(--color-bg);
    padding: 15px 35px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px var(--color-red);
}

/* Map widget */
.map-box {
    background-color: var(--color-surface-lvl1);
    border: 1px solid rgba(229, 229, 229, 0.05);
    padding: 25px;
}

.map-container {
    height: 300px;
    background-color: var(--color-surface-lvl2);
    border: 1px solid var(--color-dark-grey);
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
}

.map-placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.2) brightness(0.6);
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.map-pin i {
    font-size: 36px;
    color: var(--color-red);
    filter: drop-shadow(0 0 5px rgba(212,175,55,0.8));
}

.status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--color-bg);
    border: 1px solid var(--color-red);
    padding: 8px 16px;
    z-index: 10;
}

.status-badge-title {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--color-red);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.status-badge-val {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-white);
}

.status-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50% !important; /* Visual indicator dot */
    background-color: #2ECC71;
    margin-right: 6px;
}

.status-indicator.closed {
    background-color: #E74C3C;
}

.map-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.map-gallery img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    filter: grayscale(1) contrast(1.15);
}

/* Studio Rituals Section */
.rituals-section {
    background-color: var(--color-surface-lvl1);
    border-top: 1px solid var(--color-surface-lvl2);
    border-bottom: 1px solid var(--color-surface-lvl2);
    padding: var(--section-gap-md) 0;
}

.rituals-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

.rituals-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.01em;
}

.rituals-hours {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.hour-item h5 {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--color-grey);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hour-item p {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
}

.hour-item p.special {
    color: var(--color-red);
}

/* Secure Your Spot CTA Box */
.secure-spot-section {
    padding: var(--section-gap-lg) 0;
    background-color: var(--color-bg);
}

.secure-spot-box {
    border: 1px solid var(--color-silver-dim);
    background-color: var(--color-surface-lvl1);
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    text-align: center;
}

.secure-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: var(--color-red);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.secure-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 30px;
}

.secure-address {
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.secure-address i {
    color: var(--color-red);
}

.maps-link {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--color-red);
    text-transform: uppercase;
    border-bottom: 1px solid var(--color-red);
    padding-bottom: 3px;
    display: inline-block;
    margin-bottom: 50px;
}

.maps-link:hover {
    color: var(--color-white);
    border-color: var(--color-white);
}

.booking-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.or-separator {
    font-family: var(--font-serif);
    font-size: 20px;
    font-style: italic;
    color: var(--color-grey);
}

.secure-note {
    font-size: 13px;
    color: var(--color-grey);
    max-width: 500px;
    margin: 0 auto;
}

/* 
========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
========================================================================
*/

@media (max-width: 1200px) {
    .artists-main-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sovereignty-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sovereignty-card.wide {
        grid-column: span 1;
    }
}

@media (max-width: 992px) {
    :root {
        --section-gap-lg: 100px;
        --section-gap-md: 50px;
    }
    
    .navbar {
        height: 75px;
    }
    .page-section {
        padding-top: 75px;
        min-height: calc(100vh - 75px);
    }
    
    .nav-menu {
        display: none; /* JS will toggle active class */
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        background-color: var(--color-bg);
        border-bottom: 1px solid var(--color-silver-dim);
        flex-direction: column;
        padding: 30px 0;
        gap: 25px;
        align-items: center;
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .navbar .btn {
        display: none; /* Hide header CTA on tablet/mobile to save space, let footer handle it */
    }
    
    /* Layout stacks */
    .masters-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .timeline-event-block,
    .timeline-event-block.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .profile-portfolio-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .profile-sidebar {
        align-items: center;
    }
    .profile-vertical-name {
        writing-mode: horizontal-tb;
        font-size: 60px;
        text-align: center;
        margin-top: 20px;
    }
    
    .clinical-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .booking-details-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .rituals-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .rituals-hours {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer {
        padding: 60px 0 32px 0;
    }
}

@media (max-width: 768px) {
    .artists-main-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .sovereignty-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }
    .sovereignty-card.tall {
        grid-row: span 1;
    }
    
    .profile-grid-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .application-container {
        padding: 40px 20px;
    }
    
    .secure-spot-box {
        padding: 40px 20px;
    }
    
    .booking-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-social-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-social-btn,
    .footer-map-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .artists-main-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-grid-container {
        grid-template-columns: 1fr;
    }
}

/* --- Shader Intro Preloader Styling --- */
#intro-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s;
}

#intro-preloader.fade-out {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

#shader-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.preloader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.45);
}

.preloader-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.preloader-logo-img {
    width: auto;
    height: 76px;
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(229, 9, 20, 0.7));
    transform: scale(3.0);
    opacity: 0;
    animation: preloaderLogoIntro 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    display: block;
}

.nav-logo-img {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo-img {
    height: 38px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}


@keyframes preloaderLogoIntro {
    0% {
        transform: scale(2.5);
        opacity: 0;
        filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(229, 9, 20, 0.4));
    }
    15% {
        opacity: 1;
    }
    100% {
        transform: scale(1.0);
        opacity: 1;
        filter: brightness(0) invert(1) drop-shadow(0 0 25px rgba(229, 9, 20, 0.85));
    }
}


/* --- Custom Morphing SVG Mobile Menu Toggler --- */
.menu-toggle-svg {
    transition: transform 300ms ease-in-out;
}

.menu-toggle-svg.open {
    transform: rotate(-45deg);
}

.menu-path-dash {
    stroke-dasharray: 12 63;
    stroke-dashoffset: 0;
    transition: stroke-dasharray 300ms ease-in-out, stroke-dashoffset 300ms ease-in-out;
}

.menu-toggle-svg.open .menu-path-dash {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42px;
}

.menu-path-middle {
    transition: opacity 300ms ease-in-out;
    opacity: 1;
}

.menu-toggle-svg.open .menu-path-middle {
    opacity: 0;
}



/* ==========================================================================
   Premium Artists Cards (Artists Page)
   ========================================================================== */
.premium-artists-grid {
    padding: 20px 0 80px 0;
    position: relative;
    z-index: 2;
}

.premium-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (max-width: 992px) {
    .premium-cards-wrapper {
        grid-template-columns: 1fr;
    }
}

.premium-artist-card {
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(229, 9, 20, 0.1);
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    height: 100%;
}

.premium-artist-card:hover {
    border-color: rgba(229, 9, 20, 0.5);
    box-shadow: 0 10px 40px rgba(229, 9, 20, 0.15);
    transform: translateY(-5px);
}

.premium-artist-img-box {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
}

.premium-artist-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
}

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

.premium-artist-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.premium-artist-category {
    color: var(--color-primary);
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.premium-artist-name {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 15px;
    color: var(--color-white);
}

.premium-artist-desc {
    color: var(--color-grey);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* ==========================================================================
   Portfolio Modal
   ========================================================================== */
.portfolio-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.portfolio-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 85vh;
    background: var(--color-bg);
    border: 1px solid rgba(229, 9, 20, 0.2);
    border-radius: 12px;
    padding: 40px;
    overflow-y: auto;
    z-index: 10000;
}

.portfolio-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.portfolio-modal-close:hover {
    color: var(--color-primary);
}

.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.portfolio-masonry img {
    width: 100%;
    border-radius: 8px;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-masonry img:hover {
    transform: scale(1.02);
}

/* ==========================================================================
   Animated Neon Border Loop for Premium Cards
   ========================================================================== */
.premium-artist-card {
    /* Overwrite padding and background from before to manage via ::after */
    position: relative;
    overflow: hidden;
    background: transparent !important; /* Let ::after handle background */
    border: none !important; /* Let the animated neon line act as the border */
    z-index: 1;
}

.premium-artist-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 75%, rgba(229, 9, 20, 1) 100%);
    animation: rotate-neon-border 3s linear infinite;
    z-index: 0;
}

.premium-artist-card::after {
    content: '';
    position: absolute;
    inset: 2px; /* Controls border thickness */
    background: rgba(15, 15, 15, 0.9);
    border-radius: 18px; /* Slightly less than card border-radius to curve nicely */
    z-index: 1;
}

.premium-artist-card:hover::before {
    background: conic-gradient(from 0deg, transparent 50%, rgba(229, 9, 20, 1) 100%);
    animation-duration: 1.5s; /* Speeds up on hover */
}

/* Ensure content is above the pseudo-elements */
.premium-artist-img-box, 
.premium-artist-content {
    position: relative;
    z-index: 2;
}

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

/* ==========================================================================
   Booking Redesign (Hologram Globe)
   ========================================================================== */
.booking-fullscreen-view {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #050505;
}

.hologram-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    pointer-events: none;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Will be animated by GSAP */
}

#globe-canvas {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(229, 9, 20, 0.4));
}

.hologram-glow {
    position: absolute;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.15) 0%, transparent 70%);
    top: 15%;
    left: 15%;
    z-index: -1;
    animation: pulse-glow 4s ease-in-out infinite;
}

.hologram-pin {
    position: absolute;
    color: var(--color-primary);
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(229, 9, 20, 0.8));
    opacity: 0;
    transform: scale(0);
    z-index: 10;
}

.booking-content-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    padding: clamp(80px, 10vw, 120px) 0;
}

@media (max-width: 992px) {
    .booking-content-grid {
        grid-template-columns: 1fr;
        padding-top: 120px;
    }
}

.booking-left-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0; /* Animated by GSAP */
    transform: translateX(-30px);
}

.booking-subtitle {
    color: var(--color-primary);
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 600;
}

.booking-mega-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 0.9;
    color: var(--color-white);
    margin-bottom: 30px;
}

.booking-address {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 40px;
    color: var(--color-grey);
    font-size: 1.1rem;
    line-height: 1.5;
}

.booking-address i {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-top: 3px;
}

.btn-whatsapp-premium {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #E50914, #8B0000);
    color: #fff;
    padding: 18px 40px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.4);
    transition: all 0.4s ease;
    width: fit-content;
}

.btn-whatsapp-premium:hover {
    box-shadow: 0 15px 40px rgba(229, 9, 20, 0.6);
    transform: translateY(-3px);
    color: #fff;
}

.btn-wsp-icon {
    font-size: 1.5rem;
    margin-right: 12px;
}

.booking-right-panel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.glass-map-card {
    background: rgba(15, 15, 15, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(229, 9, 20, 0.15);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1; /* Keep it square for the globe */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    opacity: 0; /* Animated by GSAP */
}

.map-target-placeholder {
    width: 100%;
    flex-grow: 1;
}

.btn-maps-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    border-radius: 999px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-maps-link:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Fix glass-map-card for iframe overlay */
.glass-map-card {
    position: relative !important;
    overflow: hidden !important;
    min-height: 350px;
}

.glass-map-card .map-target-placeholder {
    width: 100%;
    flex-grow: 1;
    min-height: 280px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* ==========================================================================
   FRANKLIN PORTFOLIO CUSTOM STYLES
   ========================================================================== */
.frank-portfolio-item {
    border-radius: 0px !important; /* Quitar esquinas redondeadas para evitar huecos */
    overflow: hidden;
    position: relative;
    break-inside: avoid; /* Para evitar cortes en masonry */
    margin-bottom: 0px !important; /* Sin espacio vertical */
    border: none !important; /* Quitar bordes para que sea continuo */
    box-shadow: none !important; /* Quitar sombras individuales */
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                filter 0.4s ease;
    will-change: transform;
}

.frank-portfolio-item img {
    width: 100%;
    height: auto; /* Altura automática para respetar aspect ratio original */
    object-fit: contain !important; /* Mostrar completa sin recortar */
    filter: none !important; /* Full color siempre */
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.frank-portfolio-item:hover {
    transform: scale(1.02); /* smooth hover animation */
    filter: brightness(1.05); /* slightly increased brightness */
    z-index: 5; /* Asegurar que la imagen en hover se levante sutilmente */
}

.frank-portfolio-item:hover img {
    transform: scale(1.03);
}

/* Centrar portafolio de Franklin y agrandar imágenes al 200% */
.frank-portfolio-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.frank-portfolio-layout .section-title-container {
    text-align: center !important;
    width: 100%;
}

.frank-portfolio-layout .section-title::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
}

#frank-portfolio-grid {
    display: block !important; /* Usar columnas en lugar de grid para el masonry */
    columns: 2 !important; /* 2 columnas grandes masonry */
    column-gap: 0px !important; /* Sin espacio horizontal */
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    #frank-portfolio-grid {
        columns: 1 !important; /* 1 columna en móvil */
        max-width: 500px;
    }
}

/* Artists Page Booking CTA Section */
.artists-booking-cta-container {
    margin-top: 80px;
    padding: 60px 40px;
    border: 1px solid rgba(229, 9, 20, 0.3); /* thin red border */
    border-radius: 20px; /* rounded container */
    background: rgba(10, 10, 10, 0.65); /* dark/transparent background */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 
                0 0 25px rgba(229, 9, 20, 0.05); /* subtle red glow */
}

.artists-cta-text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem); /* large uppercase typography */
    font-weight: 800;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    max-width: 900px;
}

.btn-artists-cta {
    display: inline-block;
    background: var(--color-primary); /* red */
    color: var(--color-white);
    padding: 16px 45px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 999px; /* rounded button */
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3); /* subtle red glow */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-artists-cta:hover {
    background: var(--color-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.5), 
                0 0 15px rgba(229, 9, 20, 0.2);
}

@media (max-width: 768px) {
    .artists-booking-cta-container {
        padding: 40px 20px;
        margin-top: 50px;
        gap: 20px;
    }
}

/* Ensure background transparency across all pages for the WebGL canvas */
html {
    background-color: #0b0b0b !important;
}
body {
    background: transparent !important;
    background-color: transparent !important;
}
section,
.page-section,
#home,
#artists,
#artist-profile,
#artist-frank,
#conventions,
#piercings,
#booking,
.unified-bg-zone,
.profile-content-area,
.timeline-section,
.piercings-gallery-section,
.booking-section,
.sovereignty-section,
.clinical-ethos-section,
.application-section,
.booking-details-section,
.booking-fullscreen-view {
    background: transparent !important;
    background-color: transparent !important;
}


