/* ==========================================================================
   CSS Reset & Variables
   ========================================================================== */
:root {
    /* Colors */
    --c-wine: #7A1F1F;
    --c-wine-hover: #5d1616;
    --c-black: #0a0a0a;
    --c-dark-gray: #121212;
    --c-gray-border: rgba(255, 255, 255, 0.1);
    --c-gray-text: #a1a1aa;
    --c-white: #ffffff;
    --c-gold: #c5a059;
    --c-green: #22c55e;

    /* Typography */
    --f-outfit: 'Outfit', system-ui, sans-serif;
    --f-inter: 'Inter', system-ui, sans-serif;
    --f-space-mono: 'Space Mono', monospace;

    /* Metrics */
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Z-Index */
    --z-nav: 50;
    --z-modal: 100;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--f-inter);
    background-color: var(--c-black);
    color: var(--c-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::-moz-selection {
    background: var(--c-wine);
    color: var(--c-white);
}

::selection {
    background: var(--c-wine);
    color: var(--c-white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Layout & Utilities
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 8rem 0;
}

.section-dark {
    background-color: var(--c-black);
}

.section-gray {
    background-color: var(--c-dark-gray);
}

/* ==========================================================================
   Section Brand Styling (Dividers)
   ========================================================================== */
.premium-divider {
    position: relative;
    width: 10px;
    height: 10px;
    border: 2px solid var(--c-wine);
    border-radius: 50%;
    background-color: transparent;
    box-shadow: 
        0 0 8px rgba(122, 31, 31, 0.4),
        -18px 0 0 -3px var(--c-wine),
        18px 0 0 -3px var(--c-wine);
    margin: -5px auto;
    z-index: 10;
    cursor: pointer;
    transition: 
        border-color 0.4s ease, 
        box-shadow 0.4s ease, 
        transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-divider:hover {
    border-color: var(--c-gold);
    box-shadow: 
        0 0 15px rgba(197, 160, 89, 0.6),
        -18px 0 0 -3px var(--c-gold),
        18px 0 0 -3px var(--c-gold);
    transform: scale(1.2);
}

.premium-divider::before,
.premium-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    width: 120px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    background-clip: content-box;
    transition: 
        width 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
        right 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
        left 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
        background 0.4s ease;
}

.premium-divider::before {
    right: 28px;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.15), transparent);
}

.premium-divider:hover::before {
    width: 180px;
    right: 32px;
    background: linear-gradient(to left, var(--c-gold), transparent);
}

.premium-divider::after {
    left: 28px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.15), transparent);
}

.premium-divider:hover::after {
    width: 180px;
    left: 32px;
    background: linear-gradient(to right, var(--c-gold), transparent);
}




.border-t {
    border-top: 1px solid var(--c-gray-border);
}

.border-y {
    border-top: 1px solid var(--c-gray-border);
    border-bottom: 1px solid var(--c-gray-border);
}

.text-wine {
    color: var(--c-wine);
}

.text-gold {
    color: var(--c-gold);
}

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

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--f-outfit);
    font-weight: 800;
    line-height: 1.1;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-text {
    color: var(--c-gray-text);
    font-size: 1.125rem;
    max-width: 60ch;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header.text-left {
    text-align: left;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.5rem;
    }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-family: var(--f-outfit);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid transparent;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--c-wine);
    color: var(--c-white);
}

.btn-primary:hover {
    background-color: var(--c-wine-hover);
}

.btn-secondary,
.btn-outline {
    background-color: transparent;
    color: var(--c-white);
    border-color: var(--c-gray-border);
}

.btn-secondary:hover,
.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--c-white);
}

.btn-white {
    background-color: var(--c-white);
    color: var(--c-wine);
}

.btn-white:hover {
    background-color: #f3f4f6;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Header & Nav
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: var(--z-nav);
    transition: var(--transition);
    border-bottom: 1px solid transparent; /* Prevents flashing when scrolling */
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: var(--c-gray-border);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
}

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

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

.nav-desktop {
    display: none;
    gap: 2.5rem;
}

.nav-link {
    position: relative;
    font-family: var(--f-inter);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 5px;
    height: 5px;
    border: 1.5px solid var(--c-wine);
    border-radius: 50%;
    background-color: transparent;
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.nav-link:hover {
    color: var(--c-wine);
}

.nav-link:hover::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.header-actions {
    display: none;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: calc(var(--z-nav) + 1);
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--c-white);
    transition: var(--transition);
}

