/* ==========================================================================
   KOTLI THE PARADISE - BOUTIQUE HIMALAYAN HOMESTAY
   Luxury Editorial Design System
   Target Subdomain: kotli.bkbtechies.com
   Zero emojis. Zero emdashes. 100% Mobile Optimized.
   ========================================================================== */

:root {
  /* Brand Palette - Deep Pine & Champagne Brass */
  --pine-deep: #051F11;
  --pine-primary: #0C3B24;
  --pine-rich: #144B30;
  --pine-light: #1E6342;
  
  --gold-accent: #C5A059;
  --gold-light: #DFBA73;
  --gold-muted: rgba(197, 160, 89, 0.25);
  
  --cream-bg: #FBF9F5;
  --cream-subtle: #F3EFE7;
  --cream-card: #FFFFFF;
  
  --text-dark: #131E16;
  --text-body: #324338;
  --text-muted: #5A6D61;
  --text-inverse: #F9F7F2;
  
  /* Fonts */
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  
  /* Radii & Shadows */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --shadow-subtle: 0 4px 20px rgba(6, 38, 21, 0.05);
  --shadow-luxury: 0 12px 36px rgba(6, 38, 21, 0.09);
  --shadow-deep: 0 20px 50px rgba(5, 31, 17, 0.25);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream-bg);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

/* Typography Defaults */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 2rem); }
h4 { font-size: 1.15rem; }

p {
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Luxury Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.text-gold { color: var(--gold-accent); }
.text-pine { color: var(--pine-primary); }
.text-muted { color: var(--text-muted); }
.text-white { color: #FFFFFF; }
.text-center { text-align: center; }

.section-padding {
  padding: 5.5rem 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-accent);
  margin-bottom: 0.75rem;
}

.eyebrow-dark {
  color: var(--pine-rich);
}

/* Responsive Hide Utility */
.hide-mobile {
  display: block;
}

/* Luxury Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.88rem 1.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-sizing: border-box;
}

.btn-gold {
  background: var(--gold-accent);
  color: var(--pine-deep);
  border-color: var(--gold-accent);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.45);
}

.btn-pine {
  background: var(--pine-primary);
  color: var(--cream-bg);
  border-color: var(--pine-primary);
}

.btn-pine:hover {
  background: var(--pine-deep);
  border-color: var(--gold-accent);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-outline-pine {
  background: transparent;
  color: var(--pine-primary);
  border-color: var(--pine-primary);
}

.btn-outline-pine:hover {
  background: var(--pine-primary);
  color: #FFFFFF;
}

/* WhatsApp Brand Button */
.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
}

.btn-whatsapp:hover {
  background: #20BA5A;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

/* ==========================================================================
   NAVIGATION BAR (Frosted Glass Luxury Header)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 1.1rem 0;
  box-sizing: border-box;
}

.site-header.scrolled {
  background: rgba(5, 31, 17, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo-img {
  height: 44px;
  width: auto;
  transition: var(--transition-fast);
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  color: var(--gold-accent);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-accent);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #FFFFFF;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--gold-accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: var(--radius-sm);
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #FFFFFF;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.mobile-nav-toggle svg {
  width: 24px;
  height: 24px;
  stroke: #FFFFFF;
}

/* Mobile Drawer (Uses Transform to prevent horizontal scroll) */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  background: var(--pine-deep);
  z-index: 1001;
  padding: 1.5rem 1.5rem calc(2.5rem + env(safe-area-inset-bottom, 25px));
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
  border-left: 1px solid rgba(197, 160, 89, 0.2);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
}

.mobile-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  padding-bottom: 1rem;
}

