/* ============================================================
   ANDRA STUDIOS — Cinematic Portfolio
   Design System & Styles
   Premium Black & White Edition
   ============================================================ */

/* ============================================================
   CLAPPERBOARD INTRO ANIMATION
   ============================================================ */

/* Lock body during intro */
body.intro-active {
    overflow: hidden;
}

html.skip-intro body.intro-active {
    overflow: auto !important;
}

html.skip-intro .intro-overlay {
    display: none !important;
}

/* Full-screen overlay */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease;
}

.intro-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Spotlight behind the clapper */
.intro-spotlight {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 1s ease;
}

.intro-overlay.spotlight-on .intro-spotlight {
    opacity: 1;
}

/* "Lights / Camera / Action" words — centered in overlay */
.intro-words {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 100%;
    text-align: center;
}

.intro-word {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #f0f0f0;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.7s ease, transform 0.7s ease;
    display: block;
    position: absolute;
    width: 100%;
    text-align: center;
    top: -0.5em;
}

.intro-word.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.intro-word.hide {
    opacity: 0;
    transform: translateY(-20px) scale(1.05);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#wordAction.show {
    color: #C9A84C;
    text-shadow: 0 0 50px rgba(201, 168, 76, 0.5), 0 0 100px rgba(201, 168, 76, 0.2);
}

/* ── Clapperboard ── */
.clapperboard {
    position: relative;
    width: 280px;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.5s ease, transform 0.5s ease;
    margin-top: 40px;
}

.clapperboard.show {
    opacity: 1;
    transform: scale(1);
}

/* Top clapper stick — hinged at left-bottom, starts raised UP above board */
.clap-top {
    position: relative;
    width: 100%;
    height: 32px;
    transform-origin: left bottom;
    transform: rotate(-40deg);
    z-index: 2;
}

/* Clap animation: stick swings DOWN from above to meet the board */
.clap-top.clap {
    animation: slamDown 0.4s cubic-bezier(0.33, 0, 0.2, 1) forwards;
}

@keyframes slamDown {
    0%   { transform: rotate(-40deg); }
    60%  { transform: rotate(3deg); }
    75%  { transform: rotate(-2deg); }
    88%  { transform: rotate(1deg); }
    100% { transform: rotate(0deg); }
}

/* Diagonal stripes on the sticks */
.clap-stripes {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        #f0f0f0 0px,
        #f0f0f0 16px,
        #1a1a1a 16px,
        #1a1a1a 32px
    );
    border: 2px solid #333;
}

.clap-stripes-bottom {
    background: repeating-linear-gradient(
        45deg,
        #f0f0f0 0px,
        #f0f0f0 16px,
        #1a1a1a 16px,
        #1a1a1a 32px
    );
}

/* Bottom board */
.clap-bottom {
    position: relative;
    z-index: 1;
}

.clap-bottom .clap-stripes-bottom {
    height: 32px;
}

.clap-body {
    background: #0a0a0a;
    border: 2px solid #333;
    border-top: none;
    padding: 1.2rem 1.5rem;
}

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

.clap-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.clap-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #666;
    min-width: 40px;
}

.clap-value {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    color: #f0f0f0;
    letter-spacing: 0.08em;
}

/* Cinematic flash on clap — warm double pulse with radial spotlight */
.intro-flash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0.7) 100%);
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    animation: flashBang 0.7s ease-out forwards;
}

@keyframes flashBang {
    0%   { opacity: 0; }
    8%   { opacity: 1; }
    25%  { opacity: 0.4; }
    40%  { opacity: 0.7; }
    100% { opacity: 0; }
}

/* ============================================================
   END CLAPPERBOARD INTRO
   ============================================================ */


