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

:root {
  --primary: #E91E8C;
  --primary-dark: #c0176f;
  --accent: #FF6B6B;
  --dark: #1a1a2e;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --border: #e5e7eb;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; object-fit: cover; }
ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.section-sub {
  color: var(--gray);
  margin-bottom: 40px;
  font-size: 1rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(233,30,140,0.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233,30,140,0.4);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--primary); }

.btn-nav {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(233,30,140,0.25);
  transition: all var(--transition) !important;
}
.btn-nav:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px;
  gap: 12px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-weight: 500;
  padding: 8px 0;
  color: var(--dark);
}
.mobile-menu .btn-nav {
  text-align: center;
  padding: 12px 24px !important;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 24px;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  background: rgba(233,30,140,0.9);
  color: white;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: 1.1rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* ===== STATS ===== */
.stats {
  background: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 10;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 24px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }

.stat-icon { font-size: 1.5rem; }
.stat strong { font-size: 1.6rem; font-weight: 700; color: var(--dark); }
.stat span:last-child { font-size: 0.85rem; color: var(--gray); font-weight: 500; }

/* ===== ABOUT ===== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--gray); margin-bottom: 16px; line-height: 1.8; }
.about-text p strong { color: var(--dark); }

.about-host {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.host-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
  margin-bottom: 8px;
}

.host-name { font-size: 1.2rem; font-weight: 700; }
.host-bio { font-size: 0.85rem; color: var(--primary); font-weight: 500; margin-bottom: 4px; }
.about-host p { color: var(--gray); font-size: 0.95rem; }

/* ===== THE SPACE ===== */
.space-details { padding-bottom: 60px; }
.space-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.space-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.space-card:hover { transform: translateY(-2px); }
.space-card h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--dark); }
.space-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; }

/* ===== BEDROOMS ===== */
.bedrooms-section { padding-bottom: 60px; }
.bedrooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.bedroom-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.bedroom-card h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--dark); }
.bedroom-card .bed-type {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.bedroom-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.5; }

/* ===== HIGHLIGHTS ===== */
.highlights-section { padding-bottom: 60px; }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.highlight-item {
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.5;
}

/* ===== PERFECT FOR ===== */
.perfect-for-section { padding-bottom: 60px; }
.perfect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.perfect-item {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: var(--shadow);
  font-size: 1rem;
  color: var(--dark);
  text-align: center;
}

/* ===== GUEST ACCESS ===== */
.guest-access-section { padding-bottom: 60px; }
.guest-access-box {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
  margin-top: 16px;
}
.guest-access-box p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.guest-access-box p:last-child { margin-bottom: 0; }

/* ===== GALLERY ===== */
.gallery-section { padding: 0 0 80px; }
.gallery-section .container { padding-bottom: 32px; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-height: 600px;
}

.gallery-main img {
  height: 600px;
  border-radius: var(--radius) 0 0 var(--radius);
}

.gallery-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.gallery-side img {
  height: 296px;
}
.gallery-side img:nth-child(2) { border-radius: 0 var(--radius) 0 0; }
.gallery-side img:nth-child(4) { border-radius: 0 0 var(--radius) 0; }

/* ===== AMENITIES ===== */
.amenities { background: var(--light-gray); border-radius: var(--radius); padding: 60px; max-width: 1100px; }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.amenity {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.amenity:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.amenity span { font-size: 1.3rem; }

/* ===== NEARBY ATTRACTIONS ===== */
.nearby-section { padding-top: 0; }

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.nearby-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.nearby-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.nearby-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.nearby-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.nearby-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 14px;
}

.nearby-tag {
  display: inline-block;
  background: rgba(233,30,140,0.08);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ===== PRICING ===== */
.pricing-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: var(--white);
}
.pricing-section .container { padding-top: 80px; padding-bottom: 80px; }
.pricing-section h2 { color: var(--white); }
.pricing-section .section-sub { color: rgba(255,255,255,0.6); }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.pricing-card.featured {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.05);
}
.pricing-card.featured:hover { transform: scale(1.05) translateY(-4px); }

.badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFD700;
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  opacity: 0.8;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1;
}
.price small { font-size: 1rem; font-weight: 400; opacity: 0.7; }

.discount-save {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1;
  color: #4ade80;
}

.pricing-card ul { margin-bottom: 32px; }
.pricing-card li {
  padding: 8px 0;
  font-size: 0.9rem;
  opacity: 0.85;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pricing-card li:last-child { border-bottom: none; }

.pricing-card .btn-primary {
  background: var(--white);
  color: var(--primary);
  box-shadow: none;
}
.pricing-card.featured .btn-primary {
  background: var(--dark);
  color: var(--white);
}

.pricing-note {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

/* ===== BOOKING FORM ===== */
.booking-section {
  background: var(--light-gray);
}
.booking-section .container { padding-top: 80px; padding-bottom: 80px; }

.booking-wrapper {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
}

.booking-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(233,30,140,0.1);
}

.form-group input.error,
.form-group select.error {
  border-color: #ef4444;
}

.form-group textarea { resize: vertical; }

/* Price Estimate */
.price-estimate {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  padding: 20px 24px;
}
.price-estimate h4 { font-size: 1rem; margin-bottom: 12px; color: #166534; }
.estimate-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.9rem;
  color: #374151;
  border-bottom: 1px solid #d1fae5;
}
.estimate-row:last-of-type { border-bottom: none; }
.estimate-row.total {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  padding-top: 12px;
  margin-top: 4px;
  border-top: 2px solid #bbf7d0;
}
.estimate-note { font-size: 0.8rem; color: #6b7280; margin-top: 8px; }

.btn-submit {
  width: 100%;
  font-size: 1.1rem;
  padding: 16px;
  border-radius: var(--radius-sm);
}

.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray);
}

/* Success */
.form-success {
  text-align: center;
  padding: 48px 24px;
}
.success-icon { font-size: 4rem; margin-bottom: 20px; }
.form-success h3 { font-size: 1.6rem; margin-bottom: 12px; }
.form-success p { color: var(--gray); margin-bottom: 28px; }

/* ===== HOUSE RULES ===== */
.rules-section {
  background: var(--white);
}
.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.rules-group h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.rules-group li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
}
.rules-group li:last-child { border-bottom: none; }

/* ===== LOCATION ===== */
.location-section {}

.map-placeholder {
  background: var(--light-gray);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  margin-bottom: 32px;
  gap: 8px;
}
.map-placeholder span { font-size: 2rem; }
.map-placeholder p { font-size: 0.9rem; }

.location-highlights {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.loc-item {
  background: var(--light-gray);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
}
.loc-item span { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.loc-item strong { display: block; font-size: 0.95rem; margin-bottom: 4px; }
.loc-item p { font-size: 0.85rem; color: var(--gray); }

/* ===== REVIEWS ===== */
.reviews-section {
  background: var(--light-gray);
}
.reviews-viewport {
  overflow: hidden;
  padding: 8px 4px;
}
.reviews-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}
.reviews-page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.review-card:hover { transform: translateY(-4px); }
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.reviews-dot:hover { transform: scale(1.15); }
.reviews-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.review-header img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.review-header strong { display: block; font-size: 0.95rem; }
.review-header span { font-size: 0.8rem; color: var(--gray); }
.stars { font-size: 0.85rem; margin-bottom: 10px; }
.review-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; font-style: italic; }

/* ===== CONTACT ===== */
.contact-section {}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.contact-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.contact-card span { font-size: 2rem; }
.contact-card strong { font-size: 1rem; color: var(--dark); }
.contact-card p { font-size: 0.875rem; color: var(--primary); font-weight: 500; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-brand .nav-logo { display: block; margin-bottom: 8px; color: var(--white); }
.footer-brand p { font-size: 0.875rem; }
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--primary); }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ===================================================
   AVAILABILITY CALENDAR MODAL
   =================================================== */

.avail-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.avail-modal.active { display: flex; }

