/* ═════════════════════════════════════════════
   THE WHITE ROSE VILLA — Premium Serene Garden Retreat CSS
   ═════════════════════════════════════════════ */

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

:root {
  /* ── Color Palette (Soft Serene Botanical - Deepened for High Contrast) ── */
  --primary: #AF7B73;          /* Tuscany Rosewood / Rich Dusty Rose */
  --primary-light: #CD9F97;    /* Warm Blush Pink */
  --primary-dark: #543834;     /* Chocolate Mauve / Very Deep Mauve */
  --accent: #5A7559;           /* Forest Sage Green / High-Contrast Accent */
  --accent-secondary: #AC5532; /* Rich Terracotta */
  --bg-ivory: #FAF5ED;         /* Warm Chai Ivory Base */
  --bg-blush: #EADCD2;         /* Warm Blush-Tea Backdrop Section */
  --bg-forest: #2C3E2D;        /* Deep Forest Green */
  --text-charcoal: #1E1A17;    /* Deep Dark Cocoa Charcoal / Very High legibility */
  --text-taupe: #706356;       /* Rich Earth Taupe */
  --border-linen: #E6D7CB;     /* Warm Linen Divider */
  --white: #FFFFFF;
  --glass-bg: rgba(250, 245, 237, 0.08);
  --glass-border: rgba(250, 245, 237, 0.2);

  /* ── Typography Fonts ── */
  --font-h1: 'Cormorant Garamond', serif;
  --font-h2: 'Cormorant Garamond', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Lora', serif;
  --font-sans: 'Nunito Sans', sans-serif;

  /* ── Animation Speed & Easing (Slower, Calmer than Amber Moon) ── */
  --transition-gentle: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-ivory);
  color: var(--text-charcoal);
  line-height: 1.8; /* Loose reading rhythm */
  overflow-x: clip;
}

/* Subtle paper texture overlay (3% opacity grain) */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  pointer-events: none;
  background-image: radial-gradient(var(--border-linen) 0.5px, transparent 0.5px);
  background-size: 24px 24px;
  opacity: 0.2;
}

/* ── Scroll Progress Bar (Dusty Rose Hairline) ── */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 9999;
  background: transparent;
  pointer-events: none;
}
.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--primary);
  transition: width 0.1s linear;
}

/* ── Elegant Soft Loader ── */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-ivory);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s;
}
.page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.loader-spinner {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(201, 166, 160, 0.15);
  border-radius: 50%;
  border-top-color: var(--primary);
  animation: spin 1.2s ease-in-out infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Section rhythm & More Whitespace ── */
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px;
}
@media (min-width: 1024px) {
  .section {
    padding: 110px 48px;
  }
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-h2);
  font-weight: 500;
  color: var(--primary-dark);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

h1 {
  font-family: var(--font-h1);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  h1 {
    font-size: 72px;
  }
}

h2 {
  font-size: 32px;
  margin-bottom: 16px;
  position: relative;
}
@media (min-width: 1024px) {
  h2 {
    font-size: 52px;
    margin-bottom: 24px;
  }
}

h3, h4 {
  font-family: var(--font-serif);
  font-size: 22px;
}
@media (min-width: 1024px) {
  h3, h4 {
    font-size: 28px;
  }
}

/* Emotional italicized emphasis inside headings */
h1 em, h2 em, h3 em, h4 em, .em-serif {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
}

p {
  color: var(--text-charcoal);
  font-family: var(--font-body);
  font-size: 15px;
  max-width: 60ch; /* Tighter reading line length for editorial feel */
  line-height: 1.8;
}
@media (min-width: 1024px) {
  p {
    font-size: 16px;
  }
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 12px;
}
@media (min-width: 1024px) {
  .section-label {
    font-size: 12px;
    margin-bottom: 16px;
  }
}

.desc {
  color: var(--text-taupe);
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .desc {
    margin-bottom: 64px;
  }
}

/* Hairline Decorative SVG Rose Stem Dividers */
.rose-divider {
  display: block;
  margin: 32px auto;
  width: 48px;
  height: auto;
  opacity: 0.35;
  color: var(--primary);
}

/* ── Custom Editorial Paragraph Drop Caps ── */
.dropcap::first-letter {
  font-family: var(--font-serif);
  float: left;
  font-size: 64px;
  line-height: 1;
  padding-top: 4px;
  padding-right: 12px;
  padding-left: 3px;
  color: var(--primary);
}

/* ═══════════════════════════════════════
   1. URGENCY BANNER (Dust Rose Refined Banner)
   ═══════════════════════════════════════ */
