:root,
body[data-theme="dark"] {
    --bg: #060404;
    --bg-soft: #0a0808;
    --surface: rgba(255,255,255,0.04);
    --surface-strong: rgba(255,255,255,0.06);
    --surface-dark: #120e0e;
    --text: #a8843e;
    --muted: rgba(240,235,226,0.55);
    --muted-2: rgba(240,235,226,0.32);
    --border: rgba(212,175,122,0.10);
    --border-strong: rgba(212,175,122,0.20);
    --primary: #d4af7a;
    --accent: #d4af7a;
    --accent-soft: rgba(212,175,122,0.12);
    --success: #4a9e7f;
    --warning: #d4915a;
    --danger: #c96b5e;
    --shadow: 0 24px 60px rgba(0,0,0,0.70);
    --shadow-soft: 0 12px 30px rgba(0,0,0,0.50);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --shell: min(1240px, calc(100% - 32px));
}

body[data-theme="light"] {
    --bg: #f6f7fb;
    --bg-soft: #ffffff;
    --surface: rgba(255,255,255,0.78);
    --surface-strong: rgba(255,255,255,0.92);
    --surface-dark: #ffffff;
    --text: #111827;
    --muted: rgba(17,24,39,0.62);
    --muted-2: rgba(17,24,39,0.38);
    --border: rgba(139,92,246,0.16);
    --border-strong: rgba(139,92,246,0.28);
    --primary: #a8843e;
    --accent: #a8843e;
    --accent-soft: rgba(139,92,246,0.10);
    --success: #15803d;
    --warning: #b45309;
    --danger: #b91c1c;
    --shadow: 0 24px 60px rgba(15,23,42,0.12);
    --shadow-soft: 0 12px 30px rgba(15,23,42,0.10);
}

body {
    background: var(--bg);
    color: var(--text);
    transition: background 0.35s ease, color 0.35s ease;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px var(--shadow-color);
    border-radius: 28px;
}

