/* =============================================================================
   bitolgayasor — Public Stylesheet
   Liquid Glass UI · Premium minimal · Sand beige + soft black + light blue
   Fonts: Playfair Display (headings) + Inter (body)
   ============================================================================= */

/* ---------------------------------------------------------------- Tokens --- */
:root {
    /* Sand / neutral */
    --sand-50:  #F9F6F0;
    --sand-100: #F2EBDD;
    --sand-200: #EBE3D5;
    --sand-300: #DDD0BB;
    --sand-400: #C9B89C;

    /* Ink */
    --ink:       #1C1B19;
    --ink-soft:  #403D37;
    --muted:     #6E6A62;

    --white: #FFFFFF;

    /* Light blue accents */
    --blue-100: #E5F0F6;
    --blue-200: #C9DEEC;
    --blue-300: #A7C7DC;
    --blue-400: #6FA8C7;
    --blue-500: #4A8CB0;

    /* Glass */
    --glass-bg:        rgba(255, 255, 255, 0.60);
    --glass-bg-strong: rgba(255, 255, 255, 0.78);
    --glass-border:    rgba(255, 255, 255, 0.55);
    --glass-blur:      16px;

    /* Effects */
    --shadow-sm: 0 4px 16px rgba(28, 27, 25, 0.06);
    --shadow-md: 0 14px 40px rgba(28, 27, 25, 0.10);
    --shadow-lg: 0 28px 70px rgba(28, 27, 25, 0.16);
    --ring: 0 0 0 3px rgba(111, 168, 199, 0.45);

    /* Geometry */
    --radius:      22px;
    --radius-sm:   14px;
    --radius-lg:   30px;
    --radius-pill: 999px;

    --container: 1200px;
    --gutter: clamp(1.1rem, 4vw, 2.4rem);

    /* Motion */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --t-fast: 180ms;
    --t-med:  280ms;

    --header-h: 76px;

    --font-head: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
    font-family: var(--font-body);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.65;
    background: var(--sand-100);
    background-image:
        radial-gradient(1200px 600px at 80% -10%, var(--blue-100), transparent 60%),
        radial-gradient(900px 500px at -10% 10%, #fdfbf6, transparent 55%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; color: var(--ink); }

::selection { background: var(--blue-300); color: var(--ink); }

/* ------------------------------------------------------------- Layout ----- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section { padding-block: clamp(3.5rem, 8vw, 7rem); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    font-family: var(--font-body);
    font-size: .8rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
    color: var(--blue-500);
    margin-bottom: 1rem;
}
.eyebrow svg { width: 16px; height: 16px; flex-shrink: 0; }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--blue-400); }
.section-head.center .eyebrow::before { display: none; }

.section-title { font-size: clamp(1.9rem, 4.6vw, 3.1rem); letter-spacing: -.01em; }
.section-subtitle { margin-top: 1rem; color: var(--muted); font-size: 1.05rem; max-width: 60ch; }
.section-head.center .section-subtitle { margin-inline: auto; }

/* --------------------------------------------------------------- Glass ----- */
.glass {
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(140%);
    backdrop-filter: blur(var(--glass-blur)) saturate(140%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

/* ------------------------------------------------------------- Buttons ---- */
.btn {
    --btn-bg: var(--ink);
    --btn-fg: var(--white);
    display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
    padding: .92rem 1.7rem;
    font-weight: 600; font-size: .98rem; line-height: 1;
    border-radius: var(--radius-pill);
    background: var(--btn-bg); color: var(--btn-fg);
    transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease),
                background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
    will-change: transform;
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: none; box-shadow: var(--ring); }

.btn-primary { --btn-bg: linear-gradient(135deg, var(--blue-500), var(--blue-400)); --btn-fg: #fff; }
.btn-dark    { --btn-bg: var(--ink); --btn-fg: #fff; }
.btn-light   { --btn-bg: var(--white); --btn-fg: var(--ink); box-shadow: var(--shadow-sm); }

.btn-ghost {
    background: var(--glass-bg-strong);
    color: var(--ink);
    border: 1px solid var(--glass-border);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: var(--white); }

.btn-whatsapp { --btn-bg: linear-gradient(135deg, #25D366, #128C7E); --btn-fg: #fff; }

.btn-lg { padding: 1.1rem 2.1rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ------------------------------------------------------------- Navbar ----- */
.site-header {
    position: fixed; inset: 0 0 auto 0; z-index: 50;
    padding-top: 1rem;
    transition: padding var(--t-med) var(--ease);
}
.nav {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    height: var(--header-h);
    padding: 0 1.4rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.55);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    backdrop-filter: blur(14px) saturate(150%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    transition: background var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease),
                height var(--t-med) var(--ease);
}
.site-header.scrolled { padding-top: .5rem; }
.site-header.scrolled .nav { background: rgba(255,255,255,0.82); box-shadow: var(--shadow-md); }

.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-head);
    font-size: 1.35rem; font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
.brand .brand-mark {
    width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%;
    background: rgba(255,255,255,.62);
    color: var(--ink);
    border: 1px solid rgba(28,27,25,.14);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
    font-family: var(--font-head);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
}

.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a {
    padding: .55rem .95rem; border-radius: var(--radius-pill);
    font-weight: 500; font-size: .96rem; color: var(--ink-soft);
    transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.nav-links a:hover { background: rgba(255,255,255,.7); color: var(--ink); }
.nav-links a.active { color: var(--blue-500); }

.nav-cta { display: flex; align-items: center; gap: .6rem; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,.7); place-items: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
    content: ""; display: block; width: 20px; height: 2px; border-radius: 2px;
    background: var(--ink); transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease); }
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top: 6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---------------------------------------------------------------- Hero ----- */
.hero { position: relative; min-height: calc(100svh + 2.5rem); display: grid; align-items: center;
    overflow: hidden; isolation: isolate; }

/* --- Video arka plan --- */
.hero-video-wrap {
    position: absolute; inset: 0; z-index: -3; overflow: hidden;
}
.hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    /* Portre (9:16) videoyu landscape hero'ya doldur — orta kısım gösterilir */
    object-fit: cover;
    object-position: center center;
}
.hero-video-fallback {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #27485a 0%, #1a3040 50%, #27485a 100%);
    z-index: -1; /* video oynarsa arkada kalır */
}

.hero.video-playing .hero-slides {
    opacity: 0;
    pointer-events: none;
}

.hero-slides { position: absolute; inset: 0; z-index: -2; }
.hero-slide {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0; transform: scale(1.08);
    transition: opacity 1.2s var(--ease), transform 7s linear;
}
.hero-slide.active { opacity: 1; transform: scale(1); }

/* Karanlık overlay — hem video hem slayt üstüne */
.hero::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg,
        rgba(28,27,25,.35) 0%,
        rgba(28,27,25,.15) 40%,
        rgba(28,27,25,.60) 100%);
}

.hero::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: clamp(7rem, 12vw, 10rem);
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg,
        rgba(242, 235, 221, 0) 0%,
        rgba(242, 235, 221, 0) 34%,
        rgba(242, 235, 221, .34) 62%,
        rgba(242, 235, 221, .88) 88%,
        var(--sand-100) 100%);
}

