@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --c1: #8B2252;
    --c2: #C2185B;
    --c3: #5C1035;
    --acc: #D4956A;
    --acc2: #E8C4A8;
    --g1: #4A7C59;
    --g2: #2D5A3A;
    --gold: #C9A96E;
    --bg: #FEFBF6;
    --bgw: #FFF8F0;
    --tx: #2C2C2C;
    --txl: #6B6B6B;
    --tw: #FEFEFE;
    --sh: 0 8px 30px rgba(0, 0, 0, .08);
    --shl: 0 20px 60px rgba(0, 0, 0, .12);
    --r: 16px;
    --t: all .4s cubic-bezier(.25, .46, .45, .94)
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html,
body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--tx);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased
}


.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--t)
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--t)
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem
}


.top-bar {
    background: var(--c3);
    color: var(--tw);
    padding: 8px 0;
    font-size: .8rem
}

.top-bar .container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap
}

.top-bar a {
    color: var(--tw);
    opacity: .85
}

.top-bar a:hover {
    opacity: 1
}


.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(254, 251, 246, .96);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, .05)
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c1)
}

.logo small {
    display: block;
    font-size: .6rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--acc)
}


.nav-menu {
    list-style: none;
    display: flex;
    gap: 0;
    align-items: center
}

.nav-menu>li>a {
    padding: .6rem 1rem;
    font-size: .85rem;
    font-weight: 500;
    color: var(--tx);
    position: relative;
    display: block
}

.nav-menu>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--c2);
    transition: var(--t);
    transform: translateX(-50%)
}

.nav-menu>li>a:hover {
    color: var(--c1)
}

.nav-menu>li>a:hover::after {
    width: 60%
}

.nav-cta {
    background: var(--c1) !important;
    color: #fff !important;
    padding: .55rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(139, 34, 82, .3)
}

.nav-cta:hover {
    background: var(--c2) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 34, 82, .4)
}

.nav-cta::after {
    display: none !important
}


.has-dropdown {
    position: relative
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    border-radius: 0 0 12px 12px;
    box-shadow: var(--shl);
    padding: .5rem 0;
    z-index: 100;
    list-style: none
}

.dropdown li a {
    padding: .6rem 1.2rem;
    font-size: .83rem;
    display: block;
    color: var(--tx)
}

.dropdown li a:hover {
    background: var(--bgw);
    color: var(--c1)
}


.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--tx);
    margin: 5px 0;
    transition: var(--t)
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.active span:nth-child(2) {
    opacity: 0
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}


.hero {
    position: relative;
    height: 90vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.hero-slider {
    position: absolute;
    inset: 0
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease
}

.hero-slide.active {
    opacity: 1
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .1), rgba(44, 20, 30, .6))
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 0 2rem
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 30px rgba(0, 0, 0, .3);
    animation: fadeUp 1s ease-out
}

.hero-content p {
    font-size: 1.15rem;
    opacity: .92;
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeUp 1s ease-out .2s backwards
}

.hero-btn {
    display: inline-block;
    background: var(--c1);
    color: #fff;
    padding: .9rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    box-shadow: 0 8px 30px rgba(139, 34, 82, .4);
    animation: fadeUp 1s ease-out .4s backwards
}

.hero-btn:hover {
    background: var(--c2);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(139, 34, 82, .5)
}


.section {
    padding: 90px 2rem
}

.section .container {
    max-width: 1200px;
    margin: 0 auto
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem
}

.section-header .label {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--c2);
    margin-bottom: .6rem
}

.section-header h2 {
    font-size: 2.6rem;
    color: var(--c3);
    margin-bottom: .8rem
}

.section-header p {
    font-size: 1rem;
    color: var(--txl);
    max-width: 600px;
    margin: 0 auto
}


.apt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem
}

.apt-card {
    background: #fff;
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--sh);
    transition: var(--t)
}

.apt-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shl)
}

.apt-card-img {
    height: 240px;
    overflow: hidden;
    position: relative
}

.apt-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease
}

.apt-card:hover .apt-card-img img {
    transform: scale(1.08)
}

.apt-price {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--c1);
    color: #fff;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600
}

.apt-card-body {
    padding: 1.6rem
}