.urgency-banner {
  min-height: 40px;
  height: auto;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 15px;
  position: relative;
  z-index: 1001;
  text-align: center;
}
@media (min-width: 640px) {
  .urgency-banner {
    flex-direction: row;
    height: 40px;
    gap: 12px;
    padding: 0 20px;
  }
}
@media (min-width: 1024px) {
  .urgency-banner {
    height: 44px;
    font-size: 12px;
  }
}
.banner-timer {
  background: rgba(255, 255, 255, 0.15);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ═══════════════════════════════════════
   2. NAVBAR
   ═══════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  width: 100%;
  height: 76px;
  z-index: 1000;
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-linen);
  display: flex;
  align-items: center;
  transition: var(--transition-gentle);
}
.nav.scrolled {
  background: var(--bg-ivory);
  height: 72px;
  box-shadow: 0 2px 20px rgba(122, 92, 87, 0.05);
}
.nav-inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1024px) {
  .nav-inner {
    padding: 0 48px;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 38px;
  width: auto;
  transition: var(--transition-fast);
}
.nav-logo:hover img {
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Dropdowns */
.nav-dropdown {
  position: relative;
}
.drop-btn {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-fast);
}
.drop-btn:hover {
  color: var(--accent);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-ivory);
  min-width: 220px;
  border: 1px solid var(--border-linen);
  border-radius: 8px;
  box-shadow: 0 10px 32px rgba(122, 92, 87, 0.08);
  overflow: hidden;
  padding: 8px 0;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.nav-dropdown:hover .dropdown-content,
.nav-dropdown.active .dropdown-content {
  display: flex;
  flex-direction: column;
  transform: translateX(-50%) translateY(0px);
  opacity: 1;
  pointer-events: auto;
}

.dropdown-content a {
  padding: 12px 20px;
  color: var(--text-charcoal) !important;
  font-size: 13px !important;
  font-family: var(--font-sans);
  text-transform: none !important;
  letter-spacing: 0px !important;
  transition: var(--transition-fast);
  display: block;
}
.dropdown-content a:hover {
  background: var(--bg-blush);
  color: var(--accent) !important;
  padding-left: 24px;
}

.nav-contact-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone, .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 22px;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition-gentle);
}

.nav-phone {
  background: transparent;
  color: var(--primary-dark);
  border: 1px solid var(--border-linen);
}
.nav-phone:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--bg-blush);
}

.nav-cta {
  background: var(--accent);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 12px rgba(143, 166, 142, 0.2);
  position: relative;
  overflow: hidden;
}
.nav-cta:hover {
  background: #7d947c;
  box-shadow: 0 6px 16px rgba(143, 166, 142, 0.35);
}
.cta-tag {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--accent-secondary);
  color: white;
  font-size: 8px;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transform: scale(0.9);
}

/* Hamburger & Mobile Menu Drawer */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--primary-dark);
  font-size: 28px;
  cursor: pointer;
  padding: 6px;
  z-index: 1002;
}

@media (max-width: 1024px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-blush);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.5s;
    padding: 80px 40px;
    overflow-y: auto;
  }
  .nav-links.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-dropdown {
    width: 100%;
    text-align: center;
  }
  .drop-btn {
    justify-content: center;
    font-size: 16px;
  }
  .dropdown-content {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid var(--border-linen);
    margin-top: 8px;
    display: none;
  }
  .nav-dropdown.active .dropdown-content {
    display: flex;
  }
  .nav-contact-actions {
    flex-direction: column;
    width: 100%;
    gap: 14px;
    margin-top: 20px;
  }
  .nav-phone, .nav-cta {
    width: 100%;
  }
}

/* ═══════════════════════════════════════
   3. HERO SECTION (Serene Off-White Background)
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--bg-ivory);
  padding: 100px 16px 80px 16px;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  pointer-events: none;
  animation: breathingZoom 40s ease infinite; /* Imperceptible breathing zoom */
}
@keyframes breathingZoom {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(253,251,247,0.2) 0%, rgba(122,92,87,0.45) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(253, 251, 247, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--white);
  padding: 24px 16px;
  border-radius: 12px; /* Less rounded editorial radius */
  box-shadow: 0 16px 40px rgba(122, 92, 87, 0.08);
}
@media (min-width: 768px) {
  .hero-content {
    padding: 44px 50px;
  }
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 4px;
}

.hero h1 {
  font-family: var(--font-h1);
  font-weight: 400;
  font-style: italic; /* White Rose brand signature */
  color: var(--primary-dark);
  margin-bottom: 8px;
  font-size: 38px;
}
@media (min-width: 768px) {
  .hero h1 {
    font-size: 56px;
  }
}
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 72px;
  }
}

.hero-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.hp-old {
  font-family: var(--font-sans);
  font-size: 15px;
  text-decoration: line-through;
  color: var(--text-taupe);
  line-height: 1;
}
.hp-new {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--primary-dark);
  line-height: 1;
  display: flex;
  align-items: baseline;
}
@media (min-width: 768px) {
  .hp-new {
    font-size: 42px;
  }
}
.hp-new span {
  font-size: 13px;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text-taupe);
  margin-left: 2px;
}
.hp-badge {
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 2px; /* Square/rectangular label for editorial feel */
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: slowPulse 3s infinite;
}

@keyframes slowPulse {
  0% { opacity: 0.85; }
  50% { opacity: 1; transform: scale(1.02); }
  100% { opacity: 0.85; }
}

.hero-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.hero-features span {
  display: inline-flex;
  align-items: center;
  background: rgba(253, 251, 247, 0.4);
  border: 1px solid var(--border-linen);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 9999px;
  font-size: 12px;
  color: var(--primary-dark);
  font-weight: 500;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .hero-features {
    gap: 12px;
  }
  .hero-features span {
    padding: 6px 14px;
    font-size: 13px;
  }
}

.hero-loc {
  color: var(--text-charcoal);
  font-size: 14px;
  margin-bottom: 24px;
}
.hero-loc strong {
  color: var(--accent-secondary);
}

.hero-form {
  width: 100%;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.hero-form input {
  width: 100%;
  height: 48px;
  background: rgba(253, 251, 247, 0.8);
  border: 1px solid var(--border-linen);
  border-radius: 4px;
  padding: 0 16px;
  color: var(--text-charcoal);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: var(--transition-fast);
}
.hero-form input:focus {
  border-color: var(--primary);
  background: var(--white);
}
.hero-form input::placeholder {
  color: var(--text-taupe);
}

.hero-ctas {
  display: flex;
  gap: 12px;
  width: 100%;
  margin-top: 16px;
  flex-direction: column;
}
@media (min-width: 480px) {
  .hero-ctas {
    flex-direction: row;
  }
  .hero-ctas button {
    flex: 1;
  }
}

.hero-ctas button {
  height: 52px;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition-gentle);
}

