/* Ronda — Luxury Residential Theme */
:root {
    --color-bg: #faf8f5;
    --color-bg-dark: #1a1814;
    --color-surface: #ffffff;
    --color-cream: #f0ebe3;
    --color-gold: #b8956f;
    --color-gold-light: #d4b896;
    --color-text: #2c2824;
    --color-text-muted: #6b6560;
    --color-border: #e5dfd6;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Outfit', system-ui, sans-serif;
    --header-h: 80px;
    --container: 1240px;
    --radius: 4px;
    --shadow: 0 20px 60px rgba(26,24,20,.08);
    --transition: .4s cubic-bezier(.25,.46,.45,.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-gold); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-text { color: var(--color-text-muted); font-size: 1.05rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
}
.btn-gold { background: var(--color-gold); color: #fff; border-color: var(--color-gold); }
.btn-gold:hover { background: var(--color-gold-light); border-color: var(--color-gold-light); color: #fff; }
.btn-outline { background: transparent; border-color: var(--color-text); color: var(--color-text); }
.btn-outline:hover { background: var(--color-text); color: #fff; }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,.6); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--color-text); }
.btn-sm { padding: 10px 20px; font-size: 11px; }
.btn-full { width: 100%; }

/* Header */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(250,248,245,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}
.site-header.scrolled { border-bottom-color: var(--color-border); box-shadow: var(--shadow); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}
.logo img { height: 44px; width: auto; }
.logo-text {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: .15em;
    color: var(--color-text);
}
.main-nav { display: flex; gap: 32px; align-items: center; }
.main-nav a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}
.main-nav a:hover, .main-nav a.active { color: var(--color-gold); }
.nav-external { color: var(--color-gold) !important; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.lang-switch { font-size: 12px; font-weight: 500; letter-spacing: .05em; }
.lang-switch a { color: var(--color-text-muted); padding: 4px; }
.lang-switch a.active { color: var(--color-gold); }
.lang-switch span { color: var(--color-border); margin: 0 2px; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,24,20,.65) 0%, rgba(26,24,20,.35) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 120px 24px 80px;
}
.hero-eyebrow {
    font-size: 12px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 20px;
}
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 36px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero-scroll span {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,.8), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%, 100% { opacity: .3; transform: scaleY(.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}
.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--color-gold);
    transform: translate(16px, 16px);
    pointer-events: none;
}
.about-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* Apartments Showcase */
.apartments-showcase { background: var(--color-surface); }
.apartments-showcase .container { max-width: 1380px; }
.apt-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}
.apt-tab {
    padding: 12px 28px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all var(--transition);
    border-radius: var(--radius);
}
.apt-tab:hover, .apt-tab.active {
    background: var(--color-text);
    border-color: var(--color-text);
    color: #fff;
}
.apt-showcase-body {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0;
    background: var(--color-cream);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.apt-images { position: relative; padding: 24px; }
.apt-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    min-height: 480px;
}
.apt-image-grid .apt-img-main {
    grid-row: 1 / 3;
    grid-column: 1;
}
.apt-image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .5s ease, transform .5s ease;
}
.apt-image-grid img.visible { opacity: 1; transform: translateY(0); }
.apt-image-grid .apt-img-main img { min-height: 100%; }
.apt-slider-nav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}
.apt-slider-prev, .apt-slider-next {
    width: 40px; height: 40px;
    border: 1px solid var(--color-border);
    background: #fff;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}
.apt-slider-prev:hover, .apt-slider-next:hover { background: var(--color-gold); color: #fff; border-color: var(--color-gold); }
.apt-slider-dots { display: flex; gap: 8px; }
.apt-slider-dots button {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--color-border);
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}
.apt-slider-dots button.active { background: var(--color-gold); width: 24px; border-radius: 4px; }

.apt-details {
    background: var(--color-cream);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--color-border);
    transition: opacity .4s ease;
}
.apt-details.fading { opacity: 0; }
.apt-details-header {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 500;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}
.apt-surfaces { margin-bottom: 24px; }
.apt-surfaces li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: var(--color-text-muted);
    border-bottom: 1px solid rgba(0,0,0,.05);
}
.apt-surfaces li strong { color: var(--color-text); font-weight: 500; }
.apt-rooms { flex: 1; margin-bottom: 28px; }
.apt-rooms li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 14px;
}
.apt-rooms li span { color: var(--color-text-muted); }
.apt-price-block { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--color-border); }
.apt-price-label {
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}
.apt-price-value {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 20px;
}
.apt-details-cta { display: flex; flex-direction: column; gap: 10px; }

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.feature-card {
    padding: 36px 28px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.feature-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.feature-icon {
    width: 48px; height: 48px;
    color: var(--color-gold);
    margin-bottom: 20px;
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--color-text-muted); }