.hero > .container { position: relative; z-index: 2; }

.hero-inner { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 4rem; max-width: 760px; }
.hero .eyebrow { color: #fff; }
.hero .eyebrow::before { background: rgba(255,255,255,.7); }
.hero-title {
    color: #fff; font-size: clamp(2.6rem, 7vw, 5.2rem); letter-spacing: -.02em;
    text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.hero-title em { font-style: italic; color: var(--blue-200); }
.hero-subtitle { color: rgba(255,255,255,.92); font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    margin-top: 1.4rem; max-width: 54ch; text-shadow: 0 1px 14px rgba(0,0,0,.25); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; }

.hero-dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; gap: .55rem; z-index: 2; }
.hero-dots button { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.45);
    transition: width var(--t-med) var(--ease), background var(--t-med) var(--ease); }
.hero-dots button.active { width: 30px; border-radius: var(--radius-pill); background: #fff; }

.hero-scroll { display: none; }

/* search bar floating on hero */
.hero-search {
    margin-top: 2.4rem; display: flex; gap: .5rem; flex-wrap: nowrap; align-items: center;
    padding: .55rem .55rem .55rem .9rem; border-radius: var(--radius-pill); max-width: 620px;
    background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.3);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
@media (max-width: 600px) {
    .hero-search { flex-wrap: wrap; border-radius: 18px; gap: .4rem; padding: .7rem; }
    .hero-search-divider { display: none; }
    .hero-search-guests { width: 100%; border-top: 1px solid rgba(255,255,255,.2); padding-top: .5rem; }
    .hero-search-guests select { flex: 1; }
}
.hero-search svg {
    width: 20px; height: 20px;
    color: rgba(255,255,255,.8);
    flex-shrink: 0;
}
.hero-search input {
    flex: 1 1 180px; border: none; background: transparent; color: #fff; padding: .7rem .6rem .7rem 0;
    font-size: 1rem; min-width: 0;
}
.hero-search input::placeholder { color: rgba(255,255,255,.7); }
.hero-search input:focus { outline: none; }

.hero-search-divider {
    width: 1px; height: 22px; background: rgba(255,255,255,.3); flex-shrink: 0;
}
.hero-search-guests {
    display: flex; align-items: center; gap: .4rem; flex-shrink: 0;
}
.hero-search-guests svg { width: 18px; height: 18px; color: rgba(255,255,255,.8); }
.hero-search-guests select {
    border: none; background: transparent; color: #fff; font-size: .95rem;
    cursor: pointer; padding: .4rem .2rem; min-width: 110px;
    -webkit-appearance: none; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.8)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right .2rem center;
    padding-right: 1.4rem;
}
.hero-search-guests select:focus { outline: none; }
.hero-search-guests select option { background: #1c2c38; color: #fff; }

/* --------------------------------------------------------------- Guests filter (listings page) --- */
.guests-filter {
    display: flex; align-items: center; gap: .5rem;
    padding: .55rem 1rem; border-radius: var(--radius-pill);
    background: var(--white); box-shadow: var(--shadow-sm); cursor: pointer;
}
.guests-filter svg { width: 17px; height: 17px; color: var(--blue-500); flex-shrink: 0; }
.guests-filter select {
    border: none; background: transparent; font-size: .95rem; font-weight: 500;
    color: var(--ink); cursor: pointer; padding: .2rem .4rem .2rem 0;
    -webkit-appearance: none; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236E6A62' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right .2rem center;
    padding-right: 1.2rem; min-width: 130px;
}
.guests-filter select:focus { outline: none; }

/* --------------------------------------------------------- Stats strip ----- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
    border-radius: var(--radius); overflow: hidden; }
.stat { text-align: center; padding: 1.8rem 1rem; }
.stat-num { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--ink); }
.stat-label { color: var(--muted); font-size: .92rem; margin-top: .25rem; }

/* -------------------------------------------------------- Listing cards ---- */
.grid-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.7rem; }

