/* ====================================================
   LUXSTAY — Feuille de style principale
   Design : Luxe raffiné, tons ivoire/or/ardoise
   ==================================================== */

/* ---- TOKENS ---- */
:root {
  --ivory:       #f5f0e8;
  --ivory-dark:  #ede6d6;
  --cream:       #faf7f2;
  --gold:        #c9a84c;
  --gold-light:  #e4c97e;
  --gold-dark:   #a07830;
  --slate:       #2c3240;
  --slate-mid:   #4a5568;
  --slate-light: #7a8499;
  --slate-pale:  #d1d8e4;
  --white:       #ffffff;
  --error:       #c0392b;
  --success:     #27ae60;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-sm:   0 2px 8px rgba(44,50,64,.08);
  --shadow-md:   0 8px 32px rgba(44,50,64,.12);
  --shadow-lg:   0 20px 60px rgba(44,50,64,.18);

  --transition:  all .3s cubic-bezier(.4,0,.2,1);
  --nav-h:       72px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--slate);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  background: rgba(250,247,242,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,.15);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }

.nav-brand { display: flex; align-items: center; gap: 8px; }
.brand-icon { color: var(--gold); font-size: 1.2rem; }
.brand-name {
  font-family: var(--font-display); font-size: 1.6rem;
  font-weight: 600; color: var(--slate); letter-spacing: .02em;
}

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-link {
  font-size: .9rem; font-weight: 400; letter-spacing: .05em;
  text-transform: uppercase; color: var(--slate-mid);
  position: relative; transition: var(--transition);
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transition: transform .3s ease; transform-origin: left;
}
.nav-link:hover, .nav-link.active { color: var(--slate); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

/* ---- BUTTONS ---- */
.btn-primary {
  padding: 10px 24px; border-radius: var(--radius-sm);
  background: var(--gold); color: var(--white);
  font-size: .875rem; font-weight: 500; letter-spacing: .04em;
  text-transform: uppercase; transition: var(--transition);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark); border-color: var(--gold-dark);
  transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,168,76,.3);
}
.btn-ghost {
  padding: 10px 24px; border-radius: var(--radius-sm);
  background: transparent; color: var(--slate);
  font-size: .875rem; font-weight: 400; letter-spacing: .04em;
  border: 1px solid var(--slate-pale); transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline {
  padding: 12px 32px; border-radius: var(--radius-sm);
  background: transparent; color: var(--gold);
  font-size: .875rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; border: 2px solid var(--gold);
  transition: var(--transition);
}
.btn-outline:hover { background: var(--gold); color: var(--white); }
.btn-full { width: 100%; }
.btn-back {
  color: var(--slate-mid); font-size: .875rem; padding: 8px 0;
  transition: var(--transition);
}
.btn-back:hover { color: var(--gold); }

/* ---- USER MENU ---- */
.user-menu { position: relative; }
.avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: .9rem; cursor: pointer;
  transition: var(--transition);
}
.avatar:hover { transform: scale(1.05); }
.dropdown {
  display: none; position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 180px; background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); border: 1px solid var(--ivory-dark);
  padding: 8px 0; overflow: hidden;
}
.dropdown.open { display: block; animation: fadeDown .2s ease; }
.dropdown a {
  display: block; padding: 10px 20px; font-size: .875rem;
  color: var(--slate-mid); transition: var(--transition);
}
.dropdown a:hover { background: var(--ivory); color: var(--gold); }
.dropdown hr { border: none; border-top: 1px solid var(--ivory-dark); margin: 4px 0; }

.hamburger { display: none; font-size: 1.4rem; color: var(--slate); }

/* ---- PAGES ---- */
.page { display: none; min-height: 100vh; padding-top: var(--nav-h); }
.page.active { display: block; animation: fadeIn .4s ease; }

