/* ============================================================
   Awwwards-Quality Cinematic Design System
   Award-Winning Photography Portfolio: Amit Singh
   ============================================================ */

:root {
    /* STRICTLY PRESERVED ORIGINAL COLOR PALETTE */
    --cream: #f5f0e8;
    --ink: #1a1714;
    --warm: #c8a97e;
    --dust: #9b8f82;
    --surface: #ede8df;
    --card: #f9f6f1;

    /* TYPOGRAPHY TOKENS */
    --font-heading: 'Playfair Display', serif;
    --font-subheading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --font-button: 'Space Grotesk', monospace, sans-serif;

    /* ANIMATION EASING */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-cinematic: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--cream);
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* ============================================================
   GPU Accelerated Film Grain & Noise Overlays
   ============================================================ */
.film-grain {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    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.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9990;
    animation: grainAnimation 0.5s steps(4) infinite;
    will-change: transform;
}

@keyframes grainAnimation {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-2%, -1%);
    }

    50% {
        transform: translate(1%, 2%);
    }

    75% {
        transform: translate(-1%, 1%);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* ============================================================
   Cinematic Custom Cursor
   ============================================================ */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--ink);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    will-change: transform;
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(26, 23, 20, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.35s var(--ease-out-expo), height 0.35s var(--ease-out-expo), background-color 0.35s, border-color 0.35s;
    will-change: transform, width, height;
}

.cursor-text {
    font-family: var(--font-button);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--cream);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.25s, transform 0.25s;
    text-transform: uppercase;
}

.cursor-ring.cursor-active {
    width: 72px;
    height: 72px;
    background-color: var(--ink);
    border-color: var(--ink);
}

.cursor-ring.cursor-active .cursor-text {
    opacity: 1;
    transform: scale(1);
}

/* ============================================================
   Cinematic Fullscreen Preloader
   ============================================================ */
.preloader {
    position: fixed;
    inset: 0;
    background-color: var(--ink);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.preloader-noise {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 50% 50%, rgba(200, 169, 126, 0.08) 0%, transparent 80%);
    pointer-events: none;
}

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

.shutter-lens {
    width: 120px;
    height: 120px;
    position: relative;
    animation: rotateSlow 12s linear infinite;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.lens-svg {
    width: 100%;
    height: 100%;
}

.preloader-counter-wrap {
    text-align: center;
}

.preloader-counter {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    color: var(--cream);
    line-height: 1;
    letter-spacing: -0.02em;
}

.preloader-bar-bg {
    width: 240px;
    height: 2px;
    background-color: rgba(245, 240, 232, 0.15);
    overflow: hidden;
    position: relative;
}

.preloader-bar {
    width: 0%;
    height: 100%;
    background-color: var(--warm);
    transition: width 0.3s ease;
}

.preloader-status {
    font-family: var(--font-button);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--dust);
}

.shutter-panel {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--ink);
    z-index: 1;
    will-change: transform;
}

.shutter-top {
    top: 0;
}

.shutter-bottom {
    bottom: 0;
}

/* ============================================================
   Glass Navigation Bar
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 4rem;
    background: rgba(245, 240, 232, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(26, 23, 20, 0.08);
    transition: transform 0.4s var(--ease-cinematic), padding 0.4s var(--ease-cinematic);
    will-change: transform;
}

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

.navbar.nav-scrolled {
    padding: 1rem 4rem;
    box-shadow: 0 10px 30px rgba(26, 23, 20, 0.05);
}

.nav-logo {
    font-family: var(--font-subheading);
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-link {
    font-family: var(--font-button);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dust);
    text-decoration: none;
    position: relative;
    padding: 0.2rem 0;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1.5px;
    background-color: var(--warm);
    transition: width 0.35s var(--ease-out-expo);
}

.nav-link:hover,
.nav-link.active {
    color: var(--ink);
}

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

.nav-insta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-button);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--warm);
    text-decoration: none;
    border: 1px solid var(--warm);
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-insta:hover {
    background-color: var(--warm);
    color: var(--ink);
}

.icon-arrow {
    transition: transform 0.3s var(--ease-out-expo);
}

.nav-insta:hover .icon-arrow {
    transform: translate(3px, -3px);
}

/* ============================================================
   Setup Banner (Hidden unless API required)
   ============================================================ */
.setup-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 990;
    background: var(--ink);
    color: var(--cream);
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--warm);
    max-width: 650px;
    width: 90%;
}