.btn-green {
  background: var(--accent);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 12px rgba(143, 166, 142, 0.2);
  position: relative;
}
.btn-green:hover {
  background: #7d947c;
}
.btn-outline {
  background: transparent;
  color: var(--text-charcoal);
  border: 1px solid var(--border-linen);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: var(--bg-blush);
}

/* Scoped button outlines inside hero & final cta */
.hero .btn-outline,
.final-cta .btn-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.hero .btn-outline:hover,
.final-cta .btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

/* Slim animated scroll progress bar indicator line at bottom */
.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 550;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: var(--white);
  animation: lineSlide 2.5s ease-in-out infinite;
}
@keyframes lineSlide {
  0% { transform: translateY(-20px); }
  60% { transform: translateY(40px); }
  100% { transform: translateY(40px); }
}

/* ═══════════════════════════════════════
   4. TRUST BADGES ROW
   ═══════════════════════════════════════ */
.trust-bar {
  background: var(--bg-blush);
  padding: 32px 16px;
  border-bottom: 1px solid var(--border-linen);
}
.trust-bar .inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .trust-bar {
    padding: 40px 20px;
  }
  .trust-bar .inner {
    gap: 16px;
  }
}
@media (min-width: 1024px) {
  .trust-bar .inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 0 20px;
  }
}
.trust-bar .item {
  background: var(--white);
  border: 1px solid var(--border-linen);
  border-radius: 8px; /* Less rounded editorial corners */
  padding: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  transition: var(--transition-gentle);
}
@media (min-width: 1024px) {
  .trust-bar .item {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 10px;
    justify-content: center;
  }
}
.trust-bar .item:hover {
  background: var(--bg-blush);
  border-color: var(--primary);
}
.trust-icon {
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
@media (min-width: 1024px) {
  .trust-icon {
    font-size: 28px;
  }
}
.trust-text {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-taupe);
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .trust-text {
    font-size: 13px;
  }
}
.trust-text strong {
  display: block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  color: var(--primary-dark);
}
@media (min-width: 1024px) {
  .trust-text strong {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--primary-dark);
    font-weight: 550;
    display: inline;
  }
}

/* ═══════════════════════════════════════
   5. GALLERY ("Welcome to The White Rose")
   ═══════════════════════════════════════ */
.gallery-section {
  background: var(--bg-ivory);
}

/* Horizontal swipe scroll for Mobile */
.gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  scrollbar-width: none;
}
.gallery::-webkit-scrollbar {
  display: none;
}
.gi {
  flex: 0 0 85%;
  scroll-snap-align: center;
  position: relative;
  border-radius: 8px; /* Clean editorial corners */
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(122, 92, 87, 0.04);
  aspect-ratio: 4/3;
}
.gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-gentle);
}

/* Desktop Asymmetric Clean Editorial Grid */
@media (min-width: 1024px) {
  .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 20px;
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }
  
  .gi:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    aspect-ratio: auto;
  }
  .gi:nth-child(2) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    aspect-ratio: auto;
  }
  .gi:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    aspect-ratio: auto;
  }
  /* Hide excessive gallery items from grid to maintain perfect 2x2+1 ratio */
  .gi:nth-child(4), .gi:nth-child(5) {
    display: none;
  }
  .gi {
    flex: none;
    scroll-snap-align: none;
  }
}

/* Soft desaturate and fade hover */
.gi:hover img {
  filter: saturate(0.85);
  transform: scale(1.03);
}

/* Caption bar overlay on hover */
.gi::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(245,237,232,0) 60%, rgba(122,92,87,0.3) 100%);
  opacity: 0;
  transition: var(--transition-fast);
}
.gi:hover::after {
  opacity: 1;
}

.gi a {
  display: block;
  width: 100%;
  height: 100%;
}

/* Line-style scroll indicator for mobile gallery */
.gallery-line-indicator {
  width: 120px;
  height: 2px;
  background: var(--border-linen);
  margin: 16px auto 0 auto;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .gallery-line-indicator {
    display: none;
  }
}
.gallery-line-active {
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  height: 100%;
  background: var(--primary);
  transition: left 0.1s ease-out;
}

/* ═══════════════════════════════════════
   6. EXPERIENCE CARDS
   ═══════════════════════════════════════ */
.highlights {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.h-card {
  background: var(--white);
  border: 1px solid var(--border-linen);
  border-radius: 0px; /* Flat editorial aesthetic */
  overflow: hidden;
  box-shadow: none;
  transition: var(--transition-gentle);
}
.h-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 10px 32px rgba(122, 92, 87, 0.04);
}

.h-card img {
  width: 100%;
  aspect-ratio: 3/2; /* Editorial ratio */
  object-fit: cover;
  transition: var(--transition-gentle);
}
.h-card:hover img {
  filter: saturate(0.9);
}

.h-card .info {
  padding: 24px;
}
.h-card h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--primary-dark);
  position: relative;
}
.h-card h4::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 32px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.h-card:hover h4::after {
  transform: scaleX(1);
}
.h-card p {
  color: var(--text-charcoal);
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.8;
}

/* ═══════════════════════════════════════
   7. VALUE PROPOSITION (Outlined Serif Numbers)
   ═══════════════════════════════════════ */
.why-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}