.card {
    position: relative; border-radius: var(--radius); overflow: hidden;
    background: var(--white); box-shadow: var(--shadow-sm);
    transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
    display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover;
    transition: transform 700ms var(--ease); }
.card:hover .card-media img { transform: scale(1.07); }

.card-badge {
    position: absolute; top: 1rem; left: 1rem; z-index: 2;
    padding: .4rem .85rem; border-radius: var(--radius-pill);
    font-size: .78rem; font-weight: 600; letter-spacing: .02em;
    background: rgba(255,255,255,.85); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    color: var(--ink);
}
.card-badge.featured { background: linear-gradient(135deg, var(--blue-500), var(--blue-400)); color: #fff; }

.card-price {
    position: absolute; bottom: 1rem; right: 1rem; z-index: 2;
    padding: .55rem 1rem; border-radius: var(--radius-pill);
    background: rgba(255,255,255,.82); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm); font-weight: 700; color: var(--ink); font-size: .9rem;
    max-width: calc(100% - 2rem); text-align: center;
}
.card-price small { font-weight: 500; color: var(--muted); }

.card-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.card-loc { display: inline-flex; align-items: center; gap: .4rem; color: var(--blue-500);
    font-size: .85rem; font-weight: 600; }
.card-loc svg { width: 15px; height: 15px; }
.card-title { font-size: 1.32rem; letter-spacing: -.01em; }
.card-title a { transition: color var(--t-fast) var(--ease); }
.card:hover .card-title a { color: var(--blue-500); }
.card-desc { color: var(--muted); font-size: .95rem; flex: 1; }

