/* ============ RESET & BASE ============ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --gold: #C9A84C;
  --gold-light: #e8cc80;
  --dark: #0D1410;
  --dark2: #121a14;
  --dark3: #1a2420;
  --text: #e8e0d4;
  --muted: #8a9490;
  --white: #fff;
  --radius: 20px;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ============ UTILITY ============ */
.label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.label-light { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.6); display: block; margin-bottom: 16px; }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
h2 em { font-style: italic; color: var(--gold); }

/* ============ BUTTONS ============ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.5);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.15); }

.link-arrow {
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: gap 0.3s;
  display: inline-block;
}
.link-arrow:hover { letter-spacing: 1px; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6%;
  z-index: 1000;
  transition: all 0.4s;
}
.navbar.scrolled {
  background: rgba(13,20,16,0.95);
  backdrop-filter: blur(20px);
  padding: 16px 6%;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--white);
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--dark);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold-light); }

.hamburger { display: none; background: none; border: none; color: white; font-size: 22px; cursor: pointer; }

/* MOBILE NAV */
.mobile-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-family: var(--font-display); font-size: 32px; color: var(--text); }
.mobile-nav a:hover { color: var(--gold); }
.mob-cta { background: var(--gold) !important; color: var(--dark) !important; padding: 12px 32px; border-radius: 50px; font-family: var(--font-body) !important; font-size: 16px !important; }
.close-btn { position: absolute; top: 24px; right: 24px; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }

/* ============ HERO ============ */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slides { position: absolute; inset: 0; }
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,20,16,0.75) 0%, rgba(13,20,16,0.4) 50%, rgba(13,20,16,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8%;
  max-width: 800px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}
.hero-content h1 em { font-style: italic; color: var(--gold); }
.hero-content > p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 420px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

.hero-stats {
  display: flex;
  gap: 48px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 28px;
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-display); font-size: 2rem; color: var(--gold); font-weight: 600; }
.hero-stats span { font-size: 11px; letter-spacing: 1px; color: rgba(255,255,255,0.5); text-transform: uppercase; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-scroll span { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); animation: scrollAnim 2s infinite; }
@keyframes scrollAnim { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:0.3;transform:scaleY(0.5)} }

.slide-dots {
  position: absolute;
  bottom: 40px;
  left: 8%;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active { background: var(--gold); width: 24px; border-radius: 3px; }

/* ============ SECTIONS COMMON ============ */
section { padding: 100px 8%; }
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ ABOUT STRIP ============ */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.strip-left h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.strip-left p { color: var(--muted); margin-bottom: 28px; line-height: 1.8; }

.strip-center { position: relative; }
.strip-center img { height: 420px; border-radius: var(--radius); object-fit: cover; }
.card-badge {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(13,20,16,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  padding: 20px;
}
.card-badge strong { display: block; font-size: 14px; margin-bottom: 6px; color: var(--white); }
.card-badge span { font-size: 12px; color: var(--muted); }

.strip-right .big-quote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 32px;
}
.features-list { list-style: none; }
.features-list li { font-size: 14px; color: var(--muted); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }

/* ============ LOCATIONS ============ */
.locations-section { padding: 100px 8%; }
.loc-header { margin-bottom: 60px; }
.loc-header p { color: var(--muted); }

.locations-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  grid-template-rows: 520px;
  gap: 16px;
}

.loc-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.loc-card img {
  height: 100%;
  transition: transform 0.6s ease;
}
.loc-card:hover img { transform: scale(1.08); }

.loc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,20,16,0.95) 0%, rgba(13,20,16,0.3) 60%, transparent 100%);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.loc-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  width: fit-content;
}
.loc-overlay h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; color: var(--white); margin-bottom: 6px; }
.loc-overlay > p { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.loc-details { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.loc-details span { font-size: 11px; background: rgba(255,255,255,0.1); padding: 4px 10px; border-radius: 50px; }
.loc-btn { font-size: 12px; color: var(--gold); letter-spacing: 1px; transition: letter-spacing 0.3s; width: fit-content; }
.loc-btn:hover { letter-spacing: 2px; }

/* ============ ROOMS ============ */
.rooms-section { background: var(--dark2); border-radius: 32px; }
.rooms-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; margin-bottom: 12px; }
.rooms-sub { color: var(--muted); font-size: 14px; margin-bottom: 48px; max-width: 500px; }
.booking-quick { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.booking-quick input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 13px;
  outline: none;
  font-family: var(--font-body);
}

.rooms-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 10px;
}
.rooms-slider::-webkit-scrollbar { display: none; }

