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

:root {
    --burgundy: #691327;
    --burgundy-light: #8A1C35;
    --burgundy-dark: #4D0E1C;
    --charcoal: #242323;
    --charcoal-light: #3A3838;
    --warm-gray: #6B565C;
    --rose-gray: #B2A3A7;
    --cream: #F7F3EF;
    --cream-dark: #EDE7E0;
    --gold: #B8963E;
    --gold-light: #C9A84F;
    --text-primary: #1C1C1C;
    --text-secondary: #4A4546;
    --text-muted: #8A8082;
    --white: #FFFFFF;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

p {
    line-height: 1.75;
    font-weight: 400;
}

::selection {
    background-color: var(--burgundy);
    color: var(--white);
}

.navbar {
    padding: 1rem 0;
    transition: var(--transition-smooth);
    background: transparent;
    z-index: 1030;
}

.navbar.nav-scrolled {
    background: rgba(36, 35, 35, 0.96);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 0.6rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-logo {
    height: 50px;
    width: auto;
    transition: var(--transition-smooth);
}

.nav-scrolled .nav-logo {
    height: 42px;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.4rem 0.75rem;
}

.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.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.6rem 0.9rem !important;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.3rem;
    left: 0.9rem;
    right: 0.9rem;
    height: 2px;
    background: var(--burgundy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.nav-link:hover::after {
    transform: scaleX(1);
}

.btn-burgundy {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    color: var(--white);
    border: none;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(105, 19, 39, 0.35);
}

.btn-burgundy:hover {
    background: linear-gradient(135deg, var(--burgundy-light) 0%, var(--burgundy) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(105, 19, 39, 0.5);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(36, 35, 35, 0.75) 0%,
        rgba(36, 35, 35, 0.55) 40%,
        rgba(36, 35, 35, 0.8) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 100px;
    width: 100%;
}

.hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    animation: fadeSlideUp 1s ease 0.3s forwards;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0;
    opacity: 0;
    animation: fadeSlideUp 1s ease 0.5s forwards;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--burgundy-light));
    margin: 1.5rem auto;
    border-radius: 2px;
    opacity: 0;
    animation: fadeSlideUp 1s ease 0.7s forwards;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 3vw, 2.2rem);
    font-weight: 500;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeSlideUp 1s ease 0.9s forwards;
}

.hero-lead {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 780px;
    margin: 0 auto 1.25rem;
    line-height: 1.85;
    font-weight: 300;
    opacity: 0;
    animation: fadeSlideUp 1s ease 1.1s forwards;
}

.hero-lead strong {
    color: var(--white);
    font-weight: 600;
}

.hero-cta {
    opacity: 0;
    animation: fadeSlideUp 1s ease 1.3s forwards;
}

.hero-cta .btn {
    font-size: 0.9rem;
    padding: 0.85rem 2rem;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeSlideUp 1s ease 2s forwards;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 13px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--burgundy);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.3; }
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.section-editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.section-editorial.section-right {
    direction: rtl;
}

.section-editorial.section-right > * {
    direction: ltr;
}

.section-image-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-image-wrapper:hover .section-image {
    transform: scale(1.05);
}

.section-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(36, 35, 35, 0.15) 0%,
        rgba(36, 35, 35, 0.05) 100%
    );
    transition: var(--transition-smooth);
}

.section-image-wrapper:hover .section-image-overlay {
    background: linear-gradient(
        135deg,
        rgba(36, 35, 35, 0.3) 0%,
        rgba(36, 35, 35, 0.1) 100%
    );
}

.section-content-wrapper {
    display: flex;
    align-items: center;
    padding: 5rem 4rem;
    background: var(--cream);
    position: relative;
}

.section-editorial.section-left .section-content-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -30px;
    width: 60px;
    height: 60px;
    background: var(--cream);
    transform: translateY(-50%) rotate(45deg);
    z-index: 2;
}

