@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&display=swap');

:root {
    --bg: #0a0d11;
    --surface: #161b21;
    --surface-muted: #1e242c;
    --text: #f5f7fa;
    --text-soft: #a7b0bc;
    --line: rgba(255, 255, 255, 0.1);
    --brand: #2a221d;
    --brand-strong: #1a1512;
    --brand-deep: #24151c;
    --brand-deeper: #120d12;
    --dark: #0d1117;
    --success: #1f8f5f;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.28);
    --radius: 24px;
    --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;
    letter-spacing: -0.01em;
}

body.home-embed-page {
    background: var(--bg);
}

.home-embed-main {
    width: 100%;
    min-height: 100vh;
    height: 100vh;
}

.home-embed-frame {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    border: 0;
    display: block;
    background: var(--bg);
}

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(10, 13, 17, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.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-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--text);
    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);
}

.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;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 22%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.06), transparent 20%),
        linear-gradient(135deg, #090b0e 0%, #13161a 28%, #1d2127 58%, #2a3038 100%);
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 7, 10, 0.1), rgba(5, 7, 10, 0.34)),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.025), transparent 54%);
    pointer-events: none;
}

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

.hero-layout {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-stage {
    display: grid;
    gap: 14px;
    width: 100%;
    max-width: 1180px;
}

.hero-stage-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.hero-stage-kicker {
    display: inline-flex;
    margin-bottom: 8px;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.hero-stage-head h2 {
    margin: 0;
    max-width: 20ch;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero-stage-link {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.hero-stage-link:hover {
    text-decoration: underline;
}

.hero-stage-shell {
    position: relative;
    width: 100%;
    border-radius: 30px;
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 80px rgba(4, 10, 26, 0.42);
    backdrop-filter: blur(14px);
}

.hero-stage-toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 18, 31, 0.82);
}

.hero-stage-toolbar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}

.hero-stage-toolbar strong {
    margin-left: 6px;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.74);
}

.hero-stage-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.09) 100%, rgba(255, 255, 255, 0.03) 100%);
    border-bottom: 1px solid rgba(24, 24, 24, 0.12);
}

.hero-stage-panel-copy {
    display: grid;
    gap: 3px;
}

.hero-stage-panel-copy strong {
    font-size: 0.98rem;
    letter-spacing: -0.02em;
}

.hero-stage-panel-copy span {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.72);
}

.hero-stage-panel .btn-secondary {
    min-height: 44px;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.hero-stage-panel .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.22);
}

.hero-booking-iframe {
    width: 100%;
    height: min(840px, calc(100vh - 140px));
    min-height: 760px;
    background: #000;
}

.page-hero {
    background: linear-gradient(135deg, #0d1117 0%, #151b22 52%, #202733 100%);
    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.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-hero .eyebrow {
    background: rgba(26, 21, 18, 0.12);
    border-color: rgba(26, 21, 18, 0.22);
    color: var(--brand);
}

.hero h1,
.page-hero h1 {
    margin: 0 0 18px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.03em;
}

.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.16);
    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: 16px;
    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: rgba(255, 255, 255, 0.08);
    color: var(--text);
    border-color: var(--line);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
}

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

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

.section-heading {
    margin: 0 0 16px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    letter-spacing: -0.03em;
}

.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-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.22rem;
    letter-spacing: -0.02em;
}

.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, #ffffff, #fbf6f2);
    border: 1px solid var(--line);
    border-radius: 28px;
    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;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.45rem;
    line-height: 1.05;
}

.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-family: 'Cormorant Garamond', Georgia, serif;
    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: rgba(255, 255, 255, 0.06);
    color: var(--text);
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--surface-muted);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.16);
}

.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;
    align-items: start;
}

.contact-panel {
    display: grid;
    gap: 22px;
    padding: 34px;
    background:
        radial-gradient(circle at top right, rgba(26, 21, 18, 0.1), transparent 36%),
        linear-gradient(180deg, #ffffff 0%, #fcfaf8 100%);
}

.contact-stack {
    display: grid;
    gap: 22px;
}

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

.contact-channel-card {
    padding: 22px 22px 24px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #faf7f4 100%);
    box-shadow: var(--shadow-soft);
}

.contact-channel-card h2,
.contact-channel-card h3 {
    margin: 0 0 10px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.18rem;
    letter-spacing: -0.02em;
}

.contact-channel-card p {
    margin: 0;
    color: var(--text-soft);
}

.contact-channel-card a,
.contact-list a {
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
}

.contact-channel-card a:hover,
.contact-list a:hover {
    color: var(--brand);
}

.contact-note-card {
    padding: 30px;
}

.contact-support-strip {
    display: grid;
    gap: 14px;
}

.contact-support-item {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(26, 21, 18, 0.14);
    background: rgba(26, 21, 18, 0.05);
}

.contact-support-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.96rem;
}

.contact-support-item span {
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.5;
}

.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(26, 21, 18, 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-hero {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 36%),
        linear-gradient(135deg, #111827, #1f2937 62%, #7c2d45 100%);
    color: #fff;
}

.booking-hero .eyebrow {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.booking-hero h1,
.booking-hero p {
    color: #fff;
}

.booking-portal {
    display: grid;
    gap: 24px;
}

.booking-portal-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    align-items: start;
}

.booking-side-panel {
    display: grid;
    gap: 20px;
}

.booking-side-card {
    padding: 28px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    box-shadow: var(--shadow-soft);
}

.booking-side-card h2 {
    margin: 0 0 12px;
    font-size: 1.42rem;
    line-height: 1.15;
}

.booking-side-card p {
    margin: 0;
    color: var(--text-soft);
}

.booking-selection-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.booking-selection-item {
    padding: 16px 16px 18px;
    border-radius: 18px;
    background: var(--surface-muted);
    border: 1px solid var(--line);
}

.booking-selection-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.booking-selection-item strong {
    display: block;
    font-size: 1rem;
    line-height: 1.3;
    color: var(--text);
}

.booking-selection-status {
    margin-top: 18px !important;
    font-size: 0.94rem;
    line-height: 1.6;
}

.booking-steps-list {
    margin: 20px 0 0;
    padding-left: 20px;
    color: var(--text-soft);
    display: grid;
    gap: 12px;
}

.booking-experience-shell {
    display: grid;
    gap: 18px;
}

.booking-experience-panel {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 32%),
        #0f172a;
    color: #fff;
}

.booking-experience-head {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.booking-experience-panel .embed-panel-title,
.booking-experience-panel .embed-panel-meta {
    color: #fff;
}

.booking-experience-panel .embed-panel-meta {
    color: rgba(255, 255, 255, 0.72);
}

.booking-experience-panel .embed-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.booking-experience-body {
    padding: 22px;
}

.booking-engine-preview {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    margin-bottom: 20px;
}

.booking-preview-topbar {
    display: flex;
    gap: 8px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.booking-preview-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.booking-preview-frame {
    padding: 18px;
}

.booking-preview-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: end;
    padding: 22px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
}

.booking-preview-kicker {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.booking-preview-copy strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.booking-preview-copy .booking-engine-lead {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    max-width: 48ch;
}

.booking-preview-summary {
    display: grid;
    gap: 12px;
    min-width: 180px;
}

.booking-preview-summary div {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
}

.booking-preview-summary span {
    display: block;
    margin-bottom: 6px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.56);
}

.booking-preview-summary strong {
    display: block;
    color: #fff;
    line-height: 1.3;
}

.booking-experience-panel .booking-engine-actions {
    margin-top: 6px;
}

.booking-experience-panel .booking-engine-primary {
    min-height: 54px;
}

.booking-experience-panel .booking-engine-secondary {
    border-color: rgba(26, 21, 18, 0.22);
    background: rgba(255, 255, 255, 0.96);
    color: #222222;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.booking-experience-panel .booking-engine-secondary:hover {
    background: #ffffff;
    border-color: rgba(26, 21, 18, 0.32);
}

.booking-experience-panel .booking-engine-fineprint {
    color: rgba(255, 255, 255, 0.62);
}

.booking-support-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.booking-support-item {
    padding: 18px 18px 20px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    box-shadow: var(--shadow-soft);
}

.booking-support-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 0.98rem;
}

.booking-support-item span {
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.55;
}

.booking-mobile-bar {
    display: none;
}

.booking-mobile-cta {
    width: 100%;
}

.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, #1f1f1f, #333333 56%, #2a221d 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-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    line-height: 1.02;
}

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

