:root {
    --bg-color: #FAF9F6;
    --text-primary: #1A1A1A;
    --text-secondary: #555555;
    --brown-warm: #8B5E34;
    --beige-soft: #F5F5F0;
    --white: #FFFFFF;
    --black: #111111;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-full: 9999px;
    --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

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

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
}

.rounded-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.shadow {
    box-shadow: var(--shadow-soft);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--white);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-dark {
    background-color: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.tag-small {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    margin-bottom: 0.5rem;
    display: block;
}

.icon-round {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transform: translateY(0) !important;
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 1rem 5%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
}

.brand-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #ffffff;
    white-space: nowrap;
    line-height: 1;
    text-transform: uppercase;
}

.brand-thin {
    font-weight: 300;
    letter-spacing: 0.12em;
    opacity: 0.85;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--white);
    opacity: 1;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 5%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    color: var(--white);
    max-width: 800px;
    padding: 0 5%;
    animation: fadeInUp 1s ease forwards;
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* FEATURE SECTION */
.feature-split {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    padding-top: 8rem;
    padding-bottom: 4rem;
    align-items: center;
}

.feature-img-wrapper {
    position: relative;
}

.feature-img-wrapper h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    margin: 1rem 0 2rem;
}

.feature-img-wrapper .label {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #ddd;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
}

.feature-img-wrapper img {
    height: 600px;
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.card {
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

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

.premium-card {
    background-color: var(--beige-soft);
}

.premium-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.premium-card p {
    color: var(--text-secondary);
}

.image-card {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    color: var(--white);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    overflow: hidden;
}

.image-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    z-index: 1;
}

.card-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card-overlay .icon-round {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0;
    transform: translate(-10px, 10px);
}

.image-card:hover .icon-round {
    opacity: 1;
    transform: translate(0, 0);
}

/* STATS SECTION */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 4rem 5%;
    text-align: center;
}

.stat-item h2 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, var(--text-primary), var(--brown-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* MODERN STYLE SECTION */
.modern-style {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 8rem 5%;
    align-items: center;
}

.modern-img img {
    height: 500px;
}

.modern-text h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.modern-text p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

/* COLLECTION SECTION */
.collection {
    padding: 6rem 5%;
}

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

.collection-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
}

.collection-desc {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 300px;
    gap: 1.5rem;
}

.collection-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.collection-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    transition: var(--transition);
}

.collection-item:hover::after {
    background: rgba(0,0,0,0.5);
}

.collection-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: var(--white);
    z-index: 2;
}

.collection-item h3 {
    font-size: 1.5rem;
    transform: translateY(10px);
    transition: var(--transition);
}

.collection-item .icon-round {
    opacity: 0;
    transform: translateY(10px);
}

.collection-item:hover h3,
.collection-item:hover .icon-round {
    opacity: 1;
    transform: translateY(0);
}

.collection-item.large { grid-column: span 6; grid-row: span 2; }
.collection-item.tall { grid-column: span 3; grid-row: span 2; }
.collection-item:nth-child(3) { grid-column: span 3; grid-row: span 1; }
.collection-item:nth-child(4) { grid-column: span 3; grid-row: span 1; }
.collection-item:nth-child(5) { grid-column: span 6; grid-row: span 1; }



.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 5% 8rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-details {
    list-style: none;
    margin-bottom: 3rem;
}

.contact-details li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
}

.form-group input, 
.form-group textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .lifestyle-images, .about-content, .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .lifestyle-card, .lifestyle-card.large {
        height: 400px;
    }
}
.projects {
    padding: 6rem 5%;
}

.projects-header {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.projects-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
}

.projects-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.projects-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 2rem;
    /* Hide scrollbar for a cleaner look */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.projects-slider::-webkit-scrollbar {
    display: none;
}

.slider-item {
    flex: 0 0 45%;
    height: 450px;
    scroll-snap-align: start;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
    background-color: var(--beige-soft);
}

.slider-item img,
.slider-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .slider-item {
        flex: 0 0 65%;
    }
}

@media (max-width: 768px) {
    .slider-item {
        flex: 0 0 85%;
        height: 350px;
    }
}

/* FOOTER SECTION */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 6rem 0 2rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-left h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 2rem;
}

.footer-left p {
    color: #999;
    max-width: 500px;
    font-size: 1.1rem;
}

