
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;1,300&family=Inter:wght@100;200;400;600&display=swap');

:root {
    --color-bg: #FFFFFF;
    --color-text: #1A1A1A;
    --color-gold: #C5A059;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Mármore de Fundo (Textura Minimalista via CSS) */
.marble-texture {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(197, 160, 89, 0.03) 0%, transparent 50%),
                linear-gradient(135deg, #ffffff 0%, #f9f7f2 100%);
    opacity: 1;
    pointer-events: none;
    z-index: -1;
}

/* Navbar: Alabaster Capsule (Floating Luxe) */
.navbar-capsule-wrapper {
    position: fixed;
    top: 2rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    pointer-events: none;
}

.navbar-capsule {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 160, 89, 0.15);
    padding: 0.6rem 2rem;
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

/* Mobile Nav Bottom - Hidden by default */
.mobile-nav-bottom {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    z-index: 2000;
    padding: 0.8rem 1rem 1.8rem; /* Padding extra para iPhone Home Indicator */
    justify-content: space-around;
    align-items: center;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: var(--color-text);
    opacity: 0.6;
    transition: all 0.3s;
}

.mobile-nav-item i {
    width: 20px;
    height: 20px;
    stroke-width: 1.5px;
}

.mobile-nav-item span {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.mobile-nav-item.active, .mobile-nav-item:hover {
    opacity: 1;
    color: var(--color-gold);
}

.mobile-nav-item.nav-cta-gold {
    opacity: 1;
    color: var(--color-gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #1A1A1A;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.4s;
    opacity: 0.6;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--color-gold);
}

.nav-cta-gold {
    color: var(--color-gold) !important;
    font-weight: 700 !important;
    opacity: 1 !important;
}

.nav-cta-admin {
    opacity: 0.4 !important;
    font-size: 0.55rem !important;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
}
.nav-cta-admin:hover {
    opacity: 1 !important;
    background: #000;
    color: #fff !important;
}

/* Mode Switcher FAB */
.mode-switcher-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 54px;
    height: 54px;
    background: #fff;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    z-index: 9999;
    color: var(--color-gold);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}
.mode-switcher-fab i { width: 20px; height: 20px; }
.mode-switcher-fab:hover {
    transform: rotate(180deg) scale(1.1);
    background: var(--color-gold);
    color: #fff;
    border-color: transparent;
}

@media (max-width: 992px) {
    .mode-switcher-fab {
        bottom: 7rem; /* Fica acima da nav mobile */
        right: 1.5rem;
        width: 48px;
        height: 48px;
    }
}

/* Atelier: Layered Editorial */
.atelier-layered-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.atelier-image-block {
    grid-column: 1 / span 8;
    position: relative;
    z-index: 1;
}

.atelier-image-block img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    box-shadow: 0 50px 100px rgba(0,0,0,0.1);
}

.atelier-content-block {
    grid-column: 7 / span 6;
    background: #fff;
    padding: 6rem;
    position: relative;
    z-index: 5;
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
}

.atelier-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2.5rem;
}

.atelier-title i {
    font-style: italic;
    color: var(--color-gold);
}

.atelier-description {
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 300;
    color: rgba(0,0,0,0.6);
    margin-bottom: 3rem;
}

.gold-text { color: var(--color-gold); font-weight: 500; }

.atelier-stats {
    display: flex;
    gap: 4rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 3rem;
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.4;
}

/* Hero: Full-Bleed Editorial Fusion */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 5%;
    background: #F9F7F2; /* Tom de papel nobre */
    overflow: hidden;
}