.site-footer {
    padding: 48px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(135deg, #0c0f13 0%, #171b20 42%, #232830 100%);
    background-color: #0c0f13;
    background-image:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(135deg, #0c0f13 0%, #171b20 42%, #232830 100%);
    border-image: none;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
    color: #fff;
}

/* Global anthracite theme overrides */
.section,
.section-sm {
    background: transparent;
}

.site-logo,
.site-menu a,
.page-hero h1,
.page-hero h2,
.page-hero h3,
.map-caption,
.map-card-title,
.embed-panel-title,
.booking-selection-item strong,
.trust-item strong,
.contact-channel-card a,
.contact-list a,
.page-link-card h2,
.destination-block h2,
.booking-side-card h2,
.villa-detail-booking-card h2 {
    color: var(--text);
}

.hero-search-head,
.booking-embed-loading-text,
.footer-grid p {
    color: var(--text-soft);
}

.card,
.stat-card,
.contact-card,
.faq-item,
.feature-card,
.destination-card,
.legal-card,
.info-card,
.step-card,
.dest-showcase-card,
.review-theme-card,
.map-card,
.iframe-shell,
.embed-panel,
.booking-side-card,
.booking-support-item,
.booking-selection-item,
.contact-list li,
.villa-gallery-shot {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: var(--line);
    box-shadow: var(--shadow-soft);
}

.page-link-card,
.destination-block,
.contact-channel-card,
.villa-card,
.villa-detail-booking-card {
    background: linear-gradient(180deg, #161b21 0%, #20262f 100%);
    border-color: var(--line);
    box-shadow: var(--shadow-soft);
}

.contact-panel,
.reviews-band,
.trust-strip {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 34%),
        linear-gradient(180deg, #0d1117 0%, #151a21 100%);
    border-color: var(--line);
}

.embed-panel-head,
.map-card-head {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-bottom-color: var(--line);
}

.notice,
.contact-support-item {
    background: rgba(26, 21, 18, 0.09);
    border-color: rgba(26, 21, 18, 0.18);
}

.hero-search {
    background: rgba(18, 22, 28, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-search-field input {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.hero-search-field input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.booking-embed-frame,
.booking-embed-loading,
.booking-iframe {
    background: #10151b;
}

.villa-badge,
.booking-embed-loading-text,
.hero-search-head,
.hero-search-field span,
.hero-search-hint,
.reviews-note,
.map-card .map-note,
.booking-engine-fineprint,
.embed-panel-meta,
.booking-side-card p,
.booking-support-item span,
.booking-steps-list,
.booking-selection-label,
.destination-block p,
.destination-points,
.faq-item p,
.contact-channel-card p,
.contact-support-item span,
.section-copy,
.card p,
.feature-card p,
.destination-card p,
.legal-card p,
.info-card p,
.contact-card p,
.stat-card span,
.step-card p,
.dest-showcase-body p,
.villa-detail-booking-card p,
.villa-detail-meta-list span,
.trust-item,
.page-link-card p,
.page-hero p {
    color: var(--text-soft);
}

.pill-nav a,
.pill,
.badge-row li {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.1);
}

.villa-badge {
    background: rgba(13, 17, 23, 0.88);
    color: var(--text);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.map-shell,
.booking-embed-loading {
    background: linear-gradient(180deg, #11161c 0%, #1b2129 100%);
}

.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: #faf8f5;
    border-radius: 14px;
    color: var(--text-soft);
}

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

/* —— Vacation rental: trust, steps, destinations, listing cards, footer —— */
.trust-strip {
    background: rgba(255, 255, 255, 0.62);
    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(26, 21, 18, 0.1);
    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(26, 21, 18, 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(--dark) !important;
    color: #fff !important;
    padding: 11px 20px !important;
    border-radius: 999px !important;
    box-shadow: 0 10px 24px rgba(26, 21, 18, 0.18);
}

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

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

.villa-card {
    overflow: hidden;
    border-radius: 20px;
    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%, #fbf6f2 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: 999px;
    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: 280px;
    object-fit: cover;
    display: block;
    border-radius: 19px 19px 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;
    text-underline-offset: 3px;
}

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

.villa-detail-gallery {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 18px;
}

.villa-gallery-shot {
    display: block;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    background: var(--surface);
}

.villa-gallery-shot img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.villa-gallery-shot:hover img {
    transform: scale(1.03);
}

.villa-gallery-shot-featured img {
    min-height: 560px;
}

.villa-detail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-content: start;
}

.villa-detail-gallery-grid img {
    min-height: 280px;
}

.villa-detail-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: start;
}

.villa-detail-main {
    display: grid;
    gap: 24px;
}

.villa-detail-sidebar {
    position: sticky;
    top: 104px;
}

.villa-detail-booking-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #fbf6f2 100%);
    box-shadow: var(--shadow);
}

.villa-detail-booking-card h2 {
    margin: 0 0 10px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    line-height: 1;
}

.villa-detail-booking-card p {
    margin: 0;
    color: var(--text-soft);
}

.villa-detail-meta-list {
    display: grid;
    gap: 12px;
    margin: 22px 0;
}

.villa-detail-meta-list div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.villa-detail-meta-list strong {
    font-size: 0.9rem;
    color: var(--text);
}

.villa-detail-meta-list span {
    font-size: 0.92rem;
    color: var(--text-soft);
    text-align: right;
}

.villa-review-grid .card {
    padding: 24px;
}

.villa-review-grid .card h3 {
    font-size: 1.1rem;
}

.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--premium {
    max-width: 760px;
}

.hero-copy .hero-search {
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-search-head {
    display: grid;
    gap: 4px;
    margin-bottom: 14px;
    color: var(--text);
}

.hero-search-head strong {
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.hero-search-head span {
    color: var(--text-soft);
    font-size: 0.88rem;
}

.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,
    .contact-channel-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;
    }

    .booking-portal-grid,
    .booking-preview-card,
    .booking-support-strip {
        grid-template-columns: 1fr;
    }

    .booking-preview-summary {
        min-width: 0;
    }

    .villa-detail-gallery,
    .villa-detail-layout {
        grid-template-columns: 1fr;
    }

    .villa-detail-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .home-embed-main,
    .home-embed-frame {
        min-height: 100dvh;
        height: 100dvh;
    }

    .hero {
        min-height: auto;
        background:
            radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 22%),
            radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.06), transparent 20%),
            linear-gradient(135deg, #090b0e 0%, #13161a 28%, #1d2127 58%, #2a3038 100%);
    }

    .hero--booking-immersive {
        background:
            radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 22%),
            radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.06), transparent 20%),
            linear-gradient(135deg, #090b0e 0%, #13161a 28%, #1d2127 58%, #2a3038 100%);
        background-color: #090b0e;
    }

    .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,
    .hero-layout {
        max-width: 100%;
    }

    .hero-layout {
        display: block;
    }

    .hero-stage-head,
    .hero-stage-panel {
        align-items: start;
        flex-direction: column;
    }

    .hero-stage-shell {
        border-radius: 22px;
    }

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

    .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;
    }

    .booking-selection-grid {
        grid-template-columns: 1fr;
    }

    .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,
    .contact-channel-grid {
        grid-template-columns: 1fr;
    }

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

    .destination-block img,
    .photo-card img,
    .villa-detail-gallery-grid img,
    .villa-gallery-shot img {
        min-height: 260px;
    }

    .villa-gallery-shot-featured img {
        min-height: 420px;
    }

    .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;
    }

    .villa-detail-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .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;
    }

    .booking-side-card,
    .booking-experience-body {
        padding: 20px;
    }

    .booking-side-card h2 {
        font-size: 1.24rem;
    }

    .booking-preview-frame {
        padding: 14px;
    }

    .booking-preview-card {
        padding: 16px;
        gap: 14px;
    }

    .booking-mobile-bar {
        display: block;
        position: sticky;
        bottom: 12px;
        z-index: 30;
    }

    .booking-mobile-bar .btn {
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    }

    .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(26, 21, 18, 0.2);
        border-radius: 12px;
        background: rgba(26, 21, 18, 0.06);
    }

    .villa-link-book:hover {
        text-decoration: none;
        background: rgba(26, 21, 18, 0.1);
    }

    .villa-detail-booking-card {
        padding: 22px;
    }

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

@media (max-width: 480px) {
    .home-embed-main,
    .home-embed-frame {
        min-height: 100dvh;
        height: 100dvh;
    }

    .hero {
        background:
            radial-gradient(circle at top right, rgba(26, 21, 18, 0.22), transparent 34%),
            linear-gradient(180deg, #0f172a 0%, #18263d 100%);
    }

    .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-stage-head h2 {
        font-size: 1.18rem;
    }

    .hero-stage-toolbar,
    .hero-stage-panel {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero-booking-iframe {
        min-height: 500px;
    }

    .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;
    }

    .villa-detail-gallery-grid {
        grid-template-columns: 1fr;
    }

    .villa-gallery-shot-featured img,
    .villa-detail-gallery-grid img,
    .villa-gallery-shot img {
        min-height: 240px;
    }

    .booking-side-card,
    .booking-experience-body {
        padding: 18px;
    }

    .booking-preview-frame,
    .booking-preview-card {
        padding: 12px;
    }

    .booking-preview-copy strong {
        font-size: 1.08rem;
    }

    .booking-preview-summary div,
    .booking-selection-item {
        padding: 12px 14px;
    }

    .villa-detail-booking-card,
    .villa-review-grid .card {
        padding: 18px;
    }

    .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;
    }
}

.page-link-card,
.destination-block,
.contact-panel,
.contact-channel-card,
.embed-panel-head,
.booking-side-card,
.booking-support-item,
.villa-card,
.villa-detail-booking-card,
.hero-search,
.reviews-band,
.map-card-head {
    background-image: none;
}

