/* ============================================
   IMLIL OASIS GUEST HOUSE — Global Stylesheet
   ============================================ */

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

/* --- CSS Variables --- */
:root {
  --color-sand:        #E8DFD0;
  --color-sand-light:  #F5F0E8;
  --color-sand-dark:   #D4C8B4;
  --color-terracotta:  #C4663A;
  --color-terracotta-dark: #A3512B;
  --color-earth:       #5C4033;
  --color-earth-light: #7A5C4F;
  --color-slate:       #3B3B3B;
  --color-olive:       #6B7B4F;
  --color-olive-dark:  #4E5B38;
  --color-cream:       #FFFBF5;
  --color-white:       #FFFFFF;
  --color-black:       #1A1A1A;
  --color-gold:        #C9A96E;
  --color-gold-dark:   #A8873D;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Segoe UI', sans-serif;

  --header-height: 80px;
  --max-width: 1280px;
  --section-padding: 100px 0;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-slate);
  background: var(--color-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-earth);
}

/* --- Utility --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 16px;
  display: block;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin-bottom: 24px;
  color: var(--color-earth);
}
.section-text {
  font-size: 1.05rem;
  max-width: 600px;
  color: var(--color-earth-light);
  line-height: 1.8;
}

/* --- Buttons --- */
@keyframes shimmer {
  0%   { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(250%)  skewX(-15deg); }
}

/* Base applied to every variant — with or without .btn class */
.btn,
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-dark,
button.btn-primary,
button.btn-secondary,
button.btn-outline,
button.btn-dark {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.3s ease,
              background 0.3s ease,
              border-color 0.3s ease;
}

/* Shimmer sweep */
.btn::after,
.btn-primary::after,
.btn-secondary::after,
.btn-dark::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.28) 50%,
    transparent 100%);
  transform: translateX(-100%) skewX(-15deg);
  pointer-events: none;
}
.btn:hover::after,
.btn-primary:hover::after,
.btn-secondary:hover::after,
.btn-dark:hover::after {
  animation: shimmer 0.65s ease forwards;
}

/* --- Primary --- */
.btn-primary {
  background: linear-gradient(135deg, #D4714A 0%, #C4663A 50%, #A8531F 100%);
  color: var(--color-white);
  box-shadow: 0 4px 18px rgba(196,102,58,0.35),
              inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(196,102,58,0.50),
              inset 0 1px 0 rgba(255,255,255,0.20);
  background: linear-gradient(135deg, #E07D55 0%, #D4714A 50%, #B55A28 100%);
}
.btn-primary:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow: 0 4px 14px rgba(196,102,58,0.40);
}

/* --- Outline (on dark / hero) --- */
.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.60);
  box-shadow: inset 0 0 0 0 rgba(255,255,255,0);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.95);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.20),
              inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-outline:active { transform: translateY(-1px); }

/* --- Dark --- */
.btn-dark {
  background: linear-gradient(135deg, #6B4F42 0%, #5C4033 100%);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(92,64,51,0.35),
              inset 0 1px 0 rgba(255,255,255,0.10);
}
.btn-dark:hover {
  background: linear-gradient(135deg, #7A5C4F 0%, #6B4F42 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(92,64,51,0.45);
}
.btn-dark:active { transform: translateY(-1px) scale(0.99); }

/* --- Book / Nav CTA (gold accent) --- */
.btn-book {
  background: linear-gradient(135deg, #D4714A 0%, #C4663A 100%) !important;
  color: #fff !important;
  box-shadow: 0 3px 14px rgba(196,102,58,0.40) !important;
  border: none !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
              background 0.25s ease !important;
}
.btn-book:hover {
  background: linear-gradient(135deg, #E07D55 0%, #D4714A 100%) !important;
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 8px 24px rgba(196,102,58,0.55) !important;
}
.btn-book::after { display: none !important; }

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background 0.4s, box-shadow 0.4s;
}
.site-header.scrolled {
  background: rgba(255, 251, 245, 0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
}
.site-header.scrolled .nav-link { color: var(--color-earth); }
.site-header.scrolled .logo-text { color: var(--color-earth); }
.site-header.scrolled .hamburger span { background: var(--color-earth); }

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.logo { display: flex; align-items: center; gap: 14px; }
.logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-white);
  transition: var(--transition);
}
.logo-text span { display: block; font-size: 0.6rem; letter-spacing: 3px; font-family: var(--font-body); text-transform: uppercase; opacity: 0.7; font-weight: 400; }

.main-nav { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  position: relative;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--color-terracotta);
  transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-book {
  padding: 10px 28px;
  background: var(--color-terracotta);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
}
.nav-book:hover { background: var(--color-terracotta-dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 1010;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translateY(5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translateY(-5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--color-earth);
  z-index: 1005;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-sand-light);
}
.mobile-nav a:hover { color: var(--color-terracotta); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #5C4033 0%, #3B3B3B 50%, #2A2A2A 100%);
  z-index: 0;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.3) 0%, rgba(26,26,26,0.5) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 40px;
}
.hero-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--color-gold);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 550px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s infinite;
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero .hero-bg {
  background: linear-gradient(135deg, #5C4033 0%, #3B3B3B 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px 60px;
}
.page-hero-content .hero-label { opacity: 1; animation: none; }
.page-hero-content .hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  opacity: 1;
  animation: none;
}
.page-hero-content .hero-subtitle {
  opacity: 1;
  animation: none;
  margin-bottom: 0;
}

/* ============================================
   INTRO / WELCOME SECTION
   ============================================ */
.intro-section { padding: var(--section-padding); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.intro-image .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 1px solid var(--color-terracotta);
  opacity: 0.3;
  z-index: -1;
}

/* ============================================
   FEATURES / HIGHLIGHTS
   ============================================ */
.features-section {
  padding: var(--section-padding);
  background: var(--color-sand-light);
}
.features-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 70px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.feature-card {
  text-align: center;
  padding: 50px 30px;
  background: var(--color-white);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}
.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  background: var(--color-sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-terracotta);
}
.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 0.92rem;
  color: var(--color-earth-light);
}

/* ============================================
   ROOMS SECTION
   ============================================ */
.rooms-section { padding: var(--section-padding); }
.rooms-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.room-card {
  overflow: hidden;
  background: var(--color-white);
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(92,64,51,0.08);
  transition: transform 0.4s cubic-bezier(0.34,1.2,0.64,1),
              box-shadow 0.4s ease;
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(92,64,51,0.18);
}
.room-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-sand);
}
.room-card-image .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-card-image .placeholder-img {
  transform: scale(1.05);
}
.room-card-body { padding: 28px 0 0; }
.room-card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.room-card-body .room-price {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-terracotta);
  font-weight: 500;
  margin-bottom: 10px;
}
.room-card-body p {
  font-size: 0.92rem;
  color: var(--color-earth-light);
  margin-bottom: 16px;
}
.room-amenities {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.room-amenity {
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-earth-light);
  padding: 6px 12px;
  border: 1px solid var(--color-sand-dark);
}

/* ============================================
   CUISINE SECTION
   ============================================ */
