/* ════════════════════════════════════════════════════
   AMIRA HOUSE — Main Site
   Earthy warm palette (stone / cream / gold)
   ════════════════════════════════════════════════════ */

:root {
    --bg:          #faf7f2;   /* warm cream */
    --bg-alt:      #f0e9dd;   /* sand */
    --bg-dark:     #3d3327;   /* walnut */
    --text:        #2c2419;   /* deep warm black */
    --text-soft:   #5c5143;   /* warm gray */
    --text-muted:  #6b6358;   /* stone — darkened for WCAG AA body text (~4.9:1 on cream) */
    --primary:     #8b6f47;   /* stone brown */
    --primary-dk:  #6b5536;
    --accent:      #c5a059;   /* gold — decorative only (borders, icons, dark-bg text) */
    --accent-dk:   #8a6228;   /* gold — darkened so it passes AA as text on light (~5.4:1) */
    --accent-strong: #946d2c; /* gold dark enough for WHITE text on top (WCAG AA, ~4.7:1) */
    --accent-text:   #8a6228; /* gold dark enough AS text on light bg (WCAG AA, ~5.4:1) */
    --line:        #e5dccb;
    --white:       #ffffff;
    --shadow-sm:   0 2px 8px rgba(61, 51, 39, 0.06);
    --shadow-md:   0 8px 24px rgba(61, 51, 39, 0.1);
    --shadow-lg:   0 20px 48px rgba(61, 51, 39, 0.15);
    --serif:       'Cormorant Garamond', Georgia, serif;
    --sans:        'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius:      10px;
    --radius-lg:   18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 500;
    color: var(--text);
    line-height: 1.2;
}
/* Cormorant Garamond defaults to old-style figures (1 looks like I, 0 small).
   Force lining numerals everywhere serif numbers appear (10/10, 41, 2025...). */
h1, h2, h3, h4, .nav-logo, .footer-logo, .hero-title,
.rv-score, .rv-card-score, .qs-item strong, .stat-num, .wd-head strong {
    font-variant-numeric: lining-nums;
    font-feature-settings: "lnum" 1, "tnum" 0;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 780px; }
.centered { text-align: center; }

.eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-text);
    font-weight: 500;
    margin-bottom: 14px;
}

.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
.section-sub {
    font-size: 1.1rem;
    color: var(--text-soft);
    margin-bottom: 40px;
}

/* ═══ NAV ═══ */
#navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}
#navbar.scrolled {
    border-bottom-color: var(--line);
    box-shadow: var(--shadow-sm);
}
.nav-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 16px 24px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px;
}
.nav-logo {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text);
}
.nav-logo span { color: var(--accent); }
.nav-links {
    display: flex; gap: 32px;
    font-size: 0.9rem;
    font-weight: 400;
}
.nav-links a {
    color: var(--text-soft);
    transition: color 0.2s ease;
    position: relative;
    padding: 6px 0;
    white-space: nowrap;
}
.nav-links a:hover { color: var(--accent-dk); }
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--accent-strong);
    transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-right {
    display: flex; align-items: center; gap: 20px;
}
.lang-switch {
    display: flex; gap: 4px;
    border-right: 1px solid var(--line);
    padding-right: 16px;
}
.lang-switch button,
.lang-switch a {
    background: none; border: none; cursor: pointer;
    font-family: var(--sans);
    font-size: 0.7rem; font-weight: 500;
    color: var(--text-muted);
    padding: 4px 8px; border-radius: 4px;
    letter-spacing: 0.1em;
    transition: all 0.2s ease;
    text-decoration: none;
    line-height: 1;
}
.lang-switch button:hover,
.lang-switch a:hover { color: var(--text); }
.lang-switch button.active,
.lang-switch a.active {
    background: var(--accent-strong);
    color: var(--white);
}

.nav-cta {
    display: inline-block;
    background: var(--accent-strong);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.nav-cta:hover {
    background: var(--accent-dk);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.menu-btn {
    display: none;
    background: none; border: none; cursor: pointer;
    color: var(--text);
    padding: 6px;
}
.menu-btn svg { width: 22px; height: 22px; }

/* ═══ HERO ═══ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; overflow: hidden; }
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0;
    transition: opacity 1.8s ease;
    transform: scale(1.0);
    will-change: transform, opacity;
}
/* Ken Burns: slowly zoom + drift the active slide for cinematic feel */
.hero-slide.active {
    opacity: 1;
    animation: kenBurns 9s ease-out forwards;
}
@keyframes kenBurns {
    0%   { transform: scale(1.0) translate(0, 0); }
    100% { transform: scale(1.12) translate(-1%, -1%); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-slide.active { animation: none; transform: none; }
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 45%, rgba(44,36,25,0.30) 0%, rgba(44,36,25,0) 70%),
        linear-gradient(180deg, rgba(44,36,25,0.45) 0%, rgba(44,36,25,0.64) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 820px;
    padding: 20px;
    animation: fadeUp 1s ease 0.2s both;
}
.hero-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}
.hero-title {
    font-family: var(--serif);
    font-size: clamp(3rem, 9vw, 6rem);
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--white);
    line-height: 1;
}
.hero-title span { color: var(--accent); font-style: italic; }
.hero-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    font-weight: 300;
    max-width: 620px;
    margin: 0 auto 36px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
}
.hero-actions {
    display: flex; gap: 16px; justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    border: 1px solid transparent;
    cursor: pointer;
}
.btn-primary {
    background: var(--accent-strong);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--accent-dk);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(197, 160, 89, 0.4);
}
.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.18); border-color: rgba(255, 255, 255, 0.5); }
.btn-large { padding: 18px 44px; font-size: 1.05rem; }