.page-link-card,
.destination-block,
.contact-channel-card,
.booking-side-card,
.booking-support-item,
.villa-card,
.villa-detail-booking-card {
    background: linear-gradient(180deg, #161b21 0%, #20262f 100%);
}

.contact-panel,
.trust-strip,
.reviews-band {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 34%),
        linear-gradient(180deg, #0d1117 0%, #151a21 100%);
}

.embed-panel-head,
.map-card-head {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.hero-search {
    background: #161b21;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-search-field input {
    background: rgba(255, 255, 255, 0.06);
}

.villa-badge {
    background: rgba(13, 17, 23, 0.88);
}

.notice {
    background: rgba(26, 21, 18, 0.09);
    color: var(--text-soft);
}

.booking-embed-frame,
.booking-iframe,
.booking-embed-loading,
.map-shell {
    background: linear-gradient(180deg, #11161c 0%, #1b2129 100%);
}

/* Airbnb-inspired global theme */
:root {
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-muted: #f7f7f7;
    --text: #222222;
    --text-soft: #6a6a6a;
    --line: #ebebeb;
    --brand: #2a221d;
    --brand-strong: #1a1512;
    --brand-deep: #171319;
    --brand-deeper: #0f0d12;
    --dark: #222222;
    --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.05);
}

body {
    background: #ffffff;
    color: var(--text);
}

body.home-embed-page,
.home-embed-frame,
.booking-embed-frame,
.booking-iframe {
    background: #ffffff;
}

.site-header {
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(34, 34, 34, 0.08);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.04);
}

.site-logo,
.site-menu a,
.page-hero h1,
.page-hero h2,
.page-hero h3,
.page-link-card h2,
.destination-block h2,
.booking-side-card h2,
.villa-detail-booking-card h2,
.map-card-title,
.embed-panel-title,
.trust-item strong,
.contact-channel-card a,
.contact-list a {
    color: var(--text);
}

.site-menu a:hover,
.site-menu a[aria-current="page"],
.hero-stage-link,
.page-hero-inline-a,
.map-card-external,
.villa-link-book,
.dest-showcase-link,
.embed-panel-meta a,
.contact-channel-card a:hover,
.contact-list a:hover {
    color: var(--brand);
}

.hero,
.hero--booking-immersive,
.booking-hero {
    background:
        radial-gradient(circle at top right, rgba(26, 21, 18, 0.14), transparent 24%),
        radial-gradient(circle at bottom left, rgba(15, 23, 42, 0.04), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #fbfbfb 56%, #f7f7f7 100%);
    color: var(--text);
}

.hero::before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
        radial-gradient(circle at center, rgba(26, 21, 18, 0.04), transparent 54%);
}

.hero p,
.page-hero p,
.hero-stage-kicker,
.hero-stage-panel-copy span,
.hero-search-alt,
.hero-search-head,
.hero-search-field span,
.hero-search-hint,
.section-copy,
.card p,
.feature-card p,
.destination-card p,
.legal-card p,
.info-card p,
.contact-card p,
.stat-card span,
.step-card p,
.dest-showcase-body p,
.destination-block p,
.destination-points,
.faq-item p,
.booking-side-card p,
.booking-support-item span,
.booking-steps-list,
.booking-selection-label,
.villa-detail-booking-card p,
.villa-detail-meta-list span,
.reviews-note,
.map-card .map-note,
.footer-grid p {
    color: var(--text-soft);
}

.hero-stage-shell,
.iframe-shell,
.embed-panel,
.map-card,
.card,
.stat-card,
.contact-card,
.faq-item,
.feature-card,
.destination-card,
.legal-card,
.info-card,
.step-card,
.dest-showcase-card,
.review-theme-card,
.page-link-card,
.destination-block,
.contact-panel,
.contact-channel-card,
.booking-side-card,
.booking-support-item,
.booking-selection-item,
.contact-list li,
.villa-card,
.villa-detail-booking-card,
.villa-gallery-shot,
.hero-search {
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.hero-stage-toolbar,
.hero-stage-panel,
.embed-panel-head,
.map-card-head {
    background: #ffffff;
    border-color: var(--line);
}

.hero-stage-toolbar strong,
.embed-panel-meta,
.booking-engine-fineprint {
    color: var(--text-soft);
}

.hero-stage-toolbar span {
    background: rgba(34, 34, 34, 0.22);
}

.page-hero,
.site-footer,
.trust-strip,
.reviews-band {
    background: #f7f7f7;
}

.site-footer {
    border-top: 1px solid var(--line);
    box-shadow: none;
    color: var(--text);
}

.footer-rich {
    border-bottom: 1px solid var(--line);
}

.footer-logo,
.footer-heading,
.footer-list a,
.footer-bottom {
    color: var(--text);
}

.footer-tagline,
.footer-list a,
.footer-bottom p {
    color: var(--text-soft);
}

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

.btn,
.nav-book {
    background: linear-gradient(135deg, #2a221d 0%, #1a1512 100%);
    color: #fff !important;
    border-color: transparent;
    box-shadow: 0 12px 28px rgba(26, 21, 18, 0.2);
}

.btn:hover,
.nav-book:hover {
    background: linear-gradient(135deg, #3d3530 0%, #1a1512 100%);
}

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

.btn-secondary:hover {
    background: #f7f7f7;
    border-color: rgba(34, 34, 34, 0.12);
}

.eyebrow,
.page-hero .eyebrow,
.card-eyebrow,
.embed-badge,
.trust-icon,
.step-num,
.contact-support-item {
    background: rgba(26, 21, 18, 0.08);
    border-color: rgba(26, 21, 18, 0.12);
    color: var(--brand);
}

.pill-nav a,
.pill,
.badge-row li,
.filter-btn,
.villa-badge {
    background: #ffffff;
    color: var(--text);
    border-color: var(--line);
    box-shadow: none;
}

.filter-btn.active,
.filter-btn:hover {
    background: #222222;
    color: #fff;
    border-color: #222222;
}

.hero-badges li {
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
    border-color: rgba(34, 34, 34, 0.08);
}

.hero-search-field input,
.booking-embed-loading,
.map-shell {
    background: #ffffff;
    border-color: var(--line);
}

.notice {
    background: #faf8f5;
    color: var(--text-soft);
}

/* Shared hospitality shell v2 */
:root {
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-muted: #f7f7f7;
    --text: #222222;
    --text-soft: #6a6a6a;
    --line: #ebebeb;
    --brand: #2a221d;
    --brand-strong: #1a1512;
    --dark: #222222;
    --shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    --shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.06);
    --radius: 24px;
    --container: 1280px;
}

body {
    background: #ffffff;
    color: var(--text);
}

.site-header {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(34, 34, 34, 0.06);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
}

.site-nav {
    max-width: 1440px;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto minmax(64px, 1fr);
    align-items: center;
    gap: 20px;
    padding-top: 18px;
    padding-bottom: 18px;
}

.site-logo,
.hero h1,
.page-hero h1,
.section-heading,
.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,
.page-link-card h2,
.villa-title,
.booking-side-card h2,
.villa-detail-booking-card h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.site-logo {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.site-menu {
    justify-content: center;
    gap: 8px;
}

.site-menu a {
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

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

.site-menu .nav-book {
    background: linear-gradient(135deg, #2a221d 0%, #1a1512 100%) !important;
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(26, 21, 18, 0.18);
}

.site-menu .nav-book:hover {
    background: linear-gradient(135deg, #3d3530 0%, #1a1512 100%) !important;
}

.hero,
.page-hero,
.booking-hero {
    background: #ffffff;
    color: var(--text);
}

.hero::before,
.page-hero::before {
    display: none;
}

.hero,
.page-hero {
    padding-top: 42px;
    padding-bottom: 36px;
}

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

.hero-layout {
    display: block;
}

.hero h1,
.page-hero h1 {
    max-width: 14ch;
    margin-bottom: 12px;
    font-size: clamp(2.6rem, 5.2vw, 4.6rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: var(--text);
}

.hero p,
.page-hero p {
    max-width: 58ch;
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.55;
}

.hero-stage-head h2,
.section-heading,
.booking-side-card h2,
.villa-detail-booking-card h2 {
    color: var(--text);
    letter-spacing: -0.03em;
}

.eyebrow,
.page-hero .eyebrow,
.card-eyebrow,
.embed-badge {
    background: #faf8f5;
    border: 1px solid rgba(26, 21, 18, 0.14);
    color: var(--brand);
}

.airbnb-search-shell {
    display: grid;
    gap: 18px;
    max-width: 980px;
    margin: 0 auto 30px;
}

.airbnb-search-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.airbnb-search-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #f7f7f7;
    color: var(--text-soft);
    font-size: 0.95rem;
    font-weight: 600;
}

.airbnb-search-tab.is-active {
    background: #ffffff;
    color: var(--text);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
}

.airbnb-search-bar {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr auto;
    align-items: center;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.airbnb-search-segment {
    display: grid;
    gap: 4px;
    padding: 10px 20px;
}

.airbnb-search-segment--dates {
    align-content: start;
}

.airbnb-search-segment + .airbnb-search-segment {
    border-left: 1px solid var(--line);
}

.airbnb-search-label {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text);
}

.airbnb-search-value {
    font-size: 0.95rem;
    color: var(--text-soft);
}

.airbnb-search-input {
    width: 100%;
    min-width: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: 0.95rem;
    line-height: 1.4;
    outline: none;
    appearance: none;
}

.airbnb-search-input::placeholder {
    color: var(--text-soft);
}

.airbnb-search-select {
    cursor: pointer;
    color: var(--text-soft);
}

.airbnb-search-select:not([value=""]),
.airbnb-search-input[type="date"]:valid {
    color: var(--text);
}

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

.airbnb-search-date-grid .airbnb-search-input {
    min-height: 28px;
}

.airbnb-search-bar button.airbnb-search-go {
    border: none;
    cursor: pointer;
    font: inherit;
}

.airbnb-search-go {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a221d 0%, #1a1512 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(26, 21, 18, 0.2);
}

.airbnb-hero-copy {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.airbnb-soft-band {
    background: #f7f7f7;
}

.hero-stage-shell,
.iframe-shell,
.embed-panel,
.map-card,
.card,
.stat-card,
.contact-card,
.faq-item,
.feature-card,
.destination-card,
.legal-card,
.info-card,
.step-card,
.dest-showcase-card,
.review-theme-card,
.page-link-card,
.destination-block,
.contact-panel,
.contact-channel-card,
.booking-side-card,
.booking-support-item,
.booking-selection-item,
.contact-list li,
.villa-card,
.villa-detail-booking-card,
.villa-gallery-shot,
.hero-search,
.booking-experience-panel {
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    color: var(--text);
}

.hero-stage-shell,
.embed-panel,
.booking-experience-panel,
.contact-panel,
.destination-block,
.villa-detail-booking-card {
    border-radius: 24px;
}

.hero-stage-toolbar,
.hero-stage-panel,
.embed-panel-head,
.booking-experience-head,
.map-card-head,
.embed-panel-toolbar {
    background: #ffffff;
    border-color: var(--line);
}

.hero-stage-toolbar strong,
.hero-stage-panel-copy span,
.embed-panel-meta,
.embed-panel-toolbar-hint,
.booking-engine-lead,
.booking-engine-fineprint,
.booking-selection-label,
.booking-support-item span,
.booking-selection-status,
.reviews-note,
.map-card .map-note,
.footer-tagline,
.footer-bottom,
.footer-bottom p,
.footer-list a,
.footer-grid p,
.section-copy,
.card p,
.feature-card p,
.destination-card p,
.legal-card p,
.info-card p,
.contact-card p,
.destination-block p,
.destination-points,
.faq-item p,
.contact-channel-card p,
.trust-item,
.villa-meta,
.villa-specs {
    color: var(--text-soft);
}

.hero-stage-link,
.page-hero-inline-a,
.villa-link-book,
.dest-showcase-link,
.map-card-external,
.embed-panel-meta a,
.contact-channel-card a:hover,
.contact-list a:hover,
.footer-list a:hover {
    color: var(--brand);
}

.btn,
.booking-engine-primary,
.booking-mobile-cta,
.nav-book {
    background: linear-gradient(135deg, #2a221d 0%, #1a1512 100%);
    color: #fff !important;
    border-color: transparent;
    box-shadow: 0 12px 28px rgba(26, 21, 18, 0.18);
}

.btn:hover,
.booking-engine-primary:hover,
.booking-mobile-cta:hover,
.nav-book:hover {
    background: linear-gradient(135deg, #3d3530 0%, #1a1512 100%);
}

.btn-secondary,
.booking-engine-secondary {
    background: #ffffff;
    color: var(--text);
    border-color: var(--line);
}

.btn-secondary:hover,
.booking-engine-secondary:hover {
    background: #f7f7f7;
    border-color: #dcdcdc;
}

.hero-badges li,
.pill-nav a,
.pill,
.badge-row li,
.filter-btn,
.villa-badge {
    background: #ffffff;
    color: var(--text);
    border: 1px solid var(--line);
    box-shadow: none;
}

.filter-btn.active,
.filter-btn:hover {
    background: #222222;
    color: #fff;
    border-color: #222222;
}

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

.villa-card {
    overflow: hidden;
    border-radius: 22px;
}

.villa-card-media img {
    height: 280px;
    border-radius: 0;
}

.villa-content {
    padding: 18px 18px 20px;
}

.villa-badge {
    top: 14px;
    left: 14px;
    padding: 7px 12px;
    font-size: 0.7rem;
    font-weight: 700;
}

.villa-title {
    margin-top: 8px;
    margin-bottom: 6px;
    font-size: 1rem;
    line-height: 1.35;
}

.villa-price {
    margin-top: 10px;
    font-size: 0.96rem;
}

.trust-strip,
.reviews-band,
.site-footer {
    background: #f7f7f7;
}

.footer-rich {
    border-bottom: 1px solid var(--line);
}

.footer-logo,
.footer-heading {
    color: var(--text);
}

.cta-banner {
    background: linear-gradient(135deg, #faf8f5 0%, #ffffff 52%, #f2ebe4 100%);
    border: 1px solid rgba(26, 21, 18, 0.1);
    color: var(--text);
}

.cta-banner p {
    color: var(--text-soft);
}

.booking-experience-panel,
.booking-preview-card,
.booking-preview-summary div,
.booking-engine-preview,
.booking-preview-topbar {
    color: var(--text);
    background: #ffffff;
    border-color: var(--line);
}

.booking-preview-kicker,
.booking-preview-summary span,
.booking-preview-copy .booking-engine-lead {
    color: var(--text-soft);
}

.booking-preview-summary strong,
.booking-experience-panel .embed-panel-title,
.booking-experience-panel .embed-panel-meta,
.booking-experience-panel .booking-engine-secondary {
    color: var(--text);
}

.booking-experience-panel .embed-badge {
    background: #faf8f5;
    color: var(--brand);
}

@media (max-width: 1100px) {
    .site-nav {
        grid-template-columns: minmax(230px, 1fr) auto minmax(44px, 1fr);
    }

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

@media (max-width: 992px) {
    .site-nav {
        display: flex;
    }

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

    .airbnb-search-bar {
        grid-template-columns: 1fr;
        border-radius: 24px;
        gap: 6px;
    }

    .airbnb-search-date-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .airbnb-search-segment + .airbnb-search-segment {
        border-left: none;
        border-top: 1px solid var(--line);
    }

    .airbnb-search-go {
        width: 100%;
        height: 52px;
        border-radius: 16px;
    }
}

@media (max-width: 768px) {
    .hero,
    .page-hero {
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .hero h1,
    .page-hero h1 {
        max-width: 100%;
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-stage-head {
        align-items: start;
    }

    .hero-stage-link {
        white-space: normal;
    }

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

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

    .destination-map {
        display: block;
    }

    .map-shell {
        min-height: 220px;
    }

    .hero-booking-iframe {
        min-height: 440px;
    }

    .booking-iframe {
        min-height: 460px;
    }
}

/* Results page theme inspired by Airbnb listings */
.results-page .page-hero,
.results-page .trust-strip,
.results-page .site-footer {
    display: none;
}

.results-shell {
    padding: 26px 0 48px;
    background: #ffffff;
}

.results-search-bar {
    display: grid;
    grid-template-columns: 1.3fr 1fr 0.9fr auto;
    align-items: center;
    gap: 0;
    padding: 8px;
    margin-bottom: 26px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.results-search-segment {
    display: grid;
    gap: 4px;
    padding: 10px 18px;
}

.results-search-segment--dates {
    align-content: start;
}

.results-search-segment + .results-search-segment {
    border-left: 1px solid var(--line);
}

.results-search-label {
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--text);
}

.results-search-value {
    font-size: 0.94rem;
    color: var(--text-soft);
}

.results-search-input {
    width: 100%;
    min-width: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: 0.94rem;
    line-height: 1.4;
    outline: none;
    appearance: none;
}

.results-search-input::placeholder {
    color: var(--text-soft);
}

.results-search-select {
    cursor: pointer;
    color: var(--text-soft);
}

.results-search-select:focus,
.results-search-input:focus {
    outline: none;
}

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

.results-search-date-grid .results-search-input {
    min-height: 28px;
}

.results-search-go {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    min-height: 56px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2a221d 0%, #1a1512 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(26, 21, 18, 0.18);
}

.results-meta {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.results-count {
    margin: 0 0 6px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-soft);
}

.results-meta h1 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--text);
}

.results-lead {
    margin: 10px 0 0;
    max-width: 60ch;
    color: var(--text-soft);
    font-size: 0.98rem;
}

.results-map-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid #222222;
    border-radius: 999px;
    background: #ffffff;
    color: #222222;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

.results-filters {
    margin-bottom: 28px;
}

.results-filter-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.results-page .listing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px 24px;
}

.results-page .villa-card {
    border: none;
    background: transparent;
    box-shadow: none;
}

.results-page .villa-card:hover {
    transform: none;
    box-shadow: none;
}

.results-page .villa-card-media {
    overflow: hidden;
    border-radius: 22px;
}

.results-page .villa-card-media img {
    height: 280px;
    border-radius: 22px;
}

.results-page .villa-content {
    padding: 12px 2px 0;
}

.results-page .villa-meta {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: var(--text);
}

.results-page .villa-title {
    margin: 6px 0 6px;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text);
}

.results-page .villa-specs {
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.45;
}

.results-page .villa-price {
    margin-top: 8px;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 700;
}

.results-page .villa-link-book {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--brand);
}

.results-page .villa-badge {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(34, 34, 34, 0.06);
    color: var(--text);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

@media (max-width: 1100px) {
    .results-page .listing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .results-search-bar {
        grid-template-columns: 1fr;
        border-radius: 24px;
        gap: 6px;
    }

    .results-search-segment + .results-search-segment {
        border-left: none;
        border-top: 1px solid var(--line);
    }

    .results-search-date-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .results-search-go {
        width: 100%;
        min-width: 0;
        border-radius: 16px;
    }

    .results-meta {
        align-items: start;
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .results-shell {
        padding-top: 18px;
    }

    .results-page .listing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .results-map-toggle {
        width: 100%;
    }
}

/* Final light theme pass with Airbnb-style accents */
:root {
    --bg: #fffaf8;
    --surface: #ffffff;
    --surface-muted: #f8f4f1;
    --text: #1f1f1f;
    --text-soft: #6f6b69;
    --line: rgba(34, 34, 34, 0.08);
    --brand: #2a221d;
    --brand-strong: #1a1512;
    --dark: #1f1f1f;
}

body {
    background:
        radial-gradient(circle at top right, rgba(26, 21, 18, 0.08), transparent 18%),
        radial-gradient(circle at top left, rgba(255, 180, 194, 0.14), transparent 22%),
        linear-gradient(180deg, #fffdfc 0%, #fff7f4 100%);
    color: var(--text);
}

.site-header {
    background: rgba(255, 252, 250, 0.88);
    border-bottom-color: rgba(34, 34, 34, 0.08);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.site-logo,
.site-menu a {
    color: #222222;
}

.site-menu a:hover,
.site-menu a[aria-current="page"],
.hero-stage-link,
.page-hero-inline-a,
.villa-link-book,
.dest-showcase-link,
.map-card-external,
.embed-panel-meta a,
.contact-channel-card a:hover,
.contact-list a:hover,
.footer-links a:hover,
.footer-list a:hover {
    color: var(--brand);
}

.hero,
.hero--booking-immersive,
.booking-hero {
    background:
        radial-gradient(circle at top right, rgba(26, 21, 18, 0.12), transparent 22%),
        radial-gradient(circle at bottom left, rgba(255, 214, 221, 0.38), transparent 24%),
        linear-gradient(135deg, #fffefe 0%, #fff8f6 38%, #fff2ee 100%);
}

.page-hero,
.site-footer,
.contact-panel,
.trust-strip,
.reviews-band {
    background:
        radial-gradient(circle at top right, rgba(26, 21, 18, 0.08), transparent 28%),
        linear-gradient(180deg, #fffaf8 0%, #fff4f1 100%);
}

.card,
.stat-card,
.contact-card,
.faq-item,
.feature-card,
.destination-card,
.legal-card,
.info-card,
.step-card,
.dest-showcase-card,
.review-theme-card,
.map-card,
.iframe-shell,
.embed-panel,
.page-link-card,
.destination-block,
.contact-channel-card,
.booking-side-card,
.booking-support-item,
.booking-selection-item,
.contact-list li,
.villa-card,
.villa-detail-booking-card,
.villa-gallery-shot,
.hero-search {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 247, 244, 0.98) 100%);
    border-color: rgba(34, 34, 34, 0.08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

.embed-panel-head,
.map-card-head,
.hero-stage-panel,
.hero-stage-toolbar {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(250, 245, 242, 0.96) 100%);
    border-color: rgba(34, 34, 34, 0.08);
}

.btn,
.nav-book,
.wia-mobile-menu a.nav-book {
    background: linear-gradient(135deg, #2a221d 0%, #1a1512 100%);
    border-color: transparent;
    box-shadow: 0 14px 28px rgba(26, 21, 18, 0.18);
    color: #fff !important;
}

.btn:hover,
.nav-book:hover,
.wia-mobile-menu a.nav-book:hover {
    background: linear-gradient(135deg, #3d3530 0%, #1a1512 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(34, 34, 34, 0.1);
    color: #222222;
}

.btn-secondary:hover {
    background: #ffffff;
    border-color: rgba(26, 21, 18, 0.22);
}

.eyebrow,
.page-hero .eyebrow,
.card-eyebrow,
.embed-badge,
.trust-icon,
.step-num {
    background: rgba(26, 21, 18, 0.1);
    border-color: rgba(26, 21, 18, 0.16);
    color: var(--brand);
}

.pill-nav a,
.pill,
.badge-row li,
.filter-btn,
.villa-badge {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(34, 34, 34, 0.08);
    color: #2a2a2a;
}

.filter-btn.active,
.filter-btn:hover,
.hero-badges li {
    background: rgba(26, 21, 18, 0.12);
    border-color: rgba(26, 21, 18, 0.18);
    color: var(--brand-strong);
}

.hero-search-field input,
.booking-embed-loading,
.booking-embed-frame,
.booking-iframe,
.map-shell {
    background: #fffdfa;
}

.notice,
.contact-support-item {
    background: rgba(26, 21, 18, 0.08);
    border-color: rgba(26, 21, 18, 0.14);
}

/* Whole-site hospitality shell refinement */
.page-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(34, 34, 34, 0.06);
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(255, 250, 248, 0) 0%, rgba(255, 244, 241, 0.92) 100%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 960px;
    display: grid;
    gap: 18px;
}

.page-hero p,
.section-copy,
.results-lead,
.villa-specs,
.booking-engine-fineprint,
.footer-tagline,
.map-note,
.contact-support-item span,
.contact-channel-card p,
.legal-copy p,
.faq-item p {
    color: #726d69;
}

.page-hero .pill-nav,
.page-hero .button-row {
    margin-top: 4px;
}

.page-hero .pill-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.section-heading,
.section-copy,
.legal-copy,
.faq-list,
.contact-grid,
.destination-layout,
.villa-detail-layout,
.split,
.stat-grid,
.grid-2,
.grid-3 {
    position: relative;
    z-index: 1;
}

.faq-list,
.contact-channel-grid,
.stat-grid {
    gap: 18px;
}

.faq-item,
.legal-copy,
.contact-panel,
.contact-note-card,
.contact-channel-card,
.destination-block,
.info-card,
.stat-card,
.cta-banner,
.villa-detail-booking-card,
.villa-review-grid .card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(251, 246, 243, 0.98) 100%);
    border: 1px solid rgba(34, 34, 34, 0.08);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.07);
}

.split > div:not(.photo-card),
.legal-copy {
    padding: 32px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(251, 246, 243, 0.98) 100%);
    border: 1px solid rgba(34, 34, 34, 0.08);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.07);
}

.destination-block,
.contact-panel,
.contact-note-card,
.villa-detail-booking-card,
.cta-banner {
    border-radius: 30px;
}

.faq-item,
.contact-channel-card,
.stat-card,
.villa-review-grid .card {
    border-radius: 24px;
}

.destination-block img,
.photo-card img,
.villa-gallery-shot img {
    filter: saturate(0.98) contrast(1.01);
}

.destination-block {
    align-items: start;
    gap: 28px;
}

.destination-block img {
    border-radius: 24px;
    min-height: 260px;
    object-fit: cover;
}

.legal-copy {
    max-width: 920px;
}

.legal-copy h2,
.faq-item h2,
.contact-panel h2,
.contact-note-card h2,
.destination-block h2,
.villa-detail-booking-card h2 {
    color: #222222;
}

.faq-item a,
.legal-copy a,
.contact-channel-card a,
.footer-list a,
.footer-logo,
.site-footer a {
    transition: color 0.2s ease;
}

.cta-banner {
    background:
        radial-gradient(circle at top right, rgba(26, 21, 18, 0.12), transparent 30%),
        linear-gradient(135deg, #fff9f7 0%, #fff3ef 55%, #fffdfc 100%);
}

.footer-rich,
.footer-bottom {
    border-top-color: rgba(34, 34, 34, 0.07);
}

.footer-bottom {
    background: rgba(255, 248, 245, 0.92);
}

.villa-detail-gallery {
    gap: 18px;
}

.villa-gallery-shot {
    overflow: hidden;
}

.villa-detail-booking-card {
    position: sticky;
    top: 108px;
}

@media (max-width: 992px) {
    .split > div:not(.photo-card),
    .legal-copy {
        padding: 26px;
    }

    .villa-detail-booking-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .page-hero-content {
        gap: 14px;
    }

    .split > div:not(.photo-card),
    .legal-copy,
    .faq-item,
    .contact-panel,
    .contact-note-card,
    .contact-channel-card,
    .destination-block,
    .info-card,
    .stat-card,
    .cta-banner,
    .villa-detail-booking-card,
    .villa-review-grid .card {
        border-radius: 22px;
    }

    .split > div:not(.photo-card),
    .legal-copy {
        padding: 22px;
    }

    .destination-block {
        gap: 22px;
    }

    .destination-block img {
        min-height: 220px;
    }
}

/* Final accessibility layer: keeps text contrast stable across legacy theme overlaps */
:root {
    --text-soft: #5f5a57;
}

.page-hero p,
.section-copy,
.results-lead,
.villa-specs,
.booking-engine-fineprint,
.footer-tagline,
.map-note,
.contact-support-item span,
.contact-channel-card p,
.legal-copy p,
.faq-item p,
.hero-stage-panel-copy span,
.embed-panel-meta,
.embed-panel-toolbar-hint,
.booking-engine-lead,
.booking-selection-label,
.booking-support-item span,
.booking-selection-status,
.reviews-note,
.map-card .map-note,
.footer-bottom,
.footer-bottom p,
.footer-list a,
.footer-grid p,
.card p,
.feature-card p,
.destination-card p,
.legal-card p,
.info-card p,
.contact-card p {
    color: var(--text-soft);
}

.footer-bottom,
.footer-bottom p {
    color: #5b5652;
}

.airbnb-search-tab {
    background: #f3efec;
    color: #4f4946;
    border: 1px solid rgba(34, 34, 34, 0.08);
}

.airbnb-search-tab.is-active {
    background: #ffffff;
    color: #222222;
    border-color: rgba(34, 34, 34, 0.12);
}

.hero-search-field input::placeholder,
.airbnb-search-input::placeholder,
input::placeholder,
textarea::placeholder {
    color: #8a817d;
    opacity: 1;
}

.booking-embed-loading-text {
    color: #5b5652;
    animation: none;
    opacity: 1;
}

.booking-experience-panel .embed-panel-title,
.booking-experience-panel .embed-panel-meta,
.booking-preview-summary strong,
.booking-preview-card,
.booking-preview-summary div,
.booking-engine-preview,
.booking-preview-topbar {
    color: #222222;
}

.booking-preview-kicker,
.booking-preview-summary span,
.booking-preview-copy .booking-engine-lead,
.booking-experience-panel .booking-engine-fineprint {
    color: #5f5a57;
}

.card-eyebrow,
.embed-badge,
.eyebrow,
.page-hero .eyebrow,
.trust-icon,
.step-num {
    background: #f2ebe4;
    border-color: rgba(26, 21, 18, 0.2);
    color: #c61c52;
}

.btn-secondary,
.booking-engine-secondary {
    background: #ffffff;
    color: #222222;
    border-color: rgba(26, 21, 18, 0.22);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.btn-secondary:hover,
.booking-engine-secondary:hover {
    background: #fff8fa;
    color: #222222;
    border-color: rgba(26, 21, 18, 0.32);
}

.footer-list a:hover,
.site-footer a:hover,
.faq-item a:hover,
.legal-copy a:hover,
.contact-channel-card a:hover {
    color: var(--brand);
}

@media (max-width: 992px) {
    .hero,
    .page-hero,
    .booking-hero {
        padding-top: 36px;
        padding-bottom: 30px;
    }

    .hero h1,
    .page-hero h1 {
        max-width: 100%;
        font-size: clamp(2.2rem, 7vw, 3.2rem);
        line-height: 1.02;
    }

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

    .hero-stage-head,
    .hero-stage-panel,
    .booking-engine-actions,
    .booking-experience-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .embed-panel-badges,
    .button-row,
    .hero-actions {
        flex-wrap: wrap;
    }

    .airbnb-search-shell {
        gap: 14px;
    }

    .airbnb-search-tabs {
        justify-content: flex-start;
        gap: 8px;
    }

    .airbnb-search-tab {
        min-height: 38px;
        padding: 9px 14px;
        font-size: 0.92rem;
    }

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

    .hero-badges li {
        min-height: 52px;
        padding: 12px 14px;
    }

    .booking-portal-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-grid p {
        text-align: left;
    }

    .footer-links {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px 16px;
    }
}

@media (max-width: 768px) {
    .container,
    .site-nav {
        padding-left: 18px;
        padding-right: 18px;
    }

    .section {
        padding: 52px 0;
    }

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

    .hero,
    .page-hero,
    .booking-hero {
        padding-top: 32px;
        padding-bottom: 28px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(2rem, 9vw, 2.7rem);
        line-height: 1.04;
    }

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

    .airbnb-search-tabs {
        width: 100%;
    }

    .airbnb-search-tab {
        flex: 1 1 calc(50% - 8px);
        text-align: center;
    }

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

    .listing-grid,
    .grid-4,
    .grid-3,
    .grid-2,
    .page-links,
    .stat-grid,
    .contact-channel-grid,
    .steps-grid,
    .dest-showcase-grid {
        grid-template-columns: 1fr;
    }

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

    .destination-block,
    .split > div:not(.photo-card),
    .legal-copy {
        padding: 22px;
        border-radius: 22px;
    }

    .destination-block {
        gap: 20px;
    }

    .hero-stage-shell,
    .hero-stage-panel,
    .hero-stage-toolbar,
    .embed-panel,
    .booking-preview-card,
    .booking-preview-summary div,
    .villa-detail-booking-card,
    .villa-review-grid .card {
        border-radius: 22px;
    }

    .hero-booking-iframe {
        min-height: 440px;
        height: min(720px, calc(100vh - 180px));
    }

    .booking-iframe {
        min-height: 460px;
        height: min(980px, calc(100vh - 150px));
    }
}

@media (max-width: 480px) {
    .container,
    .site-nav {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero,
    .page-hero,
    .booking-hero {
        padding-top: 28px;
        padding-bottom: 24px;
    }

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

    .hero h1,
    .page-hero h1 {
        font-size: clamp(1.85rem, 10vw, 2.25rem);
    }

    .hero-stage-head h2,
    .section-heading,
    .booking-side-card h2,
    .villa-detail-booking-card h2 {
        font-size: 1.2rem;
    }

    .airbnb-search-tabs,
    .hero-badges {
        grid-template-columns: 1fr;
    }

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

    .airbnb-search-tab {
        flex-basis: 100%;
    }

    .card,
    .feature-card,
    .destination-card,
    .legal-card,
    .info-card,
    .contact-card,
    .page-link-card,
    .stat-card,
    .faq-item,
    .cta-banner,
    .destination-block,
    .villa-content,
    .booking-side-card,
    .booking-experience-body,
    .villa-detail-booking-card,
    .villa-review-grid .card,
    .split > div:not(.photo-card),
    .legal-copy {
        padding: 18px;
    }

    .hero-stage-toolbar,
    .hero-stage-panel {
        padding-left: 14px;
        padding-right: 14px;
    }

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

    .booking-preview-frame,
    .booking-preview-card {
        padding: 14px;
    }

    .booking-preview-summary div,
    .booking-selection-item {
        padding: 12px 14px;
    }

    .hero-booking-iframe {
        min-height: 400px;
        height: min(660px, calc(100vh - 190px));
    }

    .booking-iframe {
        min-height: 440px;
        height: min(920px, calc(100vh - 130px));
    }
}

/* Global luxury editorial redesign */
:root {
    --bg: #f6f0ea;
    --surface: rgba(255, 251, 247, 0.92);
    --surface-muted: #efe5db;
    --text: #241a16;
    --text-soft: #6f6259;
    --line: rgba(62, 45, 38, 0.12);
    --brand: #9a5f55;
    --brand-strong: #7f433b;
    --dark: #211916;
    --shadow: 0 26px 60px rgba(44, 30, 23, 0.09);
    --shadow-soft: 0 14px 30px rgba(44, 30, 23, 0.06);
    --radius: 28px;
    --container: 1320px;
}

body {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.75), transparent 28%),
        radial-gradient(circle at bottom right, rgba(222, 201, 184, 0.26), transparent 24%),
        linear-gradient(180deg, #f9f4ef 0%, #f5eee7 44%, #f3ebe3 100%);
    color: var(--text);
}

.site-logo,
.hero h1,
.page-hero h1,
.section-heading,
.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,
.page-link-card h2,
.villa-title,
.booking-side-card h2,
.villa-detail-booking-card h2,
.results-meta h1,
.cta-banner h2,
.faq-item h2,
.contact-panel h2,
.contact-note-card h2,
.destination-block h2,
.embed-panel-title,
.map-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.site-header {
    background: rgba(249, 243, 237, 0.78);
    border-bottom: 1px solid rgba(62, 45, 38, 0.08);
    box-shadow: 0 14px 30px rgba(44, 30, 23, 0.04);
    backdrop-filter: blur(22px);
}

.site-nav {
    max-width: 1460px;
    padding-top: 22px;
    padding-bottom: 22px;
}

.site-logo {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.01em;
}

.site-menu {
    gap: 10px;
}

.site-menu a {
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(36, 26, 22, 0.78);
}

.site-menu a:hover,
.site-menu a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.76);
    color: var(--text);
}

.site-menu .nav-book,
.btn,
.results-search-go,
.booking-engine-primary,
.booking-mobile-cta {
    background: linear-gradient(135deg, #2a211d 0%, #3d3029 100%) !important;
    color: #fbf6f1 !important;
    border: 1px solid rgba(42, 33, 29, 0.9);
    box-shadow: 0 18px 34px rgba(42, 33, 29, 0.16);
}

.site-menu .nav-book:hover,
.btn:hover,
.results-search-go:hover,
.booking-engine-primary:hover,
.booking-mobile-cta:hover {
    background: linear-gradient(135deg, #3b2c26 0%, #514038 100%) !important;
}

.btn,
.btn-secondary,
.btn-dark,
.results-search-go,
.results-map-toggle,
.filter-btn,
.map-card-external,
.villa-link-book {
    border-radius: 999px;
}

.btn {
    min-height: 54px;
    padding: 0 24px;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.btn-secondary,
.booking-engine-secondary,
.btn-dark,
.results-map-toggle {
    background: rgba(255, 251, 247, 0.82);
    color: var(--text);
    border: 1px solid rgba(62, 45, 38, 0.14);
    box-shadow: 0 12px 26px rgba(44, 30, 23, 0.05);
}

.btn-secondary:hover,
.booking-engine-secondary:hover,
.btn-dark:hover,
.results-map-toggle:hover {
    background: rgba(255, 255, 255, 0.98);
    color: var(--text);
    border-color: rgba(62, 45, 38, 0.22);
}

.hero,
.page-hero,
.booking-hero,
.results-shell {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(219, 193, 174, 0.28), transparent 22%),
        linear-gradient(180deg, rgba(255, 249, 244, 0.94) 0%, rgba(247, 239, 231, 0.88) 100%);
    border-bottom: 1px solid rgba(62, 45, 38, 0.07);
}

.hero,
.page-hero {
    padding-top: 72px;
    padding-bottom: 58px;
}

.hero::after,
.page-hero::after,
.results-shell::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 140px;
    background: linear-gradient(180deg, rgba(246, 240, 234, 0), rgba(246, 240, 234, 0.88));
    pointer-events: none;
}

.page-hero-content,
.hero-content,
.hero-stage,
.results-meta {
    position: relative;
    z-index: 1;
}

.page-hero-content,
.hero-content {
    gap: 22px;
}

.hero h1,
.page-hero h1,
.results-meta h1 {
    max-width: 11ch;
    margin: 0;
    font-size: clamp(3.5rem, 6vw, 5.8rem);
    line-height: 0.92;
}

.results-meta h1 {
    max-width: 12ch;
    font-size: clamp(2.8rem, 4vw, 4.2rem);
}

.hero p,
.page-hero p,
.section-copy,
.results-lead,
.card p,
.feature-card p,
.destination-card p,
.legal-card p,
.info-card p,
.contact-card p,
.contact-channel-card p,
.faq-item p,
.legal-copy p,
.footer-tagline,
.booking-engine-fineprint,
.booking-engine-lead,
.booking-selection-status,
.booking-support-item span,
.contact-support-item span,
.map-note,
.hero-stage-panel-copy span,
.embed-panel-meta,
.embed-panel-toolbar-hint,
.footer-grid p,
.footer-bottom,
.footer-bottom p {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.75;
}

.hero p,
.page-hero p,
.results-lead {
    max-width: 56ch;
}

.intro {
    max-width: 820px;
    margin-bottom: 34px;
}

.eyebrow,
.card-eyebrow,
.page-hero .eyebrow,
.embed-badge,
.trust-icon,
.step-num,
.villa-badge,
.results-count {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 248, 241, 0.9);
    border: 1px solid rgba(154, 95, 85, 0.18);
    color: var(--brand-strong);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-heading,
.hero-stage-head h2,
.booking-side-card h2,
.villa-detail-booking-card h2,
.page-link-card h2,
.contact-panel h2,
.contact-note-card h2,
.destination-block h2,
.faq-item h2,
.legal-copy h2,
.info-card h2,
.card h2,
.card h3 {
    font-size: clamp(2.1rem, 3.2vw, 3.2rem);
    line-height: 0.98;
    margin-bottom: 14px;
}

.hero-stage-head h2 {
    max-width: 13ch;
    font-size: clamp(2rem, 3vw, 3rem);
}

.airbnb-search-shell,
.results-search-bar,
.hero-search,
.hero-stage-shell,
.iframe-shell,
.embed-panel,
.booking-side-card,
.booking-experience-panel,
.card,
.feature-card,
.destination-card,
.legal-card,
.info-card,
.contact-card,
.contact-panel,
.contact-note-card,
.contact-channel-card,
.faq-item,
.legal-copy,
.page-link-card,
.destination-block,
.map-card,
.stat-card,
.villa-card,
.villa-detail-booking-card,
.villa-gallery-shot,
.villa-review-grid .card,
.cta-banner,
.split > div:not(.photo-card) {
    background: linear-gradient(180deg, rgba(255, 252, 248, 0.98) 0%, rgba(249, 242, 235, 0.98) 100%);
    border: 1px solid rgba(62, 45, 38, 0.1);
    box-shadow: var(--shadow);
}

.card,
.feature-card,
.destination-card,
.legal-card,
.info-card,
.contact-card,
.contact-panel,
.contact-note-card,
.contact-channel-card,
.faq-item,
.legal-copy,
.page-link-card,
.destination-block,
.map-card,
.stat-card,
.villa-card,
.villa-detail-booking-card,
.villa-gallery-shot,
.villa-review-grid .card,
.cta-banner,
.split > div:not(.photo-card),
.booking-side-card,
.booking-experience-panel,
.hero-stage-shell,
.hero-search {
    border-radius: 30px;
}

.page-link-card,
.card,
.feature-card,
.destination-card,
.legal-card,
.info-card,
.contact-card,
.contact-panel,
.contact-note-card,
.contact-channel-card,
.faq-item,
.legal-copy,
.cta-banner,
.booking-side-card,
.booking-experience-body,
.villa-detail-booking-card,
.split > div:not(.photo-card) {
    padding: 34px;
}

.page-links,
.grid-3,
.grid-4,
.contact-channel-grid,
.stat-grid,
.listing-grid {
    gap: 28px;
}

.page-link-card:hover,
.villa-card:hover,
.contact-channel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 68px rgba(44, 30, 23, 0.12);
}

.hero-stage-shell,
.iframe-shell,
.embed-panel,
.booking-experience-panel,
.booking-preview-card,
.booking-preview-summary div,
.booking-engine-preview,
.booking-preview-topbar,
.hero-stage-toolbar,
.hero-stage-panel {
    color: var(--text);
    border-color: rgba(62, 45, 38, 0.1);
    background: linear-gradient(180deg, rgba(255, 251, 247, 0.98) 0%, rgba(249, 242, 235, 0.98) 100%);
}

.hero-stage-toolbar strong,
.booking-preview-summary strong,
.booking-selection-item strong,
.villa-detail-meta-list strong {
    color: var(--text);
}

.airbnb-search-shell {
    max-width: 1100px;
    gap: 18px;
}

.airbnb-search-tabs {
    gap: 12px;
    justify-content: flex-start;
}

.airbnb-search-tab {
    background: rgba(255, 250, 245, 0.92);
    color: rgba(36, 26, 22, 0.72);
    border: 1px solid rgba(62, 45, 38, 0.08);
    box-shadow: none;
}

.airbnb-search-tab.is-active {
    background: rgba(255, 255, 255, 0.98);
    color: var(--text);
    border-color: rgba(62, 45, 38, 0.14);
    box-shadow: var(--shadow-soft);
}

.airbnb-search-bar,
.results-search-bar {
    background: rgba(255, 251, 247, 0.94);
    border: 1px solid rgba(62, 45, 38, 0.1);
    box-shadow: var(--shadow-soft);
}

.airbnb-search-segment,
.results-search-segment {
    padding-top: 12px;
    padding-bottom: 12px;
}

.airbnb-search-label,
.results-search-label,
.booking-selection-label,
.villa-meta,
.booking-preview-kicker,
.booking-preview-summary span,
.footer-heading {
    color: rgba(36, 26, 22, 0.62);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.airbnb-search-input,
.results-search-value,
.villa-price,
.booking-preview-copy strong {
    color: var(--text);
}

.results-search-go,
.results-map-toggle,
.filter-btn,
.map-card-external {
    min-height: 48px;
    padding: 0 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
}

.filter-bar {
    gap: 12px;
}

.filter-btn {
    background: rgba(255, 251, 247, 0.76);
    color: var(--text);
    border: 1px solid rgba(62, 45, 38, 0.12);
}

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

.results-page .villa-card,
.villa-card {
    overflow: hidden;
}

.villa-card-media,
.villa-card-media img,
.destination-block img,
.photo-card img,
.villa-gallery-shot img,
.villa-detail-gallery-grid img {
    border-radius: 24px;
}

.villa-card-media img {
    height: 320px;
    object-fit: cover;
}

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

.villa-title {
    margin-top: 10px;
    margin-bottom: 8px;
    font-size: 2rem;
    line-height: 1;
}

.villa-price {
    margin-top: 12px;
    font-size: 1rem;
    font-weight: 700;
}

.villa-link-book,
.map-card-external,
.contact-channel-card a,
.footer-links a,
.footer-list a,
.site-footer a {
    color: var(--brand-strong);
    font-weight: 700;
    text-decoration: none;
}

.villa-link-book:hover,
.map-card-external:hover,
.contact-channel-card a:hover {
    color: var(--text);
}

.destination-block,
.contact-grid,
.villa-detail-layout,
.booking-portal-grid {
    gap: 30px;
}

.destination-points,
.booking-steps-list {
    color: var(--text-soft);
    display: grid;
    gap: 12px;
}

.destination-points li::marker,
.booking-steps-list li::marker {
    color: var(--brand);
}

.contact-support-strip,
.booking-support-strip {
    gap: 14px;
}

.contact-support-item,
.booking-support-item,
.booking-selection-item,
.villa-detail-meta-list div {
    background: rgba(255, 249, 243, 0.88);
    border: 1px solid rgba(62, 45, 38, 0.08);
    border-radius: 22px;
    box-shadow: none;
}

.booking-selection-item,
.villa-detail-meta-list div {
    padding: 16px 18px;
}

.map-shell,
.booking-embed-loading,
.booking-embed-frame,
.booking-iframe {
    background: rgba(255, 252, 248, 0.96);
    border-color: rgba(62, 45, 38, 0.08);
}

.site-footer {
    background:
        radial-gradient(circle at top right, rgba(154, 95, 85, 0.18), transparent 28%),
        linear-gradient(180deg, #211916 0%, #160f0d 100%);
    color: rgba(249, 244, 239, 0.88);
}

.footer-rich {
    padding-top: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 245, 237, 0.08);
}

.footer-logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.9rem;
    color: #fbf6f1;
}

.footer-tagline {
    color: rgba(249, 244, 239, 0.66);
    max-width: 36ch;
}

.footer-heading {
    color: rgba(249, 244, 239, 0.48);
}

.footer-list a,
.footer-links a,
.site-footer a,
.footer-bottom,
.footer-bottom p,
.footer-grid p {
    color: rgba(249, 244, 239, 0.76);
}

.footer-links a:hover,
.footer-list a:hover,
.site-footer a:hover {
    color: #fbf6f1;
}

.footer-bottom {
    background: transparent;
    padding-bottom: 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

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

@media (max-width: 1100px) {
    .site-nav {
        max-width: 100%;
    }

    .page-links,
    .grid-4,
    .listing-grid {
        gap: 22px;
    }
}

@media (max-width: 992px) {
    .hero,
    .page-hero {
        padding-top: 56px;
        padding-bottom: 44px;
    }

    .hero h1,
    .page-hero h1 {
        max-width: 12ch;
        font-size: clamp(2.8rem, 8vw, 4.2rem);
    }

    .section-heading,
    .hero-stage-head h2,
    .booking-side-card h2,
    .villa-detail-booking-card h2,
    .page-link-card h2,
    .contact-panel h2,
    .contact-note-card h2,
    .destination-block h2,
    .faq-item h2,
    .legal-copy h2,
    .info-card h2,
    .card h2,
    .card h3,
    .results-meta h1 {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .page-link-card,
    .card,
    .feature-card,
    .destination-card,
    .legal-card,
    .info-card,
    .contact-card,
    .contact-panel,
    .contact-note-card,
    .contact-channel-card,
    .faq-item,
    .legal-copy,
    .cta-banner,
    .booking-side-card,
    .booking-experience-body,
    .villa-detail-booking-card,
    .split > div:not(.photo-card) {
        padding: 28px;
    }
}

@media (max-width: 768px) {
    .site-logo,
    .footer-logo {
        font-size: 1.55rem;
    }

    .hero,
    .page-hero {
        padding-top: 42px;
        padding-bottom: 34px;
    }

    .hero h1,
    .page-hero h1,
    .results-meta h1 {
        max-width: 100%;
        font-size: clamp(2.35rem, 10vw, 3.3rem);
    }

    .hero p,
    .page-hero p,
    .section-copy,
    .results-lead {
        font-size: 0.98rem;
    }

    .page-link-card,
    .card,
    .feature-card,
    .destination-card,
    .legal-card,
    .info-card,
    .contact-card,
    .contact-panel,
    .contact-note-card,
    .contact-channel-card,
    .faq-item,
    .legal-copy,
    .cta-banner,
    .booking-side-card,
    .booking-experience-body,
    .villa-detail-booking-card,
    .split > div:not(.photo-card) {
        padding: 22px;
    }

    .site-menu a,
    .btn,
    .results-search-go,
    .results-map-toggle,
    .filter-btn,
    .map-card-external {
        letter-spacing: 0.1em;
    }

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

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

@media (max-width: 480px) {
    .site-logo,
    .footer-logo {
        font-size: 1.34rem;
    }

    .hero,
    .page-hero {
        padding-top: 36px;
        padding-bottom: 28px;
    }

    .hero h1,
    .page-hero h1,
    .results-meta h1 {
        font-size: clamp(2rem, 11vw, 2.7rem);
    }

    .page-link-card,
    .card,
    .feature-card,
    .destination-card,
    .legal-card,
    .info-card,
    .contact-card,
    .contact-panel,
    .contact-note-card,
    .contact-channel-card,
    .faq-item,
    .legal-copy,
    .cta-banner,
    .booking-side-card,
    .booking-experience-body,
    .villa-detail-booking-card,
    .split > div:not(.photo-card),
    .destination-block {
        padding: 18px;
    }

    .villa-card-media img,
    .destination-block img,
    .photo-card img,
    .villa-gallery-shot img {
        height: 240px;
    }
}

/* Global luxury redesign v2 */
:root {
    --bg: #f7f1ea;
    --surface: #fffaf4;
    --surface-muted: #f0e6dc;
    --text: #231a16;
    --text-soft: #6d6158;
    --line: rgba(58, 41, 34, 0.11);
    --brand: #8d675c;
    --brand-strong: #6f4e45;
    --dark: #211916;
    --shadow: 0 24px 70px rgba(35, 26, 22, 0.08);
    --shadow-soft: 0 14px 34px rgba(35, 26, 22, 0.05);
    --radius: 30px;
    --container: 1340px;
}

.results-page .site-footer {
    display: block;
}

body {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), transparent 24%),
        radial-gradient(circle at top right, rgba(229, 207, 190, 0.26), transparent 26%),
        linear-gradient(180deg, #faf5ef 0%, #f7f0e8 42%, #f4ece4 100%);
}

.site-header {
    background: rgba(250, 244, 237, 0.74);
    border-bottom: 1px solid rgba(58, 41, 34, 0.08);
    box-shadow: 0 10px 24px rgba(35, 26, 22, 0.04);
}

.site-nav {
    max-width: 1480px;
    grid-template-columns: minmax(320px, 1fr) auto minmax(64px, 1fr);
    padding-top: 20px;
    padding-bottom: 20px;
}

.site-logo {
    font-size: 1.72rem;
    color: var(--text);
}

.site-menu {
    gap: 6px;
}

.site-menu a {
    padding: 9px 12px;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(35, 26, 22, 0.76);
}

.site-menu a:hover,
.site-menu a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.76);
    color: var(--text);
}

.site-menu .nav-book,
.btn,
.results-search-go,
.booking-engine-primary,
.booking-mobile-cta {
    background: linear-gradient(135deg, #221916 0%, #3b2d27 100%) !important;
    border-color: rgba(34, 25, 22, 0.96);
    box-shadow: 0 18px 36px rgba(34, 25, 22, 0.15);
}

.site-menu .nav-book:hover,
.btn:hover,
.results-search-go:hover,
.booking-engine-primary:hover,
.booking-mobile-cta:hover {
    background: linear-gradient(135deg, #31231f 0%, #4a3a33 100%) !important;
}

.btn-secondary,
.booking-engine-secondary,
.btn-dark,
.results-map-toggle,
.filter-btn,
.map-card-external {
    background: rgba(255, 251, 246, 0.82);
    color: var(--text);
    border: 1px solid rgba(58, 41, 34, 0.14);
    box-shadow: 0 10px 22px rgba(35, 26, 22, 0.04);
}

.btn-secondary:hover,
.booking-engine-secondary:hover,
.btn-dark:hover,
.results-map-toggle:hover,
.filter-btn:hover,
.map-card-external:hover {
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
    border-color: rgba(58, 41, 34, 0.22);
}

.hero,
.page-hero,
.booking-hero,
.results-shell,
.section--booking-embed {
    background:
        radial-gradient(circle at top right, rgba(210, 183, 164, 0.24), transparent 24%),
        linear-gradient(180deg, rgba(255, 249, 244, 0.96) 0%, rgba(247, 239, 230, 0.9) 100%);
}

.hero,
.page-hero {
    padding-top: 78px;
    padding-bottom: 64px;
}

.hero-content,
.page-hero-content,
.results-meta {
    max-width: 980px;
}

.hero-content,
.page-hero-content {
    gap: 24px;
}

.hero h1,
.page-hero h1 {
    max-width: 10ch;
    font-size: clamp(3.8rem, 6vw, 6rem);
    line-height: 0.9;
}

.results-meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 28px;
}

.results-meta h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 4vw, 4.5rem);
}

.section-heading,
.hero-stage-head h2,
.booking-side-card h2,
.villa-detail-booking-card h2,
.page-link-card h2,
.contact-panel h2,
.contact-note-card h2,
.destination-block h2,
.faq-item h2,
.legal-copy h2,
.info-card h2,
.card h2,
.card h3 {
    font-size: clamp(2.2rem, 3vw, 3.35rem);
    line-height: 0.96;
}

.hero-stage-head h2 {
    max-width: 12ch;
}

.hero-actions,
.button-row,
.booking-engine-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

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

.results-search-bar {
    padding: 10px;
    border-radius: 30px;
}

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

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

.villa-title {
    font-size: 1.72rem;
}

.destination-block {
    display: grid;
    grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1fr) minmax(280px, 0.82fr);
    align-items: start;
    gap: 32px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: start;
    gap: 30px;
}

.booking-portal-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: 30px;
}

.villa-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) 360px;
    align-items: start;
    gap: 30px;
}

.booking-experience-head,
.hero-stage-panel {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
}

.footer-rich {
    grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
    gap: 36px;
}

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

@media (max-width: 1200px) {
    .site-nav {
        grid-template-columns: minmax(260px, 1fr) auto minmax(40px, 1fr);
    }

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

@media (max-width: 1100px) {
    .destination-block,
    .contact-grid,
    .booking-portal-grid,
    .villa-detail-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .hero,
    .page-hero {
        padding-top: 58px;
        padding-bottom: 46px;
    }

    .hero h1,
    .page-hero h1,
    .results-meta h1 {
        max-width: 100%;
        font-size: clamp(2.8rem, 8vw, 4.2rem);
    }

    .results-meta {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .page-links,
    .results-page .listing-grid {
        grid-template-columns: 1fr;
    }

    .site-nav {
        grid-template-columns: 1fr auto;
    }
}

@media (max-width: 768px) {
    .site-logo {
        font-size: 1.42rem;
    }

    .hero,
    .page-hero {
        padding-top: 44px;
        padding-bottom: 34px;
    }

    .page-links {
        gap: 18px;
    }
}

@media (max-width: 480px) {
    .site-logo {
        font-size: 1.24rem;
    }

    .hero h1,
    .page-hero h1,
    .results-meta h1 {
        font-size: clamp(2.1rem, 11vw, 2.8rem);
    }

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

.hero--brand-launch {
    min-height: auto;
}

.brand-showcase {
    display: grid;
    grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
    gap: 28px;
    align-items: stretch;
}

.brand-showcase-copy {
    display: grid;
    align-content: center;
    gap: 18px;
    padding: 34px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 252, 248, 0.98) 0%, rgba(249, 242, 235, 0.98) 100%);
    border: 1px solid rgba(58, 41, 34, 0.1);
    box-shadow: var(--shadow);
}

.brand-video-shell {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(58, 41, 34, 0.1);
    background:
        linear-gradient(180deg, rgba(24, 18, 15, 0.08), rgba(24, 18, 15, 0.18)),
        url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
    box-shadow: var(--shadow);
}

.brand-video-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(22, 16, 13, 0.08) 0%, rgba(22, 16, 13, 0.36) 100%);
}

.brand-video-frame {
    position: absolute;
    inset: auto 28px 28px 28px;
    z-index: 1;
    display: grid;
    gap: 10px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(20, 14, 12, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    color: #fbf6f1;
}

.brand-video-kicker {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(251, 246, 241, 0.72);
}

.brand-video-frame strong {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 0.95;
}

.brand-video-frame p {
    margin: 0;
    max-width: 44ch;
    color: rgba(251, 246, 241, 0.82);
}

.testimonials-band {
    display: grid;
    gap: 28px;
}

.testimonials-band .card h3 {
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    line-height: 1.05;
}

@media (max-width: 1100px) {
    .brand-showcase {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .brand-showcase-copy {
        padding: 24px;
    }

    .brand-video-shell {
        min-height: 420px;
    }

    .brand-video-frame {
        inset: auto 18px 18px 18px;
        padding: 18px;
    }
}
