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

/* ---- CSS Variables ---- */
:root {
  --gold: #b89b5e;
  --gold-light: #d4b87a;
  --dark: #1a1a1a;
  --dark2: #222222;
  --gray: #666666;
  --light-gray: #f5f5f0;
  --white: #ffffff;
  --border: #e0d9cc;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Raleway', sans-serif;
  --transition: all 0.4s ease;
}

/* ---- Base Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 15px; color: var(--dark); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
p { line-height: 1.8; color: var(--gray); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 400; line-height: 1.2; }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center { text-align: center; }
.gold { color: var(--gold); }
.btn {
  display: inline-block;
  padding: 13px 36px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--dark); color: var(--white); }
.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--white); }
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: var(--gold); color: var(--white); }
.section-subtitle {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.15;
}
.section-title span { font-style: italic; }
.divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto 30px;
}
.divider-left { margin-left: 0; }

/* =====================
   NAVBAR
   ===================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
}
#navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  transition: var(--transition);
  line-height: 1;
}
.nav-logo span { color: var(--gold); font-style: italic; }
#navbar.scrolled .nav-logo { color: var(--dark); }
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 2px;
}
.nav-menu { display: flex; align-items: center; gap: 0; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #000000;
  transition: var(--transition);
}
.nav-menuu > li > a {
  display: block;
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  transition: var(--transition);
}
#navbar.scrolled .nav-menu > li > a { color: var(--dark); }
.nav-menu > li > a:hover,
.nav-menu > li.active > a { color: var(--gold); }
.nav-menu .dropdown { position: absolute; top: 100%; left: 0; background: var(--white); min-width: 200px; box-shadow: 0 10px 40px rgba(0,0,0,0.12); opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition); z-index: 100; }
.nav-menu li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu .dropdown li a {
  display: block;
  padding: 11px 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 1px solid #f5f5f0;
  transition: var(--transition);
}
.nav-menu .dropdown li a:hover { color: var(--gold); padding-left: 25px; }
.nav-book-btn {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  color: var(--white) !important;
  background: var(--gold);
  padding: 10px 22px !important;
  margin-left: 10px;
}
.nav-book-btn:hover { background: var(--dark); color: var(--white) !important; }
#navbar.scrolled .nav-book-btn { color: var(--white) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }
#navbar.scrolled .nav-toggle span { background: var(--dark); }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-right: 15px;
}
#navbar.scrolled .nav-phone { color: var(--dark); }
.nav-phone i { color: var(--gold); font-size: 14px; }
.nav-phone:hover { color: var(--gold); }

/* =====================
   HERO SLIDER
   ===================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
}
.hero-slides { height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.1) 100%);
}
.hero-slide-1 { background-image: url('https://images.unsplash.com/photo-1499793983690-e29da59ef1c2?w=1920&q=80'); }
.hero-slide-2 { background-image: url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=1920&q=80'); }
.hero-slide-3 { background-image: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?w=1920&q=80'); }
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
  padding: 0 60px;
}
.hero-text { max-width: 600px; }
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
  display: block;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: 68px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 30px;
}
.hero-title em { font-style: italic; display: block; }
.hero-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 450px;
}
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-arrows {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-arrow {
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.5);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); }
.hero-dots {
  position: absolute;
  bottom: 55px;
  left: 60px;
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-dot {
  width: 30px; height: 2px;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: var(--gold); width: 50px; }

/* =====================
   BOOKING BAR
   ===================== */
.booking-bar {
  background: var(--white);
  box-shadow: 0 5px 30px rgba(0,0,0,0.1);
  position: relative;
  z-index: 10;
  margin-top: -1px;
}
.booking-bar-inner {
  display: flex;
  align-items: stretch;
}
.booking-field {
  flex: 1;
  padding: 22px 25px;
  border-right: 1px solid var(--border);
}
.booking-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.booking-field input,
.booking-field select {
  width: 100%;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.booking-field select { appearance: none; }
.booking-submit {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 0 40px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.booking-submit:hover { background: var(--dark); }

/* =====================
   ABOUT SECTION
   ===================== */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  width: 80%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  bottom: -40px;
  right: 0;
  border: 8px solid var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.about-stat {
  position: absolute;
  top: 40px;
  right: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 25px 30px;
  text-align: center;
}
.about-stat-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  display: block;
}
.about-stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}
.about-content { padding-top: 20px; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-feature-icon {
  width: 40px; height: 40px;
  background: var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}
.about-feature-text h6 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 4px;
}
.about-feature-text p { font-size: 13px; }

