:root {
  /* BRAND PALETTE — Staycation Tagaytay Albizia */
  
  /* Primary brand gold (from logo) */
  --brown: #C69C6D;

  /* Warm neutral background + surface */
  --cream: #F7F3EE;          /* Overall background */
  --beige: #F4EFEA;          /* Section background */
  --sage: #F1ECE6;           /* Light accent background */

  /* Muted warm taupe (new text-muted) */
  --warm-grey: #B8A89A;      
  --text-muted: #8A7C6A;

  /* Accents */
  --forest: #2F5D54;         /* Subtle accent headers / lines */
  --teal: #4A8A87;           /* Optional special highlights */

  /* CTA Red (keep your terracotta promo color) */
  --terracotta: #C7362E;

  /* Text */
  --text: #1A1A1A;

  /* UI Constants */
  --radius-card: 20px;
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.08);
  --max-width: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--text);
}


a {
  color: inherit;
  text-decoration: none;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-padded {
  padding: 56px 20px;
}

/* Gallery zoom */
.gallery-item { overflow: hidden; border-radius: 10px; }
.gallery-item img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: zoom-in;
}
.gallery-item:hover img {
  transform: scale(1.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* Hero zoom */
.hero-image img { cursor: zoom-in; }
.hero-image:hover img {
  transform: scale(1.08);
}

/* Lightbox */
.image-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.image-lightbox.active { opacity: 1; pointer-events: auto; }
.image-lightbox img {
  max-width: 92%;
  max-height: 92%;
  border-radius: 10px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  cursor: zoom-out;
}

/* Loader */
#pageLoader {
  position: fixed;
  inset: 0;
  background: #F7F3EE;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
#pageLoader.hidden { opacity: 0; visibility: hidden; }

.loader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  width: 160px;
  max-width: 80%;
  margin-bottom: 20px;
  animation: logoPulse 1.6s ease-in-out infinite;
}

/* Center align bottom OTA booking section */
.booking-ota-bottom {
  text-align: center;
}

.booking-ota-bottom .booking-ota-links {
  display: flex;
  justify-content: center;
}

.booking-ota-bottom .booking-ota-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

  /* News section – two-column equal layout */
  .news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: start;
  }

  @media (max-width: 768px) {
    .news-grid {
      grid-template-columns: 1fr;
    }
  }

  /* Themed card */
  .news-card {
    background: #F7F3EE; /* site cream */
    border: 1px solid #E5E0D8;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: box-shadow 0.18s;
  }
  .news-card:hover {
    box-shadow: 0 18px 32px rgba(0,0,0,0.13);
  }

  /* News text-only preview */
  .news-text-preview {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #3A3A3A;
    max-height: 6.5em; /* ~250 chars */
    overflow: hidden;
  }

  .news-readmore {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #C7362E;
    cursor: pointer;
    font-weight: 600;
  }

  /* Modal for FB iframe */
  .news-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10050;
  }

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

  .news-modal-content {
    background: #F7F3EE;
    border-radius: 14px;
    padding: 16px;
    max-width: 560px;
    width: 90%;
  }

  .news-modal iframe {
    width: 100%;
    height: 600px;
    border: none;
  }


/* ============================================================================
   BUTTONS
============================================================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--terracotta);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  display: inline-flex;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--warm-grey);
  background: transparent;
  color: var(--text);
  font-size: 0.9rem;
}

.btn-ghost:hover {
  background: var(--cream);
}

.btn-full {
  width: 100%;
}

/* ============================================================================
   HERO SECTION
============================================================================ */

.hero {
  margin-top: 20px;
  background: var(--beige);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: center;
}

.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: zoom-in;
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 3.3vw, 2.7rem);
  margin-bottom: 10px;
}

.hero-sub {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--text-muted);
}

.hero-image {
  position: relative;
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, var(--sage), var(--warm-grey));
  min-height: 260px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: grid;
  place-items: center;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

/* ABOUT – Rating Pill + Layout Fix */

.two-col-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.highlight-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 16px;
  background: var(--cream);
  border: 1px solid rgba(194,187,176,0.9);
  min-width: 220px;
}

