@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
    --bg: #F7F5F0;
    --surface: #FFFFFF;
    --primary: #1A1A1A;
    --secondary: #5C5C5C;
    --accent: #B8864E;
    --accent-light: #D4A96A;
    --accent-muted: #F0E6D6;
    --border: #E8E2D9;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.10);
    --shadow-lg: 0 20px 48px rgba(0,0,0,0.14);
    --radius: 4px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── NAVBAR ─────────────────────────────── */
.navbar {
    background: rgba(247, 245, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    height: 80px;
    transition: var(--transition);
}

.nav-logo:hover { transform: scale(1.03); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary);
    text-decoration: none;
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 60%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--primary);
    padding: 0.3rem;
}

/* ── GALLERY SECTION ────────────────────── */
.gallery-section {
    padding: 5rem 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.6rem;
}

.gallery-section h2,
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.2rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    cursor: pointer;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.35) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

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

/* ── LIGHTBOX ───────────────────────────── */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.2s ease;
}

.lightbox-overlay.active { display: flex; }

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 2px;
    box-shadow: var(--shadow-lg);
}

.lightbox-close {
    position: fixed;
    top: 1.5rem;
    right: 1.8rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: var(--transition);
}

.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }

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

/* ── FOOTER ─────────────────────────────── */
.footer {
    background: var(--primary);
    color: rgba(255,255,255,0.75);
    padding: 4rem 2.5rem 1.5rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr 0.8fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo img {
    width: 160px;
    opacity: 0.9;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    color: rgba(255,255,255,0.45);
    margin-top: 0.75rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.footer-contact-title {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 0.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.88rem;
    line-height: 1.5;
}

.contact-item img {
    width: 18px;
    height: 18px;
    opacity: 0.6;
    margin-top: 2px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.footer-social-title {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 1rem;
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--accent);
    background: rgba(184, 134, 78, 0.15);
    transform: translateY(-3px);
}

.footer-social img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    opacity: 0.75;
}

.footer-bottom {
    max-width: 1400px;
    margin: 1.5rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 900px) {
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .mobile-menu-toggle { display: block; }

    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 0;
        gap: 0.25rem;
        box-shadow: var(--shadow-md);
    }

    .nav-links.active { display: flex; }

    .nav-links a { font-size: 0.9rem; padding: 0.65rem 1.5rem; }

    .gallery-container { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.8rem; }

    .footer-container { grid-template-columns: 1fr; gap: 2rem; }

    .footer-bottom { flex-direction: column; gap: 0.3rem; text-align: center; }

    .nav-container { padding: 0.85rem 1.25rem; }

    .gallery-section { padding: 3rem 1.25rem; }
}

@media (max-width: 480px) {
    .gallery-container { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
}
