/* ════════════════════════════════════════════════════════════
   PEARL'S RESORT — MAIN CSS
   Aesthetic: Art Deco Luxury — dark gold, Playfair Display, refined
   ════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

/* ── RESET & ROOT ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold:       #c9a84c;
    --gold-light: #e8c97a;
    --gold-dark:  #8c6f24;
    --gold-dim:   rgba(201,168,76,.1);
    --gold-glow:  rgba(201,168,76,.25);

    --bg:         #080a0e;
    --bg-2:       #0d1018;
    --bg-3:       #131720;
    --bg-card:    rgba(13,16,24,.9);

    --border:     rgba(201,168,76,.15);
    --border-2:   rgba(201,168,76,.3);

    --text:       #ede8dc;
    --text-2:     #8a8070;
    --text-3:     #3d3830;

    --green:  #4caf82;
    --red:    #e05555;
    --blue:   #5b8dee;

    --radius: 4px;
    --shadow: 0 20px 60px rgba(0,0,0,.6);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
    font-family: 'Playfair Display', serif;
    line-height: 1.15;
    letter-spacing: -.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── GRAIN ── */
.grain {
    position: fixed; inset: 0; z-index: 1000;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: .022;
}

/* ── CONTAINER ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ── DIVIDER ── */
.divider {
    display: flex; align-items: center; gap: 1rem;
    margin: 0 0 1rem;
}
.divider::before, .divider::after {
    content: ''; flex: 1; height: 1px; background: var(--border);
}
.divider-diamond {
    width: 8px; height: 8px;
    background: var(--gold); transform: rotate(45deg); flex-shrink: 0;
}

/* ── SECTION EYEBROW ── */
.eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: .7rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: .18em;
    color: var(--gold); margin-bottom: .75rem;
    display: flex; align-items: center; gap: .75rem;
}
.eyebrow::before {
    content: ''; width: 32px; height: 1px; background: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 900;
    transition: background .4s, backdrop-filter .4s, box-shadow .4s;
}

.nav.scrolled {
    background: rgba(8,10,14,.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border), 0 8px 30px rgba(0,0,0,.4);
}

.nav-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 0 2rem;
    height: 76px;
    display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
    display: flex; align-items: center; gap: .85rem;
    text-decoration: none;
}

.nav-logo-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius);
    display: grid; place-items: center;
    font-size: 1.05rem; color: #0d1018;
    box-shadow: 0 4px 14px var(--gold-glow);
}

.nav-logo-name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; font-weight: 700;
    color: var(--text); letter-spacing: .02em;
    line-height: 1.1;
}
.nav-logo-tagline {
    display: block;
    font-size: .62rem; font-weight: 400;
    text-transform: uppercase; letter-spacing: .14em;
    color: var(--gold);
}

.nav-links {
    list-style: none;
    display: flex; gap: 2.5rem;
}

.nav-links a {
    font-size: .85rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--text-2);
    transition: color .2s;
    position: relative;
}

.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width .3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.btn-book {
    display: inline-flex; align-items: center; gap: .6rem;
    padding: .65rem 1.4rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0d1018; font-size: .78rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .1em;
    border-radius: var(--radius);
    transition: all .3s;
    box-shadow: 0 4px 18px var(--gold-glow);
}
.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--gold-glow);
}

.nav-burger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
    display: block; width: 24px; height: 1.5px;
    background: var(--text); transition: all .3s;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed; inset: 0; z-index: 800;
    background: rgba(8,10,14,.98); backdrop-filter: blur(20px);
    display: flex; align-items: center; justify-content: center;
    transform: translateY(-100%); transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { transform: none; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin: 1.5rem 0; }
.mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; color: var(--text);
    transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-cta {
    display: inline-block; margin-top: 1rem;
    padding: .8rem 2rem;
    background: var(--gold-dim); border: 1px solid var(--border-2);
    border-radius: var(--radius); font-family: 'Jost', sans-serif;
    font-size: 1rem; color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,168,76,.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg) 0%, #0a0d14 50%, var(--bg) 100%);
}

