/*
 * XPosure Apartment — Naturist Mediterranean Freedom
 * Golden hour warmth, sand between your toes, total liberation
 */

/* ========== CSS VARIABLES ========== */
:root {
    --sand: #E8D5B8;
    --sand-light: #F5EEE3;
    --sand-warm: #DFC9A8;
    --sand-golden: #D4B88A;
    --ocean: #1A6178;
    --ocean-deep: #12424F;
    --ocean-light: #9EC8D8;
    --ocean-mist: #C9E0EB;
    --terracotta: #C25D38;
    --terracotta-deep: #A64E2E;
    --terracotta-glow: #E07A4A;
    --white: #FFFFFF;
    --cream: #FBF6EF;
    --charcoal: #2A2118;
    --warm-gray: #877A6C;
    --gold: #C99A45;
    --gold-light: #DBAE5C;
    --gold-warm: #E5C47A;
    --border: #DFD2C0;
    --shadow-sm: 0 2px 12px rgba(42,33,24,0.06);
    --shadow-md: 0 8px 32px rgba(42,33,24,0.08);
    --shadow-lg: 0 16px 48px rgba(42,33,24,0.1);
    --shadow-xl: 0 24px 64px rgba(42,33,24,0.12);
    --shadow-gold: 0 8px 32px rgba(201,154,69,0.15);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    --radius-pill: 50px;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-wave: cubic-bezier(0.45, 0, 0.55, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Raleway', sans-serif;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.82;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0.01em;
}

::selection {
    background: var(--gold-warm);
    color: var(--charcoal);
}

/* ========== NAVIGATION ========== */
.xp-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.4rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s var(--ease-out);
    background: transparent;
}

.xp-nav.scrolled {
    background: rgba(251,246,239,0.92);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    box-shadow: 0 1px 0 rgba(42,33,24,0.06), 0 4px 20px rgba(42,33,24,0.04);
    padding: 0.8rem 3rem;
}

.xp-nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: all 0.4s var(--ease-out);
}

.xp-nav.scrolled .xp-nav-logo { color: var(--ocean-deep); }

.xp-nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

.xp-nav-links a {
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: all 0.35s var(--ease-out);
    position: relative;
    padding-bottom: 2px;
}

.xp-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold-light);
    transition: width 0.4s var(--ease-out);
}

.xp-nav-links a:hover { color: var(--white); }
.xp-nav-links a:hover::after { width: 100%; }
.xp-nav.scrolled .xp-nav-links a { color: var(--warm-gray); }
.xp-nav.scrolled .xp-nav-links a:hover { color: var(--charcoal); }

.lang-switch {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-pill);
    overflow: hidden;
    transition: border-color 0.4s;
    backdrop-filter: blur(8px);
}

.xp-nav.scrolled .lang-switch {
    border-color: var(--border);
    backdrop-filter: none;
}

.lang-btn {
    padding: 0.32rem 0.7rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.65);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    font-family: 'Raleway', sans-serif;
}

.xp-nav.scrolled .lang-btn { color: var(--warm-gray); }

.lang-btn.active {
    background: rgba(255,255,255,0.92);
    color: var(--ocean-deep);
}

.xp-nav.scrolled .lang-btn.active {
    background: var(--gold);
    color: var(--white);
}

