/* inter-300 - latin */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/inter-v20-latin-300.woff2') format('woff2');
}
/* inter-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
}
/* inter-500 - latin */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/inter-v20-latin-500.woff2') format('woff2');
}
/* inter-600 - latin */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/inter-v20-latin-600.woff2') format('woff2');
}
/* playfair-display-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
}
/* playfair-display-italic - latin */
@font-face {
    font-display: swap;
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/playfair-display-v40-latin-italic.woff2') format('woff2');
}
/* playfair-display-600 - latin */
@font-face {
    font-display: swap;
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/playfair-display-v40-latin-600.woff2') format('woff2');
}
/* playfair-display-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/playfair-display-v40-latin-700.woff2') format('woff2');
}

/* ========== VARIABLES ========== */
:root {
    --deep-blue: #0B192C;
    --soft-gold: #D4AF37;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --green-500: #22c55e;
    --green-600: #16a34a;
}

/* ========== RESET ========== */
@layer reset {
    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
        font-family: 'Inter', sans-serif;
        overflow-x: hidden;
        color: var(--gray-800);
        -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4, h5, h6, .font-serif {
        font-family: 'Playfair Display', serif;
    }

    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    ul { list-style: none; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }
    input, select, textarea { font-family: inherit; }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* ========== UTILITY ========== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.text-center { text-align: center; }
.relative { position: relative; }
.gold-glow { box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }

/* ========== MASONRY ========== */
.gallery-masonry { column-count: 1; column-gap: 1.5rem; }
@media (min-width: 640px) { .gallery-masonry { column-count: 2; } }
@media (min-width: 1024px) { .gallery-masonry { column-count: 3; } }
.masonry-item { break-inside: avoid; margin-bottom: 1.5rem; }

/* ========== HOVER EFFECTS ========== */
.hover-scale { transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); will-change: transform; }
.hover-scale:hover { transform: scale(1.03); }

/* ========== PARTICLES ========== */
.magic-particle {
    position: absolute; width: 4px; height: 4px;
    background: white; border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(212, 175, 55, 0.6);
    animation: float 4s infinite ease-in-out; opacity: 0.6;
}
@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
    50% { transform: translateY(-20px) scale(1.5); opacity: 0.8; }
}
@media (prefers-reduced-motion: reduce) {
    .magic-particle { animation: none; }
    .hover-scale { transition: none; }
}

.grecaptcha-badge { z-index: 9999 !important; }

/* ========== NAVBAR ========== */
.navbar {
    position: fixed; width: 100%; z-index: 50;
    background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-100);
}
.navbar-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 1rem;
    display: flex; justify-content: space-between; align-items: center; height: 80px;
}
@media (min-width: 640px) { .navbar-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .navbar-inner { padding: 0 2rem; } }

.navbar-logo { display: flex; align-items: center; gap: 0.5rem; color: var(--deep-blue); }
.navbar-logo svg { color: var(--soft-gold); }
.navbar-logo span { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; }

.nav-links { display: none; gap: 1.5rem; font-size: 0.875rem; font-weight: 500; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a { color: var(--gray-600); transition: color 0.2s; }
.nav-links a:hover { color: var(--soft-gold); }

.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: block; } }
.nav-cta a {
    background: var(--deep-blue); color: var(--white); padding: 0.625rem 1.5rem;
    border-radius: 9999px; font-size: 0.875rem; font-weight: 500;
    transition: opacity 0.2s; box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.nav-cta a:hover { opacity: 0.9; }

.mobile-toggle { display: flex; justify-content: space-between; align-items: center; color: var(--gray-600); }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

.mobile-menu {
    display: none; background: var(--white);
    border-top: 1px solid var(--gray-100); padding: 1rem;
}
.mobile-menu.active { display: block; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }
.mobile-menu a { display: block; padding: 0.75rem 0; color: var(--gray-600); font-size: 0.95rem; }
.mobile-menu a:hover { color: var(--soft-gold); }
.mobile-menu a.cta { color: var(--deep-blue); font-weight: 600; }

/* ========== HERO ========== */
.hero {
    position: relative; min-height: 100vh; display: flex;
    align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay1 { position: absolute; inset: 0; background: rgba(11,25,44,0.4); mix-blend-mode: multiply; }
.hero-overlay2 { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,25,44,0.8), transparent); }
.hero-content { position: relative; z-index: 10; text-align: center; padding: 1rem; max-width: 56rem; margin: 0 auto; }
.hero-content h1 { font-size: 3rem; color: var(--white); font-weight: 700; margin-bottom: 1.5rem; line-height: 1.15; }
@media (min-width: 768px) { .hero-content h1 { font-size: 4.5rem; } }
.hero-content h1 .gold { color: var(--soft-gold); font-style: italic; }
.hero-content p { font-size: 1.125rem; color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; max-width: 42rem; margin-left: auto; margin-right: auto; font-weight: 300; }
@media (min-width: 768px) { .hero-content p { font-size: 1.25rem; } }
.hero-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; }
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }
.btn-gold {
    background: var(--soft-gold); color: var(--deep-blue); padding: 1rem 2rem;
    border-radius: 9999px; font-weight: 600; transition: all 0.3s;
    width: 100%; text-align: center; box-shadow: 0 0 20px rgba(212,175,55,0.4);
}
@media (min-width: 640px) { .btn-gold { width: auto; } }
.btn-gold:hover { background: var(--white); }
.btn-outline-white {
    background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); color: var(--white);
    border: 1px solid rgba(255,255,255,0.3); padding: 1rem 2rem;
    border-radius: 9999px; font-weight: 500; transition: all 0.3s;
    width: 100%; text-align: center;
}
@media (min-width: 640px) { .btn-outline-white { width: auto; } }
.btn-outline-white:hover { background: rgba(255,255,255,0.2); }

