:root {
    --bg: #eef4fb;
    --bg-soft: #f7fbff;
    --surface: rgba(255, 255, 255, 0.88);
    --surface-solid: #ffffff;
    --surface-dark: #081325;
    --surface-dark-2: #0d1b31;
    --surface-muted: #f4f8fc;
    --text: #102038;
    --heading: #071423;
    --muted: #5d6f88;
    --primary: #0f7be9;
    --primary-dark: #0a64c5;
    --accent: #38d8ff;
    --accent-soft: rgba(56, 216, 255, 0.18);
    --warm: #ffbf66;
    --line: rgba(15, 32, 56, 0.10);
    --line-strong: rgba(15, 32, 56, 0.16);
    --success: #16a34a;
    --danger: #dc2626;
    --warning: #f59e0b;
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius: 20px;
    --radius-sm: 16px;
    --shadow-soft: 0 18px 40px rgba(7, 20, 35, 0.08);
    --shadow: 0 28px 68px rgba(7, 20, 35, 0.12);
    --shadow-strong: 0 34px 90px rgba(7, 20, 35, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}

body.site-body {
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(56, 216, 255, 0.18), transparent 32%),
        radial-gradient(circle at top right, rgba(15, 123, 233, 0.14), transparent 26%),
        linear-gradient(180deg, #f8fbff 0%, #eef4fb 46%, #f6f9fc 100%);
}

body.admin-body {
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(15, 123, 233, 0.10), transparent 20%),
        linear-gradient(180deg, #eff5fc 0%, #edf3f9 100%);
}

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


p {
    margin: 0 0 1rem;
}

p:last-child {
    margin-bottom: 0;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
    background: none;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    color: var(--primary-dark);
}

main {
    position: relative;
    z-index: 1;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.narrow {
    width: min(860px, calc(100% - 40px));
}

.hidden {
    display: none !important;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
    background: rgba(248, 251, 255, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.84);
    border-color: rgba(15, 32, 56, 0.08);
    box-shadow: 0 12px 34px rgba(7, 20, 35, 0.06);
    backdrop-filter: blur(16px);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
}

.brand,
.admin-brand,
.login-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--heading);
}

.brand strong,
.admin-brand strong,
.login-brand strong {
    display: block;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.brand small,
.admin-brand small,
.login-brand small {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #0f7be9, #38d8ff);
    color: #fff;
    font-size: 1.08rem;
    font-weight: 700;
    box-shadow: 0 16px 36px rgba(15, 123, 233, 0.26);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-title,
.brand-tagline {
    transition: color 0.25s ease, text-shadow 0.25s ease, opacity 0.25s ease;
}

.site-header:not(.is-scrolled) .brand-title {
    color: #ffc44d;
    text-shadow: 0 1px 0 rgba(77, 38, 5, 0.55), 0 6px 18px rgba(0, 0, 0, 0.28);
}

.site-header:not(.is-scrolled) .brand-tagline {
    color: #ffe49b;
    text-shadow: 0 1px 0 rgba(77, 38, 5, 0.45), 0 4px 12px rgba(0, 0, 0, 0.22);
    font-weight: 600;
}

.site-header:not(.is-scrolled) .brand-mark {
    background: linear-gradient(135deg, #ffb72b, #ffd977);
    color: #5f3900;
    box-shadow: 0 16px 36px rgba(255, 183, 43, 0.28);
}

.site-header.is-scrolled .brand-title {
    color: var(--heading);
    text-shadow: none;
}

.site-header.is-scrolled .brand-tagline {
    color: var(--muted);
    text-shadow: none;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.54);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 12px 30px rgba(7, 20, 35, 0.05);
}

.site-nav a:not(.btn) {
    color: var(--text);
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 600;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-nav a:not(.btn):hover {
    color: var(--heading);
    background: rgba(15, 123, 233, 0.08);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 16px;
    border: 1px solid rgba(15, 32, 56, 0.10);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: var(--heading);
}

.section,
.hero-section {
    position: relative;
    padding: 86px 0;
}

.hero-section {
    padding-top: 52px;
    padding-bottom: 54px;
    overflow: hidden;
}

.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(6px);
    pointer-events: none;
}

.hero-section::before {
    width: 520px;
    height: 520px;
    top: -220px;
    right: -100px;
    background: radial-gradient(circle, rgba(56, 216, 255, 0.22), transparent 68%);
}

.hero-section::after {
    width: 420px;
    height: 420px;
    bottom: -180px;
    left: -120px;
    background: radial-gradient(circle, rgba(15, 123, 233, 0.18), transparent 70%);
}

.hero-grid,
.section-grid,
.contact-grid,
.admin-grid,
.process-grid,
.footer-grid,
.trust-grid,
.dashboard-stats,
.testimonial-grid,
.feature-grid,
.product-grid,
.thank-grid {
    display: grid;
    gap: 24px;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: center;
}

.hero-copy,
.hero-visual {
    position: relative;
    z-index: 1;
}

.booking-layout {
    align-items: start;
}

.hero-section h1,
.section h1,
.section h2,
.card h1,
.card h2 {
    margin: 10px 0 16px;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--heading);
}

.hero-section h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    max-width: 12ch;
}

.hero-lead,
.section p,
.card p,
.info-panel p,
.feature-card p,
.process-card p,
.testimonial-card p,
.stat-card small,
.admin-topbar p,
.login-card p,
.login-showcase p {
    color: var(--muted);
}

.hero-lead {
    max-width: 46rem;
    font-size: 1.08rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(15, 123, 233, 0.14);
    background: rgba(15, 123, 233, 0.08);
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-actions,
.form-submit,
.table-actions,
.admin-actions,
.filter-buttons,
.info-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-actions.center {
    justify-content: center;
}

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

.metric-card {
    padding: 18px 18px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(15, 32, 56, 0.08);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

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

.metric-card span {
    display: block;
    font-size: 0.92rem;
    color: var(--muted);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-badges span,
.badge,
.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 600;
    border: 1px solid rgba(15, 123, 233, 0.12);
    background: rgba(15, 123, 233, 0.08);
    color: var(--primary);
}

.badge.soft {
    background: rgba(15, 123, 233, 0.10);
    color: var(--primary-dark);
}

.badge.light {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--heading);
}

.badge.accent {
    background: rgba(255, 191, 102, 0.18);
    border-color: rgba(255, 191, 102, 0.28);
    color: #8a4b00;
}

.chip {
    cursor: pointer;
    color: var(--text);
    border-color: rgba(15, 32, 56, 0.12);
    background: rgba(255, 255, 255, 0.82);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.chip.is-active,
.chip:hover {
    background: linear-gradient(135deg, rgba(15, 123, 233, 0.12), rgba(56, 216, 255, 0.12));
    color: var(--primary-dark);
    border-color: rgba(15, 123, 233, 0.18);
    transform: translateY(-1px);
}

.hero-card,
.card,
.info-panel,
.product-card,
.feature-card,
.process-card,
.testimonial-card,
.stat-card,
.login-card,
.thank-box,
.login-showcase,
.footer-cta {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 32, 56, 0.08);
    box-shadow: var(--shadow);
}

.hero-card,
.card,
.info-panel,
.product-card,
.feature-card,
.testimonial-card,
.stat-card,
.login-card,
.thank-box {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
}

.hero-card {
    position: relative;
    overflow: hidden;
}

.hero-card-media {
    position: relative;
    padding: 18px 18px 0;
}

.hero-card-media img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(15, 123, 233, 0.12), rgba(56, 216, 255, 0.16));
}

.hero-card-badges {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-card-content {
    padding: 24px 24px 26px;
}

.hero-card-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.hero-card-head h3 {
    margin: 10px 0 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--heading);
}

.hero-score {
    min-width: 92px;
    padding: 14px 14px 12px;
    border-radius: 18px;
    background: rgba(15, 123, 233, 0.08);
    border: 1px solid rgba(15, 123, 233, 0.10);
    text-align: center;
}

.hero-score strong {
    display: block;
    font-size: 1.45rem;
    line-height: 1;
    color: var(--heading);
}

.hero-score small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
}

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

.check-list li {
    position: relative;
    padding-left: 34px;
    color: var(--muted);
}

.check-list.premium li {
    font-size: 0.98rem;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    top: 2px;
    left: 0;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(15, 123, 233, 0.14), rgba(56, 216, 255, 0.16));
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 800;
}

.floating-card {
    position: absolute;
    z-index: 2;
    min-width: 190px;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(7, 20, 35, 0.86);
    color: #f4fbff;
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(14px);
}

.floating-card span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.floating-card strong {
    display: block;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.floating-card-primary {
    top: 8%;
    right: -5%;
}

.floating-card-secondary {
    left: -6%;
    bottom: 10%;
    background: rgba(15, 123, 233, 0.88);
}

.trust-bar {
    padding: 10px 0 0;
}

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

.trust-grid > * {
    padding: 22px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.80);
    border: 1px solid rgba(15, 32, 56, 0.08);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.trust-grid small {
    display: block;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 8px;
}

.trust-grid strong {
    display: block;
    margin-bottom: 8px;
    color: var(--heading);
}

.trust-grid p {
    margin: 0;
    font-size: 0.96rem;
    color: var(--muted);
}

.section.muted {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(245, 249, 254, 0.78));
}