.why-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-linen);
}
@media (min-width: 640px) {
  .why-card {
    flex-direction: row;
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .why-card {
    border-bottom: none;
    padding-bottom: 0;
  }
  .why-card:nth-child(odd) {
    border-right: 1px solid var(--border-linen);
    padding-right: 48px;
  }
}

.why-card .num {
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 400;
  font-style: italic; /* Serene editorial signature */
  line-height: 1;
  color: var(--primary);
  opacity: 0.65;
}

.why-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.why-card h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.why-card h4::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.why-card p {
  font-size: 14px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   8. AMENITIES GRID (Powder Blush Flat Blocks)
   ═══════════════════════════════════════ */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .amenity-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .amenity-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.amenity-item {
  background: var(--bg-blush);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  transition: var(--transition-gentle);
}
.amenity-item:hover {
  background: #ecdcd2;
  transform: scale(1.02);
}
.amenity-item .icon {
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  width: 28px;
}

/* ═══════════════════════════════════════
   9. PRICING SECTION
   ═══════════════════════════════════════ */
.pricing-section {
  background: var(--bg-blush);
}
.pricing-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border-linen);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 10px 40px rgba(122, 92, 87, 0.04);
}
@media (min-width: 768px) {
  .pricing-card {
    padding: 48px;
  }
}

.pricing-card h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 32px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-linen);
  font-family: var(--font-sans);
  flex-wrap: wrap;
  gap: 12px;
}
.price-row:nth-child(even) {
  background: rgba(253, 251, 247, 0.5);
}
.price-row .label {
  font-weight: 600;
  color: var(--text-charcoal);
  font-size: 15px;
}
.price-row .val {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--primary-dark);
}
.price-row .val .old-price {
  font-size: 14px;
  font-family: var(--font-sans);
  text-decoration: line-through;
  color: var(--text-taupe);
  margin-right: 8px;
  font-weight: 400;
}

.included {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.included h4 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-dark);
  border-bottom: 1px solid var(--border-linen);
  padding-bottom: 8px;
}
.included ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .included ul {
    grid-template-columns: 1fr 1fr;
  }
}
.included li {
  font-size: 14px;
  color: var(--text-charcoal);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-sans);
}
.included li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
  font-size: 14px;
}

/* ═══════════════════════════════════════
   10. LOCATION
   ═══════════════════════════════════════ */
.loc-section {
  background: var(--bg-blush);
}
.loc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .loc-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }
}

.dist-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dist-item {
  background: var(--white);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border-linen);
  transition: var(--transition-fast);
}
.dist-item:hover {
  border-color: var(--primary);
  transform: translateX(3px);
}
.dist-item.highlight-sister {
  border: 1px dashed var(--primary);
  background: var(--bg-ivory);
}
.dist-item .place {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--primary-dark);
  font-size: 15px;
}
.dist-item .dist {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-taupe);
  font-weight: 550;
}

/* Timeline */
.nearby-timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 24px;
  margin-top: 16px;
}
.nearby-timeline::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 6px;
  bottom: 8px;
  width: 1px;
  background: var(--border-linen);
}
.timeline-item {
  position: relative;
  padding-bottom: 16px;
  font-size: 14.5px;
  color: var(--text-charcoal);
}
.timeline-item::before {
  content: '';
  position: absolute;
  top: 8px;
  left: -21px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  border: 1px solid var(--white);
  box-shadow: 0 0 0 2px var(--bg-blush);
}
.timeline-item:last-child {
  padding-bottom: 0;
}

.map-box {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(122, 92, 87, 0.05);
  border: 1px solid var(--border-linen);
}
.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
}

/* ═══════════════════════════════════════
   11. REVIEWS SECTION (Staggered Offset Grid)
   ═══════════════════════════════════════ */
.review-cards {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 16px 4px 24px 4px;
  scrollbar-width: none;
}
.review-cards::-webkit-scrollbar {
  display: none;
}
.review-card {
  flex: 0 0 88%;
  scroll-snap-align: center;
  background: var(--white);
  border-radius: 8px;
  padding: 28px;
  border: 1px solid var(--border-linen);
  position: relative;
  transition: var(--transition-gentle);
}
@media (min-width: 640px) {
  .review-card {
    flex: 0 0 46%;
  }
}
@media (min-width: 1024px) {
  /* Desktop Staggered Offset Grid */
  .review-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
    scroll-snap-type: none;
    gap: 28px;
    padding: 40px 0;
  }
  .review-card {
    flex: none;
    scroll-snap-align: none;
  }
  /* Offset staggering for rhythm */
  .review-card:nth-child(2) {
    transform: translateY(20px);
  }
  .review-card:nth-child(5) {
    transform: translateY(20px);
  }
}

.review-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(122, 92, 87, 0.05);
}

.review-card .stars {
  color: var(--primary);
  font-size: 13px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

/* Quote Mark */
.review-card::after {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: var(--font-serif);
  font-size: 72px;
  font-style: italic;
  line-height: 1;
  color: var(--primary);
  opacity: 0.15;
  pointer-events: none;
}

.review-card .text {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-charcoal);
  margin-bottom: 20px;
}

.review-card .author {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 14px;
}

.review-card .from {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-taupe);
  margin-top: 2px;
}

/* Review Mobile Dot Indicators */
.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
@media (min-width: 1024px) {
  .review-dots {
    display: none;
  }
}
.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-linen);
  transition: var(--transition-fast);
}
.review-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* ═══════════════════════════════════════
   12. FAQs SECTION
   ═══════════════════════════════════════ */
.faq-container {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--bg-ivory);
  border: 1px solid var(--border-linen);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-gentle);
}
.faq-item:hover {
  border-color: var(--primary-light);
}

