/* ============================================================
   LES NY D'ANGE — STYLES
   Based on Figma: EHzC1yP95HptACIFJ3vtly · node 3154:1004
   Design width: 1920px · Content container: 1400px
============================================================ */

/* ============================================================
   1. DESIGN TOKENS
============================================================ */
:root {
  /* ── Colors ── */
  --c-blue:       #1eb5fb;        /* hero gradient top                */
  --c-black:      #000000;        /* primary text, dark buttons       */
  --c-white:      #ffffff;        /* background, nav text             */
  --c-border:     #e0e0e0;        /* cards, tags, booking panel       */
  --c-muted:      #727272;        /* secondary text (capacity, footer)*/
  --c-dim:        #686868;        /* feature card descriptions        */
  --c-accent:     #6a6f00;        /* olive: privacy link, credit link */

  /* ── Typography ── */
  --font: 'Roboto Flex', sans-serif;

  /*  Roboto Flex — base axis values (all elements default)
      wdth 100 = normal width */
  --fvs-100: 'GRAD' 0, 'XOPQ' 96, 'XTRA' 468, 'YOPQ' 79,
             'YTAS' 750, 'YTDE' -203, 'YTFI' 738,
             'YTLC' 514, 'YTUC' 712, 'wdth' 100;

  /*  Hero title uses wdth 110 (wider letterforms) */
  --fvs-110: 'GRAD' 0, 'XOPQ' 96, 'XTRA' 468, 'YOPQ' 79,
             'YTAS' 750, 'YTDE' -203, 'YTFI' 738,
             'YTLC' 514, 'YTUC' 712, 'wdth' 110;

  /* ── Spacing ── */
  --gap-section: 180px;   /* vertical gap between page sections  */
  --gap-cards:    40px;   /* gap in properties grid              */

  /* ── Border radii ── */
  --r-btn:    12px;   /* buttons                             */
  --r-card:   12px;   /* property cards                      */
  --r-panel:  24px;   /* booking search panel                */
  --r-tag:     6px;   /* feature tags                        */
}


/* ============================================================
   2. RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  font-variation-settings: var(--fvs-100);
  background: var(--c-white);
  color: var(--c-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
}

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

ul {
  list-style: none;
}

/* Visually hidden utility for screen-reader-only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}


/* ============================================================
   3. LAYOUT CONTAINER
   Design: 1920px canvas · 1400px content area (260px each side).
   Formula: min(1400px, 100vw − 80px) gives:
     ·  1920px → 1400px  (auto margins = 260px each side) ✓
     ·  1480px → 1400px  (auto margins = 40px each side)
     ·   768px →  688px  (margins = 40px each side)
============================================================ */
.container {
  width: min(1400px, calc(100vw - 80px));
  margin-inline: auto;
}


/* ============================================================
   4. BUTTONS
   Figma: padding 15px 30px · radius 12px · font 18px
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: var(--r-btn);
  border: none;
  font-family: var(--font);
  font-variation-settings: var(--fvs-100);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.18px;
  white-space: nowrap;
  cursor: pointer;
  transition:
    opacity       0.2s  ease,
    transform     0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow    0.22s ease,
    background    0.2s  ease;
}

.btn:hover  {
  opacity: 1;             /* individual variants handle the hover color */
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0) scale(0.97);
  opacity: 1;
}

/* White outlined — navigation "Réserver" */
.btn--outline {
  background: transparent;
  border: 2px solid var(--c-white);
  color: var(--c-white);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.12);
}

/* Black filled — hero CTA, booking search */
.btn--dark {
  background: var(--c-black);
  color: var(--c-white);
}

.btn--dark:hover {
  background: #1c1c1c;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
}

/* Hero CTA: larger text — "Réserver maintenant" */
.btn--hero-cta {
  font-size: 28px;
  letter-spacing: -0.28px;
  padding: 15px 30px;
}


/* ============================================================
   5. HERO SECTION
   Figma: node 3165:1006 · 1920×1604px
   ─ Full-width background image (101.25% h, −1.25% top)
   ─ Two gradient overlays (blue top, white bottom)
   ─ Centered 1400px column: nav → gap 216px → headline + CTA
   ─ Booking panel: absolute, top 1384px, width 900px, centered
============================================================ */
.hero {
  position: relative;
  height: 1604px;
  overflow: hidden;   /* clips the 1.25% bg-image top overflow */
}

/* ── Background wrapper ── */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/*  Background photo — node 3165:1007
    Slightly oversized (101.25% / −1.25% top) for smooth parallax */
.hero__bg-img {
  position: absolute;
  inset: auto 0 0;
  top: -1.25%;
  width: 100%;
  height: 101.25%;
  object-fit: cover;
  object-position: center top;
}

/*  Composite gradient:
    Layer 1 (on top): 0deg → white at bottom (0%), fades to transparent at 18%
    Layer 2 (below):  180deg → #1EB5FB at 35%, fades to transparent at 51.57%
    Both render over the background photo. */
.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      0deg,
      rgb(255, 255, 255)       0%,
      rgba(255, 255, 255, 0)  18.042%
    ),
    linear-gradient(
      180deg,
      rgb(30, 181, 251)        35.068%,
      rgba(139, 224, 255, 0)  51.57%
    );
}

/* ── Hero inner column (nav + content) ── */
.hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 40px;    /* 40px from hero top to nav — Figma: top 40px */
  display: flex;
  flex-direction: column;
  gap: 216px;           /* gap between nav and hero text — Figma: gap 216px */
}


/* ─────────────────────────────────────────
   NAVIGATION — node 3165:1014
   flex row · justify-between · gap 44px (menu items)
───────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo — node 3165:1015 · 118×50px */
.nav__logo-link {
  display: block;
  flex-shrink: 0;
}

.nav__logo {
  width: 118px;
  height: 50px;
  object-fit: contain;
}

/* Menu links — node 3165:1017 · 18px / gap 44px */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 44px;
  flex-shrink: 0;
}

.nav__link {
  font-size: 18px;
  font-weight: 400;
  font-variation-settings: var(--fvs-100);
  line-height: 1.2;
  letter-spacing: -0.18px;
  color: var(--c-white);
  white-space: nowrap;
  transition: opacity 0.18s ease;
}

.nav__link:hover  { opacity: 0.75; }
.nav__link:focus-visible {
  outline: 2px solid var(--c-white);
  outline-offset: 4px;
  border-radius: 2px;
}

/* "Réserver" button — node 3165:1022 */
.nav__cta { flex-shrink: 0; }

/* Mobile hamburger — hidden on desktop */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  flex-shrink: 0;
  transition: opacity 0.18s;
}

.nav__toggle:hover { opacity: 0.75; }

.nav__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* Hamburger → X animation */
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


/* ─────────────────────────────────────────
   HERO CONTENT — node 3165:1008
   flex-col · gap 49px · items-center
───────────────────────────────────────── */
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 49px;
  width: 100%;
}

/* Text block — node 3165:1009 · gap 21px */
.hero__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
  width: 100%;
  text-align: center;
}

/* H1 — node 3165:1010 · 120px / wdth 110 / tracking −1.2px */
.hero__title {
  font-size: 120px;
  font-weight: 400;
  font-variation-settings: var(--fvs-110);
  line-height: 1;
  letter-spacing: -1.2px;
  color: var(--c-white);
  width: 100%;
}

/* Subtitle — node 3165:1011 · 32px / tracking −0.32px */
.hero__subtitle {
  font-size: 32px;
  font-weight: 400;
  font-variation-settings: var(--fvs-100);
  line-height: 1.2;
  letter-spacing: -0.32px;
  color: var(--c-white);
  width: 100%;
}


/* ─────────────────────────────────────────
   BOOKING SEARCH PANEL — node 3165:1024
   Absolute · top 1384px · width 900px · centered
   bg white · border 2px #e0e0e0 · radius 24px · padding 32px
   flex row · gap 40px
───────────────────────────────────────── */
.booking-panel {
  position: absolute;
  top: 1384px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;

  width: 900px;
  padding: 32px;
  background: var(--c-white);
  border: 2px solid var(--c-border);
  border-radius: var(--r-panel);

  display: flex;
  align-items: center;
  gap: 40px;
}

/* Tagline hidden on desktop — only shown on mobile via media query */
.booking-panel__tagline { display: none; }

/* Expand wrapper transparent to flex layout on desktop */
.booking-panel__expand { display: contents; }

/* Each date / guests input field */
.booking-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.booking-field__label {
  font-family: var(--font);
  font-variation-settings: var(--fvs-100);
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: var(--c-black);
  white-space: nowrap;
}

.booking-field__hint {
  font-family: var(--font);
  font-variation-settings: var(--fvs-100);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: var(--c-black);
}

/* 1px vertical separator — node 3165:1028 */
.booking-sep {
  width: 1px;
  align-self: stretch;
  background: var(--c-border);
  flex-shrink: 0;
}


/* ============================================================
   6. ABOUT SECTION — node 3154:699
   Figma: flex-col · gap 70px · align-items: flex-end
   Container width: 1400px
============================================================ */
.about {
  margin-top: var(--gap-section);
}

/*  Outer flex column — gap 70px, align-items: flex-end
    This right-aligns the features row (920px) within 1400px */
.about__wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 70px;
}

/* ── Intro row — node 3154:666 ── */
/*  flex row · gap 40px · full width
    Left: "Bienvenue…" label (439px, opacity 0.5)
    Right: body text (flex 1, 32px medium) */