.setup-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.setup-label {
    font-family: var(--font-button);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--warm);
    text-transform: uppercase;
}

.setup-content p {
    font-size: 0.82rem;
    color: var(--dust);
}

.setup-actions {
    display: flex;
    gap: 0.75rem;
}

.setup-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1rem;
    border-radius: 6px;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.8rem;
    outline: none;
}

.btn-setup {
    background: var(--warm);
    color: var(--ink);
    border: none;
    padding: 0.6rem 1.5rem;
    font-family: var(--font-button);
    font-weight: 600;
    font-size: 0.75rem;
    border-radius: 6px;
    cursor: pointer;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 5rem;
    position: relative;
    z-index: 2;
}

.hero-eyebrow-wrap {
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-button);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--warm);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.8rem, 6.5vw, 6.8rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 2.5rem;
}

.title-accent {
    font-family: var(--font-subheading);
    font-style: italic;
    font-weight: 300;
    color: var(--warm);
}

.hero-subtitle {
    font-family: var(--font-button);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    color: var(--dust);
    text-transform: uppercase;
    margin-bottom: 3.5rem;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--ink);
    color: var(--cream);
    padding: 1rem 2.2rem;
    font-family: var(--font-button);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    transition: background-color 0.3s, transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}

.btn-primary:hover {
    background-color: var(--warm);
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(200, 169, 126, 0.25);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-button);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--ink);
    transition: color 0.3s, border-color 0.3s;
}

.btn-ghost:hover {
    color: var(--warm);
    border-color: var(--warm);
}

.hero-scroll-indicator {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.mouse-icon {
    width: 22px;
    height: 36px;
    border: 1.5px solid var(--dust);
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.mouse-wheel {
    width: 3px;
    height: 8px;
    background-color: var(--warm);
    border-radius: 2px;
    animation: scrollWheel 2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(10px);
        opacity: 0;
    }

    51% {
        transform: translateY(-4px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.scroll-text {
    font-family: var(--font-button);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--dust);
}

.hero-right {
    position: relative;
    background-color: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-spotlight {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 169, 126, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transition: transform 0.1s ease-out;
}

.hero-img-frame {
    width: 78%;
    height: 75%;
    position: relative;
    z-index: 2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(26, 23, 20, 0.15);
    transition: transform 0.5s var(--ease-out-expo);
    will-change: transform;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 1.2s var(--ease-out-expo);
}

.hero-img-frame:hover .hero-img {
    transform: scale(1.12);
}

.hero-img-reflection {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, transparent 40%, transparent 80%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.hero-caption-floating {
    position: absolute;
    bottom: 3rem;
    left: 4rem;
    z-index: 3;
    background: rgba(26, 23, 20, 0.85);
    backdrop-filter: blur(12px);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 2px solid var(--warm);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.caption-label {
    font-family: var(--font-button);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    color: var(--warm);
    text-transform: uppercase;
}

.caption-meta {
    font-size: 0.82rem;
    color: var(--cream);
    font-family: var(--font-subheading);
    font-style: italic;
}

/* ============================================================
   Section Base Styles
   ============================================================ */
.section {
    padding: 8rem 5rem;
    position: relative;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 5rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.center-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.header-left {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-button);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-desc {
    max-width: 420px;
    font-size: 0.95rem;
    color: var(--dust);
}

.section-count {
    font-family: var(--font-button);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--dust);
    text-transform: uppercase;
}

/* ============================================================
   Software Showcase Section
   ============================================================ */
.software-section {
    background-color: var(--surface);
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.software-card {
    background-color: var(--card);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(26, 23, 20, 0.06);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo), border-color 0.5s;
    will-change: transform;
}

.software-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(26, 23, 20, 0.08);
    border-color: rgba(200, 169, 126, 0.4);
}

.software-card-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(200, 169, 126, 0.18) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.software-card:hover .software-card-glow {
    opacity: 1;
}

.software-logo-wrap {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background-color: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s var(--ease-out-expo);
}

.software-card:hover .software-logo-wrap {
    transform: scale(1.1) rotate(4deg);
}

.software-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    z-index: 2;
}

.software-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--ink);
}

.software-level {
    font-family: var(--font-button);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--warm);
    text-transform: uppercase;
}

.software-years {
    font-size: 0.82rem;
    color: var(--dust);
}

.software-bg-watermark {
    position: absolute;
    bottom: -15px;
    right: 10px;
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 700;
    color: rgba(26, 23, 20, 0.03);
    line-height: 1;
    pointer-events: none;
    z-index: 1;
    transition: transform 0.5s var(--ease-out-expo), color 0.5s;
}

.software-card:hover .software-bg-watermark {
    transform: scale(1.1) translate(-10px, -10px);
    color: rgba(200, 169, 126, 0.08);
}

/* ============================================================
   Premium Luxury Editorial My Skills Section (Awwwards / Framer)
   ============================================================ */
.premium-skills-section {
    background-color: #F8F4ED;
    color: #1A1A1A;
    /* padding: 10rem 5rem; */
    position: relative;
    overflow: hidden;
}

.skills-parallax-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(199, 154, 93, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 10% 80%, rgba(199, 154, 93, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.skills-cursor-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199, 154, 93, 0.16) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.premium-skills-section:hover .skills-cursor-glow {
    opacity: 1;
}

/* Header Split Layout */
.skills-editorial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 4rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid #E8DED1;
    padding-bottom: 3.5rem;
}

.header-left-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.skills-eyebrow {
    font-family: var(--font-button);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: #C79A5D;
}

.skills-main-heading {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 5vw, 4.8rem);
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.header-right-col {
    max-width: 480px;
}

.skills-header-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4A453E;
    font-weight: 300;
}