/* ========== HAMBURGER MENU ========== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    width: 26px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.35s var(--ease-out);
    display: block;
    border-radius: 1px;
}

.xp-nav.scrolled .hamburger span { background: var(--charcoal); }

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

.xp-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(18,66,79,0.3) 0%,
            rgba(201,154,69,0.15) 50%,
            rgba(194,93,56,0.2) 100%),
        linear-gradient(135deg,
            #1a6178 0%, #2d8fad 25%, #68b8d7 50%, #e5c47a 75%, #c25d38 100%);
    background-size: cover;
}

.xp-hero-bg.has-image {
    background-size: cover;
    background-position: center 40%;
}

.xp-hero-bg.has-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(18,66,79,0.45) 0%,
            rgba(18,66,79,0.25) 30%,
            rgba(201,154,69,0.12) 60%,
            rgba(194,93,56,0.3) 100%) !important;
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    z-index: 3;
}

.hero-waves svg {
    position: absolute;
    bottom: 0;
    width: 200%;
    height: 100%;
}

.wave-1 { animation: wave 14s var(--ease-wave) infinite; opacity: 0.35; }
.wave-2 { animation: wave 10s var(--ease-wave) infinite reverse; opacity: 0.25; }
.wave-3 { animation: wave 18s var(--ease-wave) infinite; opacity: 0.65; }

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.xp-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    max-width: 800px;
    animation: heroReveal 1.6s var(--ease-out) both;
}

@keyframes heroReveal {
    from { opacity: 0; transform: translateY(45px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.xp-hero-badge {
    display: inline-block;
    background: rgba(201,154,69,0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(219,174,92,0.3);
    padding: 0.55rem 1.8rem;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-warm);
    margin-bottom: 2rem;
    animation: heroReveal 1.6s var(--ease-out) 0.15s both;
}

.xp-hero h1 {
    font-size: clamp(3rem, 6.5vw, 5.4rem);
    color: var(--white);
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 20px rgba(42,33,24,0.25);
    animation: heroReveal 1.6s var(--ease-out) 0.3s both;
    letter-spacing: 0.01em;
    line-height: 1.06;
}

.xp-hero h1 em {
    font-style: italic;
    color: var(--gold-warm);
    text-shadow: 0 2px 20px rgba(201,154,69,0.35);
}

.xp-hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    font-weight: 400;
    max-width: 540px;
    margin: 0 auto 2.2rem;
    line-height: 1.9;
    text-shadow: 0 1px 10px rgba(42,33,24,0.25);
    animation: heroReveal 1.6s var(--ease-out) 0.45s both;
}

.xp-hero-price {
    display: inline-block;
    background: rgba(42,33,24,0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(219,174,92,0.25);
    padding: 0.65rem 2rem;
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    animation: heroReveal 1.6s var(--ease-out) 0.55s both;
}

.xp-hero-price strong {
    color: var(--gold-warm);
    font-size: 1.3rem;
    font-weight: 700;
}

.xp-hero-price .price-save {
    opacity: 0.8;
    font-weight: 400;
    font-size: 0.82rem;
    color: var(--gold-warm);
    text-decoration: none;
    transition: opacity 0.3s;
}

.xp-hero-price .price-save:hover {
    opacity: 1;
    text-decoration: underline;
}

.xp-hero-cta {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: heroReveal 1.6s var(--ease-out) 0.65s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.8rem;
    font-family: 'Raleway', sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius-pill);
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(194,93,56,0.3);
}

.btn-primary:hover {
    background: var(--terracotta-glow);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(194,93,56,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.35);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.65);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    animation: gentleBounce 3s ease-in-out infinite;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    stroke: rgba(229,196,122,0.5);
}

@keyframes gentleBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.25; }
}

/* ========== SECTIONS ========== */
.xp-section {
    padding: 7rem 2rem;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1.5px;
    background: var(--gold);
    margin-right: 12px;
    vertical-align: middle;
    opacity: 0.5;
}

.section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    color: var(--ocean-deep);
    margin-bottom: 1.2rem;
    letter-spacing: 0.01em;
}

.section-desc {
    max-width: 560px;
    color: var(--warm-gray);
    font-size: 1rem;
    line-height: 1.9;
    font-weight: 300;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ========== HIGHLIGHTS ========== */
.xp-highlights {
    background: var(--white);
    padding: 5.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.xp-highlights::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/sand-texture.webp') center/cover no-repeat;
    opacity: 0.04;
    pointer-events: none;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.highlight-item {
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.4s var(--ease-out);
}

.highlight-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border);
}

.highlight-item:hover {
    background: rgba(201,154,69,0.05);
}