.scroll-hint {
    position: absolute;
    bottom: 36px; left: 50%; transform: translateX(-50%);
    width: 22px; height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    display: flex; justify-content: center;
    padding-top: 8px;
}
.scroll-hint span {
    width: 3px; height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scrollBounce 2s ease infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ═══ ABOUT ═══ */
.lead {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 24px;
    font-weight: 400;
}
#about p { margin-bottom: 20px; color: var(--text-soft); font-size: 1.02rem; }
.note {
    margin-top: 32px !important;
    padding: 18px 22px;
    background: var(--bg-alt);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 0.92rem !important;
    color: var(--text-soft) !important;
}
.note svg { width: 18px; height: 18px; color: var(--accent-dk); flex-shrink: 0; margin-top: 3px; }

/* ═══ STATS ═══ */
.stats-section {
    padding: 60px 0;
    background: var(--bg-dark);
    color: var(--white);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.stat {
    text-align: center;
    padding: 20px;
    position: relative;
}
.stat:not(:last-child)::after {
    content: '';
    position: absolute; right: -15px; top: 25%; bottom: 25%;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}
.stat svg {
    width: 34px; height: 34px;
    color: var(--accent);
    margin-bottom: 14px;
    stroke-width: 1.2;
}
.stat-num {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    letter-spacing: 0.03em;
}
.stat-label small { font-size: 0.75rem; opacity: 0.7; }

/* ═══ AMENITIES ═══ */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}
.amenity {
    background: var(--bg);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    transition: all 0.3s ease;
    text-align: center;
}
.amenity:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}
.amenity svg {
    width: 32px; height: 32px;
    color: var(--accent);
    margin-bottom: 18px;
    stroke-width: 1.3;
}
.amenity h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}
.amenity p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ═══ FLOOR PLAN & LOCATION (SPLIT) ═══ */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.split-text p { color: var(--text-soft); font-size: 1.02rem; margin-bottom: 30px; }
.split-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
    min-height: 440px;
    display: flex; align-items: center; justify-content: center;
}
.split-image img {
    width: 100%; height: 100%;
    object-fit: contain;
    background: var(--white);
    padding: 20px;
}
/* photo variant (e.g. About): fill the whole frame edge-to-edge */
.split-image.photo { background: var(--bg-alt); min-height: 460px; }
.split-image.photo picture { position: absolute; inset: 0; display: block; }
.split-image.photo img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    padding: 0;
}
/* map (location): iframe fills the whole frame instead of default 150px height */
.map-wrap { min-height: 460px; }
.map-wrap iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: 0;
}
.floorplan-placeholder {
    flex-direction: column;
    align-items: center; justify-content: center;
    color: var(--text-muted);
    padding: 60px;
    text-align: center;
}
.floorplan-placeholder svg { width: 54px; height: 54px; margin-bottom: 14px; opacity: 0.4; }
.floorplan-placeholder p { color: var(--text-muted) !important; font-size: 0.9rem !important; }
.floorplan-placeholder small { opacity: 0.7; }

.map-wrap { min-height: 440px; padding: 0; }
.map-wrap iframe { border-radius: var(--radius-lg); }

/* Click-to-load map facade — saves ~222KB of Google Maps JS until requested */
.map-facade {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: 0; cursor: pointer;
    border-radius: var(--radius-lg);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 14px;
    background:
        radial-gradient(circle at 30% 30%, rgba(197,160,89,0.10), transparent 60%),
        repeating-linear-gradient(45deg, var(--bg-alt) 0 22px, var(--white) 22px 44px);
    color: var(--primary);
    transition: filter .2s ease;
}
.map-facade:hover { filter: brightness(0.97); }
.map-facade-pin {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    background: var(--accent-strong); color: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}
.map-facade-pin svg { width: 28px; height: 28px; }
.map-facade-text {
    font-family: var(--sans); font-weight: 600; font-size: 1.05rem;
    text-align: center; line-height: 1.3;
    display: flex; flex-direction: column; gap: 2px;
}
.map-facade-text small { font-weight: 400; font-size: 0.82rem; color: var(--text-muted); }

.plan-list, .location-list { margin-top: 24px; }
.plan-list li, .location-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px;
}
.plan-list li:last-child, .location-list li:last-child { border-bottom: none; }
.plan-list strong { font-weight: 500; color: var(--text); font-size: 1.02rem; }
.plan-list span { color: var(--text-muted); font-size: 0.9rem; }

.location-list li { justify-content: flex-start; }
.location-list svg {
    width: 22px; height: 22px;
    color: var(--accent);
    flex-shrink: 0;
    stroke-width: 1.3;
}
.location-list div { display: flex; flex-direction: column; gap: 2px; }
.location-list strong { font-weight: 500; color: var(--text); font-size: 1rem; }
.location-list span { color: var(--text-muted); font-size: 0.85rem; }

/* ═══ GALLERY ═══ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 14px;
    margin-top: 50px;
}
.g-item {
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: block;
    overflow: hidden;
}
.g-item::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(61, 51, 39, 0);
    transition: background 0.3s ease;
}
.g-item:hover::after { background: rgba(61, 51, 39, 0.2); }
.g-item picture, .g-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.g-item:hover img { transform: scale(1.05); }
.g-large {
    grid-column: span 2;
    grid-row: span 2;
}

/* ═══ CTA ═══ */
.cta-section {
    padding: 110px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--bg-dark) 100%);
    color: var(--white);
    text-align: center;
}
.cta-section h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}
.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.88);
}
.cta-section .btn-primary {
    background: var(--accent-strong);
    box-shadow: 0 12px 30px rgba(197, 160, 89, 0.35);
}
.cta-note {
    margin-top: 24px !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6) !important;
}

/* ═══ FOOTER ═══ */
footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 70px 0 30px;
    font-size: 0.9rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
.footer-logo {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
}
.footer-logo span { color: var(--accent); }
footer h3, footer h4 {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
footer a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 0;
    transition: color 0.2s ease;
    font-size: 0.88rem;
}
footer a:hover { color: var(--white); }
footer a svg { width: 14px; height: 14px; display: inline-block; vertical-align: middle; margin-right: 6px; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

/* ═══ RESPONSIVE ═══ */
/* Nav collapses to burger earlier (1100px) so links never wrap to two lines on laptops */
@media (max-width: 1100px) {
    .nav-links { display: none; }
    .menu-btn { display: block; }
    .nav-inner.mobile-open { flex-wrap: wrap; }
    .nav-inner.mobile-open .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        order: 4;
        padding: 20px 0;
        gap: 14px;
    }
}

