/* =====================================================
   Azéma · Petite maison Lagon & Plage
   Style magazine / lifestyle
   ===================================================== */

:root {
  --bg-cream:     #faf7f2;
  --bg-warm:      #f3ede2;
  --text:         #1a1a1a;
  --text-soft:    #5b5b5b;
  --text-mute:    #8a8a8a;
  --line:         #e8e2d6;
  --accent:       #2a6b6b;       /* lagon profond */
  --accent-dark:  #1f5050;
  --accent-soft:  #cfe4df;
  --gold:         #b18b5e;
  --shadow-soft:  0 30px 80px -30px rgba(20, 30, 40, .25);

  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body:    'Inter', -apple-system, system-ui, sans-serif;

  --maxw: 1280px;
  --pad-x: clamp(1.25rem, 4vw, 4rem);
}

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

/* ---------- Typography utilities ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.25rem;
}
.eyebrow--center { text-align: center; }
.eyebrow--light { color: var(--accent-soft); }

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 2rem;
  color: var(--text);
}
.section-title--center { text-align: center; }
.section-title--light  { color: #fff; }

.dropcap {
  float: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 4.5rem;
  line-height: .85;
  margin: .35rem .8rem 0 0;
  color: var(--accent);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 1.25rem var(--pad-x);
  transition: background-color .35s ease, box-shadow .35s ease, padding .35s ease;
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  transition: color .35s ease;
}
.nav__logo-mark {
  display: inline-grid;
  place-items: center;
  width: 38px; height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
}
.nav__logo-mark--light { color: #fff; }
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}
.nav__links {
  display: flex;
  gap: 2.2rem;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: #fff;
  transition: color .35s ease;
}
.nav__links a:hover { color: var(--accent-soft); }

.nav__cta {
  padding: .7rem 1.4rem;
  border: 1px solid #fff;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fff;
  transition: all .25s ease;
}
.nav__cta:hover { background: #fff; color: var(--text); }

.nav--scrolled {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
  padding-top: .85rem;
  padding-bottom: .85rem;
}
.nav--scrolled .nav__logo,
.nav--scrolled .nav__links { color: var(--text); }
.nav--scrolled .nav__cta {
  border-color: var(--text);
  color: var(--text);
}
.nav--scrolled .nav__cta:hover {
  background: var(--text);
  color: #fff;
}

@media (max-width: 880px) {
  .nav__links { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.0) 30%, rgba(0,0,0,.55) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 var(--pad-x) clamp(4rem, 9vh, 8rem);
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
}
.hero__content .eyebrow { color: rgba(255,255,255,.85); }
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 0 0 1.4rem;
  color: #fff;
}
.hero__title-line { display: block; }
.hero__title-line--accent {
  font-style: italic;
  color: #fff;
}
.hero__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 300;
  max-width: 36ch;
  margin: 0 0 1.8rem;
  color: rgba(255,255,255,.92);
}
.hero__meta {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.85);
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}
.hero__meta .dot { opacity: .55; }

.hero__scroll {
  position: absolute;
  z-index: 1;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,.5);
  overflow: hidden;
}
.hero__scroll span {
  position: absolute;
  inset: 0;
  background: #fff;
  animation: scrollline 2.4s ease-in-out infinite;
}
@keyframes scrollline {
  0%   { transform: translateY(-100%); }
  50%  { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* ---------- Sections (shared) ---------- */
section { padding: clamp(4rem, 9vw, 8rem) var(--pad-x); }
.story__inner,
.highlights__inner,
.gallery__header,
.sleeping__inner,
.amenities__inner,
.booking__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

/* ---------- Story / intro ---------- */
.story { background: var(--bg-cream); }
.story__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.story__lede {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-soft);
  text-align: left;
  margin-top: 2.5rem;
}
.story__lede p + p { margin-top: 1.4rem; }

/* ---------- Highlights ---------- */
.highlights {
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.highlights__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
}
.highlight { text-align: center; }
.highlight__icon {
  width: 56px; height: 56px;
  margin: 0 auto 1.5rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 50%;
}
.highlight__icon svg { width: 24px; height: 24px; }
.highlight h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0 0 .8rem;
}
.highlight p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.97rem;
  max-width: 32ch;
  margin: 0 auto;
}

@media (max-width: 760px) {
  .highlights__inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* ---------- Gallery ---------- */
.gallery { background: var(--bg-cream); padding-top: clamp(5rem, 10vw, 9rem); }
.gallery__header { text-align: left; margin-bottom: 3rem; }
.gallery__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.5rem, 1vw, 1rem);
  grid-auto-flow: dense;
}
.g-item {
  margin: 0;
  overflow: hidden;
  background: #ddd;
  aspect-ratio: 1 / 1;
  position: relative;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.g-item:hover img { transform: scale(1.05); }
.g-item--tall  { grid-row: span 2; aspect-ratio: 1 / 2; }
.g-item--wide  { grid-column: span 2; aspect-ratio: 2 / 1; }

@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .g-item--wide  { grid-column: span 2; aspect-ratio: 2 / 1; }
  .g-item--tall  { grid-row: auto; aspect-ratio: 1 / 1; }
}