.section-dark {
    background:
        radial-gradient(circle at top left, rgba(56, 216, 255, 0.18), transparent 24%),
        radial-gradient(circle at bottom right, rgba(15, 123, 233, 0.18), transparent 26%),
        linear-gradient(180deg, #081325 0%, #07101f 100%);
    color: #e9f2ff;
}

.section-dark h2,
.section-dark h3,
.section-dark p {
    color: inherit;
}

.section-dark .eyebrow {
    background: rgba(56, 216, 255, 0.12);
    border-color: rgba(56, 216, 255, 0.18);
    color: #7ae6ff;
}

.section-dark .section-head p,
.section-dark .process-card p {
    color: rgba(233, 242, 255, 0.72);
}

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

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.section-head.compact {
    margin-bottom: 20px;
}

.section-head.section-head-centered {
    justify-content: center;
    text-align: center;
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
}

.feature-card {
    padding: 24px;
}

.feature-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 16px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(15, 123, 233, 0.14), rgba(56, 216, 255, 0.18));
    color: var(--primary-dark);
    font-size: 0.92rem;
    font-weight: 700;
}

.feature-card h3,
.process-card h3,
.product-body h3,
.testimonial-card strong,
.card h3,
.info-panel h3,
.footer-cta h3 {
    margin: 0 0 10px;
    color: var(--heading);
    letter-spacing: -0.02em;
}

.info-panel,
.card,
.login-card,
.thank-you-card {
    padding: 28px;
}

.info-panel {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(56, 216, 255, 0.16), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.90), rgba(248, 251, 255, 0.92));
}

.info-panel::after {
    content: "";
    position: absolute;
    top: -34px;
    right: -34px;
    width: 140px;
    height: 140px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(15, 123, 233, 0.16), transparent 70%);
}

.info-panel > * {
    position: relative;
    z-index: 1;
}

.info-list,
.footer-list,
.mini-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.info-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
}

.info-list li,
.footer-list li {
    color: var(--text);
}

.info-list strong,
.footer-list strong {
    color: var(--heading);
}

.footer-list {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.footer-list.ordered,
.info-list.ordered {
    list-style: decimal;
    padding-left: 22px;
}

.info-list.ordered li,
.footer-list.ordered li {
    padding-left: 4px;
}

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

.product-card {
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(15, 123, 233, 0.10);
}

.product-card.hidden {
    display: none;
}

.product-image-wrap {
    position: relative;
    padding: 18px 18px 0;
    background: linear-gradient(180deg, rgba(15, 123, 233, 0.08), rgba(56, 216, 255, 0.10));
}

.product-image-wrap img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 22px;
}

.product-topbar {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: flex-start;
}

.product-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.product-overlay {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(7, 20, 35, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
}

.product-overlay strong {
    color: #fff;
    font-size: 0.98rem;
    letter-spacing: -0.01em;
}

.product-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    padding: 22px 22px 24px;
}

.product-copy {
    display: grid;
    gap: 10px;
}

.product-body h3 {
    font-size: 1.18rem;
}

.product-meta {
    margin: 0;
    font-size: 0.92rem;
    color: var(--muted);
}

.mini-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mini-list li {
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(15, 123, 233, 0.06);
    border: 1px solid rgba(15, 123, 233, 0.08);
    color: var(--text);
    font-size: 0.86rem;
}

.product-actions {
    display: grid;
    gap: 10px;
    margin-top: auto;
}

.product-empty {
    margin-top: 20px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px dashed rgba(15, 123, 233, 0.24);
    color: var(--muted);
}

.product-card-empty {
    grid-column: 1 / -1;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--heading);
    font-weight: 700;
    font-size: 0.94rem;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(15, 32, 56, 0.12);
    border-radius: 16px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--text);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.60);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

input::placeholder,
textarea::placeholder {
    color: #8a97ab;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(15, 123, 233, 0.34);
    box-shadow: 0 0 0 4px rgba(15, 123, 233, 0.10);
}

textarea {
    min-height: 118px;
    resize: vertical;
}

.checkbox-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.checkbox-row label,
.stack-form label {
    color: var(--text);
}

.checkbox-row input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    accent-color: var(--primary);
}

.booking-form.card {
    padding: 26px;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.booking-form.is-highlighted {
    border-color: rgba(15, 123, 233, 0.20);
    box-shadow: 0 0 0 4px rgba(15, 123, 233, 0.08), var(--shadow-strong);
    transform: translateY(-2px);
}

.selected-product-banner {
    display: grid;
    gap: 6px;
    margin-bottom: 18px;
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(15, 123, 233, 0.10), rgba(56, 216, 255, 0.12));
    border: 1px solid rgba(15, 123, 233, 0.12);
}

.selected-product-banner strong {
    color: var(--heading);
    letter-spacing: -0.02em;
}

.selected-product-banner small {
    color: var(--muted);
}

.payment-box,
.thank-box {
    border-radius: 22px;
    padding: 22px;
    border: 1px solid rgba(15, 123, 233, 0.10);
    background: linear-gradient(180deg, rgba(15, 123, 233, 0.05), rgba(255, 255, 255, 0.82));
}

.payment-box h4,
.payment-box h3,
.thank-box h3 {
    margin-top: 0;
    color: var(--heading);
}

.process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 26px;
}

.process-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: #f0f6ff;
    box-shadow: none;
    backdrop-filter: blur(16px);
}

.process-card::after {
    content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(56, 216, 255, 0.14), transparent 70%);
}

.process-number {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0f7be9, #38d8ff);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 18px 38px rgba(15, 123, 233, 0.28);
}

.testimonial-head {
    align-items: center;
}

.rating-summary {
    min-width: 180px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 32, 56, 0.08);
    box-shadow: var(--shadow-soft);
    text-align: right;
}

.rating-summary strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    color: var(--heading);
}

.rating-summary span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}

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

.testimonial-card {
    position: relative;
    padding: 24px;
}

.testimonial-card::before {
    content: "“";
    position: absolute;
    top: 10px;
    right: 18px;
    color: rgba(15, 123, 233, 0.10);
    font-size: 4rem;
    line-height: 1;
    font-weight: 700;
}

.testimonial-card .rating {
    color: var(--warning);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.testimonial-card p {
    position: relative;
    z-index: 1;
}

.testimonial-card small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
}

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

.map-wrap {
    margin-top: 26px;
}

