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

:root {
    --primary-dark: #0a1128;
    --primary-navy: #001f54;
    --accent-blue: #9ba9c7;
    --light-blue: #c5d8e8;
    --gold: #d4af37;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-dark);
    background: #ffffff;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #FAFAFA;
    backdrop-filter: blur(30px);
    padding: 1.2rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.05);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.logo:hover {
    color: var(--accent-blue);
}

.header-right {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.nav-links a {
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(10, 17, 40, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    box-shadow: 0 10px 30px rgba(10, 17, 40, 0.3);
}

.cta-button {
    background: transparent;
    color: var(--primary-dark);
    padding: 0.9rem 2.5rem;
    border: 1px solid var(--primary-dark);
    border-radius: 0;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: white;
}

/* Page Hero */
.page-hero {
    padding: 12rem 8% 6rem;
    background: linear-gradient(135deg, #262626 0%, #262626 50%, #262626 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(197, 216, 232, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(155, 169, 199, 0.15) 0%, transparent 50%);
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Gallery Section */
.gallery {
    padding: 6rem 8%;
    background: #fafafa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
    background: #e5e5e5;
}

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

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

.gallery-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
    opacity: 1;
}

.gallery-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.gallery-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.9;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 40, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

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

.lightbox-wrapper img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    display: block;
    user-select: none;
}

.lightbox-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 36px;
    height: 36px;
    background: rgba(10, 17, 40, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    line-height: 1;
}

.lightbox-close:hover {
    background: white;
    color: var(--primary-dark);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(10, 17, 40, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    line-height: 1;
}

.lightbox-nav:hover {
    background: white;
    color: var(--primary-dark);
}

.lightbox-prev {
    left: -20px;
}

.lightbox-next {
    right: -20px;
}

/* Footer */
footer {
    background: #262626;
    color: white;
    padding: 8rem 8% 4rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.footer-subtitle {
    font-size: 1.1rem;
    margin-bottom: 4rem;
    opacity: 0.8;
    font-weight: 300;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 4rem 0;
}

.contact-item {
    text-align: center;
}

.contact-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 0.8rem;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 300;
}

.contact-value a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-value a:hover {
    opacity: 0.7;
}

.footer-bottom {
    margin-top: 6rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    opacity: 0.5;
    letter-spacing: 1px;
}

.meta-disclaimer {
    font-size: 0.75rem;
    color: #888;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        padding: 1.2rem 4%;
    }

    .logo {
        font-size: 1.4rem;
    }

    .header-right {
        gap: 1rem;
    }

    .nav-links {
        display: none;
    }

    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.75rem;
    }

    .social-links {
        display: none;
    }

    .page-hero {
        padding: 10rem 5% 4rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .gallery {
        padding: 4rem 5%;
    }

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

    .gallery-content {
        transform: translateY(0);
        opacity: 1;
    }

    .lightbox-wrapper {
        max-width: 95vw;
        max-height: 85vh;
    }

    .lightbox-wrapper img {
        max-width: 95vw;
        max-height: 85vh;
    }

    .lightbox-close {
        top: -16px;
        right: -10px;
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .lightbox-nav {
        width: 34px;
        height: 34px;
        font-size: 1.1rem;
    }

    .lightbox-prev {
        left: -10px;
    }

    .lightbox-next {
        right: -10px;
    }

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

    footer {
        padding: 5rem 5% 3rem;
    }

    .footer-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .gallery-content h3 {
        font-size: 1.5rem;
    }

    .footer-content h2 {
        font-size: 2rem;
    }
}