.search-panel {
    background: var(--bg-secondary);
    backdrop-filter: blur(26px);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.hero {
    position: relative;
    /*min-height: 100vh;*/
    background: var(--hero-overlay), url('/images/hero-beach.jpg');
    background-size: cover;
    background-position: center;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    /*color: var(--text);
    background: #060404;*/
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select { font: inherit; }

.shell {
    width: var(--shell);
    margin: 0 auto;
}

main { min-height: calc(100vh - 220px); }

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    /*background: rgba(6,4,4,0.94);*/
    border-bottom: 1px solid rgba(212,175,122,0.08);
    backdrop-filter: blur(20px);
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 80px;
}

.brand,
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
/*Cormorant Garamond*/
.brand-mark,
.footer-mark {
    font-family: 'Inter', Georgia, serif;
    font-size: 2rem;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.brand-copy,
.footer-copy-top {
    font-size: .68rem;
    letter-spacing: .30em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-nav a {
    color: var(--muted);
    font-weight: 700;
    font-size: .76rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 10px 14px;
    border-radius: 999px;
    transition: .2s ease;
}

.site-nav a:hover,
.site-nav a.active-link {
    color: var(--accent);
    background: rgba(212,175,122,0.08);
}

/* ── Hamburger ── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    cursor: pointer;
    padding: 10px;
    flex-shrink: 0;
}

.nav-hamburger span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: .25s ease;
}

/* ── Mobile nav ── */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(6,4,4,0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 28px;
}

.mobile-nav-overlay.open {
    display: flex;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 52px;
}

.mobile-nav-close {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-links a {
    font-size: 2.4rem;
    font-family: 'Inter', Georgia, serif;
    font-weight: 600;
    color: rgba(240,235,226,0.55);
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    letter-spacing: -0.02em;
    transition: .2s ease;
}

.mobile-nav-links a:hover {
    color: var(--accent);
}

/* ── Hero: Cinematic full-bleed ── */
.hero {
    padding: 0;
}

.hero-cinematic {
    position: relative;
    /*min-height: 72vh;*/
    display: flex;
    align-items: flex-end;
    background: linear-gradient(180deg, rgba(6,4,4,0.04) 0%, rgba(6,4,4,0.24) 40%, rgba(6,4,4,0.80) 100%), 
        url('/images/hero-banner.jpg?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}

.hero-cinematic-content {
    padding: 64px 0;
}

.hero-text-block {
    max-width: 700px;
}

.hero-text-block h1 {
    font-family: 'Inter', Georgia, serif;
    font-size: clamp(3.4rem, 7vw, 6.4rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
    color: #fff;
    margin: 18px 0 22px;
}

.hero-text-block p {
    color: rgba(255,255,255,0.72);
    font-size: 1.06rem;
    max-width: 52ch;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-search-strip {
    display: none;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 24px 28px;
    backdrop-filter: blur(20px);
}

.hero-search-form {
    display: flex;
    gap: 16px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 140px;
}

.search-field-sm {
    flex: 0 0 120px;
}

.search-field label {
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.hero-search-form .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

/* Legacy hero (kept for non-home pages that might use it) */
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
    gap: 28px;
    align-items: stretch;
}

.hero-copy {
    position: relative;
    overflow: hidden;
    padding: 60px;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(6,4,4,0.12), rgba(6,4,4,0.82)),
        url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1600&q=80') center/cover;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.hero-copy::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212,175,122,.10), transparent 30%);
    pointer-events: none;
}

.hero-copy > * { position: relative; z-index: 1; }
.hero-copy h1 {
    margin: 14px 0 18px;
    font-family: 'Inter', Georgia, serif;
    font-size: clamp(3rem, 6vw, 5.6rem);
    line-height: .92;
    letter-spacing: -0.05em;
    max-width: 9ch;
}
.hero-copy p {
    max-width: 54ch;
    font-size: 1.08rem;
    color: rgba(255,255,255,.80);
}

.hero-facts {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.hero-fact {
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(212,175,122,0.08);
    border: 1px solid rgba(212,175,122,0.14);
}
.hero-fact strong {
    display: block;
    font-size: 1.1rem;
}
.hero-fact span {
    color: rgba(255,255,255,.68);
    font-size: .88rem;
}

/* ── Eyebrow ── */
.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    padding: 0 12px;
    font-size: .70rem;
    letter-spacing: .26em;
    text-transform: uppercase;
    font-weight: 800;
}
.hero-cinematic .eyebrow,
.hero-copy .eyebrow {
    width: fit-content;
    color: rgba(212,175,122,0.92);
    background: rgba(212,175,122,0.12);
    border: 1px solid rgba(212,175,122,0.22);
}

/* ── Cards ── */
.search-card,
.content-card,
.property-card,
.booking-card,
.auth-card,
.detail-card,
.admin-stat,
.portal-kpi,
.table-wrap,
.empty-state,
.summary-card,
.detail-sidebar-card,
.gallery-wrap,
.filter-bar,
.narrative-panel,
.fact-grid,
.breadcrumb-bar,
.callout-banner {
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    background: var(--surface);
    backdrop-filter: blur(8px);
}

.search-card,
.content-card,
.booking-card,
.auth-card,
.detail-card,
.summary-card,
.detail-sidebar-card,
.admin-stat,
.portal-kpi,
.narrative-panel,
.callout-banner { padding: 30px; }
.center-card { text-align: center; }

/* ── Headings ── */
.search-card h2,
.content-card h1,
.content-card h2,
.summary-card h2,
.detail-card h3,
.auth-card h1,
.confirmation-card h1,
.property-header h1,
.section-head h1,
.section-head h2,
.narrative-panel h2,
.callout-banner h2 {
    font-family: 'Inter', Georgia, serif;
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 10px 0 0;
}
.search-card h2 { font-size: 1.2rem; }
.section-head h1 { font-size: clamp(2.6rem, 4vw, 4rem); }
.section-head h2,
.content-card h1,
.content-card h2,
.property-header h1,
.confirmation-card h1,
.callout-banner h2 { font-size: clamp(1.2rem, 4vw, 1.4rem); }
.detail-card h3,
.auth-card h1,
.summary-card h2,
.narrative-panel h2 { font-size: 1rem; }

/* ── Forms ── */
.search-form,
.checkout-form,
.booking-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.field-group { display: flex; flex-direction: column; gap: 8px; }
.field-group.grow { flex: 1 1 auto; }
.field-group.small { width: 150px; }
.field-span-2 { grid-column: span 2; }

label {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

input,
select {
    width: 100%;
    min-height: 50px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
    padding: 0 14px;
    color: var(--text);
    outline: none;
    transition: .2s ease;
}
input::placeholder { color: var(--muted-2); }
input:focus,
select:focus {
    border-color: rgba(212,175,122,.45);
    box-shadow: 0 0 0 3px rgba(212,175,122,.08);
}
select option { background: #120e0e; color: var(--text); }
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: brightness(0) invert(0.6) sepia(1) saturate(0.5);
    cursor: pointer;
    opacity: 0.6;
}

.filter-bar {
    margin-top: 18px;
    display: flex;
    gap: 16px;
    align-items: end;
    flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 0 24px;
    cursor: pointer;
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .10em;
    text-transform: uppercase;
    transition: .22s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
    background: linear-gradient(135deg, #d4af7a, #a8843e);
    color: #060404;
    box-shadow: 0 14px 28px rgba(212,175,122,0.18);
}
.btn-primary:hover { box-shadow: 0 18px 34px rgba(212,175,122,0.28); }

.btn-secondary,
.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
}
.btn-secondary:hover,
.btn-ghost:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(212,175,122,0.28);
}

.btn-light {
    background: rgba(255,255,255,.08);
    color: #fff;
    border-color: rgba(255,255,255,.16);
}
.btn-light:hover { background: rgba(255,255,255,.13); }

.full-width { width: 100%; }

/* ── Chips ── */
.chip-row,
.toolbar-chips,
.status-row,
.footer-links,
.card-actions,
.meta-row,
.booking-summary-grid,
.inline-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.chip-row,
.toolbar-chips { margin-top: 18px; }
.chip,
.status-pill,
.info-chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
    color: var(--muted);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.chip:hover,
.chip.active,
.info-chip {
    background: var(--accent-soft);
    color: var(--accent);
    border-color: rgba(212,175,122,0.24);
}
.status-pill { color: var(--text); }

/* ── Sections ── */
.section { padding: 48px 0 72px; }
.section-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: end;
    margin-bottom: 28px;
}
.section-head.small-gap { margin-bottom: 16px; }
.stacked-mobile { align-items: start; }

.muted,
.footer-copy,
.property-topline,
.property-meta,
.quote-row,
.calendar-legend,
.table-subtle,
.fact-grid p,
.narrative-panel p { color: var(--muted); }

.text-link {
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--accent);
}
.text-link:hover { opacity: 0.75; }

.lead {
    font-size: 1.04rem;
    max-width: 64ch;
    color: var(--muted);
}

/* ── Property grid ── */
.property-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.property-card {
    overflow: hidden;
    transition: .28s ease;
}
.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 32px 64px rgba(0,0,0,0.75);
    border-color: rgba(212,175,122,0.22);
}

.property-image-link,
.property-image {
    display: block;
    width: 100%;
    height: 100%;
}
.property-image-link {
    aspect-ratio: 16 / 9.9;
    background: linear-gradient(135deg, #1a1212, #060404);
}
.property-image { object-fit: cover; }
.property-content { padding: 22px; }

.property-topline,
.quote-row,
.footer-inner,
.property-header,
.booking-summary-row,
.kpi-line,
.invoice-item,
.timeline-row,
.table-card-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}
.property-topline {
    font-size: .72rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.property-content h3 {
    margin: 0 0 6px;
    font-family: 'Inter', Georgia, serif;
    font-size: 1.9rem;
    line-height: 1;
}
.property-meta.large { margin-top: 10px; }

.amenity-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}
.amenity-list span {
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(212,175,122,0.06);
    color: var(--muted);
    font-size: .82rem;
    border: 1px solid rgba(212,175,122,0.08);
}
.amenity-list.compact span { padding: 6px 10px; font-size: .78rem; }
.property-actions,
.card-actions { margin-top: 18px; }

/* ── Grid layouts ── */
.home-intro-grid,
.fact-grid,
.portal-kpi-grid,
.admin-grid,
.summary-stats,
.quote-benefits,
.auth-steps,
.checkout-layout,
.details-grid,
.property-layout {
    display: grid;
    gap: 20px;
}
.home-intro-grid { grid-template-columns: 1.1fr .9fr; }
.fact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.portal-kpi-grid,
.admin-grid,
.summary-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.checkout-layout,
.details-grid,
.property-layout { grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); align-items: start; }
.quote-benefits { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.auth-steps { grid-template-columns: repeat(3, minmax(0,1fr)); margin-top: 18px; }

.fact-grid div,
.portal-kpi,
.admin-stat,
.auth-step {
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    padding: 22px;
}
.fact-grid strong,
.portal-kpi strong,
.admin-stat strong,
.auth-step strong {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 6px;
    font-family: 'Inter', Georgia, serif;
}
.portal-kpi span,
.admin-stat span,
.auth-step span {
    color: var(--muted);
    font-size: .88rem;
}

/* ── Property page ── */
.property-shell { padding-top: 12px; }
.property-header {
    align-items: start;
    margin-bottom: 26px;
}
.price-pill,
.booking-price {
    background: rgba(212,175,122,0.10);
    border: 1px solid rgba(212,175,122,0.22);
    padding: 14px 18px;
    border-radius: var(--radius-lg);
    font-weight: 800;
    box-shadow: var(--shadow-soft);
}
.booking-price {
    font-size: 1.3rem;
    font-family: 'Inter', Georgia, serif;
    color: var(--accent);
}
.booking-price span { font-size: 1rem; font-family: 'Inter', sans-serif; color: var(--muted); }

/* ── Gallery ── */
.gallery-grid { margin: 20px 0 28px; }
.property-gallery-section.shell { width: 100%; margin: 0; }
.gallery-wrap { position: relative; overflow: hidden; padding: 0; }
.gallery-stage { overflow: hidden; border-radius: var(--radius-xl); }
.gallery-track { display: flex; transition: transform .3s ease; }
.gallery-slide { min-width: 100%; aspect-ratio: 16 / 9; background: #1a1212; }
.gallery-main-image { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }

.gallery-nav,
.lightbox-nav,
.lightbox-close {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(212,175,122,0.20);
    background: rgba(6,4,4,0.80);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 2;
}
.gallery-nav.prev,
.lightbox-nav.prev { left: 16px; top: 50%; transform: translateY(-50%); }
.gallery-nav.next,
.lightbox-nav.next { right: 16px; top: 50%; transform: translateY(-50%); }
.gallery-meta { margin: 10px 0 0; display: flex; justify-content: flex-end; color: var(--muted); font-weight: 700; }

.gallery-thumbs {
    margin-top: 14px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}
.thumb-btn {
    padding: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    min-width: 88px;
    cursor: pointer;
}
.thumb-btn.active { border-color: var(--accent); }
.gallery-thumb-image { width: 88px; height: 68px; object-fit: cover; }

/* ── Lightbox ── */
.lightbox-modal { position: fixed; inset: 0; display: none; z-index: 80; }
.lightbox-modal.open { display: block; }
.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3,2,2,.92);
    backdrop-filter: blur(14px);
}
.lightbox-dialog {
    position: relative;
    width: min(1100px, calc(100% - 32px));
    margin: 48px auto;
    height: calc(100vh - 96px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-image { max-width: 100%; max-height: 100%; border-radius: 20px; object-fit: contain; }
.lightbox-close { top: 18px; right: 18px; }
.lightbox-counter {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.65);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* ── Calendar ── */
.calendar-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 8px; margin-top: 12px; }
.calendar-day {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    font-weight: 700;
}
.muted-day { opacity: .30; }
.selected-day { background: var(--accent-soft); color: var(--accent); border-color: transparent; }
.calendar-legend { margin-top: 14px; display: flex; gap: 16px; flex-wrap: wrap; font-size: .88rem; }
.legend-box {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    display: inline-block;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    margin-right: 6px;
}
.legend-selected { background: var(--accent-soft); border-color: transparent; }

/* ── Detail / Info ── */
.details-block { margin-top: 14px; border-top: 1px solid var(--border); padding-top: 14px; }
.details-block summary { cursor: pointer; font-weight: 700; color: var(--accent); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.mt-12 { margin-top: 12px; }
.info-stack { display: grid; gap: 20px; }
.info-stack.compact-gap { gap: 14px; }
.rule-list { margin: 0; padding-left: 18px; color: var(--muted); }
.rule-list li + li { margin-top: 8px; }

.quote-panel { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); }
.quote-row.total,
.booking-summary-row.total,
.kpi-line.total {
    padding-top: 12px;
    border-top: 1px solid var(--border);
    margin-top: 12px;
    color: var(--text);
}

.status-badge { margin-top: 16px; display: inline-flex; padding: 10px 14px; border-radius: 10px; font-weight: 700; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
.status-warning { background: rgba(212,145,90,.10); color: var(--warning); }
.status-success { background: rgba(74,158,127,.10); color: var(--success); }

/* ── Summary sidebar ── */
.summary-card { position: sticky; top: 100px; }
.booking-summary-grid { margin-top: 18px; flex-direction: column; gap: 14px; }
.booking-summary-row strong { white-space: nowrap; }
.quote-benefits { margin-top: 18px; }
.quote-benefit {
    padding: 16px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
}
.quote-benefit strong { display: block; margin-bottom: 4px; }

/* ── Auth ── */
.auth-shell { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: stretch; }
.auth-card .btn { margin-top: 18px; }
.form-error,
.field-validation { color: var(--danger); font-weight: 700; font-size: .88rem; }
.form-error {
    margin: 12px 0 4px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(201,107,94,.08);
}
.auth-side {
    padding: 42px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(6,4,4,.14), rgba(6,4,4,.72)),
        url('https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?auto=format&fit=crop&w=1400&q=80') center/cover;
    color: #fff;
    box-shadow: var(--shadow);
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.auth-side h2 { font-family: 'Inter', Georgia, serif; font-size: 3rem; line-height: 1; margin: 12px 0; }
.auth-side p,
.auth-step span { color: rgba(255,255,255,.75); }
.auth-step { background: rgba(212,175,122,0.07); border-color: rgba(212,175,122,0.14); }
.auth-step strong { color: var(--text); }

/* ── Confirmation ── */
.confirmation-card { max-width: 760px; margin: 0 auto; text-align: center; }
.confirmation-card .info-stack { margin-top: 22px; text-align: left; }
.confirmation-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* ── Empty / Spinner ── */
.empty-state { padding: 42px; text-align: center; color: var(--muted); font-weight: 700; }
.spinner {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    border: 4px solid rgba(212,175,122,.14);
    border-top-color: var(--accent);
    margin: 0 auto 18px;
    animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Portal / Admin ── */
.portal-shell .section-head,
.admin-shell .section-head { align-items: start; }
.portal-kpi-grid,
.admin-grid { margin-bottom: 24px; }
.table-wrap { overflow: auto; padding: 8px; }
.portal-table { width: 100%; border-collapse: collapse; min-width: 780px; }
.portal-table th,
.portal-table td { padding: 16px 14px; text-align: left; border-bottom: 1px solid rgba(212,175,122,0.06); vertical-align: top; }
.portal-table th { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted-2); }
.portal-table td { color: var(--text); }
.invoice-item { padding: 16px 0; border-top: 1px solid var(--border); flex-direction: column; align-items: start; }
.invoice-item:first-child { border-top: 0; padding-top: 0; }
.details-hero-image { width: 100%; border-radius: 20px; max-height: 380px; object-fit: cover; margin-bottom: 22px; box-shadow: var(--shadow-soft); }
.details-main,
.details-side { display: grid; gap: 20px; }
.detail-card p { margin: 0 0 10px; }
.detail-sidebar-card { position: sticky; top: 100px; }

/* ── Footer ── */
.site-footer {
    margin-top: 40px;
    padding: 40px 0;
    /*background: #060404;*/
    border-top: 1px solid rgba(212,175,122,0.08);
    color: var(--text);
}
.footer-inner { align-items: center; }
.footer-copy { color: var(--muted); max-width: 48ch; }
.footer-links a { color: var(--muted); font-weight: 700; font-size: .76rem; letter-spacing: .10em; text-transform: uppercase; }
.footer-links a:hover { color: var(--accent); }

/* ── Callout / Breadcrumb ── */
.callout-banner { background: rgba(212,175,122,0.05); border-color: rgba(212,175,122,0.14); }
.breadcrumb-bar { padding: 14px 18px; margin-bottom: 22px; display: flex; gap: 10px; flex-wrap: wrap; color: var(--muted); font-weight: 700; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }

.admin-stat strong,
.portal-kpi strong { font-size: 2.2rem; }
.admin-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.narrative-panel ul { margin: 10px 0 0; padding-left: 18px; color: var(--muted); }
.narrative-panel li + li { margin-top: 8px; }

/* ── Responsive ── */
@media (max-width: 1120px) {
    .hero-grid,
    .home-intro-grid,
    .auth-shell,
    .checkout-layout,
    .details-grid,
    .property-layout { grid-template-columns: 1fr; }
    .summary-card,
    .detail-sidebar-card { position: static; }
    .property-grid,
    .portal-kpi-grid,
    .admin-grid,
    .summary-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
    .topbar,
    .section-head,
    .property-header,
    .footer-inner { flex-direction: column; align-items: start; }

    .hero-cinematic { min-height: 55vh; }
    .hero-text-block h1 { font-size: 3.2rem; }
    .hero-search-strip { display:none; padding: 18px 20px; border-radius: 0 0 var(--radius-md) var(--radius-md); }
    .hero-search-form { gap: 12px; }
    .search-field-sm { flex: 1 1 100%; max-width: 100%; }
    .search-card,
    .content-card,
    .booking-card,
    .auth-card,
    .detail-card,
    .summary-card,
    .detail-sidebar-card,
    .admin-stat,
    .portal-kpi,
    .narrative-panel,
    .callout-banner { padding: 22px; }

    .hero-facts,
    .property-grid,
    .portal-kpi-grid,
    .admin-grid,
    .summary-stats,
    .fact-grid,
    .quote-benefits,
    .auth-steps,
    .search-form,
    .checkout-form,
    .booking-form,
    .field-grid-2 { grid-template-columns: 1fr; }
    .field-span-2 { grid-column: span 1; }
    .site-nav { display: none; }
    .nav-hamburger { display: flex; }
    .property-content h3 { font-size: 1.3rem; }
    .section-head h1,
    .section-head h2,
    .content-card h1,
    .content-card h2,
    .property-header h1,
    .confirmation-card h1 { font-size: 1.2rem; }
    .calendar-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ── Checkout ── */
.checkout-card { padding: 32px; }
.checkout-form-modern { display: grid; gap: 22px; }

.checkout-section {
    display: grid;
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.03);
    box-shadow: var(--shadow-soft);
}

.checkout-section-head {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(212,175,122,0.07);
}
.checkout-section-head h2 {
    margin: 6px 0 0;
    font-family: 'Inter', Georgia, serif;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.04em;
}
.checkout-section-head p { margin: 0; max-width: 34ch; color: var(--muted); font-size: .94rem; }

.section-kicker {
    display: inline-block;
    font-size: .70rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
}

.readonly-field {
    min-height: 50px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}
.readonly-field strong { font-size: .96rem; color: var(--text); }
.readonly-field span { color: var(--muted); font-size: .88rem; }

.payment-method-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.payment-option { position: relative; display: block; cursor: pointer; }
.payment-option input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }

.payment-option-body {
    min-height: 100px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
    box-shadow: var(--shadow-soft);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: .20s ease;
}
.payment-option:hover .payment-option-body { transform: translateY(-2px); border-color: rgba(212,175,122,0.28); }

.payment-option-logo {
    width: 66px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 66px;
}
.payment-option-logo img { max-width: 48px; max-height: 28px; object-fit: contain; }

.payment-option-copy { display: flex; flex-direction: column; gap: 3px; }
.payment-option-copy strong { font-size: .96rem; color: var(--text); }
.payment-option-copy small { color: var(--muted); font-size: .86rem; }

.payment-option input:focus-visible + .payment-option-body { border-color: rgba(212,175,122,.45); box-shadow: 0 0 0 3px rgba(212,175,122,.08); }
.payment-option:has(input:checked) .payment-option-body { border-color: rgba(212,175,122,.42); background: rgba(212,175,122,0.08); box-shadow: 0 18px 40px rgba(0,0,0,0.50); }
.payment-option:has(input:checked) .payment-option-copy strong { color: var(--accent); }

.payment-trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-pill {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(212,175,122,0.06);
    border: 1px solid rgba(212,175,122,0.12);
    color: var(--muted);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.policy-box { padding: 16px 18px; border-radius: var(--radius-md); background: rgba(212,175,122,0.06); border: 1px solid rgba(212,175,122,0.12); }
.policy-box strong { display: block; margin-bottom: 4px; }
.policy-box p { margin: 0; color: var(--muted); }

.checkout-actions { display: grid; gap: 10px; }
.checkout-help-text { margin: 0; text-align: center; color: var(--muted); font-size: .88rem; }
.checkout-summary-card { display: grid; gap: 18px; }
.summary-hero { padding: 16px; border-radius: var(--radius-md); background: rgba(212,175,122,0.07); border: 1px solid rgba(212,175,122,0.14); }
.summary-hero-copy { display: flex; flex-direction: column; gap: 5px; }
.summary-hero-copy strong { font-size: .98rem; color: var(--text); }
.summary-hero-copy span { color: var(--muted); font-size: .88rem; }
.checkout-benefits { grid-template-columns: 1fr; }
.checkout-final-note { padding-top: 0; background: transparent; border: 0; box-shadow: none; }
.checkout-form-modern .form-error:empty { display: none; }

@media (max-width: 900px) {
    .checkout-section-head { display: grid; grid-template-columns: 1fr; }
    .payment-method-grid { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
    .checkout-card { padding: 22px; }
    .checkout-section { padding: 18px; border-radius: var(--radius-md); }
    .payment-option-body { min-height: 90px; }
}

/* ── Legal pages ── */
.legal-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 16px;
    color: var(--muted-2);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.legal-body {
    margin-top: 32px;
    display: grid;
    gap: 0;
}
.legal-section {
    padding: 28px 0;
    border-top: 1px solid var(--border);
}
.legal-section:first-child { padding-top: 0; border-top: none; }
.legal-section h3 {
    font-family: 'Inter', Georgia, serif;
    font-size: 1.6rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 14px;
    color: var(--text);
}
.legal-section p {
    color: var(--muted);
    margin: 0 0 10px;
    font-size: .96rem;
    line-height: 1.78;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section h4 {
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text);
    margin: 18px 0 8px;
}
.legal-section strong { color: var(--text); }
.legal-section .rule-list { margin-top: 10px; }
.legal-section .rule-list li { margin-bottom: 6px; line-height: 1.65; }

/* ── Bootstrap collapse (JS-only setup, no Bootstrap CSS loaded) ── */
.collapse:not(.show) { display: none; }
.collapsing { height: 0; overflow: hidden; transition: height .35s ease; }

/* ── Payments panel ── */
.payments-panel { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; background: rgba(255,255,255,0.03); box-shadow: var(--shadow-soft); }
.payments-panel-header { padding: 16px 22px; border-bottom: 1px solid var(--border); background: rgba(212,175,122,0.04); }
.payments-panel-title { margin: 0; font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

.payment-accordion .accordion-item { border: 0; border-bottom: 1px solid var(--border); background: transparent; }
.payment-accordion .accordion-item:last-child { border-bottom: 0; }
.payment-accordion .accordion-button { padding: 18px 22px; background: transparent; color: var(--text); box-shadow: none; }
.payment-accordion .accordion-button:not(.collapsed) { background: rgba(212,175,122,0.06); color: var(--text); box-shadow: inset 3px 0 0 var(--accent); }
.payment-accordion .accordion-button:focus { box-shadow: none; border-color: transparent; }
.payment-accordion .accordion-button::after { filter: brightness(0) invert(0.5); }

.payment-summary { width: 100%; display: flex; justify-content: space-between; gap: 18px; align-items: center; padding-right: 14px; }
.payment-provider { font-weight: 700; color: var(--text); }
.payment-reference { margin-top: 3px; font-size: .78rem; color: var(--muted); }
.payment-meta { text-align: right; white-space: nowrap; }
.payment-amount { margin-top: 5px; font-size: .98rem; font-weight: 800; color: var(--text); }

.payment-status { border-radius: 999px; padding: 5px 10px; font-size: .70rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.payment-status-success { background: rgba(74,158,127,0.12); color: var(--success); }
.payment-status-pending { background: rgba(212,145,90,0.12); color: var(--warning); }
.payment-status-failed { background: rgba(201,107,94,0.12); color: var(--danger); }

.payment-breakdown-body { padding: 18px 22px 22px; background: rgba(212,175,122,0.03); }
.payment-breakdown-table { margin: 0; overflow: hidden; border-radius: 12px; background: rgba(255,255,255,0.03); box-shadow: 0 4px 14px rgba(0,0,0,0.30); border: 1px solid var(--border); }
.payment-breakdown-table thead th { padding: 11px 14px; background: rgba(212,175,122,0.06); color: var(--muted-2); font-size: .70rem; font-weight: 700; text-transform: uppercase; letter-spacing: .10em; border-bottom: 1px solid var(--border); }
.payment-breakdown-table tbody td { padding: 12px 14px; vertical-align: middle; border-color: var(--border); color: var(--text); }
.charge-name { font-weight: 700; color: var(--text); }
.charge-code { margin-top: 2px; font-size: .72rem; color: var(--muted); }
.charge-category { display: inline-flex; border-radius: 999px; padding: 4px 9px; background: rgba(212,175,122,0.10); color: var(--accent); font-size: .70rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.charge-amount { font-weight: 800; color: var(--text); }
.refundable-badge { border-radius: 999px; padding: 4px 9px; font-size: .70rem; font-weight: 700; }
.refundable-yes { background: rgba(74,158,127,0.12); color: var(--success); }
.refundable-no { background: rgba(255,255,255,0.05); color: var(--muted); }
.payment-breakdown-table tfoot td { padding: 13px 14px; background: rgba(212,175,122,0.05); border-top: 1px solid var(--border); font-weight: 800; color: var(--text); }
.no-breakdown { padding: 14px; border-radius: 12px; background: rgba(255,255,255,0.03); color: var(--muted); font-size: .88rem; border: 1px dashed var(--border); }

@media (max-width: 768px) {
    .payment-summary { flex-direction: column; align-items: flex-start; }
    .payment-meta { text-align: left; }
    .payment-breakdown-body { padding: 14px; }
    .payment-breakdown-table { font-size: .82rem; }
}


.card-image {
    position: relative;
}

    .card-image img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        display: block;
    }

.featured-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent);
    color: #060404;
    border-radius: 20px;
    padding: 6px 14px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(6,4,4,0.90);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 12px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--accent);
}

.ls-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
}

.ls-hero {
    background: linear-gradient(135deg, rgba(212,175,122,0.08) 0%, rgba(212,175,122,0.02) 100%);
    border-radius: 32px;
    border: 1px solid rgba(212,175,122,0.10);
    padding: 48px;
    margin-bottom: 32px;
}

    .ls-hero .eyebrow {
        color: #d4af7a;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        margin-bottom: 12px;
        font-size: 0.85rem;
    }

    .ls-hero h1 {
        margin: 0 0 24px;
        font-size: clamp(2.25rem, 3vw, 3.5rem);
        line-height: 1.05;
    }

.ls-search-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

    .ls-search-bar input,
    .ls-search-bar select,
    .ls-search-bar button {
        border: 1px solid rgba(212,175,122,0.10);
        border-radius: 14px;
        padding: 16px 18px;
        font-size: 0.95rem;
        background: rgba(255,255,255,0.04);
        color: #a8843e;
        appearance: none;
    }

        .ls-search-bar select option {
            background: #1a1a1a;
            color: #a8843e;
        }

    .ls-search-bar button {
        background: #d4af7a;
        color: #fff;
        border-color: transparent;
        cursor: pointer;
        font-weight: 600;
    }

        .ls-search-bar button:hover {
            background: #c49a60;
        }

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

.ls-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,175,122,0.10);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.70);
    display: flex;
    flex-direction: column;
}

.ls-card-image {
    position: relative;
    display: block;
    text-decoration: none;
}

    .ls-card-image img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        display: block;
    }