.faq-q {
  padding: 20px 24px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 17px;
  color: var(--primary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: var(--transition-fast);
}
.faq-q::after {
  content: '+';
  font-size: 20px;
  color: var(--primary);
  font-weight: 300;
  transition: transform 0.4s ease;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: 14.5px;
  color: var(--text-charcoal);
  line-height: 1.8;
  font-family: var(--font-body);
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), padding 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Open Accordion State */
.faq-item.open {
  border-color: var(--primary);
  background: var(--white);
}
.faq-item.open .faq-q {
  color: var(--primary-dark);
}
.faq-item.open .faq-q::after {
  content: '−'; /* Line minus symbol */
  transform: rotate(180deg);
  color: var(--accent);
}
.faq-item.open .faq-a {
  max-height: 160px;
  padding-bottom: 20px;
}

/* ═══════════════════════════════════════
   13. SISTER PROPERTY CARD (Deep Forest Green Accent)
   ═══════════════════════════════════════ */
.cross-sell {
  background: var(--bg-forest);
  border: none;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.cross-sell * {
  color: var(--bg-ivory) !important;
}
@media (min-width: 768px) {
  .cross-sell {
    flex-direction: row;
    align-items: stretch;
  }
  .cross-sell > img {
    width: 50% !important;
    max-height: none !important;
    object-fit: cover;
  }
  .cross-sell > div {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px !important;
  }
}
.cross-sell img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  transition: var(--transition-gentle);
}
.cross-sell:hover img {
  transform: scale(1.02);
}
.cross-sell > div {
  padding: 24px;
}
.cross-sell .section-label {
  color: var(--primary-light) !important;
}
.cross-sell h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  margin-bottom: 12px;
}
.cross-sell p {
  color: rgba(253, 251, 247, 0.75) !important;
  font-size: 14.5px;
  margin-bottom: 24px;
}
.cross-sell .btn-outline {
  border: 1px solid rgba(253, 251, 247, 0.45);
  color: var(--bg-ivory) !important;
}
.cross-sell .btn-outline:hover {
  background: rgba(253, 251, 247, 0.15);
  border-color: var(--white);
}

/* ═══════════════════════════════════════
   14. FINAL CTA ("Book The White Rose")
   ═══════════════════════════════════════ */
.final-cta {
  position: relative;
  background: linear-gradient(rgba(122, 92, 87, 0.7), rgba(122, 92, 87, 0.75)), url('assets/wunder_home_images/the-white-rose-1.png') no-repeat center center;
  background-size: cover;
  background-attachment: scroll;
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .final-cta {
    background-attachment: fixed;
    padding: 120px 48px;
  }
}

.final-cta h2 {
  font-style: italic;
  color: var(--white);
  margin-bottom: 12px;
}
.final-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta .old-price {
  text-decoration: line-through;
  opacity: 0.6;
  font-size: 14px;
  margin-right: 4px;
}
.discount-badge {
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 6px;
  display: inline-block;
}

.final-cta .ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 480px;
}
@media (min-width: 640px) {
  .final-cta .ctas {
    flex-direction: row;
    max-width: 680px;
  }
  .final-cta .ctas a {
    flex: 1;
  }
}

.final-cta .ctas a {
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition-gentle);
}
@media (min-width: 1024px) {
  .final-cta .ctas a {
    height: 58px;
  }
}

.btn-gold {
  background: var(--accent);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 12px rgba(143, 166, 142, 0.2);
}
.btn-gold:hover {
  background: #7d947c;
}

/* ═══════════════════════════════════════
   15. FOOTER
   ═══════════════════════════════════════ */
