/* ── Web Koi · Design System v3 ───────────────────────────── */
/* Palette: Brand colors from Adobe Color — warm luxury */

html { scroll-behavior: smooth; }

:root {
    --wk-navy:    #1C1C1C;
    --wk-navy-l:  #2d2d2d;
    --wk-gold:    #BF913B;
    --wk-gold-l:  #D4AD5A;
    --wk-gold-bg: #F7F3EC;
    --wk-olive:   #8C8C8C;
    --wk-white:   #FFFFFF;
    --wk-light:   #F5F1E8;
    --wk-cream:   #F5F1E8;
    --wk-text:    #1C1C1C;
    --wk-muted:   #8C8C8C;
    --wk-border:  #E8E4E0;
    --wk-wa:      #25D366;
    --wk-radius:  8px;
    --wk-font-h:  'Cinzel', Georgia, serif;
    --wk-font-b:  'Josefin Sans', system-ui, sans-serif;
}

/* NOTE: TT5 overrides removed — Web Koi Theme handles all layout */

/* ═══════════════════════════════════════════════════════════
   HEADER — Crema por defecto, se oscurece al scroll
   ═══════════════════════════════════════════════════════════ */
.wk-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    background: var(--wk-cream);
    transition: all .4s cubic-bezier(.4,0,.2,1);
    padding: 12px 32px;
    border-bottom: 1px solid var(--wk-border);
}
.wk-header.scrolled {
    background: var(--wk-navy);
    padding: 8px 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,.15);
    border-bottom-color: transparent;
}
.wk-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.wk-header__logo { text-decoration: none; flex-shrink: 0; }
.wk-header__logo img { height: 70px !important; width: auto !important; max-width: 280px !important; max-height: none !important; transition: all .3s; object-fit: contain; }
.wk-header.scrolled .wk-header__logo img { height: 50px !important; }
/* Logo swap: default on cream, white on dark */
.wk-logo-light { display: block; }
.wk-logo-dark { display: none; }
.wk-header.scrolled .wk-logo-light { display: none; }
.wk-header.scrolled .wk-logo-dark { display: block; }
.wk-header__brand {
    font-family: var(--wk-font-h);
    color: var(--wk-navy);
    font-size: 17px;
    font-weight: 700;
}
.wk-header.scrolled .wk-header__brand { color: var(--wk-cream); }

/* Nav links — dark on cream, light on scroll */
.wk-header__nav { display: flex; gap: 32px; align-items: center; }
.wk-header__nav a {
    color: var(--wk-navy);
    text-decoration: none;
    font-family: var(--wk-font-b);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .1em;
    position: relative;
    transition: color .3s;
    text-transform: uppercase;
}
.wk-header__nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--wk-gold);
    transition: width .3s;
}
.wk-header__nav a:hover { color: var(--wk-gold); }
.wk-header__nav a:hover::after { width: 100%; }
/* Active nav state */
.wk-header__nav a.active { color: var(--wk-gold); }
.wk-header__nav a.active::after { width: 100%; }
.wk-header.scrolled .wk-header__nav a.active { color: #fff; }
.wk-header.scrolled .wk-header__nav a { color: rgba(255,255,255,.8); }
.wk-header.scrolled .wk-header__nav a:hover { color: #fff; }

/* WhatsApp CTA */
.wk-header__actions { display: flex; align-items: center; gap: 12px; }
.wk-header__wa {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--wk-gold);
    color: var(--wk-navy) !important;
    padding: 9px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: all .2s;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.wk-header__wa:hover {
    background: var(--wk-gold-l);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(191,145,59,.35);
    color: var(--wk-navy) !important;
}

/* Hamburger */
.wk-header__toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.wk-header__toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--wk-navy); transition: all .3s; border-radius: 2px;
}
.wk-header.scrolled .wk-header__toggle span { background: var(--wk-white); }
.wk-header__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.wk-header__toggle.open span:nth-child(2) { opacity: 0; }
.wk-header__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media (max-width: 768px) {
    .wk-header { padding: 10px 16px; }
    .wk-header.scrolled { padding: 8px 16px; }
    .wk-header__toggle { display: flex; }
    .wk-header__nav {
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: var(--wk-navy);
        flex-direction: column; justify-content: center; gap: 24px;
        opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 9998;
    }
    .wk-header__nav.open { opacity: 1; pointer-events: all; }
    .wk-header__nav a { font-size: 20px; font-family: var(--wk-font-h); color: var(--wk-cream); }
}