.map-wrap iframe {
    width: 100%;
    min-height: 380px;
    border: 0;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.site-footer {
    position: relative;
    padding: 0 0 108px;
    background:
        radial-gradient(circle at top right, rgba(56, 216, 255, 0.16), transparent 18%),
        linear-gradient(180deg, #07111f 0%, #050c16 100%);
    color: #d9e6fb;
    overflow: hidden;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-cta {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto;
    gap: 24px;
    align-items: center;
    padding: 28px 30px;
    margin-bottom: 24px;
    transform: translateY(-46px);
    background: linear-gradient(135deg, rgba(16, 37, 67, 0.92), rgba(7, 20, 35, 0.98));
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.footer-cta h3 {
    color: #fff;
    margin-bottom: 8px;
}

.footer-cta p {
    margin: 0;
    color: rgba(217, 230, 251, 0.72);
}

.footer-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.85fr) minmax(0, 0.85fr);
    align-items: start;
    margin-top: -10px;
}

.site-footer h3,
.site-footer h4 {
    color: #ffffff;
    margin: 0 0 10px;
}

.site-footer p,
.site-footer a,
.site-footer li,
.site-footer small,
.footer-list li {
    color: rgba(217, 230, 251, 0.75);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding-top: 22px;
    margin-top: 30px;
    border-top: 1px solid rgba(217, 230, 251, 0.12);
    font-size: 0.92rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn.small {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #2da3ff);
    color: #fff;
    box-shadow: 0 16px 32px rgba(15, 123, 233, 0.24);
}

.btn-primary:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-outline {
    background: rgba(255, 255, 255, 0.88);
    color: var(--heading);
    border-color: rgba(15, 32, 56, 0.12);
    box-shadow: 0 10px 22px rgba(7, 20, 35, 0.05);
}

.site-footer .btn-outline,
.sticky-cta .btn-outline {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.site-footer .btn-outline:hover,
.sticky-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.btn-block {
    width: 100%;
}

.alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid transparent;
}

.alert-success {
    color: #166534;
    background: rgba(22, 163, 74, 0.10);
    border-color: rgba(22, 163, 74, 0.18);
}

.alert-error {
    color: #991b1b;
    background: rgba(220, 38, 38, 0.10);
    border-color: rgba(220, 38, 38, 0.18);
}

.table-wrap {
    overflow: auto;
}

.table-wrap.card {
    padding: 0;
    overflow: hidden;
}

.admin-table {
    width: 100%;
    min-width: 760px;
    border-collapse: separate;
    border-spacing: 0;
}

.admin-table th,
.admin-table td {
    padding: 15px 14px;
    border-bottom: 1px solid rgba(15, 32, 56, 0.08);
    text-align: left;
    vertical-align: top;
    color: var(--text);
}

.admin-table thead th {
    background: #f6faff;
    color: #44556f;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.admin-table tbody tr:hover {
    background: rgba(15, 123, 233, 0.03);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.20);
    font-size: 0.8rem;
    font-weight: 700;
}

.status-new {
    background: rgba(15, 123, 233, 0.10);
    color: var(--primary-dark);
}

.status-contacted {
    background: rgba(245, 158, 11, 0.12);
    color: #9a5d02;
}

.status-paid_dp {
    background: rgba(22, 163, 74, 0.12);
    color: #166534;
}

.status-confirmed {
    background: rgba(20, 184, 166, 0.12);
    color: #0f766e;
}

.status-closed {
    background: rgba(100, 116, 139, 0.12);
    color: #475569;
}

.admin-shell {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    min-height: 100vh;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 26px 20px;
    color: #dbe8ff;
    background:
        radial-gradient(circle at top right, rgba(56, 216, 255, 0.12), transparent 24%),
        linear-gradient(180deg, #071323 0%, #0a182d 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-sidebar-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.admin-sidebar a {
    color: inherit;
}

.admin-sidebar-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(219, 232, 255, 0.82);
    font-size: 0.82rem;
    font-weight: 600;
}

.admin-nav {
    display: grid;
    gap: 8px;
    margin: 28px 0 auto;
}

.admin-nav a {
    padding: 13px 16px;
    border-radius: 16px;
    color: rgba(219, 232, 255, 0.80);
    border: 1px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.admin-nav a.active,
.admin-nav a:hover {
    color: #fff;
    background: linear-gradient(135deg, rgba(15, 123, 233, 0.24), rgba(56, 216, 255, 0.16));
    border-color: rgba(56, 216, 255, 0.16);
    transform: translateX(4px);
}

.admin-sidebar-foot {
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-sidebar-foot span,
.admin-sidebar-foot small {
    display: block;
    color: rgba(219, 232, 255, 0.74);
}

.admin-sidebar-foot strong {
    display: block;
    margin: 6px 0 4px;
    color: #fff;
}

.admin-main {
    padding: 28px 30px 38px;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    padding: 24px 26px;
    margin-bottom: 24px;
    border-radius: 30px;
    border: 1px solid rgba(15, 32, 56, 0.08);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.admin-topbar h1 {
    margin: 8px 0 6px;
    font-size: clamp(1.7rem, 3.6vw, 2.5rem);
}

.admin-content {
    display: grid;
    gap: 24px;
}

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

.stat-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
}

.stat-card::after {
    content: "";
    position: absolute;
    top: -28px;
    right: -28px;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(56, 216, 255, 0.20), transparent 70%);
}

.stat-card span {
    display: block;
    color: var(--muted);
    margin-bottom: 12px;
}

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

.admin-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
    align-items: start;
}

.divider {
    height: 1px;
    background: rgba(15, 32, 56, 0.10);
    margin: 22px 0;
}

.stack-form {
    display: grid;
    gap: 18px;
}

.stack-links {
    display: grid;
    gap: 12px;
}

.filter-form {
    padding: 22px;
}

.image-preview {
    max-width: 320px;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(15, 32, 56, 0.12);
    box-shadow: var(--shadow-soft);
}

.image-preview img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.login-body {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 28px;
    background:
        radial-gradient(circle at top left, rgba(56, 216, 255, 0.16), transparent 28%),
        radial-gradient(circle at bottom right, rgba(15, 123, 233, 0.16), transparent 24%),
        linear-gradient(180deg, #edf4fb 0%, #f5f8fc 100%);
}

.login-shell {
    width: min(1180px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    gap: 24px;
    align-items: stretch;
}

.login-showcase {
    position: relative;
    overflow: hidden;
    padding: 38px;
    color: #eef6ff;
    background:
        radial-gradient(circle at top right, rgba(56, 216, 255, 0.18), transparent 26%),
        linear-gradient(180deg, #071423 0%, #0a1830 100%);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 36px 80px rgba(5, 12, 26, 0.28);
}

.login-showcase::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(56, 216, 255, 0.18), transparent 68%);
}

.login-showcase > * {
    position: relative;
    z-index: 1;
}

.login-showcase .brand {
    color: #fff;
}

.login-showcase .brand small,
.login-showcase p,
.login-feature span {
    color: rgba(238, 246, 255, 0.76);
}

.login-showcase .eyebrow {
    margin-top: 30px;
    background: rgba(56, 216, 255, 0.12);
    border-color: rgba(56, 216, 255, 0.14);
    color: #7be8ff;
}

.login-showcase h1 {
    margin: 16px 0 14px;
    font-size: clamp(2.4rem, 4vw, 3.7rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
    color: #fff;
}

.login-feature-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.login-feature {
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.login-feature strong {
    display: block;
    color: #fff;
    margin-bottom: 6px;
}

.login-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
}

.login-card h1 {
    margin-bottom: 10px;
}

.login-help {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(15, 123, 233, 0.06);
    color: #1e3a8a;
    border: 1px solid rgba(15, 123, 233, 0.10);
}

.thank-you-card {
    text-align: center;
}

.success-mark {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    border-radius: 24px;
    background: linear-gradient(135deg, #16a34a, #4ade80);
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 20px 42px rgba(22, 163, 74, 0.24);
}

.thank-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 26px 0;
    text-align: left;
}

.sticky-cta {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    width: min(560px, calc(100% - 24px));
    padding: 12px;
    display: flex;
    gap: 12px;
    z-index: 45;
    border-radius: 24px;
    background: rgba(7, 20, 35, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
    transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
}

.sticky-cta.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(16px);
}

.sticky-cta .btn {
    flex: 1;
}

@media (max-width: 1140px) {
    .hero-grid,
    .section-grid,
    .contact-grid,
    .admin-grid,
    .process-grid,
    .trust-grid,
    .feature-grid,
    .dashboard-stats,
    .testimonial-grid,
    .product-grid,
    .footer-grid,
    .thank-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-grid {
        gap: 28px;
    }

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

    .admin-shell {
        grid-template-columns: 270px minmax(0, 1fr);
    }

    .floating-card-primary {
        right: -2%;
    }

    .floating-card-secondary {
        left: -2%;
    }
}

@media (max-width: 980px) {
    .site-nav {
        gap: 6px;
    }

    .hero-grid,
    .section-grid,
    .contact-grid,
    .product-grid,
    .feature-grid,
    .process-grid,
    .testimonial-grid,
    .dashboard-stats,
    .trust-grid,
    .footer-grid,
    .form-grid,
    .thank-grid,
    .login-shell,
    .admin-grid {
        grid-template-columns: 1fr;
    }

    .hero-section h1 {
        max-width: 100%;
    }

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

    .floating-card-primary,
    .floating-card-secondary {
        position: static;
        margin-top: 16px;
    }

    .section-head,
    .admin-topbar,
    .footer-bottom,
    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-cta {
        grid-template-columns: 1fr;
        transform: translateY(-36px);
    }

    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: relative;
        height: auto;
    }

    .admin-main {
        padding-top: 0;
    }

    .login-shell {
        width: min(760px, 100%);
    }
}

@media (max-width: 760px) {
    .container,
    .narrow {
        width: min(100%, calc(100% - 28px));
    }

    .section,
    .hero-section {
        padding-top: 62px;
        padding-bottom: 62px;
    }

    .nav-toggle {
        display: inline-grid;
        place-items: center;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 14px;
        left: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(15, 32, 56, 0.10);
        box-shadow: var(--shadow);
        backdrop-filter: blur(16px);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a:not(.btn) {
        padding: 12px 14px;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .section-head,
    .admin-topbar,
    .footer-bottom {
        align-items: flex-start;
    }

    .rating-summary {
        width: 100%;
        text-align: left;
    }

    .hero-card-head {
        flex-direction: column;
    }

    .product-topbar,
    .hero-card-badges {
        left: 24px;
        right: 24px;
    }

    .product-overlay {
        left: 28px;
        right: 28px;
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-main {
        padding: 18px 14px 32px;
    }

    .admin-topbar,
    .info-panel,
    .card,
    .login-card,
    .login-showcase,
    .thank-you-card,
    .booking-form.card,
    .footer-cta {
        padding: 22px;
    }

    .sticky-cta {
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .hero-section h1 {
        font-size: clamp(2.3rem, 12vw, 3rem);
    }

    .eyebrow {
        letter-spacing: 0.10em;
    }

    .btn,
    .btn.small {
        width: 100%;
    }

    .hero-actions,
    .form-submit,
    .admin-actions,
    .filter-buttons,
    .info-pills {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions.center {
        align-items: stretch;
    }

    .product-overlay {
        position: static;
        margin: 14px 18px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    [data-reveal],
    .btn,
    .product-card,
    .site-header,
    .sticky-cta,
    .admin-nav a,
    .chip {
        transition: none !important;
        transform: none !important;
    }

    [data-reveal] {
        opacity: 1 !important;
    }
}

.helper-text {
    margin-top: -8px;
    color: var(--muted);
    font-size: 0.95rem;
}

.inline-option {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--heading);
    font-weight: 600;
}

.inline-option input[type="checkbox"] {
    margin-top: 4px;
}

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

.image-card {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(15, 32, 56, 0.10);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-soft);
}

.image-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.image-card-head strong {
    display: block;
    margin-bottom: 4px;
}

.image-card-head small,
.image-meta {
    color: var(--muted);
}

.image-card .image-preview {
    max-width: none;
    width: 100%;
}

.image-meta {
    display: block;
    word-break: break-all;
    font-size: 0.93rem;
}

.product-cell {
    min-width: 320px;
}

.product-row {
    display: grid;
    grid-template-columns: 98px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.table-thumb {
    width: 98px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(15, 32, 56, 0.12);
    box-shadow: var(--shadow-soft);
}

.source-pill {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 123, 233, 0.08);
    border: 1px solid rgba(15, 123, 233, 0.12);
    color: #1d4ed8;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .image-panels {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .product-row {
        grid-template-columns: 1fr;
    }

    .table-thumb {
        width: min(180px, 100%);
    }
}


/* =========================================================
   Luxe UI refresh inspired by haven-stays-main
   Public-site only refresh. Existing admin rules remain.
   ========================================================= */

:root {
    --bg: #f8f4ee;
    --bg-soft: #fcf8f3;
    --surface: rgba(255, 255, 255, 0.92);
    --surface-solid: #ffffff;
    --surface-dark: #161f27;
    --surface-dark-2: #1d2832;
    --surface-muted: #f2ebe2;
    --text: #24313c;
    --heading: #15202a;
    --muted: #6e6b66;
    --primary: #c6a46b;
    --primary-dark: #ab8851;
    --accent: #d1b06e;
    --accent-soft: rgba(198, 164, 107, 0.14);
    --warm: #efe2cf;
    --line: rgba(21, 32, 42, 0.10);
    --line-strong: rgba(21, 32, 42, 0.16);
    --shadow-soft: 0 1px 2px rgba(17, 24, 39, 0.04), 0 10px 30px rgba(17, 24, 39, 0.06);
    --shadow: 0 18px 60px rgba(17, 24, 39, 0.10);
    --shadow-strong: 0 28px 80px rgba(17, 24, 39, 0.16);
    --radius-xl: 36px;
    --radius-lg: 28px;
    --radius: 22px;
    --radius-sm: 16px;
}

body.site-body {
    font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(198, 164, 107, 0.12), transparent 34%),
        linear-gradient(180deg, #f9f5ef 0%, #f7f1e9 48%, #f6efe6 100%);
}

body.site-body h1,
body.site-body h2,
body.site-body h3,
body.site-body h4,
body.site-body h5 {
    font-family: "Cormorant Garamond", Georgia, serif;
    letter-spacing: -0.03em;
    color: var(--heading);
    margin: 0 0 1rem;
    line-height: 1.05;
}

body.site-body p,
body.site-body li,
body.site-body label,
body.site-body input,
body.site-body select,
body.site-body textarea,
body.site-body small,
body.site-body span {
    font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
}

body.site-body a {
    color: inherit;
}

main {
    overflow: clip;
}

.section {
    position: relative;
    padding: 110px 0;
}

.section-copy {
    max-width: 720px;
    color: var(--muted);
    font-size: 1.03rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.24em;
}

.eyebrow.soft-light {
    color: rgba(255, 241, 214, 0.82);
}

.section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 26px;
    margin-bottom: 34px;
}

.section-head h2,
.luxe-about h2,
.luxe-booking h2,
.luxe-contact h2 {
    font-size: clamp(2.65rem, 5vw, 4.6rem);
}

.card,
.info-panel,
.product-card,
.feature-card,
.testimonial-card,
.stat-card,
.login-card,
.thank-box,
.footer-cta,
.thank-you-card {
    border-radius: 28px;
    border: 1px solid rgba(21, 32, 42, 0.08);
    background: rgba(255, 255, 255, 0.90);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.btn {
    position: relative;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn.small {
    min-height: 42px;
}

.btn-primary {
    background: linear-gradient(135deg, #d7bb82 0%, #c6a46b 55%, #af8852 100%);
    color: #16212a;
    box-shadow: 0 12px 28px rgba(175, 136, 82, 0.24);
}

.btn-primary:hover {
    color: #16212a;
    background: linear-gradient(135deg, #e0c78f 0%, #c8a66d 55%, #b08651 100%);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.82);
    color: var(--heading);
    border-color: rgba(21, 32, 42, 0.12);
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.96);
    color: var(--heading);
}

.glass-light {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px);
}

.glass-light:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    backdrop-filter: none;
    transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, backdrop-filter 0.28s ease;
}

.site-header.is-scrolled {
    background: rgba(248, 244, 238, 0.84);
    border-color: rgba(21, 32, 42, 0.08);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

.site-header.is-scrolled .brand {
    color: var(--heading);
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.site-header.is-scrolled .brand-mark,
.site-footer .brand-mark,
.footer-brand .brand-mark {
    background: var(--surface-dark);
    border-color: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.brand strong {
    display: block;
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.brand small {
    display: block;
    opacity: 0.76;
    margin-top: 2px;
    font-size: 0.76rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-nav > a:not(.btn) {
    padding: 10px 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.94rem;
    font-weight: 600;
    transition: color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled .site-nav > a:not(.btn) {
    color: rgba(21, 32, 42, 0.78);
}

.site-nav > a:not(.btn):hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.site-header.is-scrolled .site-nav > a:not(.btn):hover {
    background: rgba(21, 32, 42, 0.06);
    color: var(--heading);
}

.nav-ghost {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
}

.site-header.is-scrolled .nav-ghost {
    background: transparent;
    color: var(--heading);
    border-color: rgba(21, 32, 42, 0.12);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.site-header.is-scrolled .nav-toggle {
    background: rgba(21, 32, 42, 0.04);
    border-color: rgba(21, 32, 42, 0.08);
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
}

.site-header.is-scrolled .nav-toggle span {
    background: var(--heading);
}

/* Hero */
.luxe-hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    color: #fff;
}

.luxe-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.luxe-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(13, 19, 26, 0.20) 0%, rgba(16, 24, 32, 0.42) 42%, rgba(16, 24, 32, 0.86) 100%),
        radial-gradient(circle at 20% 20%, rgba(198, 164, 107, 0.24), transparent 32%);
}

.luxe-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 100svh;
    padding-top: 150px;
    padding-bottom: 64px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.luxe-hero-copy {
    max-width: 760px;
}

.hero-line {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}

.hero-line span {
    width: 52px;
    height: 1px;
    background: var(--accent);
}

.luxe-hero h1 {
    margin-bottom: 20px;
    color: #fff;
    font-size: clamp(3.6rem, 7vw, 6.4rem);
    line-height: 0.98;
    max-width: 880px;
}

.hero-lead.luxe {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-actions.center {
    justify-content: center;
}

.hero-trust-row {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 22px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
}

.hero-trust-row > span {
    position: relative;
}

.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 600;
}

.stars {
    color: var(--accent);
    letter-spacing: 0.14em;
}

.hero-search-card {
    width: min(100%, 1180px);
    margin-top: 56px;
    padding: 12px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
    gap: 10px;
    border-radius: 28px;
    background: rgba(248, 244, 238, 0.94);
    box-shadow: var(--shadow-strong);
    color: var(--heading);
    backdrop-filter: blur(18px);
}

.hero-search-item {
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(21, 32, 42, 0.06);
}

.hero-search-item small {
    display: block;
    margin-bottom: 6px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.hero-search-item strong {
    display: block;
    color: var(--heading);
    font-size: 1rem;
    line-height: 1.4;
}

.hero-search-action {
    min-height: 100%;
    padding-inline: 28px;
}

/* Intro strip */
.luxe-intro-strip {
    padding-top: 34px;
    padding-bottom: 0;
    margin-top: -52px;
    z-index: 2;
}

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

.intro-strip-card {
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 251, 247, 0.94);
    border: 1px solid rgba(21, 32, 42, 0.08);
    box-shadow: var(--shadow-soft);
}

.intro-strip-card small {
    display: block;
    margin-bottom: 10px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.intro-strip-card strong {
    display: block;
    margin-bottom: 8px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.9rem;
    color: var(--heading);
    line-height: 1.08;
}

.intro-strip-card p {
    color: var(--muted);
}

/* About */
.luxe-about-grid,
.luxe-booking-grid,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 34px;
    align-items: start;
}

.luxe-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.luxe-feature-card {
    padding: 28px 26px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 242, 233, 0.90));
    border: 1px solid rgba(21, 32, 42, 0.08);
    box-shadow: var(--shadow-soft);
}

.feature-icon {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #d7bb82, #b08651);
    color: #16212a;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.luxe-feature-card h3 {
    margin-bottom: 12px;
    font-size: 2rem;
}

.luxe-feature-card p {
    color: var(--muted);
}

.luxe-aside-card,
.luxe-booking-aside {
    padding: 34px;
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 239, 231, 0.92));
    border: 1px solid rgba(21, 32, 42, 0.08);
    box-shadow: var(--shadow);
}

.luxe-aside-card h3,
.luxe-booking-aside h3 {
    font-size: 2.6rem;
    margin-bottom: 18px;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 26px 0 24px;
    overflow: hidden;
    border-radius: 26px;
    background: rgba(21, 32, 42, 0.10);
}

.stats-strip > div {
    padding: 24px;
    background: rgba(255, 255, 255, 0.78);
    text-align: center;
}

.stats-strip strong {
    display: block;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2.3rem;
    color: var(--primary-dark);
}

.stats-strip small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.74rem;
}

.info-list {
    display: grid;
    gap: 12px;
    padding-left: 0;
    margin: 0 0 22px;
    list-style: none;
}

.info-list li {
    color: var(--text);
}

.luxe-list li {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(21, 32, 42, 0.08);
}

.luxe-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.luxe-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(21, 32, 42, 0.08);
}

/* Collection */
.luxe-collection {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(245, 238, 229, 0.64));
}

.luxe-head p {
    max-width: 640px;
    color: var(--muted);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(21, 32, 42, 0.10);
    background: rgba(255, 255, 255, 0.76);
    color: rgba(21, 32, 42, 0.72);
    font-size: 0.88rem;
    font-weight: 700;
    transition: all 0.22s ease;
}

.chip:hover,
.chip.is-active {
    background: var(--surface-dark);
    border-color: var(--surface-dark);
    color: #fff;
}

.luxe-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.luxe-product-card {
    overflow: hidden;
    border-radius: 30px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.luxe-product-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #e8dfd1;
}

.luxe-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

.luxe-product-card:hover .luxe-product-media img {
    transform: scale(1.05);
}

.luxe-product-badge-row {
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.luxe-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(248, 244, 238, 0.92);
    color: var(--heading);
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.08);
}

.luxe-pill.soft {
    background: rgba(22, 31, 39, 0.84);
    color: #fff;
}

.luxe-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
}

.luxe-product-body {
    padding: 28px;
}

.luxe-product-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.luxe-product-head h3 {
    margin: 0 0 8px;
    font-size: 2.15rem;
}

.product-meta {
    color: var(--muted);
    margin: 0;
}

.luxe-price {
    text-align: right;
    flex-shrink: 0;
}

.luxe-price strong {
    display: block;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
    color: var(--heading);
    line-height: 1;
}

.luxe-price small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.product-excerpt {
    color: var(--muted);
    min-height: 3.5em;
}

.luxe-meta-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0 24px;
    padding: 22px 0 0;
    list-style: none;
    border-top: 1px solid rgba(21, 32, 42, 0.08);
}

