/* =========================================
   GÎTE LEHA — Dark Luxury Stylesheet
   ========================================= */

:root {
  --gold:        #c9a55a;
  --gold-light:  #e0be7a;
  --gold-dim:    rgba(201,165,90,.15);
  --green:       #3d6b4f;
  --green-dark:  #1e3d2b;
  --bg:          #f7f4ef;
  --bg-card:     #ffffff;
  --bg-dark:     #111110;
  --bg-dark2:    #1a1917;
  --text:        #1a1917;
  --text-light:  #6b6560;
  --border:      #e5e0d8;
  --white:       #ffffff;
  --radius:      4px;
  --radius-lg:   10px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,.07);
  --shadow-md:   0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.18);
  --t:           .4s ease;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Lato', Arial, sans-serif;
}

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

/* ── CONTAINER ── */
.container { width: min(1200px, 92%); margin: 0 auto; }

/* ── SECTION ── */
.section { padding: 100px 0; }

/* ── GOLD RULE ── */
.gold-rule {
  width: 40px; height: 2px;
  background: var(--gold);
  margin: 14px 0 22px;
}
.gold-rule.center { margin: 14px auto 22px; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header.light { color: var(--white); }

.section-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-header.light .section-tag { color: var(--gold-light); }

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header p { color: var(--text-light); max-width: 560px; margin: 0 auto; }
.section-header.light p { color: rgba(255,255,255,.65); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--t);
}
.btn-gold {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-block { width: 100%; justify-content: center; margin-top: 32px; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .24s; }
.reveal-d3 { transition-delay: .36s; }

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--t), box-shadow var(--t), padding var(--t);
}
#header.scrolled {
  background: rgba(10,9,8,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,165,90,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  padding: 0 5%;
}
.logo img { height: 80px; width: auto; object-fit: contain; }

#main-nav ul { display: flex; align-items: center; gap: clamp(10px, 1.6vw, 28px); }
#main-nav a {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255,255,255,.85);
  position: relative;
  transition: color var(--t);
}
#main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t);
}
#main-nav a:hover { color: var(--gold); }
#main-nav a:hover::after,
#main-nav a.current::after { width: 100%; }

#main-nav .btn-reserve {
  padding: 9px 22px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold) !important;
  font-size: .75rem;
  letter-spacing: .1em;
}
#main-nav .btn-reserve::after { display: none; }
#main-nav .btn-reserve:hover { background: var(--gold); color: var(--bg-dark) !important; }

.header-right { display: flex; align-items: center; gap: 20px; }

.lang-switcher { display: flex; align-items: center; gap: 6px; font-size: .75rem; color: rgba(255,255,255,.5); }
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-weight: 700; font-size: .75rem; font-family: var(--font-body);
  color: rgba(255,255,255,.5); letter-spacing: .08em;
  transition: color var(--t);
  padding: 2px;
}
.lang-btn.active, .lang-btn:hover { color: var(--gold); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px; width: 30px;
}
.burger span {
  display: block; height: 1.5px; width: 100%;
  background: rgba(255,255,255,.8);
  transition: all var(--t);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  transform: scale(1.04);
  animation: kenburns 8s ease-in-out infinite alternate;
}
.slide.active { opacity: 1; }

@keyframes kenburns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.35) 50%,
    rgba(0,0,0,.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 820px;
}
.hero-subtitle {
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-light);
  animation: fadeUp .8s .1s both;
}
.hero-content .gold-rule {
  animation: fadeUp .8s .3s both;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 20px;
  animation: fadeUp .9s .5s both;
}
.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  opacity: .8;
  margin-bottom: 40px;
  animation: fadeUp .9s .7s both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .9s .9s both;
}

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

.slider-dots {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 3;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(255,255,255,.5);
  cursor: pointer;
  transition: all var(--t);
}
.dot.active { background: var(--gold); border-color: var(--gold); width: 22px; border-radius: 3px; }

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 36px; right: 48px;
  width: 28px; height: 44px;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 14px;
  z-index: 3;
  animation: fadeUp 1s 1.2s both;
}
.hero-scroll-cue span {
  display: block;
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  margin: 8px auto 0;
  animation: scrollCue 2s infinite;
}
@keyframes scrollCue {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ═══════════════════════════════════════════
   HIGHLIGHTS — dark bar
═══════════════════════════════════════════ */
.highlights {
  background: var(--bg-dark);
  padding: 64px 0;
  border-top: 1px solid rgba(201,165,90,.2);
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.highlight-item {
  text-align: center;
  padding: 40px 40px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.highlight-item:last-child { border-right: none; }
.highlight-item i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.highlight-item h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 10px;
}
.highlight-item p { color: rgba(255,255,255,.5); font-size: .88rem; line-height: 1.6; }

/* ═══════════════════════════════════════════
   ÉQUIPEMENTS
═══════════════════════════════════════════ */
.equipements { background: var(--bg); }

/* Hotel-style room cards */
.rooms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 56px; }

.room-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.room-img-wrap {
  position: relative;
  height: 440px;
  overflow: hidden;
}
.room-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s ease;
}
.room-card:hover .room-img-wrap img { transform: scale(1.05); }