/* ---- HERO ---- */
.hero {
  position: relative; min-height: calc(100vh - var(--nav-h));
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a2030 0%, #2c3240 50%, #1e2a3a 100%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,.08) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(201,168,76,.06) 0%, transparent 35%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto; padding: 60px 40px 0;
  text-align: center;
}
.hero-eyebrow {
  font-size: .8rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; animation: slideUp .6s ease .1s both;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300; line-height: 1.05; color: var(--ivory);
  margin-bottom: 24px; animation: slideUp .6s ease .2s both;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
  font-size: 1.1rem; color: var(--slate-light); max-width: 520px;
  margin: 0 auto 48px; animation: slideUp .6s ease .3s both;
}

/* ---- SEARCH BAR ---- */
.search-bar {
  display: flex; flex-wrap: wrap; gap: 0;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 8px; box-shadow: var(--shadow-lg);
  animation: slideUp .6s ease .4s both;
  border: 1px solid rgba(201,168,76,.2);
}
.search-field {
  flex: 1; min-width: 150px; padding: 12px 20px;
  border-right: 1px solid var(--ivory-dark); position: relative;
}
.search-field:last-of-type { border-right: none; }
.search-field label {
  display: block; font-size: .7rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--slate-light); margin-bottom: 4px;
}
.search-field input, .search-field select {
  border: none; outline: none; background: transparent;
  font-size: .95rem; color: var(--slate); width: 100%;
  padding: 0;
}
.btn-search {
  padding: 14px 28px; background: var(--gold); color: var(--white);
  border-radius: calc(var(--radius-lg) - 4px);
  font-size: .875rem; font-weight: 500; letter-spacing: .05em;
  text-transform: uppercase; transition: var(--transition);
  white-space: nowrap; flex-shrink: 0;
}
.btn-search:hover { background: var(--gold-dark); transform: scale(1.02); }

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: var(--slate-light); font-size: .75rem; letter-spacing: .2em;
  text-transform: uppercase; text-align: center; animation: pulse 2s infinite;
}
.scroll-arrow { font-size: 1.2rem; margin-top: 4px; animation: bounce 1.5s infinite; }

/* ---- SECTIONS ---- */
.section {
  padding: 100px 40px;
  max-width: 1280px; margin: 0 auto;
}
.section-light {
  background: var(--ivory); max-width: 100%;
  padding: 100px max(40px, calc(50% - 600px));
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
  font-size: .75rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; color: var(--slate);
}
.section-cta { text-align: center; margin-top: 48px; }

/* ---- HOTEL CARDS (grid) ---- */
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.hotel-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition); cursor: pointer;
  border: 1px solid var(--ivory-dark);
}
.hotel-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.hotel-card-img {
  height: 220px; background: var(--ivory-dark);
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.hotel-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(44,50,64,.3));
}
.hotel-badge {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  background: rgba(44,50,64,.8); backdrop-filter: blur(6px);
  color: var(--gold-light); font-size: .7rem; letter-spacing: .12em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 20px;
}
.hotel-card-body { padding: 22px; }
.hotel-card-name {
  font-family: var(--font-display); font-size: 1.4rem;
  font-weight: 400; margin-bottom: 4px; color: var(--slate);
}
.hotel-card-city { font-size: .85rem; color: var(--slate-light); margin-bottom: 14px; }
.hotel-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--ivory-dark);
}
.hotel-rating {
  display: flex; align-items: center; gap: 6px;
  font-size: .85rem; color: var(--slate-mid);
}
.stars { color: var(--gold); letter-spacing: -2px; }
.hotel-price { font-size: .85rem; color: var(--slate-light); }
.hotel-price strong {
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 400; color: var(--slate);
}

/* ---- STATS BAND ---- */
.stats-band {
  background: var(--slate);
  display: flex; justify-content: center; flex-wrap: wrap; gap: 0;
  padding: 60px 40px;
}
.stat-item {
  flex: 1; min-width: 160px; text-align: center;
  padding: 20px 40px; border-right: 1px solid rgba(201,168,76,.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block; font-family: var(--font-display); font-size: 3rem;
  font-weight: 300; color: var(--gold-light); line-height: 1;
}
.stat-label { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-light); margin-top: 8px; display: block; }

