/* ============================================
   APARTAMENTO MILKA — Design System & Styles
   ============================================ */

/* === DESIGN TOKENS === */
:root {
    /* Colors — Mediterranean Palette */
    --navy: #0a1628;
    --navy-light: #12213d;
    --navy-mid: #1a2f52;
    --gold: #d4a853;
    --gold-light: #e8c87a;
    --gold-dark: #b08a3a;
    --terracotta: #c95d3a;
    --terracotta-light: #e07a58;
    --warm-white: #faf8f5;
    --cream: #f5f0e8;
    --sand: #e8dfd3;
    --text-dark: #1a1a2e;
    --text-body: #3d3d5c;
    --text-muted: #7a7a9a;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-bg-dark: rgba(10, 22, 40, 0.7);

    /* Typography */
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-py: 120px;
    --container-px: 24px;
    --container-max: 1200px;

    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-med: 0.4s var(--ease-out);
    --transition-slow: 0.7s var(--ease-out);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
    --shadow-md: 0 8px 30px rgba(10, 22, 40, 0.1);
    --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.15);
    --shadow-glow: 0 0 40px rgba(212, 168, 83, 0.3);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* === RESET & BASE === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

/* AOS safety: ensure elements are visible even if animation fails */
@media (prefers-reduced-motion: reduce) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--warm-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 60px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: none;
    transition: all var(--transition-med);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn svg,
.btn i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-booking {
    background: #003580;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 53, 128, 0.3);
}

.btn-booking:hover {
    background: #00245c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 53, 128, 0.4);
}

.btn-sale {
    background: linear-gradient(135deg, var(--terracotta), var(--terracotta-light));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(201, 93, 58, 0.3);
}

.btn-sale:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 93, 58, 0.45);
}

.btn-outline-sale {
    background: transparent;
    color: var(--terracotta);
    border: 2px solid var(--terracotta);
}

.btn-outline-sale:hover {
    background: var(--terracotta);
    color: var(--white);
    transform: translateY(-2px);
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-med);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    z-index: 101;
}

.logo-icon {
    display: flex;
    align-items: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    filter: drop-shadow(0 0 8px rgba(212, 168, 83, 0.4));
    transition: transform var(--transition-med), filter var(--transition-med);
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.nav-logo-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-logo:hover .logo-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(212, 168, 83, 0.7));
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 30px;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 101;
}

.lang-switcher {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.08);
    padding: 4px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 8px;
    border-radius: 20px;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: var(--font-body);
    letter-spacing: 0.05em;
}

.lang-btn.active {
    background: var(--gold);
    color: var(--navy);
}

.lang-btn:hover:not(.active) {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* Hamburger */
.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(--white);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.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);
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-parallax {
    position: absolute;
    inset: -60px;
    background:
        linear-gradient(135deg,
            rgba(26, 47, 82, 0.35) 0%,
            rgba(45, 106, 138, 0.2) 50%,
            rgba(26, 92, 58, 0.15) 100%),
        url('images/optimized/DSCF6848-2.jpg');
    background-size: cover;
    background-position: center 75%;
    background-blend-mode: overlay;
    will-change: transform;
    transition: transform 0.1s linear;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(212, 168, 83, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(201, 93, 58, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, rgba(10, 22, 40, 0.5) 0%, rgba(10, 22, 40, 0.2) 40%, rgba(10, 22, 40, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 var(--container-px);
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(212, 168, 83, 0.15);
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: 30px;
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    line-height: 1.05;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--gold-light);
    font-family: var(--font-body);
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.key-logo {
    width: clamp(88px, 12vw, 132px);
    margin: 24px auto 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid rgba(212, 168, 83, 0.28);
    box-shadow: var(--shadow-sm), var(--shadow-glow);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}



.key-logo-video {
    display: block;
    width: 100%;
    height: auto;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        opacity: 0.3;
        transform: translateY(12px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === SECTIONS (generic) === */
.section {
    padding: var(--section-py) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 20px;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.12), rgba(212, 168, 83, 0.05));
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 30px;
    color: var(--gold-dark);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-dark), var(--navy-mid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-header .key-logo {
    margin-top: 22px;
}

.section-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.key-logo--inline {
    width: 110px;
    margin: 0;
    margin-top: -14px;
    flex-shrink: 0;
}

/* === ABOUT === */
.section-about {
    background: var(--warm-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* About text wrapper with framed photo */
.about-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 3px solid rgba(212, 168, 83, 0.35);
    z-index: 1;
    pointer-events: none;
}

.about-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 22, 40, 0.25) 100%);
    z-index: 1;
    pointer-events: none;
}

.about-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

.about-frame:hover img {
    transform: scale(1.04);
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-text strong {
    color: var(--text-dark);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.key-logo--about {
    width: 140px;
    margin: 0 auto 8px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-med);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.feature-card--interactive {
    cursor: pointer;
}

/* Background image container */
.feature-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
    z-index: 0;
}

.feature-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.65) 0%, rgba(10, 22, 40, 0.45) 100%);
}