.room-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
  padding: 56px 28px 28px;
  color: var(--white);
}
.room-overlay h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 6px;
}
.room-overlay p { font-size: .82rem; color: rgba(255,255,255,.7); letter-spacing: .03em; }

.room-thumbs { display: flex; gap: 3px; }
.room-thumbs img { flex: 1; height: 96px; object-fit: cover; }

/* Area cards */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.area-card { text-align: center; }

.area-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
}
.area-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.area-card:hover .area-img-wrap img { transform: scale(1.07); }

.area-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t);
  border-radius: var(--radius-lg);
}
.area-overlay i {
  color: var(--white); font-size: 1.6rem;
  opacity: 0; transform: scale(.5);
  transition: all .35s ease;
}
.area-card:hover .area-overlay { background: rgba(0,0,0,.4); }
.area-card:hover .area-overlay i { opacity: 1; transform: scale(1); }

.area-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.area-card p { color: var(--text-light); font-size: .82rem; line-height: 1.55; }

/* Amenities grid */
.amenities-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 12px;
}
.amenity {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .85rem;
  transition: border-color var(--t), box-shadow var(--t);
}
.amenity:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.amenity i { color: var(--gold); font-size: .95rem; width: 18px; text-align: center; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   GALERIE
═══════════════════════════════════════════ */
.galerie { background: var(--bg-dark2); padding: 100px 0; }
.galerie .section-header h2 { color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 6px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item.tall  { grid-row: span 2; }
.gallery-item.wide  { grid-column: span 2; }

.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  transition: background .4s ease;
}
.gallery-overlay i {
  color: var(--white); font-size: 1.8rem;
  opacity: 0; transform: scale(.4) rotate(-15deg);
  transition: all .4s ease;
}
.gallery-item:hover .gallery-overlay { background: rgba(10,9,8,.55); }
.gallery-item:hover .gallery-overlay i { opacity: 1; transform: scale(1) rotate(0deg); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.96);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
#lbImg {
  max-width: 88vw; max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 0 80px rgba(0,0,0,.7);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: none; border: none; color: rgba(255,255,255,.6);
  cursor: pointer;
  transition: color var(--t);
  padding: 16px;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--gold); }
.lb-close { top: 20px; right: 24px; font-size: 1.6rem; }
.lb-prev  { left: 20px;  top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lb-next  { right: 20px; top: 50%; transform: translateY(-50%); font-size: 2rem; }

/* ═══════════════════════════════════════════
   AUX ALENTOURS — cinematic
═══════════════════════════════════════════ */
.alentours {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  color: var(--white);
}
.alentours-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: saturate(.6) brightness(.4);
}
.alentours-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,9,8,.5) 0%, rgba(30,61,43,.6) 100%);
}
.around-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.around-item {
  padding: 40px 20px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(6px);
  transition: background var(--t), border-color var(--t);
}
.around-item:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(201,165,90,.4);
}
.around-item i {
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.around-item h4 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--white);
}
.around-item p { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ═══════════════════════════════════════════
   EXTRAS
═══════════════════════════════════════════ */
.extras { background: var(--bg); }
.extras-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.extra-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--t), box-shadow var(--t);
}
.extra-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.extra-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}
.extra-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.extra-card:hover .extra-img-wrap img { transform: scale(1.06); }

.extra-price-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: .9rem;
  padding: 6px 14px;
  border-radius: 3px;
  letter-spacing: .04em;
}
.extra-info { padding: 24px 26px 28px; }
.extra-info h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.extra-info p { color: var(--text-light); font-size: .88rem; line-height: 1.6; }
.extra-info p + p { margin-top: 10px; }
.extra-details {
  list-style: none;
  margin: 12px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.extra-details li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .83rem;
  color: var(--text-light);
}
.extra-details li i {
  color: var(--gold);
  width: 14px;
  flex-shrink: 0;
  margin-top: 3px;
}
.extra-intro-box {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 36px 42px;
  margin-bottom: 52px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  border-left: 4px solid var(--gold);
}
.extra-intro-box i {
  font-size: 2.2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}