.about__intro {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
}

/* Label — node 3154:667 · 439px · 24px · opacity 50% */
.about__label {
  flex-shrink: 0;
  width: 439px;
  font-size: 24px;
  font-weight: 400;
  font-variation-settings: var(--fvs-100);
  line-height: 1.2;
  letter-spacing: -0.24px;
  color: var(--c-black);
  opacity: 0.5;
}

/* Body copy — node 3154:668 · 32px medium · line-height 1.4 */
.about__body {
  flex: 1;
  min-width: 0;
  font-size: 32px;
  font-weight: 500;
  font-variation-settings: var(--fvs-100);
  line-height: 1.4;
  letter-spacing: -0.32px;
  color: var(--c-black);
}

/* ── Feature cards row — node 3154:698 ── */
/*  flex row · gap 40px · natural width 920px (right-aligned by parent) */
.about__features {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-shrink: 0;
}

/* Individual feature card — node 3154:670 / 3154:677 · w-440px */
.feature-card {
  width: 440px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Icon — 48×48px */
.feature-card__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

/* Text content */
.feature-card__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Title — 18px regular · color black */
.feature-card__title {
  font-size: 18px;
  font-weight: 400;
  font-variation-settings: var(--fvs-100);
  line-height: 24px;
  color: var(--c-black);
}

/* Description — 18px regular · color #686868 */
.feature-card__desc {
  font-size: 18px;
  font-weight: 400;
  font-variation-settings: var(--fvs-100);
  line-height: 24px;
  color: var(--c-dim);
}


/* ============================================================
   7. PROPERTIES GRID — node 3154:925
   Figma: flex-wrap · gap 40px · card w-680px
   CSS Grid gives exact 2-col layout: 2 × 680px + 40px = 1400px
============================================================ */
.properties {
  margin-top: var(--gap-section);
}

.properties__grid {
  display: grid;
  grid-template-columns: repeat(2, 680px);
  gap: var(--gap-cards);
}

/* ── Property Card link wrapper — makes entire card clickable ── */
.property-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: var(--r-card);   /* matches card for focus ring */
}

.property-card-link:focus-visible {
  outline: 2px solid var(--c-black);
  outline-offset: 3px;
}

/* Image zoom via the link wrapper hover */
.property-card-link:hover .property-card__image .card-carousel__slide.is-active img {
  transform: scale(1.05);
}

.property-card-link:hover .property-card {
  border-color: #d0d0d0;
}

/* ── Property Card — node 3154:782 ── */
/*  border 2px #e0e0e0 · radius 12px · overflow hidden
    flex-col · gap 32px (between image and content) */
.property-card {
  border: 2px solid var(--c-border);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--c-white);
  transition: border-color 0.2s ease;
}

.property-card:hover {
  border-color: #d0d0d0;
}

/* Card image — node I3154:782;3154:706 · aspect-ratio 1536/1024 (3:2) */
.property-card__image {
  width: 100%;
  aspect-ratio: 1536 / 1024;
  overflow: hidden;
  flex-shrink: 0;
}

.property-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-card:hover .property-card__image .card-carousel__slide.is-active img {
  transform: scale(1.05);
}

/* Card content — node I3154:782;3154:710
   padding: 0 32px 32px · gap 25px */
.property-card__body {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 32px 32px 32px;
}

/* Title + capacity block — node I3154:782;3154:751 · gap 20px */
.property-card__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card title — 38px medium */
.property-card__name {
  font-size: 38px;
  font-weight: 500;
  font-variation-settings: var(--fvs-100);
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--c-black);
}

/* Capacity — 24px regular · #727272 */
.property-card__capacity {
  font-size: 24px;
  font-weight: 400;
  font-variation-settings: var(--fvs-100);
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--c-muted);
  white-space: nowrap;
}

/* Tags — node I3154:782;3154:732 · flex-wrap · gap 15px */
.property-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* Individual tag — node I3154:782;3154:742
   border 2px #e0e0e0 · radius 6px · padding 10px 15px
   18px medium · #727272 */
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border: 2px solid var(--c-border);
  border-radius: var(--r-tag);
  font-size: 18px;
  font-weight: 500;
  font-variation-settings: var(--fvs-100);
  line-height: 1.2;
  letter-spacing: -0.18px;
  color: var(--c-muted);
  white-space: nowrap;
}