.luxe-meta-list li {
    min-width: 0;
}

.luxe-meta-list span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.luxe-meta-list strong {
    display: block;
    color: var(--heading);
    font-size: 0.96rem;
    line-height: 1.5;
}

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

.product-card-empty .luxe-product-body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-empty {
    margin-top: 20px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(21, 32, 42, 0.08);
    color: var(--muted);
}

/* Experiences */
.luxe-experience-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 24px;
    align-items: end;
    margin-bottom: 30px;
}

.luxe-experience-head p {
    color: var(--muted);
}

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

.experience-card {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
}

.experience-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

.experience-card:hover img {
    transform: scale(1.06);
}

.experience-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(22, 31, 39, 0.12) 0%, rgba(22, 31, 39, 0.84) 100%);
}

.experience-content {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    z-index: 2;
    padding: 30px;
    color: #fff;
}

.experience-content h3 {
    color: #fff;
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.experience-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

/* Booking */
.luxe-booking {
    background:
        radial-gradient(circle at top right, rgba(198, 164, 107, 0.16), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(244, 237, 228, 0.80));
}

.luxe-form-card {
    padding: 34px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    border: 1px solid rgba(21, 32, 42, 0.08);
}

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

.form-group label {
    color: var(--heading);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

input,
select,
textarea {
    border-radius: 18px;
    border: 1px solid rgba(21, 32, 42, 0.12);
    background: rgba(252, 248, 243, 0.88);
    color: var(--text);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(198, 164, 107, 0.42);
    box-shadow: 0 0 0 4px rgba(198, 164, 107, 0.12);
}

.selected-product-banner {
    margin-bottom: 20px;
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(198, 164, 107, 0.12), rgba(175, 136, 82, 0.08));
    border: 1px solid rgba(198, 164, 107, 0.18);
}

.selected-product-banner strong {
    color: var(--heading);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.6rem;
}

.form-submit {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.form-submit .btn {
    min-width: 210px;
}

.luxe-panel-box,
.payment-box,
.thank-box {
    border-radius: 24px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(21, 32, 42, 0.08);
    box-shadow: none;
}

.luxe-panel-box + .luxe-panel-box {
    margin-top: 16px;
}

/* Process */
.luxe-process {
    background:
        radial-gradient(circle at top left, rgba(209, 176, 110, 0.08), transparent 28%),
        linear-gradient(180deg, #161f27 0%, #1a2530 100%);
    color: rgba(255, 255, 255, 0.8);
}

.luxe-process .eyebrow,
.luxe-process h2,
.luxe-process p,
.luxe-testimonials .eyebrow,
.luxe-testimonials h2 {
    color: inherit;
}

.luxe-process h2 {
    color: #fff;
}

.section-head-centered {
    text-align: center;
    justify-content: center;
}

.section-head-centered > div {
    max-width: 760px;
}

.luxe-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.luxe-process-card {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
    color: rgba(255, 255, 255, 0.78);
}

.luxe-process-card::after {
    content: "";
    position: absolute;
    inset: auto -28px -28px auto;
    width: 130px;
    height: 130px;
    border-radius: 999px;
    background: rgba(209, 176, 110, 0.08);
}

.process-number {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #d9bf88, #b08651);
    color: #16212a;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
}

.luxe-process-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
    color: #fff;
    font-size: 2.2rem;
}

.luxe-process-card p {
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Testimonials */
.luxe-testimonials {
    background: var(--surface-dark);
    color: rgba(255, 255, 255, 0.82);
}

.luxe-testimonial-head h2 {
    color: #fff;
}

.luxe-rating-summary {
    padding: 20px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: right;
}

.luxe-rating-summary strong {
    display: block;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2.4rem;
    color: var(--accent);
}

.luxe-rating-summary span {
    color: rgba(255, 255, 255, 0.62);
}

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

.luxe-testimonial-card {
    padding: 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.10);
    box-shadow: none;
    color: rgba(255, 255, 255, 0.85);
}

.luxe-testimonial-card .rating {
    margin-bottom: 16px;
    color: var(--accent);
    letter-spacing: 0.14em;
}

.luxe-testimonial-card p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.02rem;
    line-height: 1.85;
}

.luxe-testimonial-card strong {
    display: block;
    margin-top: 22px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}

.luxe-testimonial-card small {
    color: rgba(255, 255, 255, 0.58);
}

/* Contact */
.luxe-contact {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(245, 238, 229, 0.54));
}