.feature-card--interactive:hover .feature-bg {
    opacity: 1;
}

/* Keep content above the background */
.feature-card .feature-icon,
.feature-card .feature-info,
.feature-card .feature-arrow {
    position: relative;
    z-index: 1;
    transition: color var(--transition-med), transform var(--transition-med);
}

.feature-card--interactive:hover .feature-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--gold-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card--interactive:hover .feature-info h4 {
    color: var(--white);
}

.feature-card--interactive:hover .feature-info p {
    color: rgba(255, 255, 255, 0.8);
}

/* Arrow indicator */
.feature-arrow {
    margin-left: auto;
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--transition-med);
    color: var(--gold-light);
    flex-shrink: 0;
}

.feature-arrow i {
    width: 20px;
    height: 20px;
}

.feature-card--interactive:hover .feature-arrow {
    opacity: 1;
    transform: translateX(0);
}

.feature-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 168, 83, 0.2);
}

.feature-card--interactive:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 168, 83, 0.4);
}

/* "Coming soon" dim style */
.feature-card--soon {
    opacity: 0.7;
}

.feature-card--soon:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
    border-color: rgba(0, 0, 0, 0.04);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.1), rgba(212, 168, 83, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold-dark);
}

.feature-icon i {
    width: 24px;
    height: 24px;
}

.feature-info h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.feature-info p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.4;
}

/* === CLIMBING === */
.section-climbing {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}

.section-climbing .section-tag {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.2), rgba(212, 168, 83, 0.08));
    border-color: rgba(212, 168, 83, 0.3);
    color: var(--gold-light);
}

.section-climbing .section-title {
    -webkit-text-fill-color: var(--white);
    background: none;
}

.section-climbing .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.climbing-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.climbing-info p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.9;
}

.climbing-info strong {
    color: var(--gold-light);
}

.climbing-stats {
    display: flex;
    gap: 32px;
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.climb-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.climb-stat-label {
    display: block;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.climbing-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.btn-climbing {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
    padding: 12px 24px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-med);
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-climbing:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.5);
}

.btn-climbing i {
    width: 16px;
    height: 16px;
}

.btn-climbing-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.25);
    padding: 10px 22px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-med);
    text-decoration: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-climbing-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-climbing-outline i {
    width: 16px;
    height: 16px;
}

.climbing-gallery {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.climbing-swiper {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.climbing-swiper .swiper-slide {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--navy-mid);
}

.climbing-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 400px;
    max-height: 520px;
}

.climbing-swiper .swiper-button-prev,
.climbing-swiper .swiper-button-next {
    color: var(--white);
    background: rgba(10, 22, 40, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all var(--transition-fast);
}

.climbing-swiper .swiper-button-prev:hover,
.climbing-swiper .swiper-button-next:hover {
    background: rgba(10, 22, 40, 0.75);
}

.climbing-swiper .swiper-button-prev::after,
.climbing-swiper .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
}

.climbing-swiper .swiper-pagination {
    bottom: 12px !important;
}

.climbing-swiper .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
    width: 8px;
    height: 8px;
}

.climbing-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--gold);
    width: 20px;
    border-radius: 4px;
}

/* Climbing area cards */
.climbing-areas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.climbing-area-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition-med);
}

.climbing-area-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 168, 83, 0.3);
    transform: translateY(-4px);
}

.climbing-area-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.2), rgba(212, 168, 83, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 1.5rem;
    line-height: 1;
}

.climbing-area-icon i {
    width: 24px;
    height: 24px;
}

.climbing-area-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
}

.climbing-area-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 16px;
    object-fit: cover;
    max-height: 220px;
}

.climbing-area-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.climbing-area-card strong {
    color: var(--gold-light);
}

