/* ==========================================================================
   NAMASTEY PURI — PREMIUM HOTEL DESIGN SYSTEM (CSS3)
   ========================================================================== */

:root {
  /* Colors */
  --bg-color: #FDFCF9;          /* Soft Pearl */
  --surface-color: #FFFFFF;
  --text-main: #2C2824;         /* Rich Charcoal */
  --text-muted: #757067;
  --gold: #C5A059;              /* Refined Gold */
  --gold-hover: #D6B26A;
  --dark-bg: #1A1612;           /* Deep Espresso Background */
  
  /* Typography */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Jost', sans-serif;
  
  /* Shadows & Easing */
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.08);
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
button, input, select, textarea { font-family: inherit; outline: none; border: none; background: none; }

/* --------------------------------------------------------------------------
   UTILITIES
   -------------------------------------------------------------------------- */
.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-header {
  margin-bottom: 4rem;
}

.section-header.centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   PRELOADER & CURSOR
   -------------------------------------------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  background-color: var(--dark-bg);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo { width: 180px; margin: 0 auto 2rem; }
.preloader-bar { width: 200px; height: 1px; background: rgba(255,255,255,0.1); margin: 0 auto 1rem; overflow: hidden; }
.preloader-fill { width: 0%; height: 100%; background: var(--gold); transition: width 0.3s; }
.preloader-text { font-size: 0.75rem; color: rgba(255,255,255,0.5); letter-spacing: 0.2em; text-transform: uppercase; }

.cursor {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 99999; display: none; mix-blend-mode: difference;
}
@media (min-width: 1024px) { .cursor { display: block; } }
.cursor-ring {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.5); border-radius: 50%;
  transform: translate(-50%, -50%); transition: width 0.3s, height 0.3s;
}

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; background: var(--gold); z-index: 10000; width: 0%;
}

/* --------------------------------------------------------------------------
   HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; padding: 1.5rem 0; z-index: 1000;
  transition: var(--transition); border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-header.scrolled {
  background: rgba(26, 22, 18, 0.95); backdrop-filter: blur(10px); padding: 1rem 0; border-color: transparent;
}
.header-inner {
  width: 95%; max-width: 1600px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center;
}
.header-left, .header-right { flex: 1; display: flex; align-items: center; }
.header-right { justify-content: flex-end; gap: 2rem; }
.site-logo { flex: 0 0 auto; display: flex; justify-content: center; }
.site-logo img { height: 50px; }

.header-phone {
  display: flex; align-items: center; gap: 0.5rem; color: #FFF; font-size: 0.85rem; letter-spacing: 0.1em;
}
.header-nav { display: flex; gap: 3rem; }
.nav-link {
  color: rgba(255,255,255,0.8); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.15em; position: relative;
}
.nav-link:hover, .nav-link.active { color: #FFF; }
.nav-link::after {
  content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px; background: var(--gold); transition: var(--transition);
}
.nav-link.active::after, .nav-link:hover::after { width: 100%; }

.btn-book {
  background: var(--gold); color: #FFF; padding: 0.8rem 2rem; font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.15em; border-radius: 2px;
}
.btn-book:hover { background: var(--gold-hover); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 25px; height: 2px; background: #FFF; transition: var(--transition); }

.mobile-nav {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: var(--dark-bg); z-index: 999; display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 2rem; opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}
.mobile-nav.active { opacity: 1; visibility: visible; }
.mob-link { font-family: var(--font-serif); font-size: 2.5rem; color: #FFF; }
.mob-book { color: var(--gold); font-size: 1.2rem; font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 0.2em; margin-top: 2rem; }

@media (max-width: 1024px) {
  .header-nav, .header-phone { display: none; }
  .hamburger { display: flex; }
  .header-right { gap: 1rem; }
}

/* --------------------------------------------------------------------------
   HERO SLIDER
   -------------------------------------------------------------------------- */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; overflow: hidden; }
.hero-slider { position: absolute; inset: 0; z-index: 1; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(26,22,18,0.4), rgba(26,22,18,0.8)); z-index: 2; }

