/* ═══════════════════════════════════════════════
   VILLA BUTTERFLY MARRAKECH — Professional Styles
   ═══════════════════════════════════════════════ */

/* ── TOKENS ───────────────────────────────────── */
:root {
  --gold:        #c9a84c;
  --gold-light:  #e2c46d;
  --gold-dark:   #a8873b;
  --dark:        #0f0f0f;
  --dark-mid:    #1a1a1a;
  --dark-soft:   #252525;
  --cream:       #f7f3ee;
  --cream-mid:   #ede9e3;
  --white:       #ffffff;
  --text:        #1c1c1c;
  --muted:       #6b6b6b;
  --border:      rgba(0,0,0,0.1);
  --border-light:rgba(255,255,255,0.12);

  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans:  'Inter', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow:    0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.12);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.25);
}

/* ── RESET ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-sans);
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── CONTAINER ────────────────────────────────── */
.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ── TYPOGRAPHY ───────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--ff-serif); line-height: 1.25; }
h1 { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
em { font-style: italic; color: var(--gold); }

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 12px 40px rgba(201,168,76,0.35); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }

.btn-wa {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25d366;
  color: var(--white);
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  font-weight: 600;
  width: 100%;
  justify-content: center;
  transition: background 0.2s;
}
.btn-wa:hover { background: #20b95a; }

.btn-email {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-mid);
  color: var(--text);
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  font-weight: 500;
  font-size: 0.88rem;
  width: 100%;
  transition: background 0.2s;
  word-break: break-all;
}
.btn-email:hover { background: var(--cream); }

.btn-lg { padding: 1.1rem 2.25rem; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ── SECTIONS ─────────────────────────────────── */
.section { padding: 6rem 0; }
.bg-cream { background: var(--cream); }
.bg-dark  { background: var(--dark-mid); }

.section-header { text-align: center; margin-bottom: 3.5rem; max-width: 700px; margin-inline: auto; margin-bottom: 3.5rem; }
.section-header.light h2 { color: var(--white); }
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-sub { margin-top: 1rem; color: var(--muted); font-size: 1.05rem; }
.section-sub.light { color: rgba(255,255,255,0.6); }
.light-text { color: rgba(255,255,255,0.7); }

/* ── ANIMATIONS ───────────────────────────────── */
.animate-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.is-visible {
  opacity: 1;
  transform: none;
}


/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
}
.site-header.scrolled {
  background: var(--dark-mid);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 80px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.brand-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}
.brand-name {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.nav-menu a,
.nav-btn {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.nav-menu a:hover,
.nav-btn:hover {
  color: var(--gold);
  background: rgba(255,255,255,0.06);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.lang-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}
.lang-btn.active,
.lang-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.lang-sep { color: rgba(255,255,255,0.3); font-size: 0.8rem; }

.header-book { padding: 0.65rem 1.35rem; font-size: 0.9rem; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}


/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 10rem 0 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('WhatsApp Image 2026-04-06 at 01.49.09.jpeg') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,10,10,0.75) 0%,
    rgba(10,10,10,0.4) 50%,
    rgba(10,10,10,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

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

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-badges span {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto;
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); transform-origin: top; }
  50%       { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
}


/* ══════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════ */
.trust-bar {
  background: var(--dark);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,0.07);
  letter-spacing: 0.01em;
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1.1rem; }


/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.about-list {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.6rem;
}
.about-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text);
  font-weight: 500;
}
.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.about-images {
  display: grid;
  gap: 0.75rem;
}
.about-main-img {
  height: 380px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}
.about-sub-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.about-sub-imgs div {
  height: 180px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}


/* ══════════════════════════════════════════════
   ROOMS
══════════════════════════════════════════════ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.room-img {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.room-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

.room-body {
  padding: 1.5rem;
}
.room-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
  color: var(--text);
}
.room-body ul {
  display: grid;
  gap: 0.4rem;
}
.room-body li {
  color: var(--muted);
  font-size: 0.92rem;
  padding-left: 1rem;
  position: relative;
}
.room-body li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}


/* ══════════════════════════════════════════════
   AMENITIES
══════════════════════════════════════════════ */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.amenity-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.amenity-item:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}

.amenity-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.amenity-item h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.amenity-item p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.6;
}


/* ══════════════════════════════════════════════
   GALLERY PREVIEW
══════════════════════════════════════════════ */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 10px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.gp-item {
  background-size: cover;
  background-position: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.gp-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
}
.gp-item:hover::after { background: rgba(0,0,0,0.15); }
.gp-item:hover { transform: scale(1.02); }

.gp-large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.gallery-cta-row {
  text-align: center;
  margin-top: 2.5rem;
}