/* Art Deco geometric lines */
.hero-bg::before {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 1px; height: 100%;
    background: linear-gradient(180deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
    opacity: .08;
}

.hero-deco {
    position: absolute; inset: 0; pointer-events: none;
}

.hero-deco-circle {
    position: absolute; border-radius: 50%;
    border: 1px solid var(--border);
    animation: rotateSlow 60s linear infinite;
}

.hero-deco-circle:nth-child(1) {
    width: 600px; height: 600px;
    right: -200px; top: 50%; transform: translateY(-50%);
    animation-direction: normal;
}
.hero-deco-circle:nth-child(2) {
    width: 400px; height: 400px;
    right: -100px; top: 50%; transform: translateY(-50%);
    border-color: rgba(201,168,76,.08);
    animation-direction: reverse; animation-duration: 40s;
}
.hero-deco-corner {
    position: absolute;
    width: 80px; height: 80px;
}
.hero-deco-corner::before, .hero-deco-corner::after {
    content: ''; position: absolute; background: var(--gold);
}
.hero-deco-corner::before { width: 100%; height: 1px; top: 0; left: 0; }
.hero-deco-corner::after  { width: 1px; height: 100%; top: 0; left: 0; }

.hero-deco-corner.tl { top: 80px; left: 80px; opacity: .35; }
.hero-deco-corner.tr { top: 80px; right: 80px; transform: rotate(90deg); opacity: .35; }
.hero-deco-corner.bl { bottom: 80px; left: 80px; transform: rotate(-90deg); opacity: .35; }
.hero-deco-corner.br { bottom: 80px; right: 80px; transform: rotate(180deg); opacity: .35; }

@keyframes rotateSlow {
    from { transform: translateY(-50%) rotate(0deg); }
    to   { transform: translateY(-50%) rotate(360deg); }
}

.hero-content {
    position: relative; z-index: 2;
    max-width: 720px;
    padding: 120px 2rem 80px;
    margin: 0 auto;
    text-align: center;
    animation: heroIn 1.2s cubic-bezier(.4,0,.2,1) both;
}

@keyframes heroIn {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: none; }
}

.hero-tag {
    display: inline-flex; align-items: center; gap: .75rem;
    font-family: 'DM Mono', monospace;
    font-size: .65rem; text-transform: uppercase; letter-spacing: .2em;
    color: var(--gold);
    margin-bottom: 2rem;
}
.hero-tag::before, .hero-tag::after {
    content: ''; width: 40px; height: 1px; background: var(--gold); opacity: .6;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700; line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.hero-title em {
    font-style: italic; color: var(--gold);
    display: block;
}

.hero-subtitle {
    font-size: 1.05rem; font-weight: 300;
    color: var(--text-2); max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* QUICK BOOKING WIDGET */
.hero-booking {
    background: rgba(13,16,24,.85);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    max-width: 680px; margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(201,168,76,.05);
}

.hero-booking form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: .75rem;
    align-items: end;
}

.booking-field label {
    display: block;
    font-size: .62rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--gold); margin-bottom: .4rem;
}

.booking-field input, .booking-field select {
    width: 100%; padding: .75rem 1rem;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text); font-family: 'Jost', sans-serif;
    font-size: .875rem; outline: none;
    transition: border-color .2s;
    -webkit-appearance: none;
    color-scheme: dark;
}

.booking-field input:focus, .booking-field select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}

.booking-field input::placeholder { color: var(--text-3); }

.btn-search {
    padding: .75rem 1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0d1018; font-family: 'Jost', sans-serif;
    font-size: .8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .1em;
    border: none; border-radius: var(--radius);
    cursor: pointer; transition: all .3s; white-space: nowrap;
    box-shadow: 0 4px 18px var(--gold-glow);
}
.btn-search:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--gold-glow); }

/* Scroll indicator */
.hero-scroll {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: .5rem;
    color: var(--text-3); font-size: .62rem;
    text-transform: uppercase; letter-spacing: .15em;
    animation: heroIn 1.2s .8s both;
}
.hero-scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%,100% { transform: scaleY(1); }
    50%      { transform: scaleY(.7); }
}

/* ═══════════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════════ */
.stats-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-2);
}

.stats-bar-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 2rem;
    display: grid; grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: background .3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--gold-dim); }

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem; font-weight: 700;
    color: var(--gold); line-height: 1;
    margin-bottom: .4rem;
}
.stat-label {
    font-size: .72rem; text-transform: uppercase;
    letter-spacing: .1em; color: var(--text-2);
}

/* ═══════════════════════════════════════════════════════════
   SECTION GÉNÉRIQUE
   ═══════════════════════════════════════════════════════════ */
.section { padding: 7rem 0; }
.section-sm { padding: 4rem 0; }