.cuisine-section {
  padding: var(--section-padding);
  background: var(--color-earth);
  color: var(--color-sand-light);
}
.cuisine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cuisine-content .section-label { color: var(--color-gold); }
.cuisine-content .section-title { color: var(--color-sand-light); }
.cuisine-content .section-text { color: rgba(232, 223, 208, 0.75); }
.cuisine-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cuisine-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-sand);
}
.cuisine-list li::before {
  content: '◆';
  font-size: 0.5rem;
  color: var(--color-gold);
}
.cuisine-image {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.cuisine-image .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   EXPERIENCES / ACTIVITIES
   ============================================ */
.experiences-section { padding: var(--section-padding); }
.experiences-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 70px;
}
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.experience-card {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  cursor: pointer;
}
.experience-card .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.experience-card:hover .placeholder-img { transform: scale(1.05); }
.experience-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26,26,26,0.7) 0%, rgba(26,26,26,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px;
  transition: var(--transition);
}
.experience-card:hover .experience-card-overlay {
  background: linear-gradient(0deg, rgba(26,26,26,0.8) 0%, rgba(26,26,26,0.2) 70%);
}
.experience-card-overlay h3 {
  font-size: 1.6rem;
  color: var(--color-white);
  margin-bottom: 6px;
}
.experience-card-overlay p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: var(--section-padding);
  background: var(--color-sand-light);
}
.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: var(--color-white);
  padding: 40px;
}
.testimonial-stars {
  color: var(--color-gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-earth);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-terracotta);
}

/* ============================================
   CTA BANNER
   ============================================ */
/* ============================================
   MAP
   ============================================ */
.map-section {
  padding: 100px 0;
  background: var(--color-sand-light);
}
.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.map-wrapper iframe {
  width: 100%;
  height: 450px;
  display: block;
  border: 0;
}

.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #5C4033 0%, #3B3B3B 100%);
}
.cta-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  padding: 0 40px;
}
.cta-content .section-label { color: var(--color-gold); }
.cta-content .section-title { color: var(--color-white); }
.cta-content .section-text {
  color: rgba(255,255,255,0.7);
  margin: 0 auto 36px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story { padding: var(--section-padding); }
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story-content .section-text + .section-text { margin-top: 18px; }

.about-values {
  padding: var(--section-padding);
  background: var(--color-sand-light);
}
.about-values-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.value-card {
  position: relative;
  text-align: center;
  padding: 56px 40px 48px;
  background: var(--color-white);
  transition: background 0.35s ease, transform 0.4s cubic-bezier(0.34,1.2,0.64,1);
  overflow: hidden;
}
.value-card + .value-card::before {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: var(--color-sand-dark);
}
.value-card:hover { background: var(--color-sand-light); transform: translateY(-4px); }

/* SVG icon wrap */
.value-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--color-sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-terracotta);
  transition: background 0.35s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.35s ease, color 0.35s ease;
}
.value-icon-wrap svg { width: 34px; height: 34px; }
.value-card:hover .value-icon-wrap {
  background: var(--color-terracotta);
  color: #fff;
  transform: rotate(-6deg) scale(1.12);
  box-shadow: 0 8px 24px rgba(196,102,58,0.30);
}

/* Sliding accent bar */
.value-accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  height: 3px;
  width: 56px;
  background: linear-gradient(90deg, var(--color-terracotta), var(--color-gold));
  transition: transform 0.4s cubic-bezier(0.34,1.3,0.64,1);
}
.value-card:hover .value-accent { transform: translateX(-50%) scaleX(1); }

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-earth);
  transition: color 0.3s ease;
}
.value-card:hover h3 { color: var(--color-terracotta); }
.value-card p {
  font-size: 0.9rem;
  color: var(--color-earth-light);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-mission-content { max-width: 520px; }
.about-mission-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--color-earth);
  margin: 8px 0 16px;
}
.about-mission-content .lead {
  font-size: 1.05rem;
  color: var(--color-earth-light);
  line-height: 1.7;
  margin-bottom: 14px;
}
.about-mission-content p {
  color: var(--color-earth-light);
  line-height: 1.75;
  margin-bottom: 28px;
}
.about-mission-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(92,64,51,0.18);
}
.about-mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-team { padding: var(--section-padding); }
.about-team-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.team-image {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.team-image .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   ROOMS PAGE — DETAIL
   ============================================ */
.rooms-detail { padding: var(--section-padding); }
.room-detail-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 80px;
  margin-bottom: 80px;
  border-bottom: 1px solid var(--color-sand-dark);
}
.room-detail-card:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.room-detail-card:nth-child(even) { direction: rtl; }
.room-detail-card:nth-child(even) > * { direction: ltr; }
.room-detail-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.room-detail-image .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room-detail-body h3 {
  font-size: 2rem;
  margin-bottom: 6px;
}
.room-detail-body .room-price {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-terracotta);
  font-weight: 500;
  margin-bottom: 18px;
  display: block;
}
.room-detail-body p {
  font-size: 0.95rem;
  color: var(--color-earth-light);
  line-height: 1.8;
  margin-bottom: 24px;
}
.room-detail-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.room-detail-amenities span {
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--color-sand-dark);
  color: var(--color-earth-light);
}

/* ============================================
   EXPERIENCES PAGE
   ============================================ */
.exp-detail { padding: var(--section-padding); }
.exp-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--color-sand-dark);
}
.exp-detail-card:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.exp-detail-card:nth-child(even) { direction: rtl; }
.exp-detail-card:nth-child(even) > * { direction: ltr; }
.exp-detail-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.exp-detail-image .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.exp-detail-body h3 { font-size: 1.8rem; margin-bottom: 12px; }
.exp-detail-body .exp-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 18px;
}
.exp-detail-body .exp-meta span {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-terracotta);
  font-weight: 500;
}
.exp-detail-body p {
  font-size: 0.95rem;
  color: var(--color-earth-light);
  line-height: 1.8;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { padding: var(--section-padding); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--color-sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text h4 {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--color-earth);
}
.contact-item-text p {
  font-size: 0.95rem;
  color: var(--color-earth-light);
}
.contact-item-text a:hover { color: var(--color-terracotta); }

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-earth);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--color-sand-dark);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-slate);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-terracotta);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-map {
  padding: 0 0 100px;
}
.map-placeholder {
  width: 100%;
  height: 400px;
  background: var(--color-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-earth-light);
}

/* ============================================
   GALLERY GRID
   ============================================ */
.gallery-section { padding: var(--section-padding); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover .placeholder-img { transform: scale(1.08); }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-slate);
  color: var(--color-sand);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo-img {
  height: 130px;
  width: auto;
  object-fit: contain;
  margin-bottom: 8px;
  display: block;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(232, 223, 208, 0.6);
  max-width: 280px;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-sand-light);
  margin-bottom: 20px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 0.9rem;
  color: rgba(232, 223, 208, 0.6);
}
.footer-col a:hover { color: var(--color-terracotta); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.78rem;
  color: rgba(232, 223, 208, 0.4);
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  font-size: 0.85rem;
  color: rgba(232, 223, 208, 0.5);
}
.footer-social a:hover { color: var(--color-terracotta); }

/* ============================================
   PLACEHOLDER IMAGES
   ============================================ */