.hero-canvas-wrapper {
    position: relative;
    width: 90%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-portrait-canvas {
    width: 50%;
    height: 90%;
    position: relative;
    z-index: 5;
    box-shadow: 0 50px 100px rgba(0,0,0,0.15);
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.hero-portrait-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-content {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 300;
    line-height: 0.85;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    color: #1A1A1A;
}

.hero-title .word {
    display: block;
}

.hero-slogan-editorial {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.5em;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-top: 2.5rem;
    font-weight: 600;
}

/* Authority Strip */
.authority-strip {
    padding: 3rem 5%;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

@media (max-width: 768px) {
    .authority-strip {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 4rem 1.5rem;
    }
    .authority-strip .dot { display: none; }
}

.logo-item {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    color: #1A1A1A;
    opacity: 0.4;
    font-weight: 600;
}

.dot {
    width: 3px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0.3;
}

/* Manifesto Section */
.manifesto-section {
    padding: 12rem 5%;
    text-align: center;
    background: #F9F7F2;
}

.manifesto-section p {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.4;
    max-width: 1000px;
    margin: 0 auto;
    color: #1A1A1A;
}

.manifesto-section .italic {
    font-style: italic;
}

/* The Stage Section */
.stage-section {
    background: #fff;
    overflow: hidden;
}

.stage-section .category {
    font-size: 0.55rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    display: block;
}

.stage-section blockquote {
    margin-top: 3rem;
    color: #1A1A1A;
}

/* Sections: White Space Luxury */
.section-magazine {
    padding: 10rem 5%;
}

/* Galeria Assimétrica (Masonry Editorial) */
.editorial-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.grid-item {
    position: relative;
    overflow: hidden;
    background: #fcfcfc;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.grid-item:hover img { transform: scale(1.05); }

.item-large { grid-column: span 6; aspect-ratio: 1; }
.item-tall { grid-column: span 3; aspect-ratio: 9/16; margin-top: 5rem; }
.item-wide { grid-column: span 3; aspect-ratio: 4/5; }

/* Cinema Section (Film Strip Editorial - Compact Edition) */
.cinema-strip-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 2rem 0 4rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cinema-strip-container::-webkit-scrollbar { display: none; }

.cinema-item-compact {
    min-width: 200px;
    max-width: 200px;
    aspect-ratio: 9/16;
    background: #000;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    flex-shrink: 0;
}

.cinema-item-compact:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 60px rgba(197, 160, 89, 0.15);
}

.cinema-item-compact video,
.cinema-item-compact iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    opacity: 0.8;
    transition: opacity 0.5s;
}

.cinema-item-compact:hover video {
    opacity: 1;
}

/* Scroll Indicator for Cinema */
.cinema-scroll-indicator {
    width: 160px;
    height: 2px;
    background: rgba(0, 0, 0, 0.05);
    margin: 1.5rem auto 0;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.cinema-scroll-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 20%;
    background: var(--color-gold);
    border-radius: 10px;
    transition: transform 0.05s ease-out, width 0.05s ease-out;
}

/* --- Cinema Modal (Sovereign Minimalist Edition) --- */
.video-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.video-modal-content {
    width: 80vw;
    height: 85vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 60px 120px rgba(0,0,0,0.15);
}

.modal-main-stage {
    flex-grow: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
}

/* Cinematic Ambient Expansion (Triple Panel) */
.ambient-backdrop {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    background: #000;
}

.ambient-mirror {
    width: 45%;
    height: 100%;
    overflow: hidden;
    opacity: 0.25;
    filter: blur(100px) saturate(1.8);
}

.ambient-mirror video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(2); /* Zoom para preencher lateral */
}

#modal-video-container {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem; 
}

.video-main-focus {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    box-shadow: 0 40px 150px rgba(0,0,0,0.8);
}

.close-modal-btn-top {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 200;
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}


.close-modal-btn-top:hover {
    background: var(--color-gold);
    color: #000;
    transform: rotate(90deg);
}

.modal-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-gold);
    cursor: pointer;
    z-index: 100;
    opacity: 0.3;
    transition: all 0.4s;
}

.modal-nav-arrow:hover {
    opacity: 1;
    color: #fff;
    transform: translateY(-50%) scale(1.2);
}

.modal-nav-arrow.left { left: 40px; }
.modal-nav-arrow.right { right: 40px; }

.modal-nav-arrow i { width: 40px; height: 40px; stroke-width: 1px; }

/* Custom Video Controls */
.video-controls-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 100;
}

.control-trigger {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    opacity: 0.8;
    transition: all 0.3s;
}
.control-trigger:hover { opacity: 1; transform: scale(1.1); color: var(--color-gold); }

.time-display {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: #fff;
    opacity: 0.7;
    font-family: var(--font-body);
    min-width: 80px;
}

.progress-container {
    flex-grow: 1;
    height: 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.progress-bar-bg {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.progress-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--color-gold);
    width: 0%;
    transition: width 0.1s linear;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -4px;
    width: 10px;
    height: 10px;
    background: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-gold);
}

.modal-footer-info {
    padding: 2.5rem 4rem;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-footer-info h2 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 1.6rem;
    font-style: italic;
    letter-spacing: 0.05em;
}

.modal-footer-info span.category {
    font-size: 0.55rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: 0.5rem;
    display: block;
}

.modal-footer-info #modal-counter {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.3;
    font-weight: 600;
}