@media (max-width: 960px) {
    .lang-switch { padding-right: 10px; }
    .lang-switch button,
    .lang-switch a { font-size: 0.65rem; padding: 4px 6px; }

    .section { padding: 70px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .stat:nth-child(2)::after { display: none; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .split { grid-template-columns: 1fr; gap: 40px; }
    .split-image, .map-wrap { min-height: 360px; }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .g-large { grid-column: span 2; grid-row: span 2; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 560px) {
    .hero { min-height: 560px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .amenities-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }

    /* Nav: hide CTA button on small screens (FAB mobile-book covers it),
       tighten lang switch so all 5 langs + menu fit on 360px viewports. */
    .nav-cta { display: none; }
    .nav-inner { padding: 12px 14px; gap: 8px; }
    .nav-logo { font-size: 1.1rem; letter-spacing: 1px; }
    .lang-switch { padding-right: 8px; gap: 2px; }
    .lang-switch button,
    .lang-switch a { font-size: 0.6rem; padding: 3px 5px; letter-spacing: 0.05em; }
    .menu-btn { padding: 6px; }
    .menu-btn svg { width: 20px; height: 20px; }

    /* Calendar: smaller cells; keep price visible; ultra-compact discount badge. */
    .cal-cell { font-size: 0.72rem; border-radius: 6px; padding: 2px; }
    .cal-cell .price {
        display: inline-block;
        font-size: 0.5rem;
        margin-top: 1px;
        line-height: 1.1;
    }
    .cal-cell .gap-badge {
        font-size: 0.5rem;
        padding: 1px 3px;
        top: 1px;
        right: 1px;
        letter-spacing: 0;
        line-height: 1;
        border-radius: 3px;
        font-weight: 700;
    }
    /* Hide the fire emoji on mobile — keeps just "-10%" so the cell fits the price. */
    .cal-cell .gap-badge .gap-fire { display: none; }
    .cal-weekdays { font-size: 0.65rem; letter-spacing: 0.5px; }
    .cal-weekdays span { padding: 4px 0; }
}

/* ──────────────── AVAILABILITY ──────────────── */
.availability-frame {
    position: relative;
    margin-top: 40px;
    width: 100%;
    height: 820px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.availability-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.availability-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    pointer-events: none;
    z-index: 1;
}
.availability-loader i {
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.availability-actions {
    margin-top: 28px;
    text-align: center;
}

@media (max-width: 960px) {
    .availability-frame { height: 740px; }
}
@media (max-width: 560px) {
    .availability-frame { height: 680px; border-radius: var(--radius); }
}

/* ──────────────── TAB NAV LINK ──────────────── */
.nav-tab-link {
    position: relative;
    padding: 4px 12px;
    background: var(--accent-strong);
    color: var(--white) !important;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s;
}
.nav-tab-link:hover { background: var(--accent-dk); }

/* ──────────────── TAB VIEW (inline booking) ──────────────── */
#tab-view {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: var(--bg);
    display: none;
    flex-direction: column;
    overflow: hidden;
}
body.tab-open { overflow: hidden; }
body.tab-open #tab-view {
    display: flex;
    animation: tab-in 0.35s ease;
}
@keyframes tab-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: none; }
}

.tab-topbar {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}
.tab-logo {
    font-family: var(--serif);
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--text);
}
.tab-logo span { color: var(--accent); font-style: italic; }
.tab-logo em {
    font-style: normal;
    color: var(--text-soft);
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-family: var(--sans);
    font-weight: 400;
    margin-left: 4px;
}
.tab-close {
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
    transition: all 0.2s;
}
.tab-close:hover { border-color: var(--accent); color: var(--accent); }

.tab-container {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 50px 40px 80px;
}
.tab-intro { max-width: 680px; margin: 0 auto 40px; text-align: center; }

.tab-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Calendar */
.tab-cal {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}
.tab-cal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.cal-nav {
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-soft);
    transition: all 0.2s;
}
.cal-nav:hover { border-color: var(--accent); color: var(--accent); }
.cal-nav:disabled { opacity: 0.35; cursor: not-allowed; }
.cal-title {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--text);
    text-transform: capitalize;
}
.cal-weekdays, .cal-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
}
.cal-weekdays {
    margin-bottom: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cal-weekdays span {
    text-align: center;
    padding: 6px 0;
}
.cal-grid {
    position: relative;
    min-height: 280px;
}
/* Semantic colors: green = available, red = booked, gold = selected */
.cal-cell {
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    color: var(--text);
    background: rgba(76, 175, 80, 0.10);
    border: 1px solid rgba(76, 175, 80, 0.22);
    transition: all 0.15s;
    position: relative;
    min-width: 0;
    overflow: hidden;
}
.cal-cell:hover:not(.muted):not(.booked):not(.past):not(.selected):not(.in-range) {
    background: rgba(76, 175, 80, 0.22);
    border-color: #4caf50;
}
.cal-cell .price {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.cal-cell.muted {
    background: transparent;
    border-color: transparent;
    color: var(--text-muted);
    opacity: 0.35;
    cursor: default;
}
.cal-cell.past {
    background: transparent;
    border-color: transparent;
    opacity: 0.25;
    cursor: not-allowed;
    text-decoration: line-through;
}
.cal-cell.booked {
    background: rgba(231, 76, 60, 0.14);
    border-color: rgba(231, 76, 60, 0.28);
    color: rgba(176, 60, 47, 0.85);
    cursor: not-allowed;
    text-decoration: line-through;
}
/* A booked night that is ALSO a valid same-day-turnaround check-out for the
   current selection — looks fully available (green) but with a dashed gold
   border so user knows it's "transit-day only". */
.cal-cell.booked.checkout-candidate {
    background: rgba(76, 175, 80, 0.12);
    border: 1px dashed var(--accent);
    color: var(--text);
    cursor: pointer;
    opacity: 1;
    text-decoration: none;
}
.cal-cell.booked.checkout-candidate:hover {
    background: rgba(76, 175, 80, 0.22);
    border-style: solid;
    border-color: var(--accent);
}
.cal-cell.booked.checkout-candidate .price {
    color: var(--text-muted);
}
.cal-cell.selected {
    background: var(--accent-strong);
    color: var(--white);
    border-color: var(--accent-dk);
}
.cal-cell.selected .price { color: rgba(255, 255, 255, 0.85); }
.cal-cell.in-range {
    background: rgba(197, 160, 89, 0.22);
    border-color: rgba(197, 160, 89, 0.4);
    color: var(--text);
}
.cal-cell.edge-start { border-radius: 8px 0 0 8px; }
.cal-cell.edge-end { border-radius: 0 8px 8px 0; }
.cal-loading {
    position: absolute;
    inset: 0;
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}
.cal-loading i { animation: spin 1s linear infinite; }

.tab-legend {
    display: flex;
    gap: 28px;
    margin-top: 20px;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--text-soft);
    flex-wrap: wrap;
}
.tab-legend .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}
.tab-legend .dot.free {
    background: rgba(76, 175, 80, 0.22);
    border: 1px solid #4caf50;
}
.tab-legend .dot.booked {
    background: rgba(231, 76, 60, 0.22);
    border: 1px solid #e74c3c;
}
.tab-legend .dot.selected {
    background: var(--accent-strong);
    border: 1px solid var(--accent-dk);
}