.card-meta { display: flex; gap: 1.1rem; padding-top: .9rem; margin-top: .2rem;
    border-top: 1px solid var(--sand-200); color: var(--ink-soft); font-size: .88rem; }
.card-meta span { display: inline-flex; align-items: center; gap: .4rem; }
.card-meta svg { width: 16px; height: 16px; color: var(--muted); }

/* --------------------------------------------------------- Feature band ---- */
.features-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }
.feature {
    padding: 1.8rem; border-radius: var(--radius);
    background: var(--glass-bg-strong); border: 1px solid var(--glass-border);
    -webkit-backdrop-filter: blur(var(--glass-blur)); backdrop-filter: blur(var(--glass-blur));
    transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
    background: linear-gradient(135deg, var(--blue-100), var(--blue-200)); color: var(--blue-500);
    margin-bottom: 1.1rem; }
.feature-icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.2rem; margin-bottom: .45rem; }
.feature p { color: var(--muted); font-size: .95rem; }

/* ------------------------------------------------------------- CTA band ---- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg);
    padding: clamp(2.6rem, 6vw, 4.5rem); text-align: center; color: #fff;
    background: linear-gradient(135deg, #2a4a5c, var(--blue-500)); }
.cta-band::before { content: ""; position: absolute; inset: 0;
    background: radial-gradient(600px 300px at 20% 0%, rgba(255,255,255,.18), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4.5vw, 3rem); }
.cta-band p { color: rgba(255,255,255,.9); max-width: 52ch; margin: 1rem auto 2rem; }
.cta-actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* ----------------------------------------------------- Listing detail ----- */
.detail-hero { padding-top: calc(var(--header-h) + 2.5rem); }
.breadcrumb { display: flex; gap: .5rem; align-items: center; color: var(--muted);
    font-size: .9rem; margin-bottom: 1.2rem; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--blue-500); }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; }

.detail-title { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -.02em; }
.detail-loc { display: inline-flex; align-items: center; gap: .45rem; color: var(--blue-500);
    font-weight: 600; margin-top: .6rem; }
.detail-loc svg { width: 18px; height: 18px; }

/* Gallery */
.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-auto-rows: 1fr; gap: .7rem;
    margin-top: 1.8rem; border-radius: var(--radius); overflow: hidden; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 1/1; }
.gallery-item.main { grid-row: span 2; grid-column: 1; aspect-ratio: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-more { position: absolute; inset: 0; display: grid; place-items: center;
    background: rgba(28,27,25,.55); color: #fff; font-weight: 600; font-size: 1.1rem;
    -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); }

.detail-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 2.4rem; margin-top: 2.6rem;
    align-items: start; }

.detail-facts { display: flex; flex-wrap: wrap; gap: 1.4rem; padding: 1.3rem 1.6rem;
    border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); margin-bottom: 2rem; }
.fact { display: flex; align-items: center; gap: .7rem; }
.fact-icon { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
    background: var(--sand-100); color: var(--blue-500); }
.fact-icon svg { width: 21px; height: 21px; }
.fact b { display: block; font-size: 1.05rem; }
.fact span { color: var(--muted); font-size: .85rem; }