.hero-content {
  position: relative; z-index: 3; width: 90%; max-width: 1400px; margin: 0 auto; color: #FFF; padding-top: 5rem;
}
.hero-tag { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--gold); display: block; margin-bottom: 1.5rem; }
.hero-title { font-family: var(--font-serif); font-size: clamp(3rem, 6vw, 6.5rem); line-height: 1.1; font-weight: 400; margin-bottom: 1.5rem; }
.hero-title span { display: block; }
.hero-title em { font-style: italic; color: #FDFCF9; opacity: 0.9; }
.hero-sub { font-size: clamp(1.1rem, 2vw, 1.4rem); max-width: 600px; opacity: 0.9; margin-bottom: 3rem; }

/* Booking Bar */
.booking-bar {
  background: #FFF; display: inline-flex; align-items: center; padding: 0.5rem; border-radius: 4px; box-shadow: var(--shadow-md);
  flex-wrap: wrap; color: var(--text-main);
}
.booking-field { padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: 0.3rem; min-width: 150px; }
.booking-field label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); font-weight: 500; }
.booking-field input, .booking-field select { font-size: 1rem; color: var(--text-main); font-family: var(--font-sans); cursor: pointer; background: transparent; }
.booking-divider { width: 1px; height: 40px; background: rgba(0,0,0,0.1); }
.btn-availability {
  background: var(--dark-bg); color: #FFF; padding: 1.2rem 2.5rem; font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.15em; border-radius: 2px; margin-left: 0.5rem; transition: var(--transition);
}
.btn-availability:hover { background: var(--gold); }

.hero-scroll { position: absolute; bottom: 3rem; left: 5%; z-index: 3; display: flex; align-items: center; gap: 1rem; color: #FFF; }
.hero-scroll span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; opacity: 0.7; }
.scroll-line { width: 50px; height: 1px; background: rgba(255,255,255,0.4); }

.slider-dots { position: absolute; bottom: 3rem; right: 5%; z-index: 3; display: flex; gap: 1rem; }
.dot { width: 8px; height: 8px; border-radius: 50%; border: 1px solid #FFF; opacity: 0.5; transition: var(--transition); }
.dot.active { background: #FFF; opacity: 1; }

@media (max-width: 900px) {
  .booking-bar { flex-direction: column; width: 100%; border-radius: 8px; padding: 1.5rem; gap: 1rem; }
  .booking-field { width: 100%; padding: 0.5rem 0; border-bottom: 1px solid rgba(0,0,0,0.1); }
  .booking-divider { display: none; }
  .btn-availability { margin-left: 0; width: 100%; margin-top: 1rem; }
}

/* --------------------------------------------------------------------------
   PAGE HERO (For inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative; padding: 12rem 0 6rem; background-size: cover; background-position: center; text-align: center; color: #FFF;
}
.page-hero-overlay { position: absolute; inset: 0; background: rgba(26, 22, 18, 0.75); z-index: 1; }
.page-hero-content { position: relative; z-index: 2; width: 90%; max-width: 800px; margin: 0 auto; }
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 400; margin-bottom: 1rem; }
.page-hero p { font-size: 1.1rem; opacity: 0.9; }

.rooms-booking-bar { background: var(--bg-color); padding: 0; transform: translateY(-50%); position: relative; z-index: 10; display: flex; justify-content: center; }

/* --------------------------------------------------------------------------
   WELCOME SECTION
   -------------------------------------------------------------------------- */
.welcome-section { padding: 8rem 0; }
.welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.welcome-text p { margin-bottom: 1.5rem; font-size: 1.1rem; color: var(--text-muted); }
.welcome-tagline { font-family: var(--font-serif); font-size: 1.4rem; color: var(--gold) !important; font-style: italic; }
.image-frame { position: relative; }
.image-frame img { border-radius: 4px; box-shadow: var(--shadow-md); }
.image-badge {
  position: absolute; bottom: -2rem; right: -2rem; background: var(--dark-bg); color: #FFF; padding: 2rem; border-radius: 50%;
  width: 140px; height: 140px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
}
.badge-num { color: var(--gold); font-size: 1.2rem; margin-bottom: 0.5rem; }
.badge-text { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; }

@media (max-width: 900px) {
  .welcome-grid { grid-template-columns: 1fr; gap: 4rem; }
  .image-badge { right: 2rem; }
}

/* --------------------------------------------------------------------------
   ROOMS SECTION
   -------------------------------------------------------------------------- */
.rooms-section { padding: 6rem 0 8rem; background: var(--surface-color); }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.room-card { background: var(--bg-color); border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.room-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.room-card.featured { transform: scale(1.05); box-shadow: var(--shadow-md); z-index: 2; position: relative; }
.room-card.featured:hover { transform: scale(1.05) translateY(-10px); }
.room-card-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.room-card-img img { width: 100%; height: 100%; transition: transform 0.8s; }
.room-card:hover .room-card-img img { transform: scale(1.08); }
.room-badge { position: absolute; top: 1rem; right: 1rem; background: rgba(26,22,18,0.9); color: var(--gold); padding: 0.4rem 1rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; }
.room-card-body { padding: 2.5rem; text-align: center; }
.room-meta { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 1.5rem; }
.room-meta span { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: var(--text-muted); }
.room-card-body h3 { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 400; margin-bottom: 1rem; }
.room-card-body p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 2rem; }

.btn-discover { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-main); font-weight: 500; display: inline-block; border-bottom: 1px solid var(--text-main); padding-bottom: 0.2rem; }
.btn-discover:hover { color: var(--gold); border-color: var(--gold); }
.btn-link { display: inline-block; margin-top: 1rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); border-bottom: 1px solid var(--gold); }

