:root {
    --bg: #070707;
    --bg-soft: #0f0f0f;
    --bg-elevated: #141414;
    --card: linear-gradient(180deg, rgba(18,18,18,0.96), rgba(10,10,10,0.94));
    --card-soft: rgba(255, 255, 255, 0.03);
    --text: #f3e7cf;
    --text-strong: #fff8ec;
    --muted: #c2ae84;
    --gold: #c9a45b;
    --gold-2: #e2c98a;
    --gold-dark: #8c6a2e;
    --line: rgba(201, 164, 91, 0.18);
    --line-strong: rgba(226, 201, 138, 0.30);
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
    --glow: 0 0 0 1px rgba(226, 201, 138, 0.08), 0 14px 38px rgba(0, 0, 0, 0.36);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(201,164,91,0.10), transparent 22%),
        radial-gradient(circle at top right, rgba(201,164,91,0.08), transparent 20%),
        radial-gradient(circle at bottom center, rgba(201,164,91,0.06), transparent 26%),
        linear-gradient(180deg, #0c0c0c 0%, #070707 42%, #050505 100%);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
.container { width: min(1180px, 92%); margin: 0 auto; }

.site-header {
    position: relative;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(8, 8, 8, 0.84);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.topbar {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1.3px;
    color: var(--gold-2);
    text-transform: uppercase;
}
.logo span {
    color: var(--text-strong);
    font-weight: 500;
    letter-spacing: 3px;
}
nav { display: flex; gap: 10px; flex-wrap: wrap; }
nav a {
    color: var(--text);
    padding: 11px 16px;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.25s ease;
    border: 1px solid transparent;
}
nav a:hover {
    background: rgba(201,164,91,0.10);
    color: var(--gold-2);
    border-color: rgba(201,164,91,0.18);
}

.hero {
    margin: 34px 0 26px;
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(145deg, rgba(17,17,17,0.95), rgba(7,7,7,0.98));
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    padding: 68px 38px;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 15%, rgba(201,164,91,0.16), transparent 18%),
        radial-gradient(circle at 85% 20%, rgba(201,164,91,0.08), transparent 18%),
        radial-gradient(circle at 70% 80%, rgba(201,164,91,0.06), transparent 18%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.eyebrow {
    display: inline-block;
    padding: 8px 14px;
    background: rgba(201,164,91,0.10);
    color: var(--gold-2);
    border: 1px solid rgba(226,201,138,0.22);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.hero h1, .section-title, .profile-info h2, .form-card h2, .card-overlay h3,
.benefit-card h3, .experience-content h2, .step h3, .landing-cta h2 {
    font-family: Georgia, "Times New Roman", serif;
}
.hero h1 {
    font-size: clamp(2.3rem, 4vw, 4.3rem);
    line-height: 1.05;
    margin: 0 0 18px;
    font-weight: 700;
    color: var(--text-strong);
}
.hero p, .section-subtitle, .card-description, .profile-info p {
    color: var(--muted);
    line-height: 1.8;
}
.hero p { font-size: 18px; max-width: 650px; margin: 0 0 24px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.section-title {
    margin: 30px 0 8px;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    color: var(--gold-2);
}
.section-subtitle { margin-bottom: 20px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    color: #140f06;
    background: linear-gradient(135deg, #f0d89e 0%, var(--gold) 42%, var(--gold-dark) 100%);
    box-shadow: 0 10px 24px rgba(157,122,67,0.24), inset 0 1px 0 rgba(255,255,255,.30);
}
.btn-outline {
    color: var(--gold-2);
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(201,164,91,0.24);
}
.btn-outline:hover {
    background: rgba(201,164,91,0.10);
}
.btn-whatsapp { color: #fff; background: linear-gradient(135deg, #25D366, #1ba851); box-shadow: 0 10px 24px rgba(37,211,102,0.20); }
.btn-block { width: 100%; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; margin: 26px 0 50px; }
.premium-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: var(--card);
    border: 1px solid var(--line);
    box-shadow: var(--glow);
    backdrop-filter: blur(16px);
    transition: transform .25s ease, box-shadow .25s ease;
}
.premium-card:hover { transform: translateY(-6px); box-shadow: 0 24px 54px rgba(0,0,0,0.45); }
.card-image-wrap { position: relative; height: 395px; overflow: hidden; }
.card-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.premium-card:hover .card-image-wrap img { transform: scale(1.04); }
.card-badge {
    position: absolute; top: 16px; left: 16px; z-index: 2; padding: 9px 14px; border-radius: 999px;
    background: rgba(8,8,8,0.78); color: var(--gold-2); border: 1px solid rgba(226,201,138,0.20);
    font-size: 12px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase;
}
.card-overlay { position: absolute; inset: auto 0 0 0; padding: 70px 22px 18px; background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.92)); color: #fff; }
.card-overlay h3 { margin: 0 0 8px; font-size: 26px; color: var(--text-strong); }
.card-overlay p { margin: 0; color: rgba(255,255,255,0.82); font-size: 14px; }
.card-content { padding: 20px 20px 22px; }
.meta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.meta-pill { padding: 8px 12px; border-radius: 999px; background: rgba(201,164,91,0.10); color: var(--gold-2); font-size: 13px; font-weight: 700; border: 1px solid rgba(201,164,91,.12); }
.card-description { min-height: 74px; margin-bottom: 18px; }
.card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.profile-shell { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; margin: 30px 0 50px; }
.profile-gallery, .profile-info, .form-card, .notice, .table-wrap, .admin-panel, .empty-state {
    background: linear-gradient(180deg, rgba(16,16,16,0.96), rgba(10,10,10,0.94));
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--glow);
    backdrop-filter: blur(16px);
}
.profile-gallery { padding: 18px; }
.profile-main-image { border-radius: 22px; overflow: hidden; margin-bottom: 14px; }
.profile-main-image img { width: 100%; height: 560px; object-fit: cover; }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.gallery-grid img { width: 100%; height: 220px; object-fit: cover; border-radius: 18px; }
.profile-info { padding: 28px; }
.profile-info h2 { margin-top: 10px; margin-bottom: 12px; font-size: 40px; color: var(--gold-2); }
.profile-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.form-card { padding: 28px; margin: 28px 0 40px; }

label { display: block; margin-bottom: 8px; font-weight: 700; color: var(--gold-2); }
input, textarea, select {
    width: 100%;
    padding: 14px 15px;
    border-radius: 16px;
    border: 1px solid rgba(201,164,91,0.18);
    background: rgba(255,255,255,0.03);
    outline: none;
    margin-bottom: 18px;
    font-size: 15px;
    color: var(--text-strong);
}
input::placeholder, textarea::placeholder { color: rgba(243,231,207,0.45); }
input:focus, textarea:focus, select:focus {
    border-color: rgba(226,201,138,0.55);
    box-shadow: 0 0 0 4px rgba(201,164,91,0.10);
}
.notice { padding: 18px 20px; margin: 26px 0; color: #e7ddc3; background: linear-gradient(135deg, rgba(73,56,23,0.54), rgba(25,18,8,0.92)); }
.table-wrap { overflow-x: auto; padding: 20px; }
table { width: 100%; border-collapse: collapse; }
table th, table td { padding: 14px 12px; border-bottom: 1px solid rgba(201,164,91,0.10); text-align: left; }
table th { color: var(--gold-2); }

.site-footer { margin-top: 50px; border-top: 1px solid var(--line); background: rgba(8,8,8,0.76); }
.site-footer .container { padding: 28px 0; color: var(--muted); text-align: center; }
.empty-state { padding: 28px; color: var(--muted); }
.admin-panel { padding: 28px; margin: 40px auto; max-width: 520px; }
.help-note { font-size: 13px; color: var(--muted); margin-top: -10px; margin-bottom: 18px; }

/* Dark luxury overrides for page-specific blocks */
.benefit-card,
.experience-content,
.step,
.landing-cta,
.mjx-card,
.pf2-card,
.pf2-side {
    background: linear-gradient(180deg, rgba(18,18,18,0.95), rgba(10,10,10,0.95)) !important;
    border: 1px solid var(--line) !important;
    box-shadow: var(--glow) !important;
    color: var(--text) !important;
}

.benefit-card p,
.experience-content p,
.step p,
.landing-cta p,
.pf2-desc,
.booking-help,
.no-slots-message {
    color: var(--muted) !important;
}

.mjx-main-image,
.pf2-main,
.pf2-thumb { background: #111 !important; }

.loading-note,
.booking-summary {
    background: rgba(201,164,91,0.10) !important;
    color: var(--gold-2) !important;
    border: 1px solid rgba(201,164,91,.14);
}

.no-slots-message {
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(201,164,91,.10);
}

.home-slider-dot.is-active,
.step-number {
    background: linear-gradient(135deg, #f0d89e 0%, var(--gold) 42%, var(--gold-dark) 100%) !important;
    color: #140f06 !important;
}

::selection {
    background: rgba(201,164,91,0.22);
    color: var(--text-strong);
}

@media (max-width: 980px) {
    .profile-shell { grid-template-columns: 1fr; }
    .profile-main-image img { height: 460px; }
}
@media (max-width: 680px) {
    .hero { padding: 50px 22px; border-radius: 26px; }
    .card-image-wrap { height: 350px; }
    .card-actions { grid-template-columns: 1fr; }
    .profile-info h2 { font-size: 32px; }
    .gallery-grid img { height: 180px; }
}

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

.whatsapp-luxury-btn {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-top: 18px !important;
    padding: 14px 26px !important;
    min-height: 54px !important;
    border-radius: 999px !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    letter-spacing: 0.4px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    box-shadow:
        0 0 12px rgba(37, 211, 102, 0.45),
        0 0 28px rgba(37, 211, 102, 0.28),
        0 10px 24px rgba(0,0,0,0.25) !important;
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease !important;
    animation: waGlowPulse 2.2s ease-in-out infinite !important;
    width: fit-content;
}

.whatsapp-luxury-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 0 18px rgba(37, 211, 102, 0.70),
        0 0 38px rgba(37, 211, 102, 0.42),
        0 14px 30px rgba(0,0,0,0.30) !important;
    opacity: 0.99;
}

.whatsapp-luxury-btn:active {
    transform: translateY(0) scale(0.99);
}

.whatsapp-luxury-btn:visited,
.whatsapp-luxury-btn:focus,
.whatsapp-luxury-btn:hover {
    color: #ffffff !important;
    text-decoration: none !important;
}

.wa-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.16) !important;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.10);
}

@keyframes waGlowPulse {
    0% {
        box-shadow:
            0 0 12px rgba(37, 211, 102, 0.42),
            0 0 26px rgba(37, 211, 102, 0.24),
            0 10px 24px rgba(0,0,0,0.25);
    }
    50% {
        box-shadow:
            0 0 20px rgba(37, 211, 102, 0.72),
            0 0 44px rgba(37, 211, 102, 0.38),
            0 12px 28px rgba(0,0,0,0.28);
    }
    100% {
        box-shadow:
            0 0 12px rgba(37, 211, 102, 0.42),
            0 0 26px rgba(37, 211, 102, 0.24),
            0 10px 24px rgba(0,0,0,0.25);
    }
}