/* Parking */
.parking-section { background: var(--color-bg-dark); color: #fff; }
.parking-section .section-eyebrow { color: var(--color-gold-light); }
.parking-section .section-title { color: #fff; }
.parking-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr 1fr;
    gap: 32px;
    align-items: center;
}
.parking-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.parking-boxes { display: flex; flex-direction: column; gap: 20px; }
.parking-box {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    transition: var(--transition);
}
.parking-box:hover { background: rgba(255,255,255,.08); border-color: var(--color-gold); }
.parking-box-icon { width: 36px; color: var(--color-gold); flex-shrink: 0; }
.parking-box-icon svg { width: 100%; }
.parking-box h4 { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 4px; }
.parking-box p { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 8px; }
.parking-price { font-weight: 600; color: var(--color-gold-light); font-size: 15px; }

/* Video */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

/* Location */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}
.location-map iframe { width: 100%; border-radius: var(--radius); border: none; }
.location-address { margin: 20px 0; color: var(--color-text-muted); }

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,.7));
    color: #fff;
    font-size: 13px;
    transform: translateY(100%);
    transition: transform var(--transition);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.92);
    align-items: center;
    justify-content: center;
    padding: 40px;
    display: none;
}
.lightbox:not([hidden]) {
    display: flex;
}
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close {
    position: absolute;
    top: 20px; right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
}

/* Contact */
.contact-section { background: var(--color-surface); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.contact-details { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--color-text);
}
.contact-link:hover { color: var(--color-gold); }
.contact-form {
    background: var(--color-bg);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 15px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #fff;
    transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--color-text-muted); cursor: pointer; }
.checkbox input { width: auto; margin-top: 3px; }
.form-message { margin-top: 16px; padding: 12px; border-radius: var(--radius); font-size: 14px; }
.form-message.success { background: #e8f5e9; color: #2e7d32; }
.form-message.error { background: #ffebee; color: #c62828; }

/* Footer */
.site-footer {
    background: var(--color-bg-dark);
    color: rgba(255,255,255,.8);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-text { color: #fff; font-size: 32px; display: block; margin-bottom: 16px; }
.footer-logo { height: 48px; margin-bottom: 16px; }
.footer-meta { font-size: 13px; color: rgba(255,255,255,.5); }
.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 20px;
}
.footer-col p, .footer-col a { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.8; }
.footer-col a:hover { color: var(--color-gold-light); }
.footer-hours { margin-top: 12px; }
.social-links { display: flex; flex-direction: column; gap: 8px; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 13px;
    color: rgba(255,255,255,.45);
    flex-wrap: wrap;
    gap: 16px;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,.55); font-size: 13px; }
.footer-legal a:hover { color: var(--color-gold-light); }

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 6px 24px rgba(37,211,102,.4);
    transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(37,211,102,.5); color: #fff; }

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Apartment page */
.apt-page-hero { padding-top: calc(var(--header-h) + 60px); background: var(--color-cream); }
.back-link { font-size: 13px; color: var(--color-text-muted); margin-bottom: 24px; display: inline-block; }
.apt-code { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--color-gold); }
.apt-page-header h1 { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); margin: 8px 0; }
.apt-floor { color: var(--color-text-muted); margin-bottom: 16px; }
.apt-meta { display: flex; gap: 20px; font-size: 14px; color: var(--color-text-muted); margin-bottom: 16px; }
.apt-page-price { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 600; color: var(--color-gold); }
.apt-page-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; }
.apt-page-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.apt-page-img.large { grid-column: 1 / -1; }
.apt-page-img img { width: 100%; border-radius: var(--radius); aspect-ratio: 16/10; object-fit: cover; }
.apt-sidebar-block { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--color-border); }
.apt-sidebar-block h3 { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 16px; }
.apt-spec-list li { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; }
.apt-spec-list li span { color: var(--color-text-muted); }
.apt-sidebar-cta { display: flex; flex-direction: column; gap: 10px; }
.apt-page-desc { margin-top: 60px; max-width: 800px; }
.apt-page-desc h2 { font-family: var(--font-serif); margin-bottom: 16px; }