/* ═══════════════════════════════════════════════════════════
   PAGE SECTIONS
   ═══════════════════════════════════════════════════════════ */
.wk-page * { box-sizing: border-box; }
.wk-page { font-family: var(--wk-font-b); color: var(--wk-text); line-height: 1.6; }
.wk-page h1,.wk-page h2,.wk-page h3 { font-family: var(--wk-font-h); line-height: 1.15; }
.wk-page img { max-width: 100%; height: auto; }
.wk-container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .wk-container { padding: 0 20px; } }

/* ── HERO ─────────────────────────────────────────────────── */
.wk-hero {
    position: relative;
    min-height: 92vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    background: linear-gradient(170deg, var(--wk-navy) 0%, #222 40%, var(--wk-navy) 100%);
    color: #fff;
    overflow: hidden;
    padding: 160px 20px 80px;
}
.wk-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(191,145,59,.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(191,145,59,.06) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(191,145,59,.06) 0%, transparent 40%);
    z-index: 0;
}
.wk-hero::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(191,145,59,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(191,145,59,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    opacity: .5;
}
.wk-hero__inner { position: relative; z-index: 1; max-width: 760px; width: 100%; }
.wk-hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    border: 1px solid rgba(191,145,59,.4);
    padding: 8px 24px;
    border-radius: 0;
    font-size: 11px; font-weight: 500;
    letter-spacing: .14em;
    margin-bottom: 32px;
    color: var(--wk-gold-l);
    text-transform: uppercase;
}
.wk-hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 600;
    letter-spacing: .02em;
    margin: 0 0 16px;
    color: #fff;
}
.wk-hero h1 span { color: var(--wk-gold-l); }
.wk-hero__sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: .7; max-width: 480px;
    margin: 0 auto 40px;
    font-weight: 300;
    letter-spacing: .02em;
}
/* Hero search */
.wk-hero-search {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(191,145,59,.15);
    border-radius: 10px;
    padding: 24px;
    max-width: 1060px;
    width: 100%;
    margin: 0 auto;
}
.wk-hero-search .wk-search-form { background: transparent !important; box-shadow: none !important; border: none !important; padding: 0 !important; margin: 0 !important; }
.wk-hero-search .wk-search-fields {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr 1fr auto !important;
    gap: 12px !important;
    align-items: end;
}
.wk-hero-search .wk-field { min-width: 0 !important; }
.wk-hero-search .wk-field label { color: var(--wk-gold-l) !important; font-size: 10px !important; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.wk-hero-search select {
    background: rgba(255,255,255,.08) !important;
    border: 1px solid rgba(255,255,255,.15) !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 12px 36px 12px 14px !important;
    font-size: 14px !important;
    width: 100% !important;
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4AD5A' stroke-width='2' fill='none'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
}
.wk-hero-search select option { color: var(--wk-navy); background: var(--wk-cream); }
.wk-hero-search .wk-field-submit { min-width: 0 !important; }
.wk-hero-search .wk-btn-search {
    background: var(--wk-gold) !important;
    color: var(--wk-navy) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 32px !important;
    font-weight: 800 !important;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.wk-hero-search .wk-btn-search:hover { background: var(--wk-gold-l) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(191,145,59,.35); }
@media (max-width: 768px) {
    .wk-hero-search .wk-search-fields { grid-template-columns: 1fr 1fr !important; }
    .wk-hero-search .wk-field-submit { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
    .wk-hero-search .wk-search-fields { grid-template-columns: 1fr !important; }
}
/* Hero stats */
.wk-hero__stats {
    display: flex; justify-content: center; gap: 48px;
    margin-top: 48px; padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.08);
}
.wk-hero__stat { text-align: center; }
.wk-hero__stat strong { display: block; font-family: var(--wk-font-h); font-size: 28px; font-weight: 700; color: var(--wk-gold-l); }
.wk-hero__stat small { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; opacity: .5; }

/* ── SECTION HEADERS ──────────────────────────────────────── */
.wk-section-header { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.wk-eyebrow { color: var(--wk-gold) !important; font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: .16em; margin: 0 0 14px; }
.wk-section-header h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--wk-navy); margin: 0 0 12px; font-weight: 600; letter-spacing: .01em; }
.wk-section-header h2::after { content: ''; display: block; width: 48px; height: 1px; background: var(--wk-gold); margin: 16px auto 0; }
.wk-section-header p { color: var(--wk-muted); font-size: 15px; margin: 0; }

/* ── FEATURED PROPERTIES ──────────────────────────────────── */
.wk-featured-section { background: var(--wk-cream); padding: 100px 0; }
.wk-section-header { max-width: 600px; margin: 0 auto 60px; }

/* ── ABOUT ────────────────────────────────────────────────── */
.wk-about { background: var(--wk-white); padding: 100px 20px; }
.wk-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1280px; margin: 0 auto; }
.wk-about__visual { position: relative; }
.wk-about__photo {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.wk-about__photo img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.wk-about__photo:hover img { transform: scale(1.03); }
.wk-about__card {
    background: var(--wk-navy);
    border-radius: 12px; padding: 44px 36px;
    color: #fff; position: relative; overflow: hidden;
}
.wk-about__card::after { content: ''; position: absolute; top: -40px; right: -40px; width: 120px; height: 120px; border-radius: 50%; background: rgba(191,145,59,.1); }
.wk-about__card h3 { font-family: var(--wk-font-h); font-size: 18px; margin: 0 0 12px; color: var(--wk-gold-l); }
.wk-about__card p { font-size: 15px; line-height: 1.7; opacity: .8; margin: 0; }
.wk-about__accent { position: absolute; bottom: -20px; right: 36px; background: var(--wk-gold); color: var(--wk-navy); padding: 10px 22px; border-radius: 10px; font-family: var(--wk-font-h); font-weight: 700; font-size: 13px; box-shadow: 0 6px 20px rgba(191,145,59,.3); }
.wk-about__text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--wk-navy); margin: 0 0 20px; }
.wk-about__text p { color: var(--wk-muted); font-size: 15px; line-height: 1.8; margin: 0 0 14px; }
.wk-about__features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.wk-about__feat { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--wk-text); font-weight: 500; }
.wk-about__feat-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 15px; background: var(--wk-gold-bg) !important; color: var(--wk-gold); }
/* Feature icons via CSS - WP strips inline SVGs */
.wk-about__feat:nth-child(1) .wk-about__feat-icon::after { content: ''; width: 18px; height: 18px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23BF913B' stroke-width='2'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 01-2 2H5a2 2 0 01-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E") no-repeat center; }
.wk-about__feat:nth-child(2) .wk-about__feat-icon::after { content: ''; width: 18px; height: 18px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23BF913B' stroke-width='2'%3E%3Cpath d='M16 4h2a2 2 0 012 2v14a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2h2'/%3E%3Crect x='8' y='2' width='8' height='4' rx='1'/%3E%3C/svg%3E") no-repeat center; }
.wk-about__feat:nth-child(3) .wk-about__feat-icon::after { content: ''; width: 18px; height: 18px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23BF913B' stroke-width='2'%3E%3Cpolyline points='23 6 13.5 15.5 8.5 10.5 1 18'/%3E%3Cpolyline points='17 6 23 6 23 12'/%3E%3C/svg%3E") no-repeat center; }
.wk-about__feat:nth-child(4) .wk-about__feat-icon::after { content: ''; width: 18px; height: 18px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23BF913B' stroke-width='2'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z'/%3E%3C/svg%3E") no-repeat center; }
.wk-about__cta {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 24px;
    background: var(--wk-gold); color: var(--wk-navy) !important;
    padding: 12px 28px; border-radius: 10px;
    font-weight: 700; text-decoration: none; transition: all .2s; font-size: 14px;
    text-transform: uppercase; letter-spacing: .03em;
}
.wk-about__cta:hover { background: var(--wk-gold-l); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(191,145,59,.35); color: var(--wk-navy) !important; }

/* ── TRUST BAR ────────────────────────────────────────────── */
.wk-trust { background: var(--wk-navy); color: #fff; padding: 60px 20px; }
.wk-trust__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; max-width: 1060px; margin: 0 auto; text-align: center; }
.wk-trust__item strong { display: block; font-family: var(--wk-font-h); font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 700; color: var(--wk-gold-l); }
.wk-trust__item span { font-size: 12px; opacity: .5; text-transform: uppercase; letter-spacing: .08em; }

/* ── CTA BANNER ───────────────────────────────────────────── */
.wk-cta-banner { background: var(--wk-navy); padding: 64px 20px; text-align: center; color: #fff; border-top: 1px solid rgba(191,145,59,.15); }
.wk-cta-banner h2 { font-size: clamp(1.3rem,3vw,1.8rem); margin: 0 0 10px; color: #fff; }
.wk-cta-banner p { opacity: .75; margin: 0 0 28px; font-size: 15px; }
.wk-cta-banner__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.wk-cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 10px;
    font-weight: 700; text-decoration: none; transition: all .2s; font-size: 14px;
    text-transform: uppercase; letter-spacing: .03em;
}
.wk-cta-btn:hover { transform: translateY(-2px); }
.wk-cta-btn--wa { background: var(--wk-gold); color: var(--wk-navy) !important; }
.wk-cta-btn--wa:hover { background: var(--wk-gold-l); box-shadow: 0 6px 20px rgba(191,145,59,.35); color: var(--wk-navy) !important; }
.wk-cta-btn--light { background: rgba(255,255,255,.08); color: #fff !important; border: 1px solid rgba(255,255,255,.15); }
.wk-cta-btn--light:hover { background: rgba(255,255,255,.15); color: #fff !important; }
/* "Ver todas" button on cream bg */
.wk-featured-section .wk-cta-btn { background: var(--wk-gold); color: var(--wk-navy) !important; border: none; }
.wk-featured-section .wk-cta-btn:hover { background: var(--wk-gold-l); box-shadow: 0 6px 20px rgba(191,145,59,.35); }

/* ── FOOTER ───────────────────────────────────────────────── */
.wk-footer { background: var(--wk-navy); color: #A0A0A0; padding: 80px 20px 24px; }
.wk-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; max-width: 1280px; margin: 0 auto; }
.wk-footer__brand h3 { font-family: var(--wk-font-h); color: #fff; font-size: 14px; letter-spacing: .04em; margin: 0 0 10px; }
.wk-footer__brand p { font-size: 13px; line-height: 1.7; margin: 0 0 16px; }
.wk-footer__social { display: flex; gap: 8px; }
.wk-footer__social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; transition: all .3s; font-size: 14px; }
.wk-footer__social a:hover { background: var(--wk-gold); color: var(--wk-navy); transform: scale(1.1); }
.wk-footer__col h4 { color: var(--wk-gold); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 18px; }
.wk-footer__col ul { list-style: none; padding: 0; margin: 0; }
.wk-footer__col li { margin-bottom: 8px; }
.wk-footer__col a { color: var(--wk-olive); text-decoration: none; font-size: 13px; transition: color .2s; }
.wk-footer__col a:hover { color: var(--wk-gold-l); }
.wk-footer__bottom { border-top: 1px solid rgba(255,255,255,.06); margin-top: 40px; padding-top: 16px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12px; max-width: 1280px; margin-left: auto; margin-right: auto; }
.wk-footer__bottom a { color: var(--wk-gold); text-decoration: none; }

/* ── BACK TO TOP ──────────────────────────────────────────── */
.wk-back-top { position: fixed; bottom: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%; background: var(--wk-gold); color: var(--wk-navy); border: none; cursor: pointer; opacity: 0; visibility: hidden; transition: all .2s; box-shadow: 0 4px 16px rgba(191,145,59,.3); z-index: 1000; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; }
.wk-back-top.visible { opacity: 1; visibility: visible; }
.wk-back-top:hover { transform: scale(1.1); }

/* Floating WhatsApp */
.wk-floating-wa { position: fixed; bottom: 24px; left: 24px; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,.25); z-index: 9999; transition: transform .2s; text-decoration: none; }
.wk-floating-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(0,0,0,.3); }

/* ── TWO COLUMN ───────────────────────────────────────────── */
.vb-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.wk-testimonials { padding: 80px 20px; background: var(--wk-cream); }
.wk-testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 768px) { .wk-testimonials__grid { grid-template-columns: 1fr; } }
.wk-testimonial { background: var(--wk-white); border-radius: var(--wk-radius); padding: 32px; box-shadow: 0 2px 12px rgba(0,0,0,.04); }
.wk-testimonial__stars { color: var(--wk-gold); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.wk-testimonial__text { font-size: 15px; line-height: 1.7; color: var(--wk-text); margin-bottom: 20px; font-style: italic; }
.wk-testimonial__author strong { display: block; font-size: 14px; font-weight: 600; color: var(--wk-navy); }
.wk-testimonial__author span { font-size: 13px; color: var(--wk-muted); }

/* ── ZONES ────────────────────────────────────────────────── */
.wk-zones { padding: 80px 20px; background: var(--wk-white); }
.wk-zones__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 768px) { .wk-zones__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .wk-zones__grid { grid-template-columns: 1fr; } }
.wk-zone-card {
    position: relative; display: block; padding: 32px 24px;
    background: var(--wk-navy); color: #fff;
    border-radius: var(--wk-radius); overflow: hidden;
    text-decoration: none; transition: transform .3s, box-shadow .3s;
    min-height: 180px;
}
.wk-zone-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.15); color: #fff; }
.wk-zone-card h3 { font-family: var(--wk-font-h); font-size: 20px; margin: 0 0 8px; position: relative; z-index: 1; }
.wk-zone-card p { font-size: 13px; line-height: 1.6; opacity: .7; position: relative; z-index: 1; margin: 0; }
.wk-zone-card::after { content: ''; position: absolute; top: 0; right: 0; width: 100px; height: 100px; background: rgba(191,145,59,.1); border-radius: 50%; transform: translate(30%,-30%); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1060px) {
    .wk-hero { min-height: 75vh; padding: 140px 16px 60px; }
    .wk-hero--short { padding: 140px 16px 50px; }
    .wk-hero__stats { gap: 24px; flex-wrap: wrap; }
    .wk-about__grid { grid-template-columns: 1fr; gap: 40px; }
    .wk-trust__grid { grid-template-columns: repeat(2,1fr); }
    .wk-footer__grid { grid-template-columns: 1fr 1fr; }
    .vb-two-col { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .wk-hero__stats { gap: 16px; }
    .wk-hero__stat strong { font-size: 22px; }
    .wk-about__features { grid-template-columns: 1fr; }
    .wk-trust__grid { grid-template-columns: 1fr 1fr; }
    .wk-footer__grid { grid-template-columns: 1fr; }
    .wk-footer__bottom { flex-direction: column; text-align: center; }
    .wk-hero-search .wk-search-fields { flex-direction: column; }
    .wk-testimonials__grid { grid-template-columns: 1fr !important; }
    .wk-zones__grid { grid-template-columns: 1fr !important; }
}
/* Global mobile overflow fix */
html, body { overflow-x: hidden; }
.wk-page, .wk-main, .wk-container, section, .wk-hero__inner { max-width: 100vw; overflow-x: hidden; box-sizing: border-box; }
/* Force any inline 3-col grid to stack on mobile */
@media (max-width: 768px) {
    [style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr !important; }
    [style*="grid-template-columns: repeat(3"] { grid-template-columns: 1fr !important; }
}

/* ═══ SVG ICONS ═══════════════════════════════════════════ */
.wk-icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.wk-icon-whatsapp { fill: currentColor; stroke: none; }
.wk-footer__social .wk-icon { stroke: currentColor; }
.wk-footer__col .wk-icon { margin-right: 2px; opacity: .7; }

/* ═══ ACCESSIBILITY ══════════════════════════════════════= */
:focus-visible { outline: 2px solid var(--wk-gold); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ═══ ANIMATIONS ══════════════════════════════════════════ */
@keyframes wk-fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes wk-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes wk-scaleIn {
    from { opacity: 0; transform: scale(.95); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes wk-slideLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes wk-slideRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
/* Scroll-triggered animations via IntersectionObserver */
.wk-animate { opacity: 0; }
.wk-animate.wk-visible { animation-duration: .8s; animation-fill-mode: both; animation-timing-function: cubic-bezier(.22,1,.36,1); }
.wk-animate.wk-visible.wk-fade-up { animation-name: wk-fadeUp; }
.wk-animate.wk-visible.wk-fade-in { animation-name: wk-fadeIn; }
.wk-animate.wk-visible.wk-scale-in { animation-name: wk-scaleIn; }
.wk-animate.wk-visible.wk-slide-left { animation-name: wk-slideLeft; }
.wk-animate.wk-visible.wk-slide-right { animation-name: wk-slideRight; }
/* Stagger delays for card grids */
.wk-animate.wk-visible.wk-delay-1 { animation-delay: .1s; }
.wk-animate.wk-visible.wk-delay-2 { animation-delay: .2s; }
.wk-animate.wk-visible.wk-delay-3 { animation-delay: .3s; }
.wk-animate.wk-visible.wk-delay-4 { animation-delay: .4s; }

/* Hero entrance animations (always play) */
.wk-hero__badge { animation: wk-fadeUp .8s .2s both cubic-bezier(.22,1,.36,1); }
.wk-hero h1 { animation: wk-fadeUp .8s .4s both cubic-bezier(.22,1,.36,1); }
.wk-hero__sub { animation: wk-fadeUp .8s .6s both cubic-bezier(.22,1,.36,1); }
.wk-hero-search { animation: wk-fadeUp .8s .8s both cubic-bezier(.22,1,.36,1); }
.wk-hero__stats { animation: wk-fadeIn 1s 1.2s both; }

/* Hover micro-interactions */
.wk-card { transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s; }
.wk-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }
.wk-about__card { transition: transform .4s cubic-bezier(.22,1,.36,1); }
.wk-about__card:hover { transform: translateY(-4px) scale(1.01); }
.wk-trust__item strong { transition: transform .3s; }
.wk-trust__item:hover strong { transform: scale(1.1); }
.wk-about__feat { transition: transform .2s; }
.wk-about__feat:hover { transform: translateX(4px); }

/* ═══ THEME BASE ══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: var(--wk-font-b); color: var(--wk-text); line-height: 1.6; background: var(--wk-white); overflow-x: hidden; margin: 0; }
h1,h2,h3,h4,h5 { font-family: var(--wk-font-h); line-height: 1.15; }
img { max-width: 100%; height: auto; }
a { transition: color .2s; }
.wk-main { width: 100%; }
/* Non-hero pages: push content below fixed header (94px header height + breathing room) */
.wk-main--no-hero { padding-top: 110px; }
.wk-page-content { width: 100%; }

/* Article / generic pages */
.wk-article { max-width: 1060px; margin: 110px auto 60px; padding: 0 20px; }
.wk-article--center { text-align: center; }
.wk-article__title { font-family: var(--wk-font-h); color: var(--wk-navy); font-size: 2rem; margin: 0 0 16px; }
.wk-article__content { font-size: 15px; line-height: 1.8; color: var(--wk-olive); }

/* Hero short variant */
.wk-hero--short { min-height: 40vh; padding: 160px 20px 60px; }

/* Listings section */
.wk-section-listings { padding: 48px 20px 60px; background: var(--wk-white); }
.wk-listings-grid { margin-top: 32px; }

/* ═══════════════════════════════════════════════════════════
   SINGLE PROPERTY PAGE — Complete CSS
   ═══════════════════════════════════════════════════════════ */

/* Layout */
.wk-prop { background: var(--wk-white); padding-top: 100px; }
.wk-prop__wrap { max-width: 1280px; margin: 0 auto; padding: 24px 20px 60px; }
.wk-prop__layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 36px;
    align-items: start;
}

/* ── Gallery ─────────────────────────────────────────────── */
.wk-gallery-main {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: var(--wk-cream);
    cursor: pointer;
}
.wk-gallery-main__img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.wk-gallery-main:hover .wk-gallery-main__img { transform: scale(1.02); }

/* Gallery badges */
.wk-gallery-badges {
    position: absolute;
    top: 16px; left: 16px;
    display: flex; gap: 8px;
    z-index: 2;
}
.wk-gbadge {
    padding: 6px 14px;
    border-radius: 8px;
    font-family: var(--wk-font-b);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    backdrop-filter: blur(4px);
}
.wk-gbadge--pre { background: var(--wk-gold-l); color: #fff; }
.wk-gbadge--new { background: var(--wk-olive); color: #fff; }
.wk-gbadge--feat { background: var(--wk-gold); color: var(--wk-navy); }
.wk-gbadge--op { background: rgba(28,28,28,.7); color: #fff; backdrop-filter: blur(6px); }

/* Photo count button */
.wk-gallery-count {
    position: absolute;
    bottom: 16px; right: 16px;
    background: rgba(28,28,28,.7);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: var(--wk-font-b);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background .2s;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.wk-gallery-count:hover { background: rgba(28,28,28,.9); }

/* Thumbnails strip */
.wk-gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
    scrollbar-color: var(--wk-border) transparent;
}
.wk-gallery-thumb {
    flex-shrink: 0;
    width: 80px; height: 60px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .2s;
    opacity: .5;
}
.wk-gallery-thumb.active,
.wk-gallery-thumb:hover {
    border-color: var(--wk-gold);
    opacity: 1;
}
.wk-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Lightbox ────────────────────────────────────────────── */
.wk-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.94);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}
.wk-lightbox.open { opacity: 1; pointer-events: all; }
.wk-lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    object-fit: contain;
}
.wk-lightbox__close,
.wk-lightbox__prev,
.wk-lightbox__next {
    position: absolute;
    background: rgba(255,255,255,.1);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 22px;
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all .2s;
    backdrop-filter: blur(4px);
}
.wk-lightbox__close { top: 24px; right: 24px; }
.wk-lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.wk-lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }
.wk-lightbox__close:hover,
.wk-lightbox__prev:hover,
.wk-lightbox__next:hover { background: rgba(255,255,255,.25); }
.wk-lightbox__counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.6);
    font-family: var(--wk-font-b);
    font-size: 14px;
    font-weight: 500;
}

/* ── Property Header ─────────────────────────────────────── */
.wk-prop__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-top: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--wk-border);
}
.wk-prop__title {
    font-family: var(--wk-font-h);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--wk-navy);
    margin: 0 0 6px;
    line-height: 1.2;
}
.wk-prop__location {
    color: var(--wk-olive);
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ── Prices ──────────────────────────────────────────────── */
.wk-prop__prices { text-align: right; flex-shrink: 0; }
.wk-prop__price-main {
    font-family: var(--wk-font-h);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--wk-gold);
    font-weight: 700;
    line-height: 1.2;
}
.wk-prop__price-alt {
    font-size: 14px;
    color: var(--wk-olive);
    margin-top: 4px;
}