/* TOP AREA: HORIZONTAL SWIPER SLIDER */
.skills-slider-container {
    position: relative;
    z-index: 2;
    margin-bottom: 8rem;
}

.slider-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding: 0 0.5rem;
}

.slider-title-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.slider-mini-label {
    font-family: var(--font-button);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: #C79A5D;
    text-transform: uppercase;
}

.slider-editorial-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    color: #1A1A1A;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.title-star-accent {
    color: #C79A5D;
    font-size: 1.4rem;
    display: inline-block;
    animation: starRotate 8s linear infinite;
}

@keyframes starRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.15);
        color: #1A1A1A;
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.slider-custom-nav {
    display: flex;
    gap: 1rem;
}

.slider-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #E8DED1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A1A1A;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 10px 20px rgba(26, 26, 26, 0.04);
}

.slider-arrow:hover {
    background: #1A1A1A;
    color: #F8F4ED;
    border-color: #1A1A1A;
    transform: scale(1.08);
}

/* Swiper Styling */
.skills-swiper {
    /* padding: 1rem 0.5rem 4rem 0.5rem !important; */
    overflow: visible !important;
}

.skill-swiper-slide {
    height: auto;
    display: flex;
}

.skill-slide-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid #E8DED1;
    border-radius: 28px;
    padding: 2.8rem 2.2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 220px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 15px 35px rgba(26, 26, 26, 0.04);
}

/* Hover Animation & Slight Lift */
.skill-slide-card:hover {
    transform: translateY(-12px);
    border-color: #C79A5D;
    box-shadow: 0 25px 50px rgba(199, 154, 93, 0.16);
}

.card-glass-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199, 154, 93, 0.28) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.skill-slide-card:hover .card-glass-glow {
    opacity: 1;
}

.slide-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: #F8F4ED;
    border: 1px solid #E8DED1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C79A5D;
    margin-bottom: 2.5rem;
    transition: all 0.4s var(--ease-out-expo);
}

.skill-slide-card:hover .slide-icon-box {
    background: #C79A5D;
    color: #FFFFFF;
    border-color: #C79A5D;
    transform: scale(1.1) rotate(6deg);
}

.slide-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
    flex: 1;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 600;
    color: #1A1A1A;
    line-height: 1.25;
    transition: color 0.4s;
}

.slide-desc {
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.65;
    color: #6B6358;
    font-weight: 300;
    transition: color 0.4s;
}

.slide-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-button);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: #C79A5D;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
}

.slide-cta-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1.5px;
    background-color: #C79A5D;
    transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.skill-slide-card:hover .slide-cta-link::after {
    width: 100%;
}

.arrow-diag {
    transition: transform 0.4s var(--ease-out-expo);
}

.skill-slide-card:hover .arrow-diag {
    transform: translate(4px, -4px);
}

.slide-active-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 3px;
    background: #C79A5D;
    transition: width 0.5s var(--ease-out-expo);
}

/* Active Slide Dark Luxury Mode */
.skills-swiper .swiper-slide-active .skill-slide-card {
    background: #1A1A1A;
    border-color: #C79A5D;
    box-shadow: 0 30px 60px rgba(26, 26, 26, 0.35);
    transform: scale(1.04);
}