/* ============================================================
   8. FOOTER — node 3154:962
   Figma: flex row · justify-between · align-items: flex-start
   Left: brand (635px) · Right: nav + contact (440px)
============================================================ */
.footer {
  margin-top: var(--gap-section);
  padding-bottom: 80px;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

/* ── Brand column — node 3154:1000 · w-635px ── */
.footer__brand {
  width: 635px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__logo-link { display: block; }

/* Logo — 118×50px */
.footer__logo {
  width: 118px;
  height: 50px;
  object-fit: contain;
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* "© 2025 Les Ny d'Ange" — node 3154:995 · 16px · #727272 */
.footer__copy {
  font-size: 16px;
  font-weight: 400;
  font-variation-settings: var(--fvs-100);
  line-height: 1.2;
  letter-spacing: -0.16px;
  color: var(--c-muted);
  white-space: nowrap;
}

/* Privacy policy link — node 3154:998 · #6a6f00 */
.footer__policy {
  font-size: 16px;
  font-weight: 400;
  font-variation-settings: var(--fvs-100);
  line-height: 1.2;
  letter-spacing: -0.16px;
  color: var(--c-accent);
  white-space: nowrap;
  transition: opacity 0.18s ease;
}

.footer__policy:hover { opacity: 0.72; }

/* ── Right section — node 3154:991 ── */
/*  flex row · gap 40px · w-440px · align-self stretch  */
.footer__right {
  width: 440px;
  flex-shrink: 0;
  display: flex;
  gap: 40px;
  align-self: stretch;
}

/* Site nav column — node 3154:965 · w-202px · gap 10px */
.footer__nav {
  width: 202px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.footer__nav-link {
  font-size: 18px;
  font-weight: 400;
  font-variation-settings: var(--fvs-100);
  line-height: 1.2;
  letter-spacing: -0.18px;
  color: var(--c-black);
  white-space: nowrap;
  transition: opacity 0.18s ease;
}

.footer__nav-link:hover { opacity: 0.62; }

/* Contact + credit column — node 3154:1001 · flex-1 · justify-between */
.footer__contact {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.footer__contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__contact-link {
  font-size: 18px;
  font-weight: 400;
  font-variation-settings: var(--fvs-100);
  line-height: 1.2;
  letter-spacing: -0.18px;
  color: var(--c-black);
  white-space: nowrap;
  transition: opacity 0.18s ease;
}

.footer__contact-link:hover { opacity: 0.62; }

/* "Site créé par hnsolutions.be" — node 3154:997 · 16px · #727272 */
.footer__credit {
  font-size: 16px;
  font-weight: 400;
  font-variation-settings: var(--fvs-100);
  line-height: 1.2;
  letter-spacing: -0.16px;
  color: var(--c-muted);
}

.footer__credit-link {
  color: var(--c-accent);
  transition: opacity 0.18s ease;
}

.footer__credit-link:hover { opacity: 0.72; }


/* ============================================================
   9. RESPONSIVE — ≤ 1480px
   Container switches from exact 1400px to fluid (100vw − 80px).
   Booking panel switches from absolute to relative flow.
   Property cards: keep 2-col but use 1fr each.
============================================================ */
@media (max-width: 1480px) {

  /* Properties: switch from fixed 680px cols to fluid 2-col */
  .properties__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Feature cards: switch from fixed 440px to fluid */
  .about__features {
    width: 100%;
  }

  .feature-card {
    width: calc(50% - 20px);
    flex-shrink: 0;
  }

  /* Footer brand: shrink to allow natural widths */
  .footer__brand {
    width: auto;
    flex: 1;
  }

  .footer__right {
    width: auto;
    flex-shrink: 0;
  }
}


/* ============================================================
   10. RESPONSIVE — ≤ 1280px
   Hero: switch to auto height, booking panel flows into content.
   Font sizes begin to scale.
============================================================ */
@media (max-width: 1280px) {

  :root {
    --gap-section: 120px;
  }

  /* ── Hero ── */
  .hero {
    height: auto;
    min-height: 100svh;
    padding-bottom: 60px;
  }

  /* Booking panel: exit absolute, become a regular flow element */
  .booking-panel {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: min(900px, calc(100vw - 80px));
    margin: 48px auto 0;
  }

  .hero__inner {
    gap: clamp(60px, 8vw, 216px);
  }

  /* Title: scale smoothly between 60px and 120px */
  .hero__title {
    font-size: clamp(60px, 8.5vw, 120px);
    letter-spacing: clamp(-0.6px, -0.1vw, -1.2px);
  }

  .hero__subtitle {
    font-size: clamp(20px, 2.5vw, 32px);
  }

  /* About body: scale between 22px and 32px */
  .about__body {
    font-size: clamp(22px, 2.4vw, 32px);
  }
}


/* ============================================================
   11. RESPONSIVE — ≤ 1024px (tablet)
============================================================ */
@media (max-width: 1024px) {

  :root {
    --gap-section: 80px;
    --gap-cards: 24px;
  }

  /* ── Navigation ── */
  .nav__link {
    font-size: 16px;
  }

  /* ── Hero ── */
  .hero__title {
    font-size: clamp(48px, 7vw, 80px);
  }

  .hero__subtitle {
    font-size: clamp(18px, 2.2vw, 28px);
  }

  /* ── About: stack intro column ── */
  .about__intro {
    flex-direction: column;
    gap: 16px;
  }

  .about__label {
    width: 100%;
    font-size: 18px;
  }

  .about__body {
    font-size: 22px;
  }

  /* Feature cards: stack if < 2 fit */
  .about__features {
    flex-wrap: wrap;
    width: 100%;
  }

  .feature-card {
    width: calc(50% - 12px);
  }

  /* ── Footer: reduce right column width ── */
  .footer__right {
    gap: 24px;
  }

  .footer__nav {
    width: auto;
  }

  .property-card__name {
    font-size: 30px;
  }

  .property-card__capacity {
    font-size: 20px;
  }
}


/* ============================================================
   12. RESPONSIVE — ≤ 768px (mobile)
============================================================ */
@media (max-width: 768px) {

  :root {
    --gap-section: 64px;
    --gap-cards: 20px;
  }

  /* ── Mobile nav ── */
  .nav__cta     { display: none; }          /* hide desktop "Réserver" btn */
  .nav__toggle  { display: flex; }          /* show hamburger               */

  /* Dropdown panel for mobile nav */
  .nav__menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;              /* above booking popups (9000) */
    background: var(--c-white);
    display: none;               /* hidden by default */
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  }

  .nav__menu.is-open {
    display: flex;
  }

  /* Nav links in the dropdown */
  .nav__menu .nav__link {
    color: var(--c-black);
    font-size: 18px;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--c-border);
  }

  .nav__menu .nav__link:last-child {
    border-bottom: none;
  }

  /* ── Hero ── */
  .hero__inner {
    padding-top: 24px;
    gap: 48px;
  }

  .hero__title {
    font-size: clamp(36px, 10vw, 60px);
    letter-spacing: -0.4px;
  }

  .hero__subtitle {
    font-size: 18px;
  }

  .btn--hero-cta {
    display: none;
  }

  /* ── Booking panel: stack vertically ── */
  .booking-panel {
    flex-direction: column;
    align-items: stretch;
    width: calc(100vw - 30px);
    border-radius: 16px;
    padding: 8px;
    gap: 0;
    position: relative;
    left: auto;
    transform: none;
    margin: 36px auto 0;
  }

  /* ── Tagline (mobile only) ── */
  .booking-panel__tagline {
    display: block;
    font-family: var(--font);
    font-size: 15px;
    font-variation-settings: var(--fvs-100);
    color: var(--c-muted);
    padding: 12px 18px 4px;
    margin: 0;
  }

  .booking-panel.is-expanded .booking-panel__tagline {
    display: none;
  }

  /* ── Expand wrapper: hidden by default, revealed on interaction ── */
  .booking-panel__expand {
    display: flex;
    flex-direction: column;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
      max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      opacity    0.3s ease 0.08s;
  }

  .booking-panel.is-expanded .booking-panel__expand {
    max-height: 320px;
    opacity: 1;
  }



  .booking-panel .booking-field {
    border-radius: 12px;
    border: none;
    padding: 16px 18px;
    width: 100%;
    margin: 0;
  }

  /* Separator between check-in and the expand block */
  #field-checkin {
    border-bottom: 1px solid var(--c-border);
  }

  /* When collapsed, no border needed under the only visible field */
  .booking-panel:not(.is-expanded) #field-checkin {
    border-bottom: none;
  }

  /* Inside expand: checkout gets a separator, guests does not */
  .booking-panel__expand #field-checkout {
    border-bottom: 1px solid var(--c-border);
  }

  /* Stagger: slight delay on each revealed item */
  .booking-panel__expand #field-checkout { transition-delay: 0s; }
  .booking-panel__expand #field-guests   { transition-delay: 0.06s; }
  .booking-panel__expand #btn-search     { transition-delay: 0.12s; }

  .booking-sep { display: none; }

  .booking-panel .btn--dark {
    width: 100%;
    margin-top: 8px;
    border-radius: 12px;
  }

  .hero {
    padding-bottom: 24px;
  }

  /* ── About ── */
  .about__intro {
    flex-direction: column;
    gap: 12px;
  }

  .about__label {
    width: 100%;
    font-size: 16px;
    opacity: 0.5;
  }

  .about__body {
    font-size: 20px;
    line-height: 1.5;
  }

  .about__features {
    flex-direction: column;
    gap: 32px;
    width: 100%;
  }

  .feature-card {
    width: 100%;
    gap: 20px;
  }

  /* ── Properties: single column ── */
  .properties__grid {
    grid-template-columns: 1fr;
  }

  .property-card__name     { font-size: 28px; }
  .property-card__capacity { font-size: 18px; }

  .tag {
    font-size: 14px;
    padding: 8px 12px;
  }

  /* ── Footer: stack vertically ── */
  .footer__inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer__brand  { width: 100%; }

  .footer__right {
    width: 100%;
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
  }

  .footer__contact {
    gap: 20px;
    justify-content: flex-start;
  }
}