.section-header {
    text-align: center; margin-bottom: 4rem;
}
.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700; color: var(--text);
    margin-bottom: .75rem;
}
.section-subtitle {
    font-size: 1rem; color: var(--text-2);
    max-width: 520px; margin: 0 auto;
    font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════
   ROOM CARDS
   ═══════════════════════════════════════════════════════════ */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.room-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all .35s cubic-bezier(.4,0,.2,1);
    position: relative;
    display: flex; flex-direction: column;
}

.room-card:hover {
    border-color: var(--border-2);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(201,168,76,.1);
}

/* Art deco corner accent */
.room-card::before {
    content: ''; position: absolute;
    top: 0; right: 0;
    width: 60px; height: 60px;
    background: linear-gradient(225deg, rgba(201,168,76,.12) 0%, transparent 60%);
    pointer-events: none; z-index: 1;
}

.room-thumb {
    height: 200px; position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
    flex-shrink: 0;
}

.room-thumb-placeholder {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: .75rem;
}
.room-thumb-placeholder i {
    font-size: 3rem; color: var(--gold); opacity: .3;
}
.room-thumb-placeholder span {
    font-size: .7rem; text-transform: uppercase;
    letter-spacing: .12em; color: var(--text-3);
}

/* Floor badge */
.room-floor {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    background: rgba(8,10,14,.8); backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    padding: 3px 10px; border-radius: 3px;
    font-family: 'DM Mono', monospace;
    font-size: .65rem; color: var(--text-2);
    text-transform: uppercase; letter-spacing: .08em;
}

/* Status badge */
.room-status {
    position: absolute; top: 12px; right: 12px; z-index: 2;
    padding: 4px 10px; border-radius: 3px;
    font-size: .65rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .07em;
}
.room-status.libre      { background: rgba(76,175,130,.15); color: #4caf82; border: 1px solid rgba(76,175,130,.3); }
.room-status.nettoyage  { background: rgba(234,179,8,.12);  color: #d4a84c; border: 1px solid rgba(234,179,8,.25); }
.room-status.maintenance{ background: rgba(148,163,184,.1); color: #94a3b8; border: 1px solid rgba(148,163,184,.2); }

.room-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .75rem; }

.room-meta {
    display: flex; align-items: center; justify-content: space-between;
}
.room-number {
    font-family: 'DM Mono', monospace;
    font-size: .75rem; color: var(--gold); letter-spacing: .06em;
}

.room-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem; font-weight: 600; color: var(--text);
    line-height: 1.2;
}

.room-desc {
    font-size: .85rem; color: var(--text-2); line-height: 1.55;
    flex: 1;
}

.room-amenities {
    display: flex; flex-wrap: wrap; gap: .4rem;
}
.room-amenity {
    display: inline-flex; align-items: center; gap: .3rem;
    font-size: .65rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: .06em;
    color: var(--text-2); padding: 3px 8px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 3px;
}
.room-amenity i { font-size: .6rem; color: var(--gold); }

.room-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 1rem; border-top: 1px solid var(--border);
    margin-top: auto;
}

.room-price {
    display: flex; flex-direction: column;
}
.room-price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 700; color: var(--gold);
    line-height: 1;
}
.room-price-label {
    font-size: .62rem; color: var(--text-3);
    text-transform: uppercase; letter-spacing: .08em;
    margin-top: .2rem;
}

.room-capacity {
    display: flex; align-items: center; gap: .4rem;
    font-size: .75rem; color: var(--text-2);
}

.btn-reserve {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .6rem 1.2rem;
    background: var(--gold-dim); border: 1px solid var(--border-2);
    color: var(--gold); border-radius: var(--radius);
    font-size: .75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .08em;
    transition: all .25s; cursor: pointer;
}
.btn-reserve:hover {
    background: var(--gold); color: #0d1018;
    box-shadow: 0 4px 18px var(--gold-glow);
}

/* ═══════════════════════════════════════════════════════════
   FILTERS BAR
   ═══════════════════════════════════════════════════════════ */
.filters-bar {
    background: var(--bg-2); border: 1px solid var(--border);
    border-radius: 8px; padding: 1.25rem 1.5rem;
    margin-bottom: 2.5rem;
    display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}

.filter-group {
    display: flex; flex-direction: column; gap: .35rem;
    min-width: 140px;
}
.filter-label {
    font-size: .62rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--gold);
}
.filter-input, .filter-select {
    padding: .6rem .9rem;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    border-radius: var(--radius); color: var(--text);
    font-family: 'Jost', sans-serif; font-size: .85rem;
    outline: none; transition: border-color .2s;
    color-scheme: dark;
}
.filter-input:focus, .filter-select:focus { border-color: var(--gold); }
.filter-input::placeholder { color: var(--text-3); }