.skills-swiper .swiper-slide-active .slide-title {
    color: #F8F4ED;
}

.skills-swiper .swiper-slide-active .slide-desc {
    color: #C2B8AD;
}

.skills-swiper .swiper-slide-active .slide-icon-box {
    background: rgba(199, 154, 93, 0.2);
    color: #C79A5D;
    border-color: rgba(199, 154, 93, 0.5);
}

.skills-swiper .swiper-slide-active .slide-active-indicator {
    width: 65%;
}

/* Swiper Pagination Dots */
.skills-swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 10;
}

.skills-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: #D8CEBE;
    opacity: 1;
    transition: all 0.4s ease;
}

.skills-swiper-pagination .swiper-pagination-bullet-active {
    width: 32px;
    background: #C79A5D;
}

/* BOTTOM AREA: MODERN MASONRY / GRID LAYOUT */
.skills-masonry-container {
    position: relative;
    z-index: 2;
}

.skills-masonry-layout {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 3rem;
    align-items: start;
}

/* Left Intro Card */
.masonry-intro-card {
    background: #FFFFFF;
    border: 1px solid #E8DED1;
    border-radius: 32px;
    padding: 4rem 3.5rem;
    position: sticky;
    top: 8rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(26, 26, 26, 0.05);
    transition: border-color 0.4s, box-shadow 0.4s;
}

.masonry-intro-card:hover {
    border-color: #C79A5D;
    box-shadow: 0 30px 60px rgba(199, 154, 93, 0.14);
}

.intro-glass-effect {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(199, 154, 93, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.intro-content-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-label {
    font-family: var(--font-button);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #C79A5D;
}

.intro-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 3vw, 3.4rem);
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.1;
}

.intro-paragraph {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.75;
    color: #5E574E;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.btn-luxury-resume {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 2.2rem;
    border-radius: 999px;
    background: #1A1A1A;
    color: #F8F4ED;
    font-family: var(--font-button);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 10px 25px rgba(26, 26, 26, 0.2);
    align-self: flex-start;
}

.btn-luxury-resume:hover {
    background: #C79A5D;
    color: #1A1A1A;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(199, 154, 93, 0.35);
}

.btn-shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    transition: none;
}

.btn-luxury-resume:hover .btn-shine-effect {
    animation: shineSweep 0.8s ease;
}

@keyframes shineSweep {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.intro-watermark-text {
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-family: var(--font-heading);
    font-size: 7.5rem;
    font-weight: 700;
    color: rgba(26, 26, 26, 0.03);
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

/* Right Masonry Grid */
.masonry-skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.masonry-offset-top {
    transform: translateY(32px);
}

.masonry-skill-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid #E8DED1;
    border-radius: 26px;
    padding: 2.4rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.45s var(--ease-out-expo);
    box-shadow: 0 12px 30px rgba(26, 26, 26, 0.03);
}

.masonry-skill-card:hover {
    transform: translateY(-8px);
    border-color: #C79A5D;
    box-shadow: 0 20px 45px rgba(199, 154, 93, 0.15);
}

.masonry-offset-top:hover {
    transform: translateY(24px);
}

.skill-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.8rem;
}

.skill-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #F8F4ED;
    border: 1px solid #E8DED1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C79A5D;
    transition: all 0.4s ease;
}

.float-anim {
    animation: iconFloating 4s ease-in-out infinite alternate;
}

@keyframes iconFloating {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-6px);
    }
}

.masonry-skill-card:hover .skill-card-icon {
    background: #1A1A1A;
    color: #C79A5D;
    border-color: #1A1A1A;
}

.skill-percentage-num {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    color: #1A1A1A;
}

.skill-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
}

.skill-card-tools {
    font-family: var(--font-button);
    font-size: 0.74rem;
    color: #7A7268;
    letter-spacing: 0.05em;
    margin-bottom: 1.8rem;
    line-height: 1.5;
}

.skill-progress-track {
    width: 100%;
    height: 6px;
    background: #EAE2D6;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.skill-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #1A1A1A 0%, #C79A5D 100%);
    border-radius: 3px;
    transition: width 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.card-soft-glow {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199, 154, 93, 0.18) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.masonry-skill-card:hover .card-soft-glow {
    opacity: 1;
}

/* Micro interaction ripple circle */
.ripple-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(199, 154, 93, 0.35);
    transform: scale(0);
    animation: rippleAnim 0.6s linear;
    pointer-events: none;
}

