:root {
    --bg: #f7f7f8;
    --surface: #ffffff;
    --surface-muted: #f3f4f6;
    --text: #111827;
    --text-soft: #4b5563;
    --line: #e5e7eb;
    --brand: #ff385c;
    --brand-strong: #e31c5f;
    --dark: #0f172a;
    --success: #1f8f5f;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    --shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.05);
    --radius: 22px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    top: -60px;
    left: 20px;
    z-index: 3000;
    background: var(--dark);
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
}

.skip-link:focus {
    top: 20px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.95);
}

.site-nav {
    max-width: var(--container);
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.site-logo {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}

.site-menu {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.92rem;
}

.site-menu a:hover,
.site-menu a[aria-current="page"] {
    color: var(--brand);
}

.site-menu a[href="destinos.html"],
.site-menu a[href="investments.html"],
.site-menu a[href="faq.html"] {
    display: none;
}

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

.section {
    padding: 84px 0;
}

.section-sm {
    padding: 56px 0;
}

.hero,
.page-hero {
    padding: 92px 0 74px;
}

.hero {
    min-height: min(88vh, 820px);
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.55)),
        url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?auto=format&fit=crop&w=2000&q=80') center center/cover no-repeat;
    color: #fff;
}

.hero .container.hero-content {
    width: 100%;
}

.page-hero {
    background: linear-gradient(135deg, #ffffff, #f5f0f2);
    border-bottom: 1px solid var(--line);
}

.hero-content,
.page-hero-content {
    max-width: 760px;
}

.hero-content {
    max-width: 700px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-hero .eyebrow {
    background: rgba(255, 56, 92, 0.08);
    border-color: rgba(255, 56, 92, 0.14);
    color: var(--brand);
}

.hero h1,
.page-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.hero h1 {
    max-width: 10ch;
}

.hero p,
.page-hero p {
    margin: 0;
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero p {
    max-width: 35ch;
}

.page-hero p {
    color: var(--text-soft);
}

.page-hero-inline-a {
    color: var(--brand);
    font-weight: 700;
    text-decoration: none;
}

.page-hero-inline-a:hover {
    text-decoration: underline;
}

.page-hero--booking-tight {
    padding: 48px 0 32px;
}

.section--booking-embed {
    padding-top: 8px;
}

.hero-search-alt {
    margin: 12px 0 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
    line-height: 1.55;
}

.hero-search-alt a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hero-search-alt a:hover {
    opacity: 0.92;
}

.hero-actions,
.button-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-badges,
.badge-row,
.pill-nav {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-badges li,
.badge-row li,
.pill-nav a,
.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-badges li {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 14px 22px;
    border-radius: 14px;
    border: 1px solid transparent;
    background: var(--brand);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    background: var(--brand-strong);
}

.btn-secondary {
    background: var(--surface);
    color: var(--text);
    border-color: var(--line);
}

.btn-secondary:hover {
    background: #fff;
}

.btn-dark {
    background: var(--dark);
}

.intro {
    max-width: 760px;
    margin-bottom: 36px;
}

.section-heading {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-copy {
    margin: 0;
    color: var(--text-soft);
    font-size: 1.04rem;
}

.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 24px;
}

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

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.stat-card,
.contact-card,
.faq-item,
.feature-card,
.destination-card,
.legal-card,
.info-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.card,
.feature-card,
.destination-card,
.legal-card,
.info-card,
.contact-card {
    padding: 28px;
}

.card h2,
.card h3,
.feature-card h2,
.feature-card h3,
.destination-card h2,
.destination-card h3,
.legal-card h2,
.info-card h2,
.contact-card h2,
.contact-card h3 {
    margin: 0 0 12px;
    font-size: 1.22rem;
}

.card p,
.feature-card p,
.destination-card p,
.legal-card p,
.info-card p,
.contact-card p {
    margin: 0;
    color: var(--text-soft);
}

.card-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--brand);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
}

.photo-card {
    overflow: hidden;
    border-radius: calc(var(--radius) + 2px);
    box-shadow: var(--shadow);
}

.photo-card img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.stat-card {
    padding: 24px;
    text-align: center;
}

.stat-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 2rem;
    color: var(--brand);
    line-height: 1;
}

.stat-card span {
    color: var(--text-soft);
    font-size: 0.92rem;
    font-weight: 600;
}

.page-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.page-link-card {
    padding: 32px;
    background: linear-gradient(180deg, #fff, #faf8f8);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-link-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.page-link-card h2 {
    margin: 0 0 12px;
}

.page-link-card p {
    margin: 0 0 18px;
    color: var(--text-soft);
}

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

.villa-content {
    padding: 20px 22px 24px;
}

.villa-meta {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.villa-meta,
.villa-specs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--text-soft);
    font-size: 0.94rem;
}

.villa-title {
    margin: 10px 0 8px;
    font-size: 1.28rem;
    line-height: 1.2;
}

.villa-price {
    margin-top: 16px;
    font-weight: 800;
    color: var(--text);
    font-size: 1.05rem;
}

.filter-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.filter-btn {
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--text);
    font-weight: 700;
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
}