.btn-filter {
    padding: .65rem 1.25rem; margin-top: 1.1rem;
    background: var(--gold-dim); border: 1px solid var(--border-2);
    color: var(--gold); border-radius: var(--radius);
    font-family: 'Jost', sans-serif; font-size: .8rem;
    font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
    cursor: pointer; transition: all .25s; white-space: nowrap;
}
.btn-filter:hover { background: var(--gold); color: #0d1018; }
.btn-filter-reset {
    padding: .65rem .9rem; margin-top: 1.1rem;
    background: none; border: 1px solid var(--border);
    color: var(--text-2); border-radius: var(--radius);
    font-family: 'Jost', sans-serif; font-size: .8rem;
    cursor: pointer; transition: all .25s;
}
.btn-filter-reset:hover { border-color: var(--border-2); color: var(--text); }

/* Results count */
.results-info {
    font-size: .8rem; color: var(--text-2);
    margin-bottom: 1.5rem; display: flex; align-items: center; gap: .5rem;
}
.results-info strong { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   ROOM DETAIL PAGE
   ═══════════════════════════════════════════════════════════ */
.room-detail-header {
    padding: 120px 0 4rem;
    background: linear-gradient(180deg, rgba(201,168,76,.04) 0%, transparent 100%);
    border-bottom: 1px solid var(--border);
}

.room-detail-grid {
    display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start;
}

.room-detail-gallery {
    background: var(--bg-2); border: 1px solid var(--border);
    border-radius: 8px; overflow: hidden;
    aspect-ratio: 16/9;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 1rem;
}
.room-detail-gallery i { font-size: 4rem; color: var(--gold); opacity: .2; }
.room-detail-gallery span { font-size: .8rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .1em; }

.room-detail-badges { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.25rem; }

.room-detail-title {
    font-size: 2.8rem; font-weight: 700; color: var(--text);
    margin-bottom: .5rem;
}

.room-detail-number {
    font-family: 'DM Mono', monospace; font-size: .8rem;
    color: var(--gold); margin-bottom: 1.5rem;
}

.room-detail-price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 700; color: var(--gold);
    margin-bottom: .25rem;
}
.room-detail-price-label { font-size: .72rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.5rem; }

.room-detail-amenities-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; margin-bottom: 1.5rem;
}
.amenity-item {
    display: flex; align-items: center; gap: .6rem;
    font-size: .85rem; color: var(--text-2);
}
.amenity-item i { color: var(--gold); font-size: .75rem; width: 14px; }

.room-detail-desc { font-size: .95rem; color: var(--text-2); line-height: 1.75; }

/* BOOKING SIDEBAR */
.booking-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border); border-radius: 8px;
    padding: 2rem; position: sticky; top: 100px;
}

.booking-sidebar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; font-weight: 600; color: var(--text);
    margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: .75rem;
}
.booking-sidebar-title::after {
    content: ''; flex: 1; height: 1px; background: var(--border);
}

/* ═══════════════════════════════════════════════════════════
   RESERVATION FORM
   ═══════════════════════════════════════════════════════════ */
.reservation-section { padding: 120px 0 6rem; }

.reservation-grid {
    display: grid; grid-template-columns: 1fr 400px; gap: 3rem; align-items: start;
}

.form-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 8px; padding: 2.5rem;
}

.form-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 700; color: var(--text);
    margin-bottom: 2rem; padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.form-step { margin-bottom: 2rem; }
.form-step-title {
    font-size: .7rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .14em;
    color: var(--gold); margin-bottom: 1rem;
    display: flex; align-items: center; gap: .75rem;
}
.form-step-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.form-step-num {
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--gold-dim); border: 1px solid var(--border-2);
    display: grid; place-items: center;
    font-family: 'DM Mono', monospace; font-size: .6rem; color: var(--gold);
    flex-shrink: 0;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }

.form-group label {
    font-size: .7rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .1em; color: var(--text-2);
}

.form-group input, .form-group select, .form-group textarea {
    padding: .85rem 1rem;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text); font-family: 'Jost', sans-serif;
    font-size: .9rem; outline: none;
    transition: border-color .2s, box-shadow .2s;
    color-scheme: dark;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-3); }
.form-group textarea { resize: vertical; min-height: 90px; }
select.form-group-select option { background: var(--bg-2); }