/* Footer Minimal */
.footer-editorial {
    padding: 8rem 5%;
    border-top: 1px solid rgba(0,0,0,0.03);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* --- Shop / Boutique --- */
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 4rem; }
.product-card { position: relative; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.product-card:hover { transform: translateY(-10px); }
.product-image { aspect-ratio: 4/5; overflow: hidden; background: #f9f9f9; margin-bottom: 2rem; position: relative; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-info { text-align: left; }
.product-name { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; margin-bottom: 0.5rem; font-weight: 500; }
.product-desc { font-size: 0.85rem; opacity: 0.5; margin-bottom: 1.5rem; line-height: 1.6; min-height: 3em; }
.product-price { display: block; font-family: 'Inter', sans-serif; font-weight: 700; color: var(--color-gold); font-size: 1.2rem; margin-bottom: 2rem; }
.btn-buy { width: 100%; padding: 1.2rem; background: transparent; border: 1px solid rgba(0,0,0,0.1); font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer; transition: all 0.3s ease; }
.btn-buy:hover { background: #000; color: #fff; border-color: #000; }

@media (max-width: 768px) {
    .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .product-name { font-size: 1.3rem !important; }
    .product-desc { font-size: 0.75rem !important; margin-bottom: 1rem !important; min-height: 4.8em !important; }
    .product-price { font-size: 1rem !important; margin-bottom: 1.2rem !important; }
    .btn-buy { padding: 0.8rem !important; font-size: 0.6rem !important; }
    /* Nav */
    .navbar-capsule-wrapper { display: none; }
    .mobile-nav-bottom { display: flex; }

    /* Layout & Spacing */
    .section-magazine { padding: 5rem 1.5rem; }
    .manifesto-section { padding: 6rem 1.5rem; }
    .footer-minimalist { padding: 8rem 1.5rem 8rem; }
    
    /* Hero Section */
    .hero { height: auto; padding: 120px 1.5rem 60px; min-height: 100vh; display: flex; align-items: flex-start; }
    .hero-canvas-wrapper { 
        width: 100%; 
        height: auto; 
        flex-direction: column-reverse; 
        justify-content: flex-start;
        align-items: flex-start;
        gap: 3rem;
    }
    .hero-content { position: relative; top: 0; transform: none; width: 100%; }
    .hero-title { font-size: 4.5rem; line-height: 0.9; margin-bottom: 1.5rem; }
    .hero-slogan-editorial { margin-top: 1rem; letter-spacing: 0.3em; }
    .hero-portrait-canvas { 
        width: 100%; 
        height: auto; 
        aspect-ratio: 3/4;
        opacity: 1; 
        box-shadow: 0 30px 60px rgba(0,0,0,0.1);
        border-radius: 4px;
    }
    .hero-portrait-wrapper { width: 100%; opacity: 1; }

    /* Atelier Layered */
    .atelier-layered-container { display: flex; flex-direction: column; gap: 0; }
    .atelier-image-block { grid-column: auto; width: 100%; }
    .atelier-image-block img { height: auto; aspect-ratio: 16/10; }
    .atelier-content-block { 
        grid-column: auto; 
        width: 100%; 
        padding: 3rem 1.5rem; 
        margin-top: -3rem;
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    }
    .atelier-title { font-size: 3rem; margin-bottom: 1.5rem; }
    .atelier-description { font-size: 1rem; margin-bottom: 2rem; }
    .atelier-stats { gap: 2rem; padding-top: 2rem; }

    /* Grids */
    .editorial-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 1.2rem; 
    }
    .grid-item { grid-column: span 1 !important; margin-top: 0 !important; aspect-ratio: 3/4 !important; }
    .grid-item img { object-position: center top !important; }
    .item-large { grid-column: span 2 !important; aspect-ratio: 4/3 !important; }
    
    .cinema-item-compact { min-width: 160px; max-width: 160px; }
    
    /* Modals */
    .video-modal-content { width: 100vw; height: 100vh; border: none; }
    #modal-video-container { padding: 1rem; }
    .modal-nav-arrow { display: none; }
    .modal-footer-info { padding: 1.5rem; flex-direction: column; align-items: flex-start; gap: 1rem; }
    .video-controls-bar { padding: 1rem 1.5rem; gap: 1rem; }
    
    .booking-modal-content { 
        width: 100%; 
        height: 100%; 
        max-width: none; 
        padding: 6rem 1.5rem 2rem; 
        overflow-y: auto; 
    }
    .booking-step-title { font-size: 2.2rem; margin-bottom: 2rem; }
    
    /* Testimonials */
    .testimonial-magazine-grid { gap: 2rem; }
    .testimonial-card { padding: 2rem; }
    
    /* Hide Custom Cursor on Touch */
    .custom-cursor, .custom-cursor-outline { display: none !important; }
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Cursor */
.custom-cursor {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease-out, background-color 0.3s, opacity 0.3s;
}

.custom-cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

/* Voices of Excellence (Testimonials) */
.testimonial-magazine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    padding-top: 4rem;
}

.testimonial-card {
    padding: 3rem;
    border: 1px solid rgba(0,0,0,0.03);
    background: #F9F7F2;
    transition: all 0.5s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.testimonial-card p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #1A1A1A;
    font-style: italic;
}

.testimonial-card cite {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-gold);
    display: block;
}

/* The Grand Finale Footer */
.footer-minimalist {
    padding: 15rem 5% 5rem;
    background: #1A1A1A;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    margin-bottom: 4rem;
    line-height: 1.1;
}

.footer-cta-title i {
    font-style: italic;
    color: var(--color-gold);
}

.footer-cta-btn {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: var(--color-gold);
    color: #000;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.5s;
    border: 1px solid var(--color-gold);
}

.footer-cta-btn:hover {
    background: transparent;
    color: var(--color-gold);
    transform: scale(1.05);
}

.footer-bottom {
    margin-top: 10rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.3s;
}

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

.copyright {
    font-size: 0.65rem;
    opacity: 0.3;
    letter-spacing: 0.1em;
}

/* Real Agenda Layout */
.booking-flex-layout {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.calendar-mini {
    flex: 1.5;
}

.time-slots-container {
    flex: 1;
    border-left: 1px solid rgba(0,0,0,0.05);
    padding-left: 3rem;
}

.time-label {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: 2rem;
}

.time-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.time-slot {
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
}

.time-slot:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.day.selected {
    background: var(--color-gold);
    color: #fff;
}

@media (max-width: 768px) {
    .booking-flex-layout { flex-direction: column; gap: 4rem; }
    .time-slots-container { border-left: none; padding-left: 0; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 3rem; }
}

/* Booking Modal */
.booking-modal {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.booking-modal-content {
    width: 90%;
    max-width: 600px;
    position: relative;
    padding: 4rem;
}

.close-booking {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.3;
    transition: opacity 0.3s;
}

.close-booking:hover { opacity: 1; }

.booking-step {
    display: none;
    animation: fadeIn 0.8s;
}

.booking-step.active {
    display: block;
}

.booking-step-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 3rem;
}

.booking-step-title i { color: var(--color-gold); font-style: italic; }

.service-grid {
    display: grid;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

.service-option {
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.4s;
}

.service-option:hover {
    border-color: var(--color-gold);
    background: #F9F7F2;
}

.service-option h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-option p {
    font-size: 0.7rem;
    opacity: 0.5;
    letter-spacing: 0.1em;
}

/* Calendar Mini */
.calendar-mini {
    background: #fff;
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.03);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s;
}

.day:hover:not(.busy) {
    background: var(--color-gold);
    color: #fff;
}

.day.busy {
    opacity: 0.1;
    cursor: not-allowed;
    text-decoration: line-through;
}

.booking-form input {
    width: 100%;
    padding: 1.5rem;
    border: 1px solid rgba(0,0,0,0.1);
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.btn-finalize {
    width: 100%;
    padding: 1.5rem;
    background: #1A1A1A;
    color: #fff;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-back {
    margin-top: 2rem;
    background: none;
    border: none;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.4;
    cursor: pointer;
}

/* Buttons: Minimalist Outline */
.btn-outline-minimal {
    display: inline-block;
    padding: 1.25rem 3rem;
    border: 1px solid rgba(0,0,0,0.1);
    font-size: 9px;
    letter-spacing: 0.6em;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.btn-outline-minimal:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

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

/* Custom Alert Modal (Bespoke UI) */
.custom-alert {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-alert.active {
    display: flex;
    opacity: 1;
}

.alert-content {
    background: #fff;
    padding: 4rem;
    border-radius: 4px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
    border: 1px solid rgba(197, 160, 89, 0.2);
    animation: alertPop 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.alert-content p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 3rem;
    line-height: 1.4;
    color: #1A1A1A;
    font-weight: 300;
}

@keyframes alertPop {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Stage Section: Authority Grid */
.stage-section .stage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.stage-section .stage-content {
    order: 1;
}

.stage-section .stage-image {
    order: 2;
}

.stage-section .stage-image .image-wrapper {
    position: relative;
}

.stage-section .stage-image .image-border {
    position: absolute;
    inset: -1rem;
    border: 1px solid rgba(197, 160, 89, 0.2);
    z-index: -1;
}

@media (max-width: 992px) {
    .stage-section .stage-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .stage-section .stage-content { order: 1; }
    .stage-section .stage-image { order: 2; }
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .booking-pulse { left: 1rem; bottom: 1rem; padding: 0.6rem 1rem; }
    #pulse-text { font-size: 0.55rem; }
}

/* --- E-COMMERCE CART & CHECKOUT STYLES --- */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 4000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
.cart-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.cart-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 450px;
    max-width: 100%;
    height: 100%;
    background: #FFFFFF;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.05);
    z-index: 4001;
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem 2rem;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-drawer.active {
    right: 0;
}
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1rem;
}
.cart-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 300;
}
.close-cart {
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}
.close-cart:hover { opacity: 1; }
.cart-items-container {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.cart-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    padding-bottom: 1rem;
}
.cart-item-img {
    width: 70px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.cart-item-info {
    flex: 1;
}
.cart-item-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}
.cart-item-price {
    font-size: 0.85rem;
    color: var(--color-gold);
    font-weight: 600;
}
.cart-item-qty-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.5rem;
}
.qty-btn {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border-radius: 50%;
    transition: all 0.3s;
}
.qty-btn:hover {
    border-color: #000;
    background: #000;
    color: #fff;
}
.qty-val { font-size: 0.85rem; font-weight: 600; }
.remove-item {
    background: none;
    border: none;
    color: #cc3333;
    font-size: 0.65rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-top: 0.5rem;
    display: inline-block;
}
.cart-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
}
.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}
.cart-subtotal-val {
    font-weight: 700;
    color: var(--color-gold);
}
.btn-checkout {
    width: 100%;
    padding: 1.2rem;
    background: #1A1A1A;
    color: #fff;
    border: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-checkout:hover {
    background: var(--color-gold);
    color: #fff;
}
.btn-add-to-cart {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.15);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}
.btn-add-to-cart:hover {
    background: #f4f4f4;
}
.btn-buy-now {
    width: 100%;
    padding: 1rem;
    background: var(--color-gold);
    color: #fff;
    border: 1px solid var(--color-gold);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-buy-now:hover {
    background: #000;
    border-color: #000;
}

/* Checkout Flow Modal */
.checkout-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.checkout-modal-overlay.active {
    display: flex;
    opacity: 1;
}
.checkout-modal-box {
    background: #ffffff;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 4px;
    padding: 4rem;
    width: 95%;
    max-width: 500px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.05);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}
.checkout-step { display: none; }
.checkout-step.active { display: block; }
.checkout-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 2rem;
}
.checkout-title i { color: var(--color-gold); font-style: italic; }
.checkout-input-group {
    margin-bottom: 1.5rem;
}
.checkout-input-group label {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.checkout-input-group input, .checkout-input-group select {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid rgba(0,0,0,0.1);
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.9rem;
    border-radius: 4px;
}
.checkout-input-group input:focus, .checkout-input-group select:focus {
    border-color: var(--color-gold);
    outline: none;
}
.payment-methods {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.payment-method-btn {
    flex: 1;
    padding: 1.2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: none;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
}
.payment-method-btn.active {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: #F9F7F2;
}
.pix-qr-container {
    text-align: center;
    padding: 1.5rem;
    background: #F9F7F2;
    border: 1px dashed rgba(197, 160, 89, 0.3);
    border-radius: 4px;
    margin-bottom: 1.5rem;
}
.pix-qr-code {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
}
.btn-copy-pix {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.15);
    padding: 0.6rem 1.2rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-copy-pix:hover { background: #000; color: #fff; border-color: #000; }
.checkout-nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}
.close-checkout-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.3;
    transition: opacity 0.3s;
}
.close-checkout-btn:hover { opacity: 1; }
.nav-cart-btn {
    color: #1A1A1A;
    opacity: 0.6;
    transition: all 0.3s;
    cursor: pointer;
}
.nav-cart-btn:hover {
    opacity: 1;
    color: var(--color-gold);
}

/* ─────── TAILWIND UTILITY FALLBACKS & RESPONSIVE FIXES ─────── */
img, video {
    max-width: 100%;
    height: auto;
}

.w-full {
    width: 100% !important;
}

.h-full {
    height: 100% !important;
}

.mb-20 {
    margin-bottom: 5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mt-20 {
    margin-top: 5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-6xl {
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.1;
}

.text-lg {
    font-size: 1.1rem;
}

.font-light {
    font-weight: 300;
}

.leading-relaxed {
    line-height: 1.7;
}

.opacity-70 {
    opacity: 0.7;
}

.opacity-80 {
    opacity: 0.8;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .mt-20 {
        margin-top: 3.5rem;
    }
    .mb-20 {
        margin-bottom: 3rem;
    }
    .text-right {
        text-align: center;
    }
}