.luxe-contact-card {
    padding: 34px;
    border-radius: 32px;
}

.luxe-map-wrap {
    margin-top: 28px;
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(21, 32, 42, 0.08);
    box-shadow: var(--shadow-soft);
}

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

/* Footer */
.site-footer {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(209, 176, 110, 0.10), transparent 24%),
        linear-gradient(180deg, #161f27 0%, #1a2530 100%);
    color: rgba(255, 255, 255, 0.82);
    padding: 0 0 36px;
}

.footer-cta-luxe {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    margin-top: -44px;
    margin-bottom: 48px;
    padding: 34px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        linear-gradient(135deg, rgba(209, 176, 110, 0.12), rgba(255, 255, 255, 0.05));
    border-color: rgba(255, 255, 255, 0.10);
    color: #fff;
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-strong);
}

.footer-cta-luxe h3 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.footer-cta-luxe p {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.74);
}

.site-footer .btn-outline,
.sticky-cta .btn-outline {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.site-footer .btn-outline:hover,
.sticky-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.luxe-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 0.6fr));
    gap: 28px;
    padding-bottom: 30px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-brand-copy strong {
    display: block;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.55rem;
    color: #fff;
}

.footer-brand-copy small {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.62);
}

.footer-brand-block p {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.68);
}

.site-footer h4 {
    color: var(--accent);
    font-size: 1.55rem;
    margin-bottom: 16px;
}

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

.footer-list li,
.footer-list a {
    color: rgba(255, 255, 255, 0.74);
}

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

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.58);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.76);
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    left: 50%;
    bottom: 22px;
    z-index: 60;
    display: flex;
    gap: 12px;
    width: min(100% - 24px, 540px);
    padding: 12px;
    border-radius: 999px;
    transform: translate(-50%, 0);
    background: rgba(22, 31, 39, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(18px);
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.sticky-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 18px);
}

.sticky-cta .btn {
    flex: 1;
}

/* Thank you */
.thankyou-luxe-shell {
    padding-top: 150px;
    padding-bottom: 90px;
}

.thankyou-luxe-card {
    padding: 42px;
    text-align: center;
}

.success-mark {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    margin: 0 auto 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #d8bd87, #af8852);
    color: #16212a;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 16px 34px rgba(175, 136, 82, 0.24);
}

.thank-you-card h1 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
}

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

/* Misc */
.booking-form.is-highlighted {
    border-color: rgba(198, 164, 107, 0.22);
    box-shadow: 0 0 0 4px rgba(198, 164, 107, 0.10), var(--shadow);
    transform: translateY(-2px);
}

.alert {
    border-radius: 18px;
}

.alert-success {
    color: #5b4a20;
    background: rgba(198, 164, 107, 0.12);
    border-color: rgba(198, 164, 107, 0.18);
}