.drawer-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.drawer-link {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-link:hover,
.drawer-link.active {
  color: var(--gold-accent);
}

.drawer-footer {
  border-top: 1px solid rgba(197, 160, 89, 0.15);
  padding-top: 1.5rem;
  margin-top: auto;
  flex-shrink: 0;
}

/* ==========================================================================
   HOMEPAGE HERO ("The Himalayan Sanctuary")
   ========================================================================== */
.hero-sanctuary {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7.5rem 0 4.5rem;
  background: var(--pine-deep);
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.hero-bg-frame {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 24s infinite alternate ease-in-out;
  transform-origin: center center;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 38, 21, 0.72) 0%,
    rgba(6, 38, 21, 0.40) 35%,
    rgba(6, 38, 21, 0.58) 70%,
    rgba(6, 38, 21, 0.94) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.hero-crest-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(12, 59, 36, 0.65);
  border: 1px solid rgba(197, 160, 89, 0.35);
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  max-width: 100%;
  box-sizing: border-box;
}

.hero-title {
  color: #FFFFFF;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  word-break: break-word;
}

.hero-title em {
  display: block;
  font-style: italic;
  color: #FFFFFF;
  font-weight: 400;
}

.hero-subtitle {
  font-size: clamp(0.98rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
  margin: 0 auto 2.2rem;
  font-weight: 300;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Floating Booking Bar */
.hero-booking-bar {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.4rem;
  box-shadow: var(--shadow-deep);
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
  color: var(--text-dark);
  text-align: left;
  box-sizing: border-box;
}

.booking-bar-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 1.2rem;
  align-items: flex-end;
  width: 100%;
  box-sizing: border-box;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  width: 100%;
  box-sizing: border-box;
}

.booking-field label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.booking-field input,
.booking-field textarea {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-dark);
  border: 1px solid rgba(12, 59, 36, 0.2);
  background: #FAF8F4;
  padding: 0.65rem 0.8rem;
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition-fast);
  box-sizing: border-box;
  width: 100%;
}

select,
.booking-field select {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--pine-deep);
  border: 1px solid rgba(12, 59, 36, 0.25);
  background-color: #FAF8F4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C5A059' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 1.05rem;
  padding: 0.65rem 2.2rem 0.65rem 0.8rem !important;
  border-radius: var(--radius-sm);
  outline: none;
  cursor: pointer;
  transition: var(--transition-fast);
  box-sizing: border-box;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

select:focus,
.booking-field select:focus,
.booking-field input:focus,
.booking-field textarea:focus {
  border-color: var(--gold-accent);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.22);
  outline: none;
}

select option {
  background: #FFFFFF;
  color: var(--pine-deep);
  font-size: 0.92rem;
  padding: 0.75rem;
}

.req-star {
  color: #c93b2b;
  font-weight: 700;
  margin-left: 0.2rem;
}

.form-footnote {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* Vitals Ribbon */
.vitals-ribbon {
  background: var(--pine-deep);
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  padding: 1.25rem 0;
  color: rgba(255, 255, 255, 0.85);
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.vitals-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vital-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.vital-item svg {
  color: var(--gold-accent);
  flex-shrink: 0;
}

/* ==========================================================================
   COTTAGES SHOWCASE
   ========================================================================== */
.cottages-section {
  background: var(--cream-bg);
}

.section-header {
  max-width: 680px;
  margin: 0 auto 3.2rem;
  text-align: center;
}

.section-title {
  margin-bottom: 0.8rem;
}

.cottage-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.cottage-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(12, 59, 36, 0.08);
  box-shadow: var(--shadow-luxury);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.cottage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-deep);
  border-color: var(--gold-accent);
}

.cottage-img-wrap {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.cottage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cottage-card:hover .cottage-img {
  transform: scale(1.05);
}

.cottage-badge-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--pine-deep);
  color: var(--gold-accent);
  padding: 0.35rem 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 1px solid rgba(197, 160, 89, 0.35);
}

.cottage-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cottage-title {
  margin-bottom: 0.3rem;
}

.cottage-tagline {
  font-style: italic;
  color: var(--text-muted);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

.cottage-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(12, 59, 36, 0.08);
}

.cottage-spec {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  color: var(--pine-rich);
  font-weight: 500;
}

.cottage-features-list {
  list-style: none;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.cottage-features-list li {
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 0.45rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.cottage-features-list li::before {
  content: "·";
  color: var(--gold-accent);
  font-size: 1.2rem;
  line-height: 1;
}

.cottage-footer-actions {
  display: flex;
  gap: 0.8rem;
}

/* ==========================================================================
   EXPERIENCES SECTION
   ========================================================================== */
.experiences-section {
  background: var(--cream-subtle);
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.experience-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(12, 59, 36, 0.08);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.experience-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-accent);
  box-shadow: var(--shadow-luxury);
}

.experience-img-wrap {
  height: 220px;
  overflow: hidden;
}

.experience-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.experience-card:hover .experience-img {
  transform: scale(1.06);
}

.experience-body {
  padding: 1.5rem;
}

.experience-title {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

/* ==========================================================================
   REVIEWS & SUPERHOST STATUS
   ========================================================================== */
.reviews-section {
  background: var(--pine-deep);
  color: #FFFFFF;
}

.reviews-section h2 {
  color: #FFFFFF;
}

.superhost-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(12, 59, 36, 0.7);
  border: 1px solid rgba(197, 160, 89, 0.35);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
  max-width: 100%;
  box-sizing: border-box;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.25rem;
}

.review-author {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-accent);
  font-weight: 600;
}

