:root{
  --blue:#478AE6;
  --blue-700:#2F66BB;
  --blue-dark:#173A66;
  --black:#0B0D12;
  --blue-100:#EAF2FE;
  --ink:#262626;
  --muted-on-dark:#C7D3E6;
  --white:#FFFFFF;
  --font: 'Inter', sans-serif;
  --maxw: 1080px;
  --radius: 12px;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){ html{scroll-behavior:auto;} *{animation:none !important; transition:none !important;} }
body{margin:0; font-family:var(--font); color:var(--ink); background:var(--white); line-height:1.55; -webkit-font-smoothing:antialiased;}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 24px;}
.skip-link{position:absolute; left:-999px; top:0; background:var(--blue); color:var(--white); padding:10px 16px; z-index:100;}
.skip-link:focus{left:12px; top:12px;}

/* Language switch (link between / and /en/) */
.lang-switch{
  position:fixed; top:16px; right:16px; z-index:50; display:flex; align-items:center;
  width:66px; height:32px; padding:2px; background:rgba(11,16,26,.55); border:1px solid rgba(255,255,255,.35);
  border-radius:999px; cursor:pointer; backdrop-filter:blur(4px); box-shadow:0 2px 10px rgba(0,0,0,.2);
}
.lang-switch:hover{border-color:rgba(255,255,255,.6);}
.lang-switch-thumb{
  position:absolute; top:2px; left:2px; width:30px; height:26px; border-radius:999px;
  background:var(--blue); transition:transform .2s ease;
}
html[lang="en"] .lang-switch-thumb{transform:translateX(32px);}
.lang-switch-opt{
  position:relative; z-index:1; flex:1; text-align:center; font-weight:800; font-size:.68rem;
  letter-spacing:.02em; color:rgba(255,255,255,.5); transition:color .2s ease;
}
.lang-switch-opt.fr{color:var(--white);}
html[lang="en"] .lang-switch-opt.fr{color:rgba(255,255,255,.5);}
html[lang="en"] .lang-switch-opt.en{color:var(--white);}

/* Hero */
.hero{
  position:relative; min-height:60vh; display:flex; align-items:flex-end; overflow:hidden;
  background:var(--blue-dark);
}
.hero-img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0;}
.hero-overlay{position:absolute; inset:0; z-index:1; background:linear-gradient(180deg, rgba(11,16,26,.55) 0%, rgba(15,32,56,.72) 45%, rgba(11,16,26,.96) 100%);}
.hero-content{position:relative; z-index:2; max-width:var(--maxw); margin:0 auto; width:100%; padding:48px 24px 40px;}
.eyebrow{font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--blue); margin:0 0 14px;}
.eyebrow.center{text-align:center;}
.hero h1{color:var(--white); font-size:clamp(1.7rem, 4.6vw, 2.7rem); font-weight:800; line-height:1.14; margin:0 0 14px; max-width:16ch;}
.hero-facts{color:#E4ECFA; font-size:1rem; font-weight:500; margin:0;}

/* Summary */
.summary{padding:44px 0 36px;}
.summary-text{font-size:1.08rem; margin:0 0 26px; color:var(--ink); text-align:justify; text-align-last:left; hyphens:auto;}
.chip-row{list-style:none; display:flex; flex-wrap:wrap; gap:10px; padding:0; margin:0;}
.chip-row li{
  background:var(--blue-100); color:var(--blue-700); font-weight:600; font-size:.85rem;
  padding:9px 16px; border-radius:999px;
}

/* Gallery / carousel */
.gallery{padding:8px 0 44px;}
.gallery .eyebrow{margin-bottom:16px;}
.carousel-wrap{position:relative;}
.carousel{
  display:flex; gap:14px; overflow-x:auto; scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch; padding-bottom:10px; scrollbar-width:thin; scrollbar-color:var(--blue) var(--blue-100);
}
.carousel::-webkit-scrollbar{height:6px;}
.carousel::-webkit-scrollbar-track{background:var(--blue-100); border-radius:6px;}
.carousel::-webkit-scrollbar-thumb{background:var(--blue); border-radius:6px;}
.carousel figure{flex:0 0 74%; max-width:340px; margin:0; scroll-snap-align:start;}
.carousel img{width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:var(--radius);}
@media (min-width:640px){ .carousel figure{flex:0 0 44%;} }
@media (min-width:960px){ .carousel figure{flex:0 0 31%;} }
.carousel-btn{
  display:none; position:absolute; top:calc(50% - 24px); width:44px; height:44px; border-radius:50%;
  background:var(--blue); color:var(--white); border:none; align-items:center; justify-content:center;
  font-size:1.2rem; cursor:pointer; box-shadow:0 4px 14px rgba(23,58,102,.25);
}
.carousel-btn:hover{background:var(--blue-700);}
.carousel-btn.prev{left:-8px;}
.carousel-btn.next{right:-8px;}
@media (min-width:760px){ .carousel-btn{display:flex;} }

/* Booking */
.booking{background:var(--blue-dark); padding:52px 0 56px;}
.booking-title{color:var(--white); font-size:clamp(1.5rem, 4.5vw, 2.1rem); font-weight:800; text-align:center; letter-spacing:-.01em; margin:0;}

.reviews{max-width:520px; margin:26px auto 0;}
.reviews-title{color:var(--white); font-weight:700; font-size:.92rem; text-align:center; margin:0 0 14px; opacity:.85;}
.review-cards{display:flex; flex-wrap:wrap; gap:14px;}
.review-card{
  flex:1; min-width:190px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius); padding:16px 18px; text-align:center;
}
.review-source{color:var(--blue-100); font-weight:700; font-size:.78rem; text-transform:uppercase; letter-spacing:.05em; margin:0 0 6px;}
.review-score{color:var(--white); font-weight:800; font-size:1.6rem; margin:0; line-height:1;}
.review-score span{font-size:1rem; font-weight:600; opacity:.7;}
.review-count{color:var(--muted-on-dark); font-size:.8rem; margin:4px 0 10px;}
.review-detail{color:var(--muted-on-dark); font-size:.75rem; margin:0; line-height:1.5;}
.reviews-fine{color:var(--muted-on-dark); opacity:.6; font-size:.72rem; text-align:center; margin:14px 0 0; line-height:1.5;}