.form-hint { font-size: .72rem; color: var(--text-3); margin-top: .25rem; }

/* PRICE PREVIEW */
.price-preview {
    background: var(--gold-dim); border: 1px solid var(--border-2);
    border-radius: 8px; padding: 1.5rem; margin-bottom: 1.5rem;
    display: none;
}
.price-preview.visible { display: block; animation: fadeIn .3s ease; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

.price-preview-row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: .85rem; color: var(--text-2); margin-bottom: .5rem;
}
.price-preview-row:last-child { margin-bottom: 0; }
.price-preview-total {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 700; color: var(--gold);
    border-top: 1px solid var(--border); padding-top: .75rem; margin-top: .75rem;
    display: flex; justify-content: space-between; align-items: baseline;
}

.btn-submit {
    width: 100%; padding: 1rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0d1018; font-family: 'Jost', sans-serif;
    font-size: .9rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .12em;
    border: none; border-radius: var(--radius);
    cursor: pointer; transition: all .3s;
    box-shadow: 0 4px 20px var(--gold-glow);
    display: flex; align-items: center; justify-content: center; gap: .75rem;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--gold-glow); }
.btn-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* SUMMARY CARD */
.summary-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 8px; padding: 2rem; position: sticky; top: 100px;
}
.summary-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 700; color: var(--text);
    margin-bottom: 1.5rem; padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}
.summary-room-preview {
    background: var(--bg-3); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1rem; margin-bottom: 1.25rem;
    min-height: 100px; display: flex; align-items: center; justify-content: center;
}
.summary-room-icon { font-size: 2rem; color: var(--gold); opacity: .25; }

.summary-row {
    display: flex; justify-content: space-between; align-items: flex-start;
    font-size: .85rem; color: var(--text-2); margin-bottom: .75rem; gap: .5rem;
}
.summary-row strong { color: var(--text); text-align: right; }
.summary-divider { height: 1px; background: var(--border); margin: 1rem 0; }

.trust-items {
    margin-top: 1.5rem; display: flex; flex-direction: column; gap: .6rem;
}
.trust-item {
    display: flex; align-items: center; gap: .6rem;
    font-size: .75rem; color: var(--text-2);
}
.trust-item i { color: var(--gold); font-size: .7rem; width: 14px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   CONFIRMATION PAGE
   ═══════════════════════════════════════════════════════════ */
.confirmation-section {
    min-height: 80vh; display: flex; align-items: center;
    padding: 120px 0 6rem;
}

.confirmation-card {
    max-width: 680px; margin: 0 auto; text-align: center;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 8px; padding: 3.5rem;
    position: relative; overflow: hidden;
}
.confirmation-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.confirmation-icon {
    width: 80px; height: 80px; margin: 0 auto 2rem;
    background: var(--gold-dim); border: 1px solid var(--border-2);
    border-radius: 50%; display: grid; place-items: center;
    font-size: 2rem; color: var(--gold);
}

.confirmation-title {
    font-size: 2.5rem; margin-bottom: .75rem;
    color: var(--text);
}

.confirmation-ref {
    font-family: 'DM Mono', monospace; font-size: .9rem;
    color: var(--gold); margin-bottom: 2rem;
    display: flex; align-items: center; justify-content: center; gap: .5rem;
}

.confirmation-details {
    background: var(--bg-3); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.5rem; margin-bottom: 2rem;
    text-align: left;
}

.conf-detail-row {
    display: flex; justify-content: space-between;
    font-size: .875rem; color: var(--text-2); padding: .5rem 0;
    border-bottom: 1px solid rgba(255,255,255,.04);
}
.conf-detail-row:last-child { border-bottom: none; }
.conf-detail-row strong { color: var(--text); }

/* ═══════════════════════════════════════════════════════════
   FEATURES / AMENITIES SECTION
   ═══════════════════════════════════════════════════════════ */
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: var(--border); border: 1px solid var(--border);
    border-radius: 8px; overflow: hidden;
}

.feature-item {
    background: var(--bg-2); padding: 2.5rem 2rem;
    transition: background .3s;
}
.feature-item:hover { background: var(--bg-3); }

