@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

:root {
    --bordeaux: #69001E;
    --bordeaux-dark: #3D0012;
    --gold: #B4873C;
    --gold-light: #D4A85C;
    --cream: #F0F0E1;
    --cream-dark: #D8D8C8;
    --ink: #0A0A0A;
    --text: #1A1A1A;
    --text-soft: #4A4A4A;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Source Sans 3', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--ink);
    color: var(--cream);
    line-height: 1.7;
    font-size: 17px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.navbar {
    background-color: rgba(10,10,10,0.85) !important;
    backdrop-filter: blur(12px);
    padding: 0.7rem 0;
    z-index: 1000;
    position: fixed;
    top: 0;
    width: 100%;
    border-bottom: 1px solid rgba(180,135,60,0.2);
}

.navbar-brand {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--cream) !important;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.navbar-brand img {
    height: 38px;
    width: auto;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.nav-link {
    font-family: var(--font-body);
    color: var(--cream) !important;
    font-weight: 400;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 0.9rem !important;
    transition: color 0.25s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.nav-link i {
    margin-right: 4px;
    font-size: 0.85rem;
    color: var(--gold);
}

.navbar-toggler {
    border: 1px solid var(--gold);
}

.navbar-toggler-icon {
    filter: invert(1);
}

.scroll-indicator {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(180,135,60,0.15);
    z-index: 999;
}

.scroll-progress {
    height: 100%;
    background-color: var(--gold);
    width: 0%;
    transition: width 0.1s linear;
}

.contact-pill {
    background-color: var(--bordeaux);
    padding: 1rem 0;
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 100;
}

.contact-pill-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-pill-links a {
    font-family: var(--font-body);
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.25s ease;
}

.contact-pill-links a:hover {
    color: var(--gold);
}

.immersive-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.immersive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(61,0,18,0.75) 50%, rgba(10,10,10,0.9) 100%);
    z-index: 1;
}

.immersive-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 4rem 2rem;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.immersive-overline {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border: 1px solid var(--gold);
}

.immersive-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.immersive-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-light);
}

.immersive-divider {
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 0 auto 2rem;
}

.immersive-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(240,240,225,0.85);
    text-align: left;
    max-width: 700px;
    margin: 0 auto 1.2rem;
}

.immersive-text strong {
    color: var(--cream);
    font-weight: 600;
}

.immersive-text em {
    font-style: italic;
    color: var(--gold-light);
}

.immersive-cta {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn-immersive {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1rem 2.2rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-gold-fill {
    background-color: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
}

.btn-gold-fill:hover {
    background-color: transparent;
    color: var(--gold);
}

.btn-outline-cream {
    background-color: transparent;
    color: var(--cream);
    border-color: rgba(240,240,225,0.3);
}

.btn-outline-cream:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

.scroll-hint span {
    font-family: var(--font-body);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
}

.scroll-hint i {
    font-size: 1.2rem;
    color: var(--gold);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.section-number {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 12rem;
    font-weight: 900;
    color: rgba(180,135,60,0.06);
    line-height: 1;
    z-index: 1;
    pointer-events: none;
    writing-mode: vertical-rl;
}

.immersive-section-alt .immersive-overlay {
    background: linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.85) 50%, rgba(61,0,18,0.9) 100%);
}

.immersive-section-light {
    background-color: var(--cream);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.immersive-section-light .immersive-title {
    color: var(--bordeaux-dark);
}

.immersive-section-light .immersive-text {
    color: var(--text-soft);
}

.immersive-section-light .immersive-text strong {
    color: var(--bordeaux);
}

.immersive-section-light .immersive-overline {
    color: var(--bordeaux);
    border-color: var(--bordeaux);
}

.immersive-section-light .immersive-divider {
    background-color: var(--bordeaux);
}

.immersive-section-light .section-number {
    color: rgba(105,0,30,0.06);
}

.footer-immersive {
    background-color: var(--ink);
    color: var(--cream);
    padding: 4rem 0 2rem;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(180,135,60,0.15);
}

.footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.footer-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 0.5px;
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.footer-copy {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: rgba(240,240,225,0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(240,240,225,0.08);
}

@media (max-width: 768px) {
    .immersive-title {
        font-size: 2.2rem;
    }
    .immersive-content {
        padding: 3rem 1.5rem;
    }
    .section-number {
        font-size: 6rem;
        right: 1rem;
    }
    .immersive-cta {
        flex-direction: column;
        align-items: center;
    }
    .btn-immersive {
        width: 100%;
        justify-content: center;
    }
    .contact-pill-links {
        flex-direction: column;
        gap: 0.6rem;
    }
}

@media (max-width: 576px) {
    .immersive-title {
        font-size: 1.8rem;
    }
    .navbar-brand {
        font-size: 1rem;
    }
    .navbar-brand img {
        height: 32px;
    }
    .scroll-hint {
        display: none;
    }
}