/* --- CSS Custom Properties --- */
:root {
    --black: #000000;
    --charcoal: #0a0a0a;
    --charcoal-light: #111111;
    --charcoal-mid: #151515;
    --grey-dark: #1e1e1e;
    --grey: #777777;
    --grey-light: #aaaaaa;
    --white: #f5f5f5;
    --white-dim: #cccccc;
    --gold: #C9A84C;
    --gold-light: #D4B86A;
    --gold-dim: rgba(201, 168, 76, 0.35);
    --gold-glow: rgba(201, 168, 76, 0.12);

    --accent-1: #C9A84C;
    --accent-2: #D4B86A;
    --accent-3: #A8893E;

    --coral: #C9A84C;
    --violet: #C9A84C;
    --teal: #D4B86A;
    --amber: #E8D08C;
    --rose: #C9A84C;
    --sky: #D4B86A;

    --bg-primary: #000000;
    --bg-section-alt: #050505;
    --bg-card: rgba(12, 12, 12, 0.85);
    --text-primary: #f5f5f5;
    --text-secondary: #b0b0b0;
    --text-muted: #777777;

    --font-display: 'Cinzel', serif;
    --font-body: 'Raleway', sans-serif;

    --transition-smooth: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.7);
    --shadow-hover: 0 20px 50px rgba(201, 168, 76, 0.08), 0 0 40px rgba(201, 168, 76, 0.04);
}

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

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

body {
    background-color: #000000;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--gold);
    color: #000000;
}

a {
    color: #ffffff;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--gold);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* --- Film Grain Overlay --- */
.film-grain {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    animation: grainShift 0.4s steps(2) infinite;
}

@keyframes grainShift {
    0%   { transform: translate(0, 0); }
    50%  { transform: translate(-5%, -5%); }
    100% { transform: translate(5%, 2%); }
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    background: transparent;
    transition: background var(--transition-fast), padding var(--transition-fast), box-shadow var(--transition-fast);
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(16px);
    padding: 1rem 3rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    font-weight: 600;
}

.nav.scrolled .nav-logo {
    color: var(--gold);
}

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

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition-fast);
    position: relative;
}

.nav.scrolled .nav-links a {
    color: rgba(255,255,255,0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition-fast);
    border-radius: 2px;
}

.nav-links a:hover {
    color: #fff;
}

.nav.scrolled .nav-links a:hover {
    color: #fff;
}

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

.nav-cta {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 4px;
    margin-left: 2rem;
    transition: all var(--transition-fast);
    background: transparent;
}

.nav.scrolled .nav-cta {
    border-color: rgba(201, 168, 76, 0.3);
    background: transparent;
}

.nav-cta:hover {
    background: var(--gold);
    color: #000000;
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.25);
    transform: translateY(-2px);
}

.nav.scrolled .nav-cta:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.25);
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: #fff;
    transition: var(--transition-fast);
}

.nav.scrolled .nav-toggle span {
    background: #fff;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #000000;
}

/* Hero Background Slider — now CSS-only abstract patterns for instant load */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 10s linear;
    transform: scale(1);
}

.hero-slider .slide.active {
    opacity: 1;
    transform: scale(1.08);
}

/* Abstract geometric patterns instead of heavy external images */
.hero-slider .slide:nth-child(1) {
    background:
        radial-gradient(circle at 20% 30%, rgba(201,168,76,0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201,168,76,0.02) 0%, transparent 50%),
        linear-gradient(135deg, #000 0%, #0a0a0a 50%, #000 100%);
}

.hero-slider .slide:nth-child(2) {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.05) 0%, transparent 60%),
        linear-gradient(180deg, #050505 0%, #000 50%, #050505 100%);
}

.hero-slider .slide:nth-child(3) {
    background:
        radial-gradient(circle at 70% 20%, rgba(201,168,76,0.04) 0%, transparent 40%),
        radial-gradient(circle at 30% 80%, rgba(201,168,76,0.02) 0%, transparent 40%),
        #000;
}

.hero-slider .slide:nth-child(4) {
    background:
        conic-gradient(from 180deg at 50% 50%, rgba(201,168,76,0.03) 0deg, transparent 90deg, rgba(201,168,76,0.015) 180deg, transparent 270deg),
        #000;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #000000);
    z-index: 1;
    pointer-events: none;
}