.detail-block { margin-bottom: 2.4rem; }
.detail-block h2 { font-size: 1.6rem; margin-bottom: 1rem; }
.detail-desc { color: var(--ink-soft); }
.detail-desc p { margin-bottom: 1rem; }
.detail-desc h2, .detail-desc h3 { margin: 1.4rem 0 .6rem; }
.detail-desc ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 1rem; }

.amenities { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: .9rem; }
.amenity { display: flex; align-items: center; gap: .7rem; padding: .85rem 1.1rem;
    border-radius: var(--radius-sm); background: var(--white); box-shadow: var(--shadow-sm);
    font-size: .95rem; font-weight: 500; }
.amenity svg { width: 18px; height: 18px; color: #2bb673; flex-shrink: 0; }

/* Booking sidebar */
.booking-card { position: sticky; top: calc(var(--header-h) + 1.2rem);
    border-radius: var(--radius); padding: 1.8rem; }
.booking-price { display: flex; align-items: baseline; gap: .4rem; margin-bottom: .3rem; }
.booking-price b { font-family: var(--font-head); font-size: 1.55rem; color: var(--ink); line-height: 1.2; }
.booking-price span { color: var(--muted); }
.booking-note { color: var(--muted); font-size: .9rem; margin-bottom: 1.4rem; }
.booking-card .btn { margin-bottom: .7rem; }
.booking-divider { height: 1px; background: var(--sand-200); margin: 1.3rem 0; }
.booking-contact { display: flex; flex-direction: column; gap: .7rem; font-size: .92rem; color: var(--ink-soft); }
.booking-contact a { display: flex; align-items: center; gap: .6rem; }
.booking-contact svg { width: 17px; height: 17px; color: var(--blue-500); }

/* ------------------------------------------------------------- Lightbox --- */
.lightbox { position: fixed; inset: 0; z-index: 80; display: none; place-items: center;
    background: rgba(18,17,16,.92); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    opacity: 0; transition: opacity var(--t-med) var(--ease); }
.lightbox.open { display: grid; opacity: 1; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: var(--radius-sm);
    box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox-close, .lightbox-nav {
    position: absolute; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
    background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25);
    transition: background var(--t-fast) var(--ease); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,.28); }
.lightbox-close { top: 1.4rem; right: 1.4rem; }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-nav.prev { left: 1.4rem; }
.lightbox-nav.next { right: 1.4rem; }
.lightbox-nav svg, .lightbox-close svg { width: 22px; height: 22px; }
.lightbox-counter { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,.85); font-size: .9rem; letter-spacing: .05em; }

/* ------------------------------------------------------------ Pagination -- */
.pagination { display: flex; justify-content: center; gap: .5rem; margin-top: 3rem; flex-wrap: wrap; }
.pagination a, .pagination span {
    min-width: 44px; height: 44px; padding: 0 .8rem; border-radius: var(--radius-pill);
    display: inline-flex; align-items: center; justify-content: center; font-weight: 600;
    background: var(--white); box-shadow: var(--shadow-sm); color: var(--ink-soft);
    transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease); }