.placeholder-img {
  background: var(--color-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-earth-light);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 1; }
}

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

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-padding: 70px 0; }
  .container { padding: 0 24px; }
  .header-inner { padding: 0 24px; }
  
  .hamburger { display: flex; }
  .main-nav { display: none; }
  
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  
  .intro-grid,
  .cuisine-grid,
  .about-story-grid,
  .about-mission,
  .contact-grid,
  .room-detail-card,
  .exp-detail-card { grid-template-columns: 1fr; gap: 40px; }
  .room-detail-card:nth-child(even),
  .exp-detail-card:nth-child(even) { direction: ltr; }
  
  .features-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .experiences-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  
  .form-row { grid-template-columns: 1fr; }
  .rooms-header { flex-direction: column; align-items: flex-start; }
  
  .page-hero { height: 45vh; min-height: 320px; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   CI3 ADDITIONS — New pages & components
   ============================================ */

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
}
.lang-switcher a { color: rgba(255,255,255,.7); font-weight: 500; letter-spacing: .05em; }
.lang-switcher a.lang-active,
.lang-switcher a:hover { color: var(--color-gold); }
.lang-switcher span { color: rgba(255,255,255,.3); }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  background: #25D366;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.5);
  transition: transform .3s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* Page Hero (inner pages) */
.page-hero {
  height: 50vh;
  min-height: 340px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.3) 0%, rgba(0,0,0,.6) 100%);
}
.page-hero-content {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  color: #fff;
}
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.page-hero-content p {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  margin-top: .5rem;
}

/* Rooms List (rooms.php) */
.rooms-list { display: flex; flex-direction: column; gap: 4rem; }
.room-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.room-row-reverse { direction: rtl; }
.room-row-reverse > * { direction: ltr; }
a.room-row-image {
  display: block;
  overflow: hidden;
  border-radius: 8px;
}
.room-row-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
  transition: transform .5s ease, box-shadow .4s ease;
}
a.room-row-image:hover img {
  transform: scale(1.04);
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
}
.room-row-content h2 a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.room-row-content h2 a:hover { color: var(--color-terracotta); }
.room-row-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-earth);
  margin-bottom: 1rem;
}
.room-specs { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1rem 0; }
.spec { font-size: .85rem; color: var(--color-earth-light); background: var(--color-sand-light); padding: .3rem .75rem; border-radius: 20px; }
.room-amenities { margin: 1.5rem 0; }
.room-amenities h4 { color: var(--color-earth); margin-bottom: .75rem; }
.room-amenities ul { display: grid; grid-template-columns: 1fr 1fr; gap: .3rem; }
.room-amenities li { font-size: .875rem; color: var(--color-slate); }
.room-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--color-sand); }
.room-actions { display: flex; gap: 1rem; }

/* ─── Experience Detail page ─────────────────────────────────── */
.expd-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3.5rem;
  align-items: start;
}
.expd-tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.expd-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--color-earth);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.expd-desc {
  font-size: 1rem;
  color: var(--color-earth-light);
  line-height: 1.85;
  margin-bottom: 0;
}
.expd-divider { border: none; border-top: 1px solid #eee; margin: 2rem 0; }
.expd-section-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-earth);
  margin-bottom: 1.25rem;
}

/* Programme list */
.expd-programme-list { display: flex; flex-direction: column; gap: 1.25rem; }
.expd-prog-item { display: flex; gap: 1rem; align-items: flex-start; }
.expd-prog-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-terracotta);
  margin-top: 2px;
}
.expd-prog-body p { font-size: .95rem; color: var(--color-earth-light); margin: 0; line-height: 1.6; }

/* Info row */
.expd-info-row { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.expd-info-item { display: flex; align-items: center; gap: .6rem; }
.expd-info-icon { font-size: 1.3rem; }
.expd-info-item div { display: flex; flex-direction: column; }
.expd-info-item strong { font-size: .8rem; text-transform: uppercase; letter-spacing: .5px; color: var(--color-earth); }
.expd-info-item span  { font-size: .9rem; color: var(--color-earth-light); }

/* Booking card */
.expd-booking-card {
  position: sticky;
  top: 100px;
  border: 1.5px solid #e0e0e0;
  border-radius: 16px;
  padding: 1.75rem;
  background: #fff;
  box-shadow: 0 4px 28px rgba(0,0,0,.08);
}
.expd-price-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1.25rem; }
.expd-price-from { font-size: .8rem; color: var(--color-earth-light); margin-right: 4px; }
.expd-price-amount { font-size: 1.65rem; font-weight: 700; color: var(--color-earth); font-family: var(--font-display); }
.expd-price-per { font-size: .82rem; color: var(--color-earth-light); }
.expd-enquire-btn { width: 100%; text-align: center; padding: .85rem; font-size: 1rem; border-radius: 10px; }
.expd-cancel-note { font-size: .78rem; color: var(--color-earth-light); text-align: center; margin-top: .6rem; }
.expd-card-details { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.expd-card-details li { font-size: .88rem; color: var(--color-earth-light); display: flex; align-items: center; gap: .5rem; }

@media (max-width: 960px) {
  .expd-layout { grid-template-columns: 1fr; }
  .expd-booking-card { position: static; }
}

/* Experiences Full (experiences.php) */
.experiences-list { display: flex; flex-direction: column; gap: 3rem; }
.exp-full-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 3rem;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
a.exp-full-image { display: block; overflow: hidden; }
.exp-full-image img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; transition: transform .5s ease; }
a.exp-full-image:hover img { transform: scale(1.04); }
.exp-full-content { padding: 2rem 2rem 2rem 0; }
.exp-full-content h2 a { color: inherit; text-decoration: none; transition: color .2s; }
.exp-full-content h2 a:hover { color: var(--color-terracotta); }