/* === APARTMENTS === */
.section-apartments {
    background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}

.apartments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.apartment-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-med);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.apartment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.apt-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: #1a1a2e;
}

/* Apartment Swiper carousel */
.apt-swiper {
    width: 100%;
    height: 100%;
}

.apt-swiper .swiper-slide {
    overflow: hidden;
}

.apt-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.apt-swiper .swiper-button-prev,
.apt-swiper .swiper-button-next {
    color: var(--white);
    background: rgba(10, 22, 40, 0.45);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all var(--transition-fast);
}

.apt-swiper .swiper-button-prev:hover,
.apt-swiper .swiper-button-next:hover {
    background: rgba(10, 22, 40, 0.7);
}

.apt-swiper .swiper-button-prev::after,
.apt-swiper .swiper-button-next::after {
    font-size: 14px;
    font-weight: 700;
}

.apt-swiper .swiper-pagination {
    bottom: 10px !important;
}

.apt-swiper .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.6;
    width: 7px;
    height: 7px;
}

.apt-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--gold);
    width: 20px;
    border-radius: 4px;
}

.apt-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
}

.apt-content {
    padding: 28px;
}

.apt-name {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.apt-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.apt-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.amenity {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-body);
    padding: 6px 12px;
    background: var(--cream);
    border-radius: 20px;
}

.amenity i {
    width: 14px;
    height: 14px;
    color: var(--gold-dark);
}

.btn-booking {
    width: 100%;
    justify-content: center;
}

.booking-icon {
    flex-shrink: 0;
}

/* === PARALLAX BREAKS === */
.parallax-break {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    inset: -400px -20px;
    will-change: transform;
    transition: transform 0.1s linear;
}

.parallax-bg-2 {
    /* image handled by <img> inside */
}

.parallax-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.breeze-bg-img {
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.breeze-bg-img.active {
    opacity: 1;
}

.parallax-bg-3 {
    background: none;
}

.stats-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.stats-bg-img.active {
    opacity: 1;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.25);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--container-px);
}

.parallax-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    -webkit-text-fill-color: var(--white);
    background: none;
}

.parallax-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

/* === PHOTO GALLERY === */
.section-gallery {
    background: var(--warm-white);
}

.section-gallery .container {
    max-width: 1400px;
}

.gallery-section {
    margin-bottom: 48px;
}

.gallery-section:last-child {
    margin-bottom: 0;
}

.gallery-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-body);
    margin-bottom: 20px;
    padding-left: 4px;
}

.gallery-section-title i {
    width: 20px;
    height: 20px;
    color: var(--gold-dark);
}

.gallery-swiper {
    width: 100%;
    padding-bottom: 50px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

/* Landscape slides — large 16:10 ratio, 2 per view on desktop */
.gallery-landscape .swiper-slide {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--cream);
}

/* Portrait slides — tall 2:3 ratio, 3-4 per view on desktop */
.gallery-portrait .swiper-slide {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: var(--cream);
}

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

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

.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
    color: var(--white);
    background: rgba(10, 22, 40, 0.5);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all var(--transition-fast);
}

.gallery-swiper .swiper-button-prev:hover,
.gallery-swiper .swiper-button-next:hover {
    background: rgba(10, 22, 40, 0.75);
}

.gallery-swiper .swiper-button-prev::after,
.gallery-swiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
}

.gallery-swiper .swiper-pagination {
    bottom: 8px !important;
}

.gallery-swiper .swiper-pagination-bullet {
    background: var(--navy);
    opacity: 0.3;
    width: 8px;
    height: 8px;
    transition: all var(--transition-fast);
}

.gallery-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* Stats */
.stats-grid {
    display: flex;
    gap: 80px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: inline;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 8px;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

/* === FOR SALE === */
.section-sale {
    background: linear-gradient(180deg, var(--warm-white), var(--cream));
}

.section-sale > .container {
    max-width: 1600px;
}

.sale-tag {
    background: linear-gradient(135deg, rgba(201, 93, 58, 0.12), rgba(201, 93, 58, 0.05));
    border-color: rgba(201, 93, 58, 0.25);
    color: var(--terracotta);
}

.sale-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.sale-visual {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.sale-swiper {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.sale-swiper .swiper-slide {
    overflow: hidden;
}

.sale-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sale-swiper .swiper-button-prev,
.sale-swiper .swiper-button-next {
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.sale-swiper .swiper-pagination {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
    letter-spacing: 0.04em;
}

.sale-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.sale-swiper .swiper-pagination-bullet-active {
    background: var(--gold);
    opacity: 1;
}

.sale-price-inline {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 18px;
}

.sale-price-inline span {
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    font-weight: 600;
}

.sale-price-inline strong {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    line-height: 1;
    color: var(--terracotta);
}

.sale-info {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sale-info h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    line-height: 1.3;
}

.sale-info>p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.sale-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 32px;
}

.sale-fact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
    min-height: 104px;
    padding: 14px 12px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0,0,0,0.06);
}

.sale-fact i {
    width: 20px;
    height: 20px;
    color: var(--terracotta);
    flex-shrink: 0;
}

.sale-fact strong {
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-dark);
}