.alert-error {
    color: #7f1d1d;
    background: rgba(220, 38, 38, 0.08);
    border-color: rgba(220, 38, 38, 0.12);
}

@media (max-width: 1140px) {
    .site-nav {
        gap: 8px;
    }

    .site-nav > a:not(.btn) {
        padding-inline: 10px;
        font-size: 0.9rem;
    }

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

    .hero-search-action {
        min-height: 52px;
    }

    .intro-strip-grid,
    .luxe-feature-grid,
    .luxe-testimonial-grid,
    .experience-grid,
    .luxe-process-grid,
    .luxe-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .luxe-product-grid {
        grid-template-columns: 1fr;
    }

    .luxe-about-grid,
    .luxe-booking-grid,
    .contact-grid,
    .luxe-experience-head {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .section {
        padding: 84px 0;
    }

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

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border-radius: 24px;
        background: rgba(248, 244, 238, 0.98);
        border: 1px solid rgba(21, 32, 42, 0.08);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav > a:not(.btn) {
        padding: 14px 12px;
        color: var(--heading);
        border-bottom: 1px solid rgba(21, 32, 42, 0.06);
    }

    .site-nav > a:not(.btn):hover {
        background: rgba(21, 32, 42, 0.04);
        color: var(--heading);
    }

    .site-nav .btn {
        width: 100%;
    }

    .nav-ghost {
        background: transparent;
        color: var(--heading);
        border-color: rgba(21, 32, 42, 0.12);
    }

    .luxe-hero-inner {
        padding-top: 124px;
    }

    .luxe-hero h1 {
        font-size: clamp(2.9rem, 11vw, 4.8rem);
    }

    .hero-search-card,
    .intro-strip-grid,
    .luxe-feature-grid,
    .experience-grid,
    .luxe-testimonial-grid,
    .luxe-process-grid,
    .luxe-footer-grid,
    .thank-grid,
    .form-grid,
    .luxe-meta-list {
        grid-template-columns: 1fr;
    }

    .luxe-product-head,
    .footer-cta-luxe,
    .footer-bottom,
    .luxe-note,
    .luxe-experience-head {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-search-item,
    .luxe-form-card,
    .luxe-contact-card,
    .luxe-aside-card,
    .luxe-booking-aside {
        padding: 22px;
    }

    .luxe-intro-strip {
        margin-top: -28px;
    }

    .hero-actions,
    .form-submit,
    .product-actions {
        flex-direction: column;
    }

    .hero-actions .btn,
    .form-submit .btn,
    .product-actions .btn,
    .sticky-cta .btn {
        width: 100%;
    }

    .luxe-price {
        text-align: left;
    }

    .footer-cta-luxe {
        margin-top: -28px;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .hero-trust-row {
        font-size: 0.88rem;
    }

    .intro-strip-card,
    .luxe-product-body,
    .experience-content,
    .luxe-testimonial-card,
    .luxe-process-card,
    .thankyou-luxe-card {
        padding: 22px;
    }

    .brand small {
        display: none;
    }

    .sticky-cta {
        border-radius: 24px;
        bottom: 14px;
        padding: 10px;
        flex-direction: column;
    }
}


body.admin-body,
body.login-body {
    font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
}

body.admin-body {
    background:
        radial-gradient(circle at top left, rgba(198, 164, 107, 0.16), transparent 28%),
        radial-gradient(circle at bottom right, rgba(22, 31, 39, 0.08), transparent 24%),
        linear-gradient(180deg, #f9f3eb 0%, #f4ecdf 100%);
}

body.admin-body h1,
body.admin-body h2,
body.admin-body h3,
body.admin-body h4,
body.admin-body h5,
body.login-body h1,
body.login-body h2,
body.login-body h3,
body.login-body h4,
body.login-body h5 {
    font-family: "Cormorant Garamond", Georgia, serif;
    letter-spacing: -0.03em;
    line-height: 1.04;
}

body.admin-body p,
body.admin-body li,
body.admin-body label,
body.admin-body input,
body.admin-body select,
body.admin-body textarea,
body.admin-body small,
body.admin-body span,
body.login-body p,
body.login-body li,
body.login-body label,
body.login-body input,
body.login-body select,
body.login-body textarea,
body.login-body small,
body.login-body span {
    font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
}

body.admin-body a,
body.login-body a {
    color: inherit;
}

.admin-shell {
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 0;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 28px 22px;
    color: #f3ebe0;
    background:
        linear-gradient(180deg, rgba(22, 31, 39, 0.98) 0%, rgba(30, 40, 49, 0.98) 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 20px 0 50px rgba(17, 24, 39, 0.10);
    overflow: hidden;
}

.admin-sidebar::before,
.admin-sidebar::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.admin-sidebar::before {
    width: 240px;
    height: 240px;
    top: -80px;
    right: -120px;
    background: radial-gradient(circle, rgba(198, 164, 107, 0.26), transparent 68%);
}

.admin-sidebar::after {
    width: 220px;
    height: 220px;
    left: -120px;
    bottom: -110px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
}

.admin-sidebar-inner,
.admin-topbar,
.login-showcase {
    position: relative;
    z-index: 1;
}

.admin-brand {
    gap: 16px;
    color: #fff;
}

.admin-brand strong,
.login-brand strong {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.admin-brand small,
.login-brand small {
    color: rgba(243, 235, 224, 0.66);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-sidebar .brand-mark,
.login-showcase .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.2rem;
}

.admin-sidebar-badge {
    margin-top: 24px;
    justify-content: flex-start;
    padding: 11px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(243, 235, 224, 0.80);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.74rem;
}

.admin-nav {
    gap: 10px;
    margin: 30px 0 auto;
}

.admin-nav a {
    position: relative;
    padding: 14px 16px 14px 18px;
    border-radius: 18px;
    color: rgba(243, 235, 224, 0.76);
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.22s ease, color 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.admin-nav a::before {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    margin-right: 12px;
    border-radius: 999px;
    background: rgba(198, 164, 107, 0.32);
    box-shadow: 0 0 0 4px rgba(198, 164, 107, 0.08);
    vertical-align: middle;
}

.admin-nav a.active,
.admin-nav a:hover {
    color: #fff;
    background: linear-gradient(135deg, rgba(198, 164, 107, 0.24), rgba(198, 164, 107, 0.10));
    border-color: rgba(198, 164, 107, 0.24);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    transform: translateX(4px);
}

.admin-nav a.active::before,
.admin-nav a:hover::before {
    background: #e8d0a0;
    box-shadow: 0 0 0 4px rgba(232, 208, 160, 0.12);
}

.admin-sidebar-foot {
    margin-top: 18px;
    padding: 18px 18px 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-sidebar-foot span,
.admin-sidebar-foot small {
    color: rgba(243, 235, 224, 0.68);
}

.admin-sidebar-foot strong {
    margin: 8px 0 4px;
    color: #fff;
    font-size: 1rem;
}

.admin-main {
    padding: 28px 30px 38px;
}

.admin-topbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    padding: 30px 32px;
    margin-bottom: 26px;
    border-radius: 34px;
    overflow: hidden;
    color: #f8f2ea;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(17, 24, 39, 0.86) 0%, rgba(28, 37, 46, 0.90) 100%),
        url("../images/hero-villa.jpg") center/cover no-repeat;
    box-shadow: 0 24px 70px rgba(17, 24, 39, 0.16);
}

.admin-topbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 18%, rgba(198, 164, 107, 0.28), transparent 26%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 42%);
    pointer-events: none;
}

.admin-topbar h1 {
    margin: 8px 0 10px;
    font-size: clamp(2.45rem, 4vw, 3.8rem);
    color: #fff;
}

.admin-topbar p {
    max-width: 720px;
    margin: 0;
    color: rgba(248, 242, 234, 0.78);
    font-size: 1rem;
}

.admin-topbar .eyebrow {
    margin-bottom: 6px;
    color: rgba(255, 239, 214, 0.78);
}

.admin-topbar .btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.admin-topbar .btn-outline:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.admin-content {
    gap: 24px;
}

body.admin-body .card,
body.admin-body .stat-card,
body.admin-body .login-card,
body.admin-body .thank-you-card,
body.admin-body .image-card,
body.admin-body .section-head.compact {
    border-radius: 30px;
    border: 1px solid rgba(21, 32, 42, 0.08);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 35px rgba(17, 24, 39, 0.07);
    backdrop-filter: blur(14px);
}

body.admin-body .section-head.compact {
    padding: 22px 24px;
    margin-bottom: 18px;
}

body.admin-body .section-head.compact h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 6px;
}

body.admin-body .section-head.compact p {
    color: var(--muted);
}

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

.stat-card {
    position: relative;
    overflow: hidden;
    min-height: 188px;
    padding: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(250, 244, 236, 0.94) 100%);
}

.stat-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #d7bb82 0%, #c6a46b 60%, rgba(198, 164, 107, 0.20) 100%);
}

.stat-card::after {
    top: auto;
    right: -24px;
    bottom: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(198, 164, 107, 0.18), transparent 72%);
}

.stat-card span {
    display: block;
    color: rgba(36, 49, 60, 0.76);
    margin-bottom: 14px;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.stat-card strong {
    display: block;
    margin-bottom: 10px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.6rem, 4vw, 3.6rem);
    line-height: 0.95;
    color: var(--heading);
}

.stat-card small {
    color: var(--muted);
    max-width: 22ch;
}

.admin-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 24px;
}

