:root {
  --earth: #2C1A0E;
  --sand: #C9A96E;
  --cream: #F5F0E8;
  --moss: #4A5240;
  --fog: #E8E2D9;
  --gold: #B8860B;
  --white: #FDFAF5;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--earth);
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 3rem;
  background: rgba(253,250,245,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44,26,14,0.08);
  transition: all .3s;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600; letter-spacing: .04em;
  color: var(--earth); text-decoration: none;
}
.nav-logo span { color: var(--sand); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--earth); text-decoration: none; opacity: .7;
  transition: opacity .2s;
}
.nav-links a:hover { opacity: 1; }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.lang-btn {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid rgba(44,26,14,0.25); background: none;
  padding: .4rem .8rem; cursor: pointer; color: var(--earth);
  transition: all .2s; border-radius: 2px;
}
.lang-btn.active { background: var(--earth); color: var(--white); }
.btn-book-nav {
  background: var(--earth); color: var(--white);
  padding: .55rem 1.4rem; font-size: .78rem; letter-spacing: .1em;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: background .2s; text-decoration: none;
}
.btn-book-nav:hover { background: var(--moss); }

/* ─── PAGES ─── */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* ─── HERO & CAROUSEL ─── */
.hero {
  position: relative; height: 100vh; overflow: hidden;
  display: flex; align-items: flex-end; padding: 5rem 3rem;
}
.hero-carousel {
  position: absolute; inset: 0; z-index: 1; 
  width: 100%; height: 100%;
}
.carousel-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.5s ease-in-out;
  width: 100%; height: 100%;
}
.carousel-slide.active { opacity: 1; }
.hero-media {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  animation: slowZoom 18s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(44,26,14,.85) 15%, rgba(44,26,14,.2) 100%);
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero-content { position: relative; z-index: 2; max-width: 700px; }