.sale-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.highlight i {
    width: 24px;
    height: 24px;
    color: var(--terracotta);
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight strong {
    display: block;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.highlight span {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.sale-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* === LOCATION === */
.section-location {
    background: var(--warm-white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.loc-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-med);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.loc-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.loc-item i {
    width: 24px;
    height: 24px;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.loc-item strong {
    display: block;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.loc-item span {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.location-map {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.gandia-map-canvas,
.gandia-map-fallback {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 16px;
    display: block;
}

.gandia-map-canvas {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.06), rgba(10, 22, 40, 0.12));
}

.gandia-map-fallback {
    display: none;
}

.location-map-legend {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(10, 22, 40, 0.12);
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(10, 22, 40, 0.12);
    padding: 8px 10px;
    min-width: 220px;
}

.location-map-legend h5 {
    margin: 0 0 6px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-dark);
}

.location-map-legend .legend-grid {
    display: grid;
    gap: 4px;
}

.location-map-legend .legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: var(--text-body);
    line-height: 1.2;
}

.location-map-legend .legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

/* === WEATHER WIDGET === */
.weather-widget {
    margin-top: 28px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.04), rgba(10, 22, 40, 0.08));
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,0,0,0.06);
}

.weather-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.weather-title i {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.weather-days {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.weather-day {
    text-align: center;
    padding: 12px 8px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.weather-day-name {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.weather-icon {
    font-size: 1.6rem;
    display: block;
    margin-bottom: 4px;
}

.weather-temp {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.weather-temp-min {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
}

.weather-loading {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 20px;
}

/* === DISTANCES === */
.section-distances {
    background: var(--navy);
    color: var(--white);
}

.section-distances .section-tag {
    background: rgba(212, 168, 83, 0.15);
    color: var(--gold);
}

.section-distances .section-title {
    color: var(--white);
}

.section-distances .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.distances-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.dist-category {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}

.dist-cat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 22px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.dist-cat-header i {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.dist-cat-header h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.dist-items {
    padding: 8px 0;
}

.dist-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 22px;
    transition: background var(--transition-fast);
}

.dist-item:hover {
    background: rgba(255,255,255,0.04);
}

.dist-item.dist-featured {
    background: rgba(212, 168, 83, 0.08);
    border-left: 3px solid var(--gold);
}

.dist-name {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dist-name strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.dist-name span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.dist-video-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(212, 168, 83, 0.45);
    color: var(--gold);
    background: rgba(255,255,255,0.02);
    transition: all var(--transition-fast);
    margin: 0 10px 0 auto;
    flex-shrink: 0;
}

.dist-video-link:hover {
    background: rgba(212, 168, 83, 0.12);
    border-color: var(--gold);
    color: var(--white);
}

.dist-video-link i {
    width: 14px;
    height: 14px;
}

.dist-badge {
    display: inline-block;
    padding: 2px 8px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    width: fit-content;
}

.dist-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 12px;
    transition: opacity 0.4s ease;
}

.dist-value.dist-fade {
    opacity: 0;
}

/* === CONTACT === */
.section-contact {
    background: linear-gradient(180deg, var(--cream), var(--warm-white));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.key-logo--contact {
    width: 120px;
    margin: 0 0 12px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item i {
    width: 24px;
    height: 24px;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
    font-size: 1rem;
    color: var(--text-dark);
}

.contact-item a:hover {
    color: var(--gold-dark);
}

.contact-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--text-body);
    transition: all var(--transition-fast);
}

.social-link i {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    color: var(--gold-dark);
}

.booking-link:hover {
    color: #003580;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 18px 20px;
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 168, 83, 0.1);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 18px;
    font-size: 1rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: all var(--transition-fast);
    background: var(--white);
    padding: 0;
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: -8px;
    left: 16px;
    font-size: 0.75rem;
    color: var(--gold-dark);
    padding: 0 6px;
    font-weight: 600;
}

.form-group select~label {
    top: -8px;
    left: 16px;
    font-size: 0.75rem;
    color: var(--gold-dark);
    padding: 0 6px;
    font-weight: 600;
}

.btn-submit {
    align-self: flex-start;
}

/* Form success message */
.form-success {
    display: none;
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 2px solid rgba(212, 168, 83, 0.3);
}

.form-success.visible {
    display: block;
    animation: fadeInUp 0.6s var(--ease-out);
}

.form-success h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-muted);
}

/* === FOOTER === */
.footer {
    background: var(--navy);
    padding: 60px 0 40px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer .logo-text {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-links a {
    color: var(--gold-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

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

.footer-sep {
    color: rgba(255, 255, 255, 0.3);
}

.footer-copy {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
    margin-top: 12px;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === NEARBY PLACES === */
.section-places {
    background: linear-gradient(180deg, var(--warm-white), var(--cream));
}

.container-places {
    max-width: 1400px;
}

.places-group-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin: 48px 0 20px;
    padding-left: 4px;
}

.places-group-title:first-of-type {
    margin-top: 0;
}

.places-group-title i {
    width: 18px;
    height: 18px;
    color: var(--gold-dark);
}

.place-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 16px;
    transition: box-shadow var(--transition-med);
}

.place-card:hover {
    box-shadow: var(--shadow-md);
}

.place-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    text-align: left;
    color: inherit;
    transition: background var(--transition-fast);
}

.place-header:hover {
    background: rgba(212, 168, 83, 0.04);
}

.place-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.place-header-left > i {
    width: 24px;
    height: 24px;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.place-header-left h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.place-header-left p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

.place-count {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: var(--cream);
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.place-chevron {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform var(--transition-med);
    flex-shrink: 0;
}

.place-header[aria-expanded="true"] .place-chevron {
    transform: rotate(180deg);
}

.place-body {
    display: none;
}

.place-body.open {
    display: block;
    animation: fadeInUp 0.4s var(--ease-out);
}

.place-body-inner {
    padding: 0 24px 24px;
}

.place-body-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.place-body-desc strong {
    color: var(--text-dark);
}

/* === HIKING SHOWCASE === */
.hiking-showcase {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.08), rgba(245,240,230,0.6));
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
}

.hiking-showcase-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.hiking-showcase-icon {
    font-size: 2.2rem;
    line-height: 1;
    flex-shrink: 0;
}

.hiking-showcase-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.hiking-showcase-subtitle {
    font-size: 0.95rem;
    color: rgba(26, 26, 46, 0.55);
    margin: 0;
}

/* ── Masonry gallery: CSS columns, every image shown in full ── */
.hiking-showcase-gallery {
    columns: 3;
    column-gap: 10px;
    margin-bottom: 28px;
}

.hiking-showcase-img {
    break-inside: avoid;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.hiking-showcase-img:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.hiking-showcase-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.hiking-showcase-img:hover img {
    transform: scale(1.05);
    filter: brightness(1.05);
}

.hiking-showcase-desc {
    font-size: 1.05rem;
    color: rgba(26, 26, 46, 0.75);
    line-height: 1.8;
    margin-bottom: 20px;
}

.hiking-showcase-desc strong {
    color: var(--gold);
}

.hiking-showcase-swiper {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .hiking-showcase {
        padding: 20px;
    }
    .hiking-showcase-title {
        font-size: 1.25rem;
    }
    .hiking-showcase-gallery {
        columns: 2;
    }
}

/* ── Trail list ── */
.trail-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 8px;
    margin-bottom: 18px;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 4px;
}

.trail-list::-webkit-scrollbar {
    width: 5px;
}
.trail-list::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.03);
    border-radius: 4px;
}
.trail-list::-webkit-scrollbar-thumb {
    background: rgba(212, 164, 74, 0.25);
    border-radius: 4px;
}

.trail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    cursor: pointer;
    transition: all 0.25s ease;
}

.trail-item:hover {
    background: rgba(212, 164, 74, 0.08);
    border-color: rgba(212, 164, 74, 0.2);
}

.trail-item.active {
    background: rgba(212, 164, 74, 0.12);
    border-color: rgba(212, 164, 74, 0.4);
    box-shadow: 0 0 12px rgba(212, 164, 74, 0.1);
}

.trail-item-color {
    width: 6px;
    min-height: 36px;
    border-radius: 3px;
    flex-shrink: 0;
    margin-top: 2px;
}

.trail-item-info {
    flex: 1;
    min-width: 0;
}

.trail-item-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
    line-height: 1.3;
}