@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ============================================================
   Story & Reels Pinned Horizontal Section
   ============================================================ */
.story-section {
    background-color: var(--ink);
    color: var(--cream);
    overflow: hidden;
}

.story-section .section-title {
    color: var(--cream);
}

.story-section .section-desc {
    color: rgba(245, 240, 232, 0.6);
}

.story-pin-wrapper {
    width: 100%;
    overflow: hidden;
}

.story-horizontal-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    padding: 2rem 0;
    will-change: transform;
}

.reel-showcase-card {
    width: 400px;
    height: 580px;
    background-color: #26221e;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(200, 169, 126, 0.2);
    transition: transform 0.5s var(--ease-out-expo), border-color 0.5s;
}

.reel-showcase-card:hover {
    transform: scale(0.98);
    border-color: var(--warm);
}

.reel-media-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.reel-media-wrap img,
.reel-media-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.reel-showcase-card:hover .reel-media-wrap img {
    transform: scale(1.06);
}

.reel-play-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(26, 23, 20, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--warm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    transition: transform 0.3s var(--ease-out-expo), background-color 0.3s;
}

.reel-showcase-card:hover .reel-play-indicator {
    transform: translate(-50%, -50%) scale(1.15);
    background-color: var(--warm);
    color: var(--ink);
}

.reel-info-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem;
    background: linear-gradient(to top, rgba(26, 23, 20, 0.95) 0%, rgba(26, 23, 20, 0.5) 70%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.reel-badge {
    font-family: var(--font-button);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--warm);
    text-transform: uppercase;
}

.reel-caption-text {
    font-size: 0.95rem;
    color: var(--cream);
    line-height: 1.5;
}

/* ============================================================
   Posts Section (Editorial Swiper Grid)
   ============================================================ */
.posts-section {
    background-color: var(--cream);
}

.posts-swiper {
    padding: 1rem 0 3rem 0;
}

.post-editorial-card {
    background-color: var(--card);
    border-radius: 16px;
    border: 1px solid rgba(26, 23, 20, 0.08);
    overflow: hidden;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}

.post-editorial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 23, 20, 0.08);
}

.post-thumb-wrap {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.post-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.post-editorial-card:hover .post-thumb-wrap img {
    transform: scale(1.06);
}

.post-hover-layer {
    position: absolute;
    inset: 0;
    background-color: rgba(26, 23, 20, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.post-editorial-card:hover .post-hover-layer {
    opacity: 1;
}

.post-hover-content {
    text-align: center;
    color: var(--cream);
}

.post-hover-cat {
    font-family: var(--font-button);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--warm);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.post-meta-row {
    display: flex;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    border-top: 1px solid rgba(26, 23, 20, 0.06);
    font-family: var(--font-button);
    font-size: 0.72rem;
    color: var(--dust);
}

.post-likes-badge {
    color: var(--ink);
    font-weight: 600;
}

/* ============================================================
   Masonry Gallery Section
   ============================================================ */
.gallery-section {
    background-color: var(--surface);
    position: relative;
    overflow: hidden;
}

.gallery-floating-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.decor-icon {
    position: absolute;
    color: var(--warm);
    opacity: 0.4;
    transform-origin: center center;
    display: block;
}

@keyframes float-cinematic {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -25px) rotate(120deg); }
    66% { transform: translate(-15px, 20px) rotate(240deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes float-cinematic-alt {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-20px, 25px) rotate(-120deg); }
    66% { transform: translate(15px, -20px) rotate(-240deg); }
    100% { transform: translate(0, 0) rotate(-360deg); }
}

.decor-1 { top: 10%; left: 8%; width: 54px; height: 54px; animation: float-cinematic 25s linear infinite; }
.decor-2 { top: 25%; right: 12%; width: 44px; height: 44px; animation: float-cinematic-alt 80s linear infinite; }
.decor-3 { top: 40%; left: 15%; width: 64px; height: 64px; animation: float-cinematic 30s linear infinite; }
.decor-4 { bottom: 30%; right: 5%; width: 48px; height: 48px; animation: float-cinematic-alt 70s linear infinite; }
.decor-5 { bottom: 15%; left: 10%; width: 72px; height: 72px; animation: float-cinematic 90s linear infinite; opacity: 0.08; }
.decor-6 { top: 15%; right: 25%; width: 50px; height: 50px; animation: float-cinematic-alt 22s linear infinite; }
.decor-7 { top: 50%; left: 2%; width: 38px; height: 38px; animation: float-cinematic 75s linear infinite; }
.decor-8 { bottom: 45%; right: 15%; width: 56px; height: 56px; animation: float-cinematic-alt 28s linear infinite; }
.decor-9 { top: 5%; left: 45%; width: 40px; height: 40px; animation: float-cinematic 65s linear infinite; }
.decor-10 { bottom: 10%; right: 35%; width: 60px; height: 60px; animation: float-cinematic-alt 20s linear infinite; }
.decor-11 { top: 60%; right: 40%; width: 42px; height: 42px; animation: float-cinematic 85s linear infinite; }

.gallery-section .section-header,
.gallery-section .gallery-filter-bar,
.gallery-section .gallery-masonry {
    position: relative;
    z-index: 2;
}

.gallery-filter-bar {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.filter-btn {
    font-family: var(--font-button);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    background-color: var(--card);
    border: 1px solid rgba(26, 23, 20, 0.15);
    color: var(--dust);
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
    transform: translateY(-2px);
}

.gallery-masonry {
    columns: 4;
    column-gap: 1.5rem;
}

.gallery-masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: none;
    background-color: var(--card);
}

.gallery-masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.8s var(--ease-out-expo);
}

.gallery-masonry-item:hover img {
    transform: scale(1.08);
}

.gallery-hover-metadata {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 23, 20, 0.92) 0%, rgba(26, 23, 20, 0.4) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 1.8rem;
}