.ls-price-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(6,4,4,0.80);
    border: 1px solid rgba(212,175,122,0.10);
    border-radius: 10px;
    padding: 8px 12px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #d4af7a;
}

.ls-card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ls-card-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    /*color: rgba(240,235,226,0.55);*/
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.ls-card-body h2 {
    margin: 0 0 6px;
    font-size: 1.2rem;
}

    .ls-card-body h2 a {
        color: inherit;
        text-decoration: none;
    }

        .ls-card-body h2 a:hover {
            color: #d4af7a;
        }

.ls-location {
    margin: 0 0 14px;
    /*color: rgba(240,235,226,0.55);*/
    font-size: 0.95rem;
}

.ls-amenities {
    flex: 1;
    margin-bottom: 18px;
    /*color: rgba(240,235,226,0.55);*/
    font-size: 0.95rem;
}

.ls-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

    .ls-price-row strong {
        font-size: 1.35rem;
        color: #a8843e;
    }

    .ls-price-row span {
        color: rgba(240,235,226,0.55);
    }

.ls-empty {
    grid-column: 1 / -1;
    padding: 64px;
    text-align: center;
    color: rgba(240,235,226,0.55);
    font-size: 1.05rem;
}

@media (max-width: 1120px) {
    .ls-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .ls-hero {
        padding: 28px 20px;
    }

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

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

    .ls-card-image img {
        height: 220px;
    }
}