.trail-item-stats {
    font-size: 0.72rem;
    color: var(--gold);
    letter-spacing: 0.02em;
    font-weight: 500;
    margin-bottom: 3px;
}

.trail-item-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.trail-item.active .trail-item-name {
    color: var(--gold);
}

@media (max-width: 600px) {
    .trail-list {
        grid-template-columns: 1fr;
        max-height: 350px;
    }
}

/* Map fullscreen mode */
.map-fullscreen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999 !important;
    border-radius: 0 !important;
    border: none !important;
}
#trail-map:fullscreen {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    border: none;
}

.place-swiper {
    width: 100%;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.place-swiper .swiper-slide {
    background: #f0ede8;
    border-radius: var(--radius-sm);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75vh;
    max-height: 800px;
    min-height: 400px;
}

.place-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.place-swiper .swiper-slide-active {
    box-shadow: 0 0 0 3px var(--gold);
}

.place-swiper .swiper-button-prev,
.place-swiper .swiper-button-next {
    color: var(--white);
    background: rgba(10, 22, 40, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all var(--transition-fast);
}

.place-swiper .swiper-button-prev:hover,
.place-swiper .swiper-button-next:hover {
    background: rgba(10, 22, 40, 0.75);
}

.place-swiper .swiper-button-prev::after,
.place-swiper .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
}

.place-swiper .swiper-pagination {
    bottom: 12px !important;
}

.place-swiper .swiper-pagination-bullet {
    background: var(--navy);
    opacity: 0.3;
    width: 8px;
    height: 8px;
}

.place-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--gold);
    width: 20px;
    border-radius: 4px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    :root {
        --section-py: 80px;
    }

    .apartments-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .climbing-grid {
        grid-template-columns: 1fr;
    }

    .climbing-areas {
        grid-template-columns: 1fr 1fr;
    }

    .sale-card {
        grid-template-columns: 1fr;
    }

    .sale-visual {
        min-height: 300px;
    }

    .sale-info {
        padding: 32px;
    }

    .distances-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-py: 60px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 22, 40, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-med);
        z-index: 100;
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: all;
    }

    .nav-link {
        font-size: 1.3rem;
        padding: 12px 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .climbing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .climbing-stats {
        justify-content: center;
    }

    .climbing-links {
        justify-content: center;
    }

    .climbing-areas {
        grid-template-columns: 1fr;
    }

    .climbing-swiper .swiper-slide img {
        min-height: 280px;
        max-height: 400px;
    }

    .place-swiper .swiper-slide {
        height: 52vh;
        min-height: 260px;
        max-height: 460px;
    }

    .place-swiper .swiper-slide img {
        object-fit: cover;
    }

    .place-header {
        padding: 16px 18px;
        gap: 12px;
    }

    .place-header-left p {
        display: none;
    }

    .apartments-grid {
        grid-template-columns: 1fr;
    }

    .distances-grid {
        grid-template-columns: 1fr;
    }

    .weather-days {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        gap: 40px;
    }

    .sale-facts {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .sale-info {
        padding: 24px;
    }

    .sale-price-inline {
        gap: 8px;
        margin-bottom: 14px;
    }

    .sale-price-inline strong {
        font-size: 1.45rem;
    }

    .sale-fact {
        min-height: 88px;
        padding: 10px 8px;
        gap: 6px;
    }

    .sale-fact i {
        width: 18px;
        height: 18px;
    }

    .sale-fact strong {
        font-size: 0.82rem;
        line-height: 1.28;
    }

    .sale-highlights {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 12px 28px;
    }

    .sale-ctas {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .lang-switcher {
        gap: 2px;
    }

    .lang-btn {
        padding: 5px 8px;
        font-size: 0.7rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .apt-content {
        padding: 20px;
    }

    .sale-facts {
        grid-template-columns: 1fr;
    }

    #trail-map {
        height: 320px !important;
    }
}