.gallery-masonry-item:hover .gallery-hover-metadata {
    opacity: 1;
}

.meta-loc {
    font-family: var(--font-button);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--warm);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.meta-cam {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--cream);
    margin-bottom: 0.2rem;
}

.meta-lens {
    font-size: 0.82rem;
    color: var(--dust);
}

/* ============================================================
   About Section
   ============================================================ */
.about-section {
    background-color: var(--cream);
}

.about-editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
    align-items: center;
}

.about-img-frame {
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(26, 23, 20, 0.12);
}

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

.about-img-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background-color: var(--ink);
    color: var(--cream);
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    font-family: var(--font-button);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
}

.about-bio-wrap {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    line-height: 1.1;
    color: var(--ink);
}

.about-body p {
    font-size: 1rem;
    color: var(--dust);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.stats-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(26, 23, 20, 0.1);
    border-bottom: 1px solid rgba(26, 23, 20, 0.1);
}

.stat-num-wrap {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1;
}

.stat-suffix {
    color: var(--warm);
}

.stat-label {
    display: block;
    font-family: var(--font-button);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: var(--dust);
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.experience-timeline {
    margin-top: 1rem;
}

.timeline-title {
    font-family: var(--font-subheading);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--ink);
    margin-bottom: 2rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 35px;
    bottom: 0;
    width: 1px;
    background-color: rgba(200, 169, 126, 0.3);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-year {
    font-family: var(--font-button);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--warm);
}

.timeline-desc h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--ink);
    margin-bottom: 0.4rem;
}

.timeline-desc p {
    font-size: 0.88rem;
    color: var(--dust);
}

/* ============================================================
   Camera Gear Section
   ============================================================ */
.gear-section {
    background-color: var(--surface);
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gear-card {
    background-color: var(--card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(26, 23, 20, 0.08);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: transform 0.4s var(--ease-out-expo), border-color 0.4s;
}

.gear-card:hover {
    transform: translateY(-6px);
    border-color: var(--warm);
}

.gear-icon {
    color: var(--warm);
}

.gear-cat {
    font-family: var(--font-button);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    color: var(--warm);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.gear-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.gear-spec {
    font-size: 0.88rem;
    color: var(--dust);
}

/* ============================================================
   Clients Marquee Section
   ============================================================ */
.clients-section {
    background-color: var(--ink);
    padding: 5rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(200, 169, 126, 0.2);
    border-bottom: 1px solid rgba(200, 169, 126, 0.2);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    animation: marqueeScroll 24s linear infinite;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--surface);
    opacity: 0.4;
    transition: opacity 0.3s, color 0.3s;
}

.marquee-item:hover {
    opacity: 1;
    color: var(--warm);
}

.marquee-sep {
    font-size: 2rem;
    color: var(--warm);
}

/* ============================================================
   Testimonials Glass Cards Section
   ============================================================ */
.testimonials-section {
    background-color: var(--cream);
}

.testimonials-swiper {
    padding: 2rem 0 4rem 0;
}

.glass-card {
    background: rgba(237, 232, 223, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 169, 126, 0.3);
    border-radius: 24px;
    padding: 3.5rem;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    box-shadow: 0 30px 60px rgba(26, 23, 20, 0.05);
}

.test-quote {
    font-family: var(--font-subheading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--ink);
    line-height: 1.5;
}

.author-name {
    font-family: var(--font-button);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--ink);
    text-transform: uppercase;
    display: block;
}

.author-role {
    font-size: 0.8rem;
    color: var(--warm);
}

.author-role a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

.author-role a:hover {
    opacity: 0.7;
}

/* ============================================================
   Contact Section
   ============================================================ */
.contact-section {
    background-color: var(--ink);
    color: var(--cream);
}

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

.contact-huge-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5.5vw, 5rem);
    line-height: 1.05;
    color: var(--cream);
    margin: 1.5rem 0 2rem 0;
}