.destination-layout {
    display: grid;
    gap: 28px;
}

.destination-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
}

.destination-block > div:not(.destination-map) {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.destination-block img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    border-radius: 20px;
}

.destination-block h2 {
    margin: 0 0 14px;
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.destination-block p {
    margin: 0;
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 58ch;
}

.destination-points {
    margin: 18px 0 0;
    padding-left: 18px;
    color: var(--text-soft);
}

.destination-points li + li {
    margin-top: 10px;
}

.faq-list {
    display: grid;
    gap: 18px;
}

.faq-item {
    padding: 24px 26px;
}

.faq-item h2,
.faq-item h3 {
    margin: 0 0 10px;
    font-size: 1.08rem;
}

.faq-item p {
    margin: 0;
    color: var(--text-soft);
}

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

.contact-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 14px;
}

.contact-list li {
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface-muted);
}

.iframe-shell {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: var(--surface);
}

#booking-embed {
    scroll-margin-top: 96px;
}

.embed-panel {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: var(--surface);
}

.embed-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 16px 22px;
    background: linear-gradient(135deg, rgba(255, 56, 92, 0.07), #ffffff);
    border-bottom: 1px solid var(--line);
}

.embed-panel-title {
    font-weight: 800;
    font-size: 1.06rem;
    letter-spacing: -0.02em;
    color: var(--text);
}

.embed-panel-meta {
    font-size: 0.88rem;
    color: var(--text-soft);
    margin: 4px 0 0;
    font-weight: 500;
}

.embed-panel-meta a {
    color: var(--brand);
    font-weight: 600;
    text-decoration: none;
}

.embed-panel-meta a:hover {
    text-decoration: underline;
}

.embed-panel-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.embed-badge {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(31, 143, 95, 0.12);
    color: var(--success);
}

.embed-panel .iframe-shell {
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.embed-panel-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px 18px;
    padding: 12px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--surface-muted);
    font-size: 0.88rem;
}

.booking-embed-full {
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}

.booking-embed-full:hover {
    text-decoration: underline;
}

.embed-panel-toolbar-hint {
    margin: 0;
    flex: 1 1 220px;
    line-height: 1.45;
    color: var(--text-soft);
    font-weight: 500;
}

.booking-engine-body {
    padding: 8px 22px 24px;
}

.booking-engine-lead {
    margin: 0 0 20px;
    font-size: 0.96rem;
    line-height: 1.55;
    color: var(--text-soft);
    max-width: 52ch;
}

.booking-engine-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.booking-engine-primary {
    min-height: 52px;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 1rem;
}

.booking-engine-secondary {
    min-height: 52px;
}

.booking-engine-fineprint {
    margin: 14px 0 0;
    font-size: 0.82rem;
    color: var(--text-soft);
}

.booking-embed-frame {
    position: relative;
    min-height: 320px;
    background: #fff;
    -webkit-overflow-scrolling: touch;
}

.booking-embed-loading {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f3f4f6 0%, #e8eaed 100%);
}

.booking-embed-loading[hidden] {
    display: none;
}

.booking-embed-loading-text {
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--text-soft);
    animation: booking-embed-pulse 1.1s ease-in-out infinite;
}

@keyframes booking-embed-pulse {
    0%,
    100% {
        opacity: 0.45;
    }

    50% {
        opacity: 1;
    }
}