/* =====================
   ROOMS SECTION
   ===================== */
.rooms-section { background: var(--light-gray); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}
.room-card {
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
}
.room-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.12); transform: translateY(-5px); }
.room-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.room-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-img img { transform: scale(1.05); }
.room-book-btn {
  position: absolute;
  top: 15px; right: 15px;
  background: var(--gold);
  color: var(--white);
  padding: 8px 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  transition: var(--transition);
  transform: translateY(-10px);
}
.room-card:hover .room-book-btn { opacity: 1; transform: translateY(0); }
.room-info { padding: 25px; }
.room-price {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 6px;
}
.room-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 10px;
}
.room-amenities {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
}
.room-amenities li {
  font-size: 12px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 5px;
}
.room-amenities li i { color: var(--gold); font-size: 11px; }
.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.room-details-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.room-details-link:hover { color: var(--gold); }
.room-details-link::after { content: '→'; transition: var(--transition); }
.room-details-link:hover::after { transform: translateX(5px); }

/* =====================
   SERVICES / FACILITIES
   ===================== */
.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 50px;
}
.service-item {
  background: var(--white);
  padding: 40px 35px;
  text-align: center;
  transition: var(--transition);
}
.service-item:hover { background: var(--dark); }
.service-icon {
  width: 60px; height: 60px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 22px;
  transition: var(--transition);
}
.service-item:hover .service-icon { border-color: var(--gold); background: var(--gold); color: var(--white); }
.service-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 12px;
  transition: var(--transition);
}
.service-item:hover .service-title { color: var(--white); }
.service-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  transition: var(--transition);
}
.service-item:hover .service-desc { color: rgba(255,255,255,0.7); }

/* =====================
   PARALLAX / CTA SECTION
   ===================== */
.cta-section {
  background-image: url('https://images.unsplash.com/photo-1499793983690-e29da59ef1c2?w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 120px 0;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
.cta-subtitle {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
  display: block;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.cta-title em { font-style: italic; }
.cta-text { max-width: 500px; margin: 0 auto 35px; opacity: 0.85; line-height: 1.8; color: rgba(255,255,255,0.9); }
.cta-phone { font-size: 18px; color: var(--gold); font-family: var(--font-heading); margin-top: 20px; display: block; }

/* =====================
   GALLERY SECTION
   ===================== */
.gallery-section { background: var(--light-gray); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 10px;
  margin-top: 50px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
  aspect-ratio: 1;
}
.gallery-item:first-child img { aspect-ratio: auto; height: 100%; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(184,155,94,0);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { background: rgba(184,155,94,0.4); }
.gallery-overlay i { color: var(--white); font-size: 28px; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-overlay i { opacity: 1; }

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials-section { background: var(--dark2); padding: 90px 0; }
.testimonials-section .section-title { color: var(--white); }
.testimonials-inner { margin-top: 50px; }
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-slide {
  display: none;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.testimonial-slide.active { display: block; }
.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 35px;
}
.testimonial-quote::before { content: '"'; font-size: 80px; color: var(--gold); opacity: 0.4; display: block; line-height: 0.5; margin-bottom: 20px; }
.testimonial-author img {
  width: 65px; height: 65px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px;
  border: 3px solid var(--gold);
}
.testimonial-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  display: block;
}
.testimonial-role {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}
.testimonial-stars { color: var(--gold); font-size: 13px; margin: 8px 0 0; letter-spacing: 3px; }
.testimonial-nav { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.testimonial-dot.active { background: var(--gold); transform: scale(1.3); }

/* =====================
   RESTAURANT / SPA SPLIT
   ===================== */
.experience-section { background: var(--white); }
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.experience-item { position: relative; overflow: hidden; }
.experience-img {
  width: 100%; height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.experience-item:hover .experience-img { transform: scale(1.05); }
.experience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}
.experience-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.experience-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 10px;
}
.experience-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 350px;
}
.experience-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  display: inline-block;
  transition: var(--transition);
}
.experience-link:hover { color: var(--gold); }

/* =====================
   NEWS / BLOG
   ===================== */
.news-section { background: var(--light-gray); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}
.news-card { background: var(--white); overflow: hidden; transition: var(--transition); }
.news-card:hover { box-shadow: 0 15px 50px rgba(0,0,0,0.1); }
.news-img { overflow: hidden; aspect-ratio: 16/10; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.news-card:hover .news-img img { transform: scale(1.05); }
.news-body { padding: 25px; }
.news-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
}
.news-date, .news-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.news-date { color: var(--gray); }
.news-cat { color: var(--gold); }
.news-title {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--dark);
  line-height: 1.3;
  transition: var(--transition);
}
.news-card:hover .news-title { color: var(--gold); }
.news-excerpt { font-size: 13px; color: var(--gray); margin-top: 10px; line-height: 1.7; }
.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 18px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: var(--transition);
}
.news-read-more:hover { border-color: var(--gold); }