.apt-card-body h3 {
    font-size: 1.4rem;
    color: var(--c3);
    margin-bottom: .5rem
}

.apt-card-body p {
    color: var(--txl);
    font-size: .88rem;
    margin-bottom: 1rem;
    line-height: 1.6
}

.apt-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: 1.2rem
}

.apt-tags span {
    background: var(--bgw);
    font-size: .75rem;
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 500
}

.apt-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--c1);
    font-weight: 600;
    font-size: .88rem
}

.apt-link:hover {
    color: var(--c2);
    gap: 10px
}


.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin: 2rem 0
}

.gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--t)
}

.gallery img:hover {
    transform: scale(1.03);
    box-shadow: var(--sh)
}


.parallax {
    position: relative;
    padding: 120px 2rem;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff
}

.parallax::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 90, 58, .88), rgba(74, 124, 89, .78))
}

.parallax .container {
    position: relative;
    z-index: 2
}

.parallax h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem
}

.parallax p {
    font-size: 1.02rem;
    max-width: 650px;
    margin-bottom: 2rem;
    opacity: .95;
    line-height: 1.8
}

.highlights {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap
}

.hl-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 500;
    font-size: .85rem
}


.act-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem
}

.act-card {
    background: #fff;
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
    transition: var(--t)
}

.act-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh)
}

.act-card-img {
    height: 180px;
    overflow: hidden
}

.act-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.act-card:hover .act-card-img img {
    transform: scale(1.06)
}

.act-card-body {
    padding: 1.3rem
}

.act-card-body h3 {
    font-size: 1.1rem;
    color: var(--c3);
    margin-bottom: .4rem
}

.act-card-body p {
    font-size: .83rem;
    color: var(--txl);
    line-height: 1.6;
    margin-bottom: .8rem
}

.act-card-body a {
    color: var(--c1);
    font-weight: 600;
    font-size: .82rem
}


.price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: var(--r);
    box-shadow: var(--sh)
}

.price-table thead th {
    background: var(--c1);
    color: #fff;
    padding: 1rem 1.2rem;
    text-align: left;
    font-weight: 600;
    font-size: .85rem
}

.price-table tbody td {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid #f0ece6;
    background: #fff;
    font-size: .9rem
}

.price-table tbody tr:hover td {
    background: var(--bgw)
}

.pv {
    font-weight: 700;
    color: var(--c1);
    font-size: 1rem
}


.detail-hero {
    height: 50vh;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end
}

.detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .65), transparent)
}

.detail-hero .container {
    position: relative;
    z-index: 2;
    padding-bottom: 2.5rem;
    width: 100%
}

.detail-hero h1 {
    color: #fff;
    font-size: 2.8rem
}

.detail-hero p {
    color: rgba(255, 255, 255, .85);
    font-size: 1.05rem
}

.detail-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 2rem
}

.detail-content h2 {
    font-size: 1.7rem;
    color: var(--c3);
    margin-bottom: .8rem
}

.detail-content h3 {
    font-size: 1.15rem;
    color: var(--c1);
    margin: 1.8rem 0 .6rem
}

.detail-content p {
    color: var(--txl);
    margin-bottom: .8rem
}

.detail-content ul {
    padding-left: 1.5rem;
    color: var(--txl);
    margin-bottom: 1.2rem
}

.detail-content li {
    margin-bottom: .3rem
}

.detail-cta {
    text-align: center;
    padding: 2.5rem 0
}

.btn-primary {
    display: inline-block;
    background: var(--c1);
    color: #fff;
    padding: .85rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    box-shadow: 0 6px 20px rgba(139, 34, 82, .3)
}

.btn-primary:hover {
    background: var(--c2);
    transform: translateY(-2px)
}


.promo-section {
    background: var(--bgw)
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center
}

.promo-img {
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--sh)
}

.promo-img img {
    width: 100%
}

.promo-text h2 {
    font-size: 2rem;
    color: var(--c3);
    margin-bottom: .8rem
}

.promo-text p {
    color: var(--txl);
    margin-bottom: 1.2rem;
    line-height: 1.8
}


.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 130px 2rem 80px
}

.legal-page h1 {
    font-size: 2.3rem;
    color: var(--c3);
    margin-bottom: .4rem
}