/* ============================================================
   13. RESPONSIVE — ≤ 480px (small phones)
============================================================ */
@media (max-width: 480px) {

  :root {
    --gap-section: 48px;
  }

  .hero__title {
    font-size: 34px;
    letter-spacing: -0.3px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .btn--hero-cta {
    font-size: 18px;
    padding: 13px 22px;
  }

  .about__body {
    font-size: 18px;
  }

  .property-card__name {
    font-size: 24px;
  }

  .footer__right {
    flex-direction: column;
    gap: 24px;
  }
}


/* ============================================================
   14. FOCUS VISIBLE — keyboard accessibility
============================================================ */
:focus-visible {
  outline: 2px solid var(--c-blue);
  outline-offset: 3px;
  border-radius: 3px;
}

.btn:focus-visible {
  outline: 2px solid var(--c-blue);
  outline-offset: 3px;
}


/* ============================================================
   15. KEYFRAME ANIMATIONS
============================================================ */

/* General upward entrance */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Nav enters from above */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pure opacity fade */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Hero background: subtle zoom out on load */
@keyframes bgZoomOut {
  from {
    transform: scale(1.07);
    opacity: 0.6;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Booking panel: slides up from slightly below */
@keyframes panelRise {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Shimmer for booking panel on focus */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}


/* ============================================================
   16. HERO ENTRANCE — CSS-only, fires once on page load
   Timing stagger:  bg(0s) → nav(0.15s) → title(0.4s)
                    → subtitle(0.58s) → cta(0.72s) → panel(0.9s)
============================================================ */

/* Background photo: zoom-out reveal */
.hero__bg-img {
  animation: bgZoomOut 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Gradient overlay: simple fade */
.hero__gradient {
  animation: fadeIn 1.8s ease forwards;
}

/* Navigation bar: drops in from above */
.nav {
  animation: fadeDown 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

/* Hero headline */
.hero__title {
  animation: fadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

/* Hero subtitle */
.hero__subtitle {
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.58s both;
}

/* Hero CTA button */
.btn--hero-cta {
  animation: fadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.72s both;
}

/* Booking panel — uses its own keyframe to preserve translateX(-50%) */
.booking-panel {
  animation: panelRise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.9s both;
}

/* On small screens the panel is position:relative — safe fallback */
@media (max-width: 1280px) {
  .booking-panel {
    animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.9s both;
  }
}


/* ============================================================
   17. SCROLL REVEAL
   JS (IntersectionObserver) adds .is-visible when element
   enters the viewport.  .js prefix = graceful no-JS fallback.

   Two variants:
   · .reveal       — single element: opacity + translateY
   · .reveal-card  — property card only: opacity (transform
                      reserved for hover lift — no conflict)
============================================================ */

/* ── Single-element reveal ── */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity   0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Card reveal — opacity only ── */
.js .reveal-card {
  opacity: 0;
  transition:
    opacity      0.7s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.2s ease;
}

.js .reveal-card.is-visible {
  opacity: 1;
}


/* ============================================================
   18. NAVIGATION LINK HOVER
============================================================ */
.nav__link:hover { opacity: 0.75; }


/* ============================================================
   19. FEATURE CARD HOVER
============================================================ */
.feature-card {
  border-radius: 12px;
}


/* ============================================================
   20. TAG HOVER — light background fill
============================================================ */
.tag {
  transition:
    background-color 0.18s ease,
    border-color     0.18s ease,
    color            0.18s ease;
}

.tag:hover {
  background-color: #f4f4f4;
  border-color: #c8c8c8;
}


/* ============================================================
   21. FOOTER LINK HOVER
============================================================ */
.footer__nav-link:hover { opacity: 0.62; }


/* ============================================================
   22. LOGO HOVER — gentle opacity dip
============================================================ */
.nav__logo-link,
.footer__logo-link {
  display: inline-block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav__logo-link:hover,
.footer__logo-link:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}


/* ============================================================
   23. BOOKING PANEL — field hover + focus-within glow
============================================================ */
.booking-field {
  cursor: pointer;
  padding: 8px 10px;
  margin: -8px -10px;
  border-radius: 10px;
  transition: background-color 0.18s ease;
}

.booking-field:hover {
  background-color: #f7f7f7;
}

/* Glow on the panel when any field is interacted with */
.booking-panel:focus-within {
  box-shadow: 0 0 0 3px rgba(30, 181, 251, 0.18);
}


/* ============================================================
   24. FOOTER CONTACT LINKS — colour shift hover
============================================================ */
.footer__contact-link {
  position: relative;
  transition: opacity 0.18s ease, color 0.18s ease;
}

.footer__contact-link:hover {
  opacity: 0.75;
  color: var(--c-accent);
}


/* ============================================================
   25. PROPERTY CARD IMAGE — fade-in after load
   Gated by .js so without JavaScript images show immediately.
============================================================ */
.js .property-card__image img {
  opacity: 0;
  transition:
    opacity   0.45s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .property-card__image img.img-loaded {
  opacity: 1;
}


/* ============================================================
   26. REDUCED MOTION
   Respect prefers-reduced-motion: all animations off,
   all transitions instant.
============================================================ */
@media (prefers-reduced-motion: reduce) {
  /* Kill all animations */
  .hero__bg-img,
  .hero__gradient,
  .nav,
  .hero__title,
  .hero__subtitle,
  .btn--hero-cta,
  .booking-panel {
    animation: none;
  }

  /* Kill all transitions */
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration:  0.01ms !important;
  }

  /* Ensure everything is visible despite animation fill-mode */
  .hero__bg-img,
  .hero__gradient,
  .nav,
  .hero__title,
  .hero__subtitle,
  .btn--hero-cta,
  .booking-panel,
  .js .reveal,
  .js .reveal-card,
  .js .property-card__image img {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ============================================================
   27. BOOKING POPUPS
   Portals appended to <body>, position: fixed so they escape
   the hero's overflow:hidden.  Styled to match the existing
   design language: same font, same border (#e0e0e0), same
   white background, radius 16px.
============================================================ */

/* ── Shared popup shell ── */
.bk-popup {
  position: fixed;
  z-index: 9000;
  background: var(--c-white);
  border: 2px solid var(--c-border);
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);

  /* Hidden by default — JS adds .is-open */
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity   0.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.bk-popup.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}


/* ── Active booking field highlight ── */
.booking-field.is-active {
  background-color: #efefef !important;
}


/* ── Calendar popup ── */
.bk-cal {
  width: 296px;
  padding: 16px 20px 20px;
  user-select: none;
}

/* Mode label: "Date d'arrivée" / "Date de départ" */
.bk-cal__mode {
  font-family: var(--font);
  font-variation-settings: var(--fvs-100);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 12px;
}

/* Month navigation row */
.bk-cal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.bk-cal__month-label {
  font-family: var(--font);
  font-variation-settings: var(--fvs-100);
  font-size: 15px;
  font-weight: 500;
  color: var(--c-black);
}

/* Prev / Next month buttons */
.bk-cal__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  color: var(--c-black);
  transition: background-color 0.15s ease;
  flex-shrink: 0;
}

.bk-cal__nav:hover    { background-color: #f0f0f0; }
.bk-cal__nav:active   { background-color: #e8e8e8; }
.bk-cal__nav:disabled { opacity: 0.3; cursor: default; }

/* Weekday header row */
.bk-cal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}

.bk-cal__wd {
  text-align: center;
  font-family: var(--font);
  font-variation-settings: var(--fvs-100);
  font-size: 11px;
  font-weight: 500;
  color: var(--c-muted);
  padding: 4px 0 6px;
}

/* Day grid */
.bk-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

/* Individual day cell */
.bk-cal__day {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border: none;
  background: transparent;
  border-radius: 50%;
  font-family: var(--font);
  font-variation-settings: var(--fvs-100);
  font-size: 13px;
  font-weight: 400;
  color: var(--c-black);
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    color            0.15s ease;
}

/* Empty spacer cells (start-of-month padding) */
.bk-cal__day--empty {
  cursor: default;
  pointer-events: none;
}

/* Past / unavailable dates */
.bk-cal__day--disabled {
  color: #ccc;
  cursor: not-allowed;
  pointer-events: none;
}

/* Today indicator — blue text */
.bk-cal__day--today:not(.bk-cal__day--selected) {
  color: var(--c-blue);
  font-weight: 600;
}

/* Hover on interactive days */
.bk-cal__day:not(.bk-cal__day--empty):not(.bk-cal__day--disabled):not(.bk-cal__day--selected):hover {
  background-color: #f0f0f0;
}

/* Selected day (check-in or check-out) — black circle */
.bk-cal__day--selected {
  background: var(--c-black) !important;
  color: var(--c-white) !important;
  font-weight: 500;
  border-radius: 50% !important;
}

/* Days inside the check-in → check-out range */
.bk-cal__day--in-range {
  background-color: rgba(30, 181, 251, 0.13);
  border-radius: 0;
  color: var(--c-black);
}

/* First day of range: rounded left half */
.bk-cal__day--range-start {
  border-radius: 50% 0 0 50%;
}

/* Last day of range: rounded right half */
.bk-cal__day--range-end {
  border-radius: 0 50% 50% 0;
}

/* Loading state: skeleton pulse on day cells while blocked dates load */
.bk-cal__grid--loading .bk-cal__day:not(.bk-cal__day--empty) {
  color: transparent;
  pointer-events: none;
  background: #f0f0f0;
  animation: bk-skeleton 1.2s ease-in-out infinite;
}

@keyframes bk-skeleton {
  0%, 100% { background-color: #f0f0f0; }
  50%      { background-color: #e0e0e0; }
}

/* Already-booked days (from iCal feed) — diagonal strikethrough */
.bk-cal__day--booked {
  position: relative;
  color: #ddd;
}
.bk-cal__day--booked::after {
  content: '';
  position: absolute;
  inset: 20% 20%;
  background: linear-gradient(
    to bottom right,
    transparent calc(50% - 0.5px),
    #ddd calc(50% - 0.5px),
    #ddd calc(50% + 0.5px),
    transparent calc(50% + 0.5px)
  );
  pointer-events: none;
}

/* ── Calendar error toast ── */
.bk-cal__error {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  background: #b91c1c;
  color: #fff;
  font-size: 13px;
  line-height: 1.35;
  padding: 8px 16px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 10;
}
.bk-cal__error--visible {
  opacity: 1;
}

/* ── Guest picker popup ── */
.bk-guests {
  width: 248px;
  padding: 20px;
}

.bk-guests__header {
  font-family: var(--font);
  font-variation-settings: var(--fvs-100);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 16px;
}

.bk-guests__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bk-guests__info { flex: 1; }

.bk-guests__label {
  font-family: var(--font);
  font-variation-settings: var(--fvs-100);
  font-size: 15px;
  font-weight: 400;
  color: var(--c-black);
  line-height: 1.2;
}

.bk-guests__sub {
  font-family: var(--font);
  font-variation-settings: var(--fvs-100);
  font-size: 12px;
  color: var(--c-muted);
  margin-top: 2px;
}

.bk-guests__controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* +/− circular buttons */
.bk-guests__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border);
  background: var(--c-white);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: var(--c-black);
  transition:
    background-color 0.15s ease,
    border-color     0.15s ease,
    transform        0.1s  ease;
}

.bk-guests__btn:hover:not(:disabled) {
  background-color: #f5f5f5;
  border-color: #b0b0b0;
}

.bk-guests__btn:active:not(:disabled) {
  transform: scale(0.92);
}

.bk-guests__btn:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.bk-guests__count {
  font-family: var(--font);
  font-variation-settings: var(--fvs-100);
  font-size: 16px;
  font-weight: 500;
  color: var(--c-black);
  min-width: 20px;
  text-align: center;
}


/* ── Search button feedback state ── */
.btn--searching {
  pointer-events: none;
  opacity: 0.7;
  /* Width locked via JS before state change — no layout shift */
}


/* ── Booking field: cursor pointer (JS-only interaction) ── */
.js .booking-field {
  cursor: pointer;
}


/* ============================================================
   28. DETAIL PAGE — SOLID NAV
   Overrides the hero-white nav for pages with a light background.
============================================================ */
.nav--solid {
  display: block;         /* override flex from .nav — container handles layout */
  background: var(--c-white);
  color: var(--c-black);
}

/* Nav inner row: the .container inside the solid nav */
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 20px 0;
}

.nav--solid .nav__link {
  color: var(--c-black);
}

.nav--solid .nav__link:focus-visible {
  outline-color: var(--c-black);
}

.nav--solid .nav__bar {
  background: var(--c-black);
}

/* .nav--solid .nav__menu uses same white overlay as default nav on mobile */

/* ── Mobile nav close button ── */
.nav__close {
  display: none; /* shown only on mobile via media query */
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--c-black);
  margin-bottom: 8px;
  align-self: flex-end;
  opacity: 0.6;
}

.nav__close:hover { opacity: 1; }

@media (max-width: 768px) {
  .nav__close { display: flex; align-items: center; justify-content: center; }
}


/* ============================================================
   29. BREADCRUMB
============================================================ */
.breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  font-size: 14px;
  font-variation-settings: var(--fvs-100);
  color: var(--c-muted);
}

.breadcrumb__link {
  color: var(--c-muted);
  transition: color 0.18s ease;
}

.breadcrumb__link:hover { color: var(--c-black); }

.breadcrumb__sep { color: var(--c-border); }

.breadcrumb__current { color: var(--c-black); }


/* ============================================================
   30. GALLERY
============================================================ */
.gallery-section {
  padding: 48px 0 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  grid-template-rows: 276px 276px;
  gap: 4px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

/* Main image: spans both rows */
.gallery-grid__main {
  grid-column: 1;
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Thumbnail area */
.gallery-grid__thumbs {
  grid-column: 2 / 4;
  grid-row: 1 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}

.gallery-grid__thumb {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-grid__media {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Image zoom on hover */
.gallery-grid__main img,
.gallery-grid__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center center;
}

.gallery-grid__main:hover img,
.gallery-grid__thumb:hover img {
  transform: scale(1.04);
}

.js .gallery-grid__main > img,
.js .gallery-grid__media--main img {
  animation: kenburns-main 13s ease-in-out infinite alternate;
  will-change: transform;
}

/* Invisible click overlay on main image */
.gallery-grid__main-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  border: none;
  cursor: zoom-in;
  font-size: 0;
  color: transparent;
}

/* Invisible click overlay on thumbnails */
.gallery-grid__thumb-btn {
  position: absolute;
  inset: 0;
  background: transparent;
  border: none;
  cursor: zoom-in;
}

/* Last thumbnail: "Voir les N photos" overlay */
.gallery-grid__thumb--more {
  position: relative;
}

.gallery-grid__thumb--more::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.gallery-grid__more-btn {
  position: absolute;
  inset: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  font-variation-settings: var(--fvs-100);
  color: var(--c-white);
  letter-spacing: 0.1px;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}

.gallery-grid__more-btn:hover { text-decoration: underline; }


/* ============================================================
   31. LIGHTBOX
============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__inner {
  max-width: min(1200px, 90vw);
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

.lightbox__close,
.lightbox__nav {
  position: fixed;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--c-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  transition: background 0.18s ease;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox__close { top: 20px; right: 20px; }
.lightbox__nav--prev { left: 20px;  top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 20px; top: 50%; transform: translateY(-50%); }

.lightbox__counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font);
  font-variation-settings: var(--fvs-100);
}


/* ============================================================
   32. DETAIL LAYOUT — two-column
============================================================ */
.detail-layout {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  padding-top: 56px;   /* visual gap between gallery bottom and content */
  padding-bottom: var(--gap-section);
}

.detail-content {
  flex: 1;
  min-width: 0;
}

.detail-sidebar {
  width: 380px;
  flex-shrink: 0;
  position: sticky;
  top: 24px;
  align-self: flex-start;
  /* Top padding aligns the booking card with the h1 heading in the content column */
  padding-top: 52px;
}


/* ============================================================
   33. DETAIL HEADER (title · location · stats)
============================================================ */
.detail-header {
  padding: 52px 0 48px;
}

.detail-title {
  font-size: 52px;
  font-weight: 400;
  font-variation-settings: var(--fvs-100);
  line-height: 1.1;
  letter-spacing: -0.52px;
  color: var(--c-black);
  margin-bottom: 20px;
}

.detail-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 17px;
  font-variation-settings: var(--fvs-100);
  color: var(--c-muted);
  margin-bottom: 36px;
}

.detail-location__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--c-muted);
}

.detail-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}

.detail-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-variation-settings: var(--fvs-100);
  color: var(--c-black);
}

.detail-stat__icon {
  display: flex;
  align-items: center;
  color: var(--c-muted);
  flex-shrink: 0;
}

.detail-stat__value {
  font-weight: 600;
}

.detail-stat__label {
  color: var(--c-muted);
}

/* Horizontal rule between sections */
.detail-sep {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 0;
}


/* ============================================================
   34. SECTION BLOCKS (About · Rooms · Amenities · Rules · Location)
============================================================ */
.section-block {
  padding: 52px 0;
}

.section-block__title {
  font-size: 26px;
  font-weight: 400;
  font-variation-settings: var(--fvs-100);
  line-height: 1.2;
  letter-spacing: -0.26px;
  color: var(--c-black);
  margin-bottom: 32px;
}

.section-block__body p {
  font-size: 17px;
  font-variation-settings: var(--fvs-100);
  line-height: 1.7;
  color: var(--c-black);
  margin-bottom: 18px;
}

.section-block__body p:last-child { margin-bottom: 0; }


/* ============================================================
   35. ROOMS GRID
============================================================ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.room-card {
  border: 1.5px solid var(--c-border);
  border-radius: 12px;
  padding: 26px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.room-card__icon {
  display: flex;
  align-items: center;
  color: var(--c-muted);
  flex-shrink: 0;
  margin-top: 1px;
}

.room-card__name {
  font-size: 15px;
  font-weight: 600;
  font-variation-settings: var(--fvs-100);
  color: var(--c-black);
  margin-bottom: 5px;
}

.room-card__detail {
  font-size: 14px;
  font-variation-settings: var(--fvs-100);
  color: var(--c-muted);
  line-height: 1.45;
}


/* ============================================================
   36. AMENITIES GRID
============================================================ */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 16px;
  list-style: none;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-variation-settings: var(--fvs-100);
  color: var(--c-black);
}

.amenity-item__icon {
  display: flex;
  align-items: center;
  color: var(--c-black);
  flex-shrink: 0;
}


/* ============================================================
   37. RULES LIST
============================================================ */
.rules-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rule-item {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  font-variation-settings: var(--fvs-100);
  padding: 18px 0;
  border-bottom: 1px solid var(--c-border);
}

.rule-item:last-child { border-bottom: none; }

.rule-item__icon {
  display: flex;
  align-items: center;
  color: var(--c-muted);
  flex-shrink: 0;
}

.rule-item__label {
  color: var(--c-muted);
  min-width: 100px;
  flex-shrink: 0;
}

.rule-item__value { color: var(--c-black); }


/* ============================================================
   38. MAP + DISTANCES
============================================================ */
.detail-map {
  width: 100%;
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid var(--c-border);
  margin-bottom: 36px;
}

/* Custom Leaflet marker */
.detail-map-marker div {
  width: 14px;
  height: 14px;
  background: var(--c-black);
  border: 2.5px solid var(--c-white);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.distances-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.distance-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-variation-settings: var(--fvs-100);
  padding: 16px 0;
  border-bottom: 1px solid var(--c-border);
}

.distance-item:last-child { border-bottom: none; }

.distance-item__label { color: var(--c-black); }

.distance-item__value {
  color: var(--c-muted);
  font-size: 14px;
}

.distances-list + .btn {
  margin-top: 24px;
}

/* ============================================================
   39. BOOKING SIDEBAR CARD
   Reuses .booking-field (from section 8) in a vertical card.
============================================================ */
.booking-card {
  background: var(--c-white);
  border: 2px solid var(--c-border);
  border-radius: var(--r-card);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Header: title + property name ── */
.booking-card__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-border);
}

