/* ═══════════════════════════════════════════════════════════
   THE GRAND AURUM HOTEL — Design System
   Palette: Sahara Dusk · Tone: Luxury/Refined
   Fonts: Cormorant Garamond (display) + Outfit (body)
═══════════════════════════════════════════════════════════ */

:root {
  --gold:        #E6C07B;
  --gold-deep:   #C9956B;
  --gold-light:  #F5E6C8;
  --brown-dark:  #5B3A29;
  --brown-mid:   #7A4F38;
  --cream:       #F9F3EB;
  --cream-dark:  #EDE3D4;
  --text-dark:   #2C1A0E;
  --text-mid:    #5C4033;
  --text-light:  #9C7B6A;
  --white:       #FFFFFF;
  --black:       #0D0805;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

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

  --shadow-sm:   0 2px 12px rgba(91,58,41,0.08);
  --shadow-md:   0 8px 32px rgba(91,58,41,0.14);
  --shadow-lg:   0 20px 60px rgba(91,58,41,0.18);
  --shadow-gold: 0 4px 24px rgba(230,192,123,0.35);

  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h:       80px;
}

/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: var(--font-body); }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 100px 0; }

/* ─── TYPOGRAPHY ────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--brown-mid);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn:hover::before { transform: translateX(0); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--brown-dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(230,192,123,0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-gold-sm {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--brown-dark);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.btn-gold-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,192,123,0.5);
}

.btn-ghost-sm {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-ghost-sm:hover {
  background: rgba(255,255,255,0.25);
}

.btn-full { width: 100%; justify-content: center; }
.btn-arrow { font-size: 1.1rem; transition: transform 0.3s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ─── REVEAL ANIMATIONS ─────────────────────────────────── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ─── NAVBAR ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.3s ease;
}

.navbar.scrolled {
  background: rgba(249,243,235,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  height: 68px;
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.4s ease;
}

.navbar.scrolled .nav-logo { color: var(--text-dark); }

.logo-icon {
  color: var(--gold);
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover { color: var(--gold); }

.navbar.scrolled .nav-links a { color: var(--text-mid); }
.navbar.scrolled .nav-links a:hover { color: var(--brown-dark); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%) !important;
  color: var(--brown-dark) !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600 !important;
  box-shadow: var(--shadow-gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(230,192,123,0.5) !important;
}

.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span { background: var(--text-dark); }

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,8,5,0.3) 0%,
    rgba(13,8,5,0.55) 50%,
    rgba(13,8,5,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.5s both;
}

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

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fadeUp 0.8s ease 0.7s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.9s both;
}

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

.hero-scroll-hint {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeUp 1s ease 1.2s both;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(13,8,5,0.6);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(230,192,123,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 32px;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(230,192,123,0.25);
}

/* ─── QUICK BOOKING BAR ─────────────────────────────────── */
.quick-book {
  background: var(--brown-dark);
  padding: 0;
  position: sticky;
  top: var(--nav-h);
  z-index: 900;
  box-shadow: var(--shadow-md);
}

.qb-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: stretch;
  gap: 0;
}

.qb-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 24px;
  gap: 4px;
}

.qb-field label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.qb-field input,
.qb-field select {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0;
  cursor: pointer;
}

.qb-field select option { background: var(--brown-dark); color: var(--white); }

.qb-divider {
  width: 1px;
  background: rgba(230,192,123,0.2);
  margin: 12px 0;
}

.qb-btn {
  margin: 12px 0 12px 24px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─── ABOUT ─────────────────────────────────────────────── */
.about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 580px;
}

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 85%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 52%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream);
}

.about-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--brown-dark);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}

.badge-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
}

.about-text { padding-left: 20px; }

.about-desc {
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.85;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0 36px;
}

.af-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.af-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.af-item strong {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.af-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ─── ROOMS ─────────────────────────────────────────────── */
.rooms { background: var(--cream-dark); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.room-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
}

.room-card-wide .room-img-wrap { height: 100%; min-height: 320px; }

.room-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.room-img-wrap img {
  transition: transform 0.6s ease;
}

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

.room-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--brown-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
}

.room-badge-gold { background: var(--gold-deep); color: var(--white); }
.room-badge-dark { background: var(--brown-dark); color: var(--gold); }

.room-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,8,5,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.room-card:hover .room-overlay { opacity: 1; }

.room-info { padding: 24px; }

.room-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.room-meta span {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 400;
}

.room-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.room-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.room-amenities-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.room-amenities-tags span {
  background: var(--cream);
  color: var(--text-mid);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--cream-dark);
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--cream-dark);
}

.room-price { display: flex; align-items: baseline; gap: 4px; }

.price-from {
  font-size: 0.75rem;
  color: var(--text-light);
}

.price-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--brown-dark);
}

.price-per {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ─── AMENITIES ─────────────────────────────────────────── */
.amenities {
  position: relative;
  padding: 100px 0;
}

.amenities-bg {
  position: absolute;
  inset: 0;
}

.amenities-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(91,58,41,0.92) 0%, rgba(13,8,5,0.88) 100%);
}

.amenities .container { position: relative; z-index: 2; }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.amenity-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(230,192,123,0.2);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.amenity-card:hover {
  background: rgba(230,192,123,0.12);
  border-color: rgba(230,192,123,0.5);
  transform: translateY(-6px);
}