/* Experience Detail page */
.exp-detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; }
.exp-detail-main h2 { font-family: var(--font-display); font-size: 2rem; color: var(--color-earth); margin-bottom: 1rem; }
.exp-detail-desc { font-size: 1.02rem; color: var(--color-earth-light); line-height: 1.8; margin-bottom: 2rem; }
.mb-tags { margin-bottom: 1.25rem; }
.exp-detail-highlights { margin-top: 1.5rem; }
.exp-detail-highlights h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--color-earth); margin-bottom: .75rem; }
.exp-detail-highlights ul { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem .75rem; list-style: none; padding: 0; }
.exp-detail-highlights li { font-size: .93rem; color: var(--color-earth-light); }
@media (max-width: 900px) {
  .exp-detail-layout { grid-template-columns: 1fr; }
  .exp-detail-highlights ul { grid-template-columns: 1fr; }
}
.exp-tags { display: flex; gap: .5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.tag { padding: .25rem .75rem; border-radius: 20px; font-size: .75rem; font-weight: 500; }
.tag-success { background: #e8f5e9; color: #2e7d32; }
.tag-warning { background: #fff8e1; color: #f57f17; }
.tag-danger { background: #fce4ec; color: #c62828; }
.tag-duration { background: var(--color-sand-light); color: var(--color-earth); }
.exp-full-content h2 { font-family: var(--font-display); font-size: 1.8rem; color: var(--color-earth); margin-bottom: .75rem; }
.exp-highlights { margin: 1.5rem 0; }
.exp-highlights h4 { color: var(--color-earth); margin-bottom: .5rem; }
.exp-highlights ul { display: grid; grid-template-columns: 1fr 1fr; gap: .3rem; }
.exp-highlights li { font-size: .875rem; }
.exp-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 2rem; }
.exp-price .price-amount { font-size: 1.5rem; font-weight: 600; color: var(--color-terracotta); }
.exp-price .price-per { font-size: .85rem; color: #888; }

/* Gallery Masonry */
.gallery-filter { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.filter-btn {
  padding: .4rem 1.2rem;
  border: 1.5px solid var(--color-sand-dark);
  border-radius: 25px;
  font-size: .875rem;
  cursor: pointer;
  transition: all .25s;
  color: var(--color-earth);
  background: transparent;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--color-terracotta);
  border-color: var(--color-terracotta);
  color: #fff;
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item { position: relative; overflow: hidden; border-radius: 8px; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity .3s;
  color: #fff;
  font-size: .875rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Blog Layout */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; }
.blog-grid-main { display: flex; flex-direction: column; gap: 2rem; }
.blog-card-full { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.07); }
.blog-card-full .blog-card-image img { width: 100%; height: 250px; object-fit: cover; }
.blog-card-full .blog-card-body { padding: 1.75rem; }
.blog-category { background: var(--color-terracotta); color: #fff; padding: .15rem .75rem; border-radius: 20px; font-size: .75rem; }
.blog-meta { display: flex; align-items: center; gap: .5rem; margin-bottom: .75rem; font-size: .8rem; color: #888; }
.blog-card-full h2 { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-earth); margin-bottom: .75rem; }
.blog-card-full h2 a:hover { color: var(--color-terracotta); }
.blog-sidebar { }
.sidebar-widget { background: #fff; border-radius: 8px; padding: 1.5rem; margin-bottom: 1.5rem; box-shadow: 0 2px 12px rgba(0,0,0,.07); }
.sidebar-widget h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--color-earth); margin-bottom: 1rem; }
.category-list li { padding: .3rem 0; border-bottom: 1px solid var(--color-sand-light); }
.category-list a { color: var(--color-slate); font-size: .9rem; }
.category-list a:hover, .category-list a.active { color: var(--color-terracotta); }
.sidebar-cta { background: var(--color-earth) !important; color: #fff; text-align: center; }
.sidebar-cta h3 { color: var(--color-gold) !important; }
.recent-post { margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--color-sand-light); }
.recent-post a { font-size: .9rem; color: var(--color-earth); display: block; margin-bottom: .25rem; }
.recent-post small { color: #999; font-size: .75rem; }
.blog-post-content { max-width: 800px; }
.blog-post-content .lead { font-size: 1.15rem; color: var(--color-earth-light); margin-bottom: 2rem; }
.post-body { line-height: 1.8; }
.post-body h2, .post-body h3 { font-family: var(--font-display); color: var(--color-earth); margin: 2rem 0 1rem; }
.post-body p { margin-bottom: 1.25rem; }
.post-footer { display: flex; gap: 1rem; margin-top: 3rem; }

/* Blog meta hero */
.blog-meta-hero { display: flex; align-items: center; gap: .75rem; margin-top: .75rem; }

/* Contact Layout */
.contact-layout { display: grid; grid-template-columns: 1fr 400px; gap: 3rem; }
.contact-form-wrap h2 { font-family: var(--font-display); font-size: 1.8rem; color: var(--color-earth); margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .85rem; font-weight: 500; color: var(--color-earth); }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--color-sand-dark);
  border-radius: 6px;
  padding: .65rem .9rem;
  font-family: var(--font-body);
  font-size: .9rem;
  background: #fff;
  transition: border-color .25s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--color-terracotta);
}
.btn-full,
button.btn-full {
  width: 100%;
  text-align: center;
  display: block;
  box-sizing: border-box;
}
.alert { padding: 1rem 1.5rem; border-radius: 8px; margin-bottom: 1.5rem; }
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.alert-error { background: #fce4ec; color: #c62828; border: 1px solid #f8bbd0; }

/* Contact Info */
.contact-info-wrap h2 { font-family: var(--font-display); font-size: 1.8rem; color: var(--color-earth); margin-bottom: 1.5rem; }
.contact-info-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-info-item strong { display: block; color: var(--color-earth); margin-bottom: .2rem; }
.contact-info-item p { margin: 0; font-size: .9rem; }
.contact-info-item a { color: var(--color-terracotta); }
.contact-map { margin-top: 2rem; }
.contact-map h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--color-earth); margin-bottom: 1rem; }

/* ─── Room Gallery (Airbnb-style) ────────────────────────────── */
.rg-outer { background: #fff; padding: 24px 0 0; }
.rg-container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

.rg-wrap--full {
    display: flex;
    gap: 6px;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
}
.rg-wrap--full .rg-left {
    flex: 0 0 40%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 6px;
}
.rg-wrap--full .rg-right { flex: 1 1 0; }

.rg-wrap--partial {
    display: flex;
    gap: 6px;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
}
.rg-left--partial { flex: 0 0 35%; display: flex; flex-direction: column; gap: 6px; }
.rg-left--partial .rg-sm-cell { flex: 1 1 0; }
.rg-wrap--partial .rg-right { flex: 1 1 0; }

.rg-single { height: 420px; border-radius: 12px; overflow: hidden; cursor: pointer; }
.rg-single img { width: 100%; height: 100%; object-fit: cover; }

.rg-sm-cell { overflow: hidden; cursor: pointer; transition: opacity .2s; }
.rg-sm-cell:hover { opacity: .85; }
.rg-sm-cell img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rg-right { overflow: hidden; cursor: pointer; transition: opacity .2s; }
.rg-right:hover { opacity: .9; }
.rg-right img { width: 100%; height: 100%; object-fit: cover; display: block; }

.rg-btn-all {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: #fff;
    border: 1.5px solid #222;
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #222;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: background .15s;
    z-index: 2;
}
.rg-btn-all:hover { background: #f5f5f5; }

.rg-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.93);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.rg-modal-inner {
    position: relative;
    width: 100%;
    max-width: 920px;
    padding: 20px 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.rg-modal-img-wrap { width: 100%; display: flex; align-items: center; justify-content: center; }
.rg-modal-img-wrap img { max-width: 100%; max-height: 82vh; object-fit: contain; border-radius: 6px; }
.rg-modal-close {
    position: absolute;
    top: -8px;
    right: 16px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.8rem;
    cursor: pointer;
    line-height: 1;
    opacity: .8;
    transition: opacity .15s;
}
.rg-modal-close:hover { opacity: 1; }
.rg-modal-prev, .rg-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    font-size: 2.8rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
    line-height: 1;
}
.rg-modal-prev { left: 12px; }
.rg-modal-next { right: 12px; }
.rg-modal-prev:hover, .rg-modal-next:hover { background: rgba(255,255,255,.28); }
.rg-modal-counter { color: rgba(255,255,255,.65); font-size: 13px; margin-top: 12px; }

@media (max-width: 768px) {
    .rg-wrap--full { height: auto; flex-direction: column-reverse; }
    .rg-wrap--full .rg-left { flex: none; height: 150px; }
    .rg-wrap--full .rg-right { flex: none; height: 270px; }
    .rg-wrap--partial { height: auto; flex-direction: column-reverse; }
    .rg-left--partial { flex: none; height: 90px; flex-direction: row; }
    .rg-wrap--partial .rg-right { flex: none; height: 240px; }
    .rg-single { height: 260px; }
    .rg-modal-inner { padding: 20px 50px; }
    .rg-modal-prev { left: 4px; }
    .rg-modal-next { right: 4px; }
}

/* Room Detail */
.room-detail-layout { display: grid; grid-template-columns: 1fr 350px; gap: 3rem; }
.room-detail-main h2 { font-family: var(--font-display); font-size: 2.2rem; color: var(--color-earth); margin-bottom: 1rem; }
.room-detail-main .lead { font-size: 1.05rem; color: var(--color-earth-light); margin-bottom: 2rem; }
.room-specs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 2rem 0; }
.spec-card { background: var(--color-sand-light); border-radius: 8px; padding: 1rem; text-align: center; }
.spec-icon { font-size: 1.5rem; display: block; margin-bottom: .25rem; }
.spec-label { font-size: .7rem; color: #888; display: block; text-transform: uppercase; letter-spacing: .05em; }
.spec-value { font-weight: 600; color: var(--color-earth); display: block; }
.amenities-section { margin: 2rem 0; }
.amenities-section h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--color-earth); margin-bottom: 1rem; }
.amenities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; }
.amenity-item { font-size: .875rem; color: var(--color-slate); }
.booking-card {
  background: var(--color-earth);
  color: #fff;
  border-radius: 12px;
  padding: 2rem;
  position: sticky;
  top: 100px;
}
.booking-price { margin-bottom: 1.5rem; }
.booking-price .price-from { font-size: .8rem; opacity: .7; }
.booking-price .price-amount { font-size: 2rem; font-weight: 700; color: var(--color-gold); display: block; }
.booking-price .price-per { font-size: .85rem; opacity: .7; }
.booking-note { font-size: .8rem; opacity: .7; margin-top: 1rem; line-height: 1.8; }
.other-rooms { margin-top: 2rem; }
.other-rooms h4 { color: var(--color-earth); margin-bottom: 1rem; font-family: var(--font-display); }
.other-room-link { display: flex; gap: .75rem; align-items: center; padding: .75rem 0; border-bottom: 1px solid var(--color-sand); }
.other-room-link img { width: 60px; height: 45px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.other-room-link strong { display: block; font-size: .875rem; color: var(--color-earth); }
.other-room-link span { font-size: .75rem; color: #888; }

/* Responsive additions */
@media (max-width: 1024px) {
  .room-row { grid-template-columns: 1fr; }
  .room-row-reverse { direction: ltr; }
  .exp-full-card { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .room-detail-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .exp-highlights ul { grid-template-columns: 1fr; }
  .room-amenities ul { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .lang-switcher { font-size: .7rem; }
}

/* ============================================
   HOMEPAGE CSS FIX — Hero, Nav, Sections
   ============================================ */

/* ---- HERO FIXES ---- */
.hero {
  background-size: cover;
  background-position: center top;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.20) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.65) 100%);
  z-index: 1;
}
.hero .hero-content { position: relative; z-index: 2; }
.hero .hero-scroll  { z-index: 2; }

/* Hero content class aliases used by home.php */
.hero-tagline {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.80);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}
/* hero-subtitle reused for address label */
.hero .hero-subtitle {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

/* scroll chevrons */
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.hero-scroll span {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
  animation: scrollBounce 1.4s infinite;
}
.hero-scroll span:nth-child(2) { animation-delay: 0.15s; }
.hero-scroll span:nth-child(3) { animation-delay: 0.30s; }
@keyframes scrollBounce {
  0%, 100% { opacity: 0.3; transform: rotate(45deg) translateY(-3px); }
  50%       { opacity: 1;   transform: rotate(45deg) translateY(3px); }
}

/* btn-secondary (ghost/outline on dark bg) */
.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.55);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.3s ease, border-color 0.3s ease,
              background 0.3s ease;
}
.btn-secondary::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  transform: translateX(-100%) skewX(-15deg);
  pointer-events: none;
}
.btn-secondary:hover::after { animation: shimmer 0.65s ease forwards; }
.btn-secondary:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.90);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.22),
              inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-secondary:active { transform: translateY(-1px); }