/* ── Tags row ────────────────────────────────────────────── */
.wk-prop__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}
.wk-ptag {
    background: var(--wk-cream);
    border: 1px solid var(--wk-border);
    padding: 5px 14px;
    border-radius: 8px;
    font-family: var(--wk-font-b);
    font-size: 12px;
    font-weight: 600;
    color: var(--wk-olive);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.wk-ptag--gold {
    background: var(--wk-gold-bg);
    border-color: var(--wk-gold-l);
    color: var(--wk-gold);
}

/* ── Specs row ───────────────────────────────────────────── */
.wk-prop__specs {
    display: flex;
    gap: 28px;
    margin-top: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--wk-border);
    flex-wrap: wrap;
}
.wk-pspec { text-align: center; min-width: 70px; }
.wk-pspec strong {
    display: block;
    font-family: var(--wk-font-h);
    font-size: 20px;
    color: var(--wk-navy);
    font-weight: 700;
}
.wk-pspec small {
    font-size: 11px;
    color: var(--wk-olive);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 500;
}

/* ── Content sections ────────────────────────────────────── */
.wk-prop__section { margin-top: 36px; }
.wk-prop__section h2 {
    font-family: var(--wk-font-h);
    font-size: 18px;
    color: var(--wk-navy);
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--wk-gold-l);
}
.wk-prop__desc {
    font-family: var(--wk-font-b);
    font-size: 15px;
    line-height: 1.8;
    color: var(--wk-olive);
}
.wk-prop__video {
    border-radius: 10px;
    overflow: hidden;
}