@media (max-width: 1024px) { .rooms-grid { grid-template-columns: repeat(2, 1fr); } .room-card.featured { transform: none; } }
@media (max-width: 768px) { .rooms-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   EXPERIENCE SECTION
   -------------------------------------------------------------------------- */
.experience-section { padding: 8rem 0; }
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.exp-card { position: relative; overflow: hidden; border-radius: 4px; aspect-ratio: 3/4; display: flex; align-items: flex-end; }
.exp-card-img { position: absolute; inset: 0; z-index: 1; }
.exp-card-img img { width: 100%; height: 100%; transition: transform 0.8s; }
.exp-card:hover .exp-card-img img { transform: scale(1.05); }
.exp-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,22,18,0.9) 0%, rgba(26,22,18,0.2) 60%, transparent 100%); z-index: 2; padding: 2rem; display: flex; justify-content: flex-end; }
.exp-num { font-family: var(--font-serif); font-size: 3rem; color: rgba(255,255,255,0.2); line-height: 1; }
.exp-card-body { position: relative; z-index: 3; padding: 2.5rem; color: #FFF; transform: translateY(20px); transition: var(--transition); }
.exp-card:hover .exp-card-body { transform: translateY(0); }
.exp-card-body h3 { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 400; margin-bottom: 1rem; }
.exp-card-body p { opacity: 0; visibility: hidden; font-size: 0.95rem; margin-bottom: 1.5rem; color: rgba(255,255,255,0.8); transition: var(--transition); height: 0; }
.exp-card:hover .exp-card-body p { opacity: 1; visibility: visible; height: auto; }
.btn-link-gold { color: var(--gold); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500; display: inline-flex; align-items: center; gap: 0.5rem; }

@media (max-width: 900px) {
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card { aspect-ratio: 16/9; }
  .exp-card-body { transform: translateY(0); }
  .exp-card-body p { opacity: 1; visibility: visible; height: auto; }
}

/* --------------------------------------------------------------------------
   TESTIMONIAL
   -------------------------------------------------------------------------- */
.testimonial-section { position: relative; padding: 10rem 0; text-align: center; color: #FFF; background: var(--dark-bg); background-attachment: fixed; }
.testimonial-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.4; }
.testimonial-overlay { position: absolute; inset: 0; background: rgba(26, 22, 18, 0.7); }
.testimonial-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.quote-icon { font-family: var(--font-serif); font-size: 6rem; color: var(--gold); line-height: 1; margin-bottom: 1rem; }
.testimonial-content blockquote { font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2.2rem); font-style: italic; line-height: 1.5; margin-bottom: 3rem; }
.testimonial-author strong { display: block; font-size: 1.1rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.2rem; }
.testimonial-author span { color: var(--gold); font-size: 0.9rem; }
.stars { color: var(--gold); font-size: 1.2rem; margin: 1rem 0 0.5rem; }
.rated { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; }

/* --------------------------------------------------------------------------
   SERVICES
   -------------------------------------------------------------------------- */
.services-section { padding: 8rem 0; background: var(--surface-color); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.service-card { background: var(--bg-color); padding: 3rem 2rem; text-align: center; border-radius: 4px; transition: var(--transition); border: 1px solid rgba(0,0,0,0.03); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: var(--gold); }
.service-icon { width: 60px; height: 60px; margin: 0 auto 1.5rem; color: var(--gold); }
.service-card h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 500; margin-bottom: 1rem; }
.service-card p { font-size: 0.95rem; color: var(--text-muted); }