.contact-sub {
    font-size: 1rem;
    color: var(--dust);
    margin-bottom: 3.5rem;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.direct-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-left: 2px solid rgba(200, 169, 126, 0.3);
    padding-left: 1.2rem;
    transition: border-color 0.3s;
}

.direct-link:hover {
    border-color: var(--warm);
}

.direct-label {
    font-family: var(--font-button);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    color: var(--warm);
    text-transform: uppercase;
}

.direct-val {
    font-size: 1.1rem;
    color: var(--cream);
}

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

.social-icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(245, 240, 232, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
}

.social-icon-btn:hover {
    background-color: var(--warm);
    color: var(--ink);
    border-color: var(--warm);
    transform: translateY(-3px);
}

/* Floating Form Labels */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 3rem;
    background-color: #221e1a;
    border-radius: 24px;
    border: 1px solid rgba(200, 169, 126, 0.2);
}

.floating-group {
    position: relative;
}

.form-input,
.form-textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(245, 240, 232, 0.25);
    padding: 1rem 0 0.6rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--cream);
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    border-bottom-color: var(--warm);
}

.form-floating-label {
    position: absolute;
    top: 1rem;
    left: 0;
    font-family: var(--font-button);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    color: var(--dust);
    text-transform: uppercase;
    pointer-events: none;
    transition: 0.3s var(--ease-out-expo);
}

.form-input:focus~.form-floating-label,
.form-input:not(:placeholder-shown)~.form-floating-label,
.form-textarea:focus~.form-floating-label,
.form-textarea:not(:placeholder-shown)~.form-floating-label {
    top: -0.8rem;
    font-size: 0.65rem;
    color: var(--warm);
}

.btn-send {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: var(--warm);
    color: var(--ink);
    border: none;
    padding: 1.2rem 2.8rem;
    border-radius: 999px;
    font-family: var(--font-button);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    align-self: flex-start;
    transition: all 0.3s var(--ease-out-expo);
}

.btn-send:hover {
    background-color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(200, 169, 126, 0.2);
}

.send-svg {
    transition: transform 0.3s;
}

.btn-send:hover .send-svg {
    transform: translate(4px, -4px);
}

/* ============================================================
   Footer Huge Typography
   ============================================================ */
.footer {
    background-color: var(--ink);
    padding: 6rem 5rem 3rem 5rem;
    position: relative;
    overflow: hidden;
}

.footer-huge-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-heading);
    font-size: clamp(4rem, 11vw, 13rem);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: -0.04em;
    color: var(--cream);
    margin-bottom: 8rem;
    text-align: center;
}

.accent-line {
    font-family: var(--font-subheading);
    font-style: italic;
    color: var(--warm);
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(245, 240, 232, 0.15);
    font-family: var(--font-button);
    font-size: 0.72rem;
    color: var(--dust);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--warm);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================================
   Lightbox Modal
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 50000;
    background-color: rgba(26, 23, 20, 0.96);
    backdrop-filter: blur(24px);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 2.5rem;
    right: 3rem;
    background: none;
    border: none;
    color: var(--cream);
    cursor: pointer;
    z-index: 2;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--warm);
    cursor: pointer;
    z-index: 2;
}

.slider-prev {
    left: 3rem;
}

.slider-next {
    right: 3rem;
}