.feature-icon {
    width: 52px; height: 52px; border-radius: var(--radius);
    background: var(--gold-dim); border: 1px solid var(--border);
    display: grid; place-items: center;
    font-size: 1.2rem; color: var(--gold);
    margin-bottom: 1.25rem; transition: all .3s;
}
.feature-item:hover .feature-icon {
    background: var(--gold); color: #0d1018;
    box-shadow: 0 6px 20px var(--gold-glow);
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 600; color: var(--text);
    margin-bottom: .5rem;
}
.feature-desc { font-size: .85rem; color: var(--text-2); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   ALERTS
   ═══════════════════════════════════════════════════════════ */
.alert {
    padding: 1rem 1.25rem; border-radius: var(--radius);
    display: flex; align-items: flex-start; gap: .75rem;
    font-size: .875rem; margin-bottom: 1.25rem;
}
.alert i { flex-shrink: 0; margin-top: .1rem; }
.alert-success { background: rgba(76,175,130,.08); border: 1px solid rgba(76,175,130,.25); color: #6ee7b7; }
.alert-error   { background: rgba(224,85,85,.08);  border: 1px solid rgba(224,85,85,.25);  color: #fca5a5; }
.alert-info    { background: var(--gold-dim);       border: 1px solid var(--border-2);       color: var(--gold); }
.alert-warning { background: rgba(249,115,22,.08); border: 1px solid rgba(249,115,22,.25); color: #fdba74; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); }

.footer-top { padding: 5rem 0 3rem; }

.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
}

.footer-logo {
    display: flex; align-items: center; gap: .85rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 700; color: var(--text);
    margin-bottom: 1rem;
}
.footer-logo-icon {
    width: 38px; height: 38px;
    background: var(--gold-dim); border: 1px solid var(--border);
    border-radius: var(--radius); display: grid; place-items: center;
    font-size: .95rem; color: var(--gold);
}

.footer-desc { font-size: .85rem; color: var(--text-2); line-height: 1.7; margin-bottom: 1.5rem; }

.footer-socials { display: flex; gap: .75rem; }
.footer-socials a {
    width: 36px; height: 36px;
    background: var(--gold-dim); border: 1px solid var(--border);
    border-radius: var(--radius); display: grid; place-items: center;
    font-size: .85rem; color: var(--text-2); transition: all .25s;
}
.footer-socials a:hover { background: var(--gold); color: #0d1018; border-color: var(--gold); }

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: .95rem; color: var(--text); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .65rem; }
.footer-col a { font-size: .85rem; color: var(--text-2); transition: color .2s; }
.footer-col a:hover { color: var(--gold); }

.footer-info { list-style: none; }
.footer-info li {
    display: flex; align-items: flex-start; gap: .6rem;
    font-size: .82rem; color: var(--text-2); margin-bottom: .65rem;
}
.footer-info i { color: var(--gold); font-size: .75rem; margin-top: .15rem; flex-shrink: 0; }

.footer-bottom {
    border-top: 1px solid var(--border); padding: 1.5rem 0;
}
.footer-bottom .container {
    display: flex; align-items: center; gap: 1rem;
    font-size: .78rem; color: var(--text-3);
    flex-wrap: wrap;
}
.footer-sep { color: var(--border-2); }
.footer-bottom a { color: var(--text-2); transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   EMPTY STATE
   ═══════════════════════════════════════════════════════════ */
.empty-state {
    text-align: center; padding: 5rem 2rem;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 8px;
}
.empty-state i { font-size: 3rem; color: var(--gold); opacity: .2; display: block; margin-bottom: 1rem; }
.empty-state h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.empty-state p { color: var(--text-2); font-size: .9rem; }

/* ═══════════════════════════════════════════════════════════
   PAGE HEADER (interior pages)
   ═══════════════════════════════════════════════════════════ */
.page-header {
    padding: 120px 0 4rem;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(201,168,76,.04) 0%, transparent 100%);
    position: relative; overflow: hidden;
}
.page-header::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: .3;
}
.page-header .eyebrow { justify-content: flex-start; }
.page-header h1 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: .75rem; }
.page-header p { color: var(--text-2); font-size: 1rem; max-width: 540px; }

/* ═══════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════ */
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-2); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.hidden { display: none !important; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-booking form { grid-template-columns: 1fr 1fr; }
    .room-detail-grid, .reservation-grid { grid-template-columns: 1fr; }
    .booking-sidebar, .summary-card { position: static; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-burger { display: flex; }
    .hero-booking form { grid-template-columns: 1fr; }
    .rooms-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .filters-bar { flex-direction: column; align-items: stretch; }
    .btn-filter, .btn-filter-reset { margin-top: 0; }
    .hero-deco-corner { display: none; }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 3px; }