/* ═══════════════════════════════════════════
   VILLA BELTZA — CSS
   Design : élégant, tropical, luxueux
═══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --gold:        #c9a96e;
  --gold-light:  #e8d5a3;
  --green-dark:  #1a2e1a;
  --green:       #2d4a2d;
  --green-mid:   #3d6b3d;
  --cream:       #faf7f2;
  --warm-white:  #fff9f3;
  --dark:        #0f1a0f;
  --text:        #2c3a2c;
  --text-light:  #6b7c6b;
  --sand:        #f0ebe0;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', system-ui, sans-serif;

  --radius:      12px;
  --radius-lg:   24px;
  --shadow:      0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:   0 24px 64px rgba(0,0,0,.18);

  --transition:  .35s cubic-bezier(.4,0,.2,1);
  --nav-h:       72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* ── Typography ── */
.section-label {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .75rem;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--green-dark);
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title.light { color: #fff; }
.section-title.light em { color: var(--gold-light); }

.section-header.centered { text-align: center; margin-bottom: 3.5rem; }

/* ── Sections ── */
.section {
  padding-block: 6rem;
}
.section-dark  { background: var(--green-dark); }
.section-muted { background: var(--sand); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .05em;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
}
.btn-primary:hover { background: #b8943d; transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.6);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); }

.btn-airbnb {
  background: #ff5a5f;
  color: #fff;
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.btn-airbnb:hover { background: #e5484d; transform: translateY(-2px); }

.btn-booking {
  background: #003580;
  color: #fff;
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.btn-booking:hover { background: #002a6a; transform: translateY(-2px); }

.btn-contact {
  background: var(--gold);
  color: #fff;
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.btn-contact:hover { background: #b8943d; transform: translateY(-2px); }

/* ════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(10,20,10,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.2);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, 92vw);
  margin-inline: auto;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: .04em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .04em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links .nav-cta {
  background: var(--gold);
  color: #fff;
  padding: .5rem 1.25rem;
  border-radius: 50px;
}
.nav-links .nav-cta:hover { background: #b8943d; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--green-dark);
  z-index: 99;
  padding: 1.5rem 2rem 2rem;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 1.25rem; }
.mobile-menu a {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  display: block;
}

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slides, .hero-slide {
  position: absolute;
  inset: 0;
}
.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,20,10,.3) 0%,
    rgba(10,20,10,.55) 60%,
    rgba(10,20,10,.7) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding-inline: 1rem;
  max-width: 700px;
}
.hero-subtitle {
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  opacity: .9;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: .02em;
}
.hero-tagline {
  font-size: clamp(.9rem, 2vw, 1.15rem);
  font-weight: 300;
  opacity: .85;
  margin-bottom: 2.5rem;
  letter-spacing: .04em;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: .3 } 50% { opacity: 1 } }

.hero-dots {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  gap: .5rem;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--gold); }

/* ════════════════════════════════════════════
   STATS BAR
════════════════════════════════════════════ */
.stats-bar {
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 1.5rem 2rem;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  padding: .5rem 2.5rem;
}
.stat strong {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 400;
}
.stat span {
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}

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

.about-image-wrap {
  position: relative;
}
.about-img { border-radius: var(--radius-lg); object-fit: cover; }
.main-img   { width: 100%; height: 520px; }
.accent-img {
  position: absolute;
  width: 240px;
  height: 180px;
  bottom: -2rem;
  right: -2rem;
  border: 5px solid var(--cream);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  top: 2rem;
  left: -1.5rem;
  background: var(--gold);
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.badge-icon { color: var(--gold-light); }
.badge-icon svg { width: 24px; height: 24px; display: block; }
.about-badge strong { font-size: .85rem; font-weight: 500; }
.about-badge span   { font-size: .7rem; opacity: .8; }

.about-text { display: flex; flex-direction: column; gap: 1.25rem; }
.about-lead {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--green-mid);
}
.about-text p {
  line-height: 1.8;
  color: var(--text-light);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: .5rem;
}
.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid rgba(201, 169, 110, .45);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
}
.feature-icon svg { width: 20px; height: 20px; }
.about-features strong {
  display: block;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: .2rem;
}
.about-features p { font-size: .875rem; color: var(--text-light); }

/* ════════════════════════════════════════════
   GALLERY
════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 300px;
  gap: .75rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item.large {
  grid-column: 1;
  grid-row: 1 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.gallery-overlay span {
  color: #fff;
  font-size: .875rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
#lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.25); }
.lightbox-close { top: 1.5rem; right: 1.5rem; font-size: 1.1rem; }
.lightbox-prev  { left: 1.5rem; font-size: 2rem; }
.lightbox-next  { right: 1.5rem; font-size: 2rem; }

/* ════════════════════════════════════════════
   AMENITIES
════════════════════════════════════════════ */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.amenity-card {
  background: #fff;
  border: 1px solid rgba(201, 169, 110, .18);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: var(--transition);
}
.amenity-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 110, .55);
  box-shadow: 0 18px 40px rgba(26, 46, 26, .10);
}
.amenity-icon {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(201, 169, 110, .45);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.amenity-icon svg { width: 25px; height: 25px; }
.amenity-card:hover .amenity-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.amenity-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: .5rem;
}
.amenity-card p {
  font-size: .875rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* ════════════════════════════════════════════
   SERVICES & EXPÉRIENCES
════════════════════════════════════════════ */
.section-services {
  background: var(--green-dark);
}
.services-lead {
  max-width: 720px;
  margin: 1.5rem auto 0;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(250, 247, 242, .85);
  font-weight: 300;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 3rem;
  margin-top: 3.5rem;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, .22);
}
.service-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 1px solid rgba(201, 169, 110, .5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  transition: var(--transition);
}
.service-icon svg { width: 22px; height: 22px; }
.service-item:hover .service-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-dark);
}
.service-item h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: .35rem;
}
.service-item p {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(250, 247, 242, .65);
}
.services-note {
  margin-top: 2.5rem;
  text-align: center;
  font-size: .8rem;
  letter-spacing: .04em;
  color: rgba(250, 247, 242, .5);
}

/* ════════════════════════════════════════════
   LOCATION
════════════════════════════════════════════ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}
.location-text { display: flex; flex-direction: column; gap: 1rem; }
.location-text p { line-height: 1.8; color: var(--text-light); }

.location-map { display: flex; flex-direction: column; gap: .75rem; }
.map-svg {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 36px rgba(26, 46, 26, .12);
}
.map-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  fill: var(--green-dark);
  letter-spacing: .02em;
}
.map-time {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  fill: #9a7b45;
  letter-spacing: .05em;
}
.map-villa-name {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  fill: var(--green-dark);
}
.map-heart {
  transform-origin: 310px 324px;
  animation: heartbeat 2.4s ease-in-out infinite;
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  12%      { transform: scale(1.18); }
  24%      { transform: scale(1); }
  36%      { transform: scale(1.12); }
  48%      { transform: scale(1); }
}
.map-caption {
  font-size: .78rem;
  letter-spacing: .03em;
  color: var(--text-light);
  text-align: center;
}
.map-caption a { color: #9a7b45; text-decoration: underline; text-underline-offset: 3px; }

.location-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: .5rem;
}
.location-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: var(--text);
}
.loc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   REVIEWS
════════════════════════════════════════════ */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: 1rem;
  font-size: .9rem;
  color: var(--text-light);
}
.rating-stars { color: #f4a72a; font-size: 1.2rem; }
.rating-summary strong { color: var(--green-dark); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.review-header {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-mid);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 600;
  flex-shrink: 0;
}
.reviewer-info { flex: 1; }
.reviewer-info strong { display: block; font-size: .9rem; font-weight: 500; }
.reviewer-info span  { font-size: .75rem; color: var(--text-light); }
.review-rating { color: #f4a72a; font-size: .9rem; }

.review-text {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text-light);
  font-style: italic;
  flex: 1;
}
.review-source {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-top: .75rem;
  border-top: 1px solid var(--sand);
  font-size: .75rem;
  color: var(--text-light);
}

/* ════════════════════════════════════════════
   BOOKING
════════════════════════════════════════════ */
.section-booking {
  position: relative;
  padding-block: 7rem;
}
.booking-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.booking-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,25,10,.82);
}
.booking-content { position: relative; }