/* Right side: summary + form */
.tab-summary {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}
.tab-summary h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--text);
}
.sum-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
    color: var(--text-soft);
}
.sum-row:last-child { border-bottom: none; }
.sum-row b { color: var(--text); font-weight: 500; }
.sum-row.total {
    font-size: 1.1rem;
    padding-top: 16px;
    margin-top: 4px;
    border-top: 2px solid var(--accent);
}
.sum-row.total b { color: var(--accent); font-size: 1.3rem; font-weight: 600; }
.sum-row.muted { color: var(--text-muted); font-size: 0.85rem; }

.tab-form {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.tab-form .row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.tab-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-soft);
}
.tab-form input,
.tab-form select,
.tab-form textarea {
    font-family: var(--sans);
    font-size: 0.95rem;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--bg);
    color: var(--text);
    transition: border-color 0.2s;
    width: 100%;
}
.tab-form input:focus,
.tab-form select:focus,
.tab-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
}
.tab-form textarea { resize: vertical; font-family: var(--sans); }
.tab-submit {
    font-family: var(--sans);
    padding: 14px 20px;
    background: var(--accent-strong);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    margin-top: 6px;
    transition: background 0.2s;
}
.tab-submit:hover:not(:disabled) { background: var(--accent-dk); }
.tab-submit:disabled { background: var(--text-muted); cursor: not-allowed; opacity: 0.7; }
.tab-success {
    color: #2d7a3a;
    padding: 10px 14px;
    background: #e8f5e9;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
}
.tab-error {
    color: #9f1a1a;
    padding: 10px 14px;
    background: #fde8e8;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
}

@media (max-width: 960px) {
    .tab-topbar { padding: 14px 20px; }
    .tab-container { padding: 30px 20px 60px; }
    .tab-grid { grid-template-columns: 1fr; gap: 24px; }
    .tab-intro { margin-bottom: 24px; }
}
@media (max-width: 560px) {
    .tab-cal { padding: 14px; }
    .tab-form .row2 { grid-template-columns: 1fr; }
}

/* ──────────────── GALLERY LIGHTBOX ──────────────── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 4000;
    background: rgba(15, 12, 8, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: lb-fade 0.25s ease;
}
.lightbox[hidden] { display: none; }
@keyframes lb-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}
.lb-stage {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 100%;
}
.lb-img {
    max-width: min(90vw, 1600px);
    max-height: 85vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    animation: lb-pop 0.3s ease;
}
@keyframes lb-pop {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.lb-close, .lb-prev, .lb-next {
    position: absolute;
    border: none;
    cursor: pointer;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    transition: all 0.2s ease;
    line-height: 1;
    font-family: var(--sans);
    user-select: none;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.08);
}
.lb-close {
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    font-size: 1.7rem;
    z-index: 2;
}
.lb-prev, .lb-next {
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    font-size: 2.4rem;
    font-weight: 300;
    padding-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--sans);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 14px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.lb-caption {
    position: absolute;
    bottom: 64px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    max-width: 80vw;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0,0,0,0.7);
    pointer-events: none;
}

@media (max-width: 600px) {
    .lb-close { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 1.4rem; }
    .lb-prev, .lb-next { width: 44px; height: 44px; font-size: 2rem; }
    .lb-prev { left: 10px; }
    .lb-next { right: 10px; }
    .lb-img { max-width: 96vw; max-height: 78vh; }
    .lb-counter { font-size: 0.75rem; bottom: 16px; }
    .lb-caption { bottom: 48px; font-size: 0.8rem; }
}

/* ──────────────── BLOG ──────────────── */
.blog-hero {
    padding: 160px 0 60px;
    background: var(--bg);
    text-align: center;
}
.blog-hero h1 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    color: var(--text);
    margin: 8px 0 16px;
}
.blog-hero .lead {
    font-size: 1.05rem;
    color: var(--text-soft);
    max-width: 640px;
    margin: 0 auto;
}