/* ========== PAGE HERO ========== */
.page-hero {
    position: relative; min-height: 60vh; display: flex;
    align-items: center; justify-content: center; overflow: hidden; padding-top: 80px;
}
.page-hero .hero-content { padding: 4rem 1rem; }

/* ========== SECTIONS ========== */
.section { padding: 6rem 0; }
.section-white { background: var(--white); }
.section-gray { background: var(--gray-50); }
.section-dark { background: var(--deep-blue); }

.section-header { text-align: center; max-width: 42rem; margin: 0 auto 4rem; }
.section-header h2 { font-size: 2.25rem; color: var(--deep-blue); font-weight: 700; margin-bottom: 1rem; }
.section-header p { color: var(--gray-600); }
.section-header--light h2 { color: var(--white); }
.section-header--light p { color: var(--gray-300); }

/* ========== ABOUT ========== */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 1rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); position: relative; z-index: 10; }
.about-img-border { position: absolute; bottom: -1.5rem; right: -1.5rem; width: 100%; height: 100%; border: 2px solid var(--soft-gold); border-radius: 1rem; z-index: 0; }
.about-label { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--soft-gold); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.875rem; font-weight: 600; }
.about-text h2 { font-size: 2.25rem; color: var(--deep-blue); font-weight: 700; margin-bottom: 1.5rem; }
.about-text p { color: var(--gray-600); font-size: 1.125rem; font-weight: 300; line-height: 1.75; margin-bottom: 1rem; }

/* ========== SERVICES ========== */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
    background: var(--white); padding: 2rem; border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06); transition: box-shadow 0.3s; display: block;
}
.service-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.service-card .icon-wrap {
    width: 3.5rem; height: 3.5rem; border-radius: 9999px;
    background: rgba(212,175,55,0.1); display: flex; align-items: center;
    justify-content: center; color: var(--soft-gold); margin-bottom: 1.5rem;
}
.service-card h3 { font-size: 1.25rem; color: var(--deep-blue); font-weight: 700; margin-bottom: 0.75rem; transition: color 0.2s; }
.service-card:hover h3 { color: var(--soft-gold); }
.service-card p { color: var(--gray-600); font-weight: 300; font-size: 0.875rem; }

.extra-links { display: flex; justify-content: center; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }
.extra-link {
    background: var(--white); padding: 0.75rem 1.5rem; border-radius: 9999px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06); font-weight: 500; font-size: 0.875rem;
    color: var(--deep-blue); transition: box-shadow 0.3s;
}
.extra-link:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.1); }

/* ========== THEMATIC ========== */
.thematic-pattern {
    position: absolute; inset: 0; opacity: 0.1;
    background-image: radial-gradient(#D4AF37 1px, transparent 1px);
    background-size: 30px 30px;
}
.thematic-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .thematic-grid { grid-template-columns: repeat(3, 1fr); } }
.thematic-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1rem; padding: 1.5rem; backdrop-filter: blur(4px); transition: background 0.2s;
}
.thematic-card:hover { background: rgba(255,255,255,0.1); }
.thematic-card h3 { font-size: 1.5rem; color: var(--soft-gold); margin-bottom: 0.5rem; }
.thematic-card p { color: var(--gray-300); font-weight: 300; font-size: 0.875rem; }

