/* ==========================================================================
   DEVNEST STAYS - LUXURY VACATION RENTAL DESIGN SYSTEM
   Modern, Ultra-Clean, Monochromatic & High-End Visual Identity
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  
  --color-black: #0a0a0a;
  --color-dark: #141414;
  --color-charcoal: #262626;
  --color-gray-dark: #525252;
  --color-gray-mid: #737373;
  --color-gray-light: #a3a3a3;
  --color-border: #e5e5e5;
  --color-border-subtle: #f0f0f0;
  --color-bg-light: #fafafa;
  --color-bg-subtle: #f5f5f5;
  --color-white: #ffffff;
  
  --color-accent-gold: #c5a880;
  --color-whatsapp: #25d366;
  --color-whatsapp-dark: #128c7e;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 48px rgba(0, 0, 0, 0.12);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--color-black);
  background-color: var(--color-white);
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
  transition: var(--transition);
}

input, select, textarea {
  font-family: inherit;
  font-size: 0.95rem;
}

/* ===== UTILITIES & LAYOUT ===== */
.container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

.flex { display: flex; }
.flex-center { justify-content: center; align-items: center; }
.flex-between { justify-content: space-between; align-items: center; }
.hidden { display: none !important; }

/* ===== NAVIGATION HEADER ===== */
header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
}

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

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--color-black);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-badge {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--color-black);
  color: var(--color-white);
  padding: 2px 7px;
  border-radius: var(--radius-sm);
}

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

.nav-links a {
  color: var(--color-charcoal);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--color-black);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-black);
  border-radius: 2px;
}

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

.nav-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-charcoal);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  transition: var(--transition);
}

.nav-phone-btn:hover {
  border-color: var(--color-black);
  color: var(--color-black);
  background: var(--color-bg-subtle);
}

.nav-book-btn {
  background: var(--color-black);
  color: var(--color-white);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-book-btn:hover {
  background: var(--color-charcoal);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.mobile-menu-btn {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-black);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  width: 100%;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem 0;
  box-shadow: var(--shadow-md);
}

body.mobile-menu-open .mobile-menu {
  display: block;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  color: var(--color-charcoal);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border-subtle);
}

.mobile-menu a:hover {
  background: var(--color-bg-light);
  color: var(--color-black);
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 4.5rem 0 3rem;
  text-align: center;
  background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-white) 100%);
  position: relative;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.05);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-charcoal);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-black);
  max-width: 860px;
  margin: 0 auto 1.25rem;
  letter-spacing: -0.8px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-gray-dark);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
  font-weight: 400;
}

/* ===== SEARCH BAR ===== */
.search-bar {
  display: flex;
  align-items: center;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-full);
  padding: 6px 8px 6px 16px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.search-bar:focus-within {
  border-color: var(--color-black);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
}

.search-field {
  flex: 1;
  padding: 8px 16px;
  text-align: left;
  position: relative;
}

.search-field:not(:last-child) {
  border-right: 1px solid var(--color-border);
}

.search-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 2px;
}

.search-field input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.9rem;
  color: var(--color-charcoal);
  width: 100%;
  font-weight: 500;
}

.search-field input::placeholder {
  color: var(--color-gray-light);
}

.search-btn {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: var(--color-black);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.search-btn:hover {
  background: var(--color-charcoal);
  transform: scale(1.04);
}

.trending-tags {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.trending-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-gray-mid);
}

.trending-tag {
  padding: 6px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  color: var(--color-charcoal);
  cursor: pointer;
  background: var(--color-white);
  transition: var(--transition);
  font-weight: 500;
}

.trending-tag:hover {
  border-color: var(--color-black);
  color: var(--color-black);
  background: var(--color-bg-light);
}

/* ===== TRUST BADGES BAR ===== */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-charcoal);
}

.trust-item span.icon {
  font-size: 1.15rem;
}

/* ===== CATEGORY STRIP ===== */
.category-strip {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
  overflow-x: auto;
  scrollbar-width: none;
}

.category-strip::-webkit-scrollbar {
  display: none;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  opacity: 0.6;
  transition: var(--transition);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}

.category-item:hover, .category-item.active {
  opacity: 1;
  border-bottom-color: var(--color-black);
}

