:root {
    --navy-950: #070d17;
    --navy-900: #0b1320;
    --navy-850: #101a2c;
    --navy-800: #162238;
    --navy-700: #1e2e4b;
    --navy-600: #2b3e61;

    --gold-100: #faf4eb;
    --gold-200: #f2e3cb;
    --gold-300: #e3caa1;
    --gold-400: #caa36b;
    --gold-500: #b5894b;
    --gold-600: #936a32;
    --gold-gradient: linear-gradient(135deg, #d8b884 0%, #b5894b 100%);
    --gold-gradient-hover: linear-gradient(135deg, #e4c99c 0%, #c99a58 100%);

    --paper-50: #faf8f5;
    --paper-100: #f4f0e6;
    --paper-200: #eae4d5;
    --paper-300: #ded5c2;

    --text-dark: #0f1622;
    --text-body: #344054;
    --text-muted: #667085;
    --text-light: #f8fafc;
    --text-subtle: #cbd5e1;

    --border-gold-subtle: rgba(202, 163, 107, 0.25);
    --border-gold: rgba(202, 163, 107, 0.5);
    --border-light: rgba(15, 22, 34, 0.08);

    --shadow-sm: 0 2px 8px rgba(7, 13, 23, 0.04);
    --shadow-md: 0 10px 30px rgba(7, 13, 23, 0.08);
    --shadow-lg: 0 20px 45px rgba(7, 13, 23, 0.12);
    --shadow-gold: 0 12px 30px rgba(181, 137, 75, 0.28);
    --shadow-floating: 0 16px 36px rgba(7, 13, 23, 0.35);

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   Base & Reset
   -------------------------------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--paper-50);
    color: var(--text-body);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-serif {
    font-family: var(--font-serif);
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.01em;
}

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

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

/* --------------------------------------------------------------------------
   Utility Classes & Badges
   -------------------------------------------------------------------------- */
.text-gold {
    color: var(--gold-400) !important;
}

.text-gold-light {
    color: var(--gold-300) !important;
}

.text-light-subtle {
    color: var(--text-subtle) !important;
}

.bg-navy-dark {
    background-color: var(--navy-950) !important;
}

.bg-navy {
    background-color: var(--navy-900) !important;
}

.bg-navy-light {
    background-color: var(--navy-850) !important;
}

.bg-paper {
    background-color: var(--paper-100) !important;
}

.bg-slate-subtle {
    background-color: rgba(255, 255, 255, 0.04) !important;
}

.border-gold-subtle {
    border-color: var(--border-gold-subtle) !important;
}

.letter-spacing-1 {
    letter-spacing: 0.12em;
}

.letter-spacing-2 {
    letter-spacing: 0.18em;
}

.hover-gold:hover {
    color: var(--gold-300) !important;
}

.eyebrow-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 12px;
}

.badge-gold-pill {
    display: inline-flex;
    align-items: center;
    padding: 3px 12px;
    background: rgba(202, 163, 107, 0.15);
    border: 1px solid var(--border-gold-subtle);
    border-radius: var(--radius-full);
    color: var(--gold-200);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.award-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(202, 163, 107, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-size: 12px;
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   Luxury Buttons
   -------------------------------------------------------------------------- */
.btn-gold-luxury {
    background: var(--gold-gradient);
    color: #0c1421 !important;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gold-300);
    box-shadow: 0 4px 15px rgba(181, 137, 75, 0.25);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.btn-gold-luxury:hover,
.btn-gold-luxury:focus {
    background: var(--gold-gradient-hover);
    color: #060a12 !important;
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-300) !important;
    border: 1px solid var(--gold-400);
    font-weight: 600;
    font-size: 14px;
    padding: 11px 24px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-gold:hover {
    background: rgba(202, 163, 107, 0.12);
    color: var(--gold-200) !important;
    border-color: var(--gold-300);
    transform: translateY(-2px);
}

.btn-outline-dark {
    border: 1px solid var(--navy-800);
    color: var(--navy-900);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn-outline-dark:hover {
    background: var(--navy-900);
    color: #ffffff !important;
}

.btn-nav-call {
    color: var(--gold-300);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(202, 163, 107, 0.25);
    text-decoration: none;
    transition: var(--transition);
}

.btn-nav-call:hover {
    background: rgba(202, 163, 107, 0.15);
    color: var(--gold-200);
    border-color: var(--gold-400);
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.luxury-topbar {
    background-color: var(--navy-950);
    color: var(--text-subtle);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 12px;
}

.topbar-link {
    color: var(--text-subtle);
    text-decoration: none;
    transition: var(--transition);
}

.topbar-link:hover {
    color: var(--gold-300);
}

.luxury-navbar {
    background: rgba(11, 19, 32, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-gold-subtle);
    padding: 16px 0;
    z-index: 1020;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hotel-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-monogram {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--navy-850);
    border: 1.5px solid var(--gold-400);
    color: var(--gold-300);
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.brand-monogram.sm {
    width: 36px;
    height: 36px;
    font-size: 17px;
}

.hotel-brand:hover .brand-monogram {
    background: var(--gold-gradient);
    color: var(--navy-950);
    border-color: var(--gold-200);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand-subtitle {
    font-size: 11px;
    color: var(--gold-300);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
}

.luxury-nav-links {
    gap: 32px;
}

.nav-link-item {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.nav-link-item:hover,
.nav-link-item.active {
    color: var(--gold-300);
}

.nav-link-item:hover::after,
.nav-link-item.active::after {
    width: 100%;
}

.btn-mobile-toggle {
    background: transparent;
    border: 1px solid var(--border-gold-subtle);
    color: var(--gold-300);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 18px;
    cursor: pointer;
}

/* Mobile Offcanvas */
.luxury-offcanvas {
    background: var(--navy-950) !important;
    color: var(--text-light);
    border-left: 1px solid var(--border-gold-subtle);
    width: 320px !important;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    border-radius: var(--radius-sm);
}

.mobile-nav-item:hover {
    background: rgba(202, 163, 107, 0.1);
    color: var(--gold-300);
    padding-left: 20px;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hotel-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: var(--navy-950);
    color: #ffffff;
    overflow: hidden;
    padding: 100px 0 160px;
}

.hotel-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    transform: scale(1.03);
    animation: slowZoom 20s infinite alternate ease-in-out;
}

@keyframes slowZoom {
    0% {
        transform: scale(1.0);
    }

    100% {
        transform: scale(1.06);
    }
}

.hotel-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(7, 13, 23, 0.75) 0%,
            rgba(7, 13, 23, 0.6) 40%,
            rgba(7, 13, 23, 0.92) 100%);
}

.hotel-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.hero-title {
    font-size: clamp(2.75rem, 5.5vw, 4.75rem);
    font-weight: 600;
    line-height: 1.08;
    color: #ffffff;
    margin-bottom: 24px;
}

.hero-title em {
    font-style: italic;
    font-family: var(--font-serif);
    color: var(--gold-300);
}

.hero-lead {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    color: rgba(255, 255, 255, 0.88);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 680px;
}

.hero-stat-pill {
    background: rgba(11, 19, 32, 0.65);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-gold-subtle);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

/* Floating Booking Availability Bar */
.availability-search-bar {
    position: relative;
    z-index: 10;
    margin-top: -85px;
    margin-bottom: 40px;
}

.search-bar-card {
    background: #ffffff;
    border: 1px solid var(--border-gold-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 24px 28px;
    position: relative;
}

.search-bar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 3px 3px 0 0;
}

.search-field-group {
    display: flex;
    flex-direction: column;
}

.search-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-600);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.search-input {
    border: 1px solid var(--border-light);
    background-color: var(--paper-50);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.search-input:focus {
    border-color: var(--gold-400);
    outline: none;
    box-shadow: 0 0 0 3px rgba(202, 163, 107, 0.15);
    background-color: #ffffff;
}

/* --------------------------------------------------------------------------
   Sections General
   -------------------------------------------------------------------------- */
.section-pad {
    padding: 95px 0;
}

.section-pad-sm {
    padding: 60px 0;
}

.section-heading-wrap {
    margin-bottom: 50px;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 620px;
}

/* --------------------------------------------------------------------------
   Welcome & Overview Section
   -------------------------------------------------------------------------- */
.hotel-story-media {
    position: relative;
}

.main-story-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.story-float-card {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--navy-900);
    color: #ffffff;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-floating);
    max-width: 260px;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold-300);
    line-height: 1;
}

/* --------------------------------------------------------------------------
   Rooms & Suites Showcase
   -------------------------------------------------------------------------- */
.room-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-gold-subtle);
}

.room-card-media {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.room-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.room-badge-top {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(11, 19, 32, 0.85);
    backdrop-filter: blur(6px);
    color: var(--gold-200);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-gold-subtle);
}

.room-price-tag {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(11, 19, 32, 0.9);
    backdrop-filter: blur(6px);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-gold-subtle);
}

.price-currency {
    font-size: 13px;
    color: var(--gold-300);
    vertical-align: top;
}

.price-amount {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.price-period {
    font-size: 11px;
    color: var(--text-subtle);
}

.room-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-specs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0;
    margin: 12px 0;
    border-top: 1px dashed var(--border-light);
    border-bottom: 1px dashed var(--border-light);
    font-size: 13px;
    color: var(--text-muted);
}

.room-spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.room-features-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.room-feature-tag {
    background: var(--paper-100);
    color: var(--text-body);
    font-size: 11px;
    padding: 3px 9px;
    border-radius: var(--radius-sm);
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   Hotel Amenities Section (Core Feature)
   -------------------------------------------------------------------------- */
.amenities-section {
    background-color: var(--navy-900);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.amenities-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(202, 163, 107, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.amenity-featured-card {
    background: var(--navy-850);
    border: 1px solid var(--border-gold-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.amenity-featured-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-400);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.amenity-media-wrap {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.amenity-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.amenity-featured-card:hover .amenity-img {
    transform: scale(1.08);
}

.amenity-icon-floating {
    position: absolute;
    bottom: -20px;
    left: 24px;
    width: 48px;
    height: 48px;
    background: var(--gold-gradient);
    border-radius: var(--radius-sm);
    color: var(--navy-950);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.amenity-card-body {
    padding: 36px 24px 24px;
    flex-grow: 1;
}

.amenity-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.amenity-compact-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition);
}

.amenity-compact-box:hover {
    background: rgba(202, 163, 107, 0.06);
    border-color: var(--border-gold-subtle);
    transform: translateY(-4px);
}

.amenity-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(202, 163, 107, 0.12);
    border: 1px solid var(--border-gold-subtle);
    color: var(--gold-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.amenity-compact-box:hover .amenity-icon-circle {
    background: var(--gold-gradient);
    color: var(--navy-950);
    transform: scale(1.1);
}

/* --------------------------------------------------------------------------
   Experiences (Dining & Spa Highlights)
   -------------------------------------------------------------------------- */
.experience-banner {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    color: #ffffff;
    box-shadow: var(--shadow-lg);
}

.experience-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(7, 13, 23, 0.95) 0%, rgba(7, 13, 23, 0.7) 60%, rgba(7, 13, 23, 0.3) 100%);
}

.experience-content {
    position: relative;
    z-index: 2;
    padding: 70px 50px;
    max-width: 600px;
}

/* --------------------------------------------------------------------------
   Guest Reviews & Testimonials
   -------------------------------------------------------------------------- */
.review-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-gold-subtle);
}

.review-stars {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 16px;
}

.review-quote {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 1.55;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 24px;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--paper-200);
    color: var(--navy-800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-serif);
}

/* --------------------------------------------------------------------------
   Direct Booking Perks Banner
   -------------------------------------------------------------------------- */
.direct-perks-section {
    background: var(--paper-100);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.perk-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.perk-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(202, 163, 107, 0.15);
    border: 1px solid var(--border-gold-subtle);
    color: var(--gold-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Sub-Pages: Page Header Banner
   -------------------------------------------------------------------------- */
.page-hero-banner {
    position: relative;
    background: var(--navy-950);
    color: #ffffff;
    padding: 90px 0 60px;
    border-bottom: 1px solid var(--border-gold-subtle);
}

.page-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 30%, rgba(202, 163, 107, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-title {
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    color: #ffffff;
    margin-bottom: 14px;
}

.page-hero-desc {
    color: var(--text-subtle);
    font-size: 1.15rem;
    max-width: 680px;
    margin: 0 auto;
    font-weight: 300;
}

.breadcrumb-luxury {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.breadcrumb-luxury a {
    color: var(--gold-300);
}

.breadcrumb-luxury a:hover {
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   About Us Page Styles
   -------------------------------------------------------------------------- */
.story-pillar-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.story-pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-gold-subtle);
}

.leadership-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.leadership-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.leader-img-wrap {
    height: 320px;
    overflow: hidden;
}

.leader-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.leadership-card:hover .leader-img {
    transform: scale(1.05);
}

.leader-info {
    padding: 24px;
}

/* --------------------------------------------------------------------------
   Contact Page Styles
   -------------------------------------------------------------------------- */
.contact-dept-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.contact-dept-card:hover {
    border-color: var(--gold-400);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-form-card {
    background: #ffffff;
    border: 1px solid var(--border-gold-subtle);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-control-luxury {
    background-color: var(--paper-50);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-control-luxury:focus {
    background-color: #ffffff;
    border-color: var(--gold-400);
    outline: none;
    box-shadow: 0 0 0 3px rgba(202, 163, 107, 0.15);
}

/* Map Mockup Card */
.hotel-map-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    background: var(--navy-900);
    color: #ffffff;
    position: relative;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.map-bg-styled {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.25;
    background-image: radial-gradient(var(--gold-400) 1px, transparent 1px);
    background-size: 20px 20px;
}

.map-pin-pulse {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(202, 163, 107, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseRing 2.5s infinite;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.9;
    }

    70% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.map-pin-icon {
    width: 32px;
    height: 32px;
    background: var(--gold-gradient);
    color: var(--navy-950);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* --------------------------------------------------------------------------
   FAQ Page Styles
   -------------------------------------------------------------------------- */
.faq-search-box {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
}

.faq-search-input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-gold-subtle);
    background: #ffffff;
    font-size: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.faq-search-input:focus {
    border-color: var(--gold-400);
    outline: none;
    box-shadow: 0 0 0 4px rgba(202, 163, 107, 0.2);
}

.faq-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-500);
    font-size: 18px;
}

.faq-category-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 30px 0 40px;
}

.faq-cat-btn {
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.faq-cat-btn:hover,
.faq-cat-btn.active {
    background: var(--navy-900);
    color: var(--gold-300);
    border-color: var(--navy-900);
}

.luxury-accordion .accordion-item {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md) !important;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.luxury-accordion .accordion-item:hover {
    border-color: var(--border-gold-subtle);
}

.luxury-accordion .accordion-button {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-900);
    background: #ffffff;
    padding: 20px 24px;
    box-shadow: none !important;
}

.luxury-accordion .accordion-button:not(.collapsed) {
    color: var(--gold-600);
    background-color: var(--paper-50);
    border-bottom: 1px solid var(--border-light);
}

.luxury-accordion .accordion-body {
    padding: 24px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-body);
}

/* --------------------------------------------------------------------------
   VIP Newsletter & Footer
   -------------------------------------------------------------------------- */
.luxury-vip-banner {
    background: var(--navy-850);
    border-top: 1px solid var(--border-gold-subtle);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.luxury-footer {
    background: var(--navy-950);
    padding-top: 80px;
}

.footer-main-content {
    padding-bottom: 60px;
}

.footer-heading {
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--gold-gradient);
}

.footer-nav-links li {
    margin-bottom: 10px;
}

.footer-nav-links a {
    color: var(--text-subtle);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-nav-links a:hover {
    color: var(--gold-300);
    padding-left: 6px;
}

.footer-phone-highlight {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-phone-highlight:hover {
    color: var(--gold-300);
}

/* --------------------------------------------------------------------------
   Quick Booking Modal
   -------------------------------------------------------------------------- */
.modal-luxury {
    background: var(--navy-900);
    color: #ffffff;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-floating);
}

.alert-gold {
    background: rgba(202, 163, 107, 0.15);
    border: 1px solid var(--border-gold-subtle);
    color: var(--gold-200);
}

/* --------------------------------------------------------------------------
   Floating Concierge Action Buttons
   -------------------------------------------------------------------------- */
.floating-concierge-bar {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-call-btn,
.floating-book-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: var(--shadow-floating);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.floating-call-btn {
    background: var(--navy-900);
    color: var(--gold-300);
    border: 1px solid var(--gold-400);
}

.floating-call-btn:hover {
    background: var(--navy-950);
    color: #ffffff;
    transform: scale(1.05);
}

.floating-book-btn {
    background: var(--gold-gradient);
    color: var(--navy-950);
    border: 1px solid var(--gold-300);
}

.floating-book-btn:hover {
    background: var(--gold-gradient-hover);
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

/* --------------------------------------------------------------------------
   Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
    .section-pad {
        padding: 70px 0;
    }

    .availability-search-bar {
        margin-top: -50px;
    }

    .main-story-img {
        height: 360px;
    }

    .story-float-card {
        position: static;
        margin-top: 20px;
        max-width: 100%;
    }

    .experience-content {
        padding: 40px 24px;
    }
}

@media (max-width: 575.98px) {
    .search-bar-card {
        padding: 18px 16px;
    }

    .floating-concierge-bar {
        bottom: 16px;
        right: 16px;
    }

    .floating-call-btn,
    .floating-book-btn {
        padding: 12px;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        justify-content: center;
    }

    .hotel-hero {
        padding: 60px 0 120px;
    }
}