/* ==========================================================================
   FEDZZ — LUXURY DJ PORTFOLIO STYLESHEET
   Fully responsive across Desktop, Tablet, and Mobile screens.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & RESET — ICE SILVER & OCEAN TEAL LIGHT THEME
   -------------------------------------------------------------------------- */
:root {
    --bg-black: #0E1117;
    --bg-primary: #0E1117;
    --bg-dark-card: #161B22;
    --bg-surface: #161B22;
    --bg-glass: rgba(22, 27, 34, 0.88);
    --accent-teal: #94A3B8;
    --accent-emerald: #94A3B8;
    --accent-hover: #CBD5E1;
    --accent-glow: rgba(148, 163, 184, 0.25);
    --border-thin: #30363D;
    --border-light: rgba(48, 54, 61, 0.7);
    
    --text-white: #F8FAFC;
    --text-dark: #F8FAFC;
    --text-muted: #8B949E;
    --text-subtle: #6E7681;

    --font-display: 'Syne', 'Montserrat', -apple-system, sans-serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;

    --ease-out-cubic: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-smooth: cubic-bezier(0.65, 0, 0.35, 1);

    --left-width: 34%;
    --right-width: 66%;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-dark);
    min-height: 100vh;
    opacity: 0;
    transition: opacity 1s var(--ease-out-cubic);
}

body.is-loaded {
    opacity: 1;
}

/* --------------------------------------------------------------------------
   2. GRAIN NOISE & CURSOR OVERLAYS
   -------------------------------------------------------------------------- */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background-color: var(--accent-teal);
    box-shadow: 0 0 10px var(--accent-teal);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out-cubic), height 0.3s var(--ease-out-cubic), border-color 0.3s ease;
}

body:hover .cursor-ring.is-hovering {
    width: 60px;
    height: 60px;
    border-color: var(--accent-teal);
    box-shadow: 0 0 20px var(--accent-glow);
}

@media (pointer: coarse) {

    .cursor-dot,
    .cursor-ring {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   3. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4rem;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(14, 17, 23, 0.95), rgba(14, 17, 23, 0));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-thin);
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s var(--ease-out-cubic);
}

.logo-container:hover {
    transform: scale(1.04);
}

.site-logo-img {
    height: 46px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 10px rgba(226, 232, 240, 0.2));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-container:hover .site-logo-img {
    filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.5));
}

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

.nav-item {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--text-muted);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent-teal);
    box-shadow: 0 0 8px var(--accent-teal);
    transition: width 0.4s var(--ease-out-cubic);
}

.nav-item:hover,
.nav-item.active {
    color: var(--accent-teal);
}

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

.header-status {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.status-indicator {
    width: 8px;
    height: 8px;
    background-color: var(--accent-teal);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent-teal);
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 12px var(--accent-teal);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.85);
        box-shadow: 0 0 6px var(--accent-hover);
    }
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.bar-line {
    width: 26px;
    height: 2px;
    background-color: var(--text-white);
    transition: transform 0.3s var(--ease-out-cubic), opacity 0.3s ease;
    align-self: flex-end;
}

.mobile-nav-toggle.is-active .bar-line:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.mobile-nav-toggle.is-active .bar-line:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   4. SPLIT SCREEN MAIN LAYOUT
   -------------------------------------------------------------------------- */
.main-layout {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.left-hero-frame {
    width: var(--left-width);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    background-color: var(--bg-primary);
    z-index: 10;
}

.portrait-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000000;
}

.portrait-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.portrait-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: contrast(105%) brightness(100%);
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1), transform 1.4s cubic-bezier(0.4, 0, 0.2, 1), filter 1.4s ease;
    pointer-events: none;
}

.portrait-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.portrait-wrapper:hover .portrait-slide.active {
    transform: scale(1.03);
    filter: contrast(110%) brightness(102%);
}

.slideshow-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(226, 232, 240, 0.18);
    z-index: 12;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background-color: var(--accent-teal);
    box-shadow: 0 0 12px var(--accent-teal);
}