.blog-list { padding: 40px 0 100px; }
.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
}
.bl-cat {
    padding: 8px 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 0.85rem;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s ease;
}
.bl-cat:hover { border-color: var(--accent); }
.bl-cat.active {
    background: var(--accent-strong);
    color: var(--white);
    border-color: var(--accent);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-link { display: block; text-decoration: none; color: inherit; }
.blog-card-image {
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
}
.blog-card-body { padding: 22px 22px 24px; }
.blog-card-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(197, 160, 89, 0.15);
    color: var(--accent-dk);
    border-radius: 999px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.blog-card h2 {
    font-family: var(--serif);
    font-size: 1.3rem;
    line-height: 1.3;
    color: var(--text);
    margin: 0 0 10px;
}
.blog-card p {
    color: var(--text-soft);
    line-height: 1.55;
    margin: 0 0 16px;
    font-size: 0.95rem;
}
.blog-card-meta {
    display: flex;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.8rem;
}
.blog-card-meta i, .blog-card-meta svg { width: 14px; height: 14px; vertical-align: middle; margin-right: 4px; }
.blog-card-placeholder {
    border: 2px dashed var(--accent);
    background: rgba(197, 160, 89, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 280px;
    box-shadow: none;
}
.blog-card-coming { padding: 40px 24px; color: var(--text-soft); }
.blog-card-coming i, .blog-card-coming svg { width: 36px; height: 36px; color: var(--accent); margin-bottom: 12px; }
.blog-card-coming h3 { font-family: var(--serif); margin: 0 0 8px; color: var(--text); }

/* ──────────────── ARTICLE PAGE ──────────────── */
.post-hero {
    padding: 140px 0 50px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}
.post-breadcrumb {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.post-breadcrumb a { color: var(--text-soft); text-decoration: none; }
.post-breadcrumb a:hover { color: var(--accent); }
.post-eyebrow {
    color: var(--accent-dk);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.post-hero h1 {
    font-family: var(--serif);
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    line-height: 1.2;
    color: var(--text);
    margin: 0 0 20px;
}
.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 0.85rem;
    color: var(--text-soft);
}
.post-meta i, .post-meta svg { width: 16px; height: 16px; vertical-align: middle; margin-right: 6px; }

.post-body { padding: 56px 0 40px; }
.post-body p, .post-body ul, .post-body ol { font-size: 1.05rem; line-height: 1.75; color: var(--text); margin-bottom: 22px; }
.post-body p.lead { font-size: 1.15rem; color: var(--text); font-weight: 400; margin-bottom: 24px; }
.post-body h2 {
    font-family: var(--serif);
    font-size: 1.7rem;
    color: var(--text);
    margin: 48px 0 18px;
    padding-top: 8px;
}
.post-body h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    color: var(--text);
    margin: 32px 0 12px;
}
.post-body strong { color: var(--text); font-weight: 600; }
.post-body em { color: var(--text); font-style: italic; }
.post-body a { color: var(--accent-dk); text-decoration: underline; text-decoration-color: rgba(197,160,89,0.4); text-underline-offset: 3px; }
.post-body a:hover { text-decoration-color: var(--accent-dk); }
.post-body ul, .post-body ol { padding-left: 26px; }
.post-body li { margin-bottom: 8px; }

/* Article tables (e.g. cost/budget breakdowns) — readable + machine-extractable */
.post-table-wrap { overflow-x: auto; margin: 24px 0; }
.post-body table {
    border-collapse: collapse;
    width: 100%;
    font-size: 0.98rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}
.post-body th, .post-body td {
    text-align: left;
    padding: 11px 14px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}
.post-body thead th {
    background: var(--bg-alt);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-soft);
}
.post-body tbody tr:last-child td { border-bottom: none; }
.post-body tbody tr:nth-child(even) td { background: var(--bg); }
.post-body table td:last-child { font-weight: 600; white-space: nowrap; }

.post-toc {
    background: var(--bg-alt);
    border-left: 3px solid var(--accent);
    padding: 22px 24px;
    margin: 32px 0 40px;
    border-radius: 4px;
}
.post-toc strong { display: block; margin-bottom: 10px; color: var(--text); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.post-toc ol { padding-left: 20px; margin: 0; }
.post-toc li { margin-bottom: 4px; font-size: 0.95rem; }
.post-toc a { text-decoration: none; }

.post-callout {
    background: rgba(197, 160, 89, 0.08);
    border-left: 4px solid var(--accent);
    padding: 16px 20px;
    margin: 24px 0;
    border-radius: 4px;
    font-size: 0.95rem;
}

.post-cta {
    background: var(--bg-dark);
    color: #fff;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 60px 0 20px;
}
.post-cta h3 { font-family: var(--serif); font-size: 1.5rem; margin: 0 0 12px; color: #fff; }
.post-cta p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }

.post-author { padding: 0 0 80px; }
.post-author-card {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    border-left: 4px solid var(--accent);
}
.post-author-card strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 8px;
}
.post-author-card p { margin: 0; color: var(--text-soft); font-size: 0.95rem; line-height: 1.6; }

.post-body .faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}
.post-body .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 20px;
    font-weight: 600;
    color: var(--text);
    font-size: 1rem;
    position: relative;
}
.post-body .faq-item summary::after { content: '+'; position: absolute; right: 20px; color: var(--accent); font-size: 1.3rem; }
.post-body .faq-item[open] summary::after { content: '−'; }
.post-body .faq-item p { margin: 0; padding: 0 20px 18px; color: var(--text-soft); font-size: 0.95rem; }

@media (max-width: 768px) {
    .blog-hero { padding: 130px 0 40px; }
    .post-hero { padding: 110px 0 36px; }
    .post-body p, .post-body ul, .post-body ol { font-size: 1rem; }
    .post-body h2 { font-size: 1.4rem; margin: 36px 0 14px; }
    .post-cta { padding: 32px 24px; }
}

/* ──────────────── STICKY BOTTOM BAR (mobile only) ──────────────── */
.sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    display: none; /* shown via media query for mobile */
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px env(safe-area-inset-bottom, 12px);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.10);
    transform: translateY(0);
    transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.sticky-bar.is-hidden { transform: translateY(110%); }
.sticky-bar.is-disabled { display: none !important; }
.sb-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.sb-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
}
.sb-meta svg, .sb-meta i { width: 18px; height: 18px; color: #4caf50; flex-shrink: 0; }
.sb-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.2px;
    line-height: 1.2;
}
.sb-cta {
    display: inline-flex;
    align-items: center;
    background: var(--accent-strong);
    color: #fff;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.4px;
    padding: 13px 22px;
    border-radius: 999px;
    text-decoration: none;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(197, 160, 89, 0.45);
    transition: transform 0.18s ease, background 0.18s ease;
}
.sb-cta:hover { background: var(--accent-dk); transform: translateY(-1px); }
.sb-cta:active { transform: translateY(0); }

/* Show only on mobile widths. */
@media (max-width: 768px) {
    .sticky-bar { display: flex; }
    /* Body needs bottom padding so footer/last section isn't covered. */
    body.has-sticky { padding-bottom: 76px; }
    /* Push the WhatsApp FAB above the sticky bar. */
    .fab-whatsapp { bottom: 88px; }
}

/* ──────────────── FLOATING ACTIONS (WhatsApp + mobile Book) ──────────────── */
.fab {
    position: fixed;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    border: none;
    font-family: var(--sans);
}
.fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}
.fab:active { transform: translateY(-1px); }