.booking-buttons{display:flex; flex-direction:column; gap:14px; max-width:520px; margin:26px auto 0;}
.book-btn{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:22px 26px; border-radius:var(--radius); min-height:76px;
}
.book-airbnb{background:var(--blue); color:var(--white);}
.book-airbnb:hover{background:var(--blue-700);}
.book-booking{background:var(--white); color:var(--ink); border:1.5px solid rgba(255,255,255,.14);}
.book-booking:hover{background:#EDF2FA;}
.book-btn-label{font-size:1.25rem; font-weight:800; letter-spacing:-.01em;}
.book-btn-sub{font-size:.85rem; font-weight:600;}

@media (min-width:640px){
  .booking-buttons{flex-direction:row; max-width:none;}
  .book-btn{flex:1; flex-direction:column; align-items:flex-start; justify-content:center; gap:6px;}
}
.maps-link{
  display:block; text-align:center; margin-top:22px; color:var(--blue-100);
  font-size:.9rem; font-weight:600; text-decoration:underline; text-underline-offset:3px;
}
.maps-link:hover{color:var(--white);}

/* Footer */
footer{background:var(--black); color:var(--muted-on-dark); padding:40px 0 26px; border-top:1px solid rgba(255,255,255,.10);}
.footer-grid{display:flex; flex-wrap:wrap; gap:32px; justify-content:space-between; padding-bottom:26px; margin-bottom:20px; border-bottom:1px solid rgba(255,255,255,.10);}
.footer-label{color:var(--blue); font-weight:700; font-size:.72rem; text-transform:uppercase; letter-spacing:.08em; margin:0 0 8px;}
footer p{margin:0; font-size:.9rem; line-height:1.6;}
footer a{text-decoration:underline; text-underline-offset:2px; color:var(--white);}
.social-link{display:inline-flex; align-items:center; gap:8px; text-decoration:none !important; color:var(--muted-on-dark); font-weight:600; font-size:.9rem;}
.social-link:hover{color:var(--white);}
.social-link svg{flex-shrink:0;}
.fine{font-size:.78rem; opacity:.7; line-height:1.7;}