footer {
  background: var(--primary-dark);
  color: rgba(253, 251, 247, 0.7);
  padding: 64px 24px 48px 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
footer strong {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--white);
  letter-spacing: 1px;
}
footer p {
  color: rgba(253, 251, 247, 0.6);
  font-size: 14.5px;
}
footer a {
  color: var(--white);
  transition: var(--transition-fast);
}
footer a:hover {
  color: var(--primary-light);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.footer-links a {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-links a:hover {
  color: var(--primary-light);
}

/* ═══════════════════════════════════════
   STICKY BOTTOM CTA BAR (MOBILE ONLY)
   ═══════════════════════════════════════ */
.sticky-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--bg-blush);
  border-top: 1px solid var(--border-linen);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -2px 20px rgba(122, 92, 87, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.sticky-bottom.visible {
  transform: translateY(0);
}
@media (min-width: 1024px) {
  .sticky-bottom {
    display: none !important;
  }
}

.s-price {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 19px;
  color: var(--primary-dark);
}
.s-price .old-price {
  font-size: 12px;
  color: var(--text-taupe);
  text-decoration: line-through;
  margin-right: 6px;
  font-weight: 400;
}

.s-btn {
  height: 48px;
  background: var(--accent);
  color: var(--white);
  padding: 0 24px;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(143, 166, 142, 0.2);
}

/* ═══════════════════════════════════════
   SCROLL REVEAL (AOS-style integration - Slower reveal parameters)
   ═══════════════════════════════════════ */
.why-card, .amenity-item, .review-card, .h-card, .prop-card, .dist-item {
  opacity: 0;
  transform: translateY(20px); /* Gentler reveal distance */
  transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}
.why-card.visible, .amenity-item.visible, .review-card.visible, .h-card.visible, .prop-card.visible, .dist-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   PREMIUM MOBILE RESPONSIVENESS OVERRIDES
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  /* Compact & Elegant Form Sizing */
  .hero-form {
    max-width: 440px;
    margin: 0 auto;
  }
  .hero-content {
    padding: 24px 16px;
  }
  .form-row {
    gap: 8px;
    margin-bottom: 8px;
  }
  .hero-form input {
    height: 42px;
    font-size: 13px;
    padding: 0 14px;
  }
  .hero-ctas {
    margin-top: 12px !important;
    gap: 8px;
  }
  .hero-ctas button {
    height: 44px;
    font-size: 12px;
    letter-spacing: 1px;
  }
  .hero-ctas button .cta-tag {
    top: -6px;
    right: -2px;
    font-size: 7px;
  }
  
  /* Spacing Adjustments */
  .section {
    padding: 56px 16px;
  }
  
  /* Trust Bar Adjustments */
  .trust-bar {
    padding: 24px 12px;
  }
  .trust-bar .item {
    padding: 12px 10px;
    gap: 8px;
  }
  .trust-icon {
    font-size: 20px;
  }
  .trust-text strong {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  /* Typography Scaling to prevent awkward wrapping */
  h1 {
    font-size: 28px !important;
  }
  h2 {
    font-size: 22px !important;
    margin-bottom: 12px;
  }
  h3, h4 {
    font-size: 18px !important;
  }
  .desc {
    margin-bottom: 32px;
    font-size: 14px;
  }
  
  /* Hollow why-card numbers */
  .why-card .num {
    font-size: 56px;
  }
  
  /* Pricing Table Mobile Polish */
  .pricing-card {
    padding: 24px 16px;
    border-width: 1px;
  }
  .pricing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .price-row {
    padding: 10px 0;
    gap: 6px;
  }
  .price-row .label {
    font-size: 13px;
  }
  .price-row .val {
    font-size: 16px;
  }
  .price-row .val .old-price {
    font-size: 12px;
    margin-right: 4px;
  }
  
  /* Sticky Bottom floating bar mobile scaling */
  .sticky-bottom {
    padding: 8px 16px;
  }
  .s-price {
    font-size: 18px;
  }
  .s-btn {
    height: 40px;
    padding: 0 16px;
    font-size: 11px;
  }
}

/* ═══════════════════════════════════════
   PREMIUM IMPROVEMENTS & CUSTOM CUSTOM OVERRIDES
   ═══════════════════════════════════════ */

/* 1. TYPOGRAPHY & SCALING OVERRIDES */
@media (max-width: 768px) {
  h1 {
    font-size: 44px !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  h1 {
    font-size: 60px !important;
  }
}
.hp-new {
  font-size: 36px !important;
}
@media (min-width: 768px) {
  .hp-new {
    font-size: 48px !important;
  }
}
.section-label {
  font-size: 12px !important;
  letter-spacing: 4px !important;
}
body {
  line-height: 1.75 !important;
}
.why-card .num {
  opacity: 0.75 !important;
}

/* 2. ANIMATED HAMBURGER MENU */
.mobile-menu-btn {
  display: none;
  position: relative;
  width: 24px;
  height: 16px;
  background: none !important;
  border: none !important;
  cursor: pointer;
  z-index: 1002;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 !important;
  box-shadow: none !important;
  transition: opacity 0.3s ease, visibility 0.3s ease !important;
}
.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--primary-dark);
  transition: all 0.35s ease-in-out;
}
.mobile-menu-btn.active {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important; /* Fixed: hides header menu button completely when drawer is open to prevent visual overlaps */
}
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .mobile-menu-btn {
    display: flex !important;
  }
}

/* 3. DRAWER BACKDROP OVERLAY & DRAWER ANIMATION */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.nav-overlay.show {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    left: auto !important;
    width: 80% !important;
    max-width: 320px !important;
    height: 100vh !important;
    background: var(--bg-blush) !important;
    border-left: 1px solid var(--border-linen) !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    padding: 90px 24px 40px 24px !important;
    z-index: 1001 !important;
    transform: translateX(100%) !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
    box-shadow: -10px 0 30px rgba(122, 92, 87, 0.15) !important;
    overflow-y: auto !important;
    gap: 20px !important;
  }
  .nav-links.show {
    transform: translateX(0) !important;
  }
  .nav-dropdown {
    width: 100% !important;
    text-align: left !important;
  }
  .drop-btn {
    justify-content: flex-start !important;
    font-size: 15px !important;
    padding: 8px 0 !important;
  }
  .dropdown-content {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    background: rgba(255, 255, 255, 0.3) !important;
    border: none !important;
    border-left: 2px solid var(--primary) !important;
    margin-top: 4px !important;
    padding-left: 12px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  .nav-contact-actions {
    margin-top: 16px !important;
    width: 100% !important;
  }
  .mobile-close-btn {
    display: block !important;
    position: absolute;
    top: 24px;
    right: 24px;
    background: none !important;
    border: none !important;
    color: var(--primary-dark) !important;
    font-family: var(--font-sans);
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    z-index: 1002;
  }
}
.mobile-close-btn {
  display: none;
}

/* 4. BADGES & ALIGNMENTS */
.cta-tag {
  top: -4px !important;
  right: -6px !important;
  z-index: 10 !important;
  font-size: 8px !important;
  line-height: 1 !important;
  padding: 2px 5px !important;
}

/* 5. FORM FIELDS POLISH & DATEPICKER */
.hero-form input {
  height: 52px !important;
}
.date-input-wrapper {
  position: relative;
  width: 100%;
}
.date-input-wrapper input {
  padding-right: 44px !important;
}
.calendar-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 16px;
  opacity: 0.7;
}
.booking-trust-signal {
  font-size: 11px;
  color: var(--text-taupe);
  margin-top: 12px;
  letter-spacing: 0.5px;
  text-align: center;
}
@media (max-width: 768px) {
  .hero-form input {
    height: 52px !important;
  }
}