.fab-whatsapp {
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
}
/* GPU-composited pulse: a scaling ring (transform+opacity) instead of animating box-shadow */
.fab-whatsapp::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: fab-ring 2.6s ease-out infinite;
}
.fab-whatsapp:hover { background: #1ebe5a; }
.fab-whatsapp:hover::after { animation: none; }
@keyframes fab-ring {
    0%   { transform: scale(1);   opacity: 0.5; }
    70%, 100% { transform: scale(1.7); opacity: 0; }
}

/* Legacy .fab-book removed — replaced by .sticky-bar (full-width mobile booking bar). */
@media (max-width: 768px) {
    .fab-whatsapp { width: 54px; height: 54px; right: 16px; }
}

/* ──────────────── SEO helpers ──────────────── */
.hero-title-sub {
    display: block;
    font-family: var(--sans);
    font-size: 0.32em;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 18px;
    opacity: 0.85;
    line-height: 1.5;
}
@media (max-width: 600px) {
    .hero-title-sub { font-size: 0.4em; letter-spacing: 2px; margin-top: 12px; }
}

/* SEO images inside background-image gallery anchors (crawlable but invisible). */
/* g-seo-img: legacy hidden img for SEO. New gallery uses real img inside picture. */
.g-seo-img {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    clip: rect(0,0,0,0);
}
.g-item { position: relative; }

/* Screen-reader-only utility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ──────────────── Gap / Upsell discount badges ──────────────── */
.cal-cell.gap-offer {
    border: 1px dashed var(--accent);
    background: rgba(197, 160, 89, 0.06);
}
.cal-cell .gap-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #e67e22;
    color: #fff;
    font-size: 0.58rem;
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: 700;
    z-index: 5;
    animation: gap-pulse 2s infinite;
    letter-spacing: 0.2px;
}
@keyframes gap-pulse {
    0%, 100% { opacity: 0.75; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

/* ──────────────── SECTION ALT (slight tinted bg for visual rhythm) ──────────────── */
.section-alt {
    background: var(--bg);
}

/* ──────────────── WHY BOOK DIRECT ──────────────── */
.wd-table {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    max-width: 880px;
    margin: 48px auto 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
/* every cell is a direct grid item → rows auto-align across all 3 columns */
.wd-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px 14px;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
    line-height: 1.3;
    color: var(--text);
}
/* column tints (per-cell so they stay continuous after row-flattening) */
.wd-feat   { justify-content: flex-start; text-align: left; padding-left: 24px; background: var(--bg-alt); }
.wd-direct { background: rgba(197,160,89,0.07); }
.wd-ota    { color: var(--text-muted); }
/* header row */
.wd-head {
    flex-direction: column;
    gap: 4px;
    min-height: 92px;
    border-bottom: 2px solid var(--line);
}
.wd-head strong { font-family: var(--serif); font-size: 1.12rem; color: var(--text); line-height: 1.15; }
.wd-head-direct strong { color: var(--accent-dk); }
.wd-head span { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1.3px; color: var(--text-soft); }
/* icons */
.wd-direct i { color: #4caf50; width: 22px; height: 22px; }
.wd-ota i { color: var(--text-muted); width: 22px; height: 22px; }
.wd-ota i[data-lucide="x"] { color: #e74c3c; }
/* drop bottom border on the final row (last 3 cells) */
.wd-table > .wd-cell:nth-last-child(-n+3) { border-bottom: none; }
.wd-cta { text-align: center; margin-top: 24px; }

@media (max-width: 700px) {
    .wd-table { grid-template-columns: 1.5fr 1fr 1fr; }
    .wd-cell { padding: 12px 6px; font-size: 0.82rem; }
    .wd-feat { padding-left: 12px; font-size: 0.8rem; }
    .wd-head { min-height: 84px; }
    .wd-head strong { font-size: 0.9rem; }
    .wd-head span { font-size: 0.6rem; letter-spacing: 0.9px; }
}

/* ──────────────── THINGS TO DO ──────────────── */
.td-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}
.td-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all 0.25s ease;
    text-align: left;
}
.td-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}
.td-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: rgba(197,160,89,0.12);
    color: var(--accent-dk);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.td-icon svg, .td-icon i { width: 26px; height: 26px; stroke-width: 1.5; }
.td-card h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    color: var(--text);
    margin: 0 0 8px;
}
.td-card p {
    font-size: 0.92rem;
    color: var(--text-soft);
    margin: 0 0 16px;
    line-height: 1.55;
}
.td-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--accent-dk);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}
.td-meta svg, .td-meta i { width: 14px; height: 14px; }
@media (max-width: 900px) { .td-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 560px) { .td-grid { grid-template-columns: 1fr; } }

/* ──────────────── REVIEWS ──────────────── */
.rv-overall {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px auto 40px;
    padding: 20px 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    max-width: 480px;
    box-shadow: var(--shadow-sm);
}
.rv-score {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-dk);
    line-height: 1;
}
.rv-score small { font-size: 1.2rem; color: var(--text-soft); font-weight: 400; }
.rv-overall-meta { display: flex; flex-direction: column; gap: 4px; }
.rv-stars {
    color: #f59e0b;
    font-size: 1.2rem;
    letter-spacing: 2px;
    line-height: 1;
}
.rv-count {
    font-size: 0.85rem;
    color: var(--text-soft);
}