.category-icon {
  font-size: 1.35rem;
}

.category-item span {
  font-size: 0.76rem;
  font-weight: 600;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}

.section-tagline {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-gray-mid);
  margin-bottom: 0.4rem;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--color-black);
}

.section-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-black);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid var(--color-black);
  padding-bottom: 2px;
}

.section-link:hover {
  opacity: 0.7;
}

.property-tabs {
  display: flex;
  gap: 0.5rem;
  background: var(--color-bg-subtle);
  padding: 4px;
  border-radius: var(--radius-full);
}

.section-tab {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gray-dark);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.section-tab.active, .section-tab:hover {
  background: var(--color-white);
  color: var(--color-black);
  box-shadow: var(--shadow-sm);
}

/* ===== FEATURED SIGNATURE SHOWCASE ===== */
.signature-section {
  padding: 4rem 0;
  background: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.signature-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.signature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.signature-media {
  position: relative;
  height: 320px;
  overflow: hidden;
}

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

.signature-card:hover .signature-media img {
  transform: scale(1.04);
}

.signature-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.signature-video-btn {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: var(--color-black);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.signature-video-btn:hover {
  background: var(--color-white);
  transform: scale(1.05);
}

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

.signature-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.signature-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-black);
}

.signature-rating {
  font-size: 0.92rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.signature-tagline {
  color: var(--color-gray-dark);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.signature-specs {
  display: flex;
  gap: 1.25rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--color-charcoal);
  font-weight: 500;
}

.signature-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
}

.signature-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-black);
}

.signature-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-gray-mid);
}

/* ===== PROPERTY CARDS GRID ===== */
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 0, 0, 0.2);
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-bg-subtle);
}

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

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

.wishlist-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, box-shadow 0.2s ease;
  border: none;
  box-shadow: var(--shadow-sm);
}

.wishlist-btn:hover {
  background: var(--color-white);
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.wishlist-btn.active {
  animation: heartBounce 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wishlist-btn.active svg {
  fill: #ff385c;
  stroke: #ff385c;
}

.wishlist-btn svg {
  stroke: var(--color-black);
  fill: none;
  transition: transform 0.2s ease;
}

@keyframes heartBounce {
  0% { transform: scale(1); }
  40% { transform: scale(1.38); }
  70% { transform: scale(0.92); }
  100% { transform: scale(1); }
}

.superhost-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  color: var(--color-black);
  border: 1px solid rgba(197, 168, 128, 0.35);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.35rem;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-black);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.card-rating {
  font-size: 0.88rem;
  color: var(--color-black);
  font-weight: 700;
  margin-left: 8px;
  white-space: nowrap;
}

.card-location {
  font-size: 0.88rem;
  color: var(--color-gray-dark);
  margin-bottom: 0.75rem;
}

.card-price {
  font-size: 1rem;
  color: var(--color-black);
  margin-top: auto;
}

.card-price strong {
  font-weight: 700;
  font-size: 1.15rem;
}

.room-book-btn {
  width: fit-content;
  margin-top: 1.1rem;
}

/* ===== DESTINATION CARDS ===== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.destination-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 100%);
  color: var(--color-white);
}

.destination-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.destination-country {
  font-size: 0.82rem;
  opacity: 0.85;
}

/* ===== STATS SECTION ===== */
.stats-section {
  display: flex;
  justify-content: space-between;
  padding: 4.5rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin: 3rem 0;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--color-gray-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
  font-weight: 700;
}

/* ===== CTA & CONTACT SECTION ===== */
.cta-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

.cta-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-content h2 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.cta-content p {
  font-size: 1.05rem;
  color: var(--color-gray-dark);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-contact-box {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

/* ===== TESTIMONIAL ===== */
.testimonial-section {
  padding: 4.5rem 0;
  text-align: center;
  background: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto 1.5rem;
  color: var(--color-black);
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-gray-mid);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,0.28) 48%, transparent 76%);
  transform: translateX(-120%);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn > * {
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--color-black);
  color: var(--color-white);
  border: 1px solid var(--color-black);
}