.booking-iframe {
    width: 100%;
    height: min(920px, calc(100vh - 200px));
    min-height: 560px;
    border: 0;
    display: block;
    vertical-align: top;
    position: relative;
    z-index: 1;
    background: #fff;
}

.cta-banner {
    padding: 34px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 34%),
        linear-gradient(135deg, #111827, #1f2937 58%, #7c2d45 100%);
    color: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-banner h2,
.cta-banner h3 {
    margin: 0 0 12px;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.cta-banner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.site-footer {
    padding: 48px 0 40px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 28%),
        #0f172a;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: start;
}

.footer-grid p {
    margin: 0;
    color: var(--text-soft);
}

.footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-soft);
    font-weight: 600;
}

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

.legal-copy h2 {
    margin-top: 0;
}

.notice {
    padding: 18px 20px;
    border-left: 4px solid var(--brand);
    background: #fff7fa;
    border-radius: 14px;
    color: var(--text-soft);
}

.booking-url-note {
    margin-top: 20px;
}

/* —— Vacation rental: trust, steps, destinations, listing cards, footer —— */
.trust-strip {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
}

.trust-strip-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--text-soft);
}

.trust-item strong {
    display: block;
    color: var(--text);
    font-size: 0.96rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.trust-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 56, 92, 0.09);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    line-height: 1;
}

.section-intro {
    max-width: 640px;
    margin-bottom: 36px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.step-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-soft);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 56, 92, 0.1);
    color: var(--brand);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.step-card h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
}

.step-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.98rem;
}

.step-card p a {
    color: var(--brand);
    font-weight: 600;
    text-decoration: none;
}

.step-card p a:hover {
    text-decoration: underline;
}

.dest-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.dest-showcase-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dest-showcase-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.dest-showcase-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.dest-showcase-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.dest-showcase-body {
    padding: 22px 22px 24px;
}

.dest-showcase-body h3 {
    margin: 0 0 8px;
    font-size: 1.2rem;
}

.dest-showcase-body p {
    margin: 0 0 14px;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.dest-showcase-link {
    font-weight: 700;
    color: var(--brand);
    font-size: 0.95rem;
}

.dest-showcase-link:hover {
    text-decoration: underline;
}

.nav-book {
    background: var(--brand) !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 999px !important;
}

.nav-book:hover {
    background: var(--brand-strong) !important;
    color: #fff !important;
}

.site-menu a.nav-book[aria-current="page"] {
    color: #fff !important;
}

.villa-card {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfd 100%);
}

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

.villa-card-media {
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.villa-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.96);
    padding: 6px 11px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.villa-card-media img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 15px 15px 0 0;
}

.villa-link-book {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-weight: 700;
    font-size: 0.94rem;
    color: var(--brand);
    text-decoration: none;
}

.villa-link-book:hover {
    text-decoration: underline;
}

.footer-rich {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 20px;
    align-items: start;
}

.footer-logo {
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    font-size: 1.12rem;
    letter-spacing: -0.02em;
}

.footer-tagline {
    margin: 10px 0 0;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.55;
    max-width: 300px;
}

.footer-heading {
    margin: 0 0 14px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.94rem;
}

.footer-list a:hover {
    color: #fff;
}

.footer-bottom {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.58);
}

.footer-bottom p {
    margin: 0;
}

/* Hero date search, guest themes, destination maps */
.hero-search {
    margin-top: 28px;
    max-width: 720px;
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.hero-search-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.hero-search-field span {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-soft);
    margin-bottom: 6px;
}

.hero-search-field input {
    width: 100%;
    min-height: 48px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    font: inherit;
    color: var(--text);
    background: #fff;
}

.hero-search-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    margin-bottom: 4px;
}

.hero-search-actions--single {
    grid-template-columns: 1fr;
}

.hero-search-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    text-decoration: none;
}

.hero-search-submit {
    width: 100%;
}

.hero-search-hint {
    margin: 12px 0 0;
    font-size: 0.82rem;
    color: var(--text-soft);
    line-height: 1.45;
}