/* ========== STEPS ========== */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; text-align: center; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card { background: var(--white); padding: 2rem; border-radius: 1rem; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.step-icon {
    width: 4rem; height: 4rem; border-radius: 9999px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem; box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700;
}
.step-icon--dark { background: var(--deep-blue); }
.step-icon--gold { background: var(--soft-gold); }
.step-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-card p { color: var(--gray-500); font-size: 0.875rem; font-weight: 300; }

/* ========== CONTACT ========== */
.contact-section { padding: 6rem 0; background: var(--deep-blue); color: var(--white); position: relative; overflow: hidden; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info h2 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1.5rem; }
.contact-info > p { color: var(--gray-300); font-weight: 300; margin-bottom: 2.5rem; font-size: 1.125rem; }
.contact-detail { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail svg { color: var(--soft-gold); flex-shrink: 0; }
.contact-detail span { font-weight: 300; }

.contact-form-wrap {
    background: var(--white); color: var(--gray-800); padding: 2rem;
    border-radius: 1rem; box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--gray-700); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.75rem 1rem; border-radius: 0.5rem;
    border: 1px solid var(--gray-200); outline: none; transition: all 0.2s;
    font-size: 0.95rem; background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--soft-gold); box-shadow: 0 0 0 2px rgba(212,175,55,0.2);
}
.form-group textarea { resize: none; }
.btn-submit {
    width: 100%; background: var(--deep-blue); color: var(--white);
    padding: 1rem; border-radius: 0.5rem; font-weight: 500;
    transition: opacity 0.2s; border: none; font-size: 1rem; cursor: pointer;
}
.btn-submit:hover { opacity: 0.9; }

/* ========== FOOTER ========== */
.footer { background: var(--gray-900); color: var(--white); padding: 3rem 0; border-top: 1px solid var(--gray-800); }
.footer-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 1rem;
    display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
@media (min-width: 768px) { .footer-inner { flex-direction: row; justify-content: space-between; } }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; }
.footer-logo svg { color: var(--soft-gold); }
.footer-logo span { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; }
.footer-links { display: flex; gap: 1.5rem; font-size: 0.875rem; font-weight: 300; }
.footer-links a { color: var(--gray-400); transition: color 0.2s; }
.footer-links a:hover { color: var(--soft-gold); }
.footer-copy { font-size: 0.875rem; color: var(--gray-500); font-weight: 300; }

/* ========== WHATSAPP ========== */
.whatsapp-btn {
    position: fixed; bottom: 1.5rem; right: 1.5rem; background: var(--green-500);
    color: var(--white); padding: 1rem; border-radius: 9999px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2); z-index: 50;
    display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.whatsapp-btn:hover { background: var(--green-600); transform: scale(1.1); }

/* ========== SERVICE PAGE ========== */
.content-section { padding: 5rem 0; }
.content-wrap { max-width: 56rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .content-wrap { padding: 0 1.5rem; } }
.content-label { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--soft-gold); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.875rem; font-weight: 600; }
.content-wrap > h2 { font-size: 1.875rem; color: var(--deep-blue); font-weight: 700; margin-bottom: 2rem; }
.content-wrap .text-block { margin-bottom: 1.5rem; color: var(--gray-600); font-size: 1.125rem; font-weight: 300; line-height: 1.75; }
.content-wrap .text-block strong { color: var(--deep-blue); font-weight: 500; }

.info-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 768px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .info-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .info-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }
.info-card { background: var(--gray-50); padding: 1.5rem; border-radius: 1rem; }
.info-card h3 { font-size: 1.125rem; color: var(--deep-blue); font-weight: 700; margin-bottom: 0.5rem; }
.info-card p { color: var(--gray-600); font-size: 0.875rem; font-weight: 300; }
.info-card.text-center { text-align: center; padding: 1rem; }
.info-card .big-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--soft-gold); font-weight: 700; }
.info-card .small-label { color: var(--gray-600); font-size: 0.875rem; }

.highlight-box { background: var(--gray-50); padding: 2rem; border-radius: 1rem; margin-top: 3rem; }
.highlight-box h3 { font-size: 1.25rem; color: var(--deep-blue); font-weight: 700; margin-bottom: 1rem; }
.highlight-list { list-style: none; }
.highlight-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; color: var(--gray-600); font-weight: 300; }
.highlight-list li .star { color: var(--soft-gold); font-weight: 700; }