.legal-page .date {
    font-size: .82rem;
    color: var(--txl);
    margin-bottom: 2rem
}

.legal-page h2 {
    font-size: 1.3rem;
    color: var(--c1);
    margin: 1.8rem 0 .6rem
}

.legal-page h3 {
    font-size: 1.1rem;
    color: var(--tx);
    margin: 1.3rem 0 .5rem
}

.legal-page p,
.legal-page li {
    color: var(--txl);
    margin-bottom: .8rem;
    font-size: .92rem
}

.legal-page ul {
    padding-left: 1.5rem
}

.legal-page a {
    color: var(--c1);
    font-weight: 500
}


.footer {
    position: relative;
    padding: 70px 2rem 25px;
    background-size: cover;
    background-position: center;
    color: #fff
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(92, 16, 53, .93), rgba(44, 10, 25, .97))
}

.footer .container {
    position: relative;
    z-index: 2
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem
}

.footer h4 {
    font-size: 1rem;
    margin-bottom: .8rem;
    color: var(--acc2)
}

.footer p,
.footer a {
    font-size: .85rem;
    opacity: .85;
    line-height: 1.9
}

.footer a:hover {
    opacity: 1;
    color: var(--acc2)
}

.footer-links {
    list-style: none
}

.footer-links li {
    margin-bottom: .2rem
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 1.2rem;
    text-align: center;
    font-size: .78rem;
    opacity: .6
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1.2rem 2rem;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, .1);
    z-index: 9999;
    display: none;
    border-top: 3px solid var(--c1)
}

.cookie-banner.active {
    display: block;
    animation: slideUp .5s ease-out
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem
}

.cookie-inner p {
    font-size: .84rem;
    color: var(--txl);
    flex: 1
}

.cookie-inner a {
    color: var(--c1);
    font-weight: 600
}

.cookie-actions {
    display: flex;
    gap: .6rem
}

.btn-cookie {
    padding: .5rem 1.3rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: .82rem;
    transition: var(--t)
}

.btn-accept {
    background: var(--g1);
    color: #fff;
    box-shadow: 0 4px 12px rgba(74, 124, 89, .3)
}

.btn-accept:hover {
    background: var(--g2)
}

.btn-reject {
    background: #f2f2f2;
    color: var(--tx)
}

.btn-reject:hover {
    background: #e5e5e5
}


.map-container {
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--sh);
    margin: 2rem 0
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0
}


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%)
    }

    to {
        transform: translateY(0)
    }
}


@media(max-width:1024px) {
    .apt-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .act-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .promo-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:768px) {
    .top-bar .container {
        font-size: .72rem;
        gap: 1rem
    }

    .hamburger {
        display: block
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        width: 280px;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 30px rgba(0, 0, 0, .3);
        padding: 80px 2rem 2rem;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        overflow-y: auto;
        z-index: 999
    }

    .main-nav.open {
        transform: translateX(0)
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        align-items: stretch
    }

    .nav-menu>li>a {
        padding: .8rem 0;
        font-size: .95rem;
        border-bottom: 1px solid #f0f0f0
    }

    .nav-menu>li>a::after {
        display: none
    }

    .dropdown {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
        display: none !important
    }

    .has-dropdown:hover .dropdown,
    .has-dropdown .dropdown {
        display: block !important
    }

    .nav-cta {
        text-align: center;
        margin-top: 1rem
    }

    .hero {
        height: 70vh;
        min-height: 400px
    }

    .hero-content h1 {
        font-size: 2.2rem
    }

    .section-header h2 {
        font-size: 2rem
    }

    .section {
        padding: 60px 1.5rem
    }

    .apt-grid {
        grid-template-columns: 1fr
    }

    .act-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center
    }

    .highlights {
        justify-content: center
    }

    .parallax {
        background-attachment: scroll
    }

    .detail-hero h1 {
        font-size: 2rem
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr)
    }

    .price-table {
        font-size: .8rem
    }

    .price-table thead th,
    .price-table tbody td {
        padding: .7rem .6rem
    }
}

@media(max-width:480px) {
    .hero-content h1 {
        font-size: 1.8rem
    }

    .gallery {
        grid-template-columns: 1fr
    }

    .top-bar {
        display: none
    }
}


.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .5);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
    line-height: 1;
    z-index: 10001;
}