/* ── Amenidades & Legal docs ─────────────────────────────── */
.wk-prop__amenidades {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.wk-am {
    background: var(--wk-gold-bg);
    color: var(--wk-gold);
    padding: 6px 16px;
    border-radius: 12px;
    font-family: var(--wk-font-b);
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all .2s;
}
.wk-am:hover { background: var(--wk-gold-l); color: var(--wk-navy); }
.wk-am--legal {
    background: var(--wk-cream);
    color: var(--wk-olive);
    border: 1px solid var(--wk-border);
}
.wk-am--legal:hover { background: var(--wk-cream); border-color: var(--wk-olive); }

/* ── Sidebar ─────────────────────────────────────────────── */
.wk-prop__sidebar { position: sticky; top: 100px; }
.wk-prop__sidebar-card {
    background: var(--wk-white);
    border: 1px solid var(--wk-border);
    border-radius: 10px;
    padding: 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.wk-prop__sidebar-card h3 {
    font-family: var(--wk-font-h);
    font-size: 17px;
    color: var(--wk-navy);
    margin: 0 0 6px;
    font-weight: 700;
}
.wk-prop__sidebar-sub {
    font-size: 13px;
    color: var(--wk-olive);
    margin: 0 0 20px;
    line-height: 1.5;
}
.wk-prop__sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px;
    border-radius: 10px;
    font-family: var(--wk-font-b);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: all .2s;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.wk-prop__sidebar-btn:hover { transform: translateY(-1px); }
.wk-prop__sidebar-btn--wa {
    background: var(--wk-gold);
    color: var(--wk-navy) !important;
}
.wk-prop__sidebar-btn--wa:hover {
    background: var(--wk-gold-l);
    box-shadow: 0 6px 20px rgba(191,145,59,.3);
    color: var(--wk-navy) !important;
}
.wk-prop__sidebar-btn--email {
    background: var(--wk-cream);
    color: var(--wk-olive) !important;
    border: 1px solid var(--wk-border);
}
.wk-prop__sidebar-btn--email:hover {
    background: var(--wk-border);
    color: var(--wk-navy) !important;
}

/* ── Tags row: allow share button inline ─────────────────── */
.wk-prop__tags { flex-wrap: wrap; }

/* Gallery col container */
.wk-prop__gallery-col { min-width: 0; overflow: hidden; }

/* Back link */
.wk-prop__back { max-width: 1280px; margin: 32px auto 40px; padding: 0 20px; }
.wk-prop__back-link {
    color: var(--wk-gold); font-size: 14px; text-decoration: none;
    font-weight: 600; transition: color .2s;
    display: inline-flex; align-items: center; gap: 4px;
}
.wk-prop__back-link:hover { color: var(--wk-gold-l); }

/* Flatten contact form inside sidebar */
.wk-prop__sidebar-card .wk-contact-form {
    background: transparent; padding: 0; border: none; border-radius: 0;
}

/* ── Single property responsive ──────────────────────────── */
@media (max-width: 1060px) {
    .wk-prop__layout { grid-template-columns: 1fr; }
    .wk-prop__sidebar { position: static; }
    .wk-gallery-main__img { height: 340px; }
    .wk-prop__header { flex-direction: column; }
    .wk-prop__prices { text-align: left; }
}
@media (max-width: 600px) {
    .wk-gallery-main__img { height: 260px; }
    .wk-prop__specs { gap: 16px; }
    .wk-pspec strong { font-size: 16px; }
}

/* Mobile nav fix */
.wk-header__nav.open { z-index: 10000; }
@media (max-width: 480px) {
    .wk-floating-wa { width: 50px; height: 50px; bottom: 16px; left: 16px; }
    .wk-back-top { width: 38px; height: 38px; bottom: 16px; right: 16px; }
}
/* Footer brand span full on tablet */
@media (max-width: 1060px) {
    .wk-footer__grid { grid-template-columns: 1fr 1fr; }
    .wk-footer__brand { grid-column: 1 / -1; }
}
/* Tablet search fix */
@media (max-width: 1060px) and (min-width: 769px) {
    .wk-hero-search .wk-search-fields { grid-template-columns: 1fr 1fr 1fr !important; }
    .wk-hero-search .wk-field-submit { grid-column: 1 / -1; }
}
/* Gallery thumbnail scrollbar */
.wk-gallery-thumbs { scroll-snap-type: x mandatory; }
.wk-gallery-thumb { scroll-snap-align: start; }
.wk-gallery-thumbs::-webkit-scrollbar { height: 4px; }
.wk-gallery-thumbs::-webkit-scrollbar-thumb { background: var(--wk-border); border-radius: 4px; }


/* Logo size is controlled by .wk-header__logo img (lines 54-55) */