.portrait-badges {
    position: absolute;
    bottom: 3rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    border-top: 1px solid var(--border-thin);
    padding-top: 1rem;
}

.badge-tag {
    color: var(--accent-teal);
    font-weight: 700;
}

.badge-coord {
    color: var(--text-muted);
}

.right-content-stream {
    width: var(--right-width);
    margin-left: var(--left-width);
    min-height: 100vh;
    padding-left: 4rem;
    padding-right: 4rem;
    background-color: var(--bg-primary);
}

/* --------------------------------------------------------------------------
   5. SECTIONS GENERAL STYLING
   -------------------------------------------------------------------------- */
.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 0;
    position: relative;
    border-bottom: 1px solid var(--border-thin);
}

.section-label {
    display: flex;
    gap: 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.section-num {
    color: var(--accent-teal);
    font-weight: 800;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-banner-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    gap: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
}

.thick-bar {
    height: 36px;
    background-color: var(--accent-teal);
    flex: 1;
    min-width: 20px;
    transform: scaleX(0);
    transition: transform 1.2s var(--ease-out-cubic);
    box-shadow: 0 0 15px var(--accent-glow);
}

.thick-bar-left {
    transform-origin: right center;
}

.thick-bar-right {
    transform-origin: left center;
}

.thick-bar.is-expanded {
    transform: scaleX(1);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-white);
    white-space: nowrap;
    margin: 0;
    display: flex;
    justify-content: center;
}

.hero-title .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.7s var(--ease-out-cubic), transform 0.7s var(--ease-out-cubic);
    will-change: transform, opacity;
}

.hero-title.is-visible .char {
    opacity: 1;
    transform: translateY(0%);
}

.hero-title .space {
    width: 0.3em;
}

.hero-subtitle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s var(--ease-out-cubic), transform 1s var(--ease-out-cubic);
    transition-delay: 0.6s;
    margin-bottom: 2.5rem;
}

.hero-subtitle-container.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle-outline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 6rem);
    font-weight: 900;
    letter-spacing: 0.25em;
    color: transparent;
    -webkit-text-stroke: 3px var(--accent-teal);
    text-stroke: 3px var(--accent-teal);
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    filter: drop-shadow(0 0 10px rgba(226, 232, 240, 0.25));
}

.subtitle-desc {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 1rem;
    text-align: center;
}

.bottom-right-accent-line {
    position: absolute;
    bottom: 4rem;
    right: 0;
    width: 45%;
    height: 3px;
    background-color: var(--accent-teal);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 1.4s var(--ease-out-cubic);
    transition-delay: 0.8s;
    box-shadow: 0 0 15px var(--accent-glow);
}

.bottom-right-accent-line.is-expanded {
    transform: scaleX(1);
}

.hero-quick-connect {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
    width: 100%;
}

.hero-phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.8rem;
    background-color: var(--accent-teal);
    color: #09090B;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 6px 22px rgba(226, 232, 240, 0.25);
    transition: background-color 0.3s ease, transform 0.3s var(--ease-out-cubic), box-shadow 0.3s ease, color 0.3s ease;
}

.hero-phone-pill:hover {
    background-color: var(--accent-hover);
    color: #000000;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

.phone-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.hero-phone-pill:hover .phone-icon {
    transform: rotate(12deg) scale(1.1);
}

.hero-social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-thin);
    color: var(--accent-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease-out-cubic), box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-social-btn:hover {
    background-color: var(--accent-teal);
    color: #09090B;
    border-color: transparent;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 25px rgba(226, 232, 240, 0.3);
}

.hero-social-svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.scroll-text {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--text-subtle);
}

.scroll-line {
    width: 40px;
    height: 1px;
    background-color: var(--text-subtle);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--accent-teal);
    animation: scrollLineAnim 2s infinite var(--ease-in-out-smooth);
}