.rv-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}
.rv-grid .rv-card { flex: 1 1 310px; max-width: 372px; }
.rv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 22px 20px;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}
.rv-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.rv-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.rv-card-score {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dk) 100%);
    color: #fff;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1rem;
    padding: 6px 12px;
    border-radius: 8px;
    min-width: 38px;
    text-align: center;
}
.rv-card-stars {
    color: #f59e0b;
    letter-spacing: 1.5px;
    font-size: 0.95rem;
}
.rv-card blockquote {
    margin: 0 0 18px;
    padding: 0;
    border: none;
    font-style: normal;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.65;
    flex: 1;
    position: relative;
}
.rv-card blockquote::before {
    content: "\201C";
    font-family: var(--serif);
    font-size: 2.4rem;
    color: var(--accent);
    line-height: 1;
    opacity: 0.4;
    position: absolute;
    top: -8px;
    left: -8px;
}
.rv-card-foot {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}
.rv-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.rv-card-foot strong {
    display: block;
    color: var(--text);
    font-size: 0.95rem;
}
.rv-card-foot span {
    display: block;
    color: var(--text-soft);
    font-size: 0.78rem;
    margin-top: 2px;
}
@media (max-width: 560px) {
    .rv-grid { grid-template-columns: 1fr; }
    .rv-overall { flex-direction: column; gap: 8px; padding: 18px; }
    .rv-score { font-size: 2.4rem; }
}
.rv-platforms {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}
.rv-platform {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s ease;
    min-width: 160px;
}
.rv-platform:hover { border-color: var(--accent); transform: translateY(-2px); }
.rv-platform span {
    font-size: 0.72rem;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
.rv-platform strong {
    font-size: 0.95rem;
    margin-top: 4px;
}

/* ──────────────── FAQ ACCORDION ──────────────── */
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 1rem;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background 0.18s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--accent);
    font-weight: 300;
    transition: transform 0.25s ease;
    line-height: 1;
}
.faq-item[open] summary::after { content: '−'; transform: rotate(0); }
.faq-item summary:hover { background: var(--bg-alt); }
.faq-item p {
    margin: 0;
    padding: 0 22px 20px;
    color: var(--text-soft);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ──────────────── QUICK STATS BAR ──────────────── */
.quick-stats {
    padding: 28px 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 2;
}
.qs-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    align-items: center;
}
.qs-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 8px 4px;
    border-right: 1px solid var(--line);
    text-align: center;
}
.qs-item:last-child { border-right: none; }
.qs-item i,
.qs-item svg {
    width: 26px;
    height: 26px;
    color: var(--accent);
    stroke-width: 1.5;
    margin-bottom: 4px;
}
.qs-item strong {
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1;
}
.qs-item span {
    font-size: 0.72rem;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
@media (max-width: 960px) {
    .qs-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .qs-item:nth-child(3n) { border-right: none; }
}
@media (max-width: 480px) {
    .qs-grid { grid-template-columns: repeat(2, 1fr); }
    .qs-item:nth-child(3n) { border-right: 1px solid var(--line); }
    .qs-item:nth-child(2n) { border-right: none; }
    .qs-item strong { font-size: 1.3rem; }
}

/* ──────────────── LAST-MINUTE BANNER ──────────────── */
.last-minute-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 4px 14px rgba(247, 147, 30, 0.35);
    position: relative;
}
.last-minute-banner[hidden] { display: none; }
/* GPU-composited pulse: animate opacity of a static glow ring */
.last-minute-banner::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 6px rgba(247, 147, 30, 0.35);
    opacity: 0;
    pointer-events: none;
    animation: lm-pulse 2.6s ease-in-out infinite;
}
@keyframes lm-pulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}
.last-minute-banner .lm-icon {
    font-size: 1.8rem;
    line-height: 1;
    flex-shrink: 0;
}
.last-minute-banner .lm-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.3;
}
.last-minute-banner .lm-text strong {
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.last-minute-banner .lm-text .lm-body {
    font-size: 0.78rem;
    opacity: 0.95;
}

/* ──────────────── STAY EXTENSION UPSELL ──────────────── */
.upsell-offer {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
}
.upsell-offer[hidden] { display: none; }
.upsell-inner {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.12) 0%, rgba(230, 126, 34, 0.10) 100%);
    border: 1.5px dashed var(--accent);
    border-radius: 12px;
    padding: 18px 18px 16px;
    position: relative;
}
/* GPU-composited pulse: scale+fade a static ring via pseudo-element */
.upsell-inner::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 12px;
    box-shadow: 0 0 0 4px rgba(197,160,89,0.35);
    opacity: 0;
    pointer-events: none;
    animation: upsell-pulse 2.4s ease-in-out infinite;
}
@keyframes upsell-pulse {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.01); }
}
.upsell-title {
    font-family: var(--serif);
    color: var(--accent-dk);
    margin: 0 0 6px;
    font-size: 1.05rem;
    font-weight: 700;
}
.upsell-body {
    margin: 0 0 14px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text);
}
.upsell-body b { color: var(--accent-dk); }
.upsell-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.upsell-accept {
    flex: 1 1 auto;
    background: var(--accent-strong);
    color: #fff;
    border: none;
    padding: 11px 18px;
    border-radius: 8px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.18s ease;
    min-width: 140px;
}
.upsell-accept:hover { background: var(--accent-dk); transform: translateY(-1px); }
.upsell-dismiss {
    flex: 0 0 auto;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--line);
    padding: 11px 16px;
    border-radius: 8px;
    font-family: var(--sans);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.18s ease;
}
.upsell-dismiss:hover { color: var(--text); border-color: var(--text-muted); }

/* ──────────────── BOOKING CONFIRMATION MODAL ──────────────── */
.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: bm-fade-in 0.2s ease;
}
.booking-modal[hidden] { display: none; }
@keyframes bm-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
.booking-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 12, 8, 0.55);
    backdrop-filter: blur(2px);
}
.booking-modal-content {
    position: relative;
    background: #fff;
    border-radius: 14px;
    padding: 32px 32px 26px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 18px 50px rgba(0,0,0,0.28);
    animation: bm-pop-in 0.22s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
@keyframes bm-pop-in {
    from { opacity: 0; transform: translateY(12px) scale(0.96); }
    to { opacity: 1; transform: none; }
}
.booking-modal-content h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--text);
    margin: 0 0 6px;
}
.bm-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 0 22px;
}
.bm-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
}
.bm-row span {
    color: var(--text-soft);
    flex-shrink: 0;
}
.bm-row b {
    text-align: right;
    font-weight: 600;
    color: var(--text);
    word-break: break-word;
}
.bm-row.bm-total {
    margin-top: 4px;
    padding-top: 14px;
    border-bottom: none;
    font-size: 1.05rem;
}
.bm-row.bm-total b {
    color: var(--accent-dk);
    font-size: 1.05rem;
}
.bm-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}
.bm-btn {
    padding: 14px 18px;
    border-radius: 8px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.18s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    border: 1.5px solid transparent;
}
.bm-btn-cancel {
    background: #fff;
    color: var(--text);
    border-color: var(--line);
}
.bm-btn-cancel:hover { border-color: var(--text-muted); background: var(--bg-alt); }
.bm-btn-confirm {
    background: var(--bg-dark);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.bm-btn-confirm:hover { background: #2a221a; }
.bm-btn:disabled { opacity: 0.55; cursor: wait; }

@media (max-width: 560px) {
    .booking-modal-content { padding: 24px 22px 22px; }
    .booking-modal-content h3 { font-size: 1.25rem; }
    .bm-row { font-size: 0.88rem; padding: 10px 0; }
    .bm-actions { grid-template-columns: 1fr; gap: 8px; }
    .bm-btn-cancel { order: 2; }
    .bm-btn-confirm { order: 1; }
}

/* ──────────────── BOOK PAGE (standalone /book/) ──────────────── */
.book-page .book-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 40px 80px;
}
.book-page .tab-intro { max-width: 680px; margin: 0 auto 40px; text-align: center; }
.book-page .tab-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 960px) {
    .book-page .book-main { padding: 110px 20px 60px; }
    .book-page .tab-grid { grid-template-columns: 1fr; gap: 24px; }
}