.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: var(--z-nav);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-link {
    font-family: var(--f-outfit);
    font-size: 2rem;
    font-weight: 800;
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--c-wine);
}

.mt-medium {
    margin-top: 1.5rem;
}

/* Hamburger Open State */
.menu-toggle.open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {

    .nav-desktop,
    .header-actions {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    overflow: hidden;
}

.hero-spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(122, 31, 31, 0.12) 0%,
        rgba(122, 31, 31, 0.03) 50%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 1;
    transform: translate3d(0, 0, 0) translate3d(-50%, -50%, 0);
    opacity: 0;
    will-change: transform, opacity;
    transition: opacity 0.6s ease;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: var(--c-black);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.2) 100%),
        linear-gradient(to top, rgba(10, 10, 10, 1) 0%, transparent 40%);
}

/* Scroll Indicator at the bottom of Hero */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    pointer-events: none;
    opacity: 0.8;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.scroll-dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--c-wine);
    border-radius: 50%;
    animation: scroll-bounce 2s infinite ease-in-out;
}

.scroll-text {
    font-family: var(--f-outfit);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-gray-text);
}

@keyframes scroll-bounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}

.hero-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #d1d5db;
    max-width: 50ch;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.hero-buttons .btn {
    width: 100%;
}

.hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ==========================================================================
   Villas 3D Tilt Card
   ========================================================================== */
.villas-tilt-card {
    position: relative;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    perspective: 1200px;
    transform-style: preserve-3d;
    cursor: pointer;
}

.tilt-card-inner {
    position: relative;
    width: 100%;
    border-radius: 24px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    will-change: transform;
    /* Resting transition: returns smoothly when mouse leaves the Hero completely */
    transition: 
        box-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.5s ease,
        background 0.5s ease;
}

/* Remote hover transition: tracks mouse inside Hero but outside card with a smooth lag */
.hero:hover .tilt-card-inner {
    transition: 
        box-shadow 0.6s ease,
        border-color 0.5s ease,
        background 0.5s ease;
}

/* Direct hover transition: tracks mouse inside the card with sharp precision */
.villas-tilt-card:hover .tilt-card-inner {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(122, 31, 31, 0.4);
    box-shadow: 
        0 40px 80px rgba(122, 31, 31, 0.15),
        0 20px 40px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: 
        box-shadow 0.5s ease,
        border-color 0.5s ease,
        background 0.5s ease;
}

.villas-tilt-card:active .tilt-card-inner {
    transform: scale(0.98) !important;
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 18px;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: translateZ(10px);
}

.card-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.villas-tilt-card:hover .card-main-image {
    transform: scale(1.05);
}

.card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.8) 0%,
        rgba(10, 10, 10, 0.2) 50%,
        transparent 100%
    );
    z-index: 1;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    /* High-contrast solid dark background to avoid subpixel gradient rendering glitches under 3D transforms */
    background-color: #141414;
    border-radius: 16px;
    /* Use shadow-based simulated border to prevent subpixel anti-aliasing gaps and black lines under 3D transforms */
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.12),
        0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 10; /* Elevated z-index */
    pointer-events: none;
    transition: box-shadow 0.3s ease;

    /* Project badges forward statically in 3D space to sit in front of the tilted card without rotating */
    transform: translateZ(50px);

    /* Enable true 3D spatial scaling instead of flat bitmap rasterization */
    transform-style: preserve-3d;

    /* Prevent subpixel clipping and compositor glitches */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    background-clip: padding-box;

    /* Font rendering & subpixel anti-aliasing optimizations */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
}

.badge-content {
    /* Prevent layer promotion to keep text drawing directly on the sharp vector plane */
    transform: none;
}