/* ========== RELATED SERVICES ========== */
.related-section { padding: 5rem 0; background: var(--gray-50); }
.related-section h2 { font-size: 1.875rem; color: var(--deep-blue); font-weight: 700; margin-bottom: 2.5rem; text-align: center; }
.related-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .related-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.related-card {
    background: var(--white); padding: 2rem; border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06); transition: box-shadow 0.3s;
}
.related-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.related-card h3 { font-size: 1.25rem; color: var(--deep-blue); font-weight: 700; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.related-card h3 .arrow { color: var(--soft-gold); opacity: 0; transition: opacity 0.2s; }
.related-card:hover h3 .arrow { opacity: 1; }
.related-card p { color: var(--gray-600); font-weight: 300; font-size: 0.875rem; }

.emoji-card { text-align: center; }
.emoji-card .emoji { font-size: 2.5rem; margin-bottom: 0.75rem; display: block; }
.emoji-card h4 { font-size: 1.125rem; color: var(--deep-blue); font-weight: 700; margin-bottom: 0.5rem; }
.emoji-card p { color: var(--gray-600); font-size: 0.875rem; font-weight: 300; }

/* ========== PORTFOLIO ========== */
.portfolio-section { padding: 5rem 0; background: var(--gray-50); }
.portfolio-intro { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.portfolio-intro .content-label { justify-content: center; display: inline-flex; align-items: center; gap: .5rem; color: var(--soft-gold); text-transform: uppercase; letter-spacing: .15em; font-size: .8rem; font-weight: 600; margin-bottom: 1rem; }
.portfolio-intro h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); color: var(--deep-blue); margin-bottom: 1rem; font-weight: 700; }
.portfolio-intro p { color: var(--gray-600); font-weight: 300; line-height: 1.7; }

.portfolio-filters {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 0;
    margin-bottom: 3rem; border-bottom: 1px solid var(--gray-200);
}
.portfolio-filters button {
    padding: .9rem 1.4rem; background: transparent; color: var(--gray-500);
    font-size: .85rem; font-weight: 500; letter-spacing: .05em; text-transform: uppercase;
    position: relative; transition: color .25s ease;
}
.portfolio-filters button::after {
    content: ''; position: absolute; left: 50%; bottom: -1px; width: 0; height: 2px;
    background: var(--soft-gold); transition: width .3s ease; transform: translateX(-50%);
}
.portfolio-filters button:hover,
.portfolio-filters button.active { color: var(--deep-blue); }
.portfolio-filters button.active::after { width: 100%; }

.portfolio-rows { display: flex; flex-direction: column; gap: 12px; }
.portfolio-row { display: flex; gap: 12px; }
.portfolio-item {
    position: relative; overflow: hidden; cursor: pointer;
    background: var(--gray-200); flex-grow: 1; min-width: 0;
    contain: layout paint;
}
.portfolio-item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .4s ease;
    filter: saturate(.95); will-change: transform;
}
.portfolio-item:hover img { transform: scale(1.05); filter: saturate(1.1); }

.portfolio-item .overlay {
    position: absolute; inset: 0; padding: 1.4rem;
    display: flex; flex-direction: column; justify-content: flex-end;
    background: linear-gradient(180deg, transparent 50%, rgba(11,25,44,.88));
    opacity: 0; transform: translateY(8px);
    transition: opacity .35s ease, transform .35s ease;
    color: var(--white);
}
.portfolio-item:hover .overlay { opacity: 1; transform: translateY(0); }
.portfolio-item .overlay .cat {
    color: var(--soft-gold); font-size: .7rem; text-transform: uppercase;
    letter-spacing: .2em; margin-bottom: .35rem; font-weight: 600;
}
.portfolio-item .overlay h3 { font-size: 1.1rem; font-weight: 600; line-height: 1.3; }
.portfolio-item .overlay .zoom {
    position: absolute; top: 1rem; right: 1rem; width: 38px; height: 38px;
    border-radius: 50%; background: var(--soft-gold); color: var(--deep-blue);
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
}

.portfolio-empty { text-align: center; padding: 4rem 1rem; color: var(--gray-500); font-style: italic; }
.portfolio-loading { text-align: center; padding: 2rem; color: var(--gray-400); font-size: .85rem; }

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed; inset: 0; background: rgba(11,25,44,.97);
    z-index: 200; display: none; align-items: center; justify-content: center;
    padding: 2rem; backdrop-filter: blur(8px);
}
.lightbox.active { display: flex; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-img { max-width: 90vw; max-height: 80vh; border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lightbox-caption { position: absolute; bottom: 1.5rem; left: 0; right: 0; text-align: center; color: var(--white); font-family: 'Playfair Display', serif; }
.lightbox-caption .cat { color: var(--soft-gold); font-size: .75rem; text-transform: uppercase; letter-spacing: .2em; margin-bottom: .4rem; font-weight: 600; }
.lightbox-caption .title { font-size: 1.2rem; font-style: italic; }
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute; background: rgba(255,255,255,.08); color: var(--white);
    width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 1.4rem; transition: all .25s ease;
    border: 1px solid rgba(255,255,255,.15);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
    background: var(--soft-gold); color: var(--deep-blue); border-color: var(--soft-gold);
}
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

@media (max-width: 640px) {
    .lightbox-prev { left: .5rem; }
    .lightbox-next { right: .5rem; }
    .portfolio-filters button { padding: .7rem .9rem; font-size: .75rem; }
}

@media (prefers-reduced-motion: reduce) {
    .portfolio-item img,
    .portfolio-item .overlay,
    .lightbox.active { transition: none; animation: none; }
}