/*Availability Calendar Days*/
.availability-calendar-card {
    margin-top: 24px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

    .availability-calendar-card h3 {
        margin: 0 0 6px;
        font-family: 'Inter', Georgia, serif;
        font-size: 1.2rem;
    }

.availability-calendar {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.calendar-date {
    min-height: 72px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: 0.2s ease;
}

    .calendar-date span {
        font-weight: 800;
    }

    .calendar-date small {
        font-size: 0.68rem;
        color: var(--muted);
    }

    .calendar-date.available:hover {
        border-color: var(--accent);
        background: var(--accent-soft);
        transform: translateY(-1px);
    }

    .calendar-date.unavailable {
        opacity: 0.28;
        cursor: not-allowed;
        text-decoration: line-through;
    }

    .calendar-date.selected {
        background: var(--accent);
        color: #fff;
        border-color: var(--accent);
    }

    .calendar-date.in-range {
        background: var(--accent-soft);
        border-color: var(--border-strong);
    }

.calendar-selection-summary {
    margin-top: 16px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: var(--muted);
}

    .calendar-selection-summary strong {
        color: var(--text);
    }

.availability-calendar-wrapper {
    width: 100%;
}

.availability-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 10px;
}

    .availability-calendar-days div {
        text-align: center;
        font-size: 0.78rem;
        font-weight: 700;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

.calendar-month-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 8px;
}

    .calendar-month-toolbar h3 {
        margin: 0;
        text-align: center;
        flex: 1;
    }

.calendar-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    font-size: 1.6rem;
    line-height: 1;
}

    .calendar-nav-btn:disabled {
        opacity: 0.35;
        cursor: not-allowed;
    }

