:root {
    --ebony: #0a0a0a;
    --crimson: #8b0000;
    --gold: #d4af37;
    --silk: #1c1c1c;
    --ivory: #f8f4e6;
    --shadow-soft: 0 8px 32px rgba(139, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(139, 0, 0, 0.5);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    line-height: 1.8;
    color: var(--ivory);
    background: var(--ebony);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

a.marco,
a.marco:hover,
a.marco:visited,
a.marco:active {
    color: #ff0000 !important;
    text-decoration: none !important;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* A. Navbar: Fixed, Ethereal Glow */

.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    font-weight: 500;
    color: var(--ivory);
    position: relative;
    transition: var(--transition-smooth);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--crimson);
    transition: var(--transition-smooth);
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--ivory);
    cursor: pointer;
}

/* B. Hero Banner: Full-Width, Immersive */

.hero-banner {
    height: 100vh;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    align-items: center;
}

.banner-overlay {
    background: linear-gradient(rgba(10, 10, 10, 0.6), rgba(139, 0, 0, 0.4));
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
}

.banner-overlay h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1rem;
    text-shadow: var(--shadow-glow);
}

.banner-overlay p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.banner-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-smooth);
}

.btn:hover::before {
    left: 100%;
}

.btn-call {
    background: var(--crimson);
    color: var(--ivory);
    box-shadow: var(--shadow-glow);
}

.btn-wa {
    background: #128c7e;
    color: var(--ivory);
}

/* General Sections */

.content-section,
.gallery-section,
.table-section,
.faq-section,
.reviews-section,
.contact-section {
    padding: 2rem 0;
}

.bg-silk {
    background: linear-gradient(135deg, var(--silk) 0%, var(--ebony) 100%);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle,
.section-accent {
    font-family: var(--font-serif);
    color: #fb1111;
    text-align: center;
}

.section-accent {
    font-size: 1.5rem;
    opacity: 0.9;
}

.content-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
    font-size: 1.1rem;
    line-height: 1.9;
    opacity: 0.95;
}

/* D. Full Video */

.video-section {
    padding: 0;
}

.full-video {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    box-shadow: var(--shadow-soft);
}

/* F. Profile Grid: 3-Col Luxe Cards */

.gallery-section {
    background: var(--silk);
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.profile-card {
    background: rgba(28, 28, 28, 0.8);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
}

.profile-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-glow);
}

.card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.profile-card:hover .card-image img {
    transform: scale(1.1);
}

.verified-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--ebony);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.card-content {
    padding: 1.5rem;
    text-align: center;
}

.card-content h3 {
    font-family: var(--font-serif);
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.details,
.location {
    font-size: 0.9rem;
    color: #ccc;
    margin: 0.5rem 0;
}

.bio {
    font-style: italic;
    color: var(--ivory);
    margin: 1rem 0;
    font-size: 1rem;
}

.stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin: 1rem 0;
}

.card-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.card-buttons .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

/* H. Table */

.luxury-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-top: 2rem;
}

.luxury-table th {
    background: var(--crimson);
    color: var(--ivory);
    padding: 1.2rem;
    text-align: center;
    font-weight: 600;
}

.luxury-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* I & L. Tags */

.tags-section {
    padding: 3rem 0;
    text-align: center;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.tag-cloud a {
    background: rgba(139, 0, 0, 0.3);
    color: var(--ivory);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.tag-cloud a:hover {
    background: var(--crimson);
    transform: translateY(-2px);
}

/* J. FAQ */

.faq-container {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    background: rgba(28, 28, 28, 0.5);
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
}

.faq-question {
    background: var(--crimson);
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.faq-item:hover .faq-question {
    background: #a00000;
}

.faq-answer {
    padding: 1.5rem;
    display: none;
    background: rgba(255, 255, 255, 0.05);
}

.faq-item.open .faq-answer {
    display: block;
}

/* K. Reviews */

.review-grid {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 2rem auto 0;
}

.review-grid blockquote {
    font-style: italic;
    padding: 2rem;
    background: rgba(139, 0, 0, 0.2);
    border-left: 4px solid var(--gold);
    border-radius: 10px;
}

/* M. Split Layout */

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: start;
}

.address-box {
    padding: 2rem;
    background: rgba(28, 28, 28, 0.6);
    border-radius: 15px;
}

.map-box iframe {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    border: none;
}

/* N. Disclaimer */

.disclaimer-section {
    padding: 3rem 0;
    background: var(--silk);
    text-align: center;
    opacity: 0.8;
}

/* O. Footer */

.footer {
    background: var(--ebony);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.9rem;
}

/* Responsive: Fluid & Flawless */

@media (max-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr;
    }
    .profile-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    .nav-menu.active {
        display: flex;
    }
    .banner-cta {
        flex-direction: column;
        align-items: center;
    }
    .hero-banner {
        height: 80vh;
        background-attachment: scroll;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .tag-cloud {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }
    .profile-grid {
        grid-template-columns: 1fr;
    }
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}