/* Legal */
.legal-page { padding-top: calc(var(--header-h) + 40px); }
.legal-content { max-width: 800px; margin-bottom: 40px; }
.legal-content h2 { font-family: var(--font-serif); font-size: 2rem; margin: 32px 0 16px; }
.legal-content h3 { font-size: 1.2rem; margin: 24px 0 12px; }
.legal-content p, .legal-content li { color: var(--color-text-muted); margin-bottom: 12px; }
.legal-content ul { padding-left: 24px; }

/* Responsive */
@media (max-width: 1024px) {
    .about-grid, .contact-grid, .location-grid, .apt-page-grid, .apt-page-layout { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .parking-layout { grid-template-columns: 1fr; }
    .parking-image { order: -1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .apt-showcase-body { grid-template-columns: 1fr; }
    .apt-details { border-left: none; border-top: 1px solid var(--color-border); }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .main-nav {
        position: fixed;
        top: var(--header-h); left: 0; right: 0;
        background: var(--color-bg);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--color-border);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition);
        pointer-events: none;
    }
    .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .nav-toggle { display: flex; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .features-grid, .gallery-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }

    /* Mobile apartment showcase — slider mode */
    .apt-image-grid {
        display: block;
        position: relative;
        min-height: 280px;
        overflow: hidden;
    }
    .apt-image-grid .apt-img-cell {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity .5s ease;
        pointer-events: none;
    }
    .apt-image-grid .apt-img-cell.active { opacity: 1; pointer-events: all; position: relative; }
    .apt-image-grid .apt-img-cell img { min-height: 280px; aspect-ratio: 16/10; }
    .apt-slider-nav { display: flex; }
    .apt-tabs { overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
    .apt-tab { flex-shrink: 0; }

    .whatsapp-float { bottom: 80px; right: 20px; width: 52px; height: 52px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 280px; }
    .contact-form { padding: 24px; }
    .apt-page-gallery { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .apt-details { padding: 32px 24px; }
    .apt-price-value { font-size: 1.8rem; }
    .apt-room-tabs { gap: 6px; }
    .apt-room-tab { padding: 10px 14px; font-size: 12px; }
}

/* ─── Navigation Dropdown ─── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 0;
    transition: color var(--transition);
}
.nav-dropdown-toggle:hover,
.nav-dropdown.active .nav-dropdown-toggle { color: var(--color-gold); }
.nav-chevron { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-dropdown.open .nav-chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 280px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
    z-index: 100;
}
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
    color: var(--color-text);
}
.nav-dropdown-menu a:hover { background: var(--color-cream); color: var(--color-gold); }
.nav-dropdown-all {
    font-weight: 600;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 4px;
    border-radius: 6px 6px 0 0 !important;
}
.nav-apt-code {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    color: var(--color-gold);
    min-width: 42px;
}
.nav-apt-title { color: var(--color-text-muted); font-size: 13px; }

/* ─── Page Hero ─── */
.page-hero {
    padding: calc(var(--header-h) + 48px) 0 48px;
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-bg) 100%);
    text-align: center;
}
.page-hero-sm { padding-bottom: 32px; }
.page-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 500;
    margin-top: 8px;
}
.page-hero-desc {
    color: var(--color-text-muted);
    max-width: 560px;
    margin: 12px auto 0;
    font-size: 1.05rem;
}