.highlight-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.4rem;
    background: linear-gradient(135deg, rgba(201,154,69,0.08), rgba(201,154,69,0.15));
    border: 1.5px solid rgba(201,154,69,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-out);
}

.highlight-item:hover .highlight-icon {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(201,154,69,0.12), rgba(201,154,69,0.22));
    transform: scale(1.08);
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    transition: stroke 0.3s;
}

.highlight-item h3 {
    font-size: 1.2rem;
    color: var(--ocean-deep);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight-item p {
    font-size: 0.85rem;
    color: var(--warm-gray);
    font-weight: 300;
    line-height: 1.65;
}

/* ========== ABOUT ========== */
.xp-about {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.about-images {
    position: relative;
    height: 520px;
}

.about-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.6s var(--ease-out);
}

.about-img:hover { transform: scale(1.02) rotate(0.3deg); }

.about-img-1 {
    width: 62%;
    height: 72%;
    top: 0;
    left: 0;
    z-index: 1;
}

.about-img-2 {
    width: 52%;
    height: 52%;
    bottom: 0;
    right: 0;
    border: 6px solid var(--cream);
    z-index: 2;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text .section-desc { margin-bottom: 2.5rem; }

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.88rem;
    color: var(--charcoal);
    padding: 0.35rem 0;
}

.feature-check {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, rgba(201,154,69,0.12), rgba(201,154,69,0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-check svg {
    width: 12px;
    height: 12px;
    stroke: var(--gold);
}

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

.gallery-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.gallery-header .section-desc { margin: 0.8rem auto 0; }

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 0.8rem;
}

.gallery-grid .gallery-item:first-child {
    grid-row: 1 / 3;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item picture,
.about-img picture {
    display: contents;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out), filter 0.5s;
    filter: saturate(0.95) brightness(0.98);
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: saturate(1.1) brightness(1.02);
}

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42,33,24,0.6) 0%, rgba(201,154,69,0.08) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
    display: flex;
    align-items: flex-end;
    padding: 1.8rem;
}

.gallery-item:hover .overlay { opacity: 1; }

.overlay span {
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* ========== REVIEWS ========== */
.xp-reviews {
    background: var(--sand-light);
    position: relative;
    overflow: hidden;
}

.xp-reviews::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/sand-texture.webp') center/cover no-repeat;
    opacity: 0.03;
    pointer-events: none;
}

.reviews-header { text-align: center; margin-bottom: 3.5rem; position: relative; }
.reviews-header .section-desc { margin: 0.5rem auto 0; }

.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.1rem 2.2rem;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-md);
    margin-top: 2rem;
    border: 1px solid rgba(201,154,69,0.15);
}

.reviews-score {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--gold), var(--terracotta));
    width: 58px;
    height: 58px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.reviews-source { text-align: left; }

.reviews-label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ocean-deep);
}

.reviews-platform {
    font-size: 0.78rem;
    color: var(--warm-gray);
    font-weight: 400;
}

.reviews-location-score {
    padding-left: 1.5rem;
    border-left: 1px solid var(--border);
    font-size: 0.82rem;
    color: var(--warm-gray);
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.reviews-location-score strong {
    color: var(--gold);
    font-size: 1.05rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    max-width: 920px;
    margin: 0 auto;
    position: relative;
}

.review-card {
    background: var(--white);
    padding: 2.2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.45s var(--ease-out);
    border-left: 3px solid var(--gold);
    position: relative;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    right: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--sand);
    pointer-events: none;
}

.review-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.review-card p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--charcoal);
    font-style: italic;
    font-weight: 300;
}

.review-author {
    margin-top: 1.2rem;
    font-size: 0.75rem;
    color: var(--warm-gray);
    font-weight: 500;
    letter-spacing: 0.04em;
}