/* ══════════════════════════════════════════════
   VIDEO
══════════════════════════════════════════════ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.villa-video {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--dark);
  max-height: 420px;
  object-fit: cover;
}


/* ══════════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.review-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-3px);
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.85rem;
  letter-spacing: 0.08em;
}

.review-card p {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}

.review-card cite {
  display: block;
  color: rgba(255,255,255,0.45);
  font-style: normal;
  font-size: 0.82rem;
}
.review-card cite strong { color: var(--gold); }


/* ══════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.pricing-card.featured {
  background: var(--dark-mid);
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(201,168,76,0.2);
  transform: translateY(-8px);
}
.pricing-card.featured:hover { transform: translateY(-12px); }

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-season {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text);
}
.pricing-card.featured .pricing-season { color: var(--white); }

.pricing-period {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.5); }

.pricing-rate {
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.pricing-rate span { font-size: 1rem; font-weight: 400; }

.pricing-features {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.pricing-features li {
  font-size: 0.9rem;
  padding-left: 1.25rem;
  position: relative;
  color: var(--muted);
}
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.65); }
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--muted);
  font-size: 0.88rem;
}


/* ══════════════════════════════════════════════
   BOOKING
══════════════════════════════════════════════ */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}

.booking-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.booking-aside-card {
  background: var(--dark-mid);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.booking-aside-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.booking-aside-card ul {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.booking-aside-card li {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  padding-left: 1.25rem;
  position: relative;
}
.booking-aside-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.aside-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.aside-contact > p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}


/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}
.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
}
.contact-label {
  font-weight: 600;
  color: var(--gold);
  min-width: 80px;
  flex-shrink: 0;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.contact-list a {
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.contact-list a:hover { color: var(--gold); }

.map-wrap iframe {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}


/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 600;
}

.footer-tagline {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
}
.footer-nav a,
.footer-nav button {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-nav a:hover,
.footer-nav button:hover { color: var(--gold); }

.footer-copy {
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
}


/* ══════════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 90;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}


/* ══════════════════════════════════════════════
   GALLERY MODAL
══════════════════════════════════════════════ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  overflow-y: auto;
  padding: 2rem 1rem;
}
.modal.is-open { display: block; }

.modal-inner {
  background: var(--white);
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
}

.modal-inner h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  padding-right: 3rem;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  background: var(--cream);
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background 0.2s;
  line-height: 1;
}
.modal-close:hover { background: var(--cream-mid); }

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

.gm-item {
  height: 160px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.25s, opacity 0.25s;
  overflow: hidden;
}
.gm-item:hover { transform: scale(1.04); opacity: 0.9; }


/* ══════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.96);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.is-open { display: flex; }

.lb-body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  max-height: calc(100vh - 8rem);
}
.lb-body img {
  max-width: 90vw;
  max-height: calc(100vh - 8rem);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}

.lb-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
  line-height: 1;
}
.lb-close:hover { background: rgba(255,255,255,0.2); }

.lb-prev, .lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.2); }
.lb-prev { left: 1.25rem; }
.lb-next { right: 1.25rem; }

.lb-caption {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  margin-top: 1rem;
  text-align: center;
  letter-spacing: 0.05em;
}


/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid          { grid-template-columns: 1fr; gap: 3rem; }
  .about-images        { order: -1; }
  .about-main-img      { height: 300px; }
  .contact-grid        { grid-template-columns: 1fr; gap: 2.5rem; }
  .booking-layout      { grid-template-columns: 1fr; }
  .booking-aside       { order: -1; }
}

@media (max-width: 900px) {
  .amenities-grid      { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid        { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid        { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .pricing-card.featured { transform: none; }
  .video-grid          { grid-template-columns: 1fr; }
  .rooms-grid          { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .gallery-mosaic      {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 220px 220px 220px;
  }
  .gp-large            { grid-column: 1 / 3; grid-row: 1 / 2; }
}

@media (max-width: 720px) {
  .section             { padding: 4rem 0; }

  .nav-menu            { display: none; flex-direction: column; align-items: stretch; gap: 0.25rem; position: absolute; top: 100%; left: 0; right: 0; background: var(--dark-mid); padding: 1rem; border-top: 1px solid rgba(255,255,255,0.06); }
  .nav-menu.is-open    { display: flex; }
  .nav-menu a, .nav-btn { padding: 0.85rem 1rem; border-radius: var(--radius); text-align: left; }
  .nav-toggle          { display: flex; }
  .header-book         { display: none; }
  .site-header         { background: var(--dark-mid); }

  .hero                { padding: 8rem 0 5rem; }
  .hero-cta            { flex-direction: column; align-items: flex-start; }
  .hero-badges         { gap: 0.75rem; }

  .trust-item          { padding: 0.85rem 1rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); width: 50%; }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }

  .amenities-grid      { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .reviews-grid        { grid-template-columns: 1fr; }
  .rooms-grid          { max-width: 100%; }

  .gallery-mosaic      { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
  .gp-large            { grid-column: 1; grid-row: 1; }

  .form-row            { grid-template-columns: 1fr; }

  .modal-inner         { padding: 1.25rem; border-radius: var(--radius-lg); }
  .modal-gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .gm-item             { height: 130px; }
}

@media (max-width: 480px) {
  .trust-item          { width: 100%; }
  .hero-cta .btn       { width: 100%; justify-content: center; }
  .about-sub-imgs      { grid-template-columns: 1fr; }
}