.hero-spotlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, rgba(201, 168, 76, 0.02) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.4), transparent);
    margin: 0 auto 2rem;
}

.hero-line-2 {
    margin: 2rem auto 0;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 0 80px rgba(201, 168, 76, 0.15);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1.8vw, 1.1rem);
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(201,168,76,0.7);
    margin-bottom: 1.5rem;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: rgba(201,168,76,0.8);
    font-style: italic;
}

.hero-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Hero Animation */
.animate-hero {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.animate-hero.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    opacity: 0;
    animation: floatUp linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-duration: 8s; animation-delay: 0s; background: rgba(201,168,76,0.7); }
.particle:nth-child(2) { left: 25%; animation-duration: 12s; animation-delay: 2s; background: rgba(255,255,255,0.4); }
.particle:nth-child(3) { left: 45%; animation-duration: 10s; animation-delay: 4s; background: rgba(201,168,76,0.5); }
.particle:nth-child(4) { left: 65%; animation-duration: 9s; animation-delay: 1s; background: rgba(255,255,255,0.3); }
.particle:nth-child(5) { left: 80%; animation-duration: 11s; animation-delay: 3s; background: rgba(201,168,76,0.5); }
.particle:nth-child(6) { left: 92%; animation-duration: 7s; animation-delay: 5s; background: rgba(255,255,255,0.4); }

@keyframes floatUp {
    0%   { transform: translateY(100vh) scale(0); opacity: 0; }
    10%  { opacity: 0.5; }
    50%  { opacity: 0.3; }
    90%  { opacity: 0.1; }
    100% { transform: translateY(-20vh) scale(1.5); opacity: 0; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(201,168,76,0.4);
}

.scroll-arrow {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(201,168,76,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50%      { opacity: 1; transform: scaleY(1.3); }
}

/* --- Section Common --- */
.section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.section-spotlight {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.section-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal for grid children */
.skill-card.reveal:nth-child(1) { transition-delay: 0s; }
.skill-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.skill-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.skill-card.reveal:nth-child(4) { transition-delay: 0.3s; }
.skill-card.reveal:nth-child(5) { transition-delay: 0.4s; }
.skill-card.reveal:nth-child(6) { transition-delay: 0.5s; }

.section-title::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1rem auto 0;
    transition: width 1.2s ease;
    border-radius: 2px;
}

.section-title.visible::after {
    width: 120px;
}

/* --- Business CTA Section --- */
.business-cta {
    background: #000000;
    padding: 10rem 0;
    text-align: center;
    position: relative;
}

.business-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.business-cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #fff;
}

.business-cta-text {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.business-cta-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1.2rem 2.8rem;
    background: var(--gold);
    color: #000;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid var(--gold);
    transition: all var(--transition-fast);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.15);
    text-decoration: none;
}

.business-cta-btn:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(201, 168, 76, 0.2);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(201, 168, 76, 0.25);
    box-shadow: none;
}

.btn-outline:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: none;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* --- About Section --- */
.about {
    background: #000000;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.85;
}

.about-origin {
    border-left: 2px solid rgba(201,168,76,0.3);
    padding-left: 1.5rem;
    color: var(--grey-light) !important;
    font-size: 0.95rem !important;
}

.about-visual {
    flex: 0 0 200px;
}