/* ---- NAVIGATION FIXES ---- */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
  transition: transform 0.3s;
}
.nav-logo:hover img { transform: scale(1.03); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--color-gold);
  transition: width 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--color-white); }

/* scrolled header — make nav text dark */
.site-header.scrolled .nav-links a { color: var(--color-earth); }
.site-header.scrolled .nav-links a::after { background: var(--color-terracotta); }
.site-header.scrolled .hamburger span { background: var(--color-earth); }

/* Book / Contact nav button */
.btn-book {
  padding: 10px 22px !important;
  background: var(--color-terracotta) !important;
  color: var(--color-white) !important;
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  border-radius: 0;
  transition: background 0.3s !important;
}
.btn-book:hover { background: var(--color-terracotta-dark) !important; }
.btn-book::after { display: none !important; }

/* ---- UTILITY CLASSES ---- */
.section-padding { padding: var(--section-padding); }
.bg-light { background: var(--color-sand-light); }
.bg-dark  { background: var(--color-earth); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--color-earth);
  margin: 8px 0 14px;
}
.section-header p { color: var(--color-earth-light); font-size: 1rem; line-height: 1.7; }
.section-cta { text-align: center; margin-top: 48px; }

/* ---- FEATURES / HIGHLIGHTS ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature-item {
  text-align: center;
  padding: 48px 32px 44px;
  background: var(--color-white);
  position: relative;
  cursor: default;
  transition: background 0.4s ease, transform 0.4s cubic-bezier(0.34,1.3,0.64,1);
  animation-delay: var(--fi-delay, 0s);
}

/* vertical divider between items */
.feature-item + .feature-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--color-sand-dark);
  transition: opacity 0.3s;
}
.feature-item:hover + .feature-item::before,
.feature-item:hover::before { opacity: 0; }

.feature-item:hover {
  background: var(--color-cream);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(92,64,51,0.09);
  z-index: 1;
}

/* Terracotta top-accent bar */
.feature-accent {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%) scaleX(0);
  height: 3px;
  width: 56px;
  background: linear-gradient(90deg, var(--color-terracotta), var(--color-gold));
  border-radius: 0 0 3px 3px;
  transition: transform 0.4s cubic-bezier(0.34,1.3,0.64,1);
}
.feature-item:hover .feature-accent { transform: translateX(-50%) scaleX(1); }

/* SVG icon wrapper */
.feature-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--color-sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.4s ease;
}
.feature-icon-wrap svg {
  width: 34px;
  height: 34px;
  color: var(--color-earth-light);
  transition: color 0.35s ease, stroke-width 0.35s ease;
}
.feature-item:hover .feature-icon-wrap {
  background: var(--color-terracotta);
  transform: rotate(-6deg) scale(1.12);
  box-shadow: 0 8px 24px rgba(196,102,58,0.30);
}
.feature-item:hover .feature-icon-wrap svg {
  color: #fff;
  stroke-width: 2;
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 400;
  color: var(--color-earth);
  margin-bottom: 10px;
  transition: color 0.3s;
}
.feature-item:hover h3 { color: var(--color-terracotta); }