.booking-subtitle {
  color: rgba(255,255,255,.65);
  max-width: 520px;
  margin: 1rem auto 0;
  line-height: 1.7;
  font-size: .95rem;
}

.booking-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.booking-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
}
.booking-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}
.booking-card.featured {
  background: rgba(255,255,255,.12);
  border-color: var(--gold);
  position: relative;
}
.booking-badge-card {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}
.booking-logo { display: flex; align-items: center; min-height: 40px; }
.contact-logo { color: var(--gold-light); }
.contact-logo svg { width: 32px; height: 32px; }
.booking-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #fff;
  font-weight: 400;
}
.booking-card p {
  font-size: .875rem;
  line-height: 1.65;
  color: rgba(255,255,255,.6);
  flex: 1;
}
.booking-perks {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.booking-perks li {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
#footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-block: 4rem;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: .75rem;
}
.footer-brand p { font-size: .85rem; line-height: 1.8; }
.footer-contact { color: var(--gold-light); margin-top: .5rem; }

.footer-links h4, .footer-social h4 {
  color: #fff;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-links ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
  font-size: .875rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

.social-links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
.social-links a {
  font-size: .875rem;
  transition: color var(--transition);
}
.social-links a:hover { color: var(--gold-light); }

.footer-lang {
  display: flex;
  gap: .75rem;
}
.footer-lang a {
  font-size: .75rem;
  letter-spacing: .08em;
  padding: .3rem .6rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px;
  transition: var(--transition);
}
.footer-lang a.active,
.footer-lang a:hover { border-color: var(--gold); color: var(--gold-light); }

.nav-lang {
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-left: 1.5rem;
}
.nav-lang a {
  font-size: .7rem;
  letter-spacing: .06em;
  padding: .25rem .5rem;
  border-radius: 4px;
  color: rgba(250,247,242,.75);
  transition: var(--transition);
}
.nav-lang a.active { color: var(--gold-light); border: 1px solid rgba(201,169,110,.5); }
.nav-lang a:hover  { color: var(--gold-light); }

.mobile-lang {
  display: flex;
  justify-content: center;
  gap: .75rem;
  margin-top: 2rem;
}
.mobile-lang a {
  font-size: .8rem;
  letter-spacing: .08em;
  padding: .35rem .7rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px;
  color: rgba(250,247,242,.85);
}
.mobile-lang a.active { border-color: var(--gold); color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 1.5rem;
  text-align: center;
  font-size: .8rem;
}
.footer-bottom a { color: var(--gold-light); }

/* ════════════════════════════════════════════
   ANIMATIONS D'ENTRÉE
════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .accent-img       { display: none; }
  .main-img         { height: 400px; }
  .amenities-grid   { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid     { grid-template-columns: repeat(2, 1fr); }
  .booking-cards    { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .footer-inner     { grid-template-columns: 1fr 1fr; }
  .location-grid    { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-lang  { display: none; }
  .burger    { display: flex; }

  .stats-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stat-divider { display: none; }
  .stat { border: 1px solid rgba(255,255,255,.08); }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.large { grid-column: 1 / 3; height: 280px; }
  .gallery-item       { height: 180px; }

  .amenities-grid { grid-template-columns: 1fr; }
  .reviews-grid   { grid-template-columns: 1fr; }
  .services-grid  { grid-template-columns: 1fr; gap: .5rem; margin-top: 2.5rem; }
  .footer-inner   { grid-template-columns: 1fr; gap: 2rem; }

  .booking-badge-card { font-size: .65rem; }

  .hero-actions { flex-direction: column; align-items: center; }
  .about-badge  { display: none; }
}

@media (max-width: 480px) {
  .section { padding-block: 4rem; }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.large { grid-column: 1; }
}