.booking-card__title {
  font-size: 26px;
  font-weight: 400;
  font-variation-settings: var(--fvs-100);
  letter-spacing: -0.26px;
  color: var(--c-black);
  line-height: 1.15;
}

.booking-card__subtitle {
  font-size: 14px;
  font-variation-settings: var(--fvs-100);
  color: var(--c-muted);
  line-height: 1.4;
}

/* ── Fields section: dates + guests grouped together ── */
.booking-card__fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Date row: two fields side by side with shared border */
.booking-card__dates {
  display: flex;
  align-items: stretch;
  border: 2px solid var(--c-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.18s ease;
}

.booking-card__dates:focus-within {
  border-color: var(--c-black);
}

/* Override booking-field defaults inside the dates row */
.booking-card__dates .booking-field {
  flex: 1;
  border-radius: 0;
  border: none;
  padding: 18px 20px;
  margin: 0;
}

.booking-card__dates-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1px;
  background: var(--c-border);
  flex-shrink: 0;
  position: relative;
}

.booking-card__dates-sep svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  color: var(--c-muted);
  background: var(--c-white);
  padding: 2px;
  border-radius: 50%;
}

/* Standalone guests field */
.booking-card__guests {
  border: 2px solid var(--c-border);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 0;
  box-sizing: border-box;
  transition: border-color 0.18s ease;
}

.booking-card__guests:focus-within {
  border-color: var(--c-black);
}

.booking-card .booking-field.is-active {
  background: #f8f8f8;
}

/* ── CTA + note ── */
.booking-card__cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 4px;
}

/* Full-width CTA */
.booking-card__cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px 24px;
  font-size: 16px;
}

.booking-card__note {
  font-size: 13px;
  font-variation-settings: var(--fvs-100);
  color: var(--c-muted);
  text-align: center;
  line-height: 1.55;
}

/* Uppercase labels inside booking card */
.booking-card .booking-field__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* Prominent hint text in booking card */
.booking-card .booking-field__hint {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
}

/* Guests field: column — label on top, hint+chevron row below */
.booking-card__guests.booking-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Inner row: hint text left, chevron right, on the same line */
.booking-card__guests-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.booking-card__guests-arrow {
  flex-shrink: 0;
  color: var(--c-muted);
  transition: transform 0.18s ease;
}

.booking-card__guests.is-active .booking-card__guests-arrow {
  transform: rotate(180deg);
}

/* Divider between fields and contact form */
.booking-card__divider {
  height: 1px;
  background: var(--c-border);
  margin: 4px 0;
}