.room-slide {
  min-width: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark3);
  scroll-snap-align: start;
  flex-shrink: 0;
  position: relative;
}
.room-slide img { height: 320px; transition: transform 0.5s; }
.room-slide:hover img { transform: scale(1.05); }
.room-info { padding: 24px; }
.room-info h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 8px; }
.room-info p { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.room-price { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); }
.room-price span { font-size: 14px; color: var(--muted); font-family: var(--font-body); }
.room-book {
  display: inline-block;
  margin-top: 14px;
  background: var(--gold);
  color: var(--dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.3s;
}
.room-book:hover { background: var(--gold-light); }

.slider-controls { display: flex; gap: 12px; margin-top: 24px; }
.s-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}
.s-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* ============ ATMOSPHERE ============ */
.atmosphere-section {
  padding: 0;
  position: relative;
  height: 70vh;
  overflow: hidden;
  border-radius: 0;
}
.atmosphere-section img { height: 100%; }
.atm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,20,16,0.85) 0%, rgba(13,20,16,0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8%;
}
.atm-overlay h2 { font-size: clamp(2rem, 5vw, 4rem); color: var(--white); margin-bottom: 28px; }

/* ============ AMENITIES ============ */
.amenities-section { text-align: center; }
.amen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.amen-item {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 24px;
  transition: all 0.3s;
}
.amen-item:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.3); }
.amen-icon { font-size: 32px; margin-bottom: 16px; }
.amen-item strong { display: block; font-size: 15px; margin-bottom: 8px; color: var(--white); }
.amen-item p { font-size: 13px; color: var(--muted); }

/* ============ GALLERY ============ */
.gallery-preview { }
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
  margin-top: 48px;
}
.gallery-masonry img { border-radius: 16px; transition: transform 0.4s; cursor: pointer; }
.gallery-masonry img:hover { transform: scale(1.03); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ============ TESTIMONIALS ============ */
.testimonials-section { background: var(--dark2); border-radius: 32px; }
.testi-grid { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 24px; margin-top: 48px; }
.testi-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px;
}
.testi-card.featured {
  background: var(--gold);
  border-color: var(--gold);
}
.testi-card.featured p, .testi-card.featured .stars, .testi-card.featured .testi-author { color: var(--dark); }
.stars { color: var(--gold); font-size: 16px; margin-bottom: 16px; }
.testi-card.featured .stars { color: var(--dark); }
.testi-card p { font-size: 14px; line-height: 1.8; color: var(--muted); margin-bottom: 24px; }
.testi-card.featured p { color: rgba(13,20,16,0.8); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testi-author span { font-size: 13px; }

/* ============ FAQ ============ */
.faq-section { }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.faq-item {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.3s;
}
.faq-item[open] { border-color: rgba(201,168,76,0.3); }
.faq-item summary {
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after { content: '+'; color: var(--gold); font-size: 20px; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { font-size: 14px; color: var(--muted); margin-top: 16px; line-height: 1.7; }

/* ============ CTA BANNER ============ */
.cta-banner { padding: 0; position: relative; height: 60vh; overflow: hidden; }
.cta-banner img { height: 100%; }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,20,16,0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}
.cta-overlay h2 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); margin-bottom: 16px; }
.cta-overlay p { color: rgba(255,255,255,0.65); max-width: 500px; margin-bottom: 32px; }

/* ============ FOOTER ============ */
.footer {
  background: var(--dark2);
  padding: 80px 8% 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.8; max-width: 280px; margin-bottom: 24px; }
.socials { display: flex; gap: 12px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all 0.3s; }
.socials a:hover { border-color: var(--gold); }
.footer-col h4 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col a, .footer-col p { display: block; font-size: 13px; color: var(--muted); margin-bottom: 12px; transition: color 0.3s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ============ FAB ============ */
.fab {
  position: fixed;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  right: 24px;
  z-index: 900;
  transition: transform 0.3s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.fab:hover { transform: scale(1.1); }
.whatsapp { background: #25D366; bottom: 90px; }
.call { background: var(--gold); bottom: 24px; }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  height: 55vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}
.page-hero img { position: absolute; inset: 0; height: 100%; }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,20,16,0.9) 0%, rgba(13,20,16,0.3) 100%);
}
.page-hero-content { position: relative; z-index: 2; padding: 0 8%; }
.page-hero-content .label { margin-bottom: 12px; }
.page-hero-content h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 300; color: var(--white); }
.page-hero-content h1 em { font-style: italic; color: var(--gold); }
.page-hero-content p { color: rgba(255,255,255,0.6); max-width: 500px; margin-top: 12px; }

/* ============ ROOMS PAGE ============ */
.rooms-page { padding: 80px 8%; }
.rooms-filter { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
}
.filter-btn.active, .filter-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

.rooms-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.room-card-full {
  background: var(--dark3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s, border-color 0.4s;
}
.room-card-full:hover { transform: translateY(-8px); border-color: rgba(201,168,76,0.2); }
.room-card-full img { height: 260px; transition: transform 0.5s; }
.room-card-full:hover img { transform: scale(1.05); }
.card-body { padding: 28px; }
.card-body h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 8px; }
.card-body .location-tag { font-size: 11px; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; display: block; }
.card-body p { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.card-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.card-features span { font-size: 11px; background: rgba(255,255,255,0.06); padding: 4px 12px; border-radius: 50px; }
.card-footer { display: flex; align-items: center; justify-content: space-between; }
.card-price { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); }
.card-price small { font-family: var(--font-body); font-size: 12px; color: var(--muted); }