.avail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.avail-modal-inner {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 860px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
}

/* --- Header --- */
.avail-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px 16px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 2;
  border-radius: 20px 20px 0 0;
}
.avail-header-left h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.avail-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Sync overlay — centered circular widget */
.sync-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 50;
  border-radius: 16px;
  animation: syncFadeIn 0.25s ease;
}
.sync-overlay.sync-fade-out {
  animation: syncFadeOut 0.3s ease forwards;
}
@keyframes syncFadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes syncFadeOut { from { opacity: 1; } to { opacity: 0; } }

.sync-widget {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sync-ring {
  position: absolute;
  width: 100%;
  height: 100%;
}
.sync-ring-bg {
  fill: none;
  stroke: #e5e7eb;
  stroke-width: 4;
}
.sync-ring-fg {
  fill: none;
  stroke: #222;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 213;
  stroke-dashoffset: 213;
  transform-origin: center;
  animation: syncSpin 1.4s linear infinite, syncDash 1.4s ease-in-out infinite;
}
@keyframes syncSpin {
  100% { transform: rotate(360deg); }
}
@keyframes syncDash {
  0%   { stroke-dashoffset: 213; }
  50%  { stroke-dashoffset: 53; }
  100% { stroke-dashoffset: 213; }
}
.sync-icon {
  font-size: 2rem;
  z-index: 1;
}
.sync-label {
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #222;
  letter-spacing: 0.3px;
}

.btn-sync {
  background: var(--light-gray);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.btn-sync:hover { background: var(--border); }
.btn-sync:disabled { opacity: 0.5; cursor: not-allowed; }

.avail-modal-close {
  background: var(--light-gray);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
}
.avail-modal-close:hover { background: var(--border); }

/* --- Legend --- */
.avail-legend {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 12px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--light-gray);
}
.leg-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 500;
}
.leg-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.avail-dot   { background: #dcfce7; border: 2px solid #16a34a; }
.booked-dot  { background: #f3f4f6; border: 2px solid #d1d5db; }
.checkin-dot { background: var(--primary); }
.checkout-dot{ background: var(--primary-dark); }
.range-dot   { background: rgba(233,30,140,0.15); border: 2px solid rgba(233,30,140,0.3); }

/* --- Navigation --- */
.avail-nav {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 20px 16px;
  flex: 1;
}

.avail-nav-btn {
  background: var(--light-gray);
  border: 1px solid var(--border);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 36px;
  transition: background var(--transition), transform var(--transition);
  line-height: 1;
}
.avail-nav-btn:hover { background: var(--border); transform: scale(1.08); }

/* --- Calendars Grid --- */
.avail-calendars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex: 1;
}

/* --- Single Month --- */
.cal-month {
  min-width: 0;
}
.cal-month-title {
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0 0 12px;
  color: var(--dark);
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-day-name {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray);
  padding: 4px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
/* --- Airbnb-style day cells --- */
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border-radius: 50%;
  cursor: default;
  position: relative;
  font-weight: 500;
  transition: background 0.15s, color 0.15s, transform 0.1s;
  user-select: none;
}
.cal-day.empty { background: transparent; }

/* Locked state — before Airbnb sync completes */
.cal-day.cal-locked {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Past dates */
.cal-day.past {
  color: #b0b0b0;
  cursor: not-allowed;
}

/* Today */
.cal-day.today:not(.booked) {
  font-weight: 800;
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Available */
.cal-day.available {
  cursor: pointer;
  color: var(--dark);
  font-weight: 600;
}
.cal-day.available:hover {
  background: #222;
  color: #fff;
  transform: scale(1.05);
}

/* Booked / unavailable */
.cal-day.booked {
  color: #b0b0b0;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* In range (between check-in and check-out) */
.cal-day.in-range {
  background: #f0f0f0;
  color: var(--dark);
  border-radius: 0;
  cursor: pointer;
}
.cal-day.in-range:hover {
  background: #e0e0e0;
}

/* Check-in selected */
.cal-day.is-checkin {
  background: #222 !important;
  color: white !important;
  border-radius: 50% 0 0 50%;
  font-weight: 700;
  cursor: pointer;
}

/* Check-out selected */
.cal-day.is-checkout {
  background: #222 !important;
  color: white !important;
  border-radius: 0 50% 50% 0;
  font-weight: 700;
  cursor: pointer;
}

/* Single day selection (same day check-in/out) */
.cal-day.is-checkin.is-checkout {
  border-radius: 50%;
}

/* Loading spinner inside calendar */
.cal-loading {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  gap: 12px;
  color: var(--gray);
}
.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* iCal setup notice */
.ical-notice {
  background: #fefce8;
  border: 1px solid #fde68a;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.85rem;
  color: #92400e;
  margin: 0 28px 16px;
  line-height: 1.6;
}
.ical-notice strong { color: #78350f; }
.ical-notice code {
  background: #fef3c7;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-family: monospace;
}

/* Min-stay notice */
.cal-minstay-notice {
  background: #f0f4ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.82rem;
  margin: 8px 28px 0;
  line-height: 1.5;
}
.cal-minstay-notice strong {
  color: #1e3a8a;
}

/* --- Footer / Selection summary --- */
.avail-footer {
  border-top: 1px solid var(--border);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--white);
  border-radius: 0 0 20px 20px;
  position: sticky;
  bottom: 0;
}
.avail-selection {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.sel-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sel-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray);
}
.sel-item strong {
  font-size: 0.95rem;
  color: var(--dark);
}
.sel-arrow {
  font-size: 1.2rem;
  color: var(--gray);
}
.btn-continue {
  padding: 12px 28px;
  white-space: nowrap;
}
.btn-continue:disabled {
  background: #e5e7eb;
  color: #9ca3af;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

/* Calendar price breakdown */
.cal-breakdown {
  width: 100%;
  margin-top: 8px;
  font-size: 0.85rem;
}
.cal-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
}
.cal-row:last-child { border-bottom: none; }
.cal-row.cal-discount {
  color: #16a34a;
  font-weight: 600;
}
.cal-row.cal-total {
  border-top: 2px solid #e2e8f0;
  border-bottom: none;
  padding-top: 10px;
  margin-top: 4px;
  font-weight: 700;
  font-size: 1rem;
  color: #0f172a;
}

/* Booking form discount row */
.estimate-row.discount {
  color: #16a34a;
  font-weight: 600;
}

/* Responsive calendar */
@media (max-width: 680px) {
  .avail-calendars { grid-template-columns: 1fr; }
  .avail-modal-inner { max-height: 96vh; }
  .avail-footer { flex-direction: column; align-items: flex-start; }
  .btn-continue { width: 100%; text-align: center; }
  .avail-legend { gap: 12px; }
}

/* ===== GALLERY CTA ===== */
.gallery-cta-wrap {
  text-align: center;
  padding: 24px 0 0;
}

/* ===== GALLERY CLICKABLE ===== */
.gallery-thumb { cursor: pointer; transition: opacity 0.2s; }
.gallery-thumb:hover { opacity: 0.88; }

/* ===== GALLERY MORE OVERLAY ===== */
.gallery-more {
  position: relative;
  overflow: hidden;
}
.gallery-more img { width: 100%; height: 100%; object-fit: cover; }
.gallery-more-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.gallery-more:hover .gallery-more-overlay { background: rgba(0,0,0,0.65); }
.gallery-more-overlay span {
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 92vw;
  max-height: 92vh;
  gap: 16px;
}

.lightbox-img {
  max-width: 80vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
  display: block;
  width: auto;
  height: auto;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }

.lightbox-prev,
.lightbox-next {
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 2.5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
  z-index: 2;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
}

.lightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  background: rgba(0,0,0,0.5);
  padding: 6px 16px;
  border-radius: 50px;
  z-index: 2;
}

/* ===== FULL GALLERY MODAL ===== */
.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 8000;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 20px;
}
.gallery-modal.active { display: flex; }

.gallery-modal-inner {
  background: var(--white);
  border-radius: var(--radius);
  width: 100%;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
}

.gallery-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}
.gallery-modal-header h3 { font-size: 1.1rem; }