/* ---- FEATURES ---- */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.feature-card {
  background: var(--white); padding: 36px 28px;
  border-radius: var(--radius-md); border: 1px solid var(--ivory-dark);
  transition: var(--transition);
}
.feature-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  font-size: 1.8rem; color: var(--gold); margin-bottom: 20px;
  display: block; transition: var(--transition);
}
.feature-card h3 {
  font-family: var(--font-display); font-size: 1.3rem;
  margin-bottom: 10px; font-weight: 400;
}
.feature-card p { font-size: .9rem; color: var(--slate-mid); line-height: 1.7; }

/* ---- PAGE MINI HERO ---- */
.page-hero-mini {
  background: var(--slate);
  padding: 60px 40px 50px; text-align: center;
}
.page-hero-mini h1 {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; color: var(--ivory);
}
.page-hero-mini h1 em { font-style: italic; color: var(--gold-light); }
.page-hero-mini p { color: var(--slate-light); margin-top: 8px; }

/* ---- HOTELS PAGE LAYOUT ---- */
.hotels-layout {
  display: flex; gap: 32px; max-width: 1280px;
  margin: 0 auto; padding: 48px 40px;
}
.filters-panel {
  width: 280px; flex-shrink: 0;
  background: var(--white); padding: 28px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); border: 1px solid var(--ivory-dark);
  height: fit-content; position: sticky; top: 90px;
}
.filters-title {
  font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 24px;
  font-weight: 400; color: var(--slate);
}
.filter-group { margin-bottom: 24px; }
.filter-group > label {
  display: block; font-size: .75rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--slate-light); margin-bottom: 10px;
}
.filter-input {
  width: 100%; padding: 10px 14px; border: 1px solid var(--ivory-dark);
  border-radius: var(--radius-sm); font-size: .9rem; color: var(--slate);
  outline: none; transition: var(--transition); background: var(--cream);
}
.filter-input:focus { border-color: var(--gold); }
.range-slider {
  width: 100%; accent-color: var(--gold); cursor: pointer;
}
.range-display { display: flex; justify-content: space-between; font-size: .8rem; color: var(--slate-light); margin-top: 6px; }
.stars-filter { display: flex; flex-wrap: wrap; gap: 8px; }
.star-btn {
  padding: 6px 12px; border-radius: 20px; font-size: .8rem;
  border: 1px solid var(--ivory-dark); color: var(--slate-mid);
  transition: var(--transition);
}
.star-btn.active, .star-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.checkbox-group { display: flex; flex-direction: column; gap: 8px; }
.checkbox-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .875rem; color: var(--slate-mid); cursor: pointer;
}
.checkbox-item input { accent-color: var(--gold); cursor: pointer; }

.hotels-results { flex: 1; }
.results-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--ivory-dark);
}
.results-header span { font-size: .9rem; color: var(--slate-mid); }
.sort-select {
  padding: 8px 12px; border: 1px solid var(--ivory-dark); border-radius: var(--radius-sm);
  font-size: .85rem; outline: none; background: var(--white); color: var(--slate);
  cursor: pointer;
}
.hotels-list { display: flex; flex-direction: column; gap: 20px; }