.film-reel {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reel-frame {
    width: 200px;
    height: 120px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(135deg, #0a0a0a, #111111);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.reel-frame::before,
.reel-frame::after {
    content: '';
    position: absolute;
    top: 0;
    width: 14px;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255,255,255,0.06) 0px,
        rgba(255,255,255,0.06) 8px,
        transparent 8px,
        transparent 16px
    );
}

.reel-frame::before { left: 0; }
.reel-frame::after  { right: 0; }

/* --- Skills Section --- */
.skills {
    background: #000000;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

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

.skill-card {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color var(--transition-fast), box-shadow 0.4s ease;
}

.skill-card::before {
    content: attr(data-role);
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(201,168,76,0.4);
    opacity: 0.6;
    white-space: nowrap;
}

.skill-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* Per-card accent colors — gold hover tones */
.skill-card:nth-child(1):hover { border-color: rgba(201,168,76,0.35); box-shadow: 0 20px 50px rgba(201, 168, 76, 0.08); }
.skill-card:nth-child(2):hover { border-color: rgba(201,168,76,0.35); box-shadow: 0 20px 50px rgba(201, 168, 76, 0.08); }
.skill-card:nth-child(3):hover { border-color: rgba(201,168,76,0.35); box-shadow: 0 20px 50px rgba(201, 168, 76, 0.08); }
.skill-card:nth-child(4):hover { border-color: rgba(201,168,76,0.35); box-shadow: 0 20px 50px rgba(201, 168, 76, 0.08); }
.skill-card:nth-child(5):hover { border-color: rgba(201,168,76,0.35); box-shadow: 0 20px 50px rgba(201, 168, 76, 0.08); }
.skill-card:nth-child(6):hover { border-color: rgba(201,168,76,0.35); box-shadow: 0 20px 50px rgba(201, 168, 76, 0.08); }

.skill-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    border-radius: 0 0 16px 16px;
}

.skill-card:hover::after {
    transform: scaleX(1);
}

.skill-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.4s ease;
}

.skill-card:nth-child(1) .skill-icon { color: var(--gold); }
.skill-card:nth-child(2) .skill-icon { color: #D4B86A; }
.skill-card:nth-child(3) .skill-icon { color: var(--gold); }
.skill-card:nth-child(4) .skill-icon { color: #D4B86A; }
.skill-card:nth-child(5) .skill-icon { color: var(--gold); }
.skill-card:nth-child(6) .skill-icon { color: #D4B86A; }

.skill-card:hover .skill-icon {
    transform: scale(1.2) rotate(5deg);
}

.skill-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.skill-stack {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.skill-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    opacity: 0.85;
    transition: opacity 0.4s ease, transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.skill-card:hover .skill-image {
    opacity: 1;
    transform: scale(1.03);
    border-color: rgba(201, 168, 76, 0.2);
}

.book-now-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

.book-now-btn:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 168, 76, 0.1);
}

/* --- Projects Section --- */
.projects {
    background: #000000;
}

.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* --- Project Showcase Cards (Vertical: Title → Image → Description) --- */
.project-showcase {
    position: relative;
    padding: 0;
    margin-bottom: 2rem;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-showcase:last-child {
    margin-bottom: 0;
}

.showcase-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--gold);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.showcase-image {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(201, 168, 76, 0.1);
    margin-bottom: 1.5rem;
    background: #080808;
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
    filter: brightness(0.9);
}

.project-showcase:hover .showcase-image img {
    transform: scale(1.03);
    filter: brightness(1);
}

.project-showcase:hover .showcase-image {
    border-color: rgba(201, 168, 76, 0.25);
    box-shadow: 0 20px 60px rgba(201, 168, 76, 0.08), 0 0 40px rgba(201, 168, 76, 0.04);
}

/* Subtle gold gradient shimmer on hover */
.showcase-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        transparent 40%,
        rgba(201, 168, 76, 0.06) 50%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.project-showcase:hover .showcase-image::after {
    opacity: 1;
}

/* For Aegiswell poster (smaller, centered) */
.showcase-image-poster {
    max-width: 300px;
}

.showcase-image-poster img {
    object-fit: cover;
    border-radius: 12px;
}

.showcase-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 800px;
    margin-bottom: 0.5rem;
}

.showcase-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

button.project-link {
    font-family: var(--font-body);
    cursor: pointer;
}

.project-link::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0%; height: 100%;
    background: var(--gold);
    transition: width 0.4s ease;
    z-index: -1;
}

.project-link:hover::before {
    width: 100%;
}

.project-link:hover {
    color: #000;
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.2);
}

.project-link svg {
    transition: transform var(--transition-fast);
}

.project-link:hover svg {
    transform: translate(3px, -3px);
    stroke: #000;
}