.hero-tag {
  display: inline-block; font-size: .75rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--sand);
  border: 1px solid var(--sand); padding: .35rem .9rem;
  margin-bottom: 1.5rem;
  animation: fadeUp .8s ease both;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.4); 
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6rem); font-weight: 300;
  color: var(--white); line-height: 1.05;
  animation: fadeUp .9s .15s ease both;
}
.hero h1 em { font-style: italic; color: var(--sand); }
.hero-sub {
  margin-top: 1.2rem; font-size: .95rem; color: rgba(253,250,245,.9);
  max-width: 420px; line-height: 1.7;
  animation: fadeUp .9s .3s ease both;
}
.hero-ctas {
  display: flex; gap: 1rem; margin-top: 2.5rem;
  animation: fadeUp .9s .45s ease both;
}
.btn-primary {
  background: var(--sand); color: var(--earth);
  padding: .9rem 2.2rem; font-size: .82rem; letter-spacing: .1em;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: background .2s; font-family: 'Jost', sans-serif; font-weight: 500;
}
.btn-primary:hover { background: var(--gold); }
.btn-ghost {
  background: transparent; color: var(--white);
  padding: .9rem 2.2rem; font-size: .82rem; letter-spacing: .1em;
  text-transform: uppercase; border: 1px solid rgba(253,250,245,.4);
  cursor: pointer; transition: all .2s; font-family: 'Jost', sans-serif;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

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

/* ─── SCROLL INDICATOR ─── */
.scroll-hint {
  position: absolute; bottom: 2rem; right: 3rem; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  opacity: .5;
}
.scroll-hint span { font-size: .65rem; letter-spacing: .15em; color: var(--white); text-transform: uppercase; }
.scroll-line { width: 1px; height: 48px; background: var(--white); animation: lineDown 2s infinite; }
@keyframes lineDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── SECTION GÉNÉRIQUE ─── */
section { padding: 6rem 3rem; }
.section-label {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 1rem; font-weight: 500;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1.2;
  color: var(--earth);
}
.section-title em { font-style: italic; color: var(--moss); }

/* ─── À PROPOS ─── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center; max-width: 1100px; margin: 4rem auto 0;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; height: 100%; display: block;
}
.about-img-wrap img.about-img-full {
  object-fit: cover;
  background: transparent;
}
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--earth); color: var(--white);
  padding: 1.5rem 2rem; font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; text-align: center; line-height: 1.6;
}
.about-badge strong { display: block; font-size: 2.2rem; font-weight: 300; color: var(--sand); }
.about-text p { font-size: 1rem; line-height: 1.9; color: #5a4030; margin-bottom: 1.2rem; }
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem;
}
.feature-item {
  display: flex; align-items: flex-start; gap: .7rem; padding: 1rem;
  border: 1px solid var(--fog); transition: border-color .2s;
}
.feature-item:hover { border-color: var(--sand); }
.feature-icon { font-size: 1.3rem; line-height: 1; }
.feature-label { font-size: .78rem; letter-spacing: .06em; color: var(--earth); line-height: 1.5; }
.feature-label strong { display: block; font-size: .82rem; }

/* ─── GALERIE ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 8px; margin-top: 3rem;
}
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .3s;
}
.gallery-grid img:hover { opacity: .88; }
.gallery-grid .big { grid-row: 1 / 3; }

/* ─── MAISONS ─── */
.properties-grid {
  display: grid; gap: 2rem; margin-top: 3.5rem;
}
.property-card {
  cursor: pointer;
  border: 1px solid var(--fog);
  transition: all .25s;
  overflow: hidden;
}
.property-card:hover { border-color: var(--sand); box-shadow: 0 8px 32px rgba(44,26,14,.1); }
.property-card img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform .4s; }
.property-card:hover img { transform: scale(1.04); }
.property-info { padding: 1.4rem; }
.property-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400; margin-bottom: .3rem;
}
.property-meta { font-size: .78rem; color: #8a7060; margin-bottom: .8rem; }
.property-price {
  font-size: .88rem; color: var(--earth);
  display: flex; justify-content: space-between; align-items: center;
}
.property-price strong { font-size: 1.1rem; color: var(--gold); }
.stars { color: var(--sand); font-size: .85rem; }

/* ─── AVIS ─── */
.reviews-bg { background: var(--fog); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.review-card { background: var(--white); padding: 2rem; border: 1px solid var(--fog); }
.review-placeholder { border: 1px dashed #c9b8a8; text-align: center; }
.review-placeholder .review-stars { color: #c9b8a8; }
.review-placeholder .review-text { color: #9a8878; font-style: normal; margin-bottom: 0; }
.review-stars { color: var(--sand); font-size: 1rem; margin-bottom: .8rem; }
.review-text { font-size: .92rem; line-height: 1.8; color: #5a4030; font-style: italic; margin-bottom: 1.2rem; }
.review-author { display: flex; align-items: center; gap: .8rem; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sand); display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--white);
}
.review-name strong { display: block; font-size: .82rem; }
.review-name span { font-size: .72rem; color: #8a7060; }
.review-source {
  font-size: .72rem; color: #8a7060; text-decoration: none;
  transition: color .2s;
}
.review-source:hover { color: var(--sand); text-decoration: underline; }

/* ─── EXCURSIONS ─── */
#excursions { padding: 6rem 8vw; text-align: center; }
.excursions-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem;
  max-width: 1100px; margin: 3rem auto 0; text-align: left;
}
.excursion-card { flex: 1 1 300px; max-width: 340px; }
.exc-contact-btn {
  display: inline-block; margin-top: 3rem; text-decoration: none;
}
.excursion-card h3 {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: 1.3rem; color: var(--earth); margin: 1.2rem 0 .6rem;
}
.excursion-card p { font-size: .88rem; line-height: 1.7; color: #5a4030; }
.excursion-frame {
  width: 100%; aspect-ratio: 4 / 3;
  background: var(--fog);
  border: 1px dashed #c9b8a8;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.excursion-frame img { width: 100%; height: 100%; object-fit: cover; }
.excursion-frame span {
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  color: #9a8878;
}
@media (max-width: 768px) {
  #excursions { padding: 4rem 6vw; }
  .excursions-grid { gap: 2rem; }
  .excursion-card { flex-basis: 100%; max-width: 100%; }
}

/* ─── LOCATION MAP ─── */
#location { padding: 6rem 8vw; text-align: center; }
.map-wrap {
  max-width: 900px; margin: 2.5rem auto 0;
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(44,26,14,.15);
}
.map-wrap iframe { width: 100%; height: 450px; display: block; }
@media (max-width: 768px) {
  #location { padding: 4rem 6vw; }
  .map-wrap iframe { height: 300px; }
}

/* ─── BOOKING BAND ─── */
.booking-band {
  background: var(--earth); color: var(--white);
  display: flex; align-items: center; justify-content: space-between;
  padding: 3rem 5rem; gap: 2rem; flex-wrap: wrap;
}
.booking-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 300;
}
.booking-band h2 em { font-style: italic; color: var(--sand); }
.booking-form { display: flex; gap: 1rem; flex-wrap: wrap; }
.booking-form input, .booking-form select {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: var(--white); padding: .7rem 1.1rem; font-family: 'Jost', sans-serif;
  font-size: .82rem; outline: none; min-width: 140px;
}
.booking-form input::placeholder { color: rgba(255,255,255,.5); }
.booking-form select option { background: var(--earth); }
.btn-book {
  background: var(--sand); color: var(--earth);
  padding: .75rem 2rem; font-size: .82rem; letter-spacing: .1em;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: background .2s; font-family: 'Jost', sans-serif; font-weight: 500;
}
.btn-book:hover { background: var(--gold); }

/* ─── FOOTER ─── */
footer {
  background: #1a0e06; color: rgba(253,250,245,.5);
  padding: 4rem 3rem 2rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-brand .nav-logo { display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: .82rem; line-height: 1.8; max-width: 240px; }
footer h4 {
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 1.2rem;
}
footer ul { list-style: none; }
footer li { margin-bottom: .5rem; }
footer a { color: rgba(253,250,245,.5); text-decoration: none; font-size: .82rem; transition: color .2s; }
footer a:hover { color: var(--white); }
.footer-bottom {
  background: #1a0e06; padding: 1.5rem 3rem;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .72rem; color: rgba(253,250,245,.3);
}

/* ─── PROPERTY DETAIL ─── */
.prop-hero {
  height: 70vh; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 3rem;
}
.prop-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.prop-hero-content { position: relative; z-index: 2; }
.prop-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white); font-weight: 300;
}
.prop-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,26,14,.8) 30%, transparent);
}
.prop-detail-grid {
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 4rem; max-width: 1100px; margin: 0 auto;
  padding: 4rem 3rem;
}

/* ─── NOUVELLE GRILLE PHOTOS AIRBNB STYLE ─── */
.prop-images-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 8px;
  margin-bottom: 2.5rem;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.prop-img-wrap {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  width: 100%; height: 100%;
}
.prop-img-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.prop-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.prop-img-wrap:hover img {
  transform: scale(1.04);
}
.prop-img-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 500; font-family: 'Jost', sans-serif;
  transition: background 0.3s;
}
.prop-img-wrap:hover .prop-img-overlay {
  background: rgba(0,0,0,0.4);
}