/* ════════════════════════════════════════════════════
   HERO BADGES (social proof strip)
   ════════════════════════════════════════════════════ */
.hero-badges {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; margin-top: 30px; flex-wrap: wrap;
    font-size: 0.85rem; color: rgba(255, 255, 255, 0.88);
}
.hb-item { display: flex; align-items: center; gap: 8px; }
.hb-score {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 3px 11px; border-radius: 999px;
    font-weight: 600; color: #fff; letter-spacing: 0.02em;
}
.hb-direct { color: #e9d9b8; font-weight: 500; }
.hb-sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(255, 255, 255, 0.45); }
@media (max-width: 560px) {
    .hero-badges { gap: 10px; font-size: 0.78rem; }
    .hb-sep { display: none; }
}

/* ════════════════════════════════════════════════════
   BEACH MAP (10+ beaches section)
   ════════════════════════════════════════════════════ */
.bm-grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: 48px; align-items: center; margin-top: 10px;
}
.bm-map svg {
    width: 100%; max-width: 480px; height: auto; display: block; margin: 0 auto;
    filter: drop-shadow(0 14px 30px rgba(61, 51, 39, 0.10));
}
.bm-dot {
    transform-box: fill-box; transform-origin: center;
    transition: transform 0.22s ease; cursor: pointer;
}
.bm-dot.active { transform: scale(1.45); }
.bm-dot.active circle { fill: var(--primary); }
.bm-list { display: flex; flex-direction: column; gap: 6px; }
.bm-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 14px; border-radius: var(--radius);
    border: 1px solid transparent; transition: all 0.2s ease;
}
.bm-item:hover {
    background: var(--white); border-color: var(--line);
    box-shadow: var(--shadow-sm); transform: translateX(4px);
}
.bm-num {
    width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%;
    background: var(--accent-strong); color: #fff;
    font-size: 0.75rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.bm-name { color: var(--text); font-weight: 400; }
.bm-leader { flex: 1; border-bottom: 1px dashed var(--line); }
.bm-chip { font-weight: 600; color: var(--accent-text); white-space: nowrap; }
.bm-note { font-size: 0.8rem; color: var(--text-muted); margin: 10px 2px 4px; }
.bm-cta { margin-top: 14px; }
@media (max-width: 880px) {
    .bm-grid { grid-template-columns: 1fr; gap: 30px; }
    .bm-map svg { max-width: 400px; }
}

/* ════════════════════════════════════════════════════
   RELATED POSTS (blog articles)
   ════════════════════════════════════════════════════ */
.related-posts { margin: 48px 0 8px; padding-top: 32px; border-top: 1px solid var(--line); }
.related-posts h3 { font-size: 1.45rem; margin-bottom: 18px; }
.related-posts ul { display: flex; flex-direction: column; gap: 10px; }
.related-posts a {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px;
    background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius); color: var(--text);
    transition: all 0.2s ease;
}
.related-posts a:hover {
    border-color: var(--accent); box-shadow: var(--shadow-sm);
    transform: translateX(4px); color: var(--primary-dk);
}
.related-posts a::before { content: '\2192'; color: var(--accent); font-weight: 600; }

/* Booking page trust bar (Front 3 conversion) */
.tab-trust{display:flex;flex-wrap:wrap;justify-content:center;gap:14px 28px;margin:0 auto 30px;max-width:920px;padding:16px 24px;background:#f7f3ec;border:1px solid #e7dfce;border-radius:14px}
.tt-item{display:inline-flex;align-items:center;gap:8px;font-size:.93rem;color:#5b5043;font-weight:500}
.tt-item svg{width:18px;height:18px;color:#c5a059;flex:none}
.tab-reassure{margin:14px 0 0;font-size:.82rem;color:#8a7e6c;text-align:center;line-height:1.5}
@media(max-width:600px){.tab-trust{gap:10px 16px;padding:14px 16px;margin-bottom:22px}.tt-item{font-size:.84rem}}

/* Booking/policy page (how-to-book steps + policy box) */
.how-steps{counter-reset:hs;list-style:none;padding:0;margin:1rem 0 1.5rem}
.how-steps li{position:relative;padding:10px 0 10px 46px;border-bottom:1px solid #f0e9dc}
.how-steps li::before{counter-increment:hs;content:counter(hs);position:absolute;left:0;top:8px;width:30px;height:30px;line-height:30px;text-align:center;border-radius:50%;background:#3d3327;color:#c5a059;font-weight:700;font-family:Georgia,serif}
.box-policy{background:#f7f3ec;border:1px solid #e7dfce;border-left:4px solid #c5a059;border-radius:12px;padding:18px 24px;margin:16px 0}
.box-policy ul{margin:0;padding-left:1.1rem}
.box-policy li{margin:8px 0}

/* Homepage blog hub (internal linking) */
.blog-hub-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;max-width:880px;margin:8px auto 22px}
.blog-hub-card{display:flex;align-items:center;gap:10px;padding:16px 18px;background:#fff;border:1px solid #e7dfce;border-radius:12px;color:#3d3327;font-weight:600;text-decoration:none;transition:.2s ease}
.blog-hub-card:hover{border-color:#c5a059;box-shadow:0 4px 14px rgba(0,0,0,.06);transform:translateY(-2px)}
.blog-hub-card svg{width:18px;height:18px;color:#c5a059;flex:none}
.blog-hub-more{text-align:center}
.blog-hub-more a{color:#9a7327;font-weight:600;text-decoration:none}
@media(max-width:700px){.blog-hub-grid{grid-template-columns:1fr 1fr;gap:10px}}
@media(max-width:440px){.blog-hub-grid{grid-template-columns:1fr}}

/* Article featured/hero image */
.post-featured{margin:0 0 8px;border-radius:14px;overflow:hidden;box-shadow:0 6px 24px rgba(0,0,0,.10)}
.post-featured img{display:block;width:100%;height:auto}