/* =====================
   CONTACT / BOOKING FORM
   ===================== */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-info h3 { font-family: var(--font-heading); font-size: 38px; font-weight: 300; margin-bottom: 20px; }
.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: flex-start;
}
.contact-icon {
  width: 45px; height: 45px;
  background: var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}
.contact-item h6 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.contact-item p { font-size: 14px; color: var(--dark); }
.booking-form h3 { font-family: var(--font-heading); font-size: 38px; font-weight: 300; margin-bottom: 30px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
}
.form-control:focus { border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 15px 20px;
  margin-top: 15px;
  font-size: 13px;
  border-left: 3px solid #28a745;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
}
.footer-top { padding: 70px 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
}
.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 5px;
  display: block;
}
.footer-brand .footer-logo span { color: var(--gold); font-style: italic; }
.footer-brand .footer-tagline {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}
.footer-brand p { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.6); }
.footer-social { display: flex; gap: 10px; margin-top: 25px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before { content: '—'; color: var(--gold); font-size: 10px; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 15px; align-items: flex-start; }
.footer-contact-item i { color: var(--gold); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: var(--gold); }

/* =====================
   PAGE HERO (inner pages)
   ===================== */
.page-hero {
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
.page-hero-content .section-subtitle { font-size: 11px; margin-bottom: 10px; }
.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 300;
  color: var(--white);
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* =====================
   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-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: var(--transition);
}
.lightbox-close:hover { color: var(--gold); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .hero-title { font-size: 52px; }
  .section-title { font-size: 36px; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 38px; }
  .hero-content { padding: 0 30px; }
  .hero-dots, .hero-arrows { display: none; }
  .about-grid, .contact-grid, .experience-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-accent, .about-stat { display: none; }
  .about-img-main { width: 100%; }
  .rooms-grid, .news-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .booking-bar-inner { flex-direction: column; }
  .booking-field { border-right: none; border-bottom: 1px solid var(--border); }
  .booking-submit { padding: 18px; width: 100%; }
  .nav-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--dark); flex-direction: column; align-items: flex-start; justify-content: center; padding: 40px; gap: 5px; z-index: 999; }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { color: var(--white) !important; font-size: 22px; padding: 10px 0; }
  .nav-menu .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; }
  .nav-menu .dropdown li a { color: rgba(255,255,255,0.6) !important; font-size: 14px; }
  .nav-toggle { display: flex; z-index: 1000; }
  .nav-phone { display: none; }
  .section-title { font-size: 30px; }
  .cta-title { font-size: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero-content h1 { font-size: 36px; }
}

/* =====================
   ANIMATIONS
   ===================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeInUp 0.8s ease forwards; }
.fade-up-delay-1 { animation-delay: 0.2s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.4s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.6s; opacity: 0; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