.btn-primary:hover {
  background: var(--color-charcoal);
  border-color: var(--color-charcoal);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  background: transparent;
  color: var(--color-black);
  border: 1.5px solid var(--color-black);
}

.btn-outline:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
  border: none;
  font-weight: 700;
}

.btn-whatsapp:hover {
  background: var(--color-whatsapp-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-large {
  padding: 15px 32px;
  font-size: 1.05rem;
}

.btn-small {
  padding: 8px 18px;
  font-size: 0.82rem;
}

.btn-danger {
  background: #dc2626;
  color: var(--color-white);
  border: none;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: var(--color-whatsapp);
  color: var(--color-white);
  padding: 12px 22px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: floatPulse 3.4s ease-in-out infinite;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
  background: var(--color-whatsapp-dark);
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* ===== LOADING EXPERIENCE ===== */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 200000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(197, 168, 128, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,0.94), rgba(251,250,247,0.98)),
    rgba(251, 250, 247, 0.98);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.loader-seen .site-loader,
.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader-card {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  min-width: 260px;
  padding: 2rem;
  color: var(--color-black);
  animation: loaderLift 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.loader-mark {
  position: relative;
  width: 74px;
  height: 54px;
  display: grid;
  grid-template-columns: repeat(3, 8px);
  align-items: end;
  justify-content: center;
  gap: 8px;
}

.loader-mark::before {
  content: '';
  position: absolute;
  inset: 1px 10px auto;
  height: 42px;
  border: 2px solid rgba(10, 10, 10, 0.22);
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: 50% 100%;
  border-radius: 4px 4px 0 0;
  animation: roofGlow 1.6s ease-in-out infinite;
}

.loader-mark span {
  width: 8px;
  height: 22px;
  border-radius: var(--radius-full);
  background: var(--color-black);
  transform-origin: bottom;
  animation: stayBars 1.15s ease-in-out infinite;
}

.loader-mark span:nth-child(2) {
  height: 34px;
  animation-delay: 0.12s;
}

.loader-mark span:nth-child(3) {
  height: 27px;
  animation-delay: 0.24s;
}

.loader-brand {
  font-family: var(--font-serif);
  font-size: 2.05rem;
  font-weight: 700;
}

.loader-line {
  width: 164px;
  height: 3px;
  overflow: hidden;
  border-radius: var(--radius-full);
  background: rgba(10, 10, 10, 0.1);
}

.loader-line::after {
  content: '';
  display: block;
  width: 46%;
  height: 100%;
  border-radius: inherit;
  background: var(--color-black);
  animation: loaderSweep 0.9s ease-in-out infinite;
}

.loader-copy {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--color-gray-dark);
}

/* ===== PROPERTY DETAIL PAGE ===== */
.breadcrumb {
  padding: 1.25rem 0;
  font-size: 0.88rem;
  color: var(--color-gray-mid);
  display: flex;
  gap: 8px;
  align-items: center;
}

.breadcrumb a {
  color: var(--color-charcoal);
}

.breadcrumb a:hover {
  color: var(--color-black);
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--color-black);
  font-weight: 600;
}

.property-title-header {
  margin-bottom: 1.5rem;
}

.property-title-header h1 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 0.5rem;
}

.property-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

.property-meta-left {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 500;
}

.property-meta-actions {
  display: flex;
  gap: 0.9rem;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-subtle);
}

.action-btn:hover {
  background: var(--color-border);
}

/* Property Gallery Grid */
.property-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 190px 190px;
  gap: 10px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-md);
}

.gallery-main {
  grid-row: 1 / 3;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item {
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-main:hover, .gallery-item:hover {
  opacity: 0.94;
  transform: scale(1.01);
}

.gallery-show-all {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--color-black);
  border: 1px solid var(--color-black);
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.gallery-show-all:hover {
  background: var(--color-black);
  color: var(--color-white);
}

/* Property Main Layout */
.property-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4.5rem;
  padding-bottom: 4rem;
}

.host-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.75rem;
}

.host-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-border);
}

.host-info h3 {
  font-size: 1.15rem;
  font-weight: 600;
}

.host-info p {
  font-size: 0.88rem;
  color: var(--color-gray-mid);
}

.property-specs {
  display: flex;
  gap: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-charcoal);
}

