:root {
    --primary-color: #2d2a25;
    /* Darker Brown/Black - New Luxury Color */
    --secondary-color: #d4af37;
    /* Gold Accent */
    --link-color: #5a5a5a;
    --bg-color: #ffffff;
    --bg-alt: #f8f8f8;
    --text-main: #2d2a25;
    --text-muted: #666666;
    --border-color: #e5e5e5;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.8;
    overflow-x: hidden;
}

/* Typography Overrides */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.display-1 {
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.display-2 {
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.text-gold {
    color: var(--secondary-color);
}

.font-serif {
    font-family: var(--font-heading);
}

/* Editorial Utilities */
.editorial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.huge-title {
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.9;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 2rem;
}

/* Navbar (Retained) */
.navbar {
    background: var(--primary-color);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    padding: 1.5rem 0;
}

.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.navbar-brand img {
    height: 50px;
    width: auto;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 400;
    padding: 0 1.5rem !important;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Buttons */
.btn-luxury {
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 0;
    padding: 1.2rem 3rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    transition: var(--transition);
}

.btn-luxury:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-outline-luxury {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 0;
    padding: 1.2rem 3rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    transition: var(--transition);
}

.btn-outline-luxury:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Radical Layout Elements */
.full-height {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-editorial {
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.img-reveal-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.img-reveal-wrapper img {
    width: 100%;
    display: block;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-reveal-wrapper:hover img {
    transform: scale(1.05);
}

.sticky-col {
    position: sticky;
    top: 120px;
    height: fit-content;
}

/* Cinematic Sections */
.cinematic-section {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10rem 0;
    overflow: hidden;
}

.cinematic-section h2 {
    color: #fff;
}

.cinematic-section p {
    color: rgba(255, 255, 255, 0.7);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.gallery-item-1 {
    grid-column: 1 / 8;
}

.gallery-item-2 {
    grid-column: 9 / 13;
    align-self: end;
}

.gallery-item-3 {
    grid-column: 2 / 6;
    margin-top: -5rem;
    z-index: 2;
}

.gallery-item-4 {
    grid-column: 7 / 13;
}

/* Timeline Steps (Alianzas) */
.step-list {
    position: relative;
    padding-left: 2rem;
    border-left: 1px solid var(--border-color);
}

.step-item {
    position: relative;
    padding-bottom: 4rem;
}

.step-item:last-child {
    padding-bottom: 0;
}

.step-item::before {
    content: '';
    position: absolute;
    left: -2.35rem;
    /* center on border */
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background-color: var(--bg-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.step-number {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Footer */
.footer {
    background-color: var(--bg-alt);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .huge-title {
        font-size: 3.5rem;
    }

    .display-1 {
        font-size: 3rem;
    }

    .sticky-col {
        position: relative;
        top: 0;
        margin-bottom: 3rem;
    }

    .gallery-grid {
        display: block;
    }

    .gallery-grid>div {
        margin-bottom: 2rem;
    }
}