/* Hotel list card */
.hotel-list-card {
  background: var(--white); border-radius: var(--radius-md);
  display: flex; overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--ivory-dark);
  transition: var(--transition); cursor: pointer;
}
.hotel-list-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); border-color: var(--gold-light); }
.hotel-list-img {
  width: 240px; flex-shrink: 0; background: var(--ivory-dark);
  background-size: cover; background-position: center;
}
.hotel-list-body { flex: 1; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; }
.hotel-list-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 8px; }
.hotel-list-name {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: var(--slate);
}
.hotel-list-desc { font-size: .9rem; color: var(--slate-mid); margin: 8px 0; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hotel-list-footer { display: flex; justify-content: space-between; align-items: flex-end; }
.amenities { display: flex; gap: 8px; flex-wrap: wrap; }
.amenity-tag {
  background: var(--ivory); color: var(--slate-mid); font-size: .75rem;
  padding: 3px 10px; border-radius: 20px; letter-spacing: .05em;
}
.hotel-list-price-area { text-align: right; }
.price-from { font-size: .75rem; color: var(--slate-light); text-transform: uppercase; letter-spacing: .08em; }
.price-amount {
  font-family: var(--font-display); font-size: 2rem; font-weight: 300;
  color: var(--slate); line-height: 1;
}
.price-night { font-size: .75rem; color: var(--slate-light); }
.btn-view-hotel { margin-top: 16px; display: inline-block; padding: 10px 22px; background: var(--gold); color: var(--white); border-radius: var(--radius-sm); font-size: .8rem; letter-spacing: .05em; text-transform: uppercase; transition: var(--transition); }
.btn-view-hotel:hover { background: var(--gold-dark); }

/* ---- HOTEL DETAIL ---- */
.detail-back { max-width: 1280px; margin: 0 auto; padding: 24px 40px 0; }

.hotel-detail-gallery {
  display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: repeat(2, 220px);
  gap: 4px; margin-bottom: 48px; border-radius: var(--radius-md); overflow: hidden;
}
.gallery-main { grid-row: 1 / 3; background-size: cover; background-position: center; }
.gallery-sub { background-size: cover; background-position: center; background-color: var(--ivory-dark); }

.hotel-detail-layout {
  display: flex; gap: 40px; max-width: 1280px; margin: 0 auto; padding: 0 40px 80px;
}
.hotel-detail-main { flex: 1; }
.hotel-detail-header { margin-bottom: 32px; }
.detail-badge {
  display: inline-block; background: var(--ivory); color: var(--gold-dark);
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 12px;
  border: 1px solid var(--gold-light);
}
.detail-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; color: var(--slate); margin-bottom: 8px;
}
.detail-location { font-size: 1rem; color: var(--slate-mid); margin-bottom: 16px; }
.detail-rating { display: flex; align-items: center; gap: 12px; }
.rating-score {
  background: var(--gold); color: var(--white); width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); font-weight: 600; font-size: 1.1rem;
}
.detail-description { font-size: .95rem; color: var(--slate-mid); line-height: 1.8; margin: 32px 0; }

.detail-amenities { margin-bottom: 32px; }
.detail-amenities h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; margin-bottom: 16px; }
.amenities-grid { display: flex; flex-wrap: wrap; gap: 10px; }

.detail-reviews { margin-top: 48px; }
.detail-reviews h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 300; margin-bottom: 24px; }
.review-card {
  background: var(--white); padding: 20px; border-radius: var(--radius-md);
  border: 1px solid var(--ivory-dark); margin-bottom: 16px;
}
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.reviewer-name { font-weight: 500; color: var(--slate); }
.review-date { font-size: .8rem; color: var(--slate-light); }
.review-comment { font-size: .9rem; color: var(--slate-mid); line-height: 1.7; }

/* Booking widget */
.booking-widget {
  width: 340px; flex-shrink: 0; height: fit-content;
  position: sticky; top: 90px;
}
.widget-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); border: 1px solid var(--ivory-dark);
  overflow: hidden;
}
.widget-header { background: var(--slate); padding: 24px; color: var(--ivory); }
.widget-price-display {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 300; color: var(--gold-light);
}
.widget-price-per { font-size: .8rem; color: var(--slate-light); }
.widget-body { padding: 24px; }
.widget-fields { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.widget-field {
  border: 1px solid var(--ivory-dark); border-radius: var(--radius-sm); padding: 12px 14px;
  transition: var(--transition);
}
.widget-field:focus-within { border-color: var(--gold); }
.widget-field label { display: block; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-light); margin-bottom: 4px; }
.widget-field input, .widget-field select {
  border: none; outline: none; background: transparent; font-size: .95rem; color: var(--slate); width: 100%;
}