.reviews-band {
    padding: 56px 0;
    background: linear-gradient(180deg, #fff 0%, var(--surface-muted) 100%);
    border-bottom: 1px solid var(--line);
}

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

.reviews-band h2 {
    margin: 0 0 8px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: -0.03em;
}

.reviews-band .reviews-lead {
    margin: 0 0 24px;
    color: var(--text-soft);
    max-width: 720px;
    line-height: 1.6;
}

.reviews-band .reviews-lead a {
    color: var(--brand);
    font-weight: 700;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.review-theme-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow-soft);
}

.review-theme-card h3 {
    margin: 0 0 10px;
    font-size: 1.06rem;
}

.review-theme-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.55;
}

.reviews-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.reviews-note {
    font-size: 0.85rem;
    color: var(--text-soft);
    flex: 1 1 220px;
    line-height: 1.45;
}

.destination-map {
    grid-column: 1 / -1;
    margin-top: 12px;
}

.map-caption {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--text);
}

.map-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.map-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding: 14px 18px;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
    border-bottom: 1px solid var(--line);
}

.map-card-title {
    font-weight: 800;
    font-size: 0.98rem;
    color: var(--text);
    letter-spacing: -0.02em;
}

.map-card-external {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}

.map-card-external:hover {
    text-decoration: underline;
}

.map-shell {
    border-radius: 0;
    overflow: hidden;
    border: none;
    height: min(300px, 48vw);
    min-height: 220px;
    max-height: 380px;
    background: #e8eaed;
}

.map-card .map-shell {
    border-top: 1px solid var(--line);
}

.map-shell iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-card .map-note {
    font-size: 0.86rem;
    color: var(--text-soft);
    margin: 0;
    padding: 12px 18px 16px;
    line-height: 1.5;
    border-top: 1px solid var(--line);
    background: var(--surface-muted);
}