/* --- Section Divider --- */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
}

.section-divider span {
    display: block;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.25), transparent);
    position: relative;
    border-radius: 2px;
}

.section-divider span::before {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.5rem;
    color: var(--gold);
    background: #000000;
    padding: 0 0.5rem;
}

/* --- Aegiswell Poster Gallery --- */
.project-card-aegiswell {
    padding-bottom: 2rem;
}

.poster-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding-left: 3rem;
}

.poster-thumb {
    aspect-ratio: 3 / 4;
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color var(--transition-fast), box-shadow 0.4s ease;
    cursor: pointer;
    border-radius: 12px;
}

.poster-thumb:hover {
    transform: scale(1.05) translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.poster-thumb:nth-child(1):hover { border-color: rgba(201,168,76,0.25); }
.poster-thumb:nth-child(2):hover { border-color: rgba(201,168,76,0.25); }
.poster-thumb:nth-child(3):hover { border-color: rgba(201,168,76,0.25); }

.poster-art {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.2rem 0.8rem;
    position: relative;
    overflow: hidden;
}

/* Poster 1 */
.poster-thumb-1 .poster-art {
    background: linear-gradient(160deg, #080808 0%, #0f0f0f 40%, #080808 100%);
}

.art-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(
            45deg,
            transparent 0px,
            transparent 20px,
            rgba(255, 255, 255, 0.03) 20px,
            rgba(255, 255, 255, 0.03) 21px
        );
}

.art-lines::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(-50%) rotate(45deg);
}

/* Poster 2 */
.poster-thumb-2 .poster-art {
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(255,255,255,0.03) 0%, transparent 40%),
                #060606;
}

.art-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.art-circles::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.art-circles::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Poster 3 */
.poster-thumb-3 .poster-art {
    background: linear-gradient(180deg, #060606 0%, #0c0c0c 100%);
}

.art-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

.art-grid::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Poster text labels */
.art-title {
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    position: relative;
    z-index: 2;
}

.art-sub {
    font-family: var(--font-body);
    font-size: 0.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
    margin-top: 0.2rem;
}

/* --- Testimonials Section --- */
.testimonials {
    background: #000000;
}

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

.testimonial-card {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.5rem 2rem 2rem;
    position: relative;
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color var(--transition-fast), box-shadow 0.4s ease;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity var(--transition-fast);
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card:nth-child(1):hover { border-color: rgba(201,168,76,0.25); }
.testimonial-card:nth-child(2):hover { border-color: rgba(201,168,76,0.25); }
.testimonial-card:nth-child(3):hover { border-color: rgba(201,168,76,0.25); }

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1;
    opacity: 0.2;
    margin-bottom: -0.5rem;
    color: rgba(201,168,76,0.5);
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: #000;
    font-weight: 600;
    background: var(--gold);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

.testimonial-role {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.testimonial-stars {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.15em;
}

/* --- Upcoming / Reelvandi Section --- */
.upcoming {
    background: #000000;
    padding: 8rem 0 10rem;
}

.poster-card {
    max-width: 500px;
    margin: 0 auto;
}

.poster-border {
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3px;
    background: rgba(10,10,10,0.8);
    border-radius: 20px;
}

.poster-inner {
    background: #050505;
    border: none;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    border-radius: 17px;
}

.poster-tag {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #000;
    background: var(--gold);
    border: none;
    padding: 0.5rem 1.4rem;
    margin-bottom: 2rem;
    border-radius: 20px;
    font-weight: 600;
}

.poster-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.poster-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.poster-synopsis {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.8;
    max-width: 360px;
    margin: 0 auto 2rem;
}

.poster-stars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 0.9rem;
}

/* --- Contact Section --- */
.contact {
    background: #000000;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.contact .section-label {
    color: var(--gold);
}

.contact .section-title {
    color: #fff;
}

.contact .section-title::after {
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-content {
    max-width: 500px;
    margin: 0 auto;
}

.contact-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-email {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 1rem 2.5rem;
    transition: all 0.4s ease;
    margin-bottom: 3rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-email::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0%; height: 100%;
    background: var(--gold);
    transition: width 0.4s ease;
    z-index: -1;
}

.contact-email:hover::before {
    width: 100%;
}

.contact-email:hover {
    border-color: transparent;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.1);
}

/* --- Contact Form --- */
.contact-form {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    text-align: left;
}

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

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 4px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(201, 168, 76, 0.4);
    background: rgba(15, 15, 15, 1);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.08);
}

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