/* ─── About page ─── */
.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

/* ─── Apartments list page ─── */
.apartments-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.apt-card {
    display: flex;
    flex-direction: column;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    color: inherit;
}
.apt-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--color-gold);
    color: inherit;
}
.apt-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.apt-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.apt-card:hover .apt-card-image img { transform: scale(1.05); }
.apt-card-code {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(26,24,20,.75);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    padding: 6px 12px;
    border-radius: 4px;
}
.apt-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.apt-card-body h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    margin-bottom: 8px;
}
.apt-card-body p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    flex: 1;
}
.apt-card-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}
.apt-card-price {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 12px;
}
.apt-card-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--color-text);
}

/* ─── Homepage showcase v2 ─── */
.apartments-showcase .container-wide { max-width: 1380px; }
.apt-showcase-v2 .apt-showcase-body {
    min-height: 620px;
    box-shadow: 0 24px 80px rgba(26,24,20,.1);
}
.apt-showcase-v2 .apt-images { padding: 32px; }
.apt-showcase-v2 .apt-image-grid {
    min-height: 560px;
    gap: 16px;
}
.apt-showcase-v2 .apt-details { padding: 52px 44px; }
.apt-showcase-footer {
    text-align: center;
    margin-top: 32px;
}
.apt-tabs {
    background: var(--color-surface);
    padding: 8px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    display: inline-flex;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto 36px;
    max-width: 100%;
}
.apt-showcase .section-header { margin-bottom: 40px; }

/* ─── Apartment room gallery (detail page) ─── */
.apt-room-gallery-section { background: var(--color-bg); padding-top: 0; }
.apt-room-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.apt-room-tab {
    padding: 12px 24px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all var(--transition);
}
.apt-room-tab:hover,
.apt-room-tab.active {
    background: var(--color-text);
    border-color: var(--color-text);
    color: #fff;
}
.apt-room-panel {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.apt-room-slider {
    position: relative;
    aspect-ratio: 16/9;
    max-height: 640px;
    background: #111;
}
.apt-room-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .5s ease;
    position: absolute;
    inset: 0;
}
.apt-room-slider img.active { opacity: 1; position: relative; }
.apt-room-slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}
.apt-room-slider-nav button {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.5);
    cursor: pointer;
    padding: 0;
    transition: all .2s;
}
.apt-room-slider-nav button.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}
.apt-room-arrows {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    pointer-events: none;
    z-index: 2;
}
.apt-room-arrows button {
    pointer-events: all;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.9);
    font-size: 22px;
    cursor: pointer;
    transition: all .2s;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.apt-room-arrows button:hover { background: var(--color-gold); color: #fff; }
.apt-room-desc {
    padding: 28px 32px;
    border-top: 1px solid var(--color-border);
}
.apt-room-desc p { color: var(--color-text-muted); }
.apt-page-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 48px;
    align-items: start;
}
.apt-short-desc {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 12px 0;
}
.gallery-grid-page { grid-template-columns: repeat(3, 1fr); gap: 20px; }

@media (max-width: 1024px) {
    .about-page-grid, .apt-page-layout { grid-template-columns: 1fr; }
    .apartments-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .apt-page-sidebar { order: 2; }
}

@media (max-width: 768px) {
    .nav-dropdown { width: 100%; }
    .nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: 8px 0; }
    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 0 0 0 12px;
        min-width: 0;
        display: none;
        margin-top: 8px;
    }
    .nav-dropdown.open .nav-dropdown-menu { display: block; }
    .apartments-cards-grid { grid-template-columns: 1fr; }
    .gallery-grid-page { grid-template-columns: 1fr; }
    .apt-showcase-v2 .apt-image-grid { min-height: 300px; }
    .apt-room-slider { aspect-ratio: 4/3; max-height: none; }
}