.month-panel {
    display: none !important;
}

    .month-panel.active {
        display: grid !important;
    }

.calendar-date.outside-month {
    opacity: 0.25;
}

.availability-calendar,
.availability-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

@media (max-width: 760px) {
    .availability-calendar,
    .availability-calendar-days {
        grid-template-columns: repeat(7, minmax(0, 1fr));
        gap: 4px;
    }

    .calendar-date {
        min-height: 54px;
        padding: 4px 2px;
        border-radius: 10px;
    }

        .calendar-date span {
            font-size: 0.78rem;
        }

        .calendar-date small {
            font-size: 0.54rem;
        }

        .calendar-date em {
            display: none;
        }
}
.calendar-selection-actions {
    align-items: center;
    justify-content: space-between;
}

.calendar-book-now-btn {
    margin-left: auto;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid var(--accent);
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(139, 92, 246, 0.28);
    transition: 0.2s ease;
}

    .calendar-book-now-btn:hover:not(:disabled) {
        transform: translateY(-1px);
    }

    .calendar-book-now-btn:disabled {
        opacity: 0.38;
        cursor: not-allowed;
        transform: none;
    }

@media (max-width: 760px) {
    .calendar-selection-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .calendar-book-now-btn {
        width: 100%;
        margin-left: 0;
    }
}
.calendar-date.selected {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 10px 26px rgba(139, 92, 246, 0.32);
}