.form-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: var(--gold);
    border: none;
    border-radius: 4px;
    color: #000;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 168, 76, 0.25);
}

.form-submit:active {
    transform: translateY(0);
}

.form-submit .btn-icon {
    transition: transform 0.3s ease;
}

.form-submit:hover .btn-icon {
    transform: translate(3px, -3px);
}

/* Toast notification */
.form-toast {
    position: fixed;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    z-index: 9999;
    transition: bottom 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.form-toast.show {
    bottom: 2rem;
}

.form-toast.success {
    border-color: rgba(201, 168, 76, 0.4);
}

.form-toast.success .toast-icon {
    color: var(--gold);
}

.form-toast.error {
    border-color: rgba(255, 100, 100, 0.5);
}

.form-toast.error .toast-icon {
    color: #ff6464;
}

.toast-icon {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Divider between form and email */
.contact-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.25), transparent);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: rgba(255,255,255,0.4);
    transition: all 0.4s ease;
}

.social-link:hover {
    color: #000;
    transform: translateY(-4px) scale(1.05);
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.2);
}

/* --- Footer --- */
.footer {
    background: #000000;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding: 3rem 0;
    text-align: center;
}

.footer-text {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.15);
    font-style: italic;
}

/* --- Aegiswell Lightbox Gallery --- */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9998;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

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

.lightbox-container {
    width: 100%;
    max-width: 1000px;
    padding: 3rem 2rem 4rem;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox-overlay.active .lightbox-container {
    transform: translateY(0);
}

.lightbox-close {
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.8);
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(8px);
}

.lightbox-close:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 25px rgba(201, 168, 76, 0.25);
}

.lightbox-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 1rem;
}

.lightbox-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.8rem;
}

.lightbox-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 1rem;
}

.lightbox-subtitle {
    font-size: 0.9rem;
    color: var(--grey-light);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.lightbox-item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #0a0a0a;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.lightbox-overlay.active .lightbox-item {
    opacity: 1;
    transform: translateY(0);
}

.lightbox-overlay.active .lightbox-item:nth-child(1) { transition-delay: 0.1s; }
.lightbox-overlay.active .lightbox-item:nth-child(2) { transition-delay: 0.2s; }
.lightbox-overlay.active .lightbox-item:nth-child(3) { transition-delay: 0.3s; }
.lightbox-overlay.active .lightbox-item:nth-child(4) { transition-delay: 0.4s; }
.lightbox-overlay.active .lightbox-item:nth-child(5) { transition-delay: 0.5s; }
.lightbox-overlay.active .lightbox-item:nth-child(6) { transition-delay: 0.6s; }

.lightbox-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.2);
}

.lightbox-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.lightbox-item:hover img {
    transform: scale(1.05);
}

.lightbox-caption {
    display: block;
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-light);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* --- WhatsApp Floater --- */
.whatsapp-floater {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-floater:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-floater::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* --- WhatsApp Quick Contact in Mobile Nav --- */
.nav-whatsapp-item {
    display: none; /* Hidden on desktop */
}

.nav-whatsapp-link {
    display: inline-flex !important;
    align-items: center;
    gap: 0.4rem;
    color: #25D366 !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    padding: 0.8rem 1.4rem !important;
    margin-top: 0.5rem;
    border: 1px solid rgba(37, 211, 102, 0.25) !important;
    border-radius: 8px !important;
    background: rgba(37, 211, 102, 0.06) !important;
    transition: all 0.3s ease !important;
}

.nav-whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.15) !important;
    border-color: rgba(37, 211, 102, 0.4) !important;
    color: #25D366 !important;
    transform: translateX(0) !important;
}