/* ========== LIGHTBOX ========== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(42,33,24,0.95);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 88vw;
    max-height: 82vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: rgba(255,255,255,0.65);
    cursor: pointer;
    font-size: 2rem;
    padding: 1rem;
    transition: all 0.3s var(--ease-out);
    z-index: 2001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--gold-warm); transform: scale(1.1); }

.lightbox-close { top: 1.5rem; right: 2rem; font-size: 2.2rem; }
.lightbox-prev { left: 2rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 2rem; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox-next:hover { transform: translateY(-50%) translateX(3px); }

.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    text-align: center;
    letter-spacing: 0.02em;
}

/* ========== LOCATION ========== */
.xp-location {
    color: var(--white);
    position: relative;
    overflow: hidden;
    background: var(--ocean-deep);
}

.xp-location::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/aerial-beach.webp') center/cover no-repeat;
    opacity: 0.12;
    pointer-events: none;
}

.xp-location::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(201,154,69,0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(194,93,56,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.xp-location .section-label { color: var(--gold-warm); }
.xp-location .section-label::before { background: var(--gold-warm); }
.xp-location .section-title { color: var(--white); }
.xp-location .section-desc { color: rgba(255,255,255,0.6); }

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3.5rem;
    position: relative;
}

.location-facts { display: grid; gap: 1.8rem; }

.location-fact {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.fact-icon {
    width: 46px;
    height: 46px;
    background: rgba(201,154,69,0.1);
    border: 1px solid rgba(201,154,69,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s var(--ease-out);
}

.location-fact:hover .fact-icon {
    background: rgba(201,154,69,0.2);
    border-color: rgba(201,154,69,0.4);
    transform: scale(1.08);
}

.fact-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold-warm);
}

.location-fact h4 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.location-fact p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    line-height: 1.65;
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    background: rgba(255,255,255,0.05);
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.location-map iframe { width: 100%; height: 100%; border: none; }

/* ========== CONTACT ========== */
.xp-contact {
    background: var(--sand);
    position: relative;
    overflow: hidden;
}

.xp-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/sand-texture.webp') center/cover no-repeat;
    opacity: 0.06;
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4.5rem;
    align-items: start;
    position: relative;
}

.contact-info { margin-top: 2.5rem; }

.contact-method {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    margin-bottom: 1.2rem;
    padding: 1.3rem 1.6rem;
    background: var(--white);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--charcoal);
    transition: all 0.4s var(--ease-out);
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(201,154,69,0.2);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(201,154,69,0.1), rgba(201,154,69,0.18));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s var(--ease-out);
}

.contact-method:hover .contact-icon {
    background: var(--gold);
}

.contact-method:hover .contact-icon svg {
    stroke: var(--white);
}

.contact-icon svg { width: 20px; height: 20px; stroke: var(--gold); transition: stroke 0.4s; }
.contact-method h4 { font-size: 0.95rem; margin-bottom: 0.15rem; }
.contact-method p { font-size: 0.82rem; color: var(--warm-gray); }

.contact-form-box {
    background: var(--white);
    padding: 2.8rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201,154,69,0.08);
}

.contact-form-box h3 {
    font-size: 1.6rem;
    color: var(--ocean-deep);
    margin-bottom: 1.8rem;
}

.form-group { margin-bottom: 1.3rem; }

.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Raleway', sans-serif;
    font-size: 0.92rem;
    color: var(--charcoal);
    transition: all 0.35s var(--ease-out);
    background: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,154,69,0.1);
    background: var(--white);
}

.form-group textarea { height: 120px; resize: vertical; }

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

.btn-submit {
    width: 100%;
    padding: 1.05rem;
    margin-top: 0.5rem;
    font-size: 0.82rem;
}

/* ========== FORM STATUS ========== */
.form-status {
    padding: 1rem 1.2rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.2rem;
    font-size: 0.88rem;
    display: none;
    font-weight: 500;
}

.form-status.success {
    display: block;
    background: rgba(34,197,94,0.08);
    color: #15803d;
    border: 1px solid rgba(34,197,94,0.2);
}