.villas-tilt-card:hover .floating-badge {
    /* Update simulated border color on hover */
    box-shadow: 
        0 0 0 1px rgba(197, 160, 89, 0.3),
        0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Positioning for Static Badges (Unaffected by 3D Tilt - Overlapping opposite vertices aggressively) */
.badge-music {
    top: 16px;
    left: -42px;
}

.badge-espeto {
    bottom: 16px;
    right: -42px;
}

.badge-icon {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(122, 31, 31, 0.15);
    border: 1px solid rgba(122, 31, 31, 0.2);
    width: 38px;
    height: 38px;
    border-radius: 10px;
    flex-shrink: 0;
}

.badge-content h4 {
    font-family: var(--f-outfit);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--c-white);
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.badge-content p {
    font-family: var(--f-inter);
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75); /* High-contrast white for crisp readability on dark bg */
    margin: 4px 0 0 0;
    line-height: 1;
}

/* Card Decorative Brand */
.card-details {
    position: absolute;
    bottom: 24px;
    left: 28px;
    z-index: 3;
    transform: translateZ(40px);
    pointer-events: none;
}

.card-brand {
    font-family: var(--f-outfit);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.22);
    transition: color 0.5s ease;
    will-change: color;
}

.villas-tilt-card:hover .card-brand {
    color: var(--c-gold);
}

/* Live Pulse Indicator for Music */
.badge-music::after {
    content: '';
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    background-color: var(--c-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--c-green);
    animation: badge-pulse 1.8s infinite ease-in-out;
}

@keyframes badge-pulse {
    0% {
        transform: scale(0.85);
        opacity: 0.5;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(0.85);
        opacity: 0.5;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@media (max-width: 480px) {
    .floating-badge {
        padding: 8px 12px;
        gap: 8px;
        border-radius: 12px;
    }
    .badge-music {
        left: -10px;
        top: 20px;
    }
    .badge-rating {
        right: -10px;
        bottom: 20px;
    }
    .badge-espeto {
        right: -15px;
    }
    .badge-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    .badge-content h4 {
        font-size: 0.85rem;
    }
    .badge-content p {
        font-size: 0.7rem;
    }
    .card-brand {
        font-size: 1.4rem;
    }
}

.ticket-link {
    display: block;
    text-decoration: none;
    outline: none;
}

.villas-ticket {
    background: linear-gradient(145deg, #181818 0%, #0a0a0a 100%);
    border: 1px solid rgba(197, 160, 89, 0.15); /* Premium gold border */
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.4s ease;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
}

.ticket-link:hover .villas-ticket {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--c-gold);
    box-shadow: 0 35px 70px rgba(197, 160, 89, 0.18);
}

/* Ticket Main Section */
.ticket-main {
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(197, 160, 89, 0.2);
    padding-bottom: 0.85rem;
}

.ticket-tag {
    font-family: var(--f-outfit);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--c-gold); /* Gold tags look extremely high-end */
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ticket-serial {
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--c-gray-text);
    letter-spacing: 0.05em;
}

/* Loop Animation Inside Ticket */
.animated-loop-container {
    position: relative;
    height: 60px;
}

.loop-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
}

.loop-item.item-1 {
    animation: loop-fade-1 9s infinite ease-in-out;
}

.loop-item.item-2 {
    animation: loop-fade-2 9s infinite ease-in-out;
}

.loop-item.item-3 {
    animation: loop-fade-3 9s infinite ease-in-out;
}

.ticket-icon-box {
    width: 52px;
    height: 52px;
    background-color: #121212;
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, background-color 0.3s ease;
}

.ticket-link:hover .ticket-icon-box {
    transform: scale(1.08) rotate(-4deg);
    border-color: var(--c-gold);
    background-color: #161616;
}

.loop-text strong {
    display: block;
    font-family: var(--f-outfit);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--c-white);
    letter-spacing: -0.01em;
}

.loop-text span {
    font-size: 0.9rem;
    color: var(--c-gray-text);
    display: block;
    margin-top: 0.2rem;
}