.description-section {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 2rem;
}

.description-section h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
}

.desc-text {
  font-size: 1rem;
  color: var(--color-gray-dark);
  line-height: 1.8;
}

.amenities-section {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 2rem;
}

.amenities-section h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--color-charcoal);
  padding: 4px 0;
}

/* Booking Sidebar Card */
.booking-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 100px;
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
}

.booking-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-black);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.booking-price span.per-night {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-gray-mid);
}

.booking-inputs {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.date-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--color-border);
}

.input-group {
  padding: 10px 14px;
}

.input-group:first-child {
  border-right: 1px solid var(--color-border);
}

.input-group label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 2px;
}

.input-group input, .input-group select {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-charcoal);
}

.booking-reserve-btn {
  width: 100%;
  margin-bottom: 0.75rem;
  padding: 14px;
}

.booking-whatsapp-inquiry {
  width: 100%;
  margin-bottom: 1rem;
}

.booking-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-gray-mid);
  margin-bottom: 1.25rem;
}

.price-breakdown {
  border-top: 1px solid var(--color-border);
  padding-top: 1.25rem;
}

.price-line {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 0.92rem;
  color: var(--color-gray-dark);
}

.price-line.total-line {
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
  margin-top: 0.75rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-black);
}

/* Reviews */
.reviews-section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--color-border);
  margin-bottom: 2rem;
}

.reviews-header {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.rating-bars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 3.5rem;
  margin-bottom: 2.5rem;
}

.rating-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
}

.rating-bar-item span:first-child {
  width: 120px;
  flex-shrink: 0;
}

.rating-progress-bg {
  flex: 1;
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  overflow: hidden;
}

.rating-progress-fg {
  height: 100%;
  background: var(--color-black);
  border-radius: 2px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.review-card {
  padding: 1.25rem;
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}

.review-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.review-text {
  font-size: 0.92rem;
  color: var(--color-gray-dark);
  line-height: 1.6;
}

/* ===== SEARCH PAGE ===== */
.search-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  padding: 2.5rem 0 4rem;
}

.filters-sidebar {
  padding-right: 1.5rem;
  border-right: 1px solid var(--color-border);
}

.filter-group {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--color-border-subtle);
}

.filter-label {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
  color: var(--color-black);
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-charcoal);
  margin-bottom: 8px;
  cursor: pointer;
}

.filter-checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-black);
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.results-count {
  font-size: 1.1rem;
  font-weight: 700;
}

.sort-select {
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  background: var(--color-white);
  outline: none;
  cursor: pointer;
}

/* ===== BOOKING PAGE ===== */
.booking-page-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  padding: 3rem 0 5rem;
}

.booking-form-col h1 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-black);
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--color-black);
  outline: none;
  box-shadow: var(--shadow-sm);
}

.form-error {
  font-size: 0.8rem;
  color: #dc2626;
  margin-top: 4px;
  display: none;
}

.form-error.visible {
  display: block;
}

.booking-summary-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}

.booking-property-preview {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
}

.booking-property-preview img {
  width: 110px;
  height: 80px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.booking-details-box {
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.9rem;
}

/* ===== CONFIRMATION SCREEN ===== */
.confirmation-screen {
  text-align: center;
  padding: 4rem 0;
  max-width: 640px;
  margin: 0 auto;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.5rem;
}

.confirmation-screen h1 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.confirmation-details {
  text-align: left;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
  background: var(--color-bg-light);
}

.confirmation-actions {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
}

/* ===== TRIPS & WISHLIST PAGES ===== */
.page-title-section {
  padding: 2.5rem 0 1.5rem;
}

.page-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.trips-tabs {
  display: flex;
  gap: 2rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 2.5rem;
}

.trip-tab {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gray-mid);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.trip-tab.active {
  color: var(--color-black);
  border-bottom-color: var(--color-black);
}

.trip-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 1.5rem;
}

.trip-card:hover {
  box-shadow: var(--shadow-md);
}

.trip-card-img {
  width: 180px;
  height: 130px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.empty-state {
  text-align: center;
  padding: 4.5rem 1rem;
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--color-border);
}

.empty-state-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