@keyframes scrollLineAnim {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* --------------------------------------------------------------------------
   7. ABOUT SECTION (LUXURY DARK CARD)
   -------------------------------------------------------------------------- */
.about-box {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-thin);
    color: var(--text-dark);
    padding: 4rem;
    position: relative;
    transform: translateX(80px);
    opacity: 0;
    transition: transform 1.2s var(--ease-out-cubic), opacity 1.2s var(--ease-out-cubic), border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.about-box.is-visible {
    transform: translateX(0);
    opacity: 1;
}

.about-box-inner {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.3s;
}

.about-box.is-visible .about-box-inner {
    opacity: 1;
    transform: translateY(0);
}

.about-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: var(--accent-teal);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.about-heading {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.about-text-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-text-content strong {
    color: var(--text-white);
    font-weight: 700;
}

.about-metrics {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-thin);
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-num-wrap {
    display: flex;
    align-items: baseline;
}

.metric-num {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1;
    color: var(--text-white);
}

.metric-plus {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-teal);
}

.metric-label {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.metric-divider {
    width: 2px;
    height: 45px;
    background-color: var(--border-thin);
}

/* --------------------------------------------------------------------------
   8. ARTISTS / EXPERIENCE SECTION
   -------------------------------------------------------------------------- */
.experience-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 4rem;
    color: var(--text-white);
    transform: scale(0.92);
    opacity: 0;
    transition: transform 1s var(--ease-out-cubic), opacity 1s var(--ease-out-cubic);
}

.experience-title.is-visible {
    transform: scale(1);
    opacity: 1;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.exp-item {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-thin);
    padding: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-cubic), transform 0.8s var(--ease-out-cubic), border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    transition-delay: var(--delay, 0ms);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.exp-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.exp-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0%;
    background-color: var(--accent-teal);
    transition: height 0.4s var(--ease-out-cubic);
}

.exp-item:hover {
    border-color: rgba(226, 232, 240, 0.3);
    background-color: #1A1A1E;
    box-shadow: 0 12px 30px rgba(226, 232, 240, 0.12);
}

.exp-item:hover::before {
    height: 100%;
}

.exp-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.exp-num {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--accent-teal);
    letter-spacing: 0.1em;
}

.exp-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-white);
    flex-grow: 1;
}

.exp-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent-teal);
    border: 1px solid var(--border-thin);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem 0.8rem;
    text-transform: uppercase;
}

.exp-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-muted);
    padding-left: 3rem;
}

/* Hero Tagline & Genre Pills */
.hero-tagline-quote {
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 1.8vw, 1.25rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-white);
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    padding: 0.85rem 1.35rem;
    border-left: 3px solid var(--accent-teal);
    border-top: 1px solid var(--border-thin);
    border-right: 1px solid var(--border-thin);
    border-bottom: 1px solid var(--border-thin);
    background: var(--bg-dark-card);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.genre-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.genre-pill {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--accent-teal);
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-thin);
    padding: 0.4rem 0.85rem;
    text-transform: uppercase;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.genre-pill:hover {
    background-color: var(--accent-teal);
    color: #09090B;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(226, 232, 240, 0.35);
}

.contact-location-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.location-main {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--text-white);
}

.location-sub {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   9. PHOTO GALLERY & MODAL LIGHTBOX STYLES
   -------------------------------------------------------------------------- */
.gallery-header {
    margin-bottom: 3.5rem;
}

.gallery-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.gallery-section-subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-card {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-thin);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s var(--ease-out-cubic), border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.gallery-card:hover {
    transform: translateY(-6px);
    border-color: rgba(226, 232, 240, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(226, 232, 240, 0.15);
}

.gallery-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: #121215;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: contrast(105%);
    transition: filter 0.5s ease, transform 0.6s var(--ease-out-cubic);
}

.gallery-card:hover .gallery-img {
    filter: contrast(110%);
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(226, 232, 240, 0.15) 0%, rgba(9, 9, 11, 0.8) 100%);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

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

.gallery-zoom-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent-teal);
    color: #09090B;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.3s var(--ease-out-cubic), box-shadow 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 0 15px rgba(226, 232, 240, 0.4);
}