/* ─── Landscape slider (pre-footer) — multi-card carousel ─── */
.landscape-slider-section {
    background: var(--color-bg-dark);
    padding: 56px 0 64px;
    overflow: hidden;
}
.landscape-slider-wrap {
    max-width: 1320px;
}
.landscape-slider {
    position: relative;
    overflow: hidden;
    margin: 0 -6px;
}
.landscape-track {
    display: flex;
    gap: 20px;
    will-change: transform;
    transition: transform 1s ease;
}
.landscape-card {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 0;
}
.landscape-card-frame {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transition), transform var(--transition);
}
.landscape-card:hover .landscape-card-frame {
    border-color: rgba(201, 169, 110, .35);
    transform: translateY(-3px);
}
.landscape-card-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 10px;
}
.landscape-card-caption {
    margin: 12px 4px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    letter-spacing: .03em;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Gallery mosaic */
.gallery-page { padding-bottom: 80px; }
.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-auto-flow: dense;
}
.gallery-mosaic .gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: auto;
    min-height: 240px;
}
.gallery-mosaic .gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.gallery-mosaic .gallery-item:hover img { transform: scale(1.04); }
.gallery-mosaic .gallery-caption {
    transform: translateY(0);
    opacity: 0;
    transition: opacity .3s ease;
}
.gallery-mosaic .gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-size-large { grid-column: span 2; grid-row: span 2; min-height: 500px; }
.gallery-size-wide { grid-column: span 2; min-height: 280px; }
.gallery-size-tall { grid-row: span 2; min-height: 500px; }
.gallery-size-medium { min-height: 240px; }

/* Contact page v2 */
.contact-page-v2 {
    position: relative;
    padding: calc(var(--header-h) + 48px) 0 100px;
    background: var(--color-bg-dark);
    color: #fff;
    overflow: hidden;
}
.contact-page-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.contact-page-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,20,35,.92) 0%, rgba(15,20,35,.78) 50%, rgba(15,20,35,.88) 100%);
    z-index: 1;
}
.contact-page-inner {
    position: relative;
    z-index: 2;
}
.contact-page-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.contact-page-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 500;
    margin: 12px 0;
    color: #fff;
}
.contact-page-lead {
    color: rgba(255,255,255,.7);
    font-size: 1.05rem;
}
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.contact-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    padding: 32px 28px;
    backdrop-filter: blur(8px);
    transition: border-color var(--transition), transform var(--transition);
}
.contact-card:hover {
    border-color: rgba(201,169,110,.4);
    transform: translateY(-4px);
}
.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(201,169,110,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-gold-light);
}
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #fff;
}
.contact-card a {
    color: var(--color-gold-light);
    font-size: 1.05rem;
}
.contact-card a:hover { color: #fff; }
.contact-card p {
    color: rgba(255,255,255,.75);
    font-size: 14px;
    line-height: 1.7;
}
.contact-card-hours { margin-top: 12px; font-size: 13px !important; }
.contact-form-panel {
    background: #fff;
    border-radius: calc(var(--radius) + 4px);
    padding: 48px;
    color: var(--color-text);
    box-shadow: 0 32px 80px rgba(0,0,0,.25);
}
.contact-form-header {
    margin-bottom: 32px;
    text-align: center;
}
.contact-form-header h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 8px;
}
.contact-form-header p { color: var(--color-text-muted); font-size: 15px; }
.form-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact-form-modern .form-group label { color: var(--color-text-muted); }
.contact-form-modern .form-group input,
.contact-form-modern .form-group select,
.contact-form-modern .form-group textarea {
    background: var(--color-cream);
    border-color: transparent;
}
.form-consents {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 24px 0;
}
.checkbox-modern {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
}
.checkbox-modern input { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox-box {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid var(--color-border);
    border-radius: 6px;
    margin-top: 1px;
    position: relative;
    transition: all .2s ease;
    background: #fff;
}
.checkbox-modern input:checked + .checkbox-box {
    background: var(--color-gold);
    border-color: var(--color-gold);
}
.checkbox-modern input:checked + .checkbox-box::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.checkbox-modern input:focus-visible + .checkbox-box {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}
.checkbox-text a { color: var(--color-gold); text-decoration: underline; }

/* Cookie consent */
.cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 9998;
    display: none;
}
.cookie-overlay:not([hidden]) { display: block; }
body.cookie-modal-open { overflow: hidden; }

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: min(960px, calc(100% - 32px));
    background: var(--color-bg-dark);
    color: #fff;
    padding: 24px 32px;
    border-radius: calc(var(--radius) + 4px);
    box-shadow: 0 12px 48px rgba(0,0,0,.35);
    display: none;
    border: 1px solid rgba(255,255,255,.08);
}
.cookie-banner:not([hidden]) { display: block; }
.cookie-banner-inner {
    max-width: none;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
.cookie-banner-text {
    font-size: 14px;
    line-height: 1.65;
    flex: 1;
    min-width: 240px;
    text-align: left;
    margin: 0;
}
.cookie-banner-text a { color: var(--color-gold-light); text-decoration: underline; }
.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cookie-banner .btn-outline {
    border-color: rgba(255,255,255,.35);
    color: #fff;
    padding: 10px 18px;
    white-space: nowrap;
}
.cookie-banner .btn-gold {
    padding: 10px 20px;
    white-space: nowrap;
}
.cookie-banner .btn-outline:hover {
    background: rgba(255,255,255,.1);
    color: #fff;
}

.cookie-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    width: min(520px, calc(100% - 32px));
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background: #fff;
    border-radius: calc(var(--radius) + 4px);
    box-shadow: 0 24px 80px rgba(0,0,0,.3);
    display: none;
}
.cookie-modal:not([hidden]) { display: block; }
.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid var(--color-border);
}
.cookie-modal-header h2 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin: 0;
}
.cookie-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: var(--color-text-muted);
    padding: 0 4px;
}
.cookie-modal-body { padding: 24px 28px; }
.cookie-modal-lead {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}
.cookie-category {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}
.cookie-category p { font-size: 13px; color: var(--color-text-muted); margin: 0; line-height: 1.5; }
.cookie-badge {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--color-gold);
    background: rgba(201,169,110,.12);
    padding: 4px 10px;
    border-radius: 999px;
}
.cookie-modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding: 20px 28px;
    border-top: 1px solid var(--color-border);
}