/* ===== LIGHTBOX & VIDEO MODAL ===== */
.lightbox-overlay, .video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close, .modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--color-white);
  font-size: 2.05rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  z-index: 10001;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-white);
  font-size: 2.05rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  color: var(--color-black);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.65rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--color-gray-dark);
}

.footer-col a:hover {
  color: var(--color-black);
}

.footer-brand-bio {
  font-size: 0.92rem;
  color: var(--color-gray-dark);
  line-height: 1.7;
  margin-top: 0.75rem;
  max-width: 320px;
}

.footer-contact-info {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.85rem;
  color: var(--color-gray-mid);
}

.footer-social {
  display: flex;
  gap: 1.25rem;
  font-size: 1.2rem;
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  min-width: 280px;
  max-width: 420px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-white);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  animation: slideInRight 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.3s ease, transform 0.3s ease;
  background: rgba(18, 18, 18, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.toast.toast-hide {
  opacity: 0;
  transform: translateX(30px);
}

.toast-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
}

.toast-message {
  flex: 1;
  line-height: 1.4;
}

.toast-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 2px 6px;
  line-height: 1;
  border-radius: 4px;
  transition: color 0.15s ease;
}

.toast-close:hover {
  color: #fff;
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.35);
  width: 100%;
  transform-origin: left;
  animation: toastProgress 3.5s linear forwards;
}

@keyframes toastProgress {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}

.toast-success { border-left: 4px solid #22c55e; }
.toast-error { border-left: 4px solid #ef4444; }
.toast-info { border-left: 4px solid var(--color-accent-gold); }
.toast-warning { border-left: 4px solid #f59e0b; }

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Skeleton Loading */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e4e4e4 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-card {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.skeleton-img {
  height: 220px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e4e4e4 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* ===== SINGLE LOCATION HOMEPAGE REFRESH ===== */
.single-location-home {
  background: #fbfaf7;
}

.dn-hero {
  min-height: calc(100vh - 74px);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--color-white);
  padding: 9rem 0 4.8rem;
  isolation: isolate;
}

.dn-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 8, 0.86) 0%, rgba(5, 7, 8, 0.68) 31%, rgba(5, 7, 8, 0.28) 61%, rgba(5, 7, 8, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 7, 8, 0.14) 0%, rgba(5, 7, 8, 0.48) 100%);
  z-index: 1;
}

.dn-hero-media {
  position: absolute;
  inset: 0;
  background: var(--color-black);
}

.dn-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 48%;
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.dn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.12) 48%, transparent 68%);
  transform: translateX(-115%);
  animation: heroLightPass 6.5s ease-in-out 1s infinite;
  pointer-events: none;
}

.dn-hero-inner {
  position: relative;
  z-index: 2;
  width: min(92%, 1280px);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.dn-kicker {
  display: inline-flex;
  border-radius: 0;
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  margin-bottom: 1.45rem;
  color: rgba(255,255,255,0.92);
}

.dn-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.6rem, 6vw, 6.05rem);
  line-height: 1.04;
  max-width: 720px;
  font-weight: 400;
  margin-bottom: 1.55rem;
  text-shadow: 0 18px 45px rgba(0,0,0,0.36);
}

.dn-hero p {
  max-width: 660px;
  font-size: 1.22rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 12px 32px rgba(0,0,0,0.38);
}

.dn-hero-actions {
  display: flex;
  gap: 1.05rem;
  flex-wrap: wrap;
  margin-top: 2.6rem;
}

.dn-hero-actions .btn {
  min-width: 188px;
  min-height: 64px;
  border-radius: 8px;
  font-weight: 800;
}

.dn-hero-actions .btn-primary {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
  box-shadow: 0 18px 42px rgba(0,0,0,0.26);
}

.dn-hero-actions .btn-primary:hover {
  background: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.92);
  color: var(--color-black);
  transform: translateY(-3px);
}

.dn-hero-actions svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dn-hero-actions .btn-outline {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.68);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.dn-hero-actions .btn-outline:hover {
  background: var(--color-white);
  color: var(--color-black);
  transform: translateY(-3px);
}

.dn-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: fit-content;
  max-width: 100%;
  margin-top: 4rem;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 54px rgba(0,0,0,0.24);
}