.gallery-card:hover .gallery-zoom-icon {
    transform: scale(1);
    box-shadow: 0 0 25px rgba(13, 148, 136, 0.6);
    background-color: var(--accent-hover);
}

/* PHOTO GALLERY LIGHTBOX MODAL */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out-cubic);
}

.gallery-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.gallery-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 17, 23, 0.9);
    backdrop-filter: blur(18px);
}

.gallery-modal-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1100px;
    max-height: 92vh;
    background-color: #161B22;
    border: 1px solid var(--border-thin);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8), 0 0 35px rgba(148, 163, 184, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.92);
    transition: transform 0.4s var(--ease-out-cubic);
}

.gallery-modal.is-open .gallery-modal-container {
    transform: scale(1);
}

.gallery-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 10;
    width: 44px;
    height: 44px;
    background-color: rgba(18, 18, 21, 0.9);
    border: 1px solid var(--border-thin);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.gallery-modal-close:hover {
    background-color: var(--accent-teal);
    color: #09090B;
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--accent-glow);
}

.gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    background-color: rgba(18, 18, 21, 0.9);
    border: 1px solid var(--border-thin);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.gallery-modal-nav:hover {
    background-color: var(--accent-teal);
    color: #09090B;
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px var(--accent-glow);
}

.gallery-prev {
    left: 1.25rem;
}

.gallery-next {
    right: 1.25rem;
}

.gallery-img-wrapper {
    position: relative;
    width: 100%;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0E1117;
    overflow: hidden;
    padding: 1rem;
}

.gallery-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.gallery-modal-info {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #161B22;
    border-top: 1px solid var(--border-thin);
}

.gallery-modal-counter {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: var(--accent-teal);
    text-transform: uppercase;
}

.gallery-modal-caption {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-white);
}

/* --------------------------------------------------------------------------
   10. MEDIA / EQUALIZER SECTION
   -------------------------------------------------------------------------- */
.media-container {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-thin);
    padding: 3.5rem;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.sound-wave-box {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.sound-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.now-playing-tag {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--accent-teal);
    font-weight: 800;
}

.track-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-white);
}

.equalizer-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
    padding: 10px 0;
}

.equalizer-bars .bar {
    flex: 1;
    background: linear-gradient(to top, rgba(226, 232, 240, 0.2), var(--accent-teal));
    height: 15%;
    border-radius: 2px;
    transition: height 0.2s ease;
}

.equalizer-bars.is-playing .bar {
    animation: barPulse 1.2s infinite ease-in-out alternate;
}

.equalizer-bars.is-playing .bar:nth-child(1) { animation-delay: 0.1s; }
.equalizer-bars.is-playing .bar:nth-child(2) { animation-delay: 0.4s; }
.equalizer-bars.is-playing .bar:nth-child(3) { animation-delay: 0.2s; }
.equalizer-bars.is-playing .bar:nth-child(4) { animation-delay: 0.6s; }
.equalizer-bars.is-playing .bar:nth-child(5) { animation-delay: 0.3s; }
.equalizer-bars.is-playing .bar:nth-child(6) { animation-delay: 0.5s; }
.equalizer-bars.is-playing .bar:nth-child(7) { animation-delay: 0.15s; }
.equalizer-bars.is-playing .bar:nth-child(8) { animation-delay: 0.45s; }
.equalizer-bars.is-playing .bar:nth-child(9) { animation-delay: 0.25s; }
.equalizer-bars.is-playing .bar:nth-child(10) { animation-delay: 0.55s; }
.equalizer-bars.is-playing .bar:nth-child(11) { animation-delay: 0.35s; }
.equalizer-bars.is-playing .bar:nth-child(12) { animation-delay: 0.65s; }

@keyframes barPulse {
    0% { height: 10%; }
    100% { height: 100%; }
}