.gallery__see-all-wrap {
  max-width: var(--maxw);
  margin: 3rem auto 0;
  text-align: center;
}
.gallery__see-all {
  background: transparent;
  border: 1px solid var(--text);
  color: var(--text);
  padding: .9rem 2.2rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: all .25s ease;
}
.gallery__see-all:hover {
  background: var(--text);
  color: #fff;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 22, 0.96);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  animation: lb-fadein .2s ease-out;
}
.lightbox--open { display: flex; }
.lightbox__stage {
  max-width: 94vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img {
  max-width: 94vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  user-select: none;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(255,255,255,.2);
  transform: scale(1.05);
}
.lightbox__close {
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
}
.lightbox__nav--prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox__nav--next:hover { transform: translateY(-50%) scale(1.05); }
.lightbox__counter {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  font-family: var(--font-body);
}
@keyframes lb-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@media (max-width: 600px) {
  .lightbox__nav { width: 40px; height: 40px; font-size: 1.3rem; }
  .lightbox__nav--prev { left: .5rem; }
  .lightbox__nav--next { right: .5rem; }
  .lightbox__close { top: .75rem; right: .75rem; }
}

/* ---------- Sleeping ---------- */
.sleeping { background: var(--bg-warm); }
.sleeping__inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.sleeping__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  text-align: left;
}
.bed-card {
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform .35s ease;
}
.bed-card:hover { transform: translateY(-6px); }
.bed-card__media { aspect-ratio: 4/3; overflow: hidden; }
.bed-card__media img { width: 100%; height: 100%; object-fit: cover; }
.bed-card__body { padding: 1.5rem 1.7rem; }
.bed-card__body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0 0 .25rem;
}
.bed-card__body p { margin: 0; color: var(--text-soft); }

.sleeping__note {
  margin-top: 2.5rem;
  font-style: italic;
  color: var(--text-mute);
  font-size: 0.95rem;
}

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

/* ---------- Amenities ---------- */
.amenities { background: var(--bg-cream); }
.amenities__inner { max-width: 1080px; margin: 0 auto; }
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 3vw, 3rem);
  margin-top: 2rem;
}
.amenities__list li {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 1rem;
}
.amenities__list .check {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 760px) {
  .amenities__grid { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- Location ---------- */
.location {
  background: var(--bg-warm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  align-items: stretch;
}
.location__media {
  min-height: 540px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  z-index: 1;
}
/* Garde-fou : les contrôles/panes Leaflet ne dépassent jamais la nav */
.location__media .leaflet-container,
.location__media .leaflet-pane,
.location__media .leaflet-top,
.location__media .leaflet-bottom { z-index: 1 !important; }
.location__media .leaflet-control-zoom { z-index: 2 !important; }
.location__media img,
.location__media iframe,
.location__media .map {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  border: 0;
  object-fit: cover;
}
.map { background: #f4eee2; }

/* Marker rebondissant avec pulse radar */
.azema-marker {
  background: transparent !important;
  border: none !important;
}
.azema-marker__pin {
  position: absolute;
  top: 0; left: 50%;
  margin-left: -16px;
  width: 32px;
  height: 44px;
  animation: azema-bounce 1.6s cubic-bezier(.5,.05,.5,.95) infinite;
  transform-origin: 50% 100%;
  z-index: 3;
}
.azema-marker__pin::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border-radius: 50% 50% 50% 0;
  background: var(--accent);
  transform: rotate(-45deg);
  box-shadow: 0 6px 14px rgba(0,0,0,.3);
  border: 3px solid #fff;
}
.azema-marker__dot {
  position: absolute;
  top: 11px;
  left: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  z-index: 2;
}
.azema-marker__shadow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0,0,0,.35);
  filter: blur(2px);
  animation: azema-shadow 1.6s cubic-bezier(.5,.05,.5,.95) infinite;
  z-index: 1;
}
.azema-marker__pulse {
  position: absolute;
  bottom: -6px;
  left: 50%;
  margin-left: -22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.45;
  animation: azema-pulse 1.8s ease-out infinite;
  z-index: 0;
}
@keyframes azema-bounce {
  0%, 100% { transform: translateY(0); }
  45%      { transform: translateY(-14px); }
  55%      { transform: translateY(-14px); }
}
@keyframes azema-shadow {
  0%, 100% { transform: translateX(-50%) scale(1);   opacity: .4; }
  50%      { transform: translateX(-50%) scale(.55); opacity: .15; }
}
@keyframes azema-pulse {
  0%   { transform: scale(0.4); opacity: 0.55; }
  80%  { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}
.leaflet-popup-content {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.55;
}
.leaflet-popup-content strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--accent-dark);
}
.location__address {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0 0 1.5rem;
  color: var(--text);
}
.location__address strong { font-weight: 500; }
.location__directions {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: color .2s ease;
}
.location__directions:hover { color: var(--accent-dark); }
.location__content {
  padding: clamp(3rem, 7vw, 6rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location__lede {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 2rem;
}
.location__list li {
  padding: .8rem 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--text-soft);
}
.location__list li strong {
  color: var(--text);
  font-weight: 500;
  margin-right: 1rem;
}
.location__list li:last-child { border-bottom: 1px solid var(--line); }

@media (max-width: 880px) {
  .location { grid-template-columns: 1fr; }
  .location__media { min-height: 320px; }
}

/* ---------- Booking ---------- */
.booking {
  background: var(--accent-dark);
  color: #fff;
  position: relative;
}
.booking__inner { max-width: 980px; margin: 0 auto; text-align: center; }
.booking__lede {
  max-width: 56ch;
  margin: 0 auto 2.5rem;
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  line-height: 1.8;
}
.booking__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all .25s ease;
}
.btn--primary {
  background: #fff;
  color: var(--accent-dark);
}
.btn--primary:hover { background: var(--gold); color: #fff; }
.btn--ghost {
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
}
.btn--ghost:hover {
  background: #fff;
  color: var(--accent-dark);
  border-color: #fff;
}

.booking__details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
  padding: 2rem 0;
  margin-top: 2rem;
}
.detail-label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin: 0 0 .35rem;
}
.detail-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0;
  color: #fff;
}