/* ---- BOOKING PAGE ---- */
.booking-layout {
  display: flex; gap: 40px; max-width: 1100px; margin: 0 auto; padding: 40px;
}
.booking-form-area { flex: 1; }
.booking-title {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 300;
  color: var(--slate); margin-bottom: 32px;
}
.booking-title em { font-style: italic; color: var(--gold); }
.booking-steps {
  display: flex; gap: 0; margin-bottom: 40px; border-radius: var(--radius-sm);
  overflow: hidden; border: 1px solid var(--ivory-dark);
}
.step {
  flex: 1; padding: 12px; text-align: center; font-size: .8rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--slate-light);
  background: var(--white); border-right: 1px solid var(--ivory-dark);
  transition: var(--transition);
}
.step:last-child { border-right: none; }
.step.active { background: var(--gold); color: var(--white); font-weight: 500; }
.step.done { background: var(--slate); color: var(--gold-light); }
.booking-step { }
.booking-step.hidden { display: none; }
.form-section { background: var(--white); padding: 28px; border-radius: var(--radius-md); border: 1px solid var(--ivory-dark); margin-bottom: 20px; }
.form-section h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; margin-bottom: 20px; color: var(--slate); }
.form-row { display: flex; gap: 16px; }
.form-row .form-group { flex: 1; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-light); margin-bottom: 8px; }
.form-control {
  width: 100%; padding: 12px 14px; border: 1px solid var(--ivory-dark);
  border-radius: var(--radius-sm); font-size: .9rem; color: var(--slate);
  outline: none; transition: var(--transition); background: var(--cream);
  resize: none;
}
.form-control:focus { border-color: var(--gold); background: var(--white); }
.availability-status { margin-bottom: 16px; padding: 14px; border-radius: var(--radius-sm); font-size: .9rem; display: none; }
.availability-status.available { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; display: block; }
.availability-status.unavailable { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; display: block; }

.payment-notice {
  background: var(--ivory); border: 1px solid var(--gold-light);
  color: var(--slate-mid); padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: .85rem; margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}
.payment-icon { font-size: 1rem; }

.confirmation-box { text-align: center; padding: 60px 40px; }
.confirm-icon { font-size: 3rem; color: var(--gold); margin-bottom: 20px; }
.confirmation-box h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 400; margin-bottom: 12px; }
.confirm-details {
  background: var(--ivory); border-radius: var(--radius-md); padding: 20px;
  margin: 24px auto; max-width: 360px; text-align: left;
  border: 1px solid var(--ivory-dark);
}
.confirm-detail-line { display: flex; justify-content: space-between; padding: 8px 0; font-size: .9rem; border-bottom: 1px solid var(--ivory-dark); }
.confirm-detail-line:last-child { border-bottom: none; font-weight: 600; }

/* Booking summary */
.booking-summary { width: 300px; flex-shrink: 0; }
.summary-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); border: 1px solid var(--ivory-dark);
  overflow: hidden; position: sticky; top: 90px;
}
.summary-hotel-img { height: 180px; background-size: cover; background-position: center; background-color: var(--ivory-dark); }
.summary-info { padding: 16px; }
.summary-info h4 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; }
.summary-info p { font-size: .85rem; color: var(--slate-light); }
.summary-divider { border: none; border-top: 1px solid var(--ivory-dark); margin: 0; }
.summary-line { display: flex; justify-content: space-between; padding: 10px 16px; font-size: .875rem; color: var(--slate-mid); }
.summary-total { display: flex; justify-content: space-between; padding: 16px; font-weight: 600; background: var(--ivory); font-family: var(--font-display); font-size: 1.1rem; }

/* ---- RESERVATIONS ---- */
.reservations-container { max-width: 900px; margin: 0 auto; padding: 48px 40px; }
.reservations-tabs { display: flex; gap: 8px; margin-bottom: 32px; }
.res-tab {
  padding: 10px 20px; border-radius: 24px; font-size: .85rem;
  border: 1px solid var(--ivory-dark); color: var(--slate-mid);
  transition: var(--transition);
}
.res-tab.active { background: var(--slate); color: var(--white); border-color: var(--slate); }
.reservation-card {
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--ivory-dark); margin-bottom: 16px;
  display: flex; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.reservation-card:hover { box-shadow: var(--shadow-md); }