.extra-intro-box h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 10px;
}
.extra-intro-box p {
  color: rgba(255,255,255,.65);
  font-size: .92rem;
  line-height: 1.75;
  margin: 0;
}
.extra-intro-box p + p { margin-top: 8px; }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact { background: var(--bg-card); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }

.contact-info { display: flex; flex-direction: column; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.contact-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { color: var(--gold); font-size: .95rem; }
.contact-item strong {
  display: block;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-item p { color: var(--text); font-size: .92rem; }
.contact-item a { color: var(--green); font-weight: 600; }
.contact-item a:hover { color: var(--gold); }

.contact-hosts {
  margin-top: 24px;
  border-left: 3px solid var(--gold);
  background: var(--bg);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  overflow: hidden;
  font-size: .92rem;
  color: var(--text-light);
  font-style: italic;
  display: inline-block;
  width: auto;
}
.hosts-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}
.contact-hosts p {
  padding: 16px 22px 18px;
}

.contact-map iframe {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--bg-dark);
  padding: 56px 0;
  text-align: center;
  border-top: 1px solid rgba(201,165,90,.15);
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer-logo {
  height: 56px; width: auto;
  object-fit: contain;
  opacity: .7;
}
footer p { font-size: .82rem; color: rgba(255,255,255,.4); letter-spacing: .04em; }
footer a { color: var(--gold); }
footer a:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════════
   PAGE BANNER (inner pages)
═══════════════════════════════════════════ */
.page-banner {
  position: relative;
  height: 380px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.6) 0%, rgba(0,0,0,.45) 100%);
}
.page-banner-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.page-banner-content .section-tag { color: var(--gold); }
.page-banner-content .gold-rule { margin: 14px auto 22px; }
.page-banner-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  font-weight: 700;
  margin: 0;
}
.page-banner-content p {
  margin-top: 12px;
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
}

/* ═══════════════════════════════════════════
   BONNES ADRESSES
═══════════════════════════════════════════ */
.address-category { margin-bottom: 3.5rem; }
.address-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gold-dim);
}
.address-category-header i { font-size: 1.6rem; color: var(--gold); }
.address-category-header h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  margin: 0;
  color: var(--text);
}
.addresses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.address-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.address-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.address-card.has-image {
  padding: 0;
  overflow: hidden;
}
.address-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: var(--gold-dim);
}
.address-card.has-image .address-card-body {
  padding: 1.2rem 1.5rem 1.3rem;
}
.address-card h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--green-dark);
  margin: 0 0 .4rem;
}
.address-distance {
  display: inline-block;
  font-size: .72rem;
  color: var(--gold);
  background: var(--gold-dim);
  border-radius: 99px;
  padding: 2px 10px;
  margin-bottom: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.address-card p { font-size: .9rem; color: var(--text-light); margin: 0; }
.address-detail {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .83rem;
  color: var(--text-light);
  margin-top: 6px;
  line-height: 1.45;
}
.address-detail i {
  color: var(--gold);
  width: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}
.address-detail a { color: var(--green); font-weight: 600; }
.address-detail a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .around-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Mobile nav */
  #main-nav {
    display: none;
    position: fixed;
    inset: 72px 0 0;
    background: rgba(10,9,8,.98);
    padding: 32px 24px;
    flex-direction: column;
    overflow-y: auto;
  }
  #main-nav.open { display: flex; }
  #main-nav ul { flex-direction: column; gap: 0; width: 100%; }
  #main-nav a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
    font-size: .85rem;
  }
  #main-nav .btn-reserve { margin-top: 20px; text-align: center; display: block; }
  .burger { display: flex; }

  .hero-scroll-cue { display: none; }

  .highlight-grid { grid-template-columns: 1fr; }
  .highlight-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .highlight-item:last-child { border-bottom: none; }

  .rooms-grid { grid-template-columns: 1fr; }
  .room-img-wrap { height: 340px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.tall { grid-row: span 1; }

  .extras-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .contact-grid { grid-template-columns: 1fr; }

  .around-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .around-item { padding: 28px 16px; }

  .alentours-bg { background-attachment: scroll; }
  .page-banner { background-attachment: scroll; height: 300px; }
  .addresses-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .gallery-item.wide { grid-column: span 1; }
  .around-grid { grid-template-columns: 1fr; }
  .amenities-list { grid-template-columns: 1fr 1fr; }
  .addresses-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-content h1 { font-size: 1.9rem; }
}