.btn-show-all-mobile { display: none; }

@media (max-width: 900px) {
  .prop-images-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 320px;
    border-radius: 8px;
  }
  .prop-img-wrap:not(.prop-img-main) {
    display: none;
  }
  .btn-show-all-mobile {
    display: inline-flex;
    position: absolute;
    bottom: 1rem; right: 1rem;
    background: var(--white);
    color: var(--earth);
    border: none; padding: .6rem 1.2rem;
    border-radius: 6px; font-family: 'Jost', sans-serif;
    font-weight: 500; font-size: .85rem;
    cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10;
  }
}

.prop-desc { font-size: .95rem; line-height: 1.9; color: #5a4030; }
.prop-amenities { margin-top: 2rem; }
.prop-amenities h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; margin-bottom: 1rem;
}
.amenity-list { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.amenity-item { display: flex; gap: .6rem; font-size: .85rem; color: #5a4030; padding: .4rem 0; border-bottom: 1px solid var(--fog); }

.booking-card {
  position: sticky; top: 7rem;
  border: 1px solid var(--fog); padding: 2rem;
  background: var(--white);
}
.booking-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; margin-bottom: .3rem;
}
.booking-card .per-night { font-size: .78rem; color: #8a7060; margin-bottom: 1.5rem; }
.booking-card label { display: block; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: #8a7060; margin-bottom: .3rem; margin-top: 1rem; }
.booking-card input {
  width: 100%; border: 1px solid var(--fog); padding: .65rem .9rem;
  font-family: 'Jost', sans-serif; font-size: .88rem; outline: none; color: var(--earth);
  transition: border-color .2s;
}
.booking-card input:focus { border-color: var(--sand); }

.prop-capacity-text {
  font-family: 'Jost', sans-serif; 
  font-size: .88rem; 
  padding: .65rem 0; 
  color: var(--moss); 
  font-weight: 500;
}

.booking-card .btn-book { width: 100%; margin-top: 1.5rem; padding: 1rem; }

.airbnb-link {
  display: block; text-align: center; margin-top: .9rem;
  font-family: 'Jost', sans-serif; font-size: .82rem; color: var(--sand);
  text-decoration: underline; text-underline-offset: 3px;
}
.airbnb-link:hover { color: var(--gold); }
.booking-card .total-line {
  display: flex; justify-content: space-between;
  font-size: .85rem; padding: .5rem 0; border-bottom: 1px solid var(--fog);
}
.booking-card .total-line.grand { font-weight: 500; font-size: .92rem; border-bottom: none; margin-top: .5rem; }

/* ─── BACK BTN ─── */
.back-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--sand); cursor: pointer; margin: 1.5rem 3rem;
  border: none; background: none; padding: 0; font-family: 'Jost', sans-serif;
}
.back-btn:hover { color: var(--gold); }

/* ─── MODALS ─── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(44,26,14,.8); z-index: 200;
  align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); max-width: 440px; width: 90%;
  padding: 2.5rem; position: relative; max-height: 90vh; overflow-y: auto;
}
.modal h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; margin-bottom: .5rem; color: var(--earth); }
.modal p { font-size: .88rem; color: #5a4030; margin-bottom: 1.5rem; line-height: 1.7; }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 1.4rem; cursor: pointer; color: var(--earth);
  border: none; background: none;
}
.modal input {
  width: 100%; border: 1px solid var(--fog); padding: .7rem .9rem;
  font-family: 'Jost', sans-serif; font-size: .88rem; margin-bottom: .8rem;
  outline: none; color: var(--earth);
}
.modal input:focus { border-color: var(--sand); }
.modal .btn-primary { width: 100%; font-family: 'Jost', sans-serif; padding: .9rem; margin-top: 1rem; }

.excursion-modal-content { max-width: 600px; padding: 2rem; }
.excursion-modal-img-wrap {
  width: 100%; height: 280px; background: var(--fog);
  margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center;
}
.excursion-modal-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ─── LIGHTBOX (Zoom) ─── */
.lightbox-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.92); z-index: 9999;
  align-items: center; justify-content: center;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img {
  max-width: 90%; max-height: 85vh; object-fit: contain;
  animation: fadeUp 0.3s ease;
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 3rem; color: white; background: none; border: none; 
  cursor: pointer; line-height: 1; z-index: 10;
}
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 3rem; color: white; background: rgba(0,0,0,0.4);
  border: none; cursor: pointer; padding: 1rem 1.5rem; z-index: 10;
  transition: background 0.2s;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(0,0,0,0.8); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-counter {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: white; font-family: 'Jost', sans-serif; font-size: 1rem; letter-spacing: .1em;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  section { padding: 4rem 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { right: 0; bottom: -1rem; }
  .properties-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .booking-band { padding: 2rem 1.5rem; flex-direction: column; }
  footer { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-grid .big { grid-row: auto; }
  .prop-detail-grid { grid-template-columns: 1fr; }
  .booking-card { position: static; }
  .lightbox-prev, .lightbox-next { font-size: 2rem; padding: .5rem 1rem; }
}

/* ─── SÉLECTEUR DE CHAMBRES / FORMULES ─── */
.prop-rooms { margin-top: 1.2rem; display: flex; flex-direction: column; gap: .8rem; }
.room-option {
  border: 1px solid var(--fog); padding: .8rem .9rem; border-radius: 4px;
  transition: border-color .2s;
}
.room-option.has-selection { border-color: var(--sand); }
.room-option-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: .5rem;
}
.room-option-name { font-size: .85rem; font-weight: 500; color: var(--earth); }
.room-option-qty { font-size: .7rem; color: #8a7060; letter-spacing: .04em; }
.plan-buttons { display: grid; grid-template-columns: repeat(3, 1fr); gap: .4rem; }
.plan-btn {
  border: 1px solid var(--fog); background: var(--white); cursor: pointer;
  padding: .5rem .3rem; text-align: center; border-radius: 3px;
  font-family: 'Jost', sans-serif; color: var(--earth); transition: all .15s;
}
.plan-btn strong { display: block; font-size: .88rem; color: var(--gold); }
.plan-btn small { display: block; font-size: .62rem; letter-spacing: .03em; color: #8a7060; margin-top: .2rem; line-height: 1.3; }
.plan-btn:hover { border-color: var(--sand); }
.plan-btn.selected { background: var(--earth); border-color: var(--earth); }
.plan-btn.selected strong, .plan-btn.selected small { color: var(--white); }

/* ─── CARROUSEL MODALE EXCURSIONS ─── */
.excursion-modal-img-wrap { position: relative; }
.exc-carousel-prev, .exc-carousel-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.45); color: var(--white); border: none;
  font-size: 1.4rem; padding: .5rem .8rem; cursor: pointer; transition: background .2s;
}
.exc-carousel-prev:hover, .exc-carousel-next:hover { background: rgba(0,0,0,.75); }
.exc-carousel-prev { left: .6rem; }
.exc-carousel-next { right: .6rem; }
.exc-carousel-counter {
  position: absolute; bottom: .6rem; left: 50%; transform: translateX(-50%);
  color: var(--white); font-size: .78rem; letter-spacing: .08em;
  background: rgba(0,0,0,.45); padding: .2rem .6rem; border-radius: 3px;
}