.toggle-switch {
    position: relative;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
    position: absolute;
    inset: 0;
    background: #ccc;
    border-radius: 999px;
    cursor: pointer;
    transition: background .2s;
}
.toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform .2s;
    box-shadow: 0 2px 4px rgba(0,0,0,.15);
}
.toggle-switch input:checked + .toggle-slider { background: var(--color-gold); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(22px); }

.cookie-consent-status { margin-bottom: 32px; }
.cookie-status-box {
    background: var(--color-cream);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 24px;
}
.cookie-status-box code {
    font-size: 13px;
    background: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    word-break: break-all;
}
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 14px;
}
.cookie-table th,
.cookie-table td {
    border: 1px solid var(--color-border);
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
}
.cookie-table th {
    background: var(--color-cream);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .landscape-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }
    .gallery-size-large,
    .gallery-size-wide { grid-column: span 2; }
    .contact-cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .gallery-mosaic {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .gallery-mosaic .gallery-item,
    .gallery-size-large,
    .gallery-size-wide,
    .gallery-size-tall,
    .gallery-size-medium {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        min-height: 180px !important;
    }
    .gallery-size-large:nth-child(3n+1) {
        grid-column: span 2 !important;
        min-height: 220px !important;
    }
    .contact-form-panel { padding: 28px 24px; }
    .form-grid-modern { grid-template-columns: 1fr; }
    .landscape-slider-section { padding: 40px 0 48px; }
    .landscape-track { gap: 14px; }
    .landscape-card {
        flex: 0 0 calc((100% - 14px) / 2);
    }
    .landscape-card-frame {
        aspect-ratio: 16 / 11;
        padding: 8px;
        border-radius: 14px;
    }
    .cookie-banner {
        bottom: 16px;
        padding: 20px;
        width: calc(100% - 24px);
    }
    .cookie-banner-inner { flex-direction: column; align-items: stretch; text-align: center; }
    .cookie-banner-text { text-align: center; }
    .cookie-banner-actions { justify-content: center; width: 100%; }
    .cookie-banner-actions .btn { flex: 1; }
    .cookie-table { font-size: 12px; display: block; overflow-x: auto; }
}