.amenity-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.amenity-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.amenity-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ─── GALLERY ───────────────────────────────────────────── */
.gallery { background: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 12px;
  padding: 0 32px;
  max-width: 1240px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.gallery-item img {
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gi-tall { grid-row: 1 / 3; }
.gi-wide { grid-column: 2 / 4; }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,8,5,0.8), transparent);
  color: var(--white);
  padding: 24px 16px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ─── TESTIMONIALS ──────────────────────────────────────── */
.testimonials { background: var(--cream-dark); overflow: hidden; }

.testimonials-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: calc(50% - 14px);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  flex-shrink: 0;
}

.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testi-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 28px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.testi-author span {
  font-size: 0.82rem;
  color: var(--text-light);
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: 2px solid var(--text-light);
  transition: var(--transition);
  cursor: pointer;
}

.dot.active {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: scale(1.3);
}

/* ─── BOOKING ───────────────────────────────────────────── */
.booking { background: var(--cream); }

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.booking-desc {
  color: var(--text-mid);
  margin-bottom: 32px;
  line-height: 1.8;
}

.booking-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-mid);
}

.perk-icon {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--brown-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.booking-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--cream-dark);
}

.booking-contact-info p {
  font-size: 0.95rem;
  color: var(--text-mid);
}

.booking-contact-info a {
  color: var(--brown-mid);
  font-weight: 500;
  transition: color 0.3s ease;
}

.booking-contact-info a:hover { color: var(--brown-dark); }

/* ─── BOOKING FORM ──────────────────────────────────────── */
.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-dark);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cream-dark);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(230,192,123,0.15);
  background: var(--white);
}

.form-group textarea { min-height: 90px; }

.form-summary {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 6px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.summary-row:last-child { border-bottom: none; }

.summary-total {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1rem;
  padding-top: 12px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}

/* ─── CONTACT ───────────────────────────────────────────── */
.contact { background: var(--cream-dark); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

.contact-card h4 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.contact-card a {
  color: var(--brown-mid);
  transition: color 0.3s ease;
}

.contact-card a:hover { color: var(--brown-dark); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.map-placeholder {
  width: 100%; height: 100%;
  position: relative;
}

.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pin-dot {
  width: 20px; height: 20px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 6px rgba(230,192,123,0.3);
  animation: pinPulse 2s ease infinite;
}

@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(230,192,123,0.3); }
  50% { box-shadow: 0 0 0 12px rgba(230,192,123,0.1); }
}

.pin-label {
  background: var(--white);
  color: var(--brown-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

/* ─── FOOTER ────────────────────────────────────────────── */
.footer { background: var(--black); }

.footer-top { padding: 80px 0 60px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--brown-dark);
}

.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s ease;
}

.footer-legal a:hover { color: var(--gold); }

/* ─── MODAL ─────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,8,5,0.8);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal-box { transform: scale(1); }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--cream);
  border-radius: 50%;
  font-size: 0.9rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s ease;
}

.modal-close:hover { background: var(--cream-dark); }

.modal-content { padding: 0; }

.modal-img {
  height: 300px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-body { padding: 36px; }

.modal-body h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.modal-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--brown-mid);
  margin-bottom: 20px;
}

.modal-body p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
}

.modal-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.modal-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-mid);
}

.modal-feature::before {
  content: '✓';
  color: var(--gold-deep);
  font-weight: 700;
}

/* ─── LIGHTBOX ──────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.lightbox-close:hover { color: var(--white); }

.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  width: auto;
  height: auto;
}

.lightbox p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-top: 16px;
  letter-spacing: 0.05em;
}

/* ─── TOAST ─────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--brown-dark);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 4000;
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  max-width: 360px;
  border-left: 4px solid var(--gold);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 28px; height: 28px;
  background: var(--gold);
  color: var(--brown-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.toast strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.toast p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 400px; }
  .about-text { padding-left: 0; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .room-card-wide { grid-column: 1 / -1; grid-template-columns: 1fr; }
  .room-card-wide .room-img-wrap { height: 280px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }

  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform 0.4s ease;
    z-index: 999;
  }

  .nav-links.open { transform: translateY(0); }
  .nav-links a { color: var(--text-dark) !important; font-size: 1rem; }
  .hamburger { display: flex; }

  .hero-stats {
    flex-wrap: wrap;
    gap: 0;
    padding: 16px;
  }

  .stat-item { padding: 8px 20px; }
  .stat-divider { display: none; }

  .quick-book { position: static; }
  .qb-inner { flex-direction: column; padding: 16px 20px; gap: 0; }
  .qb-field { padding: 12px 0; border-bottom: 1px solid rgba(230,192,123,0.2); }
  .qb-divider { display: none; }
  .qb-btn { margin: 16px 0 0; width: 100%; justify-content: center; }

  .rooms-grid { grid-template-columns: 1fr; }
  .room-card-wide { grid-column: 1; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    padding: 0 20px;
  }

  .gi-tall, .gi-wide { grid-column: auto; grid-row: auto; }

  .testimonial-card { min-width: 85vw; }

  .booking-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }

  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .about-images { height: 300px; }
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .modal-features { grid-template-columns: 1fr; }
}