/* Contact form fields */
.booking-card__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-card__input,
.booking-card__textarea {
  width: 100%;
  border: 2px solid var(--c-border);
  border-radius: 12px;
  padding: 0 18px;
  font-family: inherit;
  font-size: 15px;
  font-variation-settings: var(--fvs-100);
  color: var(--c-black);
  background: var(--c-white);
  transition: border-color 0.18s ease;
  outline: none;
  box-sizing: border-box;
}

.booking-card__input {
  height: 56px;
}

.booking-card__textarea {
  padding: 14px 18px;
  resize: vertical;
  line-height: 1.5;
}

.booking-card__input::placeholder,
.booking-card__textarea::placeholder {
  color: var(--c-muted);
}

.booking-card__input:focus,
.booking-card__textarea:focus {
  border-color: var(--c-black);
}

/* Pill CTA */
.booking-card__cta {
  border-radius: 100px;
}


/* ============================================================
   40. DETAIL PAGE — RESPONSIVE
============================================================ */

/* Narrow desktop: compress sidebar */
@media (max-width: 1200px) {
  .detail-layout { gap: 52px; }
  .detail-sidebar { width: 340px; }
}

/* Tablet: stack sidebar below content */
@media (max-width: 1024px) {
  .detail-layout {
    flex-direction: column;
    gap: 0;
    padding-top: 40px;
  }

  .detail-sidebar {
    width: 100%;
    position: static;
    padding-top: 0;
  }

  .booking-card {
    max-width: 600px;
    padding: 28px;
  }

  .gallery-grid {
    grid-template-rows: 220px 220px;
  }

  .detail-title { font-size: 40px; }

  .detail-header { padding: 40px 0 36px; }

  .section-block { padding: 40px 0; }
}

/* Mobile: single-column everything */
@media (max-width: 768px) {

  /* Gallery: main image only, hide thumbs */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 280px;
  }

  .gallery-grid__main {
    grid-row: 1;
    grid-column: 1;
  }

  .gallery-grid__thumbs { display: none; }

  .detail-title { font-size: 32px; }

  .detail-stats { gap: 20px; }

  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-map { height: 260px; }

  .booking-card { padding: 20px; }

  /* Title inserted before inline calendar panel */
  .mob-cal-title {
    padding: 40px 0 16px;
  }

  /* ── Gite mobile booking panel: booking-card moved after À propos ── */
  .mob-booking-panel {
    width: 100%;
    margin: 16px 0 24px;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .mob-booking-panel .booking-card__fields {
    gap: 0;
  }

  .mob-booking-panel .booking-card__dates {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    border: none;
    border-radius: 0;
    overflow: visible;
  }

  .mob-booking-panel .booking-card__dates .booking-field {
    border: 2px solid var(--c-border);
    border-radius: 12px;
    padding: 16px 18px;
  }

  .mob-booking-panel .booking-card__dates-sep {
    display: none;
  }

  /* Inline calendar container */
  .mob-cal-wrap {
    display: none;
    width: 100%;
    margin-top: 12px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--c-border);
  }

  .mob-booking-panel.is-expanded .mob-cal-wrap {
    display: block;
  }

  /* Override the floating popup styles so calendar renders inline */
  .mob-cal-wrap .bk-popup {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: none !important;
    max-height: none !important;
    z-index: auto !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    overflow-y: visible !important;
  }

  /* Expand wrapper — hidden until check-in date is selected */
  .mob-expand-wrap {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition:
      max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      opacity    0.35s ease 0.1s;
  }

  .mob-booking-panel.is-expanded .mob-expand-wrap {
    max-height: 1200px;
    opacity: 1;
    margin-top: 12px;
  }

  /* Guests field */
  .mob-expand-wrap .booking-card__guests {
    border-radius: 12px;
  }

  /* Divider */
  .mob-expand-wrap .booking-card__divider {
    border-top: 2px solid var(--c-border);
    margin: 16px 0;
  }

  /* Contact fields */
  .mob-expand-wrap .booking-card__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
  }

  .mob-expand-wrap .booking-card__input,
  .mob-expand-wrap .booking-card__textarea {
    border-radius: 12px;
  }

  /* CTA button */
  .mob-expand-wrap .booking-card__cta {
    width: 100%;
    border-radius: 12px;
  }
}

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

  .detail-stat__label { display: none; }
}


/* ============================================================
   41. NOTRE RÉGION PAGE
============================================================ */

/* Hero subtitle variant: two-paragraph block with max-width */
.hero__subtitle--description {
  max-width: 740px;
  opacity: 0.85;
  text-align: center;
}

.hero__subtitle--description p + p {
  margin-top: 12px;
}

/* ── Section wrapper ── */
.region-section {
  padding: var(--gap-section) 0;
}

.region-section__heading {
  font-size: clamp(32px, 4.2vw, 60px);
  font-variation-settings: var(--fvs-100);
  font-weight: 400;
  color: var(--c-black);
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.2;
}

/* ── Place + Restaurant cards (2-col grid, same token usage as property cards) ── */
/* ── Place carousel (horizontal scroll strip) ── */
.place-carousel {
  position: relative;
}

.place-strip {
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
}

.place-strip:active {
  cursor: grabbing;
}

.place-strip::-webkit-scrollbar {
  display: none;
}

.place-strip__track {
  display: flex;
  gap: 40px;
}

.place-carousel__arrow {
  position: absolute;
  top: calc(50% - 16px);
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  color: var(--c-black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.place-carousel:hover .place-carousel__arrow:not(:disabled) {
  opacity: 1;
}

.place-carousel__arrow:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.95);
}

.place-carousel__arrow:disabled {
  opacity: 0 !important;
  cursor: default;
}

.place-carousel__arrow--prev { left: -24px; }
.place-carousel__arrow--next { right: -24px; }

.place-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}

.place-carousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 100px;
  border: none;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  padding: 0;
  transition: width 0.3s ease, background 0.3s ease;
}

.place-carousel__dot.is-active {
  width: 24px;
  background: var(--c-black);
}

.place-card {
  flex-shrink: 0;
  width: 440px;
  border: 2px solid var(--c-border);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.place-card__image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  flex-shrink: 0;
}

.place-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.place-card:hover .place-card__image img {
  transform: scale(1.05);
}

.place-card__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.place-card__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.place-card__title {
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 500;
  font-variation-settings: var(--fvs-100);
  color: var(--c-black);
  line-height: 1.2;
}

.place-card__subtitle {
  font-size: clamp(15px, 1.6vw, 20px);
  font-variation-settings: var(--fvs-100);
  color: var(--c-muted);
  line-height: 1.45;
}

.place-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Icon inside tag (map / phone) */
.place-card__tags .tag {
  gap: 8px;
}

.place-card__tags .tag svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Activités: horizontal scroll strip ── */
.activity-strip {
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
}

.activity-strip:active {
  cursor: grabbing;
}

.activity-strip::-webkit-scrollbar {
  display: none;
}

.activity-strip__track {
  display: flex;
  gap: 40px;
}

.activity-card {
  flex-shrink: 0;
  position: relative;
  width: 440px;
  height: 650px;
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

a.activity-card {
  text-decoration: none;
  color: inherit;
}

.activity-card--logo-top {
  justify-content: space-between;
}

.activity-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.activity-card:hover .activity-card__bg {
  transform: scale(1.04);
}

.activity-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 42%, rgba(0,0,0,0.65) 100%);
  pointer-events: none;
}

.activity-card__logo {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.activity-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.activity-card__title {
  font-size: 26px;
  font-weight: 400;
  font-variation-settings: var(--fvs-100);
  color: var(--c-white);
  line-height: 1.2;
}

.activity-card__desc {
  font-size: 16px;
  font-variation-settings: var(--fvs-100);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

/* Dark overlay variant for logo-top cards (Figma spec) */
.activity-card__overlay--dark {
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 42%, rgba(0,0,0,0.8) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.2) 100%);
}

/* ── Carousel wrapper ── */
.activity-carousel {
  position: relative;
}

/* ── Arrow buttons ── */
.activity-carousel__arrow {
  position: absolute;
  top: calc(50% - 16px); /* centered on card height (650px / 2 = 325px, -16 for dots offset) */
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-black);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.14);
  transition: box-shadow 0.18s ease, opacity 0.18s ease;
  flex-shrink: 0;
}

.activity-carousel__arrow:hover:not(:disabled) {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.activity-carousel__arrow:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

.activity-carousel__arrow--prev { left: -24px; }
.activity-carousel__arrow--next { right: -24px; }

/* ── Pagination dots ── */
.activity-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  min-height: 16px;
}

.activity-carousel__dot {
  height: 7px;
  width: 7px;
  border-radius: 4px;
  background: var(--c-border);
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.22s ease, width 0.22s ease;
}

.activity-carousel__dot.is-active {
  background: var(--c-black);
  width: 24px;
}

/* ── Notre Région responsive ── */
@media (max-width: 1200px) {
  .activity-card { width: 360px; height: 580px; }
}

@media (max-width: 1024px) {
  .place-card { width: 360px; }
  .place-card__body { padding: 24px; }
  .activity-card { width: 320px; height: 520px; }
}

@media (max-width: 768px) {
  .place-card { width: 300px; }
  .place-carousel__arrow { display: none; }
  .region-section { padding: 60px 0; }
  .region-section__heading { font-size: 32px; margin-bottom: 30px; }
  .activity-card { width: 280px; height: 420px; padding: 20px; }
  .activity-card__title { font-size: 20px; }
  .activity-card__desc { font-size: 14px; }
  /* arrows hidden on mobile — swipe is sufficient */
  .activity-carousel__arrow { display: none; }
}