/* --- Enhanced Scroll-Triggered Animations --- */
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Subtle parallax drift on section labels */
.section-label {
    transition: transform 0.6s ease-out, opacity 0.8s ease;
}

/* Cinematic section entrance — stagger children */
.section .container > .reveal:nth-child(1) { transition-delay: 0s; }
.section .container > .reveal:nth-child(2) { transition-delay: 0.15s; }
.section .container > .reveal:nth-child(3) { transition-delay: 0.3s; }
.section .container > .reveal:nth-child(4) { transition-delay: 0.45s; }

/* ============================================================
   Responsive
   ============================================================ */

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin: 0 auto;
    }

    .poster-gallery {
        padding-left: 0;
        margin-top: 1.5rem;
    }

    .about-content {
        flex-direction: column;
    }

    .about-visual {
        flex: 0 0 auto;
    }

    .project-card {
        padding: 2.5rem 2rem;
    }

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

@media (max-width: 640px) {
    .nav {
        padding: 1.2rem 1.5rem;
    }

    .nav.scrolled {
        padding: 0.8rem 1.5rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 1002;
    }

    /* Animated hamburger → X */
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
        background: #ffffff;
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
        background: #ffffff;
    }

    /* Hide Navigation CTA on mobile */
    .nav-cta {
        display: none;
    }

    /* Backdrop overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(4px);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
    }

    .nav-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    /* Slide-in panel */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 0;
        padding: 5rem 2.5rem;
        transition: right 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        border-left: 1px solid rgba(201, 168, 76, 0.1);
        z-index: 1001;
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.8);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateX(30px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .nav-links.open li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.open li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.open li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.open li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.open li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.open li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.open li:nth-child(6) { transition-delay: 0.35s; }
    .nav-links.open li:nth-child(7) { transition-delay: 0.4s; }

    /* Show WhatsApp Quick Contact on mobile */
    .nav-whatsapp-item {
        display: list-item;
        margin-top: 1rem;
        border-bottom: none !important;
    }

    .nav-links a {
        display: block;
        font-size: 0.95rem;
        letter-spacing: 0.15em;
        color: rgba(255,255,255,0.5);
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        width: 100%;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .nav-links a:hover {
        color: #fff;
        padding-left: 0.5rem;
    }

    .nav-links a::after {
        display: none;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 5rem 0;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .business-cta-btn, .btn-outline {
        width: 100%;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .poster-inner {
        padding: 3rem 1.5rem;
    }

    .hero-title {
        letter-spacing: 0.02em;
    }

    .container {
        padding: 0 1.2rem;
    }

    .film-reel {
        display: none;
    }

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

    .clapperboard {
        width: 220px;
        margin-top: 20px;
    }

    .clap-body {
        padding: 0.8rem 1rem;
    }

    .clap-top, .clap-bottom .clap-stripes-bottom {
        height: 24px;
    }

    .clap-stripes {
        background: repeating-linear-gradient(
            -45deg,
            #f0f0f0 0px,
            #f0f0f0 12px,
            #1a1a1a 12px,
            #1a1a1a 24px
        );
    }

    .clap-stripes-bottom {
        background: repeating-linear-gradient(
            45deg,
            #f0f0f0 0px,
            #f0f0f0 12px,
            #1a1a1a 12px,
            #1a1a1a 24px
        );
    }

    .clap-label {
        font-size: 0.5rem;
        min-width: 32px;
    }

    .clap-value {
        font-size: 0.7rem;
    }

    .intro-word {
        font-size: 2rem;
    }

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

    .lightbox-container {
        padding: 2rem 1rem 3rem;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }

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

/* --- FAQ Section --- */
.faq {
    background: #000000;
}

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

.faq-item {
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    margin-bottom: 0.5rem;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem 0;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.4s ease;
}

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

.faq-question.active {
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer p {
    padding-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}