/* 6. FLATPICKR WHITE ROSE PALETTE CUSTOMIZATION */
.flatpickr-calendar {
  background: var(--bg-ivory) !important;
  border: 1px solid var(--border-linen) !important;
  box-shadow: 0 10px 30px rgba(122, 92, 87, 0.1) !important;
  font-family: var(--font-sans) !important;
}
.flatpickr-day {
  color: var(--text-charcoal) !important;
}
.flatpickr-day.today {
  border-color: var(--primary) !important;
}
.flatpickr-day.selected, .flatpickr-day.selected:hover {
  background: var(--accent) !important;
  color: var(--white) !important;
}
.flatpickr-months .flatpickr-month, .flatpickr-weekdays, span.flatpickr-weekday {
  color: var(--primary-dark) !important;
  fill: var(--primary-dark) !important;
}

/* 7. PULSING ANIMATION keyframes */
.animate-pulse {
  animation: ctaPulse 3s ease-in-out infinite !important;
}
@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(90, 117, 89, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 8px 24px rgba(90, 117, 89, 0.5);
    transform: scale(1.02);
  }
}

/* 8. TRUST BAR 5TH ITEM & FONT SIZING */
.trust-bar .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
}
.trust-text {
  font-family: var(--font-sans) !important;
}
.trust-text strong {
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  color: #543834 !important; /* Audited: hex-mauve fallback for perfect visibility */
}
@media (max-width: 768px) {
  .trust-text strong {
    font-size: 13px !important;
    color: #543834 !important; /* Fixed: direct hex-mauve contrast prevents mobile white-on-white text */
  }
  .trust-bar .inner {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px 12px !important;
  }
  .trust-bar .item {
    flex-direction: row !important;
    justify-content: flex-start !important;
  }
  .trust-bar .item:nth-child(5) {
    grid-column: span 2 !important; /* Center the odd 5th item elegantly on mobile */
    justify-content: center !important;
  }
}

/* Fix: Allow absolute badges to overlay without clipping across all button variations */
.nav-cta, .s-btn, .btn-green, .btn-gold, .hero-ctas button, .ctas-grid a, .sticky-bottom a {
  overflow: visible !important;
}

/* 9. GALLERY SWIPE PEK & MOBILE OVERRIDES */
.gallery-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 1024px) {
  .gallery {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    padding-bottom: 20px !important;
    gap: 12px !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .gi {
    flex: 0 0 82% !important; /* Peek effect */
    scroll-snap-align: center !important;
    width: auto !important;
    margin: 0 !important;
  }
  .swipe-hint {
    display: block !important;
    text-align: center;
    font-size: 12px;
    font-family: var(--font-sans);
    color: var(--primary);
    margin-top: 10px;
    letter-spacing: 2px;
    animation: swipeAnim 2s infinite ease-in-out;
  }
}
.swipe-hint {
  display: none;
}
@keyframes swipeAnim {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(5px); opacity: 1; }
}

/* 10. STAGGERED REVEALS */
.why-card:nth-child(1) { transition-delay: 0s !important; }
.why-card:nth-child(2) { transition-delay: 0.15s !important; }
.why-card:nth-child(3) { transition-delay: 0.30s !important; }
.why-card:nth-child(4) { transition-delay: 0.45s !important; }

/* 11. AMENITY GRID POLISH */
@media (max-width: 360px) {
  .amenity-grid {
    grid-template-columns: 1fr !important;
  }
}

/* 12. PRICING STACKED STYLE & BADGES */
.price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.price-block .old-price {
  font-size: 13px !important;
  text-decoration: line-through;
  color: var(--text-taupe);
  opacity: 0.7;
  margin-bottom: 2px;
}
.price-block .new-price {
  font-size: 20px !important;
  font-family: var(--font-serif) !important;
  font-weight: 600 !important;
  color: var(--primary-dark);
  display: flex;
  align-items: baseline;
  font-feature-settings: "tnum";
}
.night-sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-taupe);
  margin-left: 2px;
  font-family: var(--font-sans) !important;
}
.pop-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.price-row.popular-row {
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  background: rgba(90, 117, 89, 0.03);
}

/* 13. FLOATING WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 997;
  transition: all 0.3s ease;
  animation: floatPulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}
.whatsapp-icon {
  width: 30px;
  height: 30px;
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7); }
}

/* 14. STICKY BOTTOM CLOSE BUTTON */
.sticky-close {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  background: none !important;
  border: none !important;
  color: var(--primary-dark);
  font-size: 16px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  padding: 4px !important;
}
.sticky-close:hover {
  opacity: 1;
}
.sticky-bottom.visible {
  display: flex !important;
}
.sticky-bottom {
  padding-left: 36px !important; /* Space for close btn */
  align-items: center;
  justify-content: space-between;
}
.s-info {
  display: flex;
  flex-direction: column;
}
.s-urgency {
  font-size: 10px;
  color: var(--accent-secondary);
  font-weight: 600;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.s-price .per-night {
  font-size: 10px;
  opacity: 0.7;
}

/* 15. FINAL CTA BUTTON SPLITS */
.final-price-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}
.final-price-wrapper .old-price {
  font-size: 16px;
  text-decoration: line-through;
  color: var(--text-taupe);
  opacity: 0.6;
}
.final-price-wrapper .new-price {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-dark);
  font-family: var(--font-serif);
}
.final-subtitle {
  font-size: 14px;
  color: var(--text-taupe);
  margin-bottom: 24px;
}
.ctas-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.full-width-cta {
  width: 100% !important;
  text-align: center;
}
.secondary-ctas-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}
.secondary-ctas-row a {
  width: 100% !important;
  justify-content: center;
}

/* 16. SPINNER SUBMISSION INDICATOR */
.btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255, 0.4);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