.form-status.error {
    display: block;
    background: rgba(239,68,68,0.06);
    color: #dc2626;
    border: 1px solid rgba(239,68,68,0.15);
}

/* ========== PRICING ========== */
.xp-pricing {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.xp-pricing::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/water-texture.webp') center/cover no-repeat;
    opacity: 0.03;
    pointer-events: none;
}

.pricing-header { text-align: center; margin-bottom: 3.5rem; position: relative; }
.pricing-header .section-desc { margin: 0.8rem auto 0; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.45s var(--ease-out);
    border: 1px solid var(--border);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.pricing-card-peak {
    border-color: var(--gold);
    background: linear-gradient(180deg, var(--white) 0%, rgba(201,154,69,0.06) 100%);
    box-shadow: var(--shadow-gold);
}

.pricing-card-peak::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--terracotta-glow), var(--gold), transparent);
    border-radius: 0 0 4px 4px;
}

.pricing-season {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ocean-deep);
    margin-bottom: 0.3rem;
}

.pricing-months {
    font-size: 0.75rem;
    color: var(--warm-gray);
    font-weight: 400;
    margin-bottom: 1.2rem;
    letter-spacing: 0.04em;
}

.pricing-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--ocean-deep);
    line-height: 1;
}

.pricing-amount span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--warm-gray);
    display: block;
    margin-top: 0.3rem;
}

.pricing-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--warm-gray);
    margin-top: 2rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    position: relative;
}

/* ========== AVAILABILITY ========== */
.xp-availability {
    background: var(--white);
}

.availability-header { text-align: center; margin-bottom: 3rem; }
.availability-header .section-desc { margin: 0.5rem auto 0; }

.avail-calendar {
    max-width: 460px;
    margin: 0 auto;
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: 2.2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.avail-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.8rem;
}

.avail-nav-btn {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    color: var(--ocean-deep);
}

.avail-nav-btn:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.avail-month-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ocean-deep);
    letter-spacing: 0.02em;
}

.avail-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.avail-weekday {
    text-align: center;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--warm-gray);
    text-transform: uppercase;
    padding: 6px 0;
    letter-spacing: 0.06em;
}

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

.avail-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: var(--charcoal);
    transition: all 0.2s var(--ease-out);
}

.avail-day.available {
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
    cursor: pointer;
}

.avail-day.available:hover {
    transform: scale(1.12);
    background: rgba(34, 197, 94, 0.25);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
}

.avail-day.selected-start,
.avail-day.selected-end {
    background: var(--gold) !important;
    color: var(--white) !important;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(201,154,69,0.4);
}

.avail-day.selected-range {
    background: rgba(201,154,69,0.18) !important;
    color: var(--gold) !important;
    font-weight: 600;
}

.avail-day.booked {
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
    text-decoration: line-through;
    opacity: 0.45;
}

.avail-day.today {
    background: var(--terracotta);
    color: var(--white);
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(194,93,56,0.3);
}

.avail-day.past { color: #d4d0ca; }
.avail-day.empty { background: transparent; }

.availability-legend {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    margin-top: 1.8rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.75rem;
    color: var(--warm-gray);
    font-weight: 400;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
}

.legend-available { background: rgba(34, 197, 94, 0.25); }
.legend-booked { background: rgba(239, 68, 68, 0.15); }
.legend-today { background: var(--terracotta); border-radius: 50%; }

/* ========== WHATSAPP FLOATING ========== */
.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;
    box-shadow: 0 4px 16px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.3);
    transition: all 0.4s var(--ease-out);
    color: var(--white);
    animation: whatsappPulse 3s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.3); }
    50% { box-shadow: 0 4px 16px rgba(37,211,102,0.35), 0 0 0 12px rgba(37,211,102,0); }
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    animation: none;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