.res-img { width: 180px; flex-shrink: 0; background-size: cover; background-position: center; background-color: var(--ivory-dark); }
.res-body { flex: 1; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; }
.res-header { display: flex; justify-content: space-between; align-items: flex-start; }
.res-hotel-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; }
.res-status { padding: 4px 12px; border-radius: 20px; font-size: .75rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.res-status.confirmed { background: #d4edda; color: #155724; }
.res-status.cancelled { background: #f8d7da; color: #721c24; }
.res-dates { display: flex; gap: 24px; margin: 12px 0; }
.res-date-item label { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-light); display: block; }
.res-date-item span { font-size: .95rem; color: var(--slate); }
.res-footer { display: flex; justify-content: space-between; align-items: center; }
.res-total { font-family: var(--font-display); font-size: 1.4rem; font-weight: 300; }
.btn-cancel {
  padding: 8px 18px; border-radius: var(--radius-sm); font-size: .8rem;
  border: 1px solid var(--error); color: var(--error); transition: var(--transition);
  background: transparent;
}
.btn-cancel:hover { background: var(--error); color: var(--white); }
.btn-review {
  padding: 8px 18px; border-radius: var(--radius-sm); font-size: .8rem;
  border: 1px solid var(--gold); color: var(--gold); transition: var(--transition);
  background: transparent;
}
.btn-review:hover { background: var(--gold); color: var(--white); }

/* ---- PROFILE ---- */
.profile-layout { display: flex; gap: 40px; max-width: 1000px; margin: 0 auto; padding: 48px 40px; }
.profile-card {
  width: 260px; flex-shrink: 0; background: var(--white);
  border-radius: var(--radius-lg); padding: 40px 28px; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--ivory-dark);
  height: fit-content;
}
.profile-avatar-large {
  width: 80px; height: 80px; border-radius: 50%; background: var(--gold);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 300; font-family: var(--font-display);
  margin: 0 auto 16px;
}
.profile-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; }
.profile-card p { font-size: .85rem; color: var(--slate-light); margin: 4px 0 16px; }
.profile-badge { display: inline-block; background: var(--ivory); border: 1px solid var(--gold-light); color: var(--gold-dark); padding: 4px 14px; border-radius: 20px; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.profile-form-area { flex: 1; }

/* ---- ADMIN ---- */
.admin-stats { display: flex; gap: 20px; flex-wrap: wrap; max-width: 1280px; margin: 0 auto; padding: 40px 40px 0; }
.admin-stat-card {
  flex: 1; min-width: 200px; background: var(--white); border-radius: var(--radius-md);
  padding: 28px; text-align: center; border: 1px solid var(--ivory-dark); box-shadow: var(--shadow-sm);
}
.admin-stat-icon { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.admin-stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; display: block; color: var(--slate); }
.admin-stat-label { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-light); }
.admin-section { max-width: 1280px; margin: 0 auto; padding: 40px; }
.admin-section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.admin-section h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 300; }
.admin-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.admin-table th { background: var(--slate); color: var(--ivory); padding: 14px 16px; text-align: left; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; }
.admin-table td { padding: 14px 16px; font-size: .9rem; color: var(--slate-mid); border-bottom: 1px solid var(--ivory-dark); }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--ivory); }
.btn-delete { color: var(--error); font-size: .8rem; border: 1px solid var(--error); padding: 4px 12px; border-radius: var(--radius-sm); transition: var(--transition); background: transparent; }
.btn-delete:hover { background: var(--error); color: var(--white); }