.calendar-date.in-range {
    background: var(--accent-soft);
    border-color: var(--border-strong);
}
@media (max-width: 760px) {
    .property-layout {
        display: flex;
        flex-direction: column;
    }

    .summary-card {
        order: -1;
        margin-bottom: 18px;
        width:100%;
    }

    .availability-calendar-card {
        order: 1;
    }
}

@media (max-width: 760px) {
    .checkout-page {
        padding: 14px;
    }

    .checkout-layout {
        display: block;
    }

    .checkout-card,
    .checkout-summary,
    .payment-card {
        padding: 16px;
        border-radius: 18px;
        margin-bottom: 14px;
    }

        .checkout-card h1,
        .checkout-card h2,
        .checkout-summary h2 {
            font-size: 1.15rem;
            margin-bottom: 10px;
        }

    .checkout-muted,
    .checkout-helper,
    .security-note,
    .trust-message,
    .long-description {
        display: none !important;
    }

    .payment-methods {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .payment-method-card {
        min-height: auto;
        padding: 10px 12px;
        display: flex;
        align-items: center;
        gap: 10px;
        border-radius: 14px;
    }

        .payment-method-card img,
        .payment-method-card svg,
        .payment-icon {
            width: 34px !important;
            height: 24px !important;
            object-fit: contain;
            flex-shrink: 0;
        }

        .payment-method-card strong {
            font-size: 0.9rem;
        }

        .payment-method-card small,
        .payment-method-card p {
            display: none;
        }

    .checkout-summary-row {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .checkout-total {
        font-size: 1.15rem;
        padding-top: 10px;
    }

    .form-grid,
    .guest-form-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .form-control,
    input,
    select {
        min-height: 44px;
        font-size: 0.95rem;
    }

    .checkout-submit,
    .btn-pay,
    button[type="submit"] {
        width: 100%;
        min-height: 48px;
        border-radius: 999px;
        font-size: 1rem;
        font-weight: 800;
    }

    .checkout-property-image {
        height: 150px;
        border-radius: 16px;
    }
}
.payment-method-compact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 12px 0 18px;
}

.payment-radio-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    font-weight: 800;
}

    .payment-radio-card input {
        width: 16px;
        height: 16px;
        accent-color: var(--accent);
    }

    .payment-radio-card img {
        width: 80px;
        height: 65px;
        object-fit: contain;
    }

    .payment-radio-card:has(input:checked) {
        border-color: var(--accent);
        background: var(--accent-soft);
    }

.checkout-pay-total {
    margin: 16px 0 12px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px;
    border: 1px solid var(--border-strong);
    font-size: 0.8rem !important; 
    /*background: var(--accent-soft);*/
}

    .checkout-pay-total span {
        color: var(--muted);
        font-weight: 700;
    }

    .checkout-pay-total strong {
        color: var(--text);
        font-size: 1.15rem;
        font-weight: 900;
    }