.gallery-modal-close {
  background: var(--light-gray);
  border: none;
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.gallery-modal-close:hover { background: var(--border); }

.gallery-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 4px;
  padding: 4px;
}

.gallery-modal-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.gallery-modal-grid img:hover {
  opacity: 0.88;
  transform: scale(1.02);
}

/* Fix map placeholder to show iframe */
.map-placeholder {
  border: none;
  background: none;
  height: 360px;
  padding: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: block; }

  .about { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: 1fr; max-height: none; }
  .gallery-main img { height: 300px; border-radius: var(--radius) var(--radius) 0 0; }
  .gallery-side { grid-template-columns: 1fr 1fr; }
  .gallery-side img { height: 200px; }
  .gallery-side img:nth-child(2) { border-radius: 0; }
  .gallery-side img:nth-child(4) { border-radius: 0 0 var(--radius) var(--radius); }

  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: scale(1); }
  .rules-grid { grid-template-columns: 1fr; }
  .reviews-page { grid-template-columns: 1fr; gap: 16px; }
  .review-card { padding: 20px; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .location-highlights { grid-template-columns: repeat(3, 1fr); }
  .amenities { padding: 40px 24px; }
  .space-grid { grid-template-columns: 1fr; }
  .bedrooms-grid { grid-template-columns: 1fr 1fr; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .perfect-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  h2 { font-size: 1.6rem; }
  .container { padding: 60px 20px; }
  .stats-inner { gap: 0; }
  .stat { padding: 12px 16px; min-width: 100px; }
  .form-row { grid-template-columns: 1fr; }
  .booking-wrapper { padding: 28px 20px; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .location-highlights { grid-template-columns: repeat(3, 1fr); }
  .gallery-side { grid-template-columns: 1fr; }
  .gallery-side img { height: 220px; }
  .bedrooms-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .perfect-grid { grid-template-columns: 1fr; }
}

/* ===== LANDING PAGE ===== */
.landing-hero {
  background: linear-gradient(135deg, #fdf6f0 0%, #f0e9e0 100%);
  padding: 80px 24px 100px;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.landing-hero-content { max-width: 720px; }
.landing-logo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  margin-bottom: 24px;
}
.landing-hero h1 {
  font-size: 3rem;
  color: var(--dark);
  margin-bottom: 16px;
  font-weight: 800;
}
.landing-tagline {
  font-size: 1.2rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* ===== PROPERTIES GRID ===== */
.properties-section { padding-top: 80px; padding-bottom: 80px; }
.properties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 32px;
}
.property-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.property-card.available:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.property-card.coming-soon {
  opacity: 0.85;
  cursor: default;
}
.property-image {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--light-gray);
}
.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.property-card.available:hover .property-image img { transform: scale(1.05); }
.property-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 5rem;
  color: #d1d5db;
}
.property-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #16a34a;
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.property-badge.soon { background: #6b7280; }
.property-info {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.property-info h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin: 0;
}
.property-location {
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 600;
}
.property-summary {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}
.property-stats {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 500;
  padding: 12px 0;
  border-top: 1px solid var(--light-gray);
}
.property-cta {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
}
.property-cta.disabled { color: var(--gray); }

/* ===== LANDING ABOUT ===== */
.landing-about {
  text-align: center;
  padding: 60px 24px;
}
.landing-about-inner { max-width: 720px; margin: 0 auto; }
.landing-about p {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 32px 0;
  text-align: center;
}
.footer-inner { padding: 0 24px; }
.footer-inner p {
  margin-bottom: 6px;
  font-size: 0.9rem;
}

/* ===== LANDING RESPONSIVE ===== */
@media (max-width: 900px) {
  .landing-hero h1 { font-size: 2.2rem; }
  .properties-grid { grid-template-columns: 1fr; }
  .landing-logo { width: 160px; height: 160px; }
}

/* ===== MODERN BEIGE THEME ===== */
body.theme-beige {
  --primary: #B8916A;
  --primary-dark: #8E6E4F;
  --accent: #C7A17A;
  --dark: #2D2520;
  --gray: #6B5D52;
  --light-gray: #F5F0E8;
  --white: #FBF8F3;
  background: #FBF8F3;
  color: #2D2520;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: -0.01em;
}
body.theme-beige .navbar {
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 145, 106, 0.15);
}
body.theme-beige .nav-logo { color: #2D2520; font-weight: 700; letter-spacing: 0.02em; }
body.theme-beige .nav-links a { color: #2D2520; }
body.theme-beige .nav-links a:hover { color: #B8916A; }
body.theme-beige .btn-primary,
body.theme-beige .btn-nav {
  background: #2D2520;
  color: #FBF8F3;
  border-radius: 8px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  box-shadow: none;
}
body.theme-beige .btn-primary:hover,
body.theme-beige .btn-nav:hover {
  background: #B8916A;
  color: #FBF8F3;
}
body.theme-beige .btn-secondary {
  background: transparent;
  color: #2D2520;
  border: 1.5px solid #2D2520;
  border-radius: 8px;
  font-weight: 500;
}
body.theme-beige .btn-secondary:hover {
  background: #2D2520;
  color: #FBF8F3;
}
body.theme-beige h1,
body.theme-beige h2,
body.theme-beige h3 {
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #2D2520;
}
body.theme-beige .hero { background: #F5F0E8; }
body.theme-beige .hero-overlay {
  background: linear-gradient(180deg, rgba(45,37,32,0.25) 0%, rgba(45,37,32,0.7) 100%);
}
body.theme-beige .hero-content,
body.theme-beige .hero-content h1,
body.theme-beige .hero-content .hero-sub,
body.theme-beige .hero-content .hero-badge {
  color: #FBF8F3;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}
body.theme-beige .hero-content .hero-badge {
  background: rgba(184, 145, 106, 0.95);
}
body.theme-beige .stats-bar { background: #FBF8F3; border-color: rgba(184, 145, 106, 0.2); }
body.theme-beige .about,
body.theme-beige .amenities,
body.theme-beige .booking-section,
body.theme-beige .reviews-section,
body.theme-beige .contact-section,
body.theme-beige .nearby-section,
body.theme-beige .location-section,
body.theme-beige .rules-section,
body.theme-beige .space-details,
body.theme-beige .bedrooms-section,
body.theme-beige .highlights-section,
body.theme-beige .perfect-for-section,
body.theme-beige .guest-access-section,
body.theme-beige .pricing-section { background: transparent; }
body.theme-beige .reviews-section,
body.theme-beige .rules-section { background: #F5F0E8; }
body.theme-beige .amenity,
body.theme-beige .review-card,
body.theme-beige .pricing-card,
body.theme-beige .nearby-card,
body.theme-beige .contact-card,
body.theme-beige .space-card,
body.theme-beige .bedroom-card,
body.theme-beige .highlight-item,
body.theme-beige .perfect-item,
body.theme-beige .guest-access-box,
body.theme-beige .booking-wrapper,
body.theme-beige .rules-group {
  background: #FBF8F3;
  border: 1px solid rgba(184, 145, 106, 0.18);
  box-shadow: 0 1px 3px rgba(45, 37, 32, 0.04);
  border-radius: 14px;
}
body.theme-beige .pricing-card.featured {
  background: #2D2520;
  color: #FBF8F3;
  border-color: #2D2520;
}
body.theme-beige .pricing-card.featured h3,
body.theme-beige .pricing-card.featured .price { color: #FBF8F3; }
body.theme-beige .section-sub { color: #6B5D52; }
body.theme-beige .property-location,
body.theme-beige .property-cta { color: #B8916A; }
body.theme-beige .footer { background: #2D2520; }
body.theme-beige .stars { filter: hue-rotate(-15deg) saturate(0.7); }

/* ===== MCKEES THEME — derived from hero photo =====
   Charcoal structure (#2A2A28) · warm amber/honey wood (#C4903A) · lush green (#6B9E4A)
   ================================================== */
body.theme-mckees {
  --primary: #C4903A;
  --primary-dark: #9A7030;
  background: #F2F0EC;
  color: #2A2A28;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
}
body.theme-mckees .navbar {
  background: rgba(242, 240, 236, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 144, 58, 0.18);
}
body.theme-mckees .nav-logo { color: #2A2A28; font-weight: 700; letter-spacing: 0.02em; }
body.theme-mckees .nav-links a { color: #2A2A28; }
body.theme-mckees .nav-links a:hover { color: #C4903A; }
body.theme-mckees .btn-primary,
body.theme-mckees .btn-nav {
  background: #2A2A28;
  color: #FAF9F6;
  border: none;
  box-shadow: none;
}
body.theme-mckees .btn-primary:hover,
body.theme-mckees .btn-nav:hover {
  background: #C4903A;
  color: #fff;
}
body.theme-mckees .btn-secondary {
  background: transparent;
  color: #2A2A28;
  border: 2px solid #2A2A28;
  font-weight: 500;
}
body.theme-mckees .btn-secondary:hover {
  background: #2A2A28;
  color: #FAF9F6;
}
body.theme-mckees h1,
body.theme-mckees h2,
body.theme-mckees h3 {
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #2A2A28;
}
body.theme-mckees .hero { background: #E0DDD6; }
body.theme-mckees .hero-overlay {
  background: linear-gradient(180deg, rgba(42,42,40,0.2) 0%, rgba(42,42,40,0.68) 100%);
}
body.theme-mckees .hero-content,
body.theme-mckees .hero-content h1,
body.theme-mckees .hero-content .hero-sub,
body.theme-mckees .hero-content .hero-badge {
  color: #FAF9F6;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
body.theme-mckees .hero-content .hero-badge {
  background: rgba(196, 144, 58, 0.92);
}
body.theme-mckees .stats-bar { background: #FAF9F6; border-color: rgba(196, 144, 58, 0.18); }
body.theme-mckees .about,
body.theme-mckees .amenities,
body.theme-mckees .booking-section,
body.theme-mckees .reviews-section,
body.theme-mckees .contact-section,
body.theme-mckees .nearby-section,
body.theme-mckees .location-section,
body.theme-mckees .rules-section,
body.theme-mckees .space-details,
body.theme-mckees .bedrooms-section,
body.theme-mckees .highlights-section,
body.theme-mckees .perfect-for-section,
body.theme-mckees .guest-access-section,
body.theme-mckees .pricing-section { background: transparent; }
body.theme-mckees .reviews-section,
body.theme-mckees .rules-section { background: #EAEFE6; }
body.theme-mckees .amenity,
body.theme-mckees .review-card,
body.theme-mckees .pricing-card,
body.theme-mckees .nearby-card,
body.theme-mckees .contact-card,
body.theme-mckees .space-card,
body.theme-mckees .bedroom-card,
body.theme-mckees .highlight-item,
body.theme-mckees .perfect-item,
body.theme-mckees .guest-access-box,
body.theme-mckees .booking-wrapper,
body.theme-mckees .rules-group {
  background: #FAF9F6;
  border: 1px solid rgba(196, 144, 58, 0.16);
  box-shadow: 0 2px 12px rgba(42, 42, 40, 0.05);
  border-radius: 14px;
}
body.theme-mckees .pricing-card.featured {
  background: #2A2A28;
  color: #FAF9F6;
  border-color: #2A2A28;
}
body.theme-mckees .pricing-card.featured h3,
body.theme-mckees .pricing-card.featured .price { color: #FAF9F6; }
body.theme-mckees .section-sub { color: #6B7560; }
body.theme-mckees .property-location,
body.theme-mckees .property-cta { color: #C4903A; }
body.theme-mckees .footer { background: #2A2A28; }
body.theme-mckees .stars { filter: hue-rotate(-10deg) saturate(0.8); }

/* ===== SPRING THEME — fresh greens, soft pinks, warm whites =====
   Inspired by spring gardens: cherry blossom (#E8A0BF) · fresh leaf (#5DA271) · soft cream (#FDFAF3)
   ================================================================ */
body.theme-spring {
  --primary: #5DA271;
  --primary-dark: #3E7A52;
  background: #F5FAF2;
  color: #2C3E2D;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
}
body.theme-spring .navbar {
  background: rgba(245, 250, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(93, 162, 113, 0.18);
}
body.theme-spring .nav-logo { color: #2C3E2D; font-weight: 700; letter-spacing: 0.02em; }
body.theme-spring .nav-links a { color: #2C3E2D; }
body.theme-spring .nav-links a:hover { color: #5DA271; }
body.theme-spring .btn-primary,
body.theme-spring .btn-nav {
  background: #2C3E2D;
  color: #FDFAF3;
  border: none;
  box-shadow: none;
}
body.theme-spring .btn-primary:hover,
body.theme-spring .btn-nav:hover {
  background: #5DA271;
  color: #fff;
}
body.theme-spring .btn-secondary {
  background: transparent;
  color: #2C3E2D;
  border: 2px solid #2C3E2D;
  font-weight: 500;
}
body.theme-spring .btn-secondary:hover {
  background: #2C3E2D;
  color: #FDFAF3;
}
body.theme-spring h1,
body.theme-spring h2,
body.theme-spring h3 {
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #2C3E2D;
}
body.theme-spring .hero { background: #E8F5E2; }
body.theme-spring .hero-overlay {
  background: linear-gradient(180deg, rgba(44,62,45,0.15) 0%, rgba(44,62,45,0.6) 100%);
}
body.theme-spring .hero-content,
body.theme-spring .hero-content h1,
body.theme-spring .hero-content .hero-sub,
body.theme-spring .hero-content .hero-badge {
  color: #FDFAF3;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}
body.theme-spring .hero-content .hero-badge {
  background: rgba(232, 160, 191, 0.9);
}
body.theme-spring .stats-bar { background: #FDFAF3; border-color: rgba(93, 162, 113, 0.18); }
body.theme-spring .about,
body.theme-spring .amenities,
body.theme-spring .booking-section,
body.theme-spring .reviews-section,
body.theme-spring .contact-section,
body.theme-spring .nearby-section,
body.theme-spring .location-section,
body.theme-spring .rules-section,
body.theme-spring .space-details,
body.theme-spring .bedrooms-section,
body.theme-spring .highlights-section,
body.theme-spring .perfect-for-section,
body.theme-spring .guest-access-section,
body.theme-spring .pricing-section { background: transparent; }
body.theme-spring .reviews-section,
body.theme-spring .rules-section { background: #EDF7E8; }
body.theme-spring .amenity,
body.theme-spring .review-card,
body.theme-spring .pricing-card,
body.theme-spring .nearby-card,
body.theme-spring .contact-card,
body.theme-spring .space-card,
body.theme-spring .bedroom-card,
body.theme-spring .highlight-item,
body.theme-spring .perfect-item,
body.theme-spring .guest-access-box,
body.theme-spring .booking-wrapper,
body.theme-spring .rules-group {
  background: #FDFAF3;
  border: 1px solid rgba(93, 162, 113, 0.16);
  box-shadow: 0 2px 12px rgba(44, 62, 45, 0.05);
  border-radius: 14px;
}
body.theme-spring .pricing-card.featured {
  background: #2C3E2D;
  color: #FDFAF3;
  border-color: #2C3E2D;
}
body.theme-spring .pricing-card.featured h3,
body.theme-spring .pricing-card.featured .price { color: #FDFAF3; }
body.theme-spring .section-sub { color: #6A8F6E; }
body.theme-spring .property-location,
body.theme-spring .property-cta { color: #5DA271; }
body.theme-spring .footer { background: #2C3E2D; }
body.theme-spring .stars { filter: hue-rotate(80deg) saturate(0.6); }