.pagination a:hover { transform: translateY(-2px); color: var(--blue-500); }
.pagination .current { background: var(--ink); color: #fff; }
.pagination .disabled { opacity: .4; pointer-events: none; }

/* --------------------------------------------------------------- Search --- */
.toolbar { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; justify-content: space-between;
    margin-bottom: 2.4rem; }
.search-field { display: flex; align-items: center; gap: .6rem; padding: .55rem .8rem .55rem 1.1rem;
    border-radius: var(--radius-pill); background: var(--white); box-shadow: var(--shadow-sm);
    flex: 1 1 320px; max-width: 460px; }
.search-field svg { width: 18px; height: 18px; color: var(--muted); flex-shrink: 0; }
.search-field input { border: none; background: transparent; flex: 1; padding: .35rem 0; min-width: 0; }
.search-field input:focus { outline: none; }
.result-count { color: var(--muted); font-size: .95rem; }

/* ---------------------------------------------------------- Empty state --- */
.empty { text-align: center; padding: 4rem 1rem; color: var(--muted); }
.empty svg { width: 64px; height: 64px; color: var(--sand-400); margin: 0 auto 1.2rem; }
.empty h3 { color: var(--ink); margin-bottom: .5rem; }

/* --------------------------------------------------------------- Footer --- */
.site-footer { margin-top: 4rem; background: var(--ink); color: rgba(255,255,255,.78);
    padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2.4rem; padding-bottom: 3rem; }
.footer-brand .brand { color: #fff; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .95rem; max-width: 34ch; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.4rem; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
    background: rgba(255,255,255,.08); color: #fff; transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease); }
.footer-social a:hover { background: var(--blue-500); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .85rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .7rem; }
.footer-col a { color: rgba(255,255,255,.7); font-size: .95rem; transition: color var(--t-fast) var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .8rem;
    color: rgba(255,255,255,.7); font-size: .95rem; }
.footer-contact svg { width: 17px; height: 17px; color: var(--blue-300); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.6rem 0; text-align: center;
    color: rgba(255,255,255,.5); font-size: .88rem; }
.footer-bottom a { color: rgba(255,255,255,.7); }

/* ------------------------------------------------------ WhatsApp float ---- */
.wa-float { position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 60;
    display: flex; align-items: center; }
.wa-btn { width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center;
    background: linear-gradient(135deg, #25D366, #128C7E); color: #fff;
    box-shadow: 0 14px 34px rgba(18,140,126,.5); position: relative;
    transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease); }
.wa-btn svg { width: 32px; height: 32px; }
.wa-btn:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 18px 40px rgba(18,140,126,.6); }
.wa-btn::after { content: ""; position: absolute; inset: 0; border-radius: 50%;
    border: 2px solid #25D366; animation: waPulse 2.4s var(--ease) infinite; }
.wa-label { position: absolute; right: 74px; white-space: nowrap; padding: .6rem 1rem;
    background: var(--white); color: var(--ink); border-radius: var(--radius-pill); box-shadow: var(--shadow-md);
    font-size: .9rem; font-weight: 600; opacity: 0; transform: translateX(8px); pointer-events: none;
    transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease); }
.wa-float:hover .wa-label { opacity: 1; transform: translateX(0); }
@keyframes waPulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.5); opacity: 0; } }

/* -------------------------------------------------------- Scroll reveal --- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 90ms; }
[data-reveal][data-delay="2"] { transition-delay: 180ms; }
[data-reveal][data-delay="3"] { transition-delay: 270ms; }
[data-reveal][data-delay="4"] { transition-delay: 360ms; }

/* ------------------------------------------------------------ Utilities --- */
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.hide-mobile { }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ----------------------------------------------------------- Responsive --- */
@media (max-width: 980px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .detail-grid { grid-template-columns: 1fr; }
    .booking-card { position: static; }
}
@media (max-width: 760px) {
    .nav-links, .nav-cta .btn { display: none; }
    .nav-toggle { display: grid; }
    .nav.nav-open .nav-cta .btn { display: inline-flex; }

    /* Mobile dropdown menu */
    .mobile-menu { position: fixed; inset: calc(var(--header-h) + 1.5rem) var(--gutter) auto;
        z-index: 49; border-radius: var(--radius); padding: 1rem; display: none; flex-direction: column;
        gap: .3rem; transform-origin: top; }
    .nav-open ~ .mobile-menu, .mobile-menu.open { display: flex; animation: menuIn var(--t-med) var(--ease); }
    .mobile-menu a { padding: .9rem 1rem; border-radius: var(--radius-sm); font-weight: 500; }
    .mobile-menu a:hover { background: var(--sand-100); }
    .mobile-menu .btn { margin-top: .5rem; }

    .gallery { grid-template-columns: 1fr 1fr; }
    .gallery-item.main { grid-column: span 2; grid-row: auto; aspect-ratio: 16/10; }
    .stats { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .hero-scroll { display: none; }
}
@media (min-width: 761px) { .mobile-menu { display: none !important; } }
@keyframes menuIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
    .hero-slide.active { transform: none; }
}