.section-editorial.section-right .section-content-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    width: 60px;
    height: 60px;
    background: var(--charcoal);
    transform: translateY(-50%) rotate(45deg);
    z-index: 2;
}

.section-content {
    max-width: 580px;
    position: relative;
    z-index: 3;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(105, 19, 39, 0.08);
    border-radius: 50px;
    border: 1px solid rgba(105, 19, 39, 0.15);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
    line-height: 1.1;
}

.section-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--burgundy-light));
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.section-meta {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--burgundy);
    line-height: 1.65;
}

.section-body p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.section-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

.section-editorial.section-right .section-content-wrapper {
    background: var(--charcoal);
}

.section-editorial.section-right .section-title {
    color: var(--white);
}

.section-editorial.section-right .section-body p {
    color: rgba(255, 255, 255, 0.75);
}

.section-editorial.section-right .section-body strong {
    color: var(--white);
}

.section-editorial.section-right .section-meta {
    color: rgba(255, 255, 255, 0.55);
    border-left-color: var(--burgundy);
}

.section-conclusion {
    position: relative;
    padding: 120px 0;
    background: var(--cream);
    overflow: hidden;
}

.conclusion-deco {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    z-index: 0;
    pointer-events: none;
}

.conclusion-wave {
    width: 100%;
    height: 100%;
    display: block;
}

.conclusion-icon {
    font-size: 2.5rem;
    color: var(--burgundy);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.conclusion-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0;
}

.conclusion-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--burgundy-light));
    border-radius: 2px;
    margin: 1.5rem auto;
}

.conclusion-body {
    max-width: 700px;
    margin: 0 auto;
}

.conclusion-body p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.conclusion-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

.cta-final {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(8px) brightness(0.4);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(36, 35, 35, 0.88) 0%,
        rgba(105, 19, 39, 0.75) 100%
    );
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    padding: 100px 0;
    width: 100%;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
}

.cta-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin: 1.5rem auto;
}

.cta-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 680px;
    margin: 0 auto 1.25rem;
    line-height: 1.8;
    font-weight: 300;
}

.cta-text strong {
    color: var(--white);
    font-weight: 600;
}

.cta-buttons .btn {
    font-size: 0.95rem;
    padding: 0.9rem 2.2rem;
}

.cta-footer {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-footer strong {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
}

.cta-footer em {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.site-footer {
    background: var(--charcoal);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(105, 19, 39, 0.3);
}

.footer-logo {
    height: 45px;
    width: auto;
    opacity: 0.9;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
    font-style: italic;
}

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

.footer-social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.footer-social-link:hover {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(105, 19, 39, 0.4);
}

@media (max-width: 991px) {
    .section-editorial {
        grid-template-columns: 1fr;
    }

    .section-image-wrapper {
        min-height: 350px;
    }

    .section-content-wrapper {
        padding: 3rem 2rem;
    }

    .section-editorial.section-left .section-content-wrapper::before,
    .section-editorial.section-right .section-content-wrapper::before {
        display: none;
    }

    .section-editorial.section-right {
        direction: ltr;
    }

    .navbar-collapse {
        background: rgba(36, 35, 35, 0.98);
        backdrop-filter: blur(20px);
        padding: 1rem;
        border-radius: 12px;
        margin-top: 0.75rem;
    }

    .nav-link {
        padding: 0.8rem 1rem !important;
    }

    .nav-link::after {
        display: none;
    }

    .hero-content {
        padding: 100px 0 80px;
    }

    .footer-social {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-tagline {
        margin: 1rem 0;
    }

    .section-conclusion {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .section-content-wrapper {
        padding: 2.5rem 1.5rem;
    }

    .hero-cta .btn {
        display: block;
        width: 100%;
        margin-right: 0 !important;
    }

    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-right: 0 !important;
    }

    .hero-lead {
        font-size: 0.9rem;
    }

    .conclusion-body p {
        font-size: 0.95rem;
    }
}

[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}