.dn-hero-stats > span {
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.dn-hero-stats > span:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.dn-hero-stats span {
  display: inline-flex;
  gap: 0.9rem;
  align-items: center;
  min-width: 214px;
  padding: 1.05rem 1.45rem;
  color: rgba(255,255,255,0.9);
}

.dn-hero-stats > span + span {
  border-left: 1px solid rgba(255,255,255,0.2);
}

.dn-hero-stats svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  fill: none;
  stroke: rgba(255,255,255,0.92);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dn-hero-stats span span {
  display: grid;
  min-width: 0;
  gap: 0.12rem;
  padding: 0;
  color: rgba(255,255,255,0.86);
  line-height: 1.4;
}

.dn-hero-stats strong {
  color: var(--color-white);
  font-size: 0.9rem;
}

.dn-gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr;
  grid-template-rows: 230px 230px;
  gap: 12px;
  padding: 5rem 0 4rem;
}

.dn-gallery > div {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-black);
  position: relative;
  box-shadow: 0 12px 36px rgba(18, 18, 18, 0.08);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.dn-gallery > div:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 52px rgba(18, 18, 18, 0.14);
}

.dn-gallery-large {
  grid-row: span 2;
}

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

.dn-gallery div:hover img {
  transform: scale(1.05);
}

.dn-video-tile {
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(10,10,10,0.3), rgba(10,10,10,0.35)),
    url('../photos-videos/2600/WhatsApp Image 2026-08-26 at 10.50.20 PM (1).jpeg') center / cover;
}

.dn-video-tile button {
  background: rgba(255,255,255,0.92);
  color: var(--color-black);
  border-radius: var(--radius-full);
  padding: 12px 22px;
  font-weight: 800;
  box-shadow: var(--shadow-lg);
}

.dn-video-tile button:hover {
  transform: translateY(-2px) scale(1.03);
}

.single-location-home .signature-section {
  background: #f2f0ea;
}

.single-location-home .signature-card {
  border-radius: var(--radius-md);
  box-shadow: 0 18px 60px rgba(18, 18, 18, 0.08);
}

.dn-booking-section {
  padding: 5rem 0;
  background: #fbfaf7;
}

.dn-booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 4rem;
  align-items: start;
}

.dn-booking-copy {
  position: sticky;
  top: 110px;
}

.dn-booking-copy p {
  max-width: 560px;
  margin-top: 1rem;
  color: var(--color-gray-dark);
  font-size: 1.05rem;
  line-height: 1.8;
}

.dn-booking-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.dn-booking-highlights span {
  border: 1px solid var(--color-border);
  background: var(--color-white);
  border-radius: var(--radius-full);
  color: var(--color-charcoal);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.55rem 0.9rem;
}

.dn-booking-form {
  display: grid;
  gap: 1.1rem;
  padding: 2rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 60px rgba(18, 18, 18, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.dn-booking-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(18, 18, 18, 0.11);
}

.dn-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.dn-booking-form .form-group {
  margin-bottom: 0;
}

.dn-booking-form textarea {
  resize: vertical;
  min-height: 92px;
}

.dn-booking-estimate {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--color-bg-light);
  border: 1px solid var(--color-border-subtle);
  color: var(--color-charcoal);
  font-size: 0.92rem;
  font-weight: 700;
}

.dn-form-note {
  display: grid;
  gap: 0.7rem;
  color: var(--color-charcoal);
  font-size: 0.92rem;
  line-height: 1.55;
}

.dn-form-note:empty {
  display: none;
}

.dn-form-note span {
  display: block;
  color: var(--color-gray-dark);
}

.dn-form-note .btn,
.dn-form-note .section-link {
  width: fit-content;
}

.dn-location-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  padding: 5rem 0;
  align-items: center;
}

.dn-location-copy p {
  color: var(--color-gray-dark);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 620px;
  margin-top: 1rem;
}

.dn-contact-stack {
  display: grid;
  gap: 0.8rem;
}

.dn-contact-stack a {
  display: flex;
  justify-content: space-between;
  gap: 0.9rem;
  align-items: center;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.dn-contact-stack a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-black);
}