/* 17. PREFERS REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  .hero-bg, .wa-float, .whatsapp-float, .animate-pulse, .hero-scroll-indicator svg {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

/* 18. UNICODE QUOTES IN REVIEWS AND OVERRIDES */
.review-card::before {
  content: "\201C" !important;
}
.review-card::after {
  content: "\201D" !important;
}

/* 19. SCROLL INDICATOR VISIBILITY & PLACEMENT FIX */
.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  color: var(--primary-dark) !important;
  z-index: 10;
}
.hero-scroll-indicator span {
  color: var(--primary-dark) !important;
  font-weight: 600 !important;
  letter-spacing: 2px;
  opacity: 0.85 !important;
}
.scroll-line {
  background: var(--primary) !important;
}

/* ═══════════════════════════════════════
   PREMIUM MOBILE AUDIT OVERRIDES (≤ 768px)
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  /* 1. Navigation Menu Overlay (FULL VIEWPORT COVERAGE) */
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    z-index: 9999 !important;
    background: #231615 !important; /* solid deep luxury cocoa brown */
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 60px 40px !important;
    border-left: none !important;
    box-shadow: none !important;
    transform: translateX(100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease-in-out, visibility 0.4s !important;
    overflow-y: auto !important;
  }
  .nav-links.show {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .nav-links .nav-dropdown {
    width: 100% !important;
    text-align: center !important;
  }
  .nav-links .drop-btn {
    justify-content: center !important;
    font-size: 18px !important;
    color: #FAF5ED !important; /* Ivory color */
    padding: 8px 0 !important;
  }
  .nav-links .dropdown-content {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin-top: 4px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: none !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .nav-dropdown.active .dropdown-content {
    display: flex !important;
  }
  .nav-links .dropdown-content a {
    text-align: center !important;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 8px 16px !important;
    width: 100% !important;
  }
  .nav-links .dropdown-content a:hover {
    padding-left: 16px !important;
    background: rgba(175, 123, 115, 0.2) !important; /* Rich dusty rose fallback overlay */
    color: var(--white) !important;
  }
  .nav-links .nav-contact-actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
    margin-top: 20px !important;
  }
  .nav-links .nav-phone, 
  .nav-links .nav-cta {
    width: 100% !important;
    max-width: 280px !important;
    height: 48px !important;
    margin: 0 auto !important;
    display: inline-flex !important;
  }
  .mobile-close-btn {
    display: block !important;
    position: absolute !important;
    top: 24px !important;
    right: 24px !important;
    background: none !important;
    border: none !important;
    color: #FAF5ED !important;
    font-family: var(--font-sans);
    font-size: 15px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    cursor: pointer !important;
    z-index: 10000 !important;
  }
  .nav-overlay {
    z-index: 9998 !important;
    background: rgba(0, 0, 0, 0.7) !important;
  }

  /* 2. Hero Booking Form Stacked Layout */
  .hero-form {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }
  .form-row {
    grid-template-columns: 1fr !important; /* Stack inputs */
    gap: 12px !important;
    margin-bottom: 12px !important;
    width: 100% !important;
  }
  .hero-form input {
    width: 100% !important;
    height: 52px !important;
    padding: 0 16px !important;
    font-size: 14px !important;
    box-sizing: border-box !important;
  }

  /* 3. Hero CTA Buttons Stacked Vertically & Full Width */
  .hero-ctas {
    flex-direction: column !important;
    gap: 12px !important;
    margin-top: 16px !important;
    width: 100% !important;
  }
  .hero-ctas button, 
  .hero-ctas a, 
  .hero-ctas .btn-green, 
  .hero-ctas .btn-outline {
    width: 100% !important;
    max-width: 100% !important;
    height: 52px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
  }

  /* 4. Wrapped Price Display (No overflow) */
  .hero-pricing {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px 12px !important;
    margin-bottom: 16px !important;
    width: 100% !important;
  }

  /* 5. Wrapped Feature Icons Row */
  .hero-features {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-bottom: 24px !important;
    width: 100% !important;
  }
  .hero-features span {
    white-space: nowrap !important;
  }

  /* 6. Gallery Stacked Single Column */
  .gallery {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
    padding-bottom: 0 !important;
  }
  .gi {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: auto !important;
    margin: 0 !important;
  }
  .gi img {
    width: 100% !important;
    height: auto !important;
    border-radius: 12px !important;
  }
  .gallery-line-indicator, 
  .gallery-dots, 
  .swipe-hint, 
  #swipe-hint-el {
    display: none !important;
  }

  /* 7. Max 2 Columns Amenities Grid */
  .amenity-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  @media (max-width: 360px) {
    .amenity-grid {
      grid-template-columns: 1fr !important;
    }
  }

  /* 8. Zero Scroll Overflow Safeguard & Body Padding Lock */
  html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  body {
    padding-bottom: 80px !important;
  }
  
  /* 9. Urgency Offer Banner Wrap */
  .urgency-banner {
    flex-direction: column !important;
    height: auto !important;
    padding: 8px 12px !important;
    gap: 6px !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
    text-align: center !important;
  }
  .banner-timer {
    display: inline-flex !important;
    padding: 2px 8px !important;
    font-size: 10px !important;
  }

  /* 10. Sticky Bottom Bar Scaling */
  .sticky-bottom {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    z-index: 998 !important; /* Stays beneath overlay drawer */
    background: var(--bg-blush) !important;
    border-top: 1px solid var(--border-linen) !important;
    padding: 10px 16px !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    box-shadow: 0 -4px 20px rgba(122, 92, 87, 0.15) !important;
  }
}