@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   NEWSLETTER & FOOTER
   -------------------------------------------------------------------------- */
.newsletter-section { padding: 6rem 0; background: var(--dark-bg); color: #FFF; text-align: center; }
.newsletter-box { max-width: 700px; margin: 0 auto; }
.newsletter-box h2 { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 400; margin-bottom: 2.5rem; }
.newsletter-form { display: flex; max-width: 500px; margin: 0 auto; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 0.5rem; }
.newsletter-form input { flex: 1; color: #FFF; font-size: 1rem; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form button { color: var(--gold); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500; padding: 0.5rem 1rem; cursor: pointer; transition: color 0.3s; }
.newsletter-form button:hover { color: #FFF; }

.site-footer { background: var(--bg-color); border-top: 1px solid rgba(0,0,0,0.05); }
.footer-top { padding: 6rem 0 4rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; }
.footer-logo { width: 160px; margin-bottom: 1.5rem; filter: invert(1); }
.footer-brand p { color: var(--text-muted); font-size: 0.95rem; max-width: 300px; }
.footer-col h4 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500; margin-bottom: 1.5rem; color: var(--text-main); }
.footer-col p, .footer-col a { color: var(--text-muted); font-size: 0.95rem; display: block; margin-bottom: 0.5rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-socials { display: flex; flex-direction: column; gap: 1rem; }
.social-link { display: flex; align-items: center; gap: 1rem; }
.social-link svg { width: 20px; height: 20px; color: var(--gold); }

.footer-bottom { border-top: 1px solid rgba(0,0,0,0.05); padding: 2rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--gold); }

@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; text-align: center; } .footer-logo { margin: 0 auto 1.5rem; } .footer-brand p { margin: 0 auto; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; text-align: center; } .social-link { justify-content: center; } .footer-bottom .container { flex-direction: column; text-align: center; } .footer-links { justify-content: center; flex-wrap: wrap; } }

/* --------------------------------------------------------------------------
   ROOMS DETAIL (rooms.html)
   -------------------------------------------------------------------------- */
.rooms-intro { padding: 6rem 0 2rem; }
.room-detail { padding: 6rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.room-detail.alt-bg { background: var(--surface-color); }
.room-detail-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: center; }
.room-detail-grid.reverse { grid-template-columns: 1fr 1.2fr; }
.room-detail-grid.reverse .room-detail-gallery { order: 2; }
.room-detail-grid.reverse .room-detail-info { order: 1; }

.gallery-main { border-radius: 4px; overflow: hidden; margin-bottom: 1rem; aspect-ratio: 4/3; }
.gallery-main img { width: 100%; height: 100%; }
.gallery-thumbs { display: flex; gap: 1rem; }
.thumb { flex: 1; aspect-ratio: 16/9; border-radius: 4px; cursor: pointer; opacity: 0.6; transition: var(--transition); border: 2px solid transparent; }
.thumb.active, .thumb:hover { opacity: 1; border-color: var(--gold); }

