:root {
            --prussian-blue: #003153;
            --bone-white: #F5F5F0;
            --satin-bronze: #BFA071;
            /* Proporción áurea para proporciones */
            --phi: 1.618;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--prussian-blue);
            color: var(--bone-white);
            font-family: 'Nunito', sans-serif;
            overflow-x: hidden;
            position: relative;
        }

        /* Subtle background glow/noise */
        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(191, 160, 113, 0.05) 0%, transparent 60%);
            z-index: -1;
        }

        /* Navbar */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            padding: 1.5rem;
            background: rgba(0, 49, 83, 0.9);
            backdrop-filter: blur(10px);
            z-index: 100;
            border-bottom: 1px solid rgba(191, 160, 113, 0.2);
        }

        nav a {
            color: var(--bone-white);
            text-decoration: none;
            margin: 0 1.5rem;
            font-size: 0.9rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: var(--satin-bronze);
        }

        /* Sections */
        section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 6rem 2rem 2rem;
        }

        .container {
            text-align: center;
            max-width: 800px;
            z-index: 1;
            opacity: 0;
            animation: fadeIn 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
        }

        /* Central Logo Design - Matching the provided image */
        .logo-container {
            position: relative;
            width: 260px;
            height: 120px;
            margin: 0 auto 1rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .logo-graphics {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
        }

        /* The horizontal rounded wings */
        .axis-wings {
            position: absolute;
            width: 100%;
            height: 30px;
            background-color: var(--bone-white);
            border-radius: 20px;
            z-index: 1;
        }

        /* The central ring */
        .circle-outer {
            position: absolute;
            width: 110px;
            height: 110px;
            background-color: var(--prussian-blue);
            /* Covers the wing inside */
            border: 22px solid var(--bone-white);
            border-radius: 50%;
            z-index: 2;
        }

        /* The central dot */
        .circle-core {
            position: absolute;
            width: 34px;
            height: 34px;
            background-color: var(--bone-white);
            border-radius: 50%;
            z-index: 3;
        }

        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(20px);
                filter: blur(5px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
                filter: blur(0);
            }
        }

        h1 {
            font-family: 'Comfortaa', sans-serif;
            font-weight: 700;
            font-size: 5.5rem;
            letter-spacing: -0.05em;
            margin-bottom: 0rem;
            color: var(--bone-white);
            text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }

        .subtitle {
            font-family: 'Nunito', sans-serif;
            font-weight: 300;
            font-size: 1.4rem;
            letter-spacing: 1em;
            margin-right: -1em;
            /* Offsets the letter spacing on the last char */
            color: var(--satin-bronze);
            margin-bottom: 4rem;
            text-transform: uppercase;
        }

        .coming-soon {
            font-size: 0.9rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            border: 1px solid rgba(191, 160, 113, 0.5);
            padding: 0.8rem 2rem;
            display: inline-block;
            margin-bottom: 3rem;
            color: var(--satin-bronze);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            background: rgba(191, 160, 113, 0.05);
            backdrop-filter: blur(4px);
        }

        .coming-soon:hover {
            background-color: rgba(191, 160, 113, 0.15);
            box-shadow: 0 0 20px rgba(191, 160, 113, 0.3);
            border-color: var(--satin-bronze);
        }

        .description {
            font-size: 1.1rem;
            line-height: 1.8;
            max-width: 550px;
            margin: 0 auto 4rem;
            color: rgba(245, 245, 240, 0.8);
            font-weight: 300;
        }

        .description strong {
            color: var(--satin-bronze);
            font-weight: 300;
            letter-spacing: 0.05em;
        }

        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
            width: 100%;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            border: 1px solid rgba(191, 160, 113, 0.2);
            transition: all 0.4s ease;
            aspect-ratio: 1;
            /* Square images */
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
            filter: grayscale(30%);
        }

        .gallery-item:hover {
            border-color: var(--satin-bronze);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .gallery-item:hover img {
            transform: scale(1.05);
            filter: grayscale(0%);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem;
            background: linear-gradient(to top, rgba(0, 49, 83, 0.9), transparent);
            color: var(--bone-white);
            text-align: left;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
            transform: translateY(0);
        }

        .gallery-overlay h3 {
            font-family: 'Comfortaa', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--satin-bronze);
        }

        .gallery-overlay p {
            font-size: 0.9rem;
            letter-spacing: 0.05em;
        }

        .section-title {
            font-family: 'Comfortaa', sans-serif;
            font-size: 2.5rem;
            color: var(--bone-white);
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background-color: var(--satin-bronze);
        }

        /* Contact Section */
        .contact-content {
            background: rgba(191, 160, 113, 0.05);
            border: 1px solid rgba(191, 160, 113, 0.2);
            padding: 4rem;
            max-width: 600px;
            width: 100%;
            text-align: center;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 3rem;
        }

        .social-links a {
            color: var(--bone-white);
            text-decoration: none;
            font-size: 0.85rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 6px;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            opacity: 1;
            color: var(--satin-bronze);
        }

        .social-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: 0;
            left: 50%;
            background-color: var(--satin-bronze);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .social-links a:hover::after {
            width: 100%;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .contact-content {
                padding: 2rem;
            }
        }

        @media (max-width: 600px) {
            h1 {
                font-size: 3.5rem;
            }

            .subtitle {
                font-size: 1rem;
                letter-spacing: 0.6em;
                margin-right: -0.6em;
            }

            .description {
                font-size: 0.95rem;
            }

            .logo-container {
                margin-bottom: 3rem;
            }

            .coming-soon {
                margin-bottom: 2.5rem;
            }

            .social-links {
                flex-direction: column;
                gap: 1.5rem;
            }

            nav {
                padding: 1rem;
            }

            nav a {
                margin: 0 0.5rem;
                font-size: 0.8rem;
            }
        }