@media (max-width: 520px) {
    .landscape-card {
        flex: 0 0 88%;
    }
    .landscape-slider {
        margin: 0 -4px;
    }
}

/* ─── Apartment detail — luxury layout ─── */
.apt-lux { background: var(--color-bg); }
.apt-lux .section { padding: 80px 0; }
.apt-lux-hero {
    padding: calc(var(--header-h) + 32px) 0 64px;
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-bg) 100%);
}
.apt-lux-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}
.apt-lux-back:hover { color: var(--color-gold); }
.apt-lux-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 56px;
    align-items: center;
}
.apt-lux-code {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 12px;
}
.apt-lux-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 12px;
}
.apt-lux-floor {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}
.apt-lux-lead {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 24px;
}
.apt-lux-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}
.apt-lux-pill {
    padding: 8px 16px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    font-size: 13px;
    color: var(--color-text);
}
.apt-lux-price-block { margin-bottom: 28px; }
.apt-lux-price-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}
.apt-lux-price {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
}
.apt-lux-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.apt-lux-hero-media {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(26, 24, 20, .14);
    border: 1px solid rgba(255,255,255,.6);
    aspect-ratio: 4/3;
    background: #fff;
}
.apt-lux-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apt-lux-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}
.apt-lux-section-head .section-text { margin-top: 12px; }

.apt-lux-gallery-wrap {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.apt-lux-room-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px 20px 0;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-cream);
}
.apt-lux-room-tab {
    padding: 12px 22px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all var(--transition);
}
.apt-lux-room-tab:hover,
.apt-lux-room-tab.active {
    background: var(--color-text);
    color: #fff;
    border-color: var(--color-text);
}
.apt-lux-room-panel { padding: 24px; }
.apt-lux-room-stage { display: grid; gap: 16px; }
.apt-lux-room-main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
    aspect-ratio: 16/10;
    cursor: zoom-in;
}
.apt-lux-room-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.apt-lux-room-caption {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 8px 14px;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: 13px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}
.apt-lux-room-arrows {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    pointer-events: none;
}
.apt-lux-room-arrows button {
    pointer-events: all;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
    transition: all .2s;
}
.apt-lux-room-arrows button:hover {
    background: var(--color-gold);
    color: #fff;
}
.apt-lux-room-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}
.apt-lux-room-thumb {
    flex: 0 0 100px;
    height: 72px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: none;
    opacity: .65;
    transition: all .2s;
}
.apt-lux-room-thumb.active,
.apt-lux-room-thumb:hover {
    opacity: 1;
    border-color: var(--color-gold);
}
.apt-lux-room-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.apt-lux-room-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}
.apt-lux-room-info p { color: var(--color-text-muted); line-height: 1.7; }
.apt-lux-room-empty { color: var(--color-text-muted); padding: 40px; text-align: center; }

.apt-lux-fallback-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.apt-lux-fallback-item {
    border-radius: 12px;
    overflow: hidden;
    margin: 0;
    aspect-ratio: 4/3;
}
.apt-lux-fallback-item.is-featured {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
    min-height: 400px;
}
.apt-lux-fallback-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apt-lux-specs { background: var(--color-cream); }
.apt-lux-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.apt-lux-spec-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 32px 28px;
    box-shadow: 0 8px 32px rgba(26,24,20,.04);
}
.apt-lux-spec-card h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}
.apt-lux-spec-list { list-style: none; }
.apt-lux-spec-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--color-border);
}
.apt-lux-spec-list li:last-child { border-bottom: none; }
.apt-lux-spec-list li span { color: var(--color-text-muted); }
.apt-lux-spec-list li strong { font-weight: 600; text-align: right; }
.apt-lux-spec-highlight {
    background: var(--color-bg-dark);
    border-color: var(--color-bg-dark);
    color: #fff;
}
.apt-lux-spec-highlight h3 {
    color: #fff;
    border-bottom-color: rgba(255,255,255,.12);
}
.apt-lux-spec-highlight .apt-lux-spec-list li {
    border-bottom-color: rgba(255,255,255,.1);
}
.apt-lux-spec-highlight .apt-lux-spec-list li span { color: rgba(255,255,255,.55); }
.apt-lux-spec-highlight .apt-lux-spec-list li strong { color: #fff; }
.apt-lux-spec-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}
.apt-lux-spec-highlight .btn-outline {
    border-color: rgba(255,255,255,.35);
    color: #fff;
}
.apt-lux-spec-highlight .btn-outline:hover {
    background: #fff;
    color: var(--color-text);
}