@media (max-width: 760px) {
    .payment-method-compact {
        gap: 8px;
    }

    .payment-radio-card {
        min-height: 44px;
        padding: 8px 10px;
        font-size: 0.84rem;
        border-radius: 12px;
    }

        .payment-radio-card img {
            width: 50px;
            height: 40px;
        }

    .checkout-pay-total {
        position: sticky;
        bottom: 74px;
        z-index: 8;
        margin-top: 12px;
    }

    .btn-pay {
        position: sticky;
        bottom: 14px;
        z-index: 9;
        width: 100%;
    }
}
@media (max-width: 760px) {
    div.quote-request {
        display: none !important;
    }
    description-preview {
        display: none;
    }
    .details-block {
        margin-top: 0;
    }

        .details-block summary {
            font-size: 0.92rem;
        }

        .details-block p {
            margin-top: 10px;
            line-height: 1.6;
        }
    .property-main {
        display: flex;
        flex-direction: column;
    }

    .availability-calendar-card {
        order: 1;
    }

    .property-description-section {
        order: 2;
    }
    .amenities-card {
        order: 3;
    }
    .good-to-know-card {
        order: 4;
    }
}
.details-block summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--accent);
}

html[dir="rtl"] body {
    font-family: "Cairo", "Tajawal", system-ui, sans-serif;
    text-align: right;
}

html[dir="ltr"] body {
    text-align: left;
}

html[dir="rtl"] .site-nav,
html[dir="rtl"] .booking-shell,
html[dir="rtl"] .checkout-layout,
html[dir="rtl"] .property-layout {
    direction: rtl;
}

html[dir="rtl"] .price-row,
html[dir="rtl"] .checkout-pay-total,
html[dir="rtl"] .calendar-selection-summary {
    direction: rtl;
}

html[dir="rtl"] .calendar-book-now-btn {
    margin-left: 0;
    margin-right: auto;
}

html[dir="rtl"] .payment-radio-card {
    flex-direction: row-reverse;
}

html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select {
    text-align: right;
}

html[dir="rtl"] .gallery-nav.prev {
    right: 16px;
    left: auto;
}

html[dir="rtl"] .gallery-nav.next {
    left: 16px;
    right: auto;
}

@media (max-width: 760px) {
    html[dir="rtl"] .checkout-pay-total,
    html[dir="rtl"] .payment-method-compact,
    html[dir="rtl"] .guest-form-grid {
        direction: rtl;
    }

    html[dir="rtl"] .btn-pay,
    html[dir="rtl"] .calendar-book-now-btn {
        text-align: center;
    }

    html[dir="rtl"] .payment-radio-card {
        justify-content: center;
    }
}
.empty-calendar-cell {
    visibility: hidden;
    pointer-events: none;
}
.language-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid currentColor;
    margin-inline-start: 12px;
}

    .language-toggle:hover {
        text-decoration: none;
        opacity: 0.85;
    }

.error-page {
    min-height: 65vh;
    display: flex;
    align-items: center;
    padding: 72px 0;
    background: radial-gradient(circle at top left, rgba(181, 135, 72, 0.16), transparent 34%), linear-gradient(180deg, #fffaf4 0%, #ffffff 100%);
}

.error-shell {
    display: flex;
    justify-content: center;
}

.error-card {
    width: min(720px, 100%);
    text-align: center;
    padding: 52px 44px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(181, 135, 72, 0.22);
    box-shadow: 0 24px 70px rgba(18, 24, 32, 0.08);
}

.error-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    background: #b58748;
}

.error-card .eyebrow {
    margin-bottom: 10px;
}

.error-card h1 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.error-message {
    max-width: 560px;
    margin: 0 auto 24px;
    color: #5f6670;
    font-size: 1.05rem;
    line-height: 1.8;
}

.error-request-id {
    margin: 18px auto 28px;
    padding: 12px 16px;
    max-width: 560px;
    border-radius: 14px;
    background: #f8f3ec;
    color: #5f6670;
    font-size: 0.9rem;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid #b58748;
    color: #b58748;
    text-decoration: none;
    font-weight: 700;
}

    .btn-outline:hover {
        background: #f8f3ec;
        text-decoration: none;
    }

.company-trust-section {
    margin: 48px 0;
}

.company-trust-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
    align-items: center;
    padding: 32px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(181,135,72,.15);
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.company-registration-image img {
    width: 100%;
    border-radius: 18px;
    display: block;
    box-shadow: 0 12px 32px rgba(0,0,0,.12);
    transition: transform .2s ease;
}

    .company-registration-image img:hover {
        transform: translateY(-2px);
    }

.registration-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

    .registration-badges span {
        padding: 8px 14px;
        border-radius: 999px;
        background: rgba(181,135,72,.1);
        color: #8d6a38;
        font-weight: 600;
    }

.contact-highlight {
    margin-top: 28px;
}

.contact-label {
    margin-bottom: 12px;
    font-weight: 600;
    color: #666;
}

.contact-phone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 16px 28px;
}

@media (max-width: 768px) {
    .company-trust-grid {
        grid-template-columns: 1fr;
    }
}

.mobile-header-actions {
    display: none;
}

.desktop-language-toggle {
    display: inline-flex;
}

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

    .desktop-language-toggle {
        display: none;
    }

    .mobile-header-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 12px;
    }

    .nav-hamburger {
        display: inline-flex;
    }

    html[dir="ltr"] .mobile-header-actions {
        flex-direction: row;
    }

    html[dir="rtl"] .mobile-header-actions {
        flex-direction: row-reverse;
    }

    .mobile-language-toggle {
        width: 38px;
        height: 38px;
        min-width: 38px;
        border-radius: 999px;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

.booking-invoice {
    background: #fff;
    border: 1px solid rgba(181,135,72,.18);
    border-radius: 26px;
    padding: 36px;
    box-shadow: 0 18px 55px rgba(18,24,32,.08);
}

.invoice-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 18px;
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid rgba(0,0,0,.08);
    padding-bottom: 24px;
    margin-bottom: 28px;
}

.invoice-logo {
    width: 150px;
    margin-bottom: 18px;
}

.invoice-header h1 {
    margin: 0 0 8px;
}

.invoice-meta {
    min-width: 220px;
    display: grid;
    gap: 12px;
}

    .invoice-meta div {
        padding: 14px 16px;
        border-radius: 16px;
        background: #f8f3ec;
    }

    .invoice-meta span {
        display: block;
        color: #69707a;
        font-size: .85rem;
    }

.invoice-parties {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}

.invoice-party {
    padding: 20px;
    border-radius: 18px;
    background: #fffaf4;
    border: 1px solid rgba(181,135,72,.14);
}

    .invoice-party h3 {
        margin: 8px 0 10px;
    }

    .invoice-party p {
        margin: 4px 0;
        color: #5f6670;
    }