.divider {
    height: 1px;
    margin: 24px 0;
    background: linear-gradient(90deg, rgba(21, 32, 42, 0.10), rgba(198, 164, 107, 0.24), rgba(21, 32, 42, 0.10));
}

.stack-links {
    gap: 14px;
}

.filter-form {
    padding: 24px;
}

.form-group label {
    color: var(--heading);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body.admin-body input,
body.admin-body select,
body.admin-body textarea,
body.login-body input,
body.login-body select,
body.login-body textarea {
    border: 1px solid rgba(21, 32, 42, 0.10);
    border-radius: 18px;
    padding: 15px 16px;
    background: rgba(252, 248, 243, 0.96);
    color: var(--text);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

body.admin-body input::placeholder,
body.admin-body textarea::placeholder,
body.login-body input::placeholder,
body.login-body textarea::placeholder {
    color: #90867b;
}

body.admin-body input:focus,
body.admin-body select:focus,
body.admin-body textarea:focus,
body.login-body input:focus,
body.login-body select:focus,
body.login-body textarea:focus {
    outline: none;
    border-color: rgba(198, 164, 107, 0.42);
    box-shadow: 0 0 0 4px rgba(198, 164, 107, 0.14);
}

.checkbox-row label,
.stack-form label,
.inline-option {
    color: var(--text);
}

.checkbox-row input[type="checkbox"],
.inline-option input[type="checkbox"] {
    accent-color: #c6a46b;
}

.helper-text {
    color: var(--muted);
}

body.admin-body .chip,
body.admin-body .source-pill {
    background: rgba(198, 164, 107, 0.10);
    border-color: rgba(198, 164, 107, 0.16);
    color: #8c6940;
}

body.admin-body .chip.is-active,
body.admin-body .chip:hover {
    background: linear-gradient(135deg, rgba(215, 187, 130, 0.22), rgba(198, 164, 107, 0.12));
    color: var(--heading);
    border-color: rgba(198, 164, 107, 0.22);
}

.alert {
    padding: 15px 18px;
    border-radius: 18px;
    margin-bottom: 18px;
}

.alert-success {
    color: #0f5132;
    background: rgba(56, 161, 105, 0.10);
    border-color: rgba(56, 161, 105, 0.14);
}

.alert-error {
    color: #8b1e1e;
    background: rgba(220, 38, 38, 0.08);
    border-color: rgba(220, 38, 38, 0.12);
}

.table-wrap {
    overflow: auto;
    border-radius: 30px;
}

.table-wrap.card {
    padding: 0;
    overflow: hidden;
}

.admin-table {
    min-width: 760px;
    border-collapse: separate;
    border-spacing: 0;
}

.admin-table thead th {
    padding: 18px 16px;
    background: linear-gradient(180deg, rgba(248, 242, 234, 0.96), rgba(244, 235, 223, 0.96));
    color: rgba(36, 49, 60, 0.72);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(21, 32, 42, 0.08);
}

.admin-table tbody td {
    padding: 18px 16px;
    border-bottom: 1px solid rgba(21, 32, 42, 0.07);
}

.admin-table tbody tr:hover {
    background: rgba(198, 164, 107, 0.06);
}

.admin-table tbody tr:last-child td {
    border-bottom: 0;
}

.admin-table td strong {
    color: var(--heading);
}

.admin-table td small {
    color: var(--muted);
}

.status-badge {
    border-radius: 999px;
    padding: 8px 13px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid transparent;
}

.status-new {
    background: rgba(215, 187, 130, 0.16);
    color: #8c6940;
    border-color: rgba(198, 164, 107, 0.18);
}

.status-contacted {
    background: rgba(191, 219, 254, 0.22);
    color: #1d4f91;
    border-color: rgba(59, 130, 246, 0.16);
}

.status-paid_dp {
    background: rgba(187, 247, 208, 0.24);
    color: #166534;
    border-color: rgba(34, 197, 94, 0.16);
}

.status-confirmed {
    background: rgba(254, 240, 138, 0.28);
    color: #854d0e;
    border-color: rgba(234, 179, 8, 0.16);
}

.status-closed {
    background: rgba(226, 232, 240, 0.54);
    color: #475569;
    border-color: rgba(148, 163, 184, 0.18);
}

.table-actions a {
    padding: 9px 14px;
    border-radius: 999px;
    font-weight: 700;
    color: var(--heading);
    border: 1px solid rgba(21, 32, 42, 0.10);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 6px 16px rgba(17, 24, 39, 0.05);
}

.table-actions a:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.98);
}

.product-row {
    gap: 16px;
}

.table-thumb {
    width: 108px;
    border-radius: 20px;
    border: 1px solid rgba(21, 32, 42, 0.08);
    box-shadow: 0 14px 28px rgba(17, 24, 39, 0.08);
}

.info-list {
    gap: 14px;
}

.info-list li {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(248, 242, 234, 0.72);
    border: 1px solid rgba(21, 32, 42, 0.07);
}

.info-list strong {
    display: inline-block;
    min-width: 120px;
}

.image-card {
    padding: 20px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.76);
}

.image-card-head strong {
    font-size: 1.1rem;
    color: var(--heading);
}

.image-meta {
    color: var(--muted);
}

.image-preview {
    border-radius: 24px;
    border-color: rgba(21, 32, 42, 0.08);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

.login-body {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 28px;
    background:
        radial-gradient(circle at top left, rgba(198, 164, 107, 0.20), transparent 32%),
        radial-gradient(circle at bottom right, rgba(22, 31, 39, 0.10), transparent 28%),
        linear-gradient(180deg, #f7f1e8 0%, #f1e7da 100%);
}

.login-shell {
    width: min(1180px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
    gap: 24px;
    align-items: stretch;
}

.login-showcase {
    position: relative;
    overflow: hidden;
    padding: 40px;
    color: #f8f2ea;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background:
        linear-gradient(180deg, rgba(17, 24, 39, 0.60), rgba(17, 24, 39, 0.82)),
        url("../images/hero-villa.jpg") center/cover no-repeat;
    box-shadow: 0 26px 70px rgba(17, 24, 39, 0.16);
}

.login-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(198, 164, 107, 0.32), transparent 28%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent 46%);
    pointer-events: none;
}

.login-showcase > * {
    position: relative;
    z-index: 1;
}

.login-showcase .eyebrow {
    margin-top: 34px;
}

.login-showcase h1 {
    margin: 16px 0 16px;
    color: #fff;
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    max-width: 12ch;
}

.login-showcase p {
    max-width: 600px;
    color: rgba(248, 242, 234, 0.80);
}

.login-feature-list {
    margin-top: 32px;
    gap: 16px;
}

.login-feature {
    padding: 20px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.login-feature strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 1rem;
}

.login-feature span {
    color: rgba(248, 242, 234, 0.74);
}

.login-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 38px;
    border-radius: 34px;
    border: 1px solid rgba(21, 32, 42, 0.08);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 54px rgba(17, 24, 39, 0.10);
}

.login-card h1 {
    margin-bottom: 10px;
    font-size: clamp(2.2rem, 3vw, 3.2rem);
}

.login-card p {
    margin-bottom: 20px;
    color: var(--muted);
}

.login-help {
    margin-top: 20px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(248, 242, 234, 0.94);
    color: var(--text);
    border: 1px solid rgba(21, 32, 42, 0.08);
}

.login-help strong {
    color: var(--heading);
}

body.admin-body .btn-outline,
body.login-body .btn-outline {
    background: rgba(255, 255, 255, 0.78);
    color: var(--heading);
    border-color: rgba(21, 32, 42, 0.10);
    box-shadow: 0 10px 20px rgba(17, 24, 39, 0.05);
}

body.admin-body .btn-outline:hover,
body.login-body .btn-outline:hover {
    background: rgba(255, 255, 255, 0.96);
    color: var(--heading);
}

@media (max-width: 1140px) {
    .admin-shell {
        grid-template-columns: 290px minmax(0, 1fr);
    }

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

@media (max-width: 980px) {
    .admin-shell,
    .login-shell,
    .admin-grid,
    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: relative;
        height: auto;
    }

    .admin-topbar {
        align-items: flex-start;
    }

    .login-showcase h1,
    .admin-topbar h1 {
        max-width: none;
    }
}

