:root {
    --public-bg: #f4f6f8;
    --public-card: #ffffff;
    --public-ink: #172033;
    --public-muted: #66758a;
    --public-brand: #1f3a5f;
    --public-brand-dark: #10203a;
    --public-accent: #c6924d;
    --public-accent-soft: rgba(198, 146, 77, 0.18);
    --public-border: rgba(31, 58, 95, 0.12);
}

body.public-layout {
    font-family: 'Manrope', sans-serif;
    background: var(--public-bg);
    color: var(--public-ink);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.public-main {
    flex: 1 0 auto;
}

.site-header .navbar {
    backdrop-filter: blur(18px);
    background: rgba(250, 252, 255, 0.94);
    border-bottom: 1px solid var(--public-border);
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    color: var(--public-brand-dark);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.9rem;
    background: var(--public-brand);
    color: #fff;
}

.nav-link {
    color: var(--public-muted);
    font-weight: 600;
}

.nav-link.active,
.nav-link:hover,
.footer-links a:hover {
    color: var(--public-brand);
}

.btn-brand {
    background: var(--public-brand);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 18px 38px rgba(31, 58, 95, 0.18);
}

.btn-brand:hover {
    color: #fff;
    background: var(--public-brand-dark);
}

.hero-section,
.inner-page {
    padding-top: 4rem;
}

.eyebrow {
    display: inline-block;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(31, 58, 95, 0.08);
    color: var(--public-brand);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-card,
.page-shell,
.feature-card {
    background: var(--public-card);
    border: 1px solid var(--public-border);
    border-radius: 1.75rem;
    box-shadow: 0 28px 60px rgba(23, 32, 51, 0.08);
}

.hero-card,
.page-shell {
    padding: 2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    min-height: 360px;
}

.hero-tile,
.gallery-tile {
    min-height: 160px;
    border-radius: 1.4rem;
    background-color: #e8eef5;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tile-large {
    grid-column: span 2;
    min-height: 220px;
}

.feature-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem 1.5rem;
    height: 100%;
    font-weight: 600;
}

.feature-card i {
    font-size: 1.35rem;
    color: var(--public-accent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.site-footer {
    border-top: 1px solid var(--public-border);
    background: #fafcff;
    margin-top: auto;
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 800;
}

.footer-links a {
    color: var(--public-muted);
    text-decoration: none;
}

.cms-hero-image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 1.4rem;
}

.cms-body {
    line-height: 1.7;
}

.cms-body p:last-child {
    margin-bottom: 0;
}

.cms-block-image img {
    width: 100%;
    border-radius: 1.2rem;
    object-fit: cover;
    max-height: 420px;
}

.gallery-tile-photo {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.gallery-tile-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 1rem;
    background: rgba(16, 32, 58, 0.72);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
}

.booking-page-hero {
    background: #f8fafc;
    border: 1px solid var(--public-border);
    border-radius: 2rem;
    padding: 2rem;
}

.booking-media-photo {
    background-color: #dbe4f0;
    background-size: cover;
    background-position: center;
}

@media (max-width: 991.98px) {
    .hero-section,
    .inner-page {
        padding-top: 2rem;
    }
}