/* ==========================================================================
   GALLERY LIGHTBOX
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  height: 260px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(12, 59, 36, 0.08);
}

.gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 31, 17, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-thumb {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.94);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  box-sizing: border-box;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-img {
  max-width: 92vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 2010;
  line-height: 1;
}

/* ==========================================================================
   LOCATION & CONTACT
   ========================================================================== */
.location-section {
  background: var(--cream-bg);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.route-distances {
  list-style: none;
  margin: 1.5rem 0;
}

.route-distances li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(12, 59, 36, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.route-distances strong {
  color: var(--pine-primary);
}

.map-container {
  height: 420px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.3);
  box-shadow: var(--shadow-luxury);
  width: 100%;
  box-sizing: border-box;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--pine-deep);
  color: rgba(255, 255, 255, 0.8);
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  max-width: 320px;
  margin-top: 0.8rem;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--gold-accent);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a:hover {
  color: var(--gold-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25D366;
  color: #FFFFFF;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* Modal Styling */
.modal-backdrop {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 31, 17, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  box-sizing: border-box;
}

.modal-backdrop.active {
  display: flex;
}

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 2.2rem 2rem;
  position: relative;
  box-shadow: var(--shadow-deep);
  border: 1px solid rgba(197, 160, 89, 0.3);
  box-sizing: border-box;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: var(--radius-full);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-dark);
  line-height: 1;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVENESS (320px - 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
  .booking-bar-form {
    grid-template-columns: repeat(2, 1fr);
  }
  .cottage-cards-grid {
    grid-template-columns: 1fr;
  }
  .experiences-grid,
  .reviews-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
  
  .container {
    padding: 0 1.25rem;
    max-width: 100%;
  }

  .site-header {
    padding: 0.75rem 0;
  }

  .brand-logo-wrap {
    gap: 0.6rem;
    max-width: calc(100% - 56px);
  }

  .brand-logo-img {
    height: 36px;
    flex-shrink: 0;
  }

  .brand-title {
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-sub {
    font-size: 0.54rem;
    letter-spacing: 0.18em;
  }
  
  .nav-links, .nav-actions .btn-desk {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: flex;
  }
  
  .hero-sanctuary {
    padding: 7rem 0 4rem;
    min-height: auto;
  }

  .hero-crest-badge {
    padding: 0.35rem 0.85rem;
    max-width: 95%;
  }

  .hero-crest-badge .eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    margin-bottom: 0;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    padding: 0 0.5rem;
    margin-bottom: 2rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 2.2rem;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-booking-bar {
    padding: 1.1rem 1rem;
    width: 100%;
  }

  .booking-bar-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
  }

  .booking-bar-form .booking-field select,
  .booking-bar-form .booking-field input,
  .booking-bar-form .btn {
    width: 100%;
    height: 46px;
    font-size: 0.92rem;
  }

  .vitals-ribbon {
    padding: 1rem 0;
  }

  .vitals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 0.6rem;
    padding: 0 0.25rem;
    text-align: left;
  }

  .vital-item {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    gap: 0.35rem;
  }

  .vital-item svg {
    width: 15px;
    height: 15px;
  }

  .section-padding {
    padding: 3.8rem 0;
  }

  .cottage-cards-grid {
    gap: 2rem;
  }

  .experiences-grid,
  .reviews-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  /* Modal Optimization on Mobile */
  .modal-card {
    padding: 1.75rem 1.25rem;
    max-height: 92vh;
  }

  .modal-dates-grid {
    grid-template-columns: 1fr !important;
    gap: 0.8rem !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .brand-logo-img {
    height: 32px;
  }

  .brand-title {
    font-size: 0.95rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.15;
  }

  .vitals-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .cottage-body {
    padding: 1.5rem 1.1rem;
  }

  .cottage-specs {
    gap: 0.5rem 0.75rem;
  }

  .cottage-footer-actions {
    flex-direction: column;
    gap: 0.6rem;
  }

  .cottage-footer-actions .btn {
    width: 100%;
  }

  .modal-card {
    padding: 1.5rem 1rem;
  }

  .lightbox-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
  }
}
/* ==========================================================================
   RESPONSIVE GRIDS FOR ALL PAGES (MOBILE OPTIMIZED)
   ========================================================================== */