@media (max-width: 760px) {
    .admin-main {
        padding: 18px 14px 32px;
    }

    .admin-sidebar,
    .login-showcase,
    .login-card,
    body.admin-body .section-head.compact,
    body.admin-body .card,
    body.admin-body .stat-card {
        padding: 22px;
    }

    .admin-topbar {
        padding: 24px 22px;
        border-radius: 28px;
    }

    .admin-topbar h1 {
        font-size: clamp(2.1rem, 11vw, 3rem);
    }

    .table-actions a {
        width: 100%;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .admin-nav a,
    .table-actions a {
        transition: none !important;
        transform: none !important;
    }
}


/* =========================================================
   Typography refinement patch
   - slightly smaller type scale
   - stronger contrast on low-contrast zones
   - premium Manrope + Cormorant pairing
   ========================================================= */

html {
    font-size: 95%;
}

body,
body.site-body,
body.admin-body,
body.login-body,
input,
select,
textarea,
button {
    font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.site-body h1,
body.site-body h2,
body.site-body h3,
body.site-body h4,
body.site-body h5,
.brand strong,
.footer-brand-copy strong,
.luxe-price strong,
.intro-strip-card strong,
.stats-strip strong,
.site-footer h4 {
    font-family: "Cormorant Garamond", Georgia, serif;
}

:root {
    --text: #1f2b35;
    --heading: #101a23;
    --muted: #56514b;
    --primary-dark: #87663a;
}

.hero-lead,
.hero-lead.luxe,
.section-copy,
.luxe-head p,
.intro-strip-card p,
.luxe-feature-card p,
.product-excerpt,
.experience-content p,
.footer-brand-block p,
.footer-list li,
.footer-list a,
.footer-bottom,
.footer-bottom a,
.hero-trust-row,
.site-footer p,
.site-footer small,
.site-footer li,
.site-footer a {
    color: var(--muted);
}

.luxe-hero-overlay {
    background:
        linear-gradient(180deg, rgba(11, 17, 24, 0.34) 0%, rgba(14, 21, 29, 0.54) 42%, rgba(14, 21, 29, 0.90) 100%),
        radial-gradient(circle at 20% 20%, rgba(198, 164, 107, 0.20), transparent 32%);
}

.brand,
.site-nav > a:not(.btn),
.nav-ghost,
.nav-toggle span {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
}

.site-header.is-scrolled .brand,
.site-header.is-scrolled .site-nav > a:not(.btn),
.site-header.is-scrolled .nav-ghost,
.site-header.is-scrolled .nav-toggle span {
    text-shadow: none;
}

.site-header.is-scrolled .site-nav > a:not(.btn) {
    color: rgba(16, 26, 35, 0.88);
}

.hero-trust-row,
.hero-lead.luxe {
    color: rgba(255, 255, 255, 0.90);
}

.hero-search-item small,
.intro-strip-card small,
.luxe-price small,
.luxe-meta-list span,
.footer-brand-copy small,
.footer-bottom,
.luxe-testimonial-card small,
.luxe-rating-summary span {
    color: #6a6258;
}

.luxe-testimonial-card,
.luxe-process-card,
.footer-cta-luxe,
.site-footer,
.luxe-testimonials {
    color: rgba(255, 255, 255, 0.88);
}

.luxe-testimonial-card p,
.luxe-process-card p,
.footer-cta-luxe p,
.footer-brand-block p,
.site-footer .footer-list li,
.site-footer .footer-list a,
.site-footer .footer-bottom,
.site-footer .footer-bottom a {
    color: rgba(255, 255, 255, 0.82);
}

.luxe-testimonial-card small,
.site-footer .footer-brand-copy small,
.site-footer .footer-bottom,
.site-footer .footer-bottom a {
    color: rgba(255, 255, 255, 0.72);
}

.alert-success {
    color: #4b3b17;
    background: rgba(198, 164, 107, 0.16);
    border-color: rgba(198, 164, 107, 0.22);
}

.login-help {
    color: #16325f;
}

.admin-table thead th {
    color: #334155;
}

.helper-text,
.product-meta,
.image-card-head small,
.image-meta,
.brand small,
.admin-brand small,
.login-brand small,
.stat-card span,
.rating-summary span,
.testimonial-card small,
.hero-score small,
.metric-card span,
.selected-product-banner small {
    color: #5f6470;
}

.btn,
.site-nav > a:not(.btn),
.chip,
.badge,
.hero-badges span,
.mini-list li,
.luxe-pill,
.source-pill,
.status-badge {
    letter-spacing: 0.005em;
}

.luxe-hero h1 {
    font-size: clamp(3.2rem, 6.3vw, 5.8rem);
}

.section-head h2,
.luxe-about h2,
.luxe-booking h2,
.luxe-contact h2 {
    font-size: clamp(2.35rem, 4.6vw, 4rem);
}

.luxe-feature-card h3 {
    font-size: 1.78rem;
}

.luxe-aside-card h3,
.luxe-booking-aside h3 {
    font-size: 2.25rem;
}

.luxe-product-head h3 {
    font-size: 1.92rem;
}

.experience-content h3 {
    font-size: 2.15rem;
}

.luxe-process-card h3 {
    font-size: 1.95rem;
}

.footer-cta-luxe h3 {
    font-size: clamp(1.95rem, 4.5vw, 3.1rem);
}

.thank-you-card h1 {
    font-size: clamp(2.55rem, 4.5vw, 3.7rem);
}

.admin-topbar h1 {
    font-size: clamp(1.58rem, 3.2vw, 2.2rem);
}

.stat-card strong {
    font-size: 2.05rem;
}

@media (max-width: 760px) {
    html {
        font-size: 93.5%;
    }

    .luxe-hero h1 {
        font-size: clamp(2.75rem, 10.4vw, 4rem);
    }

    .section-head h2,
    .luxe-about h2,
    .luxe-booking h2,
    .luxe-contact h2 {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}


/* Soft white-gold emphasis */
.soft-gold-heading {
    color: #f9f5eb !important;
    text-shadow: 0 1px 0 rgba(29, 22, 11, 0.14), 0 10px 30px rgba(12, 10, 8, 0.18);
}

.soft-gold-kicker {
    color: rgba(250, 245, 232, 0.94) !important;
    text-shadow: 0 1px 0 rgba(29, 22, 11, 0.12), 0 8px 24px rgba(12, 10, 8, 0.12);
}

.luxe-testimonials .soft-gold-heading,
.luxe-process .soft-gold-heading,
.footer-cta-luxe .soft-gold-heading {
    color: #fbf7ee !important;
}

.luxe-hero .soft-gold-heading {
    color: #fffaf1 !important;
}


@media (max-width: 760px) {
    .site-header:not(.is-scrolled) .brand-copy {
        max-width: min(58vw, 240px);
    }

    .site-header:not(.is-scrolled) .brand-tagline {
        display: block;
        line-height: 1.2;
        font-size: 0.7rem;
    }

    .site-header.is-scrolled .brand-tagline {
        display: none;
    }
}

/* Soft white-gold text accents requested */
.soft-gold-title {
    color: #f7f1e4 !important;
    text-shadow: 0 1px 0 rgba(59, 45, 20, 0.22), 0 10px 24px rgba(0, 0, 0, 0.18);
}

.soft-gold-footer {
    color: #f6efdf !important;
    text-shadow: 0 1px 0 rgba(59, 45, 20, 0.18), 0 6px 18px rgba(0, 0, 0, 0.14);
}



.brand-mark.brand-mark-logo {
    width: 64px;
    height: 48px;
    padding: 6px;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 36px rgba(7, 20, 35, 0.14);
}

.brand-mark.brand-mark-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.site-header:not(.is-scrolled) .brand-mark.brand-mark-logo {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 36px rgba(7, 20, 35, 0.22);
}

.site-header.is-scrolled .brand-mark.brand-mark-logo,
.footer-brand .brand-mark.brand-mark-logo,
.admin-brand .brand-mark.brand-mark-logo,
.login-brand .brand-mark.brand-mark-logo {
    background: rgba(255, 255, 255, 0.98);
}

.logo-preview-panels .logo-image-preview {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 247, 252, 0.98));
}

.logo-preview-panels .logo-image-preview img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    padding: 18px;
}

@media (max-width: 720px) {
    .brand-mark.brand-mark-logo {
        width: 58px;
        height: 44px;
        padding: 5px;
    }
}


/* Demo mode */
.demo-premium-badge {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffb347 0%, #f97316 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    box-shadow: 0 18px 40px rgba(249, 115, 22, .28);
}

.demo-toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    z-index: 9999;
    min-width: 240px;
    max-width: calc(100vw - 32px);
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(22, 31, 39, .95);
    color: #fff;
    text-align: center;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .28);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(20px);
    transition: opacity .22s ease, transform .22s ease;
}

.demo-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.demo-readonly-form input[readonly],
.demo-readonly-form textarea[readonly],
.demo-readonly-form select:disabled,
.demo-readonly-form input:disabled {
    opacity: 1;
    color: inherit;
    background: rgba(255,255,255,.96);
    cursor: not-allowed;
}

.demo-readonly-form button[type="submit"],
.demo-login-credentials .btn {
    cursor: pointer;
}

.demo-login-credentials {
    margin-top: 16px;
    padding: 16px;
    border: 1px solid rgba(188, 146, 68, .25);
    border-radius: 20px;
    background: rgba(250, 246, 239, .9);
}

.demo-login-credentials-grid {
    display: grid;
    gap: 8px;
    margin: 12px 0 14px;
}

.demo-credential-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
}

.demo-credential-row code {
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(22, 31, 39, .08);
    font-family: inherit;
    font-weight: 700;
}

.demo-note-inline {
    margin: 10px 0 0;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(249, 115, 22, .12);
    color: #8a3d00;
    font-size: 14px;
}

@media (max-width: 768px) {
    .demo-premium-badge {
        top: 12px;
        right: 12px;
        padding: 8px 12px;
        font-size: 10px;
        letter-spacing: .04em;
    }

    .demo-credential-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