.feature-item p {
  font-size: 0.88rem;
  color: var(--color-earth-light);
  line-height: 1.7;
  max-width: 200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item + .feature-item::before { top: 0; bottom: 0; }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-item + .feature-item::before { display: none; }
  .feature-item { padding: 36px 24px; }
}

/* ---- ROOMS CAROUSEL (homepage) ---- */
.rc-outer {
  position: relative;
  margin: 0 -8px; /* let buttons peek outside column edges */
}
.rooms-preview .rooms-grid {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
  padding: 8px 0 16px; /* room for hover shadow */
}
.rooms-preview .rooms-grid::-webkit-scrollbar { display: none; }
.rooms-preview .rooms-grid.rc-grabbing { cursor: grabbing; scroll-behavior: auto; }
.rooms-preview .room-card {
  flex: 0 0 calc(33.333% - 20px);
  scroll-snap-align: start;
  min-width: 260px;
}

/* Nav buttons */
.rc-nav {
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1.5px solid rgba(92,64,51,.2);
  box-shadow: 0 2px 14px rgba(0,0,0,.13);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-earth);
  transition: background .2s, color .2s, opacity .2s, box-shadow .2s;
  z-index: 3;
}
.rc-nav:hover {
  background: var(--color-terracotta);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(180,80,50,.3);
}
.rc-nav:disabled { opacity: .25; pointer-events: none; }
.rc-prev { left: -22px; }
.rc-next { right: -22px; }

/* Dots */
.rc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.rc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(92,64,51,.22);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.rc-dot.active {
  background: var(--color-terracotta);
  transform: scale(1.4);
}

@media (max-width: 1024px) {
  .rooms-preview .room-card { flex: 0 0 calc(50% - 15px); }
}
@media (max-width: 640px) {
  .rooms-preview .room-card { flex: 0 0 86%; }
  .rc-prev { left: -10px; }
  .rc-next { right: -10px; }
}

/* ---- ROOM CARDS (homepage preview) ---- */
.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.room-card:hover .room-card-image img { transform: scale(1.05); }

.room-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 10px 0 14px;
  font-size: 0.85rem;
  color: var(--color-earth-light);
}
.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-sand);
}
.room-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-from   { font-size: 0.72rem; color: var(--color-earth-light); }
.price-amount { font-size: 1.3rem; color: var(--color-terracotta); font-weight: 500; }
.price-per    { font-size: 0.72rem; color: var(--color-earth-light); }

/* btn-outline on light (sand/white) backgrounds */
.rooms-preview .btn-outline,
.blog-preview .btn-outline,
.section-padding.bg-light .btn-outline {
  color: var(--color-earth);
  border-color: rgba(92,64,51,0.45);
  box-shadow: none;
}
.rooms-preview .btn-outline:hover,
.blog-preview .btn-outline:hover,
.section-padding.bg-light .btn-outline:hover {
  background: linear-gradient(135deg, #6B4F42 0%, #5C4033 100%);
  border-color: transparent;
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(92,64,51,0.35);
}

/* ---- EXPERIENCES CAROUSEL (homepage) ---- */
.experiences-preview .experiences-grid {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
  padding: 8px 0 16px;
}
.experiences-preview .experiences-grid::-webkit-scrollbar { display: none; }
.experiences-preview .experiences-grid.rc-grabbing { cursor: grabbing; scroll-behavior: auto; }
.experiences-preview .exp-card {
  flex: 0 0 calc(33.333% - 20px);
  scroll-snap-align: start;
  min-width: 240px;
}
@media (max-width: 1024px) {
  .experiences-preview .exp-card { flex: 0 0 calc(50% - 15px); }
}
@media (max-width: 640px) {
  .experiences-preview .exp-card { flex: 0 0 86%; }
}

/* ---- EXPERIENCES CARDS (homepage preview) ---- */
.exp-card {
  background: var(--color-white);
  overflow: hidden;
  border-radius: 4px;
  transition: transform 0.35s, box-shadow 0.35s;
}
.exp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 45px rgba(0,0,0,0.10);
}
.exp-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.exp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.exp-card:hover .exp-card-image img { transform: scale(1.05); }
.exp-difficulty {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
}
.exp-difficulty span {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.exp-card-body { padding: 20px 22px; }
.exp-card-body h3 { font-size: 1.22rem; margin-bottom: 8px; }
.exp-card-body > p { font-size: 0.88rem; color: var(--color-earth-light); margin-bottom: 12px; }
.exp-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--color-earth-light);
  margin-bottom: 16px;
}

/* ---- TESTIMONIALS DARK BG ---- */
.testimonials.bg-dark .section-header h2 { color: var(--color-sand-light); }
.testimonials.bg-dark .section-header p  { color: rgba(232,223,208,0.7); }
.testimonials.bg-dark .testimonial-card  { background: rgba(255,255,255,0.06); }
.testimonials.bg-dark .testimonial-card blockquote { color: var(--color-sand-light); }
.testimonials.bg-dark .testimonial-author { color: var(--color-gold); }
.testimonials.bg-dark .testimonial-author span,
.testimonials.bg-dark .testimonial-author small { color: rgba(232,223,208,0.55); }

/* ---- BLOG GRID (homepage preview) ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--color-white);
  overflow: hidden;
  border-radius: 4px;
  transition: transform 0.35s, box-shadow 0.35s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}
.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 22px 24px; }
.blog-card-body .blog-category { margin-bottom: 10px; display: inline-block; }
.blog-card-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.blog-card-body h3 a:hover { color: var(--color-terracotta); }
.blog-card-body > p { font-size: 0.88rem; color: var(--color-earth-light); margin-bottom: 14px; }
.blog-card-body .blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.blog-card-body .blog-meta span { color: var(--color-earth-light); }
.blog-card-body .blog-meta a { color: var(--color-terracotta); font-weight: 500; }

/* ---- CTA SECTION (with inline background-image) ---- */
.cta-section {
  background-size: cover;
  background-position: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(92,64,51,0.88) 0%,
    rgba(59,59,59,0.78) 100%);
  z-index: 0;
}
.cta-section .cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-white);
  margin-bottom: 16px;
}
.cta-content p { color: rgba(255,255,255,0.78); margin-bottom: 32px; font-size: 1rem; }

/* ---- FOOTER LAYOUT ---- */
.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  /* .site-footer already applies 80px top padding — don't double it */
  padding: 0 40px 50px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
/* Prevent global img { height: auto } from overriding the logo height */
.footer-brand img {
  height: 70px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(232,223,208,0.60);
  max-width: 260px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-brand .footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}
