/* ============================================================
   KIM ROYAL HOTEL — Master Stylesheet
   Luxury Nigerian Hotel · Festac Town, Lagos
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ─── CSS Variables ────────────────────────────── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E2C375;
  --gold-dark:   #8B6914;
  --black:       #080706;
  --dark:        #111009;
  --dark-mid:    #1C1A12;
  --cream:       #F7F2E8;
  --cream-dark:  #EDE5D0;
  --white:       #FFFFFF;
  --text-dark:   #1E1C14;
  --text-mid:    #4A4535;
  --text-light:  #9A9076;
  --blue-led:    #1A3A6B;
  --blue-glow:   rgba(26,58,107,0.3);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 4px 30px rgba(201,168,76,0.25);
  --shadow-deep: 0 20px 60px rgba(0,0,0,0.5);
}

/* ─── Reset & Base ─────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
button { cursor:pointer; border:none; background:none; }

/* ─── Utility ──────────────────────────────────── */
.container { max-width:1260px; margin:0 auto; padding:0 2rem; }
.container--wide { max-width:1440px; margin:0 auto; padding:0 2rem; }
.section-pad { padding:120px 0; }
.section-pad--sm { padding:80px 0; }

.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.tag::before { content:'— '; }
.tag::after  { content:' —'; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-subtitle {
  font-family: var(--font-elegant);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-light);
  margin-top: 1rem;
  max-width: 600px;
}
.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0;
}
.gold-line--center { margin: 1.5rem auto; }