.highlight-score {
  display: grid;
  place-items: center;
  padding: 6px 10px;
  border-radius: 12px;
  background: var(--brown);
  color: #fff;
}

.score-main {
  font-size: 1.1rem;
  font-weight: 600;
}

.score-label {
  font-size: 0.72rem;
}

/* Mobile behavior */
@media (max-width: 720px) {
  .two-col-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .highlight-box {
    width: 100%;
    min-width: unset;
  }
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: flex-start;
}

.about-text p {
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.about-facts h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  margin-bottom: 6px;
}

.about-facts ul {
  padding-left: 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.about-facts li {
  margin-bottom: 4px;
}/* AMENITIES */
.amenity-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.amenity-category {
  border-radius: var(--radius-card);
  background: var(--cream);
  border: 1px solid rgba(194,187,176,0.9);
  padding: 12px 14px 14px;
  font-size: 0.86rem;
}
.amenity-category h3 {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.amenity-category ul {
  padding-left: 16px;
  color: var(--text-muted);
}
.amenity-category li { margin-bottom: 3px; }

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.gallery-item-tall {
  height: 354px;
}
.gallery-item {
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 170px;          /* container height */
  background: #ddd;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* ← Ensures perfect fit */
  display: block;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.pricing-card {
  border-radius: var(--radius-card);
  background: var(--cream);
  border: 1px solid rgba(194,187,176,0.9);
  padding: 16px 16px 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}
.pricing-card-highlight {
  background: linear-gradient(135deg, var(--terracotta), var(--brown));
  color: #fff;
}
.pricing-name {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  margin-bottom: 4px;
}
.pricing-value {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.pricing-list {
  list-style: none;
  font-size: 0.86rem;
  color: var(--text-muted);
}
.pricing-card-highlight .pricing-list { color: rgba(255,255,255,0.92); }
.pricing-list li { margin-bottom: 4px; }

/* CALENDAR */
.calendar-wrapper {
  background: var(--cream);
  border-radius: var(--radius-card);
  border: 1px solid rgba(194,187,176,0.9);
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}
#availability-calendar {
  max-width: 100%;
  margin-bottom: 10px;
}
.calendar-note,
.calendar-warning {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.calendar-warning { margin-top: 4px; color: #b15b3b; }

/* REVIEWS */
.review-summary {
  display: grid;
  grid-template-columns: minmax(0,0.7fr) minmax(0,1.6fr);
  gap: 18px;
  margin-bottom: 18px;
}
.review-score-box {
  border-radius: var(--radius-card);
  background: var(--cream);
  border: 1px solid rgba(194,187,176,0.9);
  padding: 14px 14px;
  display: grid;
  place-items: center;
  text-align: center;
}
.review-score-box .score-main {
  font-size: 2rem;
  line-height: 1;
}
.review-score-box .score-label {
  font-size: 0.9rem;
}
.review-metrics {
  border-radius: var(--radius-card);
  background: var(--cream);
  border: 1px solid rgba(194,187,176,0.9);
  padding: 10px 12px;
  font-size: 0.85rem;
}
.metric {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  color: var(--text-muted);
}
.review-cards {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 14px;
}
.review-card {
  border-radius: var(--radius-card);
  background: var(--cream);
  border: 1px solid rgba(194,187,176,0.9);
  padding: 12px 14px;
  font-size: 0.86rem;
}
.review-name {
  font-weight: 600;
  margin-bottom: 6px;
}
.review-text { color: var(--text-muted); }

/* HOST */
.host-layout {
  display: grid;
  grid-template-columns: minmax(0,0.8fr) minmax(0,1.7fr);
  gap: 18px;
}
.host-badge {
  border-radius: var(--radius-card);
  background: var(--cream);
  border: 1px solid rgba(194,187,176,0.9);
  padding: 14px 10px;
  display: grid;
  gap: 10px;
  place-items: center;
}
.host-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brown), var(--terracotta));
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 0.85rem;
  color: #fff;
  font-family: "Poppins", sans-serif;
}
.host-score {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.host-score span {
  font-weight: 600;
  background: var(--brown);
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 4px;
}
.host-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* BOOKING */
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 24px;
}
.booking-card {
  border-radius: var(--radius-card);
  background: var(--cream);
  border: 1px solid rgba(194,187,176,0.9);
  padding: 18px 16px 20px;
  box-shadow: var(--shadow-soft);
}
.booking-card form {
  display: grid;
  gap: 8px;
  font-size: 0.85rem;
}
.booking-card label {
  color: var(--text-muted);
}
.booking-card input,
.booking-card select,
.booking-card textarea {
  border-radius: 12px;
  border: 1px solid rgba(194,187,176,0.9);
  padding: 10px 10px;
  font-family: inherit;
  font-size: 0.9rem;
  background: #fff;
}
.booking-card textarea {
  min-height: 80px;
  resize: vertical;
}
.booking-info h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.02rem;
  margin-bottom: 6px;
}
.booking-info ul {
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.booking-info li { margin-bottom: 4px; }

/* FOOTER */
.footer {
  border-top: 1px solid rgba(194,187,176,0.9);
  padding: 18px 20px 24px;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-links { display: flex; gap: 10px; }
.footer-links a:hover { color: var(--brown); }


/* HOLIDAY PROMO */
.promo-section {
  background: transparent;
}
.promo-card-wrapper {
  display: flex;
  justify-content: center;
}
.promo-card {
  max-width: 640px;
  width: 100%;
  border-radius: var(--radius-card);
  background: #ffffff;
  border: 1px solid rgba(203, 197, 189, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 20px;
}
.promo-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.promo-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 2px;
  color: var(--text);
}
.promo-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.promo-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--terracotta);
  color: #fff;
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.promo-price {
  margin-top: 6px;
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}
.promo-price-main {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brown);
}
.promo-price-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.promo-list {
  list-style: none;
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 4px 0 8px;
  padding-left: 16px;
}
.promo-list li {
  margin-bottom: 4px;
  position: relative;
}
.promo-list li::before {
  content: "•";
  position: absolute;
  left: -10px;
  color: var(--brown);
}
.promo-footnote {
  font-size: 0.78rem;
  color: var(--text-muted);
}


/* Booking Section - OTA App Buttons */
.booking-ota-links {
  text-align: left;
  margin-top: 24px;
}

.booking-ota-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.booking-ota-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.booking-ota-btn {
  background: #C69C6D;
  color: #ffffff;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.booking-ota-btn:hover {
  background: #b1895f;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Override platform-specific colors */
.booking-ota-btn.airbnb,
.booking-ota-btn.booking,
.booking-ota-btn.agoda {
  background: #C69C6D;
}

.booking-ota-btn.airbnb { background: #FF5A5F; }
.booking-ota-btn.booking { background: #003580; }
.booking-ota-btn.agoda { background: #0F9D8A; }

.booking-ota-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* ============================================================================
   RESPONSIVE
============================================================================ */

/* Hero layout */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* About */
@media (max-width: 900px) {
  .about-layout { grid-template-columns: minmax(0,1fr); }
}

/* Amenities */
@media (max-width: 960px) {
  .amenity-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .amenity-category-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Gallery */
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .gallery-item-tall { grid-row: span 1; height: 170px; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: minmax(0,1fr); }
}

/* Pricing */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: minmax(0,1fr); }
}

/* Reviews */
@media (max-width: 900px) {
  .review-summary {
    grid-template-columns: minmax(0,1fr);
  }
  .review-cards {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}
@media (max-width: 640px) {
  .review-cards {
    grid-template-columns: minmax(0,1fr);
  }
}

/* Host */
@media (max-width: 900px) {
  .host-layout { grid-template-columns: minmax(0,1fr); }
}

/* Booking */
@media (max-width: 900px) {
  .booking-layout { grid-template-columns: minmax(0,1fr); }
}

/* Promo */
@media (max-width: 600px) {
  .promo-card {
    padding: 14px 14px 16px;
  }
  .promo-header-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Desktop: show 2–3 cards depending on width */
@media (min-width: 780px) {
  .carousel-track .review-card {
    flex: 0 0 48%;
  }
}

@media (min-width: 1100px) {
  .carousel-track .review-card {
    flex: 0 0 32%;
  }
}
/* ============================================
   UNIVERSAL RESPONSIVE IMAGE FIX (SAFE)
   ============================================ */

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

/* Hero image — keep layout, just make responsive */
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gallery images — keep exact grid layout */
.gallery-item img,
.gallery-item-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Any card or section image */
.section img,
.card img,
.review-card img,
.about-layout img,
.amenity-category img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.loader-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(0,0,0,0.15);
  border-top-color: #C69C6D;
  border-radius: 50%;
  margin: 12px auto;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== LOADER REFINEMENT ===== */

.loader-inner {
  text-align: center;
}

/* Logo sizing + animation */
.loader-logo {
  width: 120px;              /* smaller, balanced size */
  max-width: 70%;
  margin-bottom: 16px;
  animation: logoPulse 1.6s ease-in-out infinite;
}

/* Spinner refinement */
.loader-spinner {
  width: 32px;
  height: 32px;
  margin: 0 auto 12px;
  border: 3px solid rgba(0,0,0,0.15);
  border-top-color: #C69C6D;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

/* Text */
#pageLoader p {
  font-size: 0.85rem;
  color: #8A7C6A;
  letter-spacing: 0.4px;
}

/* Animations */
@keyframes spin {
  to { transform: rotate(360deg); }
}

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

/* ================================
   RESPONSIVE REVIEW CARDS (FIXED)
================================ */

/* Carousel viewport */
.reviews-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: clamp(32px, 6vw, 56px) 0;
}

/* Track */
.carousel-track {
  display: flex;
  align-items: center;
  will-change: transform;
}

/* Review card – fluid width */
.review-card {
  flex: 0 0 clamp(280px, 70vw, 640px);
  max-width: clamp(280px, 70vw, 640px);

  margin: 0 clamp(12px, 4vw, 48px);
  padding: 14px 16px;

  border-radius: var(--radius-card);
  background: var(--cream);
  border: 1px solid rgba(194,187,176,0.9);

  opacity: 0.35;
  filter: blur(4px);
  transform: scale(0.94);

  transition:
    transform 0.45s ease,
    opacity 0.45s ease,
    filter 0.45s ease;
}

/* Focused card */
.review-card.active {
  opacity: 1;
  filter: none;
  transform: scale(1);
  z-index: 2;
}

/* Small phones */
@media (max-width: 480px) {
  .review-card {
    flex: 0 0 88vw;
    max-width: 88vw;
    margin: 0 6vw;
  }
}

html {
  scroll-behavior: smooth;
}

#top {
  scroll-margin-top: 80px; /* height of navbar */
 }

 .nav-cta-mobile {
  z-index: 10002;
}

@media (min-width: 1025px) {
  .nav-cta-mobile {
    display: none;
  }
}

/* ===============================
   NAVBAR — CLEAN REBUILD
================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(254,244,234,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(163,135,114,0.2);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 44px;
}

/* Desktop menu */
.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--brown);
}

/* Hamburger */
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  display: block;
  margin: 5px 0;
}

/* Mobile / Tablet */
@media (max-width: 1024px) {

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    right: 16px;

    display: none;
    flex-direction: column;
    gap: 14px;

    background: var(--cream);
    padding: 16px;
    border-radius: 12px;
    min-width: 220px;

    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    display: block;
    width: 100%;
  }
}
/* FORCE Book Now text color */
.nav-links .btn-primary,
.nav-cta,
.nav-cta-mobile {
  color: #ffffff !important;
}

/* Desktop: push Book Now to the far right */
@media (min-width: 1025px) {
  .nav-links {
    margin-left: auto;
  }

  .nav-cta {
    margin-left: 16px; /* spacing from links */
  }
}

/* Hide desktop CTA inside hamburger menu */
@media (max-width: 1024px) {
  .nav-links .nav-cta {
    display: none !important;
  }
}

.promo-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  z-index:9998;
  opacity:0;
  transition:opacity .18s ease;
}

.promo-backdrop.show{
  opacity:1;
}

.promo-modal{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
  opacity:0;
  transform:scale(0.96);
  transition:opacity .18s ease, transform .18s ease;
}

.promo-modal.show{
  opacity:1;
  transform:scale(1);
}