@media (max-width: 760px) {
  .booking__details { grid-template-columns: repeat(2, 1fr); }
  .booking__actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}

/* ---------- Calendrier custom ---------- */
.cal {
  margin-top: 4rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  text-align: left;
  backdrop-filter: blur(6px);
}
.cal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.cal__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  color: #fff;
  margin: 0;
  text-align: center;
  flex: 1;
}
.cal__nav {
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  transition: all .2s ease;
}
.cal__nav:hover { background: rgba(255,255,255,.15); }

.cal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.cal__month-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-align: center;
  margin-bottom: 0.8rem;
  color: rgba(255,255,255,.95);
  letter-spacing: 0.02em;
}
.cal__day-labels {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-size: 0.7rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 0.4rem;
  letter-spacing: 0.06em;
}
.cal__day-labels span {
  text-align: center;
  padding: .3rem 0;
}
.cal__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal__day {
  aspect-ratio: 1;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 0.85rem;
  font-family: var(--font-body);
  display: grid;
  place-items: center;
  border-radius: 6px;
  cursor: pointer;
  transition: all .15s ease;
  padding: 0;
}
.cal__day--empty { visibility: hidden; }
.cal__day--past,
.cal__day--unavailable {
  color: rgba(255,255,255,.25);
  text-decoration: line-through;
  cursor: not-allowed;
  background: transparent;
}
.cal__day--available:hover {
  background: rgba(255,255,255,.18);
}
.cal__day--in-range {
  background: rgba(255,255,255,.18);
  color: #fff;
  border-radius: 0;
}
.cal__day--start {
  background: #fff !important;
  color: var(--accent-dark) !important;
  font-weight: 600;
  border-radius: 6px 0 0 6px;
}
.cal__day--end {
  background: #fff !important;
  color: var(--accent-dark) !important;
  font-weight: 600;
  border-radius: 0 6px 6px 0;
}
.cal__day--start.cal__day--end {
  border-radius: 6px;
}