.play-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background-color: transparent;
    border: 1px solid var(--accent-teal);
    color: var(--accent-teal);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s var(--ease-out-cubic), box-shadow 0.3s ease;
}

.play-btn:hover {
    background-color: var(--accent-teal);
    color: #09090B;
    border-color: transparent;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.hidden {
    display: none !important;
}

/* --------------------------------------------------------------------------
   11. CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-header {
    margin-bottom: 4rem;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.contact-subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.contact-card {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-thin);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.contact-card:hover {
    border-color: rgba(226, 232, 240, 0.4);
    box-shadow: 0 12px 30px rgba(226, 232, 240, 0.15);
}

.card-label {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    color: var(--accent-teal);
}

.contact-link {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: 0.05em;
    word-break: break-all;
}

.link-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
}

.link-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent-teal);
    box-shadow: 0 0 8px var(--accent-teal);
    transition: width 0.4s var(--ease-out-cubic);
}

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

.copy-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--accent-teal);
    border: none;
    color: #09090B;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    cursor: pointer;
    padding: 0.6rem 1.2rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(226, 232, 240, 0.25);
}

.copy-btn:hover {
    background-color: var(--accent-hover);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.45);
}

.social-section {
    margin-top: 3rem;
}

.social-heading {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.social-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-thin);
    padding: 1.75rem 2.5rem;
    text-decoration: none;
    color: var(--text-white);
    transition: transform 0.4s var(--ease-out-cubic), opacity 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-card:hover {
    transform: scale(1.02);
    border-color: rgba(226, 232, 240, 0.4);
    background-color: #1A1A1E;
    box-shadow: 0 10px 30px rgba(226, 232, 240, 0.12);
}

.social-main {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-thin);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-teal);
    flex-shrink: 0;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s var(--ease-out-cubic), box-shadow 0.3s ease;
}

.social-card:hover .social-icon-wrap {
    background-color: var(--accent-teal);
    color: #09090B;
    border-color: transparent;
    transform: scale(1.08);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.social-platform-icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.social-platform {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-white);
}

.social-handle {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.social-arrow {
    transition: transform 0.4s var(--ease-out-cubic), color 0.3s ease;
    color: var(--accent-teal);
}

.social-card:hover .social-arrow {
    transform: translate(4px, -4px);
    color: var(--accent-hover);
}

/* --------------------------------------------------------------------------
   12. FOOTER & TOAST
   -------------------------------------------------------------------------- */
.site-footer {
    margin-top: 8rem;
    padding-bottom: 4rem;
}

.footer-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-thin), transparent);
    margin-bottom: 3rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--text-subtle);
    text-transform: uppercase;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    filter: drop-shadow(0 0 6px rgba(226, 232, 240, 0.2));
    transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
}

.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--accent-teal);
    color: #09090B;
    padding: 1rem 2rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(226, 232, 240, 0.35);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s var(--ease-out-cubic), transform 0.4s var(--ease-out-cubic);
    pointer-events: none;
    z-index: 10000;
}

.toast-notification.is-active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-out-cubic), transform 1s var(--ease-out-cubic);
    will-change: transform, opacity;
}

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