/* ─── Noise Texture Overlay ────────────────────── */
.noise-overlay {
  position: relative;
}
.noise-overlay::after {
  content:'';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* ─── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.btn::before {
  content:'';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
  z-index: -1;
}
.btn:hover { color: var(--dark); }
.btn:hover::before { transform: scaleX(1); }

.btn--solid {
  background: var(--gold);
  color: var(--dark);
}
.btn--solid::before { background: var(--gold-light); }
.btn--solid:hover { color: var(--dark); }

.btn--dark {
  border-color: var(--dark);
  color: var(--dark);
}
.btn--dark::before { background: var(--dark); }
.btn--dark:hover { color: var(--cream); }

.btn-arrow {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width var(--transition);
}
.btn-arrow::after {
  content:'';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .btn-arrow { width: 28px; }

/* ─── TOP BAR ──────────────────────────────────── */
.top-bar {
  background: var(--dark-mid);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar__contact {
  display: flex;
  gap: 2rem;
  font-size: 0.78rem;
  color: var(--text-light);
  font-family: var(--font-body);
}
.top-bar__contact a { color: var(--text-light); transition: color var(--transition); }
.top-bar__contact a:hover { color: var(--gold); }
.top-bar__contact span { color: var(--gold); margin-right: 0.4rem; }
.top-bar__social { display:flex; gap:1rem; }
.top-bar__social a {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.75rem;
  transition: var(--transition);
}
.top-bar__social a:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ─── NAVIGATION ───────────────────────────────── */
.navbar {
  position: fixed;
  top: 40px;
  left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  top: 0;
  background: rgba(8,7,6,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.2);
  padding: 0.8rem 0;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.navbar__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-align: center;
}
.navbar__logo-main {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.08em;
}
.navbar__logo-main span { color: var(--gold); }
.navbar__logo-sub {
  font-family: var(--font-elegant);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.navbar__logo-star {
  color: var(--gold);
  font-size: 0.5rem;
  letter-spacing: 4px;
  margin-top: 4px;
}
.navbar__links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.navbar__links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,242,232,0.8);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.navbar__links a::after {
  content:'';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.navbar__links a:hover,
.navbar__links a.active { color: var(--gold); }
.navbar__links a:hover::after,
.navbar__links a.active::after { width: 100%; }
.navbar__cta { display:flex; align-items:center; }
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.navbar__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
}
.navbar__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,7,6,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.navbar__mobile.open { display:flex; }
.navbar__mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  transition: color var(--transition);
  font-style: italic;
}
.navbar__mobile a:hover { color: var(--gold); }
.navbar__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1.5rem;
  color: var(--cream);
  cursor: pointer;
}

/* ─── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/room-blue-1.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-out forwards;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,7,6,0.92) 0%,
    rgba(8,7,6,0.6) 50%,
    rgba(8,7,6,0.85) 100%
  );
}
.hero__gold-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: growLine 2s 0.5s ease-out forwards;
}
@keyframes growLine { to { height: 70%; } }
@keyframes heroZoom { to { transform: scale(1); } }

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}
.hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.8s ease forwards;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero__eyebrow::before {
  content:'';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--cream);
  margin: 1.5rem 0 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 1.1s ease forwards;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero__desc {
  font-family: var(--font-elegant);
  font-size: 1.3rem;
  font-weight: 300;
  color: rgba(247,242,232,0.7);
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 1.4s ease forwards;
  line-height: 1.8;
}
.hero__actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 1.7s ease forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  animation: bounceScroll 2s 2.5s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2s 2.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}
@keyframes bounceScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
.hero__badges {
  position: absolute;
  right: 4rem;
  bottom: 8rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  animation: fadeIn 1s 2.5s ease forwards;
}
.hero__badge {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 1rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
}
.hero__badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero__badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

@keyframes fadeUp {
  to { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  to { opacity:1; }
}

/* ─── BOOKING STRIP ────────────────────────────── */
.booking-strip {
  background: var(--dark-mid);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  position: relative;
  z-index: 10;
}
.booking-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 0;
  align-items: stretch;
  min-height: 90px;
}
.booking-field {
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(201,168,76,0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.booking-field:last-of-type { border-right: none; }
.booking-field label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 0.4rem;
}
.booking-field input,
.booking-field select {
  background: transparent;
  border: none;
  outline: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  width: 100%;
  appearance: none;
  cursor: pointer;
}
.booking-field select option { background: var(--dark-mid); color: var(--cream); }
.booking-strip .btn { border-radius:0; height:100%; padding: 0 3rem; white-space:nowrap; }

/* ─── WELCOME SECTION ──────────────────────────── */
.welcome {
  background: var(--dark);
  overflow: hidden;
}
.welcome__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 600px;
}
.welcome__image {
  position: relative;
  overflow: hidden;
}
.welcome__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.welcome__image:hover img { transform: scale(1.04); }
.welcome__image-badge {
  position: absolute;
  bottom: 3rem;
  right: -1px;
  background: var(--gold);
  color: var(--dark);
  padding: 1.5rem 2rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  max-width: 200px;
}
.welcome__content {
  padding: 80px 80px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.welcome__text {
  font-family: var(--font-elegant);
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.welcome__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}
.welcome__feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.welcome__feature-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1.1rem;
}
.welcome__feature-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.25rem;
  letter-spacing: 0.05em;
}
.welcome__feature-text {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── STATS SECTION ────────────────────────────── */
.stats {
  background: linear-gradient(135deg, var(--dark-mid), var(--dark));
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 70px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  text-align: center;
  padding: 2rem;
  border-right: 1px solid rgba(201,168,76,0.15);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  position: relative;
  display: inline-block;
}
.stat__number sup {
  font-size: 0.4em;
  vertical-align: top;
  margin-top: 0.3em;
}
.stat__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* ─── ROOMS SECTION ────────────────────────────── */
.rooms-section {
  background: var(--dark);
}
.rooms-section__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}
.rooms-section__header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.room-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/5;
}
.room-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.room-card:hover .room-card__image { transform: scale(1.07); }
.room-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(8,7,6,0.95) 0%,
    rgba(8,7,6,0.3) 50%,
    transparent 100%
  );
  transition: background var(--transition);
}
.room-card:hover .room-card__overlay {
  background: linear-gradient(0deg, rgba(8,7,6,0.98) 30%, rgba(8,7,6,0.5) 70%, rgba(8,7,6,0.2) 100%);
}
.room-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
  transform: translateY(40px);
  transition: transform var(--transition);
}
.room-card:hover .room-card__content { transform: translateY(0); }
.room-card__price {
  font-family: var(--font-elegant);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.room-card__price strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}
.room-card__name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.room-card__features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s 0.1s ease;
}
.room-card:hover .room-card__features {
  opacity: 1;
  transform: translateY(0);
}
.room-card__feature {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.room-card__feature::before {
  content:'✦';
  color: var(--gold);
  font-size: 0.5rem;
}
.room-card__tag {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
}

/* ─── AMENITIES ────────────────────────────────── */
.amenities {
  background: var(--dark-mid);
  position: relative;
  overflow: hidden;
}
.amenities::before {
  content:'';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.06), transparent 70%);
  pointer-events: none;
}
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.amenity {
  background: var(--dark);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
  border: 1px solid rgba(201,168,76,0.05);
}
.amenity::before {
  content:'';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s ease;
}
.amenity:hover { background: var(--dark-mid); }
.amenity:hover::before { width: 100%; }
.amenity__icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: block;
}
.amenity__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.amenity__text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}
.amenity__number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201,168,76,0.06);
  line-height: 1;
}