.room-type-tag { font-family: var(--font-sans); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); display: block; margin-bottom: 1rem; }
.room-detail-info h2 { font-family: var(--font-serif); font-size: 2.8rem; font-weight: 400; margin-bottom: 2rem; }
.room-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(0,0,0,0.05); }
.spec { display: flex; align-items: center; gap: 1rem; font-size: 0.95rem; color: var(--text-main); }
.spec svg { color: var(--gold); width: 20px; height: 20px; }
.room-desc { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 2rem; }
.room-amenities { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 3rem; }
.amenity { font-size: 0.9rem; color: var(--text-muted); }
.btn-primary { display: inline-block; background: var(--dark-bg); color: #FFF; padding: 1.2rem 3rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.15em; border-radius: 2px; transition: var(--transition); }
.btn-primary:hover { background: var(--gold); }
.btn-primary.full-width { width: 100%; text-align: center; border: none; cursor: pointer; }

@media (max-width: 1024px) {
  .room-detail-grid, .room-detail-grid.reverse { grid-template-columns: 1fr; gap: 3rem; }
  .room-detail-grid.reverse .room-detail-gallery { order: 1; }
  .room-detail-grid.reverse .room-detail-info { order: 2; }
}

.room-features-section { padding: 8rem 0; background: var(--bg-color); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.feature-item { text-align: center; }
.feature-item img { border-radius: 4px; aspect-ratio: 4/3; margin-bottom: 2rem; }
.feature-item h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 500; margin-bottom: 1rem; }
.feature-item p { color: var(--text-muted); font-size: 0.95rem; }
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   CONTACT SECTION (contact.html)
   -------------------------------------------------------------------------- */
.contact-section { padding: 8rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; }
.contact-info h2 { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 400; margin-bottom: 3rem; }
.contact-item { display: flex; gap: 1.5rem; margin-bottom: 2.5rem; }
.contact-icon { width: 45px; height: 45px; background: var(--surface-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; box-shadow: var(--shadow-sm); }
.contact-icon svg { width: 20px; height: 20px; }
.contact-item h4 { font-size: 1.1rem; font-weight: 500; margin-bottom: 0.5rem; font-family: var(--font-serif); }
.contact-item p, .contact-item a { color: var(--text-muted); font-size: 0.95rem; }
.contact-item a:hover { color: var(--gold); }

.contact-socials { display: flex; gap: 1rem; margin-top: 3rem; flex-wrap: wrap; }
.social-pill { display: flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.5rem; border: 1px solid rgba(0,0,0,0.1); border-radius: 30px; font-size: 0.85rem; color: var(--text-main); transition: var(--transition); }
.social-pill svg { width: 16px; height: 16px; color: var(--gold); }
.social-pill:hover { border-color: var(--gold); background: var(--gold); color: #FFF; }
.social-pill:hover svg { color: #FFF; }

.contact-form-wrap { background: var(--surface-color); padding: 4rem; border-radius: 8px; box-shadow: var(--shadow-sm); }
.contact-form-wrap h2 { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 400; margin-bottom: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.form-group { margin-bottom: 2rem; }
.form-group label { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.8rem; color: var(--text-muted); font-weight: 500; }
.form-group input, .form-group textarea { width: 100%; padding: 1.2rem 1.5rem; border: 1px solid rgba(0,0,0,0.1); border-radius: 4px; font-size: 1rem; color: var(--text-main); transition: var(--transition); background: var(--bg-color); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1); }
.form-success { display: none; margin-top: 1.5rem; padding: 1rem; background: rgba(197, 160, 89, 0.1); color: var(--gold); border-radius: 4px; text-align: center; font-weight: 500; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 4rem; } .form-row { grid-template-columns: 1fr; gap: 0; } .contact-form-wrap { padding: 2rem; } }

.map-section { line-height: 0; }
.map-frame iframe { width: 100%; height: 500px; filter: grayscale(50%) contrast(1.1); }

/* --------------------------------------------------------------------------
   BLOGS SECTION (blogs.html)
   -------------------------------------------------------------------------- */
.blogs-section { padding: 8rem 0; background: var(--bg-color); }

.blog-featured { display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; align-items: center; margin-bottom: 6rem; background: var(--surface-color); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); }
.blog-featured-img { position: relative; height: 100%; min-height: 400px; }
.blog-featured-img img { position: absolute; inset: 0; width: 100%; height: 100%; }
.blog-featured-body { padding: 4rem 4rem 4rem 0; }
.blog-cat-tag { position: absolute; top: 2rem; left: 2rem; background: var(--gold); color: #FFF; padding: 0.4rem 1rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; border-radius: 2px; }
.blog-meta { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 1rem; }
.blog-featured h2 { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 400; line-height: 1.2; margin-bottom: 1.5rem; }
.blog-featured h2 a:hover { color: var(--gold); }
.blog-featured p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2rem; }

.blogs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem 2rem; margin-bottom: 5rem; }
.blog-card { background: var(--surface-color); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.blog-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.blog-card-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; transition: transform 0.8s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card .blog-cat-tag { top: 1rem; left: 1rem; }
.blog-card-body { padding: 2.5rem; }
.blog-card h3 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 500; line-height: 1.3; margin-bottom: 1rem; }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.blogs-cta { text-align: center; }

@media (max-width: 1024px) {
  .blog-featured { grid-template-columns: 1fr; gap: 0; }
  .blog-featured-img { min-height: 300px; }
  .blog-featured-body { padding: 3rem; }
  .blogs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) { .blogs-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   ANIMATIONS & REVEALS
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}