/* --------------------------------------------------------------------------
   13. RESPONSIVE RULES
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .site-header {
        padding: 0 1.5rem;
        height: 70px;
    }

    .header-status {
        display: none;
    }

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

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(14, 17, 23, 0.98);
        backdrop-filter: blur(18px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-15px);
        transition: opacity 0.4s var(--ease-out-cubic), transform 0.4s var(--ease-out-cubic);
        z-index: 999;
    }

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

    .nav-item {
        font-size: 1.1rem;
        letter-spacing: 0.3em;
    }

    .main-layout {
        flex-direction: column;
    }

    .left-hero-frame {
        width: 100%;
        height: 82vh;
        max-height: 750px;
        min-height: 480px;
        position: relative;
        sticky: static;
        border-right: none;
        background-color: #0E1117;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 70px;
    }

    .portrait-wrapper {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #0E1117;
        position: relative;
        overflow: hidden;
    }

    .portrait-slide,
    .portrait-img {
        width: 100%;
        height: 100%;
        object-fit: cover !important;
        object-position: center top !important;
        filter: contrast(105%) brightness(100%);
        transform: none !important;
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .portrait-badges {
        bottom: 0.75rem;
        left: 1rem;
        right: 1rem;
        font-size: 0.55rem;
        padding: 0.5rem 0.85rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 4px;
        background: rgba(14, 17, 23, 0.85);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        color: #FFFFFF;
        z-index: 15;
    }

    .right-content-stream {
        width: 100%;
        margin-left: 0;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .section {
        min-height: auto;
        padding: 4.5rem 0;
    }

    .hero-banner-wrap {
        gap: 0.6rem;
        margin-bottom: 0.75rem;
    }

    .thick-bar {
        height: 18px;
        min-width: 15px;
    }

    .hero-title {
        font-size: clamp(1.15rem, 5.2vw, 2.5rem);
        letter-spacing: 0.02em;
    }

    .hero-subtitle-outline {
        font-size: clamp(1.6rem, 6.5vw, 3.2rem);
        letter-spacing: 0.14em;
        -webkit-text-stroke: 2px var(--accent-teal);
        text-stroke: 2px var(--accent-teal);
        text-align: center;
        max-width: 100%;
    }

    .subtitle-desc {
        font-size: clamp(0.55rem, 2.5vw, 0.65rem);
        letter-spacing: 0.14em;
        line-height: 1.4;
        max-width: 100%;
        text-align: center;
    }

    .bottom-right-accent-line {
        width: 65%;
        bottom: 2.5rem;
        height: 2px;
    }

    .hero-quick-connect {
        gap: 1rem;
        margin-top: 1rem;
    }

    .hero-phone-pill {
        padding: 0.75rem 1.4rem;
        font-size: 0.78rem;
    }

    .hero-social-btn {
        width: 44px;
        height: 44px;
    }

    .about-box {
        padding: 2rem 1.5rem;
        transform: translateY(40px);
    }

    .about-box.is-visible {
        transform: translateY(0);
    }

    .about-heading {
        font-size: 1.3rem;
    }

    .about-metrics {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .metric-divider {
        display: none;
    }

    .exp-item {
        padding: 1.75rem 1.25rem;
    }

    .exp-header {
        gap: 1rem;
    }

    .exp-desc {
        padding-left: 0;
        margin-top: 0.5rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .video-card-meta {
        padding: 1.25rem 1.25rem 1.5rem;
    }

    .media-container {
        padding: 2rem 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .contact-card {
        padding: 1.75rem 1.25rem;
    }

    .contact-link {
        font-size: 1rem;
    }

    .social-card {
        padding: 1.5rem 1.25rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .left-hero-frame {
        height: 80vh;
        max-height: 720px;
        min-height: 450px;
    }

    .thick-bar {
        height: 14px;
        min-width: 10px;
    }

    .hero-title {
        font-size: clamp(1rem, 4.8vw, 1.8rem);
    }

    .hero-subtitle-outline {
        font-size: clamp(1.25rem, 5.5vw, 1.7rem);
        letter-spacing: 0.1em;
        -webkit-text-stroke: 1.5px var(--accent-teal);
        text-stroke: 1.5px var(--accent-teal);
    }

    .subtitle-desc {
        font-size: 0.52rem;
        letter-spacing: 0.08em;
    }
}

@media (max-width: 360px) {
    .hero-subtitle-outline {
        font-size: 1.15rem;
        letter-spacing: 0.06em;
        -webkit-text-stroke: 1.2px var(--accent-teal);
        text-stroke: 1.2px var(--accent-teal);
    }

    .subtitle-desc {
        font-size: 0.46rem;
        letter-spacing: 0.05em;
    }
}