/* ---- MODALS ---- */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(44,50,64,.6); backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; animation: fadeIn .2s ease; }
.modal {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 48px 40px; width: min(480px, 95vw);
  max-height: 90vh; overflow-y: auto;
  position: relative; animation: slideUp .3s ease;
  box-shadow: var(--shadow-lg);
}
.modal-wide { width: min(640px, 95vw); }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--ivory); color: var(--slate-mid); font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--slate); color: var(--white); }
.modal-title { font-family: var(--font-display); font-size: 2rem; font-weight: 300; margin-bottom: 4px; }
.modal-subtitle { color: var(--slate-light); font-size: .9rem; margin-bottom: 28px; }
.modal-error { color: var(--error); font-size: .85rem; padding: 10px; background: #fff5f5; border-radius: var(--radius-sm); margin-bottom: 16px; display: none; }
.modal-error.visible { display: block; }
.modal-switch { text-align: center; margin-top: 16px; font-size: .875rem; color: var(--slate-light); }
.modal-switch a { color: var(--gold); text-decoration: underline; }

/* STAR RATING INPUT */
.star-rating-input { display: flex; gap: 8px; margin-bottom: 20px; font-size: 2rem; cursor: pointer; }
.star-input { color: var(--slate-pale); transition: var(--transition); }
.star-input.active { color: var(--gold); }
.star-input:hover { transform: scale(1.2); }

/* ---- TOAST ---- */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 3000;
  background: var(--slate); color: var(--white); padding: 16px 24px;
  border-radius: var(--radius-md); font-size: .9rem;
  box-shadow: var(--shadow-lg); border-left: 3px solid var(--gold);
  opacity: 0; transform: translateY(16px); transition: var(--transition);
  pointer-events: none; max-width: 320px;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { border-left-color: var(--success); }
.toast.error { border-left-color: var(--error); }

/* ---- FOOTER ---- */
.footer { background: var(--slate); color: var(--slate-light); padding: 60px 40px 24px; }
.footer-content { display: flex; gap: 60px; flex-wrap: wrap; max-width: 1280px; margin: 0 auto 48px; }
.footer-brand { flex: 2; }
.footer-brand .brand-name { font-size: 1.8rem; margin: 0 0 8px; }
.footer-brand p { font-size: .875rem; color: var(--slate-light); margin-top: 8px; }
.footer-links { flex: 1; min-width: 140px; }
.footer-links h4 { font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: var(--slate-pale); margin-bottom: 16px; }
.footer-links a { display: block; margin-bottom: 10px; font-size: .875rem; color: var(--slate-light); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; text-align: center; font-size: .8rem; color: var(--slate-light); max-width: 1280px; margin: 0 auto; }

/* ---- EMPTY STATE ---- */
.empty-state { text-align: center; padding: 80px 40px; color: var(--slate-light); }
.empty-icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 300; margin-bottom: 8px; color: var(--slate); }

/* ---- ANIMATIONS ---- */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .5; } }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---- LOADING ---- */
.loading-dots::after {
  content: ''; animation: dots 1.2s infinite;
}
@keyframes dots {
  0%   { content: '.'; }
  33%  { content: '..'; }
  66%  { content: '...'; }
}

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1024px) {
  .hotels-layout { flex-direction: column; }
  .filters-panel { width: 100%; position: static; }
  .hotels-stars-filter { flex-wrap: wrap; }
  .hotel-detail-layout { flex-direction: column; }
  .booking-widget { width: 100%; }
  .booking-layout { flex-direction: column; }
  .booking-summary { width: 100%; }
  .profile-layout { flex-direction: column; }
  .profile-card { width: 100%; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-ghost, .nav-actions .btn-primary { display: none; }
  .hamburger { display: block; }
  .nav-actions #userMenu { display: flex !important; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--cream); padding: 40px; gap: 24px;
    animation: fadeIn .2s ease;
  }
  .nav-links.open .nav-link { font-size: 1.2rem; }
  .search-bar { flex-direction: column; border-radius: var(--radius-md); }
  .search-field { border-right: none; border-bottom: 1px solid var(--ivory-dark); }
  .search-field:last-of-type { border-bottom: none; }
  .hotel-list-card { flex-direction: column; }
  .hotel-list-img { width: 100%; height: 200px; }
  .hotel-detail-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-main { height: 260px; grid-row: auto; }
  .gallery-sub { display: none; }
  .detail-back, .hotel-detail-layout { padding: 16px; }
  .hotels-layout, .section, .admin-stats, .admin-section { padding: 24px 16px; }
  .reservations-container, .profile-layout { padding: 24px 16px; }
  .form-row { flex-direction: column; }
  .booking-layout { padding: 20px 16px; }
  .stats-band { padding: 40px 16px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,.2); }
  .stat-item:last-child { border-bottom: none; }
  .hero-content { padding: 40px 20px 0; }
  .section { padding: 60px 20px; }
}