/* ─── GALLERY STRIP ────────────────────────────── */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  height: 400px;
}
.gallery-strip__item {
  overflow: hidden;
  position: relative;
}
.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: brightness(0.7);
}
.gallery-strip__item:hover img {
  transform: scale(1.08);
  filter: brightness(0.9);
}
.gallery-strip__item--wide {
  grid-column: span 2;
}

/* ─── TESTIMONIALS ─────────────────────────────── */
.testimonials {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '\201C';
  position: absolute;
  top: -2rem;
  left: 5%;
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(201,168,76,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.testimonials__slider {
  position: relative;
}
.testimonial-slide {
  display: none;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeIn 0.6s ease;
}
.testimonial-slide.active { display: block; }
.testimonial__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.2rem;
  margin-bottom: 2rem;
}
.testimonial__text {
  font-family: var(--font-elegant);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}
.testimonial__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testimonial__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
}
.testimonial__role {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
}
.testimonials__dots {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 3rem;
}
.testimonials__dot {
  width: 6px;
  height: 6px;
  background: var(--text-light);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
}
.testimonials__dot.active {
  width: 24px;
  border-radius: 3px;
  background: var(--gold);
}

/* ─── CTA BANNER ───────────────────────────────── */
.cta-banner {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/room-blue-2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,7,6,0.82);
  backdrop-filter: blur(2px);
}
.cta-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
}
.cta-banner__title em { font-style:italic; color: var(--gold); }
.cta-banner__sub {
  font-family: var(--font-elegant);
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}
.cta-banner__actions { display:flex; gap:1.5rem; justify-content:center; }

/* ─── FOOTER ───────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer__main {
  padding: 80px 0 60px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.footer__brand-name span { color: var(--gold); }
.footer__brand-tag {
  font-family: var(--font-elegant);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer__about {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer__social a:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.footer__heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}
.footer__heading::after {
  content:'';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.footer__links { display:flex; flex-direction:column; gap:0.75rem; }
.footer__links a {
  font-size: 0.85rem;
  color: var(--text-light);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__links a::before { content:'›'; color: var(--gold); }
.footer__links a:hover { color: var(--gold); }
.footer__contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.footer__contact-icon {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer__contact-text {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}
.footer__contact-text a { color: var(--text-light); transition: color var(--transition); }
.footer__contact-text a:hover { color: var(--gold); }
.footer__bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(201,168,76,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__copy {
  font-size: 0.78rem;
  color: var(--text-light);
}
.footer__copy a { color: var(--gold); }
.footer__credits {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ─── SCROLL TO TOP ────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 99;
  font-size: 1.2rem;
  border: none;
}
.scroll-top.visible { opacity:1; transform:translateY(0); }
.scroll-top:hover { background: var(--gold-light); }

/* ─── WHATSAPP FLOAT ───────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 99;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ─── PAGE HEADER ──────────────────────────────── */
.page-header {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-header__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.page-header__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,7,6,0.78);
}
.page-header__content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}
.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700;
  color: var(--cream);
}
.page-header__title em { font-style:italic; color: var(--gold); }
.page-header__breadcrumb {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1rem;
}
.page-header__breadcrumb a { color: var(--gold); }
.page-header__breadcrumb span { color: var(--text-light); }

