:root {
    --navy: #0b1b3a;
    --royal: #123d8b;
    --deep: #0a132a;
    --gold: #f6c453;
    --gold-soft: #f9d98a;
    --white: #fefbf7;
    --ink: #0f1d33;
    --muted: #5f6b7a;
    --card: rgba(255, 255, 255, 0.92);
    --line: rgba(255, 255, 255, 0.2);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
    color: var(--white);
    background: radial-gradient(circle at 20% 20%, #1a3d7a 0%, #0c1b3a 42%, #070d1f 100%);
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(120deg, rgba(246, 196, 83, 0.08), transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(18, 61, 139, 0.35), transparent 55%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 2px, transparent 2px 6px);
    pointer-events: none;
    z-index: -1;
}

h1,
h2,
h3,
h4 {
    font-family: "Playfair Display", "Times New Roman", serif;
    letter-spacing: 0.5px;
    color: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
}

.public-shell {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(12px);
    background: rgba(7, 13, 31, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--gold), #b47b17);
    box-shadow: 0 10px 25px rgba(246, 196, 83, 0.35);
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.nav-links a {
    padding: 6px 10px;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.12);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--gold), var(--gold-soft));
    color: var(--deep);
    font-weight: 600;
}

.main-content {
    flex: 1;
}

.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 40px;
    align-items: center;
    padding-top: 60px;
}

.hero-title {
    font-size: clamp(2.6rem, 4vw, 4rem);
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

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

.btn-primary,
.btn-outline {
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(120deg, var(--gold), #f9b857);
    color: var(--deep);
    border: none;
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
    background: transparent;
}

.booking-panel {
    background: var(--card);
    color: var(--ink);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 30px 80px rgba(7, 13, 31, 0.5);
}

.panel-title {
    color: var(--ink);
    margin-bottom: 12px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
}

.form-grid label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--muted);
}

.form-control,
.form-select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(15, 29, 51, 0.2);
    background: #fff;
    font-family: "Space Grotesk", sans-serif;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 12px;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    max-width: 720px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.text-muted {
    color: rgba(15, 29, 51, 0.6);
}

.booking-panel .text-muted {
    color: rgba(15, 29, 51, 0.7);
}

.card .text-muted {
    color: rgba(255, 255, 255, 0.7);
}

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

.card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 22px;
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.card-header {
    margin-bottom: 12px;
}

.card-title {
    margin: 0 0 8px 0;
}

.card-body {
    display: block;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(246, 196, 83, 0.6);
}

.card h3 {
    margin-top: 0;
}

.tag {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(246, 196, 83, 0.2);
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.property-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.property-visual {
    height: 180px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(18, 61, 139, 0.6), rgba(246, 196, 83, 0.25));
    position: relative;
    overflow: hidden;
}

.property-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.25), transparent 55%);
}

.property-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

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

.list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.highlight {
    color: var(--gold);
    font-weight: 600;
}

.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    align-items: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.gallery-item {
    height: 180px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(246, 196, 83, 0.2), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-size: cover;
    background-position: center;
}

.cta-banner {
    background: linear-gradient(120deg, rgba(18, 61, 139, 0.9), rgba(246, 196, 83, 0.2));
    border-radius: 28px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer {
    background: rgba(7, 13, 31, 0.85);
    padding: 40px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer h4 {
    margin-top: 0;
}

.reveal {
    animation: fadeUp 0.9s ease forwards;
    opacity: 0;
}

.reveal.delay-1 {
    animation-delay: 0.2s;
}

.reveal.delay-2 {
    animation-delay: 0.4s;
}

.reveal.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table th {
    text-align: left;
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.table-striped tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.04);
}

.align-middle td,
.align-middle th {
    vertical-align: middle;
}

.table-responsive {
    overflow-x: auto;
}

.btn {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(120deg, var(--gold), #f9b857);
    color: var(--deep);
    border: none;
}

.btn-outline-primary {
    border-color: rgba(246, 196, 83, 0.8);
    color: var(--gold);
    background: transparent;
}

.btn-outline-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
    background: transparent;
}

.btn-outline-danger {
    border-color: rgba(255, 120, 120, 0.7);
    color: #ffd2d2;
    background: transparent;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

.form-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.7);
}

.booking-panel .form-label {
    color: var(--muted);
}

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

.g-2 {
    gap: 8px;
}

.g-3 {
    gap: 16px;
}

.col-12 {
    flex: 0 0 100%;
}

.col-8 {
    flex: 0 0 66.666%;
}

.col-6 {
    flex: 0 0 50%;
}

.col-4 {
    flex: 0 0 33.333%;
}

.col-3 {
    flex: 0 0 25%;
}

.col-2 {
    flex: 0 0 16.666%;
}

.col-1 {
    flex: 0 0 8.333%;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
    }

    .col-md-4 {
        flex: 0 0 33.333%;
    }

    .col-md-3 {
        flex: 0 0 25%;
    }

    .col-md-2 {
        flex: 0 0 16.666%;
    }

    .col-md-1 {
        flex: 0 0 8.333%;
    }
}

.mt-3 {
    margin-top: 16px;
}

.mb-3 {
    margin-bottom: 16px;
}

.mb-0 {
    margin-bottom: 0;
}

.ms-3 {
    margin-left: 16px;
}

.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-2 {
    gap: 8px;
}

.gap-3 {
    gap: 16px;
}

.small {
    font-size: 12px;
}

.alert {
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.alert-warning {
    color: #ffe3a8;
    border-color: rgba(246, 196, 83, 0.4);
}

@media (max-width: 960px) {
    .hero {
        grid-template-columns: 1fr;
    }

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

    .nav-links {
        gap: 8px;
        font-size: 12px;
    }
}