.footer-brand .footer-social a {
  color: rgba(232,223,208,0.55);
  transition: color 0.3s;
}
.footer-brand .footer-social a:hover { color: var(--color-terracotta); }
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-sand-light);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(232,223,208,0.60);
}
.footer-links a:hover { color: var(--color-terracotta); }
.footer-contact p {
  font-size: 0.88rem;
  color: rgba(232,223,208,0.60);
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer-contact a { color: rgba(232,223,208,0.60); }
.footer-contact a:hover { color: var(--color-terracotta); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 40px;
  font-size: 0.78rem;
  color: rgba(232,223,208,0.35);
  text-align: left;
}

/* ---- MOBILE NAV (hamburger toggles .nav-links) ---- */
@media (max-width: 900px) {
  .nav-container { padding: 0 24px; }
  .hamburger { display: flex; position: relative; z-index: 1010; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--color-earth);
    z-index: 1005;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--color-sand-light);
    letter-spacing: 3px;
  }
  .nav-links a.active,
  .nav-links a:hover { color: var(--color-terracotta); }
  .nav-links a::after { display: none; }
  .btn-book {
    font-size: 1rem !important;
    padding: 12px 32px !important;
    background: var(--color-terracotta) !important;
    margin-top: 8px;
  }
  .lang-switcher { margin-top: 12px; }
  .lang-switcher a { color: rgba(255,255,255,0.65); font-size: 0.85rem; }
  .site-header.scrolled .nav-links a { color: var(--color-sand-light); }
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: 32px; padding: 50px 24px 32px; }
  .footer-bottom { padding: 16px 24px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary { width: 260px; text-align: center; }
}

@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .experiences-grid { grid-template-columns: 1fr; }
}

/* ============================================
   TESTIMONIALS CAROUSEL
   ============================================ */
.testimonials-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 0 56px;
  /* let arrows sit outside the overflow clip */
  margin: 0 -8px;
}

.tc-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: grab;
  user-select: none;
  padding: 8px 8px 4px;
}
.tc-track.dragging {
  cursor: grabbing;
  transition: none;
}

/* Each slide: show 3 on desktop, 2 on tablet, 1 on mobile */
.tc-slide {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
}

/* Card styling overrides for carousel */
.tc-slide.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 4px;
  padding: 36px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
              background 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(4px);
}
.tc-slide.testimonial-card:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(201,169,110,0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
.tc-slide .testimonial-stars {
  color: var(--color-gold);
  font-size: 1rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
}
.tc-slide blockquote {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--color-sand-light);
  line-height: 1.75;
  margin-bottom: 24px;
}
.tc-slide .testimonial-author strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 4px;
}
.tc-slide .testimonial-author span {
  font-size: 0.78rem;
  color: rgba(232,223,208,0.60);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.tc-slide .testimonial-author small {
  display: block;
  font-size: 0.72rem;
  color: rgba(232,223,208,0.40);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Arrows */
.tc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 28px));
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.80);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s,
              transform 0.25s, color 0.25s;
  z-index: 10;
  backdrop-filter: blur(4px);
}
.tc-arrow:hover {
  background: var(--color-terracotta);
  border-color: var(--color-terracotta);
  color: #fff;
  transform: translateY(calc(-50% - 28px)) scale(1.10);
}
.tc-prev { left: 0; }
.tc-next { right: 0; }
.tc-arrow:disabled {
  opacity: 0.25;
  pointer-events: none;
}

/* Dots */
.tc-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.tc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, width 0.3s;
  padding: 0;
}
.tc-dot.active {
  background: var(--color-gold);
  transform: scale(1.25);
  width: 22px;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
  .tc-slide { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 640px) {
  .tc-slide { flex: 0 0 100%; }
  .tc-arrow { display: none; }
}


/* ---- ROOM CARDS — dynamic redesign ---- */

/* Image link wrapper */
.room-card-image {
  display: block;
  text-decoration: none;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-sand);
}

/* Hover overlay */
.room-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(92,64,51,0) 40%,
    rgba(92,64,51,0.78) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  opacity: 0;
  transition: opacity 0.38s ease;
  z-index: 2;
}
.room-card:hover .room-card-overlay { opacity: 1; }

.room-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  transform: translateY(10px);
  transition: transform 0.38s ease;
}
.room-card:hover .room-card-cta { transform: translateY(0); }
.room-card-cta svg { transition: transform 0.3s ease; }
.room-card:hover .room-card-cta svg { transform: translateX(4px); }

/* Price badge (bottom-left of image) */
.room-card-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: baseline;
  gap: 3px;
  background: rgba(255,255,255,0.95);
  border-radius: 3px;
  padding: 6px 12px;
  backdrop-filter: blur(6px);
  z-index: 3;
  transform: translateY(4px);
  transition: transform 0.38s ease, opacity 0.38s ease;
}
.room-card:hover .room-card-badge {
  transform: translateY(-4px);
}
.room-card-badge .price-from {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-earth-light);
}
.room-card-badge .price-amount {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-terracotta);
  line-height: 1;
}
.room-card-badge .price-per {
  font-size: 0.62rem;
  color: var(--color-earth-light);
  letter-spacing: 1px;
}

/* Card body */
.room-card-body { padding: 24px 24px 28px; }

/* Meta row: capacity, size */
.room-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.room-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-earth-light);
}
.room-card-meta svg { flex-shrink: 0; opacity: 0.65; }

/* Title and description */
.room-card-body h3 {
  font-size: 1.35rem;
  margin: 0 0 8px;
  color: var(--color-earth);
  line-height: 1.25;
}
.room-card-body p {
  font-size: 0.9rem;
  color: var(--color-earth-light);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* Bottom text link */
.room-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-terracotta);
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.25s ease, gap 0.25s ease;
}
.room-card-link:hover {
  border-color: var(--color-terracotta);
  gap: 12px;
}
.room-card-link svg { transition: transform 0.25s ease; }
.room-card-link:hover svg { transform: translateX(3px); }

/* Responsive */
@media (max-width: 900px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .rooms-grid { grid-template-columns: 1fr; }
  .room-card-body { padding: 20px 20px 24px; }
}

/* ---- TEAM SECTION ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.team-card {
  background: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(92,64,51,0.07);
  transition: transform 0.4s cubic-bezier(0.34,1.2,0.64,1),
              box-shadow 0.4s ease;
}
.value-card.reveal {
  transition: opacity 0.8s ease var(--vc-delay, 0s),
              transform 0.8s ease var(--vc-delay, 0s);
}
.team-card.reveal {
  transition: opacity 0.8s ease var(--tc-delay, 0s),
              transform 0.8s ease var(--tc-delay, 0s);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(92,64,51,0.16);
}

/* Photo area */
.team-card-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-sand);
}
.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.55s ease;
}
.team-card:hover .team-card-photo img {
  transform: scale(1.06);
}

/* Hover overlay gradient */
.team-card-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(92,64,51,0.72) 100%
  );
  opacity: 0;
  transition: opacity 0.38s ease;
  pointer-events: none;
}
.team-card:hover .team-card-photo::after {
  opacity: 1;
}

/* Social / contact button inside photo */
.team-card-social {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  opacity: 0;
  transition: transform 0.38s ease, opacity 0.38s ease;
  z-index: 2;
}
.team-card:hover .team-card-social {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.team-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--color-terracotta);
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.team-social-btn:hover {
  background: var(--color-terracotta);
  color: #fff;
  transform: scale(1.12);
}

