@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&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

:root {
    --bordeaux: #6B0A1E;
    --bordeaux-dark: #4A0512;
    --bordeaux-light: #8B1A32;
    --gold: #D4A03C;
    --gold-light: #E8C878;
    --gold-dark: #B08A2F;
    --cream: #FAF7F2;
    --cream-warm: #F5EDE3;
    --charcoal: #1A0A0D;
    --charcoal-light: #3D1A22;
    --text-body: #4A2A30;
    --text-muted: #8A6A72;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Cormorant Garamond', serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--text-body);
    line-height: 1.7;
    font-size: 1.15rem;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.navbar {
    background-color: var(--charcoal) !important;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212,160,60,0.2);
    z-index: 1000;
}

.navbar-brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--gold) !important;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.nav-link {
    font-family: var(--font-body);
    color: var(--cream) !important;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.6rem 1.2rem !important;
    transition: all 0.35s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: all 0.35s ease;
    transform: translateX(-50%);
}

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

.nav-link:hover::after {
    width: 60%;
}

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

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

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

.hero-editorial {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--charcoal);
    overflow: hidden;
}

.hero-editorial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26,10,13,0.3) 0%, rgba(26,10,13,0.7) 60%, rgba(26,10,13,0.95) 100%);
    z-index: 1;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-content-editorial {
    position: relative;
    z-index: 2;
    padding: 6rem 0;
}

.hero-overline {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: block;
}

.hero-title-editorial {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--cream);
    line-height: 1.05;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

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

.hero-divider {
    width: 80px;
    height: 2px;
    background-color: var(--gold);
    margin-bottom: 2rem;
}

.hero-body-text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: rgba(250,247,242,0.85);
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-body-text strong {
    color: var(--gold-light);
    font-weight: 600;
}

.hero-cta-editorial {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn-luxury {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border-radius: 0;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-luxury-gold {
    background-color: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
}

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

.btn-luxury-outline {
    background-color: transparent;
    color: var(--cream);
    border-color: rgba(250,247,242,0.4);
}

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

.contact-ribbon {
    background-color: var(--bordeaux-dark);
    padding: 2.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(212,160,60,0.15);
    border-bottom: 1px solid rgba(212,160,60,0.15);
}

.contact-ribbon-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.contact-ribbon-links a {
    font-family: var(--font-body);
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

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

.contact-ribbon-links i {
    color: var(--gold);
    font-size: 1.1rem;
}

.editorial-section {
    padding: 5rem 0;
    position: relative;
}

.editorial-section-alt {
    background-color: var(--cream-warm);
}

.section-overline {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 1rem;
    display: block;
}

.section-title-editorial {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--bordeaux);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.section-title-editorial em {
    font-style: italic;
    font-weight: 400;
    color: var(--bordeaux-light);
}

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

.editorial-text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.85;
    font-weight: 400;
}

.editorial-text p {
    margin-bottom: 1.2rem;
}

.editorial-text p:last-child {
    margin-bottom: 0;
}

.editorial-text strong {
    color: var(--bordeaux);
    font-weight: 700;
}

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

.editorial-image-frame {
    position: relative;
    overflow: hidden;
}

.editorial-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.editorial-image-frame:hover img {
    transform: scale(1.03);
}

.editorial-image-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(26,10,13,0.4) 100%);
    pointer-events: none;
}

.editorial-card {
    background-color: var(--cream);
    border: 1px solid rgba(212,160,60,0.15);
    padding: 3rem;
    position: relative;
}

.editorial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 60px;
    background-color: var(--gold);
}

.card-overline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.8rem;
}

.card-title-editorial {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--bordeaux);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.card-text-editorial {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.8;
    font-weight: 400;
}

.card-text-editorial p {
    margin-bottom: 1rem;
}

.card-text-editorial p:last-child {
    margin-bottom: 0;
}

.drop-cap::first-letter {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    float: left;
    line-height: 0.8;
    padding-right: 0.5rem;
    padding-top: 0.2rem;
    color: var(--bordeaux);
}

.footer-luxury {
    background-color: var(--charcoal);
    color: var(--cream);
    padding: 4rem 0 2rem;
    text-align: center;
    border-top: 1px solid rgba(212,160,60,0.2);
}

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

.footer-tagline {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.footer-copy {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(250,247,242,0.5);
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(250,247,242,0.1);
    letter-spacing: 1px;
}

.gold-rule {
    width: 100%;
    height: 1px;
    background-color: rgba(212,160,60,0.2);
    margin: 3rem 0;
}

@media (max-width: 992px) {
    .hero-title-editorial {
        font-size: 3rem;
    }
    .editorial-section {
        padding: 3.5rem 0;
    }
    .section-title-editorial {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-title-editorial {
        font-size: 2.2rem;
    }
    .hero-body-text {
        font-size: 1rem;
    }
    .hero-cta-editorial {
        flex-direction: column;
        gap: 1rem;
    }
    .btn-luxury {
        width: 100%;
        justify-content: center;
    }
    .editorial-card {
        padding: 2rem;
    }
    .card-title-editorial {
        font-size: 1.5rem;
    }
    .contact-ribbon-links {
        flex-direction: column;
        gap: 1rem;
    }
    .section-title-editorial {
        font-size: 1.8rem;
    }
    .editorial-text {
        font-size: 1.05rem;
    }
}

@media (max-width: 576px) {
    .hero-title-editorial {
        font-size: 1.8rem;
    }
    .navbar-brand {
        font-size: 1rem;
    }
    .navbar-brand img {
        height: 36px;
    }
}