.footer-right img {
    height: 400px;
    border-radius: var(--radius-lg);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.link-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.link-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.link-column a {
    color: #888;
    font-size: 0.95rem;
}

.link-column a:hover {
    color: var(--white);
}

.brand-large h1 {
    font-size: clamp(4rem, 15vw, 15rem);
    text-align: center;
    line-height: 0.8;
    background: linear-gradient(to bottom, #fff, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.5;
}

/* SCROLL ANIMATIONS — GPU accelerated */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

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

/* ─── HAMBURGER ─── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── SECTION HEADER (shared) ─── */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ─── CREATIVE WORKS — HORIZONTAL SCROLL ─── */
.creative-works {
    padding: 6rem 0 6rem 5%;
    overflow: hidden;
}

.creative-works .section-header {
    padding-right: 5%;
}

.creative-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 1.5rem;
    padding-right: 5%;
    cursor: grab;
}

.creative-grid::-webkit-scrollbar { display: none; }
.creative-grid:active { cursor: grabbing; }

.creative-card {
    flex: 0 0 320px;
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

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

.creative-card img,
.creative-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.creative-card:hover img,
.creative-card:hover video {
    transform: scale(1.08);
}

.creative-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.creative-overlay span {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    transform: translateY(8px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.creative-card:hover .creative-overlay span {
    transform: translateY(0);
}

/* Scroll drag for creative grid */
.creative-grid.dragging {
    scroll-snap-type: none;
    user-select: none;
}

/* ─── CREATIVE SCROLL WRAPPER + ARROWS ─── */
.creative-scroll-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 5%;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.scroll-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.scroll-btn-left  { left: 5%; }
.scroll-btn-right { right: 20px; }

.scroll-btn:disabled {
    opacity: 0.25;
    pointer-events: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .feature-split { grid-template-columns: 1fr; }
    .modern-style { grid-template-columns: 1fr; }
    .collection-item.large { grid-column: span 12; }
    .collection-item.tall { grid-column: span 6; }
    .collection-item:nth-child(3),
    .collection-item:nth-child(4),
    .collection-item:nth-child(5) { grid-column: span 6; }
    .contact-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    /* Hamburger visible */
    .hamburger { display: flex; }

    /* Mobile nav drawer */
    .nav-links {
        position: fixed;
        top: 0; left: 0; right: 0;
        background: rgba(10, 10, 10, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        height: 100dvh;
        transform: translateY(-100%);
        transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1050;
        font-size: 1.4rem;
    }

    .nav-links.open { transform: translateY(0); }
    body.menu-open { overflow: hidden; }

    /* Stats */
    .stats { grid-template-columns: 1fr 1fr; }

    /* Footer */
    .footer-content { grid-template-columns: 1fr; }

    /* Collection full-width */
    .collection-item.large,
    .collection-item.tall,
    .collection-item:nth-child(3),
    .collection-item:nth-child(4),
    .collection-item:nth-child(5) { grid-column: span 12; }

    /* Creative cards narrower on phone */
    .creative-card { flex: 0 0 75vw; height: 360px; }

    /* Hero text */
    .hero-content h1 { font-size: clamp(2.2rem, 8vw, 4rem); }
    .hero-content p { font-size: 0.95rem; }

    /* Feature split stacks */
    .feature-cards { flex-direction: column; }

    /* Tap UX */
    button, a {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
}

@media (max-width: 480px) {
    .creative-card { flex: 0 0 85vw; height: 300px; }
    .stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .section-header h2 { font-size: 1.8rem; }
}

/* FUTURE CEILING SECTION */
.future-ceiling {
    padding: 8rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--white);
    margin-bottom: 2rem;
}

.future-ceiling h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 1.5rem;
    color: var(--black);
}

.future-ceiling p {
    font-size: 1.2rem;
    max-width: 800px;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.ceiling-image {
    width: 100%;
    max-width: 1200px;
    height: 600px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-hover);
}

/* FLOATING WHATSAPP */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

/* ─── ZOOMABLE COLLECTION ITEMS ─── */
.collection-item.zoomable {
    cursor: zoom-in;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
                box-shadow 0.4s ease;
}
.collection-item.zoomable:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    z-index: 2;
}

/* ─── LIGHTBOX ─── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.93);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    animation: fadeIn 0.25s ease;
}

.lightbox.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.lightbox img {
    max-width: 95vw;
    max-height: 92vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s cubic-bezier(0.16,1,0.3,1);
}

@keyframes zoomIn {
    from { transform: scale(0.85); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s;
    backdrop-filter: blur(8px);
    -webkit-tap-highlight-color: transparent;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.3);
}

/* ─── MASONRY GALLERY ─── */
.masonry-grid {
    columns: 3;
    column-gap: 1rem;
    padding-top: 2rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: zoom-in;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
                box-shadow 0.35s ease;
}

.masonry-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    z-index: 2;
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

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

@media (max-width: 768px) {
    .masonry-grid { columns: 2; column-gap: 0.75rem; }
}

@media (max-width: 480px) {
    .masonry-grid { columns: 2; column-gap: 0.5rem; }
    .masonry-item { margin-bottom: 0.5rem; border-radius: var(--radius-md); }
}