/* Card body */
.team-card-body {
  padding: 18px 20px 22px;
  text-align: center;
  border-top: 2px solid transparent;
  transition: border-color 0.38s ease;
}
.team-card:hover .team-card-body {
  border-color: var(--color-terracotta);
}
.team-card-body h3 {
  font-size: 1.1rem;
  margin: 0 0 5px;
  color: var(--color-earth);
  letter-spacing: 0.5px;
}
.team-role {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-terracotta);
}

/* Responsive */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 380px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* Values grid — fix separators at smaller breakpoints */
@media (max-width: 768px) {
  .value-card + .value-card::before { display: none; }
  .values-grid { gap: 16px; }
  .value-card { padding: 40px 28px 36px; border-radius: 4px; box-shadow: 0 2px 12px rgba(92,64,51,0.07); }
}
@media (max-width: 480px) {
  .value-card { padding: 36px 24px 32px; }
}

/* ---- Experience checkboxes (contact form) ---- */
.exp-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 8px;
}
.exp-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px 14px;
  border: 1.5px solid var(--color-sand-dark);
  border-radius: 3px;
  background: var(--color-white);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  user-select: none;
}
.exp-checkbox-label:hover {
  border-color: var(--color-terracotta);
  background: rgba(196,102,58,0.04);
}
.exp-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.exp-checkbox-box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--color-sand-dark);
  border-radius: 3px;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.exp-checkbox-box svg { opacity: 0; color: #fff; transition: opacity 0.15s ease; }

.exp-checkbox-label input:checked ~ .exp-checkbox-box {
  background: var(--color-terracotta);
  border-color: var(--color-terracotta);
}
.exp-checkbox-label input:checked ~ .exp-checkbox-box svg { opacity: 1; }
.exp-checkbox-label input:checked ~ .exp-checkbox-text { color: var(--color-earth); font-weight: 500; }

.exp-checkbox-label:has(input:checked) {
  border-color: var(--color-terracotta);
  background: rgba(196,102,58,0.06);
  box-shadow: 0 0 0 3px rgba(196,102,58,0.10);
}

.exp-checkbox-text {
  font-size: 0.85rem;
  color: var(--color-earth-light);
  line-height: 1.3;
  transition: color 0.2s ease;
}

@media (max-width: 540px) {
  .exp-checkboxes { grid-template-columns: 1fr; }
}

/* ---- Availability status (contact form) ---- */
.availability-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 3px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.availability-status.available {
  background: rgba(76,175,80,0.10);
  border: 1.5px solid rgba(76,175,80,0.40);
  color: #2e7d32;
}
.availability-status.unavailable {
  background: rgba(244,67,54,0.08);
  border: 1.5px solid rgba(244,67,54,0.35);
  color: #c62828;
}
.availability-status.checking {
  background: rgba(201,169,110,0.10);
  border: 1.5px solid rgba(201,169,110,0.30);
  color: var(--color-earth-light);
}
.avail-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(92,64,51,0.25);
  border-top-color: var(--color-terracotta);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   MOBILE — Comprehensive responsive fixes
   Covers: inputs, touch targets, hero, nav, cards, map, forms
   ============================================================ */

/* ── Prevent iOS Safari from zooming on focus (inputs < 16px) ─ */
@media (max-width: 767px) {
  .form-group input,
  .form-group select,
  .form-group textarea,
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  input[type="search"],
  select,
  textarea {
    font-size: 16px !important; /* iOS zooms when < 16px */
  }
}

/* ── Base mobile container & spacing ─────────────────────────── */
@media (max-width: 480px) {
  :root { --section-padding: 56px 0; }
  .container { padding: 0 16px; }
  .section-header { margin-bottom: 36px; }
}

/* ── Hero ────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero { min-height: 100svh; } /* use small viewport height on mobile browsers */
  .hero-title { font-size: clamp(1.8rem, 9vw, 2.6rem); }
  .hero-content { padding: 0 20px; }
  .hero-cta { gap: 12px; }
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary { width: 100%; max-width: 280px; padding: 15px 24px; }

  .page-hero { height: 38vh; min-height: 240px; }
  .page-hero-content h1 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
}

/* ── Mobile navigation ───────────────────────────────────────── */
@media (max-width: 900px) {
  /* Close button inside the full-screen menu */
  .mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 8px;
    z-index: 1010;
  }
  .mobile-nav-close:hover { color: var(--color-terracotta); }

  /* Larger tap targets for nav links */
  .nav-links a {
    padding: 8px 16px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Language switcher visible inside mobile nav */
  .nav-links .lang-switcher {
    display: flex;
    gap: 12px;
    margin-top: 16px;
  }
  .nav-links .lang-switcher a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
    padding: 6px 10px;
    min-height: auto;
  }
  .nav-links .lang-switcher a.lang-active { color: var(--color-gold); }
  .nav-links .lang-switcher span { color: rgba(255,255,255,0.2); }
}

/* ── Touch target minimum 44 × 44 px ────────────────────────── */
@media (max-width: 767px) {
  .btn-primary,
  .btn-secondary,
  .btn-outline,
  .btn-dark,
  .btn-book,
  button[type="submit"] {
    min-height: 44px;
    padding: 12px 24px;
  }
  .hamburger {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ── Features strip ─────────────────────────────────────────── */
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-item { padding: 32px 16px 28px; }
  .feature-item + .feature-item::before { display: none; }
}

/* ── Rooms & Experiences cards ───────────────────────────────── */
@media (max-width: 480px) {
  .room-card-img,
  .exp-card-img { height: 220px; }

  .room-detail-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .booking-card { position: static; } /* remove sticky on mobile */
  .room-specs-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
}

/* ── Contact form ────────────────────────────────────────────── */
@media (max-width: 767px) {
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; } /* already set above but explicit */
  .contact-form-wrap h2,
  .contact-info-wrap h2 { font-size: 1.5rem; }
  .exp-checkboxes { grid-template-columns: 1fr; }
}

/* ── Map embed ───────────────────────────────────────────────── */
@media (max-width: 767px) {
  .contact-map iframe,
  iframe[src*="google.com/maps"],
  iframe[src*="maps.google"] {
    width: 100% !important;
    height: 220px !important;
  }
}

/* ── Gallery ─────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
}

/* ── Room gallery (Airbnb layout) ────────────────────────────── */
@media (max-width: 480px) {
  .rg-wrap--full { height: auto; }
  .rg-wrap--full .rg-left { height: 120px; }
  .rg-wrap--full .rg-right { height: 220px; }
  .rg-single { height: 220px; }
  .rg-modal-inner { padding: 12px 44px; }
}

/* ── Blog ────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .blog-card-img { height: 200px; }
  .blog-layout { grid-template-columns: 1fr; }
}

/* ── Footer ──────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .footer-content { padding: 40px 16px 28px; gap: 28px; }
  .footer-bottom { padding: 14px 16px; text-align: center; }
  .footer-brand p { font-size: 0.85rem; }
}

/* ── WhatsApp float ──────────────────────────────────────────── */
@media (max-width: 767px) {
  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 48px;
    height: 48px;
  }
}

/* ── Admin panel — basic table overflow fix ──────────────────── */
@media (max-width: 767px) {
  .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
