:root {
    --primary-color: #000000;
    /* Jet Black */
    --accent-color: #d4af37;
    /* Metallic Gold */
    --text-color: #1a1a1a;
    --bg-color: #ffffff;
    --light-grey: #f9f9f9;
    --border-color: #e5e5e5;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.8;
    background-color: var(--bg-color);
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* ==================
   Ad Disclosure
   ================== */
.ad-disclosure-top {
    background-color: var(--light-grey);
    padding: 10px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.ad-text {
    font-size: 0.7rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666;
}

/* ==================
   Premium Loader
   ================== */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 5000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}

.loader-content {
    text-align: center;
    color: #fff;
}

.loader-logo {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.loader-char {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUpFade 0.8s forwards;
}

.loader-u {
    animation-delay: 0.2s;
}

.loader-t {
    animation-delay: 0.4s;
}

.loader-h {
    animation-delay: 0.6s;
}

.loader-progress-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.loader-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--accent-color);
    animation: loadProgress 1.6s ease-in-out forwards;
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loadProgress {
    to {
        width: 100%;
    }
}

/* ==================
   Navbar
   ================== */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Logo */
.brand-link {
    display: block;
}

.brand-logo {
    display: flex;
    align-items: center;
    border: 1px solid var(--primary-color);
    padding: 8px 16px;
    gap: 5px;
    background: #fff;
}

.brand-initial {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.brand-accent {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-style: italic;
    font-size: 1rem;
    color: var(--accent-color);
    margin-left: 2px;
}

/* Nav */
.nav-list {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cta-button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    border: 1px solid var(--primary-color);
    display: inline-block;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 18px;
    cursor: pointer;
}

.hamburger-line {
    background-color: var(--primary-color);
    height: 2px;
    width: 100%;
    transition: var(--transition);
}

.hamburger:hover .hamburger-line {
    background-color: var(--accent-color);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background-color: #fff;
    padding: 100px 40px;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
}

.mobile-menu.active {
    right: 0;
}

.close-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-weight: 300;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav-link {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    text-transform: none;
}

.mobile-cta {
    margin-top: 40px;
    text-align: center;
    width: 100%;
}

/* ==================
   Hero
   ================== */
.hero-section {
    padding: 0;
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
}

.hero-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 85vh;
}

.hero-content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--border-color);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.accent-text {
    color: var(--primary-color);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.accent-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(212, 175, 55, 0.3);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #555;
    max-width: 400px;
    font-weight: 300;
}

.hero-btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 18px 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: inline-block;
    align-self: flex-start;
    border: 1px solid var(--primary-color);
}

.hero-btn:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==================
   Sections
   ================== */
.section {
    padding: 120px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 80px;
    color: var(--primary-color);
    font-weight: 400;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background-color: var(--accent-color);
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
}

/* ==================
   Cards
   ================== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background-color: var(--border-color);
    border: 1px solid var(--border-color);
}

.feature-card,
.review-card {
    background: #fff;
    padding: 60px 40px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    background-color: #fcfcfc;
}

.card-title {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
}

.card-description {
    color: #666;
    font-size: 0.95rem;
}

/* ==================
   Reviews
   ================== */
.review-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.reviewer-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
}

/* ==================
   FAQ
   ================== */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    padding: 30px 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-color);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #666;
    padding-right: 40px;
    transition: max-height 0.4s ease;
}

.faq-answer.active {
    max-height: 200px;
    padding-bottom: 30px;
}

.toggle-icon {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
}

/* ==================
   Footer
   ================== */
.footer-section {
    background-color: #000;
    color: #fff;
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 60px;
}

.footer-heading {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    margin-bottom: 30px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-text,
.footer-link {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.footer-link:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-ad-note {
    background: transparent;
    padding: 0;
    text-align: center;
    margin: 0 auto 40px;
    max-width: 800px;
    border: none;
}

.footer-ad-text {
    font-size: 0.75rem;
    color: #555;
    font-family: 'Montserrat', sans-serif;
}

.copyright {
    text-align: center;
    padding-top: 0;
    border-top: none;
    font-size: 0.75rem;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==================
   Modals & Popups
   ================== */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    color: #fff;
    padding: 30px;
    display: none;
    z-index: 2000;
    border-top: 1px solid var(--accent-color);
    text-align: center;
}

.cookie-text {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.cookie-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cookie-btn-accept,
.cookie-btn-reject {
    padding: 10px 30px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    transition: var(--transition);
}

.cookie-btn-accept:hover {
    background: #fff;
    color: #000;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.modal-content {
    border: 1px solid #000;
    padding: 60px;
    background: #fff;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.modal-body {
    font-size: 0.95rem;
    color: #444;
}

/* ==================
   Responsive
   ================== */
@media (max-width: 1200px) {
    .navbar-container {
        padding: 0 20px;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-content {
        padding: 60px 40px;
        border-right: none;
        order: 2;
        text-align: center;
        align-items: center;
    }

    .hero-image-wrapper {
        height: 50vh;
        order: 1;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .header-actions .cta-button {
        display: none;
    }

    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}