.apt-lux-about-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start;
}
.apt-lux-about-text { max-width: 720px; }
.apt-lux-aside-card {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 32px;
    box-shadow: var(--shadow);
}
.apt-lux-aside-card h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.apt-lux-aside-card p {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
}
.apt-lux-aside-card .btn { margin-bottom: 10px; }
.apt-lux-aside-card .btn:last-child { margin-bottom: 0; }

.apt-lux-amenities { background: var(--color-bg); }
.apt-lux-amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.apt-lux-amenity {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 28px 24px;
    transition: all var(--transition);
}
.apt-lux-amenity:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--color-gold);
}
.apt-lux-amenity-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    border-radius: 12px;
    margin-bottom: 16px;
    color: var(--color-gold);
}
.apt-lux-amenity-icon svg { width: 24px; height: 24px; }
.apt-lux-amenity h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.apt-lux-amenity p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.apt-lux-more { background: var(--color-cream); }
.apt-lux-more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.apt-lux-more-card {
    display: block;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    overflow: hidden;
    transition: all var(--transition);
    color: inherit;
}
.apt-lux-more-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--color-gold);
    color: inherit;
}
.apt-lux-more-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}
.apt-lux-more-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.apt-lux-more-card:hover .apt-lux-more-img img { transform: scale(1.05); }
.apt-lux-more-body { padding: 24px; }
.apt-lux-more-body h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin: 6px 0 8px;
}
.apt-lux-more-body p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-gold);
}

.apt-lux-cta-band {
    background: var(--color-bg-dark);
    color: #fff;
    padding: 72px 0;
}
.apt-lux-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.apt-lux-cta-inner h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 10px;
}
.apt-lux-cta-inner p {
    color: rgba(255,255,255,.65);
    max-width: 520px;
}
.apt-lux-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 1024px) {
    .apt-lux-hero-grid,
    .apt-lux-about-grid,
    .apt-lux-specs-grid,
    .apt-lux-amenities-grid,
    .apt-lux-more-grid { grid-template-columns: 1fr 1fr; }
    .apt-lux-spec-highlight { grid-column: 1 / -1; }
    .apt-lux-fallback-grid { grid-template-columns: 1fr 1fr; }
    .apt-lux-fallback-item.is-featured { grid-column: span 2; min-height: 320px; }
}

@media (max-width: 768px) {
    .apt-lux .section { padding: 56px 0; }
    .apt-lux-hero { padding-bottom: 40px; }
    .apt-lux-hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .apt-lux-hero-media { order: -1; }
    .apt-lux-hero-cta .btn { flex: 1; min-width: 140px; }
    .apt-lux-about-grid,
    .apt-lux-specs-grid,
    .apt-lux-amenities-grid,
    .apt-lux-more-grid,
    .apt-lux-fallback-grid { grid-template-columns: 1fr; }
    .apt-lux-fallback-item.is-featured { grid-column: span 1; min-height: 260px; }
    .apt-lux-aside-card { position: static; }
    .apt-lux-cta-inner { flex-direction: column; text-align: center; }
    .apt-lux-cta-actions { justify-content: center; width: 100%; }
    .apt-lux-room-tabs { padding: 16px 16px 0; }
    .apt-lux-room-panel { padding: 16px; }
}