/* ─── ROOMS PAGE ───────────────────────────────── */
.rooms-detail {
  background: var(--dark);
}
.room-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 3px;
  min-height: 560px;
  background: var(--dark-mid);
}
.room-detail-card--reverse { direction: rtl; }
.room-detail-card--reverse > * { direction: ltr; }
.room-detail-card__gallery {
  position: relative;
  overflow: hidden;
}
.room-detail-card__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.room-detail-card:hover .room-detail-card__gallery img { transform: scale(1.04); }
.room-detail-card__badge {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
}
.room-detail-card__info {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.room-detail-card__price-tag {
  font-family: var(--font-elegant);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.room-detail-card__price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.room-detail-card__price-note {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.room-detail-card__name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.room-detail-card__desc {
  font-family: var(--font-elegant);
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 2rem;
}
.room-amenities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.room-amenity {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-light);
}
.room-amenity::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.5rem;
  flex-shrink: 0;
}

/* ─── ABOUT PAGE ───────────────────────────────── */
.about-section { background: var(--dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 600px;
}
.about-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-images img:first-child {
  grid-row: span 2;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.value-item { border-left: 2px solid var(--gold); padding-left: 1.5rem; }
.value-item__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.value-item__text { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

/* ─── TEAM ─────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.team-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: grayscale(30%);
}
.team-card:hover img { transform: scale(1.05); filter: grayscale(0); }
.team-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8,7,6,0.9) 0%, transparent 60%);
}
.team-card__info {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
}
.team-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
}
.team-card__role {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* ─── GALLERY PAGE ─────────────────────────────── */
.gallery-page { background: var(--dark); }
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.gallery-filter {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}
.gallery-filter:hover,
.gallery-filter.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item--tall { aspect-ratio: 3/4; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,7,6,0.6);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__icon { color: var(--gold); font-size: 2rem; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-height: 90vh;
  max-width: 90vw;
  object-fit: contain;
  border: 1px solid rgba(201,168,76,0.2);
}
.lightbox__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  background: rgba(0,0,0,0.5);
  border: none;
  padding: 1rem;
  transition: color var(--transition);
}
.lightbox__nav:hover { color: var(--gold); }
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }

/* ─── CONTACT PAGE ─────────────────────────────── */
.contact-page { background: var(--dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
}
.contact-info {
  background: var(--dark-mid);
  padding: 70px 60px;
}
.contact-form-wrap {
  padding: 70px 60px;
}
.contact-detail {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}
.contact-detail__icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.contact-detail__value {
  font-size: 0.95rem;
  color: var(--cream);
  line-height: 1.6;
}
.contact-detail__value a { color: var(--cream); transition: color var(--transition); }
.contact-detail__value a:hover { color: var(--gold); }

/* Forms */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 0.9rem 1.25rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.07);
}
.form-group select option { background: var(--dark-mid); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  color: #25D366;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  display: none;
  margin-bottom: 1.5rem;
}
.form-error {
  background: rgba(220,53,69,0.1);
  border: 1px solid rgba(220,53,69,0.3);
  color: #dc3545;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  display: none;
  margin-bottom: 1.5rem;
}
.map-embed {
  width: 100%;
  height: 280px;
  border: 1px solid rgba(201,168,76,0.2);
  filter: grayscale(80%) invert(90%);
  margin-top: 2rem;
}

/* ─── BOOKING SECTION ──────────────────────────── */
.booking-section { background: var(--dark-mid); }
.booking-form-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  background: var(--dark);
}
.booking-form-main { padding: 60px; }
.booking-form-summary {
  background: var(--dark-mid);
  padding: 60px 50px;
  border-left: 1px solid rgba(201,168,76,0.15);
}
.booking-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  font-size: 0.85rem;
}
.booking-summary-item:last-child { border-bottom: none; }
.booking-summary-item span:first-child { color: var(--text-light); }
.booking-summary-item span:last-child { color: var(--cream); font-weight: 500; }
.booking-total {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-top: 2px solid var(--gold);
  margin-top: 1.5rem;
}
.booking-total span:first-child {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
}
.booking-total-amount {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

/* ─── ANIMATION HELPERS ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered children */
.stagger > * { transition-delay: calc(var(--i, 0) * 0.1s); }

/* ─── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1200px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (max-width: 992px) {
  .navbar__links, .navbar__cta { display: none; }
  .navbar__burger { display: flex; }
  .welcome__grid { grid-template-columns: 1fr; }
  .welcome__content { padding: 60px 40px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: 1fr; }
  .amenities__grid { grid-template-columns: 1fr 1fr; }
  .rooms-section__header { grid-template-columns: 1fr; gap: 2rem; }
  .rooms-section__header-right { align-items: flex-start; }
  .room-detail-card { grid-template-columns: 1fr; min-height: auto; }
  .room-detail-card--reverse { direction: ltr; }
  .room-detail-card__info { padding: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { height: 400px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .booking-form-grid { grid-template-columns: 1fr; }
  .booking-form-summary { border-left: none; border-top: 1px solid rgba(201,168,76,0.15); }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); height: 300px; }
  .gallery-strip__item--wide { grid-column: span 1; }
  .hero__badges { display: none; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section-pad { padding: 70px 0; }
  .booking-strip__inner { grid-template-columns: 1fr 1fr; }
  .booking-strip .btn { grid-column: span 2; justify-content: center; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .amenities__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); height: 250px; }
  .form-row { grid-template-columns: 1fr; }
  .top-bar__contact { gap: 1rem; font-size: 0.72rem; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .room-amenities-list { grid-template-columns: 1fr; }
  .welcome__features { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
  .container { padding: 0 1.25rem; }
  .booking-strip__inner { grid-template-columns: 1fr; }
  .booking-strip .btn { grid-column: span 1; }
  .hero__title { font-size: 2.5rem; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .top-bar { display: none; }
  .navbar { top: 0; }
}