@media (max-width: 1100px) {
    .grid-4,
    .grid-3,
    .listing-grid,
    .page-links,
    .stat-grid,
    .steps-grid,
    .dest-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .trust-strip-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-rich {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split,
    .destination-block,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        background:
            linear-gradient(180deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.6)),
            url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=1200&q=80') center center/cover no-repeat;
    }

    .container,
    .site-nav {
        padding-left: 18px;
        padding-right: 18px;
    }

    .section {
        padding: 56px 0;
    }

    .section-sm {
        padding: 44px 0;
    }

    .hero,
    .page-hero {
        padding: 64px 0 46px;
    }

    .hero-content,
    .page-hero-content,
    .hero .container.hero-content {
        max-width: 100%;
    }

    .hero h1,
    .page-hero h1 {
        margin-bottom: 14px;
        font-size: clamp(1.95rem, 10vw, 2.65rem);
        line-height: 1.1;
    }

    .hero p,
    .page-hero p,
    .section-copy {
        font-size: 0.98rem;
        line-height: 1.58;
    }

    .hero p,
    .page-hero p {
        max-width: 34ch;
    }

    .eyebrow {
        margin-bottom: 14px;
        font-size: 0.72rem;
        padding: 8px 12px;
        letter-spacing: 0.06em;
    }

    .hero-actions,
    .button-row {
        flex-direction: column;
        align-items: stretch;
    }

    .booking-engine-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        min-height: 52px;
        padding: 14px 18px;
        border-radius: 12px;
    }

    .card,
    .feature-card,
    .destination-card,
    .legal-card,
    .info-card,
    .contact-card,
    .page-link-card,
    .stat-card,
    .faq-item,
    .cta-banner,
    .villa-content {
        padding: 20px;
    }

    .grid-4,
    .grid-3,
    .grid-2,
    .listing-grid,
    .page-links,
    .stat-grid {
        grid-template-columns: 1fr;
    }

    .destination-block {
        padding: 20px;
        gap: 20px;
        border-radius: 22px;
    }

    .destination-block img,
    .photo-card img {
        min-height: 260px;
    }

    .booking-iframe {
        height: min(1020px, calc(100vh - 160px));
        min-height: 560px;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .trust-strip-inner {
        grid-template-columns: 1fr;
    }

    .steps-grid,
    .dest-showcase-grid {
        grid-template-columns: 1fr;
    }

    .footer-rich {
        grid-template-columns: 1fr;
    }

    .hero-search {
        margin-top: 22px;
        padding: 18px 16px 16px;
        border-radius: 16px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
    }

    .hero-search-fields {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 12px;
    }

    .hero-search-field span {
        font-size: 0.74rem;
    }

    .hero-search-field input {
        min-height: 52px;
        font-size: 16px;
    }

    .hero-search-actions {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-badges {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .hero-badges li {
        width: auto;
        min-height: 54px;
        padding: 10px 8px;
        justify-content: center;
        text-align: center;
        line-height: 1.35;
    }

    .trust-strip {
        padding: 18px 0;
    }

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

    .reviews-actions .btn {
        width: 100%;
    }

    .trust-strip-inner {
        gap: 12px;
    }

    .trust-item {
        gap: 12px;
        padding: 14px 16px;
        background: var(--surface-muted);
        border: 1px solid var(--line);
        border-radius: 16px;
    }

    .trust-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        font-size: 1rem;
    }

    .filter-bar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .filter-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .villa-card {
        border-radius: 18px;
    }

    .villa-card-media img {
        height: 240px;
    }

    .embed-panel-head {
        padding: 14px 16px;
    }

    .booking-engine-body {
        padding: 6px 16px 18px;
    }

    .booking-engine-lead {
        margin-bottom: 16px;
        font-size: 0.93rem;
    }

    .cta-banner {
        border-radius: 22px;
    }

    .footer-rich {
        gap: 24px;
    }

    .footer-tagline {
        max-width: none;
    }

    .intro,
    .section-intro {
        margin-bottom: 24px;
    }

    .page-links {
        gap: 16px;
    }

    .destination-block {
        padding: 18px;
        gap: 16px;
    }

    .destination-points {
        margin-top: 14px;
        padding-left: 16px;
    }

    .destination-map {
        display: none;
    }

    .villa-meta {
        font-size: 0.75rem;
        font-weight: 800;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .villa-specs {
        font-size: 0.9rem;
        line-height: 1.45;
    }

    .villa-title,
    .page-link-card h2 {
        font-size: 1.14rem;
    }

    .villa-price {
        margin-top: 12px;
        font-size: 1.04rem;
    }

    .villa-link-book {
        width: 100%;
        justify-content: center;
        margin-top: 16px;
        min-height: 48px;
        padding: 12px 14px;
        border: 1px solid rgba(255, 56, 92, 0.2);
        border-radius: 12px;
        background: rgba(255, 56, 92, 0.06);
    }

    .villa-link-book:hover {
        text-decoration: none;
        background: rgba(255, 56, 92, 0.1);
    }

    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        background:
            linear-gradient(180deg, rgba(15, 23, 42, 0.76), rgba(15, 23, 42, 0.62)),
            url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=900&q=80') 60% center/cover no-repeat;
    }

    .container,
    .site-nav {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section,
    .section-sm {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .hero,
    .page-hero {
        padding: 54px 0 40px;
    }

    .site-logo {
        font-size: 0.9rem;
    }

    .hero-badges,
    .badge-row,
    .pill-nav,
    .filter-bar {
        gap: 10px;
    }

    .hero-badges li,
    .badge-row li,
    .pill-nav a,
    .pill,
    .filter-btn {
        width: 100%;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(1.82rem, 11vw, 2.3rem);
    }

    .hero p,
    .page-hero p,
    .section-copy {
        font-size: 0.95rem;
    }

    .card,
    .feature-card,
    .destination-card,
    .legal-card,
    .info-card,
    .contact-card,
    .page-link-card,
    .stat-card,
    .faq-item,
    .cta-banner,
    .destination-block,
    .villa-content {
        padding: 18px;
    }

    .hero-search {
        padding: 16px 14px 14px;
        border-radius: 14px;
    }

    .hero-badges {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hero-badges li {
        min-height: 46px;
        padding: 10px 12px;
    }

    .filter-bar {
        grid-template-columns: 1fr 1fr;
    }

    .page-hero-content,
    .hero-content {
        max-width: 100%;
    }

    .page-link-card h2,
    .villa-title {
        font-size: 1.08rem;
    }

    .destination-block img,
    .photo-card img,
    .villa-card-media img {
        min-height: 210px;
        height: 210px;
    }

    .booking-iframe {
        height: min(1120px, calc(100vh - 120px));
        min-height: 520px;
    }
}