/* Ticket Divider / Perforation */
.ticket-divider {
    position: relative;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashed-line {
    width: calc(100% - 32px);
    border-top: 1px dashed rgba(197, 160, 89, 0.2);
}

.notch {
    width: 20px;
    height: 20px;
    background-color: #0a0a0a; /* Matches body background */
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 50%;
    position: absolute;
    z-index: 5;
    transition: border-color 0.3s ease;
}

.ticket-link:hover .notch {
    border-color: var(--c-gold);
}

.notch-left {
    left: -11px;
}

.notch-right {
    right: -11px;
}

/* Ticket Stub Section */
.ticket-stub {
    padding: 1.5rem 1.5rem;
    background: linear-gradient(to right, rgba(197, 160, 89, 0.02), rgba(122, 31, 31, 0.02));
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stub-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stub-title {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--c-wine);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.stub-action {
    font-family: var(--f-outfit);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--c-white);
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.ticket-link:hover .stub-action {
    color: var(--c-gold);
    transform: translateX(4px);
}

/* Barcode */
.ticket-barcode {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 38px;
    opacity: 0.35;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.ticket-link:hover .ticket-barcode {
    opacity: 0.8;
    transform: scaleX(1.05);
}

.bar {
    width: 2px;
    background-color: var(--c-white);
    border-radius: 1px;
}

.bar-1 { height: 70%; }
.bar-2 { height: 100%; width: 3px; }
.bar-3 { height: 50%; }
.bar-4 { height: 85%; }
.bar-5 { height: 35%; }
.bar-6 { height: 95%; width: 1px; }
.bar-7 { height: 60%; }
.bar-8 { height: 100%; width: 3px; }
.bar-9 { height: 45%; }
.bar-10 { height: 80%; }

/* Keyframe animations for transitions */
@keyframes loop-fade-1 {
    0%, 30% {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
    33%, 97% {
        opacity: 0;
        transform: translateY(-12px);
        visibility: hidden;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
}

@keyframes loop-fade-2 {
    0%, 30% {
        opacity: 0;
        transform: translateY(12px);
        visibility: hidden;
    }
    33%, 63% {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
    66%, 100% {
        opacity: 0;
        transform: translateY(-12px);
        visibility: hidden;
    }
}

@keyframes loop-fade-3 {
    0%, 63% {
        opacity: 0;
        transform: translateY(12px);
        visibility: hidden;
    }
    66%, 96% {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
    100% {
        opacity: 0;
        transform: translateY(-12px);
        visibility: hidden;
    }
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #d1d5db;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-features .emoji {
    font-size: 1.25rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }

    .hero-buttons .btn {
        width: auto;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 7fr 5fr;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .hero-sidebar {
        padding-left: 4.5rem;
        border-left: none;
    }

    .villas-tilt-card {
        margin-left: auto;
        margin-right: 0;
    }
}

/* ==========================================================================
   Trust Bar
   ========================================================================== */
.trust-bar {
    background-color: var(--c-dark-gray);
    border-top: 1px solid var(--c-gray-border);
    border-bottom: 1px solid var(--c-gray-border);
    padding: 1.25rem 0;
    overflow: hidden;
    display: flex;
    width: 100%;
    cursor: grab;
    user-select: none;
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
    animation: none !important;
    transition: none !important;
}

.marquee-content {
    display: flex;
    align-items: center;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--f-inter);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--c-gray-text);
    white-space: nowrap;
}

.trust-bar-separator {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid var(--c-wine);
    background-color: transparent;
    margin: 0 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 0 5px rgba(122, 31, 31, 0.4);
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (min-width: 768px) {
    .trust-bar-container {
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .trust-bar-separator {
        display: block;
    }
}

/* ==========================================================================
   Split Layout (Experience & Location)
   ========================================================================== */
.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.split-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.image-border {
    position: absolute;
    inset: 0;
    border: 1px solid var(--c-gray-border);
    border-radius: var(--border-radius-lg);
    pointer-events: none;
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.action-row {
    margin-top: 1rem;
}

@media (min-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .split-image {
        aspect-ratio: 1/1;
    }
}

/* ==========================================================================
   Bento Grid (Highlights)
   ========================================================================== */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    grid-auto-rows: 320px;
}

.bento-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background-color: var(--c-black);
    border: 1px solid var(--c-gray-border);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.bento-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.bento-card:hover .bento-img {
    transform: scale(1.06);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.2) 60%, transparent 100%);
    pointer-events: none;
    transition: var(--transition);
}

.bento-card:hover .bento-overlay {
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.1) 60%, transparent 100%);
}

.bento-content {
    position: absolute;
    inset: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: none;
}

.bento-icon {
    font-size: 2rem;
    margin-bottom: auto;
}

.bento-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.bento-title-large {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.bento-text {
    font-size: 0.875rem;
    color: #d1d5db;
}

.bento-text-light {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.bento-cta {
    background: linear-gradient(135deg, var(--c-wine) 0%, #4a0d0d 100%);
    background-size: 150% 150%;
    background-position: 0% 0%;
    border: none;
    transition: 
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        background-position 0.4s ease;
}

.bento-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(122, 31, 31, 0.35);
    background-position: 100% 100%;
}

.bento-content-cta {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.link-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--f-outfit);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: var(--c-white);
    transition: color 0.3s ease;
}

.link-cta .arrow {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-cta:hover .link-cta {
    color: var(--c-gold);
}

.bento-cta:hover .link-cta .arrow {
    transform: translateX(6px);
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-hero {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bento-cta {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 280px;
    }

    .bento-hero {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bento-card:nth-child(2) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-card:nth-child(3) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-card:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-cta {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* ==========================================================================
   Features Grid
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

.feature-item:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background-color: var(--c-dark-gray);
    border: 1px solid var(--c-gray-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.feature-title {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.feature-text {
    font-size: 0.875rem;
    color: var(--c-gray-text);
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

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

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   Reviews
   ========================================================================== */
.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.rating-score {
    font-family: var(--f-outfit);
    font-weight: 900;
    font-size: 2.5rem;
}

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

.review-card {
    background-color: var(--c-dark-gray);
    border: 1px solid var(--c-gray-border);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
}

.review-stars {
    color: var(--c-gold);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: #d1d5db;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--c-wine);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--f-outfit);
}

.author-name {
    font-family: var(--f-outfit);
    font-weight: 700;
    font-size: 0.875rem;
}

.author-label {
    font-size: 0.75rem;
    color: var(--c-gray-text);
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   Location & Map
   ========================================================================== */
.location-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.location-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.location-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--c-gray-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.location-label {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.location-value {
    color: var(--c-gray-text);
}

.location-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .location-actions {
        flex-direction: row;
    }
}

.map-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--c-gray-border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.map-container {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

/* Leaflet Dark Theme Overrides */
.leaflet-layer {
    /* Native CartoDB Dark Matter is already dark, no need to invert it. We apply a subtle contrast adjustment for a premium dark look. */
    filter: brightness(0.85) contrast(1.1) saturate(0.9);
}

.leaflet-container {
    background-color: var(--c-black) !important;
}

.leaflet-control-attribution {
    background-color: rgba(10, 10, 10, 0.8) !important;
    color: var(--c-gray-text) !important;
    backdrop-filter: blur(4px);
}

/* Custom Zoom Controls */
.leaflet-bar {
    border: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5) !important;
    border-radius: 8px !important;
    overflow: hidden;
}

.leaflet-bar a {
    background-color: var(--c-black) !important;
    color: var(--c-white) !important;
    border-bottom: 1px solid var(--c-gray-border) !important;
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
    font-size: 1.25rem !important;
    transition: var(--transition) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.leaflet-bar a:last-child {
    border-bottom: none !important;
}

.leaflet-bar a:hover {
    background-color: var(--c-wine) !important;
    color: var(--c-white) !important;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    position: relative;
    padding: 12rem 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--c-black);
}

/* Transição suave do mapa (#localizacao - #121212) para a seção de reservas */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, var(--c-dark-gray), transparent);
    z-index: 2;
    pointer-events: none;
}

/* Transição suave para o rodapé */
.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--c-black), transparent);
    z-index: 2;
    pointer-events: none;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    filter: grayscale(30%) contrast(1.1);
}

/* Gradiente radial escuro e luxuoso com leve centro vinho */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(122, 31, 31, 0.12) 0%, rgba(10, 10, 10, 0.98) 100%);
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 750px;
    display: flex;
    justify-content: center;
    padding: 0 1.5rem;
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
    width: 100%;
}

.cta-eyebrow {
    font-family: var(--f-space-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--c-gold);
    font-weight: 500;
}

.cta-title {
    font-family: var(--f-outfit);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--c-white);
    max-width: 24ch;
    letter-spacing: -0.02em;
}

.cta-text {
    font-family: var(--f-inter);
    font-size: 1.075rem;
    color: #a3a3a3;
    max-width: 52ch;
    line-height: 1.65;
}

/* Botão de Reserva Premium (Vinho e Ouro) */
.btn-wine-premium {
    background-color: var(--c-wine);
    color: var(--c-white);
    border: 1px solid transparent;
    padding: 1.1rem 2.8rem;
    font-size: 1.05rem;
    border-radius: 9999px;
    letter-spacing: 0.05em;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-wine-premium:hover {
    background-color: var(--c-wine-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(122, 31, 31, 0.35);
}

.btn-wine-premium:active {
    transform: translateY(0) scale(0.98);
}

/* Responsividade Adaptativa Sênior */
@media (max-width: 768px) {
    .cta-section {
        padding: 6rem 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--c-black);
    padding-top: 4rem;
    padding-bottom: 2rem;
    border-top: 1px solid var(--c-gray-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: block;
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--c-gray-text);
    margin-bottom: 1.5rem;
    max-width: 30ch;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--c-gray-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--c-wine);
    border-color: var(--c-wine);
}

.footer-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--c-gray-text);
    transition: var(--transition);
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -12px;
    width: 5px;
    height: 5px;
    border: 1.5px solid var(--c-wine);
    border-radius: 50%;
    background-color: transparent;
    opacity: 0;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease, left 0.3s ease;
}

.footer-links a:hover {
    color: var(--c-wine);
    padding-left: 12px;
}

.footer-links a:hover::before {
    left: 0;
    opacity: 1;
    transform: scale(1);
}

.footer-links li {
    color: var(--c-gray-text);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--c-gray-border);
    font-size: 0.75rem;
    color: #6b7280;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ==========================================================================
   Map Fullscreen Styles
   ========================================================================== */
.map-fullscreen-overlay {
    position: fixed;
    z-index: 9999;
    background-color: var(--c-black);
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.map-fullscreen-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.map-fullscreen-overlay #map {
    width: 100%;
    height: 100%;
    flex-grow: 1;
}

.map-loader {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background-color: var(--c-black);
    z-index: 10;
}

.loader-text {
    font-family: var(--f-outfit);
    color: var(--c-white);
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    animation: pulse-opacity 1.5s infinite;
}

@keyframes pulse-opacity {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--c-gray-border);
    border-top-color: var(--c-wine);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.map-fullscreen-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
    width: 40px;
    height: 40px;
    background-color: var(--c-black);
    color: var(--c-white);
    border: 1px solid var(--c-gray-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.map-fullscreen-btn:hover {
    background-color: var(--c-wine);
    border-color: var(--c-wine);
    transform: scale(1.05);
}

/* ==========================================================================
   Animations & Scroll Reveal Classes
   ========================================================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-opacity {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.is-revealed {
    opacity: 1;
    transform: translate(0);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-150 {
    transition-delay: 150ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

.delay-500 {
    transition-delay: 500ms;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {

    *,
    ::before,
    ::after {
        animation-delay: -1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        background-attachment: initial !important;
        scroll-behavior: auto !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }

    .reveal-up,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   Custom Leaflet Marker
   ========================================================================== */
.custom-leaflet-marker {
    background: transparent;
    border: none;
}

.map-marker-pulse {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-core {
    width: 16px;
    height: 16px;
    background-color: var(--c-wine);
    border: 2px solid white;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 15px rgba(122, 31, 31, 0.8);
}

.marker-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--c-wine);
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    z-index: 1;
}

.marker-shadow {
    position: absolute;
    width: 20px;
    height: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    bottom: -5px;
    filter: blur(2px);
    z-index: 0;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ==========================================================================
   Custom Cursor Follower
   ========================================================================== */
.custom-cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--c-wine);
    border-radius: 50%;
    background-color: transparent;
    pointer-events: none;
    z-index: 10000;
    transform: translate3d(0, 0, 0) translate3d(-50%, -50%, 0);
    opacity: 0;
    will-change: transform, width, height, opacity;
    transition: 
        width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.3s ease,
        box-shadow 0.4s ease,
        opacity 0.3s ease;
}

.custom-cursor-follower.cursor-hover {
    width: 50px;
    height: 50px;
    border-color: var(--c-wine);
    box-shadow: 0 0 15px rgba(122, 31, 31, 0.4);
}

@media (hover: none) {
    .custom-cursor-follower {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .custom-cursor-follower {
        display: none !important;
    }
}

/* Custom Modern SVG Icons */
.badge-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.8;
}
.feature-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 1.5;
}
.location-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.8;
}