.split-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.specs-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  font-size: 0.9rem;
  width: 100%;
  box-sizing: border-box;
}

.mosaic-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.amenities-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.routes-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  width: 100%;
  box-sizing: border-box;
}

.dates-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .amenities-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .split-grid-2 {
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .split-grid-2 {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    width: 100% !important;
  }
  
  .split-grid-2 > * {
    width: 100% !important;
    max-width: 100% !important;
  }

  .mosaic-grid-2 {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    width: 100% !important;
  }

  .mosaic-grid-2 > * {
    width: 100% !important;
  }

  .routes-grid-3 {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.2rem !important;
  }
}

@media (max-width: 480px) {
  .specs-grid-2 {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.6rem !important;
  }

  .amenities-grid-4 {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .dates-grid-2 {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.8rem !important;
  }
}

/* ==========================================================================
   PAGE HERO HEADER (Subpages)
   ========================================================================== */
.page-hero-header {
  background: var(--pine-deep);
  padding: 8.5rem 1rem 4.5rem;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .page-hero-header {
    padding: 6.5rem 1rem 3rem;
  }
  .page-hero-header h1 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
  }
  .page-hero-header p {
    font-size: 1rem !important;
    line-height: 1.6;
  }
}

/* Form Card Responsive Padding */
.form-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 2.5rem;
  border: 1px solid rgba(12, 59, 36, 0.08);
  box-shadow: var(--shadow-luxury);
  box-sizing: border-box;
  width: 100%;
}

@media (max-width: 768px) {
  .form-card {
    padding: 1.5rem 1.15rem;
  }
}

/* Distinct Cottage Theming */
.cottage-badge-eve {
  background: #FFF7ED !important;
  color: #9A3412 !important;
  border: 1px solid #FCD34D !important;
  font-weight: 600 !important;
}

.cottage-badge-sunshine {
  background: #ECFDF5 !important;
  color: #065F46 !important;
  border: 1px solid #6EE7B7 !important;
  font-weight: 600 !important;
}

.cottage-card-eve {
  border-top: 3px solid #C5A059;
}

.cottage-card-sunshine {
  border-top: 3px solid #10B981;
}

/* Quick Cottage Comparison Bar */
.comparison-banner {
  background: #FFFFFF;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 3.5rem;
  box-shadow: var(--shadow-subtle);
  box-sizing: border-box;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  box-sizing: border-box;
}

.comparison-col {
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  box-sizing: border-box;
}

.comparison-col-eve {
  background: #FFFBF5;
  border: 1px solid rgba(197, 160, 89, 0.35);
}

.comparison-col-sunshine {
  background: #F4F9F5;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

@media (max-width: 768px) {
  .comparison-banner {
    padding: 1.25rem 1rem;
    margin-bottom: 2.5rem;
  }
  .comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .comparison-col {
    padding: 1.1rem;
  }
}

/* ==========================================================================
   LANDSCAPE HERO BEAUTIFICATION (Mobile & Tablet Landscape)
   ========================================================================== */
@media (orientation: landscape) and (max-height: 600px) {
  .hero-sanctuary {
    padding: 5rem 1rem 2rem !important;
    min-height: auto !important;
  }
  
  .hero-crest-badge {
    margin-bottom: 0.8rem !important;
    padding: 0.25rem 0.75rem !important;
  }

  .hero-title {
    font-size: 2.2rem !important;
    margin-bottom: 0.6rem !important;
    line-height: 1.15 !important;
  }

  .hero-subtitle {
    font-size: 0.92rem !important;
    margin-bottom: 1.2rem !important;
    max-width: 680px !important;
    line-height: 1.45 !important;
  }

  .hero-ctas {
    flex-direction: row !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    margin-bottom: 1.4rem !important;
  }

  .hero-ctas .btn {
    width: auto !important;
    max-width: none !important;
    padding: 0.6rem 1.2rem !important;
    font-size: 0.88rem !important;
  }

  .hero-booking-bar {
    padding: 0.75rem 1rem !important;
  }

  .booking-bar-form {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 0.6rem !important;
    align-items: flex-end !important;
  }

  .booking-bar-form .booking-field {
    flex: 1 !important;
    min-width: 140px !important;
  }

  .booking-bar-form .btn {
    height: 42px !important;
    padding: 0 1rem !important;
    font-size: 0.85rem !important;
  }

  .vitals-ribbon {
    padding: 0.75rem 0 !important;
  }

  .vitals-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.8rem 1.5rem !important;
    justify-content: center !important;
  }
}