.lightbox-content {
    max-width: 85vw;
    max-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-video-wrap {
    width: 380px;
    max-height: 80vh;
    border-radius: 16px;
    overflow: hidden;
}

.lightbox-caption-bar {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.lightbox-caption {
    font-family: var(--font-button);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    color: var(--cream);
}

/* ============================================================
   Awwwards Live Instagram API Card Styles
   ============================================================ */
.reel-card {
    position: relative;
    /* border-radius: 18px; */
    overflow: hidden;
    aspect-ratio: 9/16;
    background: #0d0c0a;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.reel-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.reel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.reel-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: all 0.4s ease;
}

.reel-play::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 14px solid #fff;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    margin-left: 4px;
}

.reel-card:hover .reel-play {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.15);
}

.reel-card:hover .reel-play::after {
    border-left-color: #000;
}

.reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    pointer-events: none;
}

.reel-type {
    font-family: var(--font-button);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c8a97e;
    margin-bottom: 0.4rem;
}

.reel-caption {
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.post-card {
    background: var(--card);
    /* border-radius: 20px; */
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.5s var(--ease-out-expo);
}

.post-card:hover {
    transform: translateY(-6px);
}

.post-img-wrap {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #12100e;
    cursor: pointer;
}

.post-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.post-card:hover .post-img-wrap img {
    transform: scale(1.06);
}

.album-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-family: var(--font-button);
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.album-icon-overlay {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    color: #fff;
    font-size: 1.1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.post-body {
    padding: 1.55rem;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-button);
    font-size: 0.75rem;
    color: var(--dust);
    margin-bottom: 0.8rem;
}

.post-likes {
    color: #e05a47;
    font-weight: 600;
}

.post-caption {
    font-size: 0.92rem;
    color: #000;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.thumb-strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.thumb-strip::-webkit-scrollbar {
    display: none;
}

.thumb-item {
    width: 44px;
    height: auto;
    /* border-radius: 8px; */
    overflow: hidden;
    flex-shrink: 0;
    opacity: 0.45;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumb-item.active,
.thumb-item:hover {
    opacity: 1;
    border-color: #c8a97e;
    transform: scale(1.08);
}

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

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    background: var(--card);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.8s var(--ease-out-expo), filter 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.85);
}

.gallery-pos-dot {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 8px;
    height: 8px;
    background: #c8a97e;
    border-radius: 50%;
    box-shadow: 0 0 10px #c8a97e;
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
}

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

.gallery-view-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transform: scale(0.8);
    transition: transform 0.4s var(--ease-out-expo);
}

.gallery-item:hover .gallery-view-icon {
    transform: scale(1);
}

/* ============================================================
   Responsive Design Architecture (Pixel-Perfect)
   ============================================================ */
@media (max-width: 1200px) {
    .section {
        padding: 6rem 3rem;
    }
    
    .section-title {
        font-size: 2.4  rem;
    }

    .navbar {
        padding: 1.2rem 2.5rem;
    }

    .navbar.nav-scrolled {
        padding: 0.8rem 2.5rem;
    }

    .skills-masonry-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .masonry-intro-card {
        position: relative;
        top: 0;
        padding: 3.5rem 3rem;
    }

    .gallery-masonry {
        columns: 3;
    }

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

@media (max-width: 768px) {
    .hero-cta {
        display: none;
    }
    .hero {
        grid-template-columns: 1fr;
        padding-top: 6rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

    .hero-right {
        min-height: 450px;
    }

    .decor-icon {
        scale: 0.75;
    }

    .nav-links {
        display: none;
    }

    /* Mobile Menu fallback can be simplified or hidden cleanly */
    .section {
        padding: 5rem 1.5rem;
    }

    .premium-skills-section {
        padding: 6rem 1.5rem;
    }

    .skills-editorial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 3.5rem;
        padding-bottom: 2.5rem;
    }

    .slider-header-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

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

    .masonry-offset-top {
        transform: translateY(0px);
    }

    .gallery-masonry {
        columns: 2 !important;
        column-gap: 1rem;
    }

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

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .stats-counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .glass-card {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .test-quote {
        font-size: 1.4rem;
    }

    .footer {
        padding: 4rem 1.5rem 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-insta {
        display: none;
    }
    .gallery-masonry {
        columns: 1;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .decor-icon {
        scale: 0.6;
    }
    
    .decor-3, .decor-5, .decor-8, .decor-10 {
        display: none;
    }

    .btn-primary {
        justify-content: center;
    }

    .btn-ghost {
        justify-content: center;
    }

    .stats-counter-grid {
        grid-template-columns: 1fr;
    }

    .test-quote {
        font-size: 1.2rem;
    }
}