/* ============ GALLERY PAGE ============ */
.gallery-page { padding: 80px 8%; }
.gallery-controls { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.gallery-full-grid {
  columns: 3;
  gap: 16px;
}
.gallery-full-grid img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
  break-inside: avoid;
  transition: transform 0.4s;
  cursor: pointer;
}
.gallery-full-grid img:hover { transform: scale(1.02); }

/* ============ LOCATIONS PAGE ============ */
.locations-page { padding: 80px 8%; }
.loc-full-section { margin-bottom: 100px; }
.loc-full-section:last-child { margin-bottom: 0; }
.loc-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.loc-split.reverse { direction: rtl; }
.loc-split.reverse > * { direction: ltr; }
.loc-split img { height: 480px; border-radius: var(--radius); }
.loc-text .location-name { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 12px; }
.loc-text p { color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.loc-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
.meta-item { background: var(--dark3); border-radius: 12px; padding: 16px; }
.meta-item strong { display: block; font-size: 13px; color: var(--white); margin-bottom: 4px; }
.meta-item span { font-size: 12px; color: var(--muted); }

/* ============ ABOUT PAGE ============ */
.about-page { padding: 80px 8%; }
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 100px; }
.about-intro img { height: 500px; border-radius: var(--radius); }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 80px; }
.value-card { background: var(--dark3); border-radius: var(--radius); padding: 36px; border: 1px solid rgba(255,255,255,0.06); }
.value-card .v-num { font-family: var(--font-display); font-size: 3rem; color: rgba(201,168,76,0.2); }
.value-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 12px; }
.value-card p { font-size: 13px; color: var(--muted); line-height: 1.8; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; margin-top: 48px; }
.team-card { text-align: center; }
.team-card img { height: 260px; border-radius: var(--radius); margin-bottom: 16px; object-fit: cover; }
.team-card h4 { font-size: 15px; margin-bottom: 4px; }
.team-card span { font-size: 12px; color: var(--gold); }

/* ============ CONTACT PAGE ============ */
.contact-page { padding: 80px 8%; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; margin-bottom: 80px; }
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 24px; }
.contact-info p { color: var(--muted); margin-bottom: 40px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.c-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--dark3); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.c-text strong { display: block; font-size: 13px; color: var(--white); margin-bottom: 4px; }
.c-text span { font-size: 13px; color: var(--muted); }

.contact-form { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  padding: 16px 20px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: rgba(201,168,76,0.4); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form select option { background: var(--dark3); }

/* ============ BOOKING PAGE ============ */
.booking-page { padding: 80px 8%; }
.booking-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; }
.booking-form-section h2 { margin-bottom: 40px; }
.booking-form { display: grid; gap: 20px; }
.booking-form input,
.booking-form select {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  padding: 16px 20px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.booking-form input:focus, .booking-form select:focus { border-color: rgba(201,168,76,0.4); }
.booking-form select option { background: var(--dark3); }
.booking-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }

.booking-summary { position: sticky; top: 100px; }
.summary-card { background: var(--dark3); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); overflow: hidden; }
.summary-card img { height: 200px; }
.summary-body { padding: 28px; }
.summary-body h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; font-size: 13px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.summary-row:last-child { border-bottom: none; }
.summary-row span { color: var(--muted); }
.summary-row strong { color: var(--white); }
.summary-total { display: flex; justify-content: space-between; padding: 16px 0; margin-top: 8px; border-top: 1px solid rgba(201,168,76,0.2); }
.summary-total span { color: var(--white); font-weight: 500; }
.summary-total strong { color: var(--gold); font-family: var(--font-display); font-size: 1.4rem; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .locations-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .loc-card.large { grid-column: span 2; height: 400px; }
  .about-strip { grid-template-columns: 1fr 1fr; }
  .strip-right { grid-column: span 2; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid .testi-card:last-child { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  section { padding: 70px 6%; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }

  .hero-content { padding: 0 6%; }
  .hero-stats { gap: 28px; }

  .about-strip { grid-template-columns: 1fr; }
  .strip-center { display: none; }
  .strip-right { grid-column: auto; }

  .locations-grid { grid-template-columns: 1fr 1fr; }
  .loc-card.large { grid-column: span 2; height: 300px; }

  .rooms-header { flex-direction: column; }
  .booking-quick { display: none; }

  .gallery-masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .g-tall { grid-row: auto; }
  .g-wide { grid-column: auto; }

  .testi-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; }

  .rooms-full-grid { grid-template-columns: 1fr; }
  .gallery-full-grid { columns: 2; }
  .loc-split { grid-template-columns: 1fr; }
  .loc-split img { height: 300px; }
  .loc-split.reverse { direction: ltr; }
  .about-intro { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .hero-stats { flex-direction: row; gap: 20px; }
}

@media (max-width: 480px) {
  .locations-grid { grid-template-columns: 1fr; }
  .loc-card.large { grid-column: auto; }
  .gallery-full-grid { columns: 1; }
  .rooms-slider .room-slide { min-width: 240px; }
}