* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --gold-dark: #B8960C;
    --charcoal: #1A1A1A;
    --paper: #FCF9F4;
    --white: #FFFFFF;
    --gray-icon: #8A8A8A;
    --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--paper);
    color: var(--charcoal);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, .logo, .cart-count {
    font-family: 'Cormorant Garamond', serif;
}

.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.2), transparent);
}

.logo {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    margin-right: auto;
}

.desktop-menu {
    display: none;
    gap: 32px;
    list-style: none;
    margin-right: 32px;
}

.desktop-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: var(--transition);
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
    white-space: nowrap;
}

.desktop-menu a:hover {
    color: var(--gold);
}

.nav-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    color: white;
    font-size: 22px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -12px;
    background: var(--gold);
    color: black;
    font-size: 11px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: none;
}

.menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    display: block;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: var(--charcoal);
    z-index: 2000;
    padding: 40px 32px;
    transition: 0.3s ease;
}

.mobile-sidebar.open {
    left: 0;
}

.close-menu {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 32px;
    cursor: pointer;
    float: right;
}

.mobile-sidebar ul {
    list-style: none;
    margin-top: 80px;
}

.mobile-sidebar li {
    margin: 32px 0;
}

.mobile-sidebar a {
    color: var(--paper);
    font-size: 22px;
    font-family: 'Cormorant Garamond', serif;
    text-decoration: none;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}

.hero-carousel {
    position: relative;
    height: 85vh;
    width: 100%;
    overflow: hidden;
}

.hero-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(180, 130, 48, 0.92) 0%, 
        rgba(180, 130, 48, 0.82) 15%,
        rgba(180, 130, 48, 0.60) 30%,
        rgba(180, 130, 48, 0.38) 50%,
        rgba(180, 130, 48, 0.22) 70%,
        rgba(180, 130, 48, 0.10) 100%);
    z-index: 15;
    pointer-events: none;
}

.hero-banner-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    text-align: left;
    z-index: 20;
    padding: 40px 5% 40px 8%;
    max-width: 700px;
}

.hero-banner-overlay .hero-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-banner-overlay .hero-year strong {
    font-weight: 700;
    color: var(--white);
}

.hero-banner-overlay .hero-brand {
    font-family: 'Merriweather', serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    margin-top: 12px;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-banner-overlay .hero-tagline {
    font-family: 'Alex Brush', cursive;
    font-size: 26px;
    color: var(--white);
    margin-top: 16px;
    max-width: 550px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    font-weight: normal;
    letter-spacing: 0.5px;
}

.hero-social-row {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-social-row span {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    background: rgba(0,0,0,0.35);
    padding: 8px 20px;
    border-radius: 40px;
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    font-family: 'Inter', sans-serif;
}

.hero-social-row span:hover {
    background: var(--gold);
    color: black;
    transform: translateY(-2px);
}

.carousel-track {
    display: flex;
    width: 800%;
    height: 100%;
    animation: cinematicScroll 36s infinite ease-in-out;
}

.slide {
    width: 12.5%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@keyframes cinematicScroll {
    0%, 10% { transform: translateX(0); }
    12.5%, 22.5% { transform: translateX(-12.5%); }
    25%, 35% { transform: translateX(-25%); }
    37.5%, 47.5% { transform: translateX(-37.5%); }
    50%, 60% { transform: translateX(-50%); }
    62.5%, 72.5% { transform: translateX(-62.5%); }
    75%, 85% { transform: translateX(-75%); }
    87.5%, 97.5% { transform: translateX(-87.5%); }
    100% { transform: translateX(0); }
}

.cart-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 480px;
    height: 100vh;
    background: white;
    z-index: 2500;
    transition: 0.3s;
    padding: 30px;
    overflow-y: auto;
}

.cart-modal.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.close-cart-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    background: #f0f0f0;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
}

.checkout-btn {
    background: var(--gold);
    width: 100%;
    padding: 14px;
    border: none;
    font-weight: bold;
    margin-top: 20px;
    cursor: pointer;
    border-radius: 40px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
}

.modal-overlay.active {
    visibility: visible;
    opacity: 1;
}

.service-modal-content {
    background: white;
    max-width: 500px;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    width: 90%;
}

.video-modal {
    background: black;
    max-width: 95vw;
    max-height: 90vh;
    position: relative;
}

.video-modal video {
    max-height: 85vh;
    width: auto;
    max-width: 100%;
}

.close-video-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    background: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 36px;
    height: 36px;
}

.luxury-footer {
    background: #111111;
    color: #D4AF37;
    padding: 60px 6% 40px;
    margin-top: 40px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    border-bottom: 1px solid rgba(212,175,55,0.2);
    padding-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--gold);
}

.footer-col p, .footer-col address {
    font-size: 13px;
    line-height: 1.7;
    color: #bbb;
    font-style: normal;
}

.footer-tagline {
    margin-top: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    font-size: 12px;
    color: #888;
}

@media (min-width: 1024px) {
    .desktop-menu {
        display: flex;
    }
    .menu-toggle {
        display: none;
    }
    .hero-carousel {
        height: 100vh;
    }
    .hero-banner-overlay .hero-brand {
        font-size: 68px;
    }
    .hero-banner-overlay .hero-year {
        font-size: 20px;
    }
    .hero-banner-overlay .hero-tagline {
        font-size: 26px;
    }
}