/* ============================================================
   REGION — GÎTES CTA
============================================================ */
.region-gites-cta {
  padding: var(--gap-section) 0;
}

.region-gites-cta__wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.region-gites-cta__label {
  font-size: clamp(32px, 4.2vw, 60px);
  font-variation-settings: var(--fvs-100);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--c-black);
}

.region-gites-cta__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.region-gites-cta__body p {
  font-size: clamp(16px, 1.3vw, 20px);
  font-variation-settings: var(--fvs-100);
  color: var(--c-muted);
  line-height: 1.6;
  max-width: 680px;
}

.region-gites-cta__body .btn {
  align-self: flex-start;
}

@media (max-width: 768px) {
  .region-gites-cta { padding: 60px 0; }
  .region-gites-cta__wrap { gap: 24px; }
  .region-gites-cta__label { font-size: 32px; }
}


/* ============================================================
   42. HOMEPAGE CONTACT / CTA SECTION
============================================================ */

.cta-contact {
  padding: var(--gap-section) 0;
}

.cta-contact__inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* ── Left column: headline + contact details ── */
.cta-contact__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cta-contact__heading {
  font-size: clamp(32px, 3.5vw, 54px);
  font-weight: 400;
  font-variation-settings: var(--fvs-100);
  color: var(--c-black);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.cta-contact__lead {
  font-size: clamp(16px, 1.3vw, 20px);
  font-variation-settings: var(--fvs-100);
  color: var(--c-muted);
  line-height: 1.6;
  max-width: 480px;
}

.cta-contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cta-contact__detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cta-contact__detail-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-variation-settings: var(--fvs-100);
  color: var(--c-muted);
}

.cta-contact__detail-value {
  font-size: clamp(18px, 1.6vw, 24px);
  font-variation-settings: var(--fvs-100);
  color: var(--c-black);
  transition: opacity 0.18s ease;
}

.cta-contact__detail-value:hover {
  opacity: 0.65;
}

/* ── Right column: form ── */
.cta-contact__right {
  flex: 0 0 520px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cta-contact__form-title {
  font-size: 24px;
  font-weight: 400;
  font-variation-settings: var(--fvs-100);
  color: var(--c-black);
  letter-spacing: -0.02em;
}

.cta-contact__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-contact__input,
.cta-contact__textarea {
  width: 100%;
  border: 2px solid var(--c-border);
  border-radius: 12px;
  padding: 0 20px;
  font-family: var(--font);
  font-size: 16px;
  font-variation-settings: var(--fvs-100);
  color: var(--c-black);
  background: var(--c-white);
  transition: border-color 0.18s ease;
  outline: none;
  box-sizing: border-box;
}

.cta-contact__input {
  height: 58px;
}

.cta-contact__textarea {
  padding: 16px 20px;
  resize: vertical;
  line-height: 1.5;
  min-height: 130px;
}

.cta-contact__input::placeholder,
.cta-contact__textarea::placeholder {
  color: var(--c-muted);
}

.cta-contact__input:focus,
.cta-contact__textarea:focus {
  border-color: var(--c-black);
}

.cta-contact__btn {
  align-self: flex-start;
  margin-top: 4px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cta-contact__right { flex: 0 0 440px; }
  .cta-contact__inner { gap: 60px; }
}

@media (max-width: 768px) {
  .cta-contact__inner {
    flex-direction: column;
    gap: 48px;
  }
  .cta-contact__right {
    flex: none;
    width: 100%;
  }
  .cta-contact__lead { max-width: none; }
}


/* ============================================================
   12. FAQ SECTION
============================================================ */

.faq {
  padding: var(--gap-section) 0;
  border-top: 1px solid var(--c-border);
}

.faq__header {
  margin-bottom: 64px;
}

.faq__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-variation-settings: var(--fvs-100);
  margin-bottom: 16px;
}

.faq__title {
  font-size: clamp(32px, 3.5vw, 54px);
  font-weight: 400;
  font-variation-settings: var(--fvs-100);
  color: var(--c-black);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
}

.faq__item {
  padding: 32px 0;
  border-top: 1px solid var(--c-border);
}

.faq__question {
  font-size: 18px;
  font-weight: 500;
  font-variation-settings: var(--fvs-100);
  color: var(--c-black);
  line-height: 1.4;
  letter-spacing: -0.01em;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  list-style: none;
  user-select: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '+';
  flex-shrink: 0;
  margin-left: auto;
  font-size: 22px;
  font-weight: 300;
  color: var(--c-muted);
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq__item[open] .faq__question::after {
  content: '\2212';
}

.faq__answer {
  font-size: 16px;
  font-variation-settings: var(--fvs-100);
  color: var(--c-dim);
  line-height: 1.65;
  max-width: 540px;
  padding-top: 16px;
}

@media (max-width: 1024px) {
  .faq__grid { gap: 0 48px; }
}

@media (max-width: 768px) {
  .faq__grid {
    grid-template-columns: 1fr;
  }
  .faq__header { margin-bottom: 40px; }
}


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

/* ── Container: narrower side padding on mobile ── */
@media (max-width: 768px) {
  .container {
    width: calc(100vw - 30px); /* 15px each side */
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100vw - 24px); /* 12px each side */
  }
}

/* ── Property cards: full width on mobile ── */
@media (max-width: 768px) {
  .properties__grid {
    grid-template-columns: 1fr;
  }
  .property-card {
    width: 100%;
  }
}

/* ── Card image heights on mobile ── */
@media (max-width: 768px) {
  .property-card__image {
    height: 240px;
    aspect-ratio: unset;
  }
  .place-card__image {
    aspect-ratio: 4 / 3;
  }
}

/* ── Tag improvements on mobile ── */
@media (max-width: 768px) {
  .tag {
    font-size: 13px;
    padding: 7px 11px;
  }
  .property-card__tags {
    gap: 8px;
  }
}

/* ── Reserve block: guests field full width ── */
.booking-card__guests {
  width: 100%;
}

/* ── Calendar / guests popups: positioned inline on mobile via JS ── */

@media (max-width: 768px) {

  /* Hide the single-mode label — replaced by the range header */
  .bk-cal .bk-cal__mode {
    display: none;
  }

  /* Range header card */
  .bk-cal__range-header {
    display: flex;
    align-items: stretch;
    background: var(--c-bg, #f5f5f5);
    border: 1.5px solid var(--c-border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
  }

  /* Each column (Arrivée / Départ) */
  .bk-cal__range-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 14px;
    background: transparent;
    border: none;
    border-radius: 0;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s ease;
  }

  /* Active column highlight */
  .bk-cal__range-col--active {
    background: var(--c-white);
    box-shadow: 0 0 0 1.5px var(--c-black) inset;
    border-radius: 10px;
  }

  /* Vertical separator */
  .bk-cal__range-sep {
    width: 1px;
    background: var(--c-border);
    align-self: stretch;
    flex-shrink: 0;
  }

  /* "Arrivée" / "Départ" label */
  .bk-cal__range-label {
    font-family: var(--font);
    font-variation-settings: var(--fvs-100);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: var(--c-muted);
  }

  /* Date value or "Sélectionnez" */
  .bk-cal__range-value {
    font-family: var(--font);
    font-size: 13px;
    color: var(--c-black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  /* Wider calendar grid on mobile to fill the panel */
  .bk-cal {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px 16px;
  }

}


/* ============================================================
   CARD CAROUSEL — inline image slider inside property cards
   · .card-carousel fills .property-card__image (width+height 100%)
   · .card-carousel__track is a flex strip; JS moves it via
     translateX(-N*100%) — no scroll, no layout shift
   · Arrows: position:absolute, hidden; revealed on card hover
   · Dots:   position:absolute bottom-center, always visible
============================================================ */

.card-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;         /* clips off-screen slides */
}

/* Flex strip — one slide = 100% width, slides side by side */
.card-carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.card-carousel__slide {
  flex: 0 0 100%;           /* each slide fills the container */
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.card-carousel__track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;     /* prevent drag-selecting images */
  transform: scale(1.08);
  transform-origin: center center;
}

.js .card-carousel__slide.is-active img {
  animation: kenburns-card 6.8s ease-in-out both;
  will-change: transform;
}

/* ── Navigation arrows ────────────────────────────────── */
.card-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--c-black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.18s ease, background 0.15s ease;
  z-index: 3;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
}

.card-carousel__arrow--prev { left: 10px; }
.card-carousel__arrow--next { right: 10px; }

.card-carousel__arrow:hover {
  background: rgba(255, 255, 255, 0.97);
}

/* Reveal arrows when the card (or its link wrapper) is hovered */
.property-card-link:hover .card-carousel__arrow,
.property-card:hover       .card-carousel__arrow {
  opacity: 1;
}

/* Always visible on keyboard focus */
.card-carousel__arrow:focus-visible {
  opacity: 1;
  outline: 2px solid var(--c-black);
  outline-offset: 2px;
}

/* ── Pagination dots ──────────────────────────────────── */
.card-carousel__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}

.card-carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.card-carousel__dot.is-active {
  background: #fff;
}