/* ========== BOOKING BANNER ========== */
.xp-booking-banner {
    background: linear-gradient(135deg, var(--ocean-deep) 0%, #1a3a42 30%, var(--terracotta-deep) 70%, var(--gold) 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.xp-booking-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 50%, rgba(201,154,69,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 75% 50%, rgba(194,93,56,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.xp-booking-banner h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
    letter-spacing: 0.01em;
}

.xp-booking-banner p {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    position: relative;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.85;
}

.booking-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.booking-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    background: var(--white);
    color: var(--ocean-deep);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius-pill);
    transition: all 0.4s var(--ease-out);
    letter-spacing: 0.03em;
}

.booking-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.booking-link-primary {
    background: var(--gold);
    color: var(--white);
    font-size: 0.9rem;
    padding: 1.05rem 2.8rem;
    box-shadow: 0 4px 20px rgba(201,154,69,0.4);
}

.booking-link-primary:hover {
    background: var(--gold-light);
}

.booking-also {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 0.78rem;
    opacity: 0.5;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
}

.booking-links-secondary .booking-link {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    padding: 0.65rem 1.6rem;
}

.booking-links-secondary .booking-link svg { stroke: rgba(255,255,255,0.7); }

.booking-links-secondary .booking-link:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* ========== FOOTER ========== */
.xp-footer {
    background: #1A1410;
    color: rgba(255,255,255,0.4);
    padding: 3.5rem 2rem 2.5rem;
    text-align: center;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-warm);
    margin-bottom: 1rem;
    letter-spacing: 0.06em;
}

.xp-footer p { font-size: 0.82rem; margin-bottom: 0.5rem; }

.footer-social {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin: 1.2rem 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(201,154,69,0.08);
    border: 1px solid rgba(201,154,69,0.15);
    color: rgba(255,255,255,0.5);
    transition: all 0.4s var(--ease-out);
}

.social-link:hover {
    background: rgba(201,154,69,0.18);
    color: var(--gold-warm);
    border-color: rgba(201,154,69,0.35);
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem 1.5rem;
    margin: 1.2rem 0;
}

.footer-links a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.78rem;
    transition: color 0.3s;
}

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

.footer-seo {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201,154,69,0.08);
    font-size: 0.7rem;
    color: rgba(255,255,255,0.18);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ========== NAV TEXT SHADOW ========== */
.xp-nav-logo,
.xp-nav-links a {
    text-shadow: 0 1px 8px rgba(42,33,24,0.35);
}

.xp-nav.scrolled .xp-nav-logo,
.xp-nav.scrolled .xp-nav-links a {
    text-shadow: none;
}

/* ========== ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children for sequential reveal */
.highlights-grid .highlight-item.reveal:nth-child(2) { transition-delay: 0.12s; }
.highlights-grid .highlight-item.reveal:nth-child(3) { transition-delay: 0.24s; }
.highlights-grid .highlight-item.reveal:nth-child(4) { transition-delay: 0.36s; }

.reviews-grid .review-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.reviews-grid .review-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.reviews-grid .review-card.reveal:nth-child(4) { transition-delay: 0.3s; }

.pricing-grid .pricing-card:nth-child(2) { transition-delay: 0.1s; }
.pricing-grid .pricing-card:nth-child(3) { transition-delay: 0.2s; }
.pricing-grid .pricing-card:nth-child(4) { transition-delay: 0.3s; }

.gallery-grid .gallery-item.reveal:nth-child(2) { transition-delay: 0.1s; }
.gallery-grid .gallery-item.reveal:nth-child(3) { transition-delay: 0.2s; }
.gallery-grid .gallery-item.reveal:nth-child(4) { transition-delay: 0.3s; }
.gallery-grid .gallery-item.reveal:nth-child(5) { transition-delay: 0.4s; }

/* ========== BLOG POST STYLES ========== */
.blog-post {
    max-width: 760px;
    margin: 0 auto;
    padding: 120px 2rem 4rem;
}

.blog-post h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ocean-deep);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.blog-post h3 {
    font-size: 1.4rem;
    color: var(--ocean-deep);
    margin: 2.5rem 0 0.8rem;
}