.dn-contact-stack span {
  color: var(--color-gray-dark);
  font-size: 0.9rem;
  text-align: right;
}

.dn-comfort-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 4rem;
}

.dn-comfort-strip div {
  background: var(--color-white);
  padding: 1.35rem;
  display: grid;
  gap: 0.25rem;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.dn-comfort-strip div:hover {
  background: #fffdf8;
  transform: translateY(-2px);
}

.dn-comfort-strip span {
  color: var(--color-gray-dark);
  font-size: 0.9rem;
}

.dn-video-modal {
  width: 90%;
  max-width: 820px;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.dn-video-modal h3 {
  color: #fff;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  border-bottom: 1px solid #333;
  margin: 0;
}

.dn-video-modal video {
  width: 100%;
  max-height: 72vh;
  display: block;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.visible {
  animation: revealUp 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reveal.visible .card,
.reveal.visible .dn-booking-form,
.reveal.visible .dn-booking-copy {
  animation: revealUp 0.68s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reveal.visible .card:nth-child(2),
.reveal.visible .dn-booking-form {
  animation-delay: 0.09s;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger animation delays */
.dn-gallery > div:nth-child(1),
.dn-contact-stack > a:nth-child(1),
.dn-comfort-strip > div:nth-child(1) {
  animation: none;
}

.dn-gallery > div:nth-child(2),
.dn-contact-stack > a:nth-child(2),
.dn-comfort-strip > div:nth-child(2) {
  animation: none;
}

.dn-gallery > div:nth-child(3),
.dn-contact-stack > a:nth-child(3),
.dn-comfort-strip > div:nth-child(3) {
  animation: none;
}

.dn-gallery > div:nth-child(4),
.dn-contact-stack > a:nth-child(4),
.dn-comfort-strip > div:nth-child(4) {
  animation: none;
}

.dn-gallery.visible > div:nth-child(1),
.dn-contact-stack.visible > a:nth-child(1),
.dn-comfort-strip.visible > div:nth-child(1) {
  animation: revealUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}

.dn-gallery.visible > div:nth-child(2),
.dn-contact-stack.visible > a:nth-child(2),
.dn-comfort-strip.visible > div:nth-child(2) {
  animation: revealUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

.dn-gallery.visible > div:nth-child(3),
.dn-contact-stack.visible > a:nth-child(3),
.dn-comfort-strip.visible > div:nth-child(3) {
  animation: revealUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}

.dn-gallery.visible > div:nth-child(4),
.dn-contact-stack.visible > a:nth-child(4),
.dn-comfort-strip.visible > div:nth-child(4) {
  animation: revealUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.24s both;
}

@keyframes heroDrift {
  from { transform: scale(1.02) translateY(0); }
  to { transform: scale(1.08) translateY(-12px); }
}

@keyframes heroLightPass {
  0%, 46% { transform: translateX(-115%); opacity: 0; }
  56% { opacity: 1; }
  76%, 100% { transform: translateX(115%); opacity: 0; }
}

@keyframes floatPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes loaderLift {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loaderSweep {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(250%); }
}

@keyframes stayBars {
  0%, 100% {
    opacity: 0.45;
    transform: scaleY(0.72);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes roofGlow {
  0%, 100% { border-color: rgba(10, 10, 10, 0.18); }
  50% { border-color: rgba(197, 168, 128, 0.75); }
}

/* ===== ACCESSIBILITY & MOTION ===== */
:focus-visible {
  outline: 2px solid var(--color-black);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .site-loader {
    display: none !important;
  }
}



.review-form {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  display: grid;
  gap: 1rem;
}

.review-form h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0;
}

.review-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-black);
  color: var(--color-white);
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 0.82rem;
  font-weight: 800;
}

.review-form .dn-form-note {
  margin: 0;
}

@media (max-width: 640px) {
  .review-form-grid {
    grid-template-columns: 1fr;
  }
}

.card-actions-row {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  flex-wrap: wrap;
}

.card-actions-row .btn {
  flex: 1 1 120px;
  justify-content: center;
}


.bottom-review-section {
  padding: 3rem 0 4rem;
  border-top: 1px solid var(--color-border);
}

.bottom-review-section .section-header {
  margin-bottom: 1.25rem;
}