/* ── Reduced-motion: disable track slide animation ─────── */
@media (prefers-reduced-motion: reduce) {
  .gallery-grid__main img,
  .card-carousel__track img,
  .card-carousel__slide.is-active img {
    animation: none !important;
    transform: none !important;
  }

  .card-carousel__track {
    transition: none;
  }
}

@keyframes kenburns-main {
  0% {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.16) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes kenburns-card {
  0% {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.18) translate3d(-2%, -1.5%, 0);
  }
}


/* ============================================================
   BOOKING SUMMARY (dates selected)
============================================================ */
.booking-card__summary {
  padding: 20px 24px;
  background: #f8f7f5;
  border-radius: 12px;
  text-align: left;
}

.booking-card__summary-range {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--c-black);
  line-height: 1.3;
}

.booking-card__summary-details {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 8px;
  font-size: 14px;
  color: var(--c-muted);
  font-variation-settings: var(--fvs-100);
}

.booking-card__summary-dot::before {
  content: '\00b7';
  font-size: 20px;
  line-height: 1;
}

.booking-card__summary-total {
  font-weight: 600;
  color: var(--c-black);
  font-size: 16px;
}

/* ============================================================
   SEARCH RESULTS
============================================================ */
.search-results {
  padding: 60px 0 0;
}

.search-results__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 32px;
}

.search-results__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.search-results__empty {
  text-align: center;
  padding: 48px 24px;
}

.search-results__empty-msg {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.search-results__empty-sub {
  color: var(--c-muted);
  margin-bottom: 32px;
}

.search-results__alt-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Result card */
.result-card {
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--c-white);
  transition: box-shadow 0.2s ease;
}

.result-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.result-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.result-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-card__body {
  padding: 20px;
}

.result-card__name {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.result-card__capacity {
  font-size: 0.875rem;
  color: var(--c-muted);
  margin-bottom: 12px;
}

.result-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.result-card__price-detail {
  font-size: 0.8125rem;
  color: var(--c-muted);
  margin-bottom: 16px;
}

.result-card__cta {
  display: block;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: var(--r-btn);
  background: var(--c-black);
  color: var(--c-white);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.result-card__cta:hover {
  opacity: 0.85;
}

/* Loading spinner */
.search-results__loading {
  text-align: center;
  padding: 48px 24px;
  color: var(--c-muted);
}

/* Combination results */
.search-results__combo-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 40px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--c-border);
}

.result-card--combo .result-card__images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--r-card) var(--r-card) 0 0;
}

.result-card--combo .result-card__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-card__breakdown {
  font-size: 0.8125rem;
  color: var(--c-muted);
  margin-bottom: 12px;
}

/* ── Language switcher ── */
.nav__lang {
  display: flex;
  gap: 2px;
  align-items: center;
  margin-left: 12px;
}

.nav__lang-link {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: var(--c-muted);
  padding: 4px 6px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav__lang-link:hover {
  color: var(--c-black);
}

.nav__lang-link.is-active {
  color: var(--c-black);
  font-weight: 600;
}

@media (max-width: 768px) {
  .nav__lang {
    margin-left: 0;
    margin-top: 16px;
    justify-content: center;
  }

  .nav__lang-link {
    font-size: 15px;
    padding: 6px 10px;
  }
}

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


/* ============================================================
   GÎTES LISTING PAGE — /gites/
   Styles for the gîtes overview / comparison page.
   Follows the same token usage & spacing rhythm as the rest
   of the site (Roboto Flex · --fvs-100 · --c-* palette).
============================================================ */

/* ── Page heading ── */
.section-title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  font-variation-settings: var(--fvs-110);
  line-height: 1.05;
  letter-spacing: -0.72px;
  color: var(--c-black);
  margin-top: 40px;
  margin-bottom: 48px;
}

/* ── Visually hidden (alias of sr-only) ── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ── Intro text ── */
.listing-intro {
  max-width: 860px;
  margin-bottom: 80px;
}

.listing-intro p {
  font-size: 18px;
  font-weight: 400;
  font-variation-settings: var(--fvs-100);
  line-height: 1.7;
  letter-spacing: -0.18px;
  color: var(--c-dim);
}

.listing-intro p + p {
  margin-top: 18px;
}

/* ============================================================
   Comparison table
============================================================ */
.listing-comparison {
  margin-bottom: 100px;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  font-variation-settings: var(--fvs-100);
  line-height: 1.5;
}

.comparison-table thead {
  border-bottom: 2px solid var(--c-black);
}

.comparison-table th {
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--c-muted);
  padding: 14px 20px 14px 0;
  white-space: nowrap;
}

.comparison-table th:first-child {
  padding-left: 0;
}

.comparison-table td {
  padding: 20px 20px 20px 0;
  color: var(--c-black);
  border-bottom: 1px solid var(--c-border);
  vertical-align: middle;
}

.comparison-table td:first-child {
  padding-left: 0;
  font-weight: 500;
}

.comparison-table td a {
  color: var(--c-black);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.comparison-table td a:hover {
  border-bottom-color: var(--c-black);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* ============================================================
   Gîte cards — horizontal layout with image + content
============================================================ */
.listing-gites {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 120px;
}

.gite-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Alternate layout: image on the right for even cards */
.gite-card:nth-child(even) {
  direction: rtl;
}

.gite-card:nth-child(even) > * {
  direction: ltr;
}

.gite-card__image {
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.gite-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.gite-card:hover .gite-card__image img {
  transform: scale(1.03);
}

.gite-card__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}

.gite-card__title {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  font-variation-settings: var(--fvs-100);
  line-height: 1.15;
  letter-spacing: -0.38px;
}

.gite-card__title a {
  color: var(--c-black);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.gite-card__title a:hover {
  opacity: 0.7;
}

.gite-card__description {
  font-size: 16px;
  font-variation-settings: var(--fvs-100);
  line-height: 1.7;
  color: var(--c-dim);
}

.gite-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.gite-card__stats li {
  font-size: 14px;
  font-variation-settings: var(--fvs-100);
  color: var(--c-muted);
  background: #f5f5f5;
  padding: 6px 14px;
  border-radius: var(--r-tag);
  white-space: nowrap;
}

.gite-card__stats li strong {
  font-weight: 600;
  color: var(--c-black);
}

.gite-card__highlights {
  font-size: 15px;
  font-variation-settings: var(--fvs-100);
  color: var(--c-muted);
  letter-spacing: 0.3px;
}

.gite-card__cta {
  align-self: flex-start;
  margin-top: 4px;
}

/* ============================================================
   Editorial & Group CTA sections
============================================================ */
.listing-editorial {
  margin-bottom: 80px;
  max-width: 860px;
}

.listing-editorial p {
  font-size: 17px;
  font-variation-settings: var(--fvs-100);
  line-height: 1.7;
  color: var(--c-dim);
  margin-top: 16px;
}

.listing-group-cta {
  background: #f8f8f8;
  border-radius: var(--r-panel);
  padding: 60px;
  margin-bottom: 120px;
}

.listing-group-cta p {
  font-size: 17px;
  font-variation-settings: var(--fvs-100);
  line-height: 1.7;
  color: var(--c-dim);
  margin-top: 16px;
  max-width: 780px;
}

.listing-group-cta p strong {
  font-weight: 600;
  color: var(--c-black);
}

.listing-group-cta .btn {
  margin-top: 32px;
}

/* ============================================================
   Gîtes listing — responsive
============================================================ */
@media (max-width: 960px) {
  .gite-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .gite-card:nth-child(even) {
    direction: ltr;
  }

  .gite-card__image {
    aspect-ratio: 16 / 9;
  }

  .listing-group-cta {
    padding: 40px 28px;
  }
}

@media (max-width: 768px) {
  .section-title {
    margin-top: 24px;
    margin-bottom: 28px;
  }

  .listing-intro {
    margin-bottom: 48px;
  }

  .listing-comparison {
    margin-bottom: 60px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 14px 12px 0;
    font-size: 14px;
  }

  .listing-gites {
    gap: 48px;
    margin-bottom: 80px;
  }

  .gite-card__content {
    gap: 14px;
  }

  .listing-editorial {
    margin-bottom: 48px;
  }

  .listing-group-cta {
    padding: 32px 20px;
    margin-bottom: 80px;
    border-radius: 16px;
  }
}

/* ============================================================
   Combined booking page
============================================================ */
.combo-page {
  padding: 60px 0;
}

.combo-page h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.combo-page h2 {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--c-muted);
  margin-bottom: 32px;
}

.combo-details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--c-bg-alt, #f8f8f8);
  border-radius: var(--r-card);
}

.combo-details p {
  margin: 0;
}

.combo-gites {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.combo-gite {
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  overflow: hidden;
}

.combo-gite__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.combo-gite__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.combo-gite__info {
  padding: 16px;
}

.combo-gite__name {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 4px;
}

.combo-gite__capacity {
  font-size: 0.875rem;
  color: var(--c-muted);
  margin: 0 0 8px;
}

.combo-gite__price {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.combo-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: var(--c-primary, #2d5016);
  color: #fff;
  border-radius: var(--r-card);
  margin-bottom: 32px;
}

.combo-total__label {
  font-size: 1.125rem;
  font-weight: 600;
}

.combo-total__price {
  font-size: 1.5rem;
  font-weight: 700;
}

.combo-contact {
  padding: 24px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
}

.combo-contact p {
  margin: 0 0 8px;
}

.combo-contact a {
  color: var(--c-primary, #2d5016);
  text-decoration: underline;
}