.blog-post p {
    font-size: 1.02rem;
    line-height: 1.9;
    color: var(--charcoal);
    margin-bottom: 1.2rem;
}

.blog-post p strong {
    color: var(--ocean-deep);
}

.blog-post .back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s;
}

.blog-post .back-link:hover {
    color: var(--terracotta);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
    .xp-nav { padding: 1.2rem 2rem; }
    .xp-nav.scrolled { padding: 0.7rem 2rem; }
    .xp-nav-links { gap: 1.3rem; }
}

@media (max-width: 900px) {
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .highlight-item:not(:last-child)::after { display: none; }
    .highlight-item:nth-child(1), .highlight-item:nth-child(2) { border-bottom: 1px solid var(--border); }
    .about-grid, .contact-grid, .location-grid { grid-template-columns: 1fr; }
    .about-grid { gap: 2.5rem; }
    .reviews-grid { grid-template-columns: 1fr; }
    .reviews-badge { flex-wrap: wrap; justify-content: center; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .about-images { height: 350px; margin-bottom: 1rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 220px); }
    .gallery-grid .gallery-item:first-child { grid-row: auto; }
    .location-map { height: 300px; }
    .contact-grid { gap: 3rem; }
}

@media (max-width: 700px) {
    .xp-nav { padding: 1rem 1.5rem; }
    .xp-nav.scrolled { padding: 0.7rem 1.5rem; }
    .xp-nav-links { display: none; }
    .hamburger { display: flex; }

    .xp-nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0;
        width: 100%;
        height: 100vh; height: 100dvh;
        background: rgba(26,20,16,0.97);
        backdrop-filter: blur(16px);
        justify-content: center;
        align-items: center;
        gap: 2.2rem;
        z-index: 999;
    }

    .xp-nav-links.open a {
        color: var(--gold-warm) !important;
        font-size: 1rem;
        text-shadow: none !important;
    }

    .highlights-grid { grid-template-columns: 1fr; }
    .highlight-item:nth-child(1), .highlight-item:nth-child(2) { border-bottom: none; }
    .highlight-item:not(:last-child) { border-bottom: 1px solid var(--border); }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 220px); }
    .form-row { grid-template-columns: 1fr; }
    .xp-section { padding: 5rem 1.4rem; }
    .blog-post { padding: 100px 1.2rem 3rem; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    .pricing-card { padding: 1.5rem 1rem; }
    .pricing-amount { font-size: 1.8rem; }
    .avail-calendar { padding: 1.2rem; max-width: 100%; border-radius: var(--radius-lg); }
    .avail-month-title { font-size: 1.1rem; }
    .avail-days { gap: 3px; }
    .avail-day { font-size: 0.78rem; border-radius: 4px; }
    .avail-nav-btn { width: 34px; height: 34px; }
    .availability-legend { gap: 1rem; flex-wrap: wrap; }
    .legend-item { font-size: 0.7rem; }
    .reviews-grid { grid-template-columns: 1fr; }
    .review-card { padding: 1.5rem; }
    .about-images { height: 300px; }
    .section-title { font-size: clamp(1.8rem, 5vw, 2.4rem); }
    .section-label::before { width: 20px; margin-right: 8px; }
    .xp-hero h1 { font-size: clamp(2.4rem, 8vw, 3.5rem); }
    .xp-hero-sub { font-size: 1rem; }
    .contact-form-box { padding: 2rem 1.5rem; }
    .booking-link-primary { padding: 0.9rem 2rem; }
}

@media (max-width: 420px) {
    .pricing-grid { grid-template-columns: 1fr; gap: 0.8rem; }
    .pricing-card { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.5rem; text-align: left; }
    .pricing-amount { font-size: 1.6rem; }
    .pricing-amount span { display: inline; margin-top: 0; margin-left: 0.3rem; }
    .pricing-months { margin-bottom: 0; }
    .xp-hero-cta { flex-direction: column; gap: 0.8rem; }
    .xp-hero-cta .btn { width: 100%; text-align: center; }
}