.invoice-property-image {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 28px;
}

.invoice-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 28px;
}

    .invoice-table th {
        text-align: left;
        padding: 14px;
        background: #f8f3ec;
        color: #2f3540;
    }

    .invoice-table td {
        padding: 16px 14px;
        border-bottom: 1px solid rgba(0,0,0,.07);
    }

        .invoice-table td span {
            display: block;
            margin-top: 4px;
            color: #7a818a;
            font-size: .85rem;
        }

.text-end {
    text-align: right;
}

.invoice-bottom {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: start;
}

.payment-note {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,.07);
}

    .payment-note span,
    .payment-note small {
        display: block;
        color: #69707a;
    }

.invoice-total-card {
    padding: 20px;
    border-radius: 20px;
    background: #2f3540;
    color: #fff;
}

    .invoice-total-card table {
        width: 100%;
    }

    .invoice-total-card th,
    .invoice-total-card td {
        padding: 10px 0;
    }

    .invoice-total-card td {
        text-align: right;
    }

.invoice-grand-total {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f5d19a;
}

.invoice-footer-note {
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid rgba(0,0,0,.08);
    color: #69707a;
    font-size: .9rem;
}

@media (max-width: 900px) {
    .invoice-header,
    .invoice-bottom {
        grid-template-columns: 1fr;
        display: grid;
    }

    .invoice-parties {
        grid-template-columns: 1fr;
    }

    .booking-invoice {
        padding: 22px;
    }
}

@media print {
    .site-header,
    .site-footer,
    .no-print,
    .mobile-nav-overlay {
        display: none !important;
    }

    body {
        background: #fff !important;
    }

    .section.shell {
        max-width: 100%;
        padding: 0;
    }

    .booking-invoice {
        border: 0;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
    }

    .invoice-party,
    .invoice-meta div,
    .invoice-total-card {
        break-inside: avoid;
    }

    a[href]:after {
        content: "";
    }
}
.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #111827;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    white-space: nowrap;
}

    .header-phone:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 22px rgba(0,0,0,0.16);
    }

.phone-icon {
    font-size: 16px;
}

@media (max-width: 768px) {
    .header-phone {
        position: fixed;
        left: 16px;
        right: 16px;
        bottom: 18px;
        z-index: 9999;
        justify-content: center;
        padding: 14px 18px;
        font-size: 16px;
        background: #111827;
        color: #ffffff;
        box-shadow: 0 10px 28px rgba(0,0,0,0.28);
    }

    body {
        padding-bottom: 78px;
    }
}

.call-pill {
    display: inline-flex;
    align-items: center;
    width: 46px;
    height: 46px;
    overflow: hidden;
    border-radius: 999px;
    background: #b08a3e;
    color: #fff;
    text-decoration: none;
    transition: all .35s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,.15);
}

    .call-pill:hover {
        width: 190px;
    }

.call-icon {
    min-width: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.call-number {
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity .25s ease, transform .25s ease;
    font-weight: 600;
    font-size: 14px;
    padding-right: 16px;
}

.call-pill:hover .call-number {
    opacity: 1;
    transform: translateX(0);
}
.call-pill {
    animation: phonePulse 2s infinite;
}

@keyframes phonePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(176,138,62,.5);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(176,138,62,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(176,138,62,0);
    }
}
@media (max-width: 768px) {
    .call-pill {
        width: 46px;
    }

    .call-number {
        display: none;
    }
}
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mobile-brand {
    flex: 1;
    min-width: 0;
}

    .mobile-brand .brand-mark {
        max-width: 140px;
        height: auto;
    }

.mobile-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.mobile-call-btn,
.mobile-lang-btn,
.mobile-nav-close {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
}

.mobile-call-btn,
.mobile-lang-btn {
    background: #b08a3e;
    color: #ffffff;
    border: 0;
}

.mobile-nav-close {
    background: #ffffff;
    color: #111827;
    border: 1px solid rgba(0,0,0,.12);
}

@media (max-width: 768px) {

    .mobile-call-btn {
        width: 38px;
        height: 38px;
    }

    .call-number {
        display: none;
    }
}
.mobile-call-btn {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #b08a3e;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: hidden;
    transition: all .35s ease;
}

    .mobile-call-btn i {
        min-width: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.call-number {
    white-space: nowrap;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    font-size: 14px;
    font-weight: 600;
    transition: all .3s ease;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Call button */
.header-call-btn {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #b08a3e;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
    transition: width .3s ease;
    font-weight: 800;
}

    .header-call-btn i {
        min-width: 42px;
        text-align: center;
    }

    .header-call-btn span {
        max-width: 0;
        opacity: 0;
        white-space: nowrap;
        overflow: hidden;
        font-weight: 700;
        font-size:14px;
        transition: all .25s ease;
    }

    .header-call-btn:hover {
        width: 175px;
        font-weight: 800;
    }

        .header-call-btn:hover span {
            max-width: 130px;
            opacity: 1;
            padding-right: 14px;
        }

/* Language */
.header-lang-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #b08a3e;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
}

/* Hamburger */
.nav-hamburger {
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

    .nav-hamburger span {
        width: 24px;
        height: 3px;
        background: #111827;
        border-radius: 99px;
    }

/* Desktop */
@media (min-width: 769px) {
    .nav-hamburger {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .desktop-nav {
        display: none;
    }

    .brand {
        flex: 1;
        min-width: 0;
    }

    .brand-mark {
        max-width: 130px;
        height: auto;
    }

    .header-actions {
        flex-shrink: 0;
        gap: 8px;
    }

    .header-call-btn,
    .header-lang-btn,
    .nav-hamburger {
        width: 38px;
        height: 38px;
    }

        .header-call-btn span {
            display: none;
        }

    .nav-hamburger {
        display: inline-flex;
    }
}
@media (max-width: 768px) {
    .topbar {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 10px;
        padding: 12px 16px;
    }

    .brand {
        flex: 1 1 auto;
        min-width: 0;
        text-align: left;
    }

    html[dir="rtl"] .brand,
    body[dir="rtl"] .brand {
        text-align: right;
    }

    .brand-copy {
        font-size: 12px;
        letter-spacing: 2px;
        white-space: nowrap;
    }

    .brand-mark {
        max-width: 125px;
        height: auto;
        display: block;
    }

    .header-actions {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 8px;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .header-call-btn,
    .header-lang-btn,
    .nav-hamburger {
        width: 38px !important;
        height: 38px !important;
        flex: 0 0 38px;
    }

    .nav-hamburger {
        display: inline-flex !important;
    }

    .desktop-nav {
        display: none !important;
    }
}