.cal__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,.65);
  letter-spacing: 0.04em;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 1.5rem;
}
.cal__legend .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 0.4rem;
  vertical-align: middle;
}
.cal__legend .dot--available   { background: rgba(255,255,255,.7); }
.cal__legend .dot--unavailable { background: rgba(255,255,255,.2); }
.cal__legend .dot--selected    { background: #fff; }

.cal__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cal__summary-text { flex: 1; text-align: left; }
.cal__summary-text p { margin: 0; }
.cal__summary-empty {
  color: rgba(255,255,255,.7);
  font-size: 0.95rem;
}
.cal__summary-dates {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.2rem !important;
}
.cal__summary-nights {
  color: rgba(255,255,255,.65);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: italic;
}
.cal__summary-price {
  color: rgba(255,255,255,.85);
  font-size: 0.95rem;
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 0.5rem;
  margin-top: 0.5rem !important;
}
.cal__summary-price strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
}
.cal__summary-price span {
  color: rgba(255,255,255,.5);
  font-size: 0.8rem;
  margin-left: 0.5rem;
}
.cal__summary-breakdown {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 1rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,.75);
  margin-top: 0.6rem;
  padding: 0.5rem 0;
}
.cal__summary-breakdown span:nth-child(even) { text-align: right; font-variant-numeric: tabular-nums; }
.cal__cta:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.cal__guests {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}
.cal__guests label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}
.cal__guests select {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  min-width: 70px;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.cal__guests select:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.35); }
.cal__guests select:focus { outline: none; border-color: rgba(255,255,255,.6); }
.cal__guests select option { background: #1a3247; color: #fff; }
.cal__cta-note {
  flex-basis: 100%;
  margin: 0.5rem 0 0 !important;
  font-size: 0.78rem;
  color: rgba(255,255,255,.55);
  text-align: center;
  font-style: italic;
}

/* ---------- Modal réservation iframe ---------- */
.booking-modal {
  position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(15, 30, 35, 0.85);
  backdrop-filter: blur(6px);
  display: none;
  flex-direction: column;
  animation: bookingFadeIn 0.25s ease-out;
}
.booking-modal.is-open { display: flex; }
@keyframes bookingFadeIn { from { opacity: 0; } to { opacity: 1; } }
.booking-modal__bar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem clamp(1rem, 3vw, 2rem);
  background: var(--accent-dark);
  color: #fff;
  border-bottom: 2px solid var(--gold);
  padding-top: max(0.75rem, env(safe-area-inset-top));
}
.booking-modal__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.booking-modal__close {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.booking-modal__close:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
}
.booking-modal__frame {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}
@media (max-width: 640px) {
  .booking-modal__title { font-size: 0.85rem; }
  .booking-modal__close { padding: 0.45rem 0.8rem; font-size: 0.78rem; }
}

/* ---------- Découvrir La Réunion ---------- */
.discover {
  background: var(--bg-warm);
  padding: clamp(4rem, 9vw, 7rem) var(--pad-x);
  position: relative;
}
.discover::before {
  content: "";
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 1px; background: var(--gold);
}
.discover__inner {
  max-width: 760px;
  margin: 0 auto;
}
.discover__lede {
  margin-top: 2.5rem;
}
.discover__lede p {
  font-family: var(--font-body);
  font-size: 1.06rem;
  line-height: 1.85;
  color: var(--text);
  margin: 0 0 1.4rem;
}
.discover__lede p:first-of-type {
  font-size: 1.12rem;
}
.discover__pullquote {
  margin-top: 2.5rem !important;
  padding: 1.8rem 2rem;
  border-left: 3px solid var(--gold);
  background: rgba(177, 139, 94, 0.06);
  font-family: var(--font-display) !important;
  font-style: italic;
  font-size: 1.25rem !important;
  line-height: 1.55 !important;
  color: var(--accent-dark) !important;
}

/* ---------- Vos hôtes ---------- */
.hosts {
  background: var(--accent-dark);
  color: #fff;
  padding: clamp(4rem, 9vw, 6rem) var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hosts::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(207, 228, 223, 0.08), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(177, 139, 94, 0.10), transparent 50%);
  pointer-events: none;
}
.hosts__inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hosts__content {
  margin-top: 2.5rem;
}
.hosts__content p {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1.3rem;
}
.hosts__content strong {
  color: var(--accent-soft);
  font-weight: 600;
}
.hosts__signature {
  margin-top: 2.5rem !important;
  font-family: var(--font-display) !important;
  font-size: 1.6rem !important;
  font-style: italic;
  letter-spacing: 0.02em;
  color: #fff !important;
  line-height: 1.4 !important;
}
.hosts__signature span {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
  font-weight: 400;
}

.cal__state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1rem;
  color: rgba(255,255,255,.7);
  font-size: 0.95rem;
  line-height: 1.7;
}
.cal__state--error {
  color: rgba(255, 200, 180, .9);
}
.cal__state a {
  color: #fff;
  text-decoration: underline;
}

.cal__summary-warn {
  color: #ffd479 !important;
}
.cal__summary-warn strong { color: #fff; }

@media (max-width: 760px) {
  .cal__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .cal__summary { flex-direction: column; align-items: stretch; }
  .cal__summary-text { text-align: center; }
}

/* ---------- Footer ---------- */
.footer {
  background: #14252b;
  color: rgba(255,255,255,.75);
  padding: clamp(3rem, 6vw, 5rem) var(--pad-x) 2rem;
  font-size: 0.9rem;
}
.footer__inner { max-width: var(--maxw); margin: 0 auto; }
.footer__brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: #fff;
  margin-bottom: 2.5rem;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer__title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  margin: 0 0 .8rem;
}
.footer__cols p { margin: 0; line-height: 1.8; }
.footer__cols a:hover { color: var(--accent-soft); }
.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
  margin: 0;
}

@media (max-width: 760px) {
  .footer__cols { grid-template-columns: 1fr; gap: 2rem; }
}
