:root{
  --gold: #D4AF37;
  --gold-dark: #b9932f;
  --text: #222;
  --muted: #555;
  --white: #fff;
  --shadow: 0 8px 20px rgba(0,0,0,.08);
  --shadow-hover: 0 18px 35px rgba(0,0,0,.15);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 30px;
  --transition: .3s ease;
}

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

body{
  font-family:Cambria, Georgia, "Times New Roman", serif;
  background:#ffffff;
  color:var(--text);
  line-height:1.7;
}

img{
  max-width:100%;
  display:block;
}

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

ul{
  list-style:none;
}

button,
select,
a{
  font:inherit;
}

button:focus-visible,
select:focus-visible,
a:focus-visible{
  outline:3px solid var(--gold);
  outline-offset:3px;
}

/* HEADER */

header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  padding:18px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#fff;
  box-shadow:0 5px 20px rgba(0,0,0,.08);
  z-index:999;
}

.logo{
  display:flex;
  align-items:center;
  gap:15px;
}

.logo img{
  height:55px;
}

.logo-text h2{
  font-size:18px;
  color:var(--gold);
  margin:0;
  line-height:1.2;
}

.logo-text p{
  font-size:12px;
  color:var(--muted);
  margin-top:2px;
}

nav ul{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

nav ul li a{
  font-size:16px;
  font-weight:bold;
  color:var(--text);
  transition:var(--transition);
}

nav ul li a:hover{
  color:var(--gold);
}

.actions{
  display:flex;
  align-items:center;
  gap:15px;
}

#language{
  padding:10px;
  border:1px solid #ddd;
  border-radius:8px;
  font-size:16px;
  background:#fff;
  cursor:pointer;
}

.book-btn,
.gold-btn,
.white-btn,
.social a,
#enter-btn{
  transition:var(--transition);
}

.book-btn{
  background:var(--gold);
  color:var(--white);
  padding:12px 28px;
  border-radius:var(--radius-pill);
  font-weight:bold;
}

.book-btn:hover,
.book-btn:focus-visible{
  background:var(--gold-dark);
}

/* HERO */

.hero,
.hero-agadir,
.hero-marrakech,
.hero-essaouira,
.hero-merzouga,
.hero-laayoune{
  min-height:100vh;
  min-height:100svh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  position:relative;
  margin-top:90px;
  padding:20px;
  background-color:#111;
}

.hero{
  background:url("images/hero.webp") center center/cover no-repeat;
}

.hero-agadir{
  background:url("images/hero-agadir.webp") center center/cover no-repeat;
}

.hero-marrakech{
  background:url("images/hero-marrakech.webp") center center/cover no-repeat;
}

.hero-essaouira{
  background:url("images/hero-essaouira.webp") center center/cover no-repeat;
}

.hero-merzouga{
  background:url("images/hero-merzouga.webp") center center/cover no-repeat;
}

.hero-laayoune{
  background:url("images/hero-laayoune.webp") center center/cover no-repeat;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
}

.hero-content{
  position:relative;
  z-index:2;
  color:var(--white);
  max-width:900px;
  padding:20px;
}

.hero h1,
.hero-agadir h1,
.hero-marrakech h1,
.hero-essaouira h1,
.hero-merzouga h1,
.hero-laayoune h1{
  font-size:clamp(2.2rem, 4.2vw, 3.75rem);
  margin-bottom:20px;
  font-weight:bold;
}

.hero p,
.hero-agadir p,
.hero-marrakech p,
.hero-essaouira p,
.hero-merzouga p,
.hero-laayoune p{
  font-size:clamp(1.1rem, 2.2vw, 1.5rem);
  margin-bottom:35px;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.gold-btn{
  background:var(--gold);
  color:var(--white);
  padding:14px 32px;
  border-radius:var(--radius-pill);
  font-size:18px;
  font-weight:bold;
}

.gold-btn:hover,
.gold-btn:focus-visible{
  background:var(--gold-dark);
  transform:translateY(-3px);
}

.white-btn{
  background:var(--white);
  color:var(--text);
  padding:14px 32px;
  border-radius:var(--radius-pill);
  font-size:18px;
  font-weight:bold;
  border:2px solid var(--white);
}

.white-btn:hover,
.white-btn:focus-visible{
  background:var(--gold);
  color:var(--white);
  border-color:var(--gold);
}

/* SECTIONS */

section{
  padding:90px 8%;
}

.section-heading{
  text-align:center;
  font-size:42px;
  color:var(--gold);
  margin-bottom:50px;
}

/* ABOUT */

.container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:50px;
  flex-wrap:wrap;
}

.about-text{
  flex:1;
  min-width:320px;
}

.about-text p{
  font-size:20px;
  margin-bottom:30px;
}

.about-image{
  flex:1;
  min-width:320px;
}

.about-image img{
  border-radius:15px;
  box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.features{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.feature{
  background:var(--white);
  padding:20px;
  border-radius:var(--radius-md);
  box-shadow:var(--shadow);
  text-align:center;
}

.feature span{
  font-size:35px;
  display:block;
  margin-bottom:10px;
}

/* FLEET */

.fleet-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:35px;
  margin-top:40px;
}

.car-card{
  background:var(--white);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:var(--transition);
  text-align:center;
}

.car-card:hover,
.car-card:focus-within{
  transform:translateY(-8px);
}

.car-card img{
  width:100%;
  height:250px;
  object-fit:cover;
}

.car-card h3{
  font-size:28px;
  margin:20px 0;
  color:var(--gold);
}

.car-card ul{
  padding:0 25px 25px;
  text-align:left;
}

.car-card li{
  margin:12px 0;
  font-size:18px;
  color:#444;
}

.car-card .gold-btn{
  margin-bottom:25px;
  display:inline-block;
}

/* SERVICES */

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
}

.card{
  background:var(--white);
  padding:30px;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  transition:var(--transition);
  text-align:center;
}

.card:hover,
.card:focus-within{
  transform:translateY(-8px);
}

.card h3{
  font-size:26px;
  color:var(--gold);
  margin-bottom:15px;
}

.card p{
  font-size:18px;
  color:var(--muted);
}

/* GALLERY */

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.gallery-grid img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:15px;
  transition:var(--transition);
  cursor:pointer;
  box-shadow:var(--shadow);
}

.gallery-grid img:hover,
.gallery-grid img:focus-visible{
  transform:scale(1.05);
}

/* REVIEWS */

.review-card{
  text-align:left;
  padding:30px;
  background:var(--white);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
}

.review-top{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:15px;
}

.avatar{
  width:60px;
  height:60px;
  background:var(--gold);
  color:var(--white);
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:24px;
  font-weight:bold;
}

.stars{
  color:#FFD700;
  font-size:22px;
  margin:15px 0;
}

.review-card p{
  color:var(--muted);
  line-height:1.8;
}

/* CONTACT */

.contact-box{
  max-width:700px;
  margin:auto;
  background:var(--white);
  padding:40px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  text-align:center;
}

.contact-box p{
  font-size:20px;
  margin:18px 0;
  color:#444;
}

.social{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-top:30px;
  flex-wrap:wrap;
}

.social a{
  background:var(--gold);
  color:var(--white);
  padding:12px 28px;
  border-radius:var(--radius-pill);
  font-weight:bold;
}

.social a:hover,
.social a:focus-visible{
  background:var(--gold-dark);
  transform:translateY(-3px);
}

/* FOOTER */

footer{
  background:#111;
  color:var(--white);
  padding:25px;
  text-align:center;
  margin-top:80px;
  font-size:17px;
}

/* ANIMATIONS */

.card,
.car-card,
.gallery-grid img,
.review-card{
  transition:var(--transition);
}

.card:hover,
.car-card:hover,
.review-card:hover{
  transform:translateY(-10px);
  box-shadow:var(--shadow-hover);
}

/* SCROLLBAR */

::-webkit-scrollbar{
  width:10px;
}

::-webkit-scrollbar-track{
  background:#f5f5f5;
}

::-webkit-scrollbar-thumb{
  background:var(--gold);
  border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
  background:var(--gold-dark);
}

/* RESPONSIVE */

@media (max-width:991px){
  header{
    flex-direction:column;
    padding:18px 8%;
  }

  nav ul{
    justify-content:center;
    gap:15px;
    margin:20px 0;
  }

  .container{
    flex-direction:column;
  }

  .about-image img{
    width:100%;
  }

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

@media (max-width:768px){
  .hero{
    padding:20px;
  }

  .section-heading{
    font-size:32px;
  }

  .book-btn,
  .gold-btn,
  .white-btn{
    display:block;
    width:100%;
    margin-top:15px;
    text-align:center;
  }

  .gallery-grid,
  .cards,
  .fleet-container{
    grid-template-columns:1fr;
  }

  .logo{
    flex-direction:column;
    text-align:center;
  }

  .logo img{
    height:48px;
  }

  .actions{
    width:100%;
    justify-content:center;
    flex-wrap:wrap;
  }

  #language{
    width:100%;
    max-width:220px;
  }

  .welcome-content h1{
    font-size:clamp(2.2rem, 8vw, 2.7rem);
  }

  .welcome-content p{
    font-size:clamp(1.1rem, 3vw, 1.25rem);
  }

  #enter-btn{
    padding:15px 35px;
    font-size:18px;
  }
}

/* Spacing */

section{
  padding:100px 8%;
}

.section-heading{
  margin-bottom:50px;
}

.container,
.cards,
.fleet-container,
.gallery-grid{
  margin-top:40px;
  gap:30px;
}

.card,
.car-card,
.review-card{
  padding:30px;
}

.card h3,
.car-card h3{
  margin-bottom:15px;
}

.card p,
.review-card p{
  margin-top:15px;
  line-height:1.8;
}

.car-card ul{
  margin:20px 0;
}

.car-card li{
  margin-bottom:12px;
}

.contact-box p{
  margin:15px 0;
}

footer{
  margin-top:70px;
}

.floating-whatsapp {
  position:fixed;
  bottom:20px;
  right:20px;
  width:60px;
  height:60px;
  background-color:#25d366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 10px rgba(0, 0, 0, 0.3);
  z-index:1000;
  transition:transform 0.3s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible{
  transform:scale(1.1);
}

.floating-whatsapp img {
  width:35px;
  height:35px;
}

/* DRIVER BIO SECTION */
.driver-bio {
  background:#fdfbf7;
  border-left:4px solid var(--gold);
  padding:20px;
  border-radius:8px;
  margin-bottom:25px;
}

.driver-bio h3 {
  color:var(--gold);
  font-size:22px;
  margin-bottom:10px;
}

.driver-bio p {
  font-size:17px !important;
  line-height:1.7;
  color:#444;
  margin-bottom:0 !important;
}

html[dir="rtl"] .driver-bio {
  border-left:none;
  border-right:4px solid var(--gold);
}

/* WELCOME SCREEN */

#welcome-screen{
  position:fixed;
  inset:0;
  width:100%;
  height:100vh;
  background:
    linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
    url("images/welcome.webp");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  z-index:99999;
}

.welcome-content{
  max-width:900px;
  padding:20px;
  animation:fadeUp 1.2s ease;
}

.welcome-content h1{
  color:var(--white);
  font-size:72px;
  font-weight:700;
  margin-bottom:20px;
  text-shadow:0 6px 20px rgba(0,0,0,.6);
}

.welcome-content p{
  color:var(--gold);
  font-size:26px;
  margin-bottom:35px;
  text-shadow:0 3px 12px rgba(0,0,0,.6);
}

#enter-btn{
  background:var(--gold);
  color:var(--white);
  border:none;
  padding:18px 50px;
  border-radius:50px;
  font-size:22px;
  font-weight:bold;
  cursor:pointer;
  box-shadow:0 10px 30px rgba(212,175,55,.45);
}

#enter-btn:hover,
#enter-btn:focus-visible{
  transform:translateY(-5px);
  box-shadow:0 15px 40px rgba(212,175,55,.8);
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior:auto;
  }

  *,
  *::before,
  *::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
    scroll-behavior:auto !important;
  }
}
/* ============================================================
   PHASE 2 — PREMIUM VISUAL IDENTITY (Noir & Gold)
   Non-destructive overlay. All above rules kept intact.
   Palette: obsidian #0d0d0d / ink #1a1a1a / gold #D4AF37 / champagne #c9a84c
   Motion: moderate (fade + scroll reveal + hero zoom + staggered cards)
   ============================================================ */

:root{
  --noir: #0d0d0d;
  --ink: #1a1a1a;
  --ink-soft: #2a2a2a;
  --champagne: #c9a84c;
  --cream: #f7f4ee;
  --hairline: rgba(212,175,55,.35);
  --shadow-premium: 0 20px 60px -20px rgba(0,0,0,.35);
  --shadow-soft: 0 8px 24px -12px rgba(0,0,0,.18);
  --ease-luxe: cubic-bezier(.22,.61,.36,1);
}

/* Typography rhythm on Cambria (no new font loaded) */
html{ -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body{ color: var(--ink); }
h1, h2, h3, h4{ font-family: Cambria, Georgia, "Times New Roman", serif; letter-spacing:.005em; }
p{ line-height:1.75; }

/* Sticky translucent header with gold hairline */
header{
  padding: 14px 8%;
  background: rgba(255,255,255,.86);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: none;
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease-luxe),
              border-color .35s var(--ease-luxe),
              padding .35s var(--ease-luxe),
              box-shadow .35s var(--ease-luxe);
}
header.scrolled{
  background: rgba(13,13,13,.92);
  border-bottom-color: var(--hairline);
  box-shadow: 0 10px 30px -20px rgba(0,0,0,.6);
  padding: 10px 8%;
}
header.scrolled .logo,
header.scrolled nav a,
header.scrolled #language{ color: var(--cream); }
header.scrolled nav a:hover{ color: var(--gold); }
header.scrolled #language{ background: transparent; border-color: var(--hairline); }
nav a{ position:relative; letter-spacing:.02em; transition: color .3s var(--ease-luxe); }
nav a::after{
  content:""; position:absolute; left:0; right:0; bottom:-6px; height:1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease-luxe);
}
nav a:hover::after{ transform: scaleX(1); transform-origin: left; }

/* Refined language selector */
#language{
  border:1px solid rgba(0,0,0,.12);
  border-radius: 999px;
  padding: 8px 14px;
  background: transparent;
  transition: border-color .3s var(--ease-luxe), color .3s var(--ease-luxe);
}
#language:hover{ border-color: var(--gold); }

/* HERO — overlay refinement + slow ken-burns zoom */
.hero,
.hero-agadir,
.hero-marrakech,
.hero-essaouira,
.hero-merzouga,
.hero-laayoune{
  position: relative;
  isolation: isolate;
}
.hero::before,
.hero-agadir::before,
.hero-marrakech::before,
.hero-essaouira::before,
.hero-merzouga::before,
.hero-laayoune::before{
  content:""; position:absolute; inset:0; z-index:-1;
  background: linear-gradient(180deg,
    rgba(13,13,13,.55) 0%,
    rgba(13,13,13,.35) 45%,
    rgba(13,13,13,.75) 100%);
}
.hero, .hero-agadir, .hero-marrakech, .hero-essaouira, .hero-merzouga, .hero-laayoune{
  background-size: cover;
  background-position: center;
  animation: hero-zoom 18s var(--ease-luxe) forwards;
}
@keyframes hero-zoom{
  from{ background-size: 105% auto; }
  to  { background-size: 115% auto; }
}
.hero h1, .hero-agadir h1, .hero-marrakech h1,
.hero-essaouira h1, .hero-merzouga h1, .hero-laayoune h1{
  font-weight: 600;
  letter-spacing: .01em;
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.hero p, .hero-agadir p, .hero-marrakech p,
.hero-essaouira p, .hero-merzouga p, .hero-laayoune p{
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 15px;
}

/* Discreet scroll indicator on main hero */
.hero::after{
  content:""; position:absolute; left:50%; bottom:34px;
  width:1px; height:54px;
  background: linear-gradient(180deg, transparent, var(--gold));
  transform: translateX(-50%);
  animation: scroll-cue 2.4s var(--ease-luxe) infinite;
  opacity:.85;
}
@keyframes scroll-cue{
  0%{ transform: translate(-50%, -14px); opacity:0; }
  40%{ opacity:1; }
  100%{ transform: translate(-50%, 14px); opacity:0; }
}

/* Buttons — refined, no glow */
.gold-btn, .white-btn{
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 14px;
  padding: 15px 36px;
  border-radius: 2px;
  transition: transform .35s var(--ease-luxe),
              background .35s var(--ease-luxe),
              color .35s var(--ease-luxe),
              box-shadow .35s var(--ease-luxe),
              border-color .35s var(--ease-luxe);
}
.gold-btn{
  background: var(--gold);
  color: var(--noir);
  box-shadow: 0 10px 30px -12px rgba(212,175,55,.55);
}
.gold-btn:hover, .gold-btn:focus-visible{
  background: var(--noir);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -14px rgba(0,0,0,.55);
}
.white-btn{
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,.7);
}
.white-btn:hover, .white-btn:focus-visible{
  background: var(--cream);
  color: var(--noir);
  border-color: var(--cream);
  transform: translateY(-2px);
}

/* Section heading — thin gold rule under title */
.section-heading{
  font-weight: 500;
  font-size: 38px;
  color: var(--ink);
  letter-spacing: .02em;
  position: relative;
  padding-bottom: 22px;
  margin-bottom: 50px;
}
.section-heading::after{
  content:""; position:absolute; left:50%; bottom:0;
  width: 48px; height: 1px; background: var(--gold);
  transform: translateX(-50%);
}

/* Cards — refined edges + gold hairline on hover */
.card, .review-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
  transition: transform .5s var(--ease-luxe),
              box-shadow .5s var(--ease-luxe),
              border-color .5s var(--ease-luxe);
}
.card:hover, .card:focus-within, .review-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: var(--hairline);
}
.card h3, .review-card h4{
  color: var(--noir);
  font-weight: 500;
  letter-spacing: .015em;
}

/* Footer — noir with gold accents */
footer{
  background: var(--noir);
  color: var(--cream);
  border-top: 1px solid var(--hairline);
}
footer a{ color: var(--cream); transition: color .3s var(--ease-luxe); }
footer a:hover{ color: var(--gold); }

/* Welcome screen — subtle refinement, kept intact */
#welcome-screen{ background: radial-gradient(ellipse at center, #1a1a1a 0%, #0d0d0d 70%); }

/* SCROLL REVEAL — moderate motion */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease-luxe), transform .8s var(--ease-luxe);
  will-change: opacity, transform;
}
.reveal.is-visible{ opacity: 1; transform: none; }
.cards .card,
.fleet-container > *,
.review-card{
  transition-delay: 0s;
}
/* Stagger children of a reveal group */
.reveal-stagger.is-visible > *:nth-child(1){ animation: rise .7s var(--ease-luxe) .00s both; }
.reveal-stagger.is-visible > *:nth-child(2){ animation: rise .7s var(--ease-luxe) .09s both; }
.reveal-stagger.is-visible > *:nth-child(3){ animation: rise .7s var(--ease-luxe) .18s both; }
.reveal-stagger.is-visible > *:nth-child(4){ animation: rise .7s var(--ease-luxe) .27s both; }
.reveal-stagger.is-visible > *:nth-child(5){ animation: rise .7s var(--ease-luxe) .36s both; }
.reveal-stagger.is-visible > *:nth-child(6){ animation: rise .7s var(--ease-luxe) .45s both; }
@keyframes rise{ from{ opacity:0; transform: translateY(24px);} to{ opacity:1; transform:none;} }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero, .hero-agadir, .hero-marrakech, .hero-essaouira, .hero-merzouga, .hero-laayoune{ animation: none; }
  .hero::after{ animation: none; opacity:0; }
  .reveal{ opacity:1; transform:none; transition:none; }
  .reveal-stagger.is-visible > *{ animation: none; }
}

/* ============================================================
   PHASE 3 — Premium Booking CTA + Single-Step VIP Modal
   Non-destructive additive layer.
   ============================================================ */

/* CTA icon inside header + hero buttons */
.book-cta{
  display:inline-flex; align-items:center; gap:.55rem;
}
.book-cta .book-cta-icon{
  color: var(--nl-gold, #c9a84c);
  transition: transform .35s ease, color .35s ease;
  flex-shrink:0;
}
.book-cta:hover .book-cta-icon,
.book-cta:focus-visible .book-cta-icon{
  transform: rotate(-8deg) scale(1.08);
}
.book-cta--hero{
  padding: 1rem 2.25rem;
  font-size: .95rem;
  letter-spacing: .18em;
}
.book-cta--hero .book-cta-icon{ color: #0d0d0d; }

/* Header CTA — refined pill on dark scrolled header */
header .book-btn.book-cta{
  border: 1px solid var(--nl-gold, #c9a84c);
  background: transparent;
  color: var(--nl-gold, #c9a84c);
  padding: .6rem 1.15rem;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background .35s ease, color .35s ease, box-shadow .35s ease;
  box-shadow: 0 6px 22px -14px rgba(201,168,76,.55);
}
header .book-btn.book-cta:hover,
header .book-btn.book-cta:focus-visible{
  background: var(--nl-gold, #c9a84c);
  color: #0d0d0d;
  box-shadow: 0 10px 30px -14px rgba(201,168,76,.9);
}
header:not(.scrolled) .book-btn.book-cta{
  color: #0d0d0d;
  border-color: #0d0d0d;
}
header:not(.scrolled) .book-btn.book-cta:hover{
  background: #0d0d0d; color: var(--nl-champagne, #e6cf8a);
  border-color: #0d0d0d;
}

/* ---------- Modal ---------- */
.booking-modal{
  position: fixed; inset: 0;
  display: none;
  align-items: center; justify-content: center;
  z-index: 2000;
  padding: clamp(1rem, 3vw, 2rem);
}
.booking-modal.is-open{ display: flex; }
.booking-modal__backdrop{
  position:absolute; inset:0;
  background: radial-gradient(ellipse at center, rgba(13,13,13,.82), rgba(0,0,0,.94));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: bkFade .35s ease both;
}
.booking-modal__panel{
  position: relative;
  width: min(720px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  background: linear-gradient(180deg, #fbf9f4 0%, #f5f1e6 100%);
  color: #1a1a1a;
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 4px;
  box-shadow:
    0 40px 90px -30px rgba(0,0,0,.6),
    0 0 0 1px rgba(201,168,76,.15) inset;
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
  animation: bkRise .45s cubic-bezier(.16,.84,.32,1) both;
}
@keyframes bkFade{ from{opacity:0} to{opacity:1} }
@keyframes bkRise{
  from{opacity:0; transform: translateY(24px) scale(.98)}
  to{opacity:1; transform: translateY(0) scale(1)}
}
.booking-modal__close{
  position:absolute; top: .75rem; right: 1rem;
  background: transparent; border: 0;
  color: #1a1a1a; font-size: 1.8rem; line-height: 1;
  cursor: pointer; padding: .25rem .5rem;
  transition: color .25s ease, transform .25s ease;
}
.booking-modal__close:hover{ color: var(--nl-gold, #c9a84c); transform: rotate(90deg); }

.booking-modal__header{ text-align:center; margin-bottom: 1.75rem; }
.booking-modal__eyebrow{
  display:inline-block;
  font-size:.72rem; letter-spacing:.32em; text-transform:uppercase;
  color: var(--nl-gold, #c9a84c);
  margin-bottom: .75rem;
}
.booking-modal__header h2{
  font-family: Cambria, Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 600;
  letter-spacing: .01em;
  margin: 0 0 .6rem;
  color: #0d0d0d;
}
.booking-modal__header h2::after{
  content:""; display:block;
  width: 48px; height: 1px;
  background: var(--nl-gold, #c9a84c);
  margin: .85rem auto 0;
}
.booking-modal__lede{
  color: #55524a;
  font-size: .95rem;
  max-width: 44ch;
  margin: 0 auto;
  line-height: 1.6;
}

/* Form */
.booking-form__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.15rem;
}
.booking-field{ display:flex; flex-direction:column; gap:.4rem; }
.booking-field--full{ grid-column: 1 / -1; }
.booking-field > span{
  font-size:.72rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:#0d0d0d;
  font-weight:600;
}
.booking-field input,
.booking-field select,
.booking-field textarea{
  width:100%;
  font: inherit;
  font-size:.95rem;
  padding: .75rem .9rem;
  background:#fff;
  color:#0d0d0d;
  border:1px solid rgba(13,13,13,.15);
  border-radius: 2px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus{
  outline: none;
  border-color: var(--nl-gold, #c9a84c);
  box-shadow: 0 0 0 3px rgba(201,168,76,.18);
}
.booking-field textarea{ resize: vertical; min-height: 88px; }

.booking-form__foot{
  margin-top: 1.75rem;
  display:flex; flex-direction:column; align-items:center; gap: 1rem;
}
.booking-form__reassure{
  font-size:.78rem; letter-spacing:.14em; text-transform:uppercase;
  color:#7a7568; margin:0; text-align:center;
}
.booking-form__submit{
  display:inline-flex; align-items:center; gap:.65rem;
  padding: 1rem 2.25rem;
  font-size:.9rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  border:0; cursor:pointer;
}

@media (max-width: 620px){
  .booking-form__grid{ grid-template-columns: 1fr; }
  .booking-modal__panel{ padding: 1.5rem 1.25rem; max-height: 96vh; }
}

/* RTL adjustments */
html[dir="rtl"] .booking-modal__close{ right:auto; left: 1rem; }
html[dir="rtl"] .booking-field > span,
html[dir="rtl"] .booking-modal__eyebrow{ letter-spacing: 0; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .booking-modal__backdrop,
  .booking-modal__panel{ animation: none; }
  .book-cta:hover .book-cta-icon{ transform: none; }
}

/* ============================================================
   PHASE 4 — VERY LUXURY LAYER
   Cinematic, editorial, timeless. Non-destructive additive.
   ============================================================ */

:root{
  --luxe-cream:   #f7f4ee;
  --luxe-bone:    #ece7dc;
  --luxe-gold:    #c9a84c;
  --luxe-gold-hi: #e6cf8a;
  --luxe-gold-lo: #8f7526;
  --luxe-noir:    #0d0d0d;
  --luxe-ink:     #1a1a1a;
  --luxe-mute:    #6b6a63;
  --luxe-grad-gold: linear-gradient(135deg, #8f7526 0%, #c9a84c 38%, #f0dfa2 55%, #c9a84c 72%, #8f7526 100%);
  --luxe-ease:    cubic-bezier(.22,.61,.36,1);
}

/* Warm ivory canvas + refined selection */
html, body{ background: var(--luxe-cream); }
::selection{ background: var(--luxe-gold); color: var(--luxe-noir); }

/* Elegant custom scrollbar */
html{ scrollbar-width: thin; scrollbar-color: var(--luxe-gold) transparent; }
::-webkit-scrollbar{ width: 10px; height: 10px; }
::-webkit-scrollbar-track{ background: transparent; }
::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg, var(--luxe-gold-lo), var(--luxe-gold));
  border-radius: 20px; border: 2px solid var(--luxe-cream);
}

/* ---------- HEADER — slimmer, more editorial ---------- */
header{ padding: 18px 8% !important; }
header .logo{
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: 1.05rem;
}
header .logo::before{
  content:""; display:inline-block; width: 26px; height:1px;
  background: var(--luxe-gold); vertical-align: middle;
  margin-right: 12px; opacity:.9;
}
nav a{
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .22em;
}

/* ---------- HERO — cinematic frame ---------- */
.hero::before,
.hero-agadir::before,
.hero-marrakech::before,
.hero-essaouira::before,
.hero-merzouga::before,
.hero-laayoune::before{
  background:
    radial-gradient(ellipse at 50% 40%, rgba(13,13,13,.15) 0%, rgba(13,13,13,.55) 55%, rgba(13,13,13,.9) 100%),
    linear-gradient(180deg, rgba(13,13,13,.4) 0%, rgba(13,13,13,.15) 40%, rgba(13,13,13,.85) 100%) !important;
}
.hero-content{ max-width: 960px; }
.hero-content::before{
  content: "AMANKAL — MOROCCO";
  display:block;
  font-size: .72rem;
  letter-spacing: .5em;
  color: var(--luxe-gold);
  margin: 0 auto 26px;
  opacity: .95;
}
.hero-content::after{
  content:""; display:block;
  width: 56px; height:1px; background: var(--luxe-gold);
  margin: 22px auto 0;
  opacity: .8;
}
.hero h1,
.hero-agadir h1,
.hero-marrakech h1,
.hero-essaouira h1,
.hero-merzouga h1,
.hero-laayoune h1{
  font-weight: 500 !important;
  font-size: clamp(2.4rem, 5vw, 4.4rem) !important;
  letter-spacing: .015em;
  line-height: 1.08;
  color: #fff;
  text-shadow: 0 6px 40px rgba(0,0,0,.55);
}
.hero p,
.hero-agadir p,
.hero-marrakech p,
.hero-essaouira p,
.hero-merzouga p,
.hero-laayoune p{
  color: var(--luxe-cream) !important;
  letter-spacing: .38em !important;
  font-size: .78rem !important;
  text-transform: uppercase;
  opacity: .92;
  margin-top: 22px;
  margin-bottom: 38px !important;
}

/* Corner brackets around hero copy — subtle editorial frame */
.hero-content{ position: relative; padding: 40px 30px; }
.hero-content > .hero-brackets{ display:none; }
.hero-content::before,
.hero-content::after{ position: relative; }

/* ---------- GOLD BUTTON — metallic, no yellow halo ---------- */
.gold-btn,
.book-cta{
  background: var(--luxe-grad-gold) !important;
  color: var(--luxe-noir) !important;
  border: 1px solid rgba(143,117,38,.55);
  box-shadow: none !important;
  font-weight: 600 !important;
  letter-spacing: .22em !important;
  text-transform: uppercase;
  font-size: .78rem !important;
  padding: 16px 34px !important;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.gold-btn::before,
.book-cta::before{
  content:""; position:absolute; inset:0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .9s var(--luxe-ease);
  pointer-events:none;
}
.gold-btn:hover::before,
.book-cta:hover::before,
.gold-btn:focus-visible::before{
  transform: translateX(120%);
}
.gold-btn:hover,
.book-cta:hover,
.gold-btn:focus-visible{
  background: var(--luxe-noir) !important;
  color: var(--luxe-gold-hi) !important;
  border-color: var(--luxe-gold);
  transform: translateY(-2px);
}
.book-cta--hero .book-cta-icon{ color: var(--luxe-noir); }
.book-cta--hero:hover .book-cta-icon{ color: var(--luxe-gold); }

/* Header CTA — refined outlined pill */
header .book-btn.book-cta{
  background: transparent !important;
  border: 1px solid var(--luxe-gold) !important;
  color: var(--luxe-noir) !important;
  font-weight: 600 !important;
}
header.scrolled .book-btn.book-cta{
  color: var(--luxe-gold-hi) !important;
  border-color: var(--luxe-gold) !important;
}
header .book-btn.book-cta:hover{
  background: var(--luxe-grad-gold) !important;
  color: var(--luxe-noir) !important;
}

/* ---------- SECTION RHYTHM ---------- */
section{ padding-top: clamp(72px, 9vw, 130px); padding-bottom: clamp(72px, 9vw, 130px); }

.section-heading{
  font-weight: 500 !important;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem) !important;
  letter-spacing: .01em;
  color: var(--luxe-noir);
  padding-bottom: 30px !important;
  margin-bottom: 60px !important;
}
.section-heading[data-eyebrow]::before{
  content: attr(data-eyebrow);
  display:block;
  font-family: Cambria, Georgia, serif;
  font-size: .68rem;
  letter-spacing: .5em;
  color: var(--luxe-gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.section-heading::after{
  width: 42px !important;
  background: var(--luxe-grad-gold) !important;
  height: 1px !important;
}

/* Elegant divider between sections */
section + section{
  border-top: 1px solid rgba(201,168,76,.14);
}

/* ---------- CARDS — bone stock, gold-corner tell ---------- */
.card, .review-card{
  background: #fff !important;
  border: 1px solid rgba(13,13,13,.06) !important;
  border-radius: 3px !important;
  position: relative;
  overflow: hidden;
}
.card::before, .review-card::before{
  content:""; position:absolute; top:0; left:0;
  width: 22px; height: 22px;
  border-top: 1px solid var(--luxe-gold);
  border-left: 1px solid var(--luxe-gold);
  opacity: 0;
  transition: opacity .5s var(--luxe-ease), width .5s var(--luxe-ease), height .5s var(--luxe-ease);
}
.card::after, .review-card::after{
  content:""; position:absolute; bottom:0; right:0;
  width: 22px; height: 22px;
  border-bottom: 1px solid var(--luxe-gold);
  border-right: 1px solid var(--luxe-gold);
  opacity: 0;
  transition: opacity .5s var(--luxe-ease), width .5s var(--luxe-ease), height .5s var(--luxe-ease);
}
.card:hover::before, .card:hover::after,
.review-card:hover::before, .review-card:hover::after{
  opacity: 1; width: 36px; height: 36px;
}
.card:hover, .review-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 30px 70px -30px rgba(13,13,13,.28) !important;
}

/* ---------- FEATURE ROW — elegant, kill emoji weight ---------- */
.features{ gap: 28px; }
.feature{
  padding: 22px 18px;
  border: 1px solid rgba(13,13,13,.06);
  background: rgba(255,255,255,.6);
  border-radius: 2px;
  transition: border-color .35s var(--luxe-ease), background .35s var(--luxe-ease);
}
.feature:hover{ border-color: var(--luxe-gold); background:#fff; }
.feature span{
  font-size: 1.6rem;
  filter: grayscale(.6) saturate(.6);
  opacity: .85;
}
.feature p{
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--luxe-ink);
  margin-top: 10px;
}

/* ---------- ABOUT / DRIVER BIO ---------- */
.driver-bio{
  border-left: 1px solid var(--luxe-gold);
  padding: 6px 0 6px 22px;
  margin-bottom: 22px;
}
.driver-bio h3{
  font-size: .78rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--luxe-gold);
  margin-bottom: 12px;
  font-weight: 600;
}

/* ---------- FOOTER ---------- */
footer{
  background: linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
  color: var(--luxe-cream);
  padding-top: clamp(60px, 7vw, 100px) !important;
}
footer h3, footer h4{
  font-size: .78rem !important;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--luxe-gold) !important;
  font-weight: 600;
}
footer a:hover{ color: var(--luxe-gold-hi) !important; }

/* ---------- WELCOME SCREEN — pure black + gold monogram ---------- */
#welcome-screen{
  background: radial-gradient(ellipse at center, #141414 0%, #000 75%) !important;
}
#welcome-screen .welcome-logo,
#welcome-screen h1,
#welcome-screen h2{
  color: var(--luxe-gold) !important;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---------- BOOKING MODAL — deepen luxury ---------- */
.booking-modal__panel{
  background: linear-gradient(180deg, #fbf9f4 0%, #f2ecdd 100%) !important;
  border: 1px solid rgba(201,168,76,.5) !important;
}
.booking-modal__panel::before{
  content:""; position:absolute; top:14px; left:14px; right:14px; bottom:14px;
  border: 1px solid rgba(201,168,76,.25);
  pointer-events:none;
  border-radius: 2px;
}
.booking-modal__header h2{
  font-size: clamp(1.7rem, 3vw, 2.35rem) !important;
  letter-spacing: .015em;
}
.booking-modal__eyebrow{
  font-size: .68rem !important;
  letter-spacing: .5em !important;
}
.booking-form__submit{
  background: var(--luxe-grad-gold) !important;
  color: var(--luxe-noir) !important;
  border: 1px solid rgba(143,117,38,.55) !important;
}
.booking-form__submit:hover{
  background: var(--luxe-noir) !important;
  color: var(--luxe-gold-hi) !important;
}

/* ---------- IMAGE REVEAL — subtle luxe zoom on hover ---------- */
.card img, .fleet-container img{
  transition: transform 1.2s var(--luxe-ease), filter 1.2s var(--luxe-ease);
  filter: saturate(.92) contrast(1.02);
}
.card:hover img, .fleet-container > *:hover img{
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.05);
}

/* ---------- RTL adjustments ---------- */
html[dir="rtl"] header .logo::before{ margin-right: 0; margin-left: 12px; }
html[dir="rtl"] .driver-bio{ border-left: 0; border-right: 1px solid var(--luxe-gold); padding: 6px 22px 6px 0; }
html[dir="rtl"] .hero-content::before,
html[dir="rtl"] .section-heading::before{ letter-spacing: 0; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  .gold-btn::before, .book-cta::before{ display:none; }
  .card:hover img, .fleet-container > *:hover img{ transform:none; }
}

/* Fix hero background sizing — keep cover during ken-burns */
.hero, .hero-agadir, .hero-marrakech, .hero-essaouira, .hero-merzouga, .hero-laayoune{
  animation: none !important;
  background-size: cover !important;
  background-position: center !important;
}
.hero-content{
  animation: luxe-rise 1.2s var(--luxe-ease) .1s both;
}
@keyframes luxe-rise{
  from{ opacity:0; transform: translateY(24px); }
  to  { opacity:1; transform: none; }
}

/* =============================================================
   PHASE 4 — Premium sections (stats, why-us, journey, faq)
   ============================================================= */
.luxe-eyebrow{
  display:block; text-align:center;
  font-size:.72rem; letter-spacing:.5em; text-transform:uppercase;
  color: var(--luxe-gold, #c9a84c);
  margin: 0 auto 14px; font-weight:600;
}
html[dir="rtl"] .luxe-eyebrow{ letter-spacing:.15em; }

/* --- Trust stats bar --- */
.luxe-stats{
  background: linear-gradient(180deg, #0d0d0d 0%, #141414 100%);
  padding: 42px 20px;
  border-top: 1px solid rgba(201,168,76,.18);
  border-bottom: 1px solid rgba(201,168,76,.18);
  margin: 0;
}
.luxe-stats__inner{
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; align-items: center;
}
.luxe-stat{ text-align:center; position:relative; padding: 6px 8px; }
.luxe-stat + .luxe-stat::before{
  content:""; position:absolute; left:0; top:20%; bottom:20%; width:1px;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,.35), transparent);
}
.luxe-stat__num{
  display:block; font-family: Cambria, Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem); line-height:1;
  background: linear-gradient(180deg,#f0d78c 0%, #c9a84c 55%, #8f7526 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 600;
}
.luxe-stat__num i{ font-style:normal; font-size:.55em; margin-left:2px; opacity:.85; }
.luxe-stat__label{
  display:block; margin-top:10px;
  font-size:.72rem; letter-spacing:.28em; text-transform:uppercase;
  color: #d9d3c4;
}
@media (max-width: 720px){
  .luxe-stats__inner{ grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
  .luxe-stat + .luxe-stat:nth-child(3)::before{ display:none; }
}

/* --- Why Choose Us --- */
.luxe-why{ padding: 90px 20px 60px; }
.luxe-why__grid{
  max-width: 1200px; margin: 40px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.luxe-why__card{
  position:relative; padding: 34px 28px 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%);
  border: 1px solid rgba(201,168,76,.22);
  border-radius: 4px;
  transition: transform .5s var(--luxe-ease,cubic-bezier(.2,.7,.2,1)),
              box-shadow .5s var(--luxe-ease,cubic-bezier(.2,.7,.2,1)),
              border-color .5s ease;
}
.luxe-why__card::before{
  content:""; position:absolute; inset:6px; border:1px solid rgba(201,168,76,.14);
  border-radius:2px; pointer-events:none;
}
.luxe-why__card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(20,15,0,.28);
  border-color: rgba(201,168,76,.55);
}
.luxe-why__icon{
  display:inline-flex; align-items:center; justify-content:center;
  width:54px; height:54px; border-radius:50%;
  border: 1px solid rgba(201,168,76,.45);
  color: #8f7526;
  margin-bottom: 18px;
  background: radial-gradient(circle at 30% 30%, #fff8e4 0%, #fbf3d7 60%, #f2e5b4 100%);
}
.luxe-why__icon svg{ width:26px; height:26px; }
.luxe-why__card h3{
  font-family: Cambria, Georgia, serif;
  font-size: 1.2rem; margin: 0 0 10px; color:#1a1a1a; letter-spacing:.01em;
}
.luxe-why__card p{ font-size:.95rem; color:#4a4a4a; line-height:1.6; margin:0; }
@media (max-width: 960px){ .luxe-why__grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 600px){ .luxe-why__grid{ grid-template-columns: 1fr;} }

/* --- Journey timeline --- */
.luxe-journey{
  padding: 90px 20px;
  background:
    linear-gradient(180deg, rgba(13,13,13,.97), rgba(20,20,20,.97)),
    radial-gradient(circle at 20% 10%, rgba(201,168,76,.10), transparent 55%);
  color:#f2eede; position:relative;
}
.luxe-journey .section-heading{ color:#f2eede; }
.luxe-journey__list{
  list-style:none; max-width:1200px; margin: 40px auto 0; padding:0;
  display:grid; grid-template-columns: repeat(4,1fr); gap: 24px;
  counter-reset: step;
}
.luxe-journey__step{
  position:relative; padding: 28px 22px;
  border: 1px solid rgba(201,168,76,.22);
  background: rgba(255,255,255,.02);
  border-radius: 3px;
  transition: border-color .4s ease, background .4s ease, transform .4s ease;
}
.luxe-journey__step:hover{
  border-color: rgba(201,168,76,.6);
  background: rgba(255,255,255,.04);
  transform: translateY(-3px);
}
.luxe-journey__num{
  display:block; font-family:Cambria,Georgia,serif;
  font-size: 2.2rem; font-weight:600;
  background: linear-gradient(180deg,#f0d78c,#c9a84c 55%,#8f7526);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  margin-bottom: 8px;
}
.luxe-journey__step h3{
  font-family:Cambria,Georgia,serif; font-size:1.1rem; margin: 0 0 8px;
  color:#f5e9c6; letter-spacing:.01em;
}
.luxe-journey__step p{ font-size:.9rem; color:#c7c1af; line-height:1.6; margin:0; }
@media (max-width: 960px){ .luxe-journey__list{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 520px){ .luxe-journey__list{ grid-template-columns: 1fr;} }

/* --- FAQ --- */
.luxe-faq{ padding: 90px 20px 60px; max-width: 900px; margin: 0 auto; }
.luxe-faq__list{ margin-top: 30px; }
.luxe-faq__item{
  border-bottom: 1px solid rgba(201,168,76,.28);
  padding: 20px 6px;
  transition: background .3s ease;
}
.luxe-faq__item[open]{ background: rgba(201,168,76,.04); }
.luxe-faq__item summary{
  cursor:pointer; list-style:none;
  font-family: Cambria, Georgia, serif;
  font-size: 1.08rem; color:#1a1a1a;
  display:flex; align-items:center; justify-content:space-between;
  padding: 6px 4px;
  transition: color .3s ease;
}
.luxe-faq__item summary::-webkit-details-marker{ display:none; }
.luxe-faq__item summary::after{
  content:"+"; font-family: Cambria,serif; font-size: 1.6rem; color:#c9a84c;
  transition: transform .35s var(--luxe-ease,cubic-bezier(.2,.7,.2,1));
  margin-left: 16px;
}
.luxe-faq__item[open] summary::after{ content:"–"; }
.luxe-faq__item:hover summary{ color:#8f7526; }
.luxe-faq__item p{
  margin: 10px 4px 4px; color:#4a4a4a; line-height:1.7; font-size:.95rem;
  max-width: 780px;
}
html[dir="rtl"] .luxe-faq__item summary::after{ margin-left:0; margin-right:16px; }

/* Reveal on scroll — reuse existing observer via .reveal-on-scroll if present */
.luxe-why__card, .luxe-journey__step, .luxe-faq__item, .luxe-stat{
  opacity: 1;
}

/* ============================================================
   LUXE GALLERY + LIGHTBOX (cinematic, gold accents)
   ============================================================ */
.luxe-gallery { padding: 90px 6vw 60px; }
.luxe-gallery__lede {
  max-width: 640px; margin: 14px auto 44px; text-align: center;
  color: rgba(20,20,20,.68); font-size: 1.02rem; line-height: 1.7;
  font-family: Cambria, Georgia, "Times New Roman", serif;
}
.luxe-gallery__grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-auto-rows: 220px;
  max-width: 1400px; margin: 0 auto;
}
.luxe-gallery__grid > .luxe-gallery__item:nth-child(4n+1) { grid-row: span 2; }
.luxe-gallery__grid > .luxe-gallery__item:nth-child(7n+3) { grid-row: span 2; }

.luxe-gallery__item {
  position: relative; overflow: hidden; border: 0; padding: 0; cursor: zoom-in;
  background: #0d0d0d; border-radius: 2px;
  box-shadow: 0 10px 30px -18px rgba(0,0,0,.45);
  transition: transform .5s cubic-bezier(.22,.61,.36,1),
              box-shadow .5s ease;
}
.luxe-gallery__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.2s cubic-bezier(.22,.61,.36,1),
              filter .6s ease, opacity .6s ease;
  filter: saturate(.92) contrast(1.02);
}
.luxe-gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.55) 100%);
  opacity: 0; transition: opacity .5s ease; pointer-events: none;
}
.luxe-gallery__frame {
  position: absolute; inset: 10px; pointer-events: none;
  border: 1px solid rgba(201,168,76,0);
  transition: border-color .5s ease, inset .5s ease;
}
.luxe-gallery__zoom {
  position: absolute; right: 14px; bottom: 14px;
  width: 40px; height: 40px; display: grid; place-items: center;
  color: #0d0d0d; background: linear-gradient(135deg,#e8cf85,#c9a84c 55%,#9c7f34);
  border-radius: 999px; opacity: 0; transform: translateY(6px);
  transition: opacity .45s ease, transform .45s ease;
  box-shadow: 0 6px 18px -8px rgba(0,0,0,.5);
}
.luxe-gallery__zoom svg { width: 18px; height: 18px; }

.luxe-gallery__item:hover img,
.luxe-gallery__item:focus-visible img { transform: scale(1.06); filter: saturate(1) contrast(1.05); }
.luxe-gallery__item:hover::after,
.luxe-gallery__item:focus-visible::after { opacity: 1; }
.luxe-gallery__item:hover .luxe-gallery__frame,
.luxe-gallery__item:focus-visible .luxe-gallery__frame { border-color: rgba(201,168,76,.75); inset: 14px; }
.luxe-gallery__item:hover .luxe-gallery__zoom,
.luxe-gallery__item:focus-visible .luxe-gallery__zoom { opacity: 1; transform: translateY(0); }
.luxe-gallery__item:focus-visible { outline: 2px solid #c9a84c; outline-offset: 3px; }

@media (max-width: 720px) {
  .luxe-gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 10px; }
  .luxe-gallery__grid > .luxe-gallery__item:nth-child(4n+1) { grid-row: span 1; }
  .luxe-gallery__grid > .luxe-gallery__item:nth-child(7n+3) { grid-row: span 1; }
  .luxe-gallery__grid > .luxe-gallery__item:nth-child(5n+1) { grid-row: span 2; }
}

/* Lightbox */
.luxe-lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: radial-gradient(ellipse at center, rgba(10,10,10,.92), rgba(0,0,0,.98));
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 4vh 6vw; opacity: 0;
  transition: opacity .35s ease;
}
.luxe-lightbox.is-open { display: flex; opacity: 1; }
.luxe-lightbox__stage {
  position: relative; margin: 0; max-width: min(1200px, 92vw); max-height: 86vh;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.luxe-lightbox__img {
  max-width: 100%; max-height: 78vh; display: block;
  border: 1px solid rgba(201,168,76,.35);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.8), 0 0 0 1px rgba(201,168,76,.1);
  opacity: 0; transform: scale(.985);
  transition: opacity .45s ease, transform .55s cubic-bezier(.22,.61,.36,1);
}
.luxe-lightbox__img.is-ready { opacity: 1; transform: scale(1); }
.luxe-lightbox__caption {
  color: #c9a84c; font-family: Cambria, Georgia, serif; letter-spacing: .18em;
  font-size: .82rem; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 14px;
}
.luxe-lightbox__caption span { color: #f7f4ee; }
.luxe-lightbox__count { display: inline-flex; align-items: center; }
.luxe-lightbox__play {
  appearance: none; background: transparent; border: 1px solid rgba(201,168,76,.5);
  color: #e8cf85; width: 34px; height: 34px; border-radius: 999px;
  display: inline-grid; place-items: center; cursor: pointer; padding: 0;
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
}
.luxe-lightbox__play svg { width: 14px; height: 14px; }
.luxe-lightbox__play .lb-icon-pause { display: none; }
.luxe-lightbox.is-playing .luxe-lightbox__play .lb-icon-play { display: none; }
.luxe-lightbox.is-playing .luxe-lightbox__play .lb-icon-pause { display: block; }
.luxe-lightbox__play:hover { background: linear-gradient(135deg,#e8cf85,#c9a84c 55%,#9c7f34); color: #0d0d0d; border-color: transparent; }
.luxe-lightbox__play:focus-visible { outline: 2px solid #e8cf85; outline-offset: 3px; }
.luxe-lightbox__progress {
  width: min(1200px, 92vw); max-width: 100%; height: 2px;
  background: rgba(201,168,76,.15); overflow: hidden; border-radius: 2px;
  opacity: 0; transition: opacity .3s ease;
}
.luxe-lightbox.is-playing .luxe-lightbox__progress { opacity: 1; }
.luxe-lightbox__progress-bar {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, #9c7f34, #e8cf85 50%, #c9a84c);
  transform: scaleX(0); transform-origin: left center;
  box-shadow: 0 0 8px rgba(201,168,76,.5);
}
.luxe-lightbox__close,
.luxe-lightbox__nav {
  position: absolute; background: transparent; border: 1px solid rgba(201,168,76,.5);
  color: #e8cf85; width: 46px; height: 46px; border-radius: 999px;
  display: grid; place-items: center; cursor: pointer;
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
}
.luxe-lightbox__close svg,
.luxe-lightbox__nav svg { width: 20px; height: 20px; }
.luxe-lightbox__close:hover,
.luxe-lightbox__nav:hover { background: linear-gradient(135deg,#e8cf85,#c9a84c 55%,#9c7f34); color: #0d0d0d; border-color: transparent; }
.luxe-lightbox__close { top: 22px; right: 22px; }
.luxe-lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.luxe-lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
.luxe-lightbox__nav--prev:hover { transform: translateY(-50%) translateX(-2px); }
.luxe-lightbox__nav--next:hover { transform: translateY(-50%) translateX(2px); }

@media (max-width: 720px) {
  .luxe-lightbox__close { top: 14px; right: 14px; width: 40px; height: 40px; }
  .luxe-lightbox__nav { width: 40px; height: 40px; }
  .luxe-lightbox__nav--prev { left: 10px; }
  .luxe-lightbox__nav--next { right: 10px; }
}

html.luxe-lb-open, body.luxe-lb-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .luxe-gallery__item, .luxe-gallery__item img,
  .luxe-gallery__frame, .luxe-gallery__zoom,
  .luxe-lightbox, .luxe-lightbox__img { transition: none !important; }
}

/* =========================================================
   HEADER v3 — World-class luxury chauffeur header
   Transparent over hero, solid noir on scroll.
   Single-line nav, compact language chip, premium CTA.
   ========================================================= */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 999;
  padding: 0 !important;
  background: transparent !important;
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: background .45s ease, border-color .45s ease, padding .35s ease, box-shadow .45s ease;
  display: block;
}
.site-header .header-inner{
  max-width: 1440px;
  margin: 0 auto;
  padding: 18px clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  transition: padding .35s ease;
}
.site-header.scrolled{
  background: rgba(13,13,13,.94) !important;
  border-bottom-color: rgba(201,168,76,.28);
  box-shadow: 0 12px 40px -22px rgba(0,0,0,.7);
}
.site-header.scrolled .header-inner{ padding-top: 12px; padding-bottom: 12px; }

/* Logo */
.site-header .logo{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-direction: row !important;
  text-align: left !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: inherit !important;
  font-weight: normal !important;
  color: #fff;
}
.site-header .logo::before{ display: none !important; content: none !important; }
.site-header .logo img{
  height: 40px !important;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
  transition: height .35s ease, filter .35s ease;
}
.site-header.scrolled .logo img{ height: 34px !important; }
.site-header .logo-text{ line-height: 1.1; }
.site-header .logo-text h2{
  font-family: Cambria, Georgia, "Times New Roman", serif;
  font-size: 15px !important;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff !important;
  margin: 0;
}
.site-header .logo-text p{
  font-size: 10px !important;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72) !important;
  margin: 3px 0 0 !important;
}
.site-header.scrolled .logo-text h2{ color: #fff !important; }
.site-header.scrolled .logo-text p{ color: rgba(255,255,255,.7) !important; }

/*primary-nav  — single horizontal line, editorial */
.site-header .primary-nav{ justify-self: center; }
.site-header .primary-nav ul{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header .primary-nav li{
    white-space: nowrap;
}
.site-header .primary-nav a{
  position: relative;
  display: inline-block;
  padding: 8px 2px;
  font-family: Cambria, Georgia, "Times New Roman", serif;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: .22em !important;
  text-transform: uppercase;
  color: rgba(255,255,255,.88) !important;
  white-space: nowrap;
  transition: color .3s ease;
}
.site-header .primary-nav a:hover,
.site-header .primary-nav a:focus-visible{ color: var(--gold) !important; }
.site-header .primary-nav a::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}
.site-header .primary-nav a:hover::after,
.site-header .primary-nav a:focus-visible::after{ transform: scaleX(1); transform-origin: left; }

/* Actions cluster */
.site-header .actions{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: auto !important;
  justify-content: flex-end !important;
  flex-wrap: nowrap !important;
  margin: 0 !important;
}

/* Compact language chip */
.site-header .lang-select{
  appearance: none;
  -webkit-appearance: none;
  padding: 8px 28px 8px 12px !important;
  font-family: Cambria, Georgia, "Times New Roman", serif;
  font-size: 11px !important;
  letter-spacing: .22em;
  text-transform: uppercase;
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.35) !important;
  border-radius: 999px !important;
  cursor: pointer;
  width: auto !important;
  max-width: none !important;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
                    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  transition: border-color .3s ease, color .3s ease, background-color .3s ease;
}
.site-header .lang-select:hover,
.site-header .lang-select:focus-visible{ border-color: var(--gold) !important; color: var(--gold) !important; }
.site-header .lang-select option{ color: #0d0d0d; background: #fff; }

/* Premium CTA */
.site-header .header-cta.book-btn.book-cta{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 10px 22px !important;
  font-family: Cambria, Georgia, "Times New Roman", serif;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: .28em !important;
  text-transform: uppercase;
  color: #0d0d0d !important;
  background: linear-gradient(135deg, #e6cf8a 0%, #c9a84c 50%, #a8862f 100%) !important;
  border: 1px solid rgba(201,168,76,.75) !important;
  border-radius: 999px !important;
  box-shadow: 0 10px 30px -14px rgba(201,168,76,.65) !important;
  width: auto !important;
  margin: 0 !important;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
}
.site-header .header-cta.book-btn.book-cta:hover,
.site-header .header-cta.book-btn.book-cta:focus-visible{
  transform: translateY(-1px);
  background: #0d0d0d !important;
  color: #e6cf8a !important;
  border-color: var(--gold) !important;
  box-shadow: 0 14px 36px -14px rgba(201,168,76,.85) !important;
}
.site-header .header-cta .book-cta-icon{ color: currentColor !important; }

/* Hamburger */
.site-header .nav-toggle{
  display: none;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.site-header .nav-toggle span{
  position: absolute;
  left: 50%; top: 50%;
  width: 16px; height: 1px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: transform .3s ease, opacity .3s ease, background .3s ease;
}
.site-header .nav-toggle span:nth-child(1){ transform: translate(-50%, calc(-50% - 5px)); }
.site-header .nav-toggle span:nth-child(3){ transform: translate(-50%, calc(-50% + 5px)); }
.site-header.nav-open .nav-toggle span:nth-child(1){ transform: translate(-50%, -50%) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2){ opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3){ transform: translate(-50%, -50%) rotate(-45deg); }

/* Responsive — tablet: hide nav, show hamburger */
@media (max-width: 1024px){
  .site-header .header-inner{ grid-template-columns: auto 1fr auto; }
  .site-header .primary-nav{
    position: fixed;
    top: 0; right: 0;
    height: 100vh; height: 100svh;
    width: min(360px, 82vw);
    background: rgba(13,13,13,.98);
    border-left: 1px solid rgba(201,168,76,.25);
    padding: 96px 36px 36px;
    transform: translateX(100%);
    transition: transform .4s ease;
    justify-self: end;
    z-index: 998;
    overflow-y: auto;
  }
  html[dir="rtl"] .site-header .primary-nav{
    right: auto; left: 0;
    border-left: 0; border-right: 1px solid rgba(201,168,76,.25);
    transform: translateX(-100%);
  }
  .site-header.nav-open .primary-nav{ transform: translateX(0); }
  .site-header .primary-nav ul{
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .site-header .primary-nav a{ font-size: 13px !important; }
  .site-header .nav-toggle{ display: inline-flex; align-items: center; justify-content: center; }
}

@media (max-width: 640px){
  .site-header .header-inner{ padding: 14px 20px; gap: 12px; }
  .site-header .logo img{ height: 34px !important; }
  .site-header .logo-text h2{ font-size: 13px !important; }
  .site-header .logo-text p{ font-size: 9px !important; letter-spacing: .28em; }
  .site-header .header-cta.book-btn.book-cta{
    padding: 8px 14px !important;
    font-size: 10px !important;
    letter-spacing: .2em !important;
  }
  .site-header .header-cta.book-btn.book-cta span{ display: none; }
  .site-header .lang-select{ padding: 6px 24px 6px 10px !important; font-size: 10px !important; }
}

@media (max-width: 380px){
  .site-header .logo-text p{ display: none; }
}

/* Neutralize legacy responsive that stacked header */
@media (max-width: 991px){
  header.site-header{ flex-direction: row; padding: 0 !important; }
  .site-header .logo{ flex-direction: row !important; text-align: left !important; }
  .site-header nav ul{ margin: 0 !important; }
}

/* Ensure hero sits directly below transparent header */
.hero{ scroll-margin-top: 0 !important; }

/* Hero sits directly under transparent header — no top gap */
.hero,
.hero-agadir,
.hero-marrakech,
.hero-essaouira,
.hero-merzouga,
.hero-laayoune{ margin-top: 0 !important; }

/* ============================================================
   LUXURY FOOTER — Noir & Gold
   ============================================================ */
.luxe-footer{
  --gold:#D4AF37;
  --gold-soft:#c9a84c;
  --gold-hi:#f0d78c;
  position:relative;
  margin-top:80px;
  background:
    radial-gradient(1200px 400px at 20% 0%, rgba(212,175,55,.08), transparent 60%),
    radial-gradient(1000px 500px at 90% 100%, rgba(212,175,55,.06), transparent 60%),
    linear-gradient(180deg,#0a0a0a 0%,#0d0d0d 60%,#080808 100%);
  color:#e8e6df;
  font-family:Cambria, Georgia, "Times New Roman", serif;
  border-top:1px solid rgba(212,175,55,.22);
}
.luxe-footer::before{
  content:"";
  position:absolute; inset:0 0 auto 0; height:1px;
  background:linear-gradient(90deg,transparent,rgba(212,175,55,.7),transparent);
}
.luxe-footer__inner{
  max-width:1240px;
  margin:0 auto;
  padding:72px 32px 28px;
}
.luxe-footer__grid{
  display:grid;
  grid-template-columns: 1.4fr .8fr 1.1fr .9fr;
  gap:56px;
}
.luxe-footer__col{ min-width:0; }
.luxe-footer__brand{ padding-right:12px; }
.luxe-footer__logo{
  display:inline-flex; align-items:center; gap:14px;
  text-decoration:none; color:inherit;
}
.luxe-footer__logo img{
  height:48px; width:auto; display:block;
  filter:drop-shadow(0 2px 12px rgba(212,175,55,.25));
}
.luxe-footer__wordmark{ display:flex; flex-direction:column; line-height:1.15; }
.luxe-footer__brandname{
  font-size:20px; letter-spacing:.04em; color:#fff;
  font-weight:600;
}
.luxe-footer__brandtag{
  font-size:11px; letter-spacing:.32em; text-transform:uppercase;
  color:var(--gold); margin-top:6px;
}
.luxe-footer__lede{
  margin:22px 0 20px;
  font-size:14.5px; line-height:1.75; color:#b8b5ad;
  max-width:38ch;
}
.luxe-footer__hallmarks{
  display:flex; align-items:center; gap:14px;
  font-size:11px; letter-spacing:.28em; text-transform:uppercase;
  color:#8a8578;
}
.luxe-footer__divider{
  width:24px; height:1px; background:rgba(212,175,55,.35);
}

.luxe-footer__title{
  font-family:Cambria, Georgia, serif;
  font-size:12px; letter-spacing:.36em; text-transform:uppercase;
  color:var(--gold);
  margin:0 0 22px;
  padding-bottom:14px;
  position:relative;
  font-weight:600;
}
.luxe-footer__title::after{
  content:""; position:absolute; left:0; bottom:0;
  width:32px; height:1px;
  background:linear-gradient(90deg,var(--gold),transparent);
}

.luxe-footer__links{ list-style:none; padding:0; margin:0; display:grid; gap:12px; }
.luxe-footer__links a{
  position:relative;
  color:#cfccc4; text-decoration:none;
  font-size:14.5px; letter-spacing:.04em;
  padding-left:0;
  transition:color .3s ease, padding-left .3s ease;
}
.luxe-footer__links a::before{
  content:""; position:absolute; left:0; top:50%;
  width:0; height:1px; background:var(--gold);
  transform:translateY(-50%);
  transition:width .3s ease;
}
.luxe-footer__links a:hover{ color:#fff; padding-left:22px; }
.luxe-footer__links a:hover::before{ width:14px; }

.luxe-footer__contacts{ list-style:none; padding:0; margin:0; display:grid; gap:16px; }
.luxe-footer__contacts a{
  display:flex; align-items:center; gap:14px;
  color:#cfccc4; text-decoration:none;
  transition:transform .3s ease, color .3s ease;
}
.luxe-footer__contacts a:hover{ color:#fff; transform:translateX(3px); }
.luxe-footer__icon{
  width:38px; height:38px; flex:0 0 38px;
  display:grid; place-items:center;
  border:1px solid rgba(212,175,55,.35);
  border-radius:50%;
  color:var(--gold);
  background:linear-gradient(145deg, rgba(212,175,55,.08), rgba(0,0,0,0));
  transition:background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.luxe-footer__icon svg{ width:16px; height:16px; }
.luxe-footer__contacts a:hover .luxe-footer__icon{
  background:linear-gradient(145deg, rgba(212,175,55,.22), rgba(212,175,55,.05));
  border-color:var(--gold);
  box-shadow:0 0 0 4px rgba(212,175,55,.08);
}
.luxe-footer__contact-text{ display:flex; flex-direction:column; min-width:0; }
.luxe-footer__contact-label{
  font-size:10.5px; letter-spacing:.3em; text-transform:uppercase;
  color:#8a8578;
}
.luxe-footer__contact-value{
  font-size:14.5px; color:#e8e6df; margin-top:2px;
  overflow:hidden; text-overflow:ellipsis;
}

.luxe-footer__follow-lede{
  font-size:14px; line-height:1.7; color:#b8b5ad; margin:0 0 20px;
}
.luxe-footer__social{ display:flex; flex-wrap:wrap; gap:12px; margin-bottom:24px; }
.luxe-footer__social .gold-btn{
  min-width:140px;
  text-align:center;
  justify-content:center;
}
.luxe-footer__cta{
  display:inline-flex; align-items:center; justify-content:center;
  margin-top:4px;
}

.luxe-footer__bar{
  margin-top:56px;
  padding-top:24px;
  border-top:1px solid rgba(212,175,55,.18);
  display:flex; justify-content:space-between; align-items:center;
  gap:16px; flex-wrap:wrap;
  font-size:12px; letter-spacing:.16em; text-transform:uppercase;
  color:#8a8578;
}
.luxe-footer__copy{ margin:0; }
.luxe-footer__crafted{ margin:0; color:#6f6a5e; }

/* RTL */
[dir="rtl"] .luxe-footer__links a:hover{ padding-left:0; padding-right:22px; }
[dir="rtl"] .luxe-footer__links a::before{ left:auto; right:0; background:linear-gradient(-90deg,var(--gold),transparent); }
[dir="rtl"] .luxe-footer__contacts a:hover{ transform:translateX(-3px); }
[dir="rtl"] .luxe-footer__title::after{ left:auto; right:0; background:linear-gradient(-90deg,var(--gold),transparent); }

/* Responsive */
@media (max-width: 1024px){
  .luxe-footer__grid{ grid-template-columns:1fr 1fr; gap:48px; }
  .luxe-footer__brand{ grid-column:1 / -1; }
}
@media (max-width: 640px){
  .luxe-footer__inner{ padding:56px 22px 24px; }
  .luxe-footer__grid{ grid-template-columns:1fr; gap:40px; }
  .luxe-footer__bar{ justify-content:center; text-align:center; }
  .luxe-footer__lede{ max-width:none; }
}
@media (prefers-reduced-motion: reduce){
  .luxe-footer *{ transition:none !important; }
}

/* Touch device consistency for social buttons — prevent sticky :hover after tap */
.luxe-footer__social .gold-btn{
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  touch-action: manipulation;
  user-select: none;
}
@media (hover: none){
  .luxe-footer__social .gold-btn:hover,
  .luxe-footer__social .gold-btn:focus:not(:focus-visible){
    background: var(--luxe-grad-gold) !important;
    color: var(--luxe-noir) !important;
    border-color: rgba(143,117,38,.55) !important;
    transform: none !important;
  }
  .luxe-footer__social .gold-btn:hover::before,
  .luxe-footer__social .gold-btn:focus:not(:focus-visible)::before{
    transform: translateX(-120%) !important;
  }
  .luxe-footer__social .gold-btn:active{
    background: var(--luxe-noir) !important;
    color: var(--luxe-gold-hi) !important;
    border-color: var(--luxe-gold) !important;
    transform: translateY(0) scale(.98) !important;
    transition: transform .15s ease, background .15s ease, color .15s ease !important;
  }
}

/* ============================================================
   LUXE REVIEWS — premium testimonial cards (Noir & Gold)
   ============================================================ */
.luxe-reviews{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
  max-width:1200px;
  margin:0 auto;
  padding:8px 4px 12px;
}
.luxe-review{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:18px;
  padding:34px 30px 28px;
  background:linear-gradient(180deg, rgba(20,20,20,.85) 0%, rgba(13,13,13,.92) 100%);
  border:1px solid rgba(201,168,76,.22);
  border-radius:2px;
  color:#efe9dc;
  box-shadow:0 24px 60px -30px rgba(0,0,0,.75), inset 0 1px 0 rgba(255,255,255,.03);
  overflow:hidden;
  transition:transform .5s cubic-bezier(.2,.7,.2,1), border-color .5s ease, box-shadow .5s ease;
}
.luxe-review::before{
  content:"\201C";
  position:absolute;
  top:-18px;
  right:20px;
  font-family:Cambria, Georgia, "Times New Roman", serif;
  font-size:130px;
  line-height:1;
  color:rgba(201,168,76,.14);
  pointer-events:none;
}
.luxe-review::after{
  content:"";
  position:absolute;
  inset:0;
  border-top:1px solid transparent;
  background:linear-gradient(90deg, transparent, rgba(201,168,76,.55), transparent) top/100% 1px no-repeat;
  pointer-events:none;
  opacity:.6;
}
.luxe-review:hover{
  transform:translateY(-4px);
  border-color:rgba(201,168,76,.5);
  box-shadow:0 30px 70px -28px rgba(0,0,0,.85), 0 0 0 1px rgba(201,168,76,.15);
}
.luxe-review__stars{
  color:#c9a84c;
  letter-spacing:.35em;
  font-size:15px;
}
.luxe-review__quote{
  margin:0;
  font-family:Cambria, Georgia, "Times New Roman", serif;
  font-size:16.5px;
  line-height:1.75;
  color:#e8e2d3;
  font-style:italic;
  letter-spacing:.01em;
  flex:1;
}
.luxe-review__author{
  display:flex;
  align-items:center;
  gap:14px;
  padding-top:18px;
  border-top:1px solid rgba(201,168,76,.18);
}
.luxe-review__avatar{
  width:52px;
  height:52px;
  border-radius:50%;
  object-fit:cover;
  border:1px solid rgba(201,168,76,.55);
  box-shadow:0 0 0 3px rgba(13,13,13,.9), 0 0 0 4px rgba(201,168,76,.25);
  flex-shrink:0;
}
.luxe-review__meta{
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width:0;
}
.luxe-review__name{
  font-family:Cambria, Georgia, serif;
  font-size:15px;
  color:#f2ecdc;
  letter-spacing:.04em;
}
.luxe-review__country{
  font-size:11.5px;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:#c9a84c;
}
@media (max-width: 960px){
  .luxe-reviews{ grid-template-columns:repeat(2, 1fr); gap:20px; }
}
@media (max-width: 640px){
  .luxe-reviews{ grid-template-columns:1fr; gap:18px; padding:4px; }
  .luxe-review{ padding:28px 22px 24px; }
  .luxe-review__quote{ font-size:15.5px; }
}

/* ============ 2026 UPDATE — reviews, badges, minimal footer, sticky WhatsApp ============ */

/* Reviews: flag instead of avatar photo */
.luxe-review__flag{
  font-size:1.6rem;
  line-height:1;
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  border:1px solid rgba(201,168,76,.45);
  background:rgba(201,168,76,.07);
  flex:0 0 auto;
}

/* Leave a review form */
.review-form-wrap{
  max-width:820px;
  margin:60px auto 0;
  padding:34px clamp(20px,4vw,42px);
  background:#fff;
  border:1px solid rgba(201,168,76,.28);
  border-radius:16px;
  box-shadow:0 18px 50px rgba(0,0,0,.07);
}
.review-form__title{
  font-size:clamp(1.3rem,2.4vw,1.7rem);
  letter-spacing:.06em;
  text-align:center;
  margin:0 0 8px;
}
.review-form__lede{
  text-align:center;
  color:#6b6b6b;
  margin:0 0 26px;
  font-size:.95rem;
}
.review-form__grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:16px;
}
.review-form .booking-field{display:flex;flex-direction:column;gap:6px;margin-bottom:16px;}
.review-form .booking-field span{
  font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;color:#5c5c5c;
}
.review-form input,
.review-form textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid rgba(0,0,0,.14);
  border-radius:10px;
  background:#fdfcfa;
  font-family:inherit;
  font-size:.95rem;
  color:#1a1a1a;
}
.review-form input:focus,
.review-form textarea:focus{
  outline:none;
  border-color:var(--gold,#c9a84c);
  box-shadow:0 0 0 3px rgba(201,168,76,.16);
}
.review-rating{border:0;padding:0;margin:6px 0 16px;}
.review-rating legend{
  font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;color:#5c5c5c;margin-bottom:6px;
}
.review-rating__stars{display:flex;gap:6px;}
.review-rating__star{
  background:none;border:0;cursor:pointer;padding:0;
  font-size:1.9rem;line-height:1;color:rgba(0,0,0,.18);
  transition:color .2s ease,transform .2s ease;
}
.review-rating__star.is-on{color:var(--gold,#c9a84c);}
.review-rating__star:hover{transform:scale(1.08);}
.review-form__foot{
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:14px;margin-top:6px;
}
.review-form__note{font-size:.8rem;color:#5c5c5c;margin:0;max-width:420px;}
.review-form__status{margin:14px 0 0;font-size:.9rem;color:var(--gold,#c9a84c);min-height:1.2em;}

/* Trust badges */
.trust-badges{
  display:flex;flex-wrap:wrap;justify-content:center;gap:14px;margin:38px auto 0;max-width:1000px;padding:0 16px;
}
.trust-badge{
  display:inline-block;
  padding:10px 18px;
  border:1px solid rgba(201,168,76,.45);
  border-radius:999px;
  background:rgba(201,168,76,.07);
  color:#4a3f22;
  font-size:.82rem;
  letter-spacing:.04em;
  text-align:center;
}
.trust-badge--inline{
  display:block;border-radius:12px;margin-top:14px;font-size:.8rem;
}
.pay-note{font-size:.76rem;color:#5c5c5c;margin:12px 0 0;line-height:1.5;}

/* Minimal footer */
.luxe-footer--minimal .luxe-footer__inner{
  display:flex;flex-direction:column;align-items:center;gap:26px;text-align:center;padding:56px 20px 40px;
}
.luxe-footer--minimal .luxe-footer__logo{justify-content:center;}
.luxe-footer--minimal .luxe-footer__contacts--row{
  display:flex;flex-wrap:wrap;justify-content:center;gap:18px 40px;list-style:none;margin:0;padding:0;
}
.luxe-footer--minimal .luxe-footer__contacts--row li{margin:0;}
.luxe-footer--minimal .luxe-footer__bar{
  width:100%;border-top:1px solid rgba(201,168,76,.2);padding-top:22px;justify-content:center;
}
.luxe-footer--minimal .luxe-footer__copy{margin:0;}

/* Sticky WhatsApp */
.floating-whatsapp{color:#fff;}
.floating-whatsapp svg{width:32px;height:32px;position:relative;z-index:2;}
.floating-whatsapp__pulse{
  position:absolute;inset:0;border-radius:50%;
  box-shadow:0 0 0 0 rgba(37,211,102,.55);
  animation:waPulse 2.4s ease-out infinite;
}
@keyframes waPulse{
  70%{box-shadow:0 0 0 16px rgba(37,211,102,0);}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}
@media (prefers-reduced-motion: reduce){ .floating-whatsapp__pulse{animation:none;} }
@media (max-width:600px){
  .floating-whatsapp{bottom:16px;right:16px;width:56px;height:56px;}
}
.luxe-review__flag{
  font-size:.78rem;
  letter-spacing:.08em;
  font-weight:600;
  color:var(--gold,#c9a84c);
}

/* ============================================================
   LANDING v4 — Cinematic intro curtain + full-screen luxury hero
   ============================================================ */

/* ---------- Intro curtain (auto-dismiss, never blocks entry) ---------- */
#welcome-screen.intro-curtain{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(ellipse at center, #131313 0%, #000 78%) !important;
  transition: opacity .85s cubic-bezier(.22,1,.36,1), visibility .85s;
  pointer-events: none;
}
#welcome-screen.intro-curtain.is-hidden{
  opacity: 0;
  visibility: hidden;
}
#welcome-screen.intro-curtain .welcome-content{
  padding: 24px;
  max-width: 760px;
  animation: introRise 1.1s cubic-bezier(.22,1,.36,1) both;
}
.intro-curtain__logo{
  width: 74px;
  height: auto;
  margin: 0 auto 22px;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.6));
}
#welcome-screen.intro-curtain h1{
  font-size: clamp(1.3rem, 4vw, 2.2rem) !important;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 14px;
  color: var(--luxe-gold, #c9a84c) !important;
  text-shadow: none;
}
#welcome-screen.intro-curtain p{
  font-size: clamp(.72rem, 2vw, .88rem);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  margin: 0 0 26px;
}
.intro-curtain__line{
  display: block;
  width: 0;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
  animation: introLine 1.6s cubic-bezier(.22,1,.36,1) forwards;
}
.intro-curtain__skip{
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
@keyframes introRise{
  from{ opacity: 0; transform: translateY(18px); }
  to{ opacity: 1; transform: none; }
}
@keyframes introLine{
  from{ width: 0; opacity: 0; }
  to{ width: 220px; opacity: 1; }
}

/* ---------- Hero v2 ---------- */
.hero--v2{
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 20px 110px;
}
.hero--v2 .hero-content{
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
  padding-inline: clamp(4px, 3vw, 24px);
}
.hero-eyebrow{
  display: block;
  font-size: clamp(.62rem, 1.6vw, .74rem);
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--luxe-gold, #c9a84c);
  margin-bottom: clamp(16px, 3vw, 24px);
  animation: heroFade 1s .15s cubic-bezier(.22,1,.36,1) both;
}
.hero--v2 h1{
  font-size: clamp(2.1rem, 6.2vw, 4.4rem) !important;
  line-height: 1.08;
  letter-spacing: .005em;
  margin: 0 auto clamp(16px, 2.6vw, 24px);
  max-width: 15ch;
  text-shadow: 0 10px 40px rgba(0,0,0,.65);
  animation: heroRise 1.1s .3s cubic-bezier(.22,1,.36,1) both;
}
.hero--v2 > .hero-content > p{
  font-size: clamp(.95rem, 2.2vw, 1.2rem) !important;
  line-height: 1.7;
  color: rgba(255,255,255,.86);
  max-width: 46ch;
  margin: 0 auto clamp(28px, 4vw, 42px);
  text-shadow: 0 4px 18px rgba(0,0,0,.6);
  animation: heroRise 1.1s .45s cubic-bezier(.22,1,.36,1) both;
}
.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  animation: heroRise 1.1s .6s cubic-bezier(.22,1,.36,1) both;
}
.hero--v2 .book-cta--hero{
  position: relative;
  font-size: clamp(.86rem, 1.9vw, .98rem);
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 18px 42px;
  box-shadow: 0 18px 44px -14px rgba(201,168,76,.75);
}
.hero--v2 .book-cta--hero::after{
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid rgba(201,168,76,.5);
  opacity: 0;
  animation: heroPulse 2.8s 1.4s ease-out infinite;
  pointer-events: none;
}
.hero--v2 .book-cta--hero:hover{
  transform: translateY(-3px);
  box-shadow: 0 24px 56px -14px rgba(201,168,76,.9);
}
.hero-ghost-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 34px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-size: clamp(.82rem, 1.8vw, .94rem);
  letter-spacing: .16em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,.05);
  transition: border-color .35s ease, background .35s ease, transform .35s ease, color .35s ease;
}
.hero-ghost-btn:hover,
.hero-ghost-btn:focus-visible{
  border-color: var(--luxe-gold, #c9a84c);
  color: var(--luxe-gold, #c9a84c);
  background: rgba(201,168,76,.1);
  transform: translateY(-3px);
}
.hero-assurance{
  margin: clamp(22px, 3.4vw, 32px) auto 0;
  max-width: 44ch;
  font-size: clamp(.7rem, 1.7vw, .8rem) !important;
  letter-spacing: .08em;
  color: rgba(255,255,255,.66) !important;
  animation: heroFade 1.2s .85s ease both;
}
.hero-scroll-cue{
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 26px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 20px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
  animation: heroFade 1.2s 1.1s ease both;
}
.hero-scroll-cue__line{
  width: 2px;
  height: 8px;
  border-radius: 2px;
  background: var(--luxe-gold, #c9a84c);
  animation: cueDrop 1.9s ease-in-out infinite;
}
.hero-scroll-cue:hover{ border-color: var(--luxe-gold, #c9a84c); }

@keyframes heroRise{
  from{ opacity: 0; transform: translateY(26px); }
  to{ opacity: 1; transform: none; }
}
@keyframes heroFade{
  from{ opacity: 0; }
  to{ opacity: 1; }
}
@keyframes heroPulse{
  0%{ opacity: .8; transform: scale(1); }
  70%{ opacity: 0; transform: scale(1.14); }
  100%{ opacity: 0; transform: scale(1.14); }
}
@keyframes cueDrop{
  0%{ transform: translateY(0); opacity: 0; }
  35%{ opacity: 1; }
  100%{ transform: translateY(20px); opacity: 0; }
}

@media (max-width: 768px){
  .hero--v2{ padding: 104px 18px 92px; min-height: 92svh; }
  .hero-actions{ flex-direction: column; width: 100%; }
  .hero-actions > a{ width: 100%; max-width: 340px; }
  .hero-scroll-cue{ display: none; }
  .intro-curtain__logo{ width: 60px; }
}

@media (prefers-reduced-motion: reduce){
  .hero-eyebrow,
  .hero--v2 h1,
  .hero--v2 > .hero-content > p,
  .hero-actions,
  .hero-assurance,
  .hero-scroll-cue,
  .intro-curtain .welcome-content,
  .intro-curtain__line{
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    width: auto;
  }
  .hero--v2 .book-cta--hero::after{ animation: none; opacity: 0; }
  .hero-scroll-cue__line{ animation: none; }
}

/* Hero v2 — typographic corrections (readability over letter-spacing) */
.hero--v2 > .hero-content > p{
  letter-spacing: .02em !important;
  text-transform: none !important;
  font-weight: 400 !important;
}
.hero--v2 .hero-assurance{
  letter-spacing: .06em !important;
  text-transform: none !important;
  max-width: 52ch;
}
.hero--v2 .hero-content::before{
  margin-bottom: clamp(18px, 3vw, 28px);
}

/* ============================================================
   v5 — UNIFIED CONTACT BUTTONS, FOOTER SOCIAL, GRID POLISH
   ============================================================ */

/* Unified contact action buttons (above the map) */
.contact-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
  margin:28px 0 6px;
}
.contact-actions .contact-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-width:190px;
  height:52px;
  padding:0 26px;
  border-radius:var(--radius-pill, 999px);
  background:linear-gradient(135deg,#c9a84c,#e3c877 50%,#c9a84c);
  color:#0d0d0d;
  font-family:Cambria, Georgia, "Times New Roman", serif;
  font-size:.95rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  text-decoration:none;
  border:1px solid rgba(201,168,76,.55);
  box-shadow:0 14px 30px -18px rgba(0,0,0,.55);
  transition:transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease, filter .35s ease;
}
.contact-actions .contact-btn svg{ width:18px; height:18px; flex:0 0 auto; }
.contact-actions .contact-btn:hover,
.contact-actions .contact-btn:focus-visible{
  transform:translateY(-3px);
  filter:brightness(1.06);
  box-shadow:0 18px 36px -18px rgba(0,0,0,.6);
}
@media (hover:none){
  .contact-actions .contact-btn:hover{ transform:none; filter:none; }
  .contact-actions .contact-btn:active{ transform:scale(.97); }
}
@media (max-width:520px){
  .contact-actions{ flex-direction:column; align-items:stretch; }
  .contact-actions .contact-btn{ width:100%; min-width:0; }
}

/* Footer social links */
.luxe-footer__social{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
  margin:26px 0 6px;
}
.luxe-footer__social a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:11px 24px;
  border-radius:999px;
  border:1px solid rgba(201,168,76,.42);
  background:rgba(201,168,76,.06);
  color:#e3c877;
  text-decoration:none;
  font-family:Cambria, Georgia, "Times New Roman", serif;
  font-size:.82rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  transition:background .35s ease, color .35s ease, transform .35s ease;
}
.luxe-footer__social a svg{ width:17px; height:17px; }
.luxe-footer__social a:hover,
.luxe-footer__social a:focus-visible{
  background:linear-gradient(135deg,#c9a84c,#e3c877);
  color:#0d0d0d;
  transform:translateY(-2px);
}
@media (hover:none){
  .luxe-footer__social a:hover{ transform:none; }
  .luxe-footer__social a:active{ transform:scale(.97); }
}

/* Destination cards — equal height, aligned media & CTA */
#destinations .cards{
  max-width:1320px;
  margin-inline:auto;
  align-items:stretch;
}
#destinations .card{
  display:flex;
  flex-direction:column;
  padding:0 0 28px;
  overflow:hidden;
  height:100%;
}
#destinations .card img{
  width:100%;
  aspect-ratio:4 / 3;
  object-fit:cover;
  display:block;
  margin:0 0 20px;
  border-radius:0;
}
#destinations .card h3,
#destinations .card p{ padding-inline:26px; }
#destinations .card p{ flex:1 1 auto; margin-bottom:22px; }
#destinations .card .gold-btn{ align-self:center; }

/* Gallery — clean, uniform, professional grid */
.luxe-gallery__grid{
  grid-template-columns:repeat(4, minmax(0, 1fr));
  grid-auto-rows:auto;
  gap:16px;
}
.luxe-gallery__grid > .luxe-gallery__item:nth-child(4n+1),
.luxe-gallery__grid > .luxe-gallery__item:nth-child(7n+3),
.luxe-gallery__grid > .luxe-gallery__item:nth-child(5n+1){ grid-row:auto; }
.luxe-gallery__item{ aspect-ratio:4 / 3; border-radius:4px; }
.luxe-gallery__item img{ width:100%; height:100%; object-fit:cover; display:block; }
@media (max-width:1100px){
  .luxe-gallery__grid{ grid-template-columns:repeat(3, minmax(0,1fr)); }
}
@media (max-width:820px){
  .luxe-gallery__grid{ grid-template-columns:repeat(2, minmax(0,1fr)); gap:12px; grid-auto-rows:auto; }
}
@media (max-width:460px){
  .luxe-gallery__grid{ grid-template-columns:repeat(2, minmax(0,1fr)); gap:10px; }
}

/* =========================================================
   PREMIUM POLISH v5 — glass nav, equal cards, loader,
   progress bar, back-to-top, refined RTL
   ========================================================= */

/* --- Glassmorphism sticky navigation --- */
.site-header{
  background: rgba(13,13,13,.28) !important;
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,.10);
  transition: background .45s cubic-bezier(.22,.61,.36,1), backdrop-filter .45s ease,
              border-color .45s ease, padding .35s ease, box-shadow .45s ease;
}
.site-header.scrolled{
  background: rgba(13,13,13,.72) !important;
  backdrop-filter: blur(22px) saturate(160%);
  border-bottom-color: rgba(201,168,76,.30);
  box-shadow: 0 16px 44px -26px rgba(0,0,0,.85);
}
.site-header .primary-nav a{
  transition: color .3s ease, opacity .3s ease;
}
.site-header .primary-nav a::after{
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
}
.site-header .primary-nav a.is-active{
  color: var(--gold) !important;
}
.site-header .primary-nav a.is-active::after{
  transform: scaleX(1);
  transform-origin: left;
}
html[dir="rtl"] .site-header .primary-nav a.is-active::after{ transform-origin: right; }

/* --- Equal-height cards with gold hairline + hover lift --- */
.cards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
  align-items: stretch;
}
.cards > .card{
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(201,168,76,.30);
  border-radius: 14px;
  box-shadow: 0 18px 40px -34px rgba(0,0,0,.55);
  transition: transform .5s cubic-bezier(.22,.61,.36,1), box-shadow .5s ease, border-color .5s ease;
}
.cards > .card > p:last-child{ margin-top: auto; }
.cards > .card:hover,
.cards > .card:focus-within{
  transform: translateY(-8px);
  border-color: rgba(201,168,76,.7);
  box-shadow: 0 28px 60px -30px rgba(0,0,0,.55), 0 0 0 1px rgba(201,168,76,.25);
}
.cards > .card img{ transition: transform .8s cubic-bezier(.22,.61,.36,1); }
.cards > .card:hover img{ transform: scale(1.05); }

.fleet-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(18px, 2.4vw, 32px);
  align-items: stretch;
}
.fleet-container > .car-card{
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(201,168,76,.30);
  border-radius: 14px;
  box-shadow: 0 18px 40px -34px rgba(0,0,0,.55);
  transition: transform .5s cubic-bezier(.22,.61,.36,1), box-shadow .5s ease, border-color .5s ease;
}
.fleet-container > .car-card ul{ flex: 1 1 auto; }
.fleet-container > .car-card:hover{
  transform: translateY(-8px);
  border-color: rgba(201,168,76,.7);
  box-shadow: 0 28px 60px -30px rgba(0,0,0,.55), 0 0 0 1px rgba(201,168,76,.25);
}

/* --- Floating WhatsApp: smaller, lifted, softer --- */
.floating-whatsapp{
  width: 52px;
  height: 52px;
  right: clamp(16px, 3vw, 26px);
  bottom: clamp(84px, 12vh, 108px);
  box-shadow: 0 12px 28px -10px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.14) inset;
  transition: transform .4s cubic-bezier(.22,.61,.36,1), box-shadow .4s ease;
}
.floating-whatsapp:hover,
.floating-whatsapp:focus-visible{
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 20px 38px -14px rgba(37,211,102,.55);
}
.floating-whatsapp svg,
.floating-whatsapp img{ width: 26px; height: 26px; }
@media (max-width: 640px){
  .floating-whatsapp{ width: 48px; height: 48px; bottom: 92px; }
  body{ padding-bottom: 0; }
}

/* --- Back to top --- */
.lux-top{
  position: fixed;
  right: clamp(16px, 3vw, 26px);
  bottom: clamp(20px, 4vh, 32px);
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.45);
  background: rgba(13,13,13,.82);
  backdrop-filter: blur(10px);
  color: var(--gold, #c9a84c);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .45s ease, transform .45s cubic-bezier(.22,.61,.36,1), visibility .45s, box-shadow .4s ease, background .4s ease;
  z-index: 1000;
  box-shadow: 0 12px 30px -16px rgba(0,0,0,.8);
}
.lux-top.is-visible{ opacity: 1; visibility: visible; transform: translateY(0); }
.lux-top:hover{ background: rgba(201,168,76,.16); box-shadow: 0 18px 36px -16px rgba(201,168,76,.6); transform: translateY(-3px); }
.lux-top svg{ width: 19px; height: 19px; }

/* --- Reading progress --- */
.lux-progress{
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 1200;
  background: transparent;
  pointer-events: none;
}
.lux-progress span{
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, rgba(201,168,76,.35), #d4af37, #f0dfa3);
  box-shadow: 0 0 12px rgba(212,175,55,.6);
  transition: width .12s linear;
}
html[dir="rtl"] .lux-progress span{ margin-left: auto; }

/* --- Premium loading screen --- */
.lux-loader{
  position: fixed; inset: 0; z-index: 2000;
  display: grid; place-items: center;
  background: radial-gradient(120% 120% at 50% 30%, #171717 0%, #0d0d0d 65%);
  transition: opacity .7s ease, visibility .7s ease;
}
.lux-loader.is-done{ opacity: 0; visibility: hidden; }
.lux-loader__inner{ display: grid; justify-items: center; gap: 14px; text-align: center; padding: 24px; }
.lux-loader__logo{
  width: 74px; height: auto;
  animation: luxLoaderFade .9s cubic-bezier(.22,.61,.36,1) both;
}
.lux-loader__name{
  font-family: Cambria, Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 3vw, 1.4rem);
  color: #fff;
  letter-spacing: .16em;
  text-transform: uppercase;
  animation: luxLoaderFade 1s .12s cubic-bezier(.22,.61,.36,1) both;
}
.lux-loader__tag{
  font-size: .68rem; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(212,175,55,.85);
  animation: luxLoaderFade 1s .22s cubic-bezier(.22,.61,.36,1) both;
}
.lux-loader__bar{
  margin-top: 10px; width: 148px; height: 1px; overflow: hidden;
  background: rgba(255,255,255,.12); display: block;
}
.lux-loader__bar i{
  display: block; height: 100%; width: 40%;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  animation: luxLoaderSweep 1.15s ease-in-out infinite;
}
@keyframes luxLoaderFade{ from{ opacity:0; transform: translateY(10px);} to{ opacity:1; transform:none;} }
@keyframes luxLoaderSweep{ 0%{ transform: translateX(-120%);} 100%{ transform: translateX(320%);} }

/* --- Arabic / RTL refinements --- */
html[dir="rtl"] body{
  font-family: "Segoe UI", Tahoma, "Noto Naskh Arabic", "Times New Roman", serif;
}
html[dir="rtl"]{ text-align: right; }
html[dir="rtl"] .section-heading,
html[dir="rtl"] .luxe-eyebrow,
html[dir="rtl"] .hero-content,
html[dir="rtl"] .card,
html[dir="rtl"] .car-card,
html[dir="rtl"] .luxe-why__card,
html[dir="rtl"] .review-card,
html[dir="rtl"] .luxe-faq__item{
  text-align: right;
}
html[dir="rtl"] .section-heading{ text-align: center; }
html[dir="rtl"] .hero--v2,
html[dir="rtl"] .hero-content{ direction: rtl; }
html[dir="rtl"] ul{ padding-right: 1.1rem; padding-left: 0; }
html[dir="rtl"] .car-card ul li,
html[dir="rtl"] .luxe-journey__step,
html[dir="rtl"] .trust-badge{ letter-spacing: 0; }
html[dir="rtl"] [data-lang]{ letter-spacing: 0 !important; word-spacing: .04em; }
html[dir="rtl"] .site-header .primary-nav ul{ direction: rtl; }
html[dir="rtl"] .lux-top{ right: auto; left: clamp(16px, 3vw, 26px); }
html[dir="rtl"] .floating-whatsapp{ right: auto; left: clamp(16px, 3vw, 26px); }
html[dir="rtl"] .lux-loader__inner{ direction: rtl; }
html[dir="rtl"] input, html[dir="rtl"] textarea, html[dir="rtl"] select{ text-align: right; }

/* --- Global smoothness --- */
html{ scroll-behavior: smooth; }
a, button, .card, .car-card, .gold-btn{ transition-timing-function: cubic-bezier(.22,.61,.36,1); }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .lux-loader__bar i{ animation: none; }
  *{ transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* =========================================================
   AUDIT PASS — v6 : responsiveness, a11y, cross-browser
   ========================================================= */

/* --- 1. Kill horizontal scroll everywhere --- */
html, body{
  max-width: 100%;
  overflow-x: clip;            /* modern browsers */
}
@supports not (overflow: clip){
  html, body{ overflow-x: hidden; }
}
*, *::before, *::after{ min-width: 0; }
img, video, iframe, svg, canvas{ max-width: 100%; height: auto; }
iframe{ border: 0; display: block; }
pre, code, table{ max-width: 100%; overflow-x: auto; }

/* Long words / URLs must never blow out a card */
p, li, h1, h2, h3, h4, h5, h6, a, span, td, th, label, input, textarea, select{
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Safe-area padding for notched devices */
body{
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* --- 2. Fluid section rhythm (consistent vertical spacing) --- */
section{
  padding-block: clamp(3rem, 7vw, 6.5rem);
  scroll-margin-top: 88px;              /* sticky-header offset for anchors */
}
[id]{ scroll-margin-top: 88px; }

/* --- 3. Accessible focus states (never invisible) --- */
:focus:not(:focus-visible){ outline: none; }
a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible{
  outline: 2px solid #D4AF37;
  outline-offset: 3px;
  border-radius: 6px;
}

/* Skip link */
.skip-link{
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
  background: #0d0d0d;
  color: #D4AF37;
  border: 1px solid #D4AF37;
  padding: .75rem 1.25rem;
  border-radius: 0 0 10px 0;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.skip-link:focus{ left: 0; }

/* Screen-reader-only helper */
.visually-hidden{
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* --- 4. Touch targets (WCAG 2.5.5) --- */
@media (pointer: coarse){
  a.book-btn, .book-cta, .gold-btn, .contact-actions a,
  button, .lang-select, .footer-social a, .nav-toggle{
    min-height: 44px;
  }
  .primary-nav a{
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* Remove sticky hover artefacts on touch devices */
@media (hover: none){
  a:hover, button:hover, .card:hover, .service-card:hover,
  .destination-card:hover, .fleet-card:hover{
    transform: none !important;
  }
}

/* --- 5. Images: stable aspect ratios, no layout shift (CLS) --- */
.destination-card img,
.service-card img,
.fleet-card img{
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}
.gallery-grid img,
.luxe-gallery img{
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

/* --- 6. Cross-browser smoothing --- */
html{
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
/* Safari: momentum scroll inside overflow panels */
.primary-nav, .lightbox, .modal{ -webkit-overflow-scrolling: touch; }
/* Safari/iOS: normalise form controls */
input, select, textarea, button{
  font: inherit;
  color: inherit;
  border-radius: 8px;
  -webkit-appearance: none;
  appearance: none;
}
select{ background-image: none; }
input[type="date"]{ min-height: 44px; }

/* Firefox: consistent select text colour on dark backgrounds */
@-moz-document url-prefix(){
  select option{ background: #0d0d0d; color: #f5f0e6; }
}

/* --- 7. Contrast hardening (WCAG AA) --- */
.muted, .subtle, .note, small{ color: #cfc7b6; }
.gold-btn, .book-btn, .book-cta{ color: #0d0d0d; }

/* --- 8. Performance-friendly motion --- */
.reveal, .fade-in, .card, .service-card, .destination-card, .fleet-card{
  will-change: auto;
}
@media (prefers-reduced-motion: no-preference){
  .reveal{ transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
}

/* --- 9. Floating WhatsApp: never overlap content or the back-to-top button --- */
.floating-whatsapp{
  bottom: calc(22px + env(safe-area-inset-bottom)) !important;
  z-index: 900;
}
.lux-top{
  bottom: calc(94px + env(safe-area-inset-bottom)) !important;
  z-index: 901;
}
@media (max-width: 600px){
  .floating-whatsapp{
    bottom: calc(18px + env(safe-area-inset-bottom)) !important;
  }
  .lux-top{
    bottom: calc(84px + env(safe-area-inset-bottom)) !important;
  }
}

/* --- 10. Breakpoint refinements --- */
/* Large laptop */
@media (max-width: 1200px){
  .container, .wrap, .section-inner{ padding-inline: clamp(1rem, 4vw, 2.5rem); }
}
/* Tablet */
@media (max-width: 992px){
  .grid-3, .grid-4, .services-grid, .destinations-grid, .reviews-grid, .fleet-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  h1{ font-size: clamp(2rem, 6vw, 3.2rem); line-height: 1.12; }
  h2{ font-size: clamp(1.6rem, 4.5vw, 2.4rem); line-height: 1.18; }
}
/* Mobile */
@media (max-width: 640px){
  .grid-2, .grid-3, .grid-4, .services-grid, .destinations-grid,
  .reviews-grid, .fleet-grid, .stats-grid, .footer-grid{
    grid-template-columns: minmax(0, 1fr);
  }
  section{ padding-block: clamp(2.5rem, 9vw, 3.5rem); }
  [id]{ scroll-margin-top: 72px; }
  .hero h1, .hero--v2 h1{ font-size: clamp(1.9rem, 8.5vw, 2.7rem); }
  .hero p, .hero--v2 p{ font-size: clamp(.95rem, 4vw, 1.05rem); }
  /* Stacked CTAs that fill the width cleanly */
  .hero-actions, .contact-actions, .cta-row{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .7rem;
  }
  .hero-actions > a, .contact-actions > a, .cta-row > a{
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  table{ display: block; overflow-x: auto; }
}
/* Very small phones */
@media (max-width: 360px){
  .logo-text h2{ font-size: .95rem; }
  .logo-text p{ font-size: .62rem; }
}
/* Landscape phones: don't lock the hero to full height */
@media (max-height: 520px) and (orientation: landscape){
  .hero, .hero--v2, #home{ min-height: auto; padding-block: 5rem; }
}

/* --- 11. Print --- */
@media print{
  .site-header, .floating-whatsapp, .lux-progress,
  .lux-loader, .lux-top{ display: none !important; }
  body{ background: #fff; color: #000; }
}

/* --- 12. Contrast fixes (WCAG AA verified with axe) --- */
/* Gold eyebrow on cream background: darken to a bronze-gold that keeps
   the luxury tone while reaching 4.5:1 */
.luxe-eyebrow{ color: #7a5f16; }
/* On dark sections the original gold stays (high contrast already) */
.section--dark .luxe-eyebrow,
[class*="dark"] .luxe-eyebrow,
.luxe-footer .luxe-eyebrow{ color: #D4AF37; }

/* Review form labels / helper text on white */
.review-form label,
.review-form legend,
.review-form__note,
.review-form span{ color: #5c5c5c; }

/* =========================================================
   v7 — LEGACY PAGE HARMONISATION (destination sub-pages)
   Brings the inner pages up to the same luxury standard
   as the homepage without touching their markup.
   ========================================================= */

body > header:not(.site-header){
  position: sticky;
  top: 0;
  z-index: 950;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  padding: .7rem clamp(1rem, 4vw, 3rem);
  background: rgba(13, 13, 13, .88);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(212, 175, 55, .18);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .9);
}
body > header:not(.site-header) .logo{
  display: flex; align-items: center; gap: .7rem;
  min-width: 0; text-decoration: none;
}
body > header:not(.site-header) .logo img{
  width: 40px; height: 40px; object-fit: contain; flex: 0 0 auto;
}
body > header:not(.site-header) .logo-text h2{
  margin: 0;
  font-size: .95rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #D4AF37;
  line-height: 1.2;
}
body > header:not(.site-header) .logo-text p{
  margin: 0;
  font-size: .6rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #b9b1a2;
}
body > header:not(.site-header) nav ul{
  display: flex; align-items: center; flex-wrap: wrap;
  gap: clamp(.9rem, 2vw, 1.9rem);
  margin: 0; padding: 0; list-style: none;
}
body > header:not(.site-header) nav a{
  color: #f2ede2;
  text-decoration: none;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .35rem 0;
  position: relative;
  transition: color .35s cubic-bezier(.22,.61,.36,1);
}
body > header:not(.site-header) nav a::after{
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: #D4AF37;
  transition: right .4s cubic-bezier(.22,.61,.36,1);
}
body > header:not(.site-header) nav a:hover{ color: #D4AF37; }
body > header:not(.site-header) nav a:hover::after{ right: 0; }
body > header:not(.site-header) .actions{
  display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
}
body > header:not(.site-header) .actions select{
  background: rgba(255,255,255,.05);
  color: #f2ede2;
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 999px;
  padding: .45rem .8rem;
  font-size: .72rem;
  letter-spacing: .1em;
}
body > header:not(.site-header) .actions select option{ background:#0d0d0d; color:#f2ede2; }
body > header:not(.site-header) .book-btn{
  background: linear-gradient(135deg, #D4AF37, #b3892a);
  color: #0d0d0d;
  border-radius: 999px;
  padding: .6rem 1.25rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 24px -12px rgba(212,175,55,.7);
  transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s;
}
body > header:not(.site-header) .book-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(212,175,55,.85);
}
@media (max-width: 780px){
  body > header:not(.site-header){ justify-content: center; text-align: center; }
  body > header:not(.site-header) nav ul{ justify-content: center; }
}

/* Legacy hero/section offsets no longer need the old fixed-header padding */
body > header:not(.site-header) + main > section:first-child[style*="padding-top"]{
  padding-top: clamp(2.5rem, 6vw, 4.5rem) !important;
}

/* --- Uniform legacy cards --- */
.cards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: clamp(1.1rem, 2.4vw, 2rem);
  align-items: stretch;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.cards .card{
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(212,175,55,.22);
  background: #fff;
  box-shadow: 0 18px 40px -28px rgba(0,0,0,.55);
  transition: transform .45s cubic-bezier(.22,.61,.36,1),
              box-shadow .45s cubic-bezier(.22,.61,.36,1),
              border-color .45s;
}
.cards .card:hover{
  transform: translateY(-6px);
  border-color: rgba(212,175,55,.55);
  box-shadow: 0 26px 55px -28px rgba(0,0,0,.65);
}
.cards .card img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  margin: 0;
  transition: transform .7s cubic-bezier(.22,.61,.36,1);
}
.cards .card:hover img{ transform: scale(1.05); }
.cards .card h3{
  margin: 1.1rem 1.2rem .5rem;
  font-size: 1.05rem;
  letter-spacing: .06em;
  color: #1a1a1a;
}
.cards .card p{
  margin: 0 1.2rem 1.4rem;
  font-size: .9rem;
  line-height: 1.6;
  color: #4a4a4a;
  flex: 1 1 auto;
}
.cards .card a, .cards .card .gold-btn{ margin: 0 1.2rem 1.3rem; }

/* --- Legacy footer --- */
body > footer:not(.luxe-footer){
  margin-top: clamp(3rem, 7vw, 5rem);
  padding: clamp(2rem, 5vw, 3rem) 1.5rem;
  background: #0d0d0d;
  border-top: 1px solid rgba(212,175,55,.2);
  text-align: center;
}
body > footer:not(.luxe-footer) p{
  margin: 0;
  color: #cfc7b6;
  font-size: .82rem;
  letter-spacing: .1em;
}

/* Visually-hidden helper (used by sub-page language labels) */
.sr-only{
  position:absolute !important; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* Full-bleed imagery inside legacy cards */
.cards .card{ padding: 0; }
.cards .card img{ border-radius: 0; }

/* Compact legacy header on small screens */
@media (max-width: 780px){
  body > header:not(.site-header){
    position: static;
    row-gap: .55rem;
    padding: .6rem 1rem .8rem;
  }
  body > header:not(.site-header) .logo{ gap:.55rem; }
  body > header:not(.site-header) .logo img{ width:34px; height:34px; }
  body > header:not(.site-header) .logo-text h2{ font-size:.8rem; }
  body > header:not(.site-header) nav ul{ gap:1rem; }
  body > header:not(.site-header) nav a{ font-size:.66rem; letter-spacing:.14em; }
  body > header:not(.site-header) .actions{ justify-content:center; gap:.5rem; }
  body > header:not(.site-header) .actions select{ padding:.4rem .7rem; font-size:.68rem; }
  body > header:not(.site-header) .book-btn{ padding:.55rem 1rem; font-size:.68rem; }
}

/* ============================================================
   HEADER FIX v7 — no overlap between logo, nav and actions
   ============================================================ */
.site-header .header-inner{ grid-template-columns: minmax(0,auto) minmax(0,1fr) minmax(0,auto); }
.site-header .logo,
.site-header .primary-nav,
.site-header .actions{ min-width: 0; }
.site-header .primary-nav{ overflow: hidden; }
.site-header .primary-nav ul{ justify-content: center; }
@media (min-width: 1361px){
  .site-header .primary-nav ul{ gap: clamp(10px, 1.1vw, 18px); }
  .site-header .primary-nav a{ font-size: 10px !important; letter-spacing: .12em !important; }
}
/* Switch to the drawer earlier so the inline nav never collides with the logo */
@media (max-width: 1360px){
  .site-header .primary-nav{
    position: fixed;
    top: 0; right: 0;
    height: 100vh; height: 100svh;
    width: min(360px, 82vw);
    background: rgba(13,13,13,.98);
    border-left: 1px solid rgba(201,168,76,.25);
    padding: 96px 36px 36px;
    transform: translateX(100%);
    transition: transform .4s ease;
    justify-self: end;
    z-index: 998;
    overflow-y: auto;
  }
  html[dir="rtl"] .site-header .primary-nav{
    right: auto; left: 0;
    border-left: 0; border-right: 1px solid rgba(201,168,76,.25);
    transform: translateX(-100%);
  }
  .site-header.nav-open .primary-nav{ transform: translateX(0); }
  .site-header .primary-nav ul{ flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 22px; }
  .site-header .primary-nav a{ font-size: 13px !important; letter-spacing: .18em !important; }
  .site-header .nav-toggle{ display: inline-flex; align-items: center; justify-content: center; }
}

/* ============================================================
   MOBILE v8 — mobile-first luxury refinement
   Layout / spacing / touch only. No content changes.
   ============================================================ */

/* --- 0. Global overflow & sizing guards --- */
html, body{ max-width: 100%; overflow-x: hidden; }
*, *::before, *::after{ box-sizing: border-box; }
img, video, iframe, svg{ max-width: 100%; }

@media (max-width: 1024px){
  .about-text, .about-image{ min-width: 0 !important; flex: 1 1 100%; }
}

/* --- 1. Header (compact, no collisions, 44px targets) --- */
@media (max-width: 780px){
  .site-header .header-inner{
    grid-template-columns: minmax(0,1fr) auto;
    align-items: center;
    gap: 10px;
    padding-inline: clamp(12px, 4vw, 20px);
    padding-block: 8px;
  }
  .site-header .logo{ gap: 10px; min-width: 0; }
  .site-header .logo img{ width: 36px; height: 36px; flex: 0 0 36px; }
  .site-header .logo-text{ min-width: 0; }
  .site-header .logo-text h2{
    font-size: clamp(.66rem, 3.1vw, .82rem);
    letter-spacing: .1em;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .site-header .logo-text p{
    font-size: clamp(.5rem, 2.3vw, .6rem);
    letter-spacing: .12em;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .site-header .actions{ gap: 8px; flex-shrink: 0; }
  .site-header .actions .lang-select{
    min-width: 58px; height: 40px;
    padding: 0 8px; border-radius: 999px;
    font-size: .72rem; letter-spacing: .08em;
    text-align: center; text-align-last: center;
    color: #f4ead0;
  }
  /* Reserve button is duplicated by the hero + floating CTA on phones */
  .site-header .header-cta{ display: none; }
  .site-header .nav-toggle{ width: 44px; height: 44px; }
}
@media (max-width: 480px){
  .site-header .logo img{ width: 32px; height: 32px; flex: 0 0 32px; }
}
@media (max-width: 360px){
  .site-header .logo-text p{ display: none; }
}

/* Mobile drawer: comfortable tap rows */
@media (max-width: 780px){
  .site-header .primary-nav{ padding: 88px 26px 40px; width: min(320px, 86vw); }
  .site-header .primary-nav ul{ gap: 4px; width: 100%; }
  .site-header .primary-nav li{ width: 100%; }
  .site-header .primary-nav a{
    display: block; width: 100%;
    padding: 14px 4px; min-height: 48px;
    border-bottom: 1px solid rgba(201,168,76,.12);
  }
}

/* --- 2. Uniform section rhythm --- */
@media (max-width: 780px){
  main section,
  section#about, section#fleet, section#services, section#destinations,
  section#gallery, section#reviews, section#contact,
  .luxe-why, .luxe-journey, .luxe-faq, .luxe-stats{
    padding-inline: clamp(16px, 5vw, 24px) !important;
    padding-block: clamp(48px, 11vw, 68px) !important;
  }
  .hero, .hero--v2{ padding-inline: clamp(18px, 6vw, 28px) !important; }
  .section-heading, .luxe-section-title, h2{ text-wrap: balance; }
  .section-heading{ font-size: clamp(1.5rem, 6.6vw, 2.1rem) !important; }
  p{ text-wrap: pretty; }
}

/* --- 3. Hero --- */
@media (max-width: 780px){
  .hero--v2{
    min-height: 100svh;
    padding-top: clamp(96px, 22vw, 124px) !important;
    padding-bottom: clamp(64px, 16vw, 92px) !important;
    display: flex; align-items: center; justify-content: center;
  }
  .hero--v2 .hero-content{ width: 100%; max-width: 520px; }
  .hero--v2 h1{ font-size: clamp(1.85rem, 8.6vw, 2.6rem); line-height: 1.16; }
  .hero--v2 > .hero-content > p{ font-size: clamp(.9rem, 3.9vw, 1.02rem); line-height: 1.65; }
  .hero-actions{
    display: flex; flex-direction: column; align-items: stretch;
    gap: 12px; width: 100%; margin-inline: auto; max-width: 340px;
  }
  .hero-actions > a{
    width: 100%; min-height: 54px;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .hero-assurance{ font-size: .78rem; line-height: 1.6; max-width: 34ch; margin-inline: auto; }
  .hero-scroll-cue{ display: none; }
}

/* --- 4. Cards: equal size, aligned, uniform gaps --- */
@media (max-width: 780px){
  .cards, .features, .fleet-grid, .destination-grid, .dest-grid,
  .luxe-why__grid, .luxe-journey__list, .reviews-grid, .luxe-reviews__grid{
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    width: 100%;
  }
  .cards{ display: grid; }
  .card, .feature, .fleet-card, .dest-card, .destination-card,
  .luxe-why__card, .luxe-journey__item, .review-card, .luxe-review{
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    height: 100%;
    display: flex; flex-direction: column;
    padding: clamp(18px, 5vw, 26px);
    overflow-wrap: anywhere;
  }
  .cards .card{ padding: 0; }
  .cards .card > *:not(img){ padding-inline: clamp(18px, 5vw, 24px); }
  .cards .card > *:not(img):first-child{ padding-top: 18px; }
  .cards .card > *:last-child{ margin-bottom: 18px; }
  .card img, .dest-card img, .destination-card img, .fleet-card img{
    width: 100%; height: auto;
    aspect-ratio: 16 / 10; object-fit: cover; object-position: center;
    display: block;
  }
  .fleet-card img{ aspect-ratio: 16 / 9; object-fit: contain; background: transparent; }
  .card .gold-btn, .dest-card .gold-btn, .fleet-card .gold-btn{
    margin-top: auto; width: calc(100% - 2 * clamp(18px, 5vw, 24px));
    min-height: 50px; display: inline-flex; align-items: center; justify-content: center;
  }
  .feature{ min-height: 0; padding: 20px 16px; }
  .feature p{ font-size: .9rem; margin: 0; }
  .features{ grid-template-columns: repeat(2, minmax(0,1fr)) !important; gap: 12px !important; }
}
@media (max-width: 360px){
  .features{ grid-template-columns: 1fr !important; }
}

/* --- 5. About / text blocks --- */
@media (max-width: 1024px){
  .container{ gap: clamp(24px, 6vw, 40px); }
  .about-text p{ font-size: clamp(.98rem, 4.1vw, 1.1rem); line-height: 1.7; }
  .about-image img{ width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
  .driver-bio{ width: 100%; max-width: 100%; }
}

/* --- 6. Journey / Why cards text containment --- */
@media (max-width: 780px){
  .luxe-journey__item, .luxe-why__card{ padding-inline: clamp(18px, 5.2vw, 24px); }
  .luxe-journey__item p, .luxe-why__card p{ overflow-wrap: anywhere; hyphens: auto; }
}

/* --- 7. Gallery --- */
@media (max-width: 780px){
  .luxe-gallery__grid, .gallery-grid{
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    gap: 10px !important;
    grid-auto-rows: auto !important;
  }
  .luxe-gallery__item, .gallery-grid > *{
    grid-column: auto !important; grid-row: auto !important;
    aspect-ratio: 1 / 1; margin: 0;
  }
  .luxe-gallery__item img, .gallery-grid img{
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .luxe-lightbox__nav, .luxe-lightbox__close, .luxe-lightbox__play{
    min-width: 46px; min-height: 46px;
  }
}
@media (max-width: 360px){
  .luxe-gallery__grid, .gallery-grid{ grid-template-columns: 1fr !important; }
}

/* --- 8. Reviews + review form --- */
@media (max-width: 780px){
  .review-card, .luxe-review{ padding: 22px 18px; }
  .review-card p, .luxe-review p{ font-size: .95rem; line-height: 1.7; }
  .review-form, .review-form form{ width: 100%; }
  .review-form input, .review-form select, .review-form textarea,
  .booking-form input, .booking-form select, .booking-form textarea,
  input, select, textarea{
    width: 100%; max-width: 100%;
    font-size: 16px; /* prevents iOS zoom */
    min-height: 48px;
  }
  textarea{ min-height: 110px; }
}

/* --- 9. FAQ tap targets --- */
@media (max-width: 780px){
  .luxe-faq__q, .faq-question, details > summary{
    min-height: 56px; padding-block: 16px; padding-inline-end: 44px;
    font-size: .98rem; line-height: 1.45;
  }
  .luxe-faq__a, .faq-answer{ font-size: .93rem; line-height: 1.7; }
}

/* --- 10. Contact + map --- */
@media (max-width: 780px){
  .contact-box{
    padding: clamp(22px, 6vw, 30px) clamp(16px, 5vw, 24px);
    border-radius: 18px; width: 100%;
  }
  .contact-box p{
    font-size: clamp(.95rem, 4vw, 1.05rem);
    margin: 14px 0; overflow-wrap: anywhere;
  }
  .contact-box .gold-btn, .contact-actions a{
    display: flex; width: 100%; max-width: 320px; margin-inline: auto;
    min-height: 52px; align-items: center; justify-content: center;
  }
  .contact-box iframe, .map-embed iframe, iframe[src*="google.com/maps"]{
    width: 100% !important; height: 260px !important;
    border-radius: 14px; display: block;
  }
}

/* --- 11. Footer --- */
@media (max-width: 780px){
  .luxe-footer{ padding-inline: clamp(16px, 5vw, 24px); }
  .luxe-footer__grid{ grid-template-columns: 1fr !important; gap: 26px; text-align: center; }
  .luxe-footer__contact li, .footer-contact li{
    display: flex; align-items: center; justify-content: flex-start;
    gap: 12px; text-align: start;
    max-width: 300px; margin-inline: auto;
  }
  .luxe-footer__contact li > *:first-child{ flex: 0 0 auto; }
  .footer-social{ display: flex; flex-direction: column; align-items: center; gap: 12px; }
  .footer-social a{ width: 100%; max-width: 260px; min-height: 48px; }
  .luxe-footer__bottom, body > footer p{ font-size: .74rem; line-height: 1.7; }
}

/* --- 12. Floating controls: never overlap content --- */
@media (max-width: 780px){
  .floating-whatsapp{
    width: 50px; height: 50px;
    right: max(14px, env(safe-area-inset-right));
    bottom: calc(18px + env(safe-area-inset-bottom));
  }
  .back-to-top, .lux-to-top{
    width: 44px; height: 44px;
    right: max(16px, env(safe-area-inset-right));
    bottom: calc(80px + env(safe-area-inset-bottom));
  }
  body{ padding-bottom: env(safe-area-inset-bottom); }
  main > section:last-of-type{ padding-bottom: clamp(56px, 14vw, 76px) !important; }
}

/* --- 13. Touch polish --- */
@media (hover: none){
  a, button, summary, .card, .gold-btn{ -webkit-tap-highlight-color: rgba(201,168,76,.18); }
  a, button, select, summary{ touch-action: manipulation; }
}

/* --- 14. Tablet balance --- */
@media (min-width: 781px) and (max-width: 1024px){
  .cards, .fleet-grid, .destination-grid, .dest-grid,
  .luxe-why__grid, .reviews-grid, .luxe-reviews__grid{
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    gap: 22px !important;
  }
  .card, .fleet-card, .dest-card, .luxe-why__card, .review-card{ height: 100%; }
  main section{ padding-inline: clamp(24px, 4vw, 44px) !important; }
}

/* --- 15. RTL mobile alignment --- */
@media (max-width: 780px){
  html[dir="rtl"] .luxe-footer__contact li,
  html[dir="rtl"] .footer-contact li{ flex-direction: row; text-align: right; }
  html[dir="rtl"] .floating-whatsapp{ right: auto; left: max(14px, env(safe-area-inset-left)); }
  html[dir="rtl"] .back-to-top, html[dir="rtl"] .lux-to-top{ right: auto; left: max(16px, env(safe-area-inset-left)); }
}

/* MOBILE v8.1 — corrections */
@media (max-width: 780px){
  .site-header .actions .header-cta,
  .site-header .actions .book-cta{ display: none !important; }
  .hero--v2{ min-height: 88svh; }
  .site-header .logo-text h2{ font-size: clamp(.62rem, 3.4vw, .8rem); }
}
@media (max-width: 400px){
  .site-header .logo-text h2{
    white-space: normal; overflow: visible; text-overflow: clip;
    line-height: 1.15; font-size: .68rem;
  }
  .hero--v2{ min-height: 82svh; }
}
@media (max-width: 780px){
  .feature{ overflow-wrap: normal; word-break: normal; hyphens: none; }
  .feature p{
    overflow-wrap: normal; word-break: normal; hyphens: none;
    letter-spacing: .06em; font-size: .78rem; line-height: 1.5;
  }
  .feature span{ font-size: 26px; margin-bottom: 6px; min-height: 1em; }
}

/* MOBILE v8.2 — footer brand + contact alignment */
@media (max-width: 780px){
  .luxe-footer__brand{
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
  }
  .luxe-footer__brand img{ width: 64px; height: auto; }
  .luxe-footer__contact,
  .luxe-footer__contact ul{ width: 100%; padding: 0; margin: 0; list-style: none; }
  .luxe-footer__contact li{
    width: 100%; max-width: 290px; margin-inline: auto;
    display: grid; grid-template-columns: 40px minmax(0,1fr);
    align-items: center; gap: 14px; text-align: left;
    padding-block: 8px;
  }
  .luxe-footer__contact li > span:first-child,
  .luxe-footer__contact li > .footer-ico,
  .luxe-footer__contact li svg{ justify-self: center; }
  .luxe-footer__contact li a,
  .luxe-footer__contact li > div,
  .luxe-footer__contact li > span:last-child{ text-align: left; }
  .luxe-footer__contact li strong,
  .luxe-footer__contact li small,
  .luxe-footer__contact li .label{ display: block; text-align: left; }
  .luxe-footer__bottom p, body > footer p{ padding-inline: 12px; }
}
html[dir="rtl"] .luxe-footer__contact li{ text-align: right; }
html[dir="rtl"] .luxe-footer__contact li a,
html[dir="rtl"] .luxe-footer__contact li > div{ text-align: right; }

/* MOBILE v8.3 — footer (actual markup) */
@media (max-width: 780px){
  .luxe-footer__inner{ padding-inline: clamp(16px, 5vw, 24px); }
  .luxe-footer__logo{
    display: flex; flex-direction: column; align-items: center;
    gap: 10px; text-align: center;
  }
  .luxe-footer__logo img{ width: 60px; height: auto; }
  .luxe-footer__wordmark{ display: flex; flex-direction: column; align-items: center; gap: 4px; }
  .luxe-footer__brandname{ font-size: 1.15rem; }
  .luxe-footer__brandtag{ font-size: .66rem; line-height: 1.7; }

  .luxe-footer__contacts,
  .luxe-footer__contacts--row{
    display: grid !important; grid-template-columns: 1fr !important;
    gap: 6px; width: 100%; padding: 0; margin: 0; list-style: none;
  }
  .luxe-footer__contacts li{ width: 100%; }
  .luxe-footer__contacts li > a,
  .luxe-footer__contacts li > span{
    display: grid !important;
    grid-template-columns: 40px minmax(0,1fr);
    align-items: center; gap: 14px;
    width: 100%; max-width: 290px; margin-inline: auto;
    padding-block: 9px; min-height: 48px; text-align: left;
  }
  .luxe-footer__icon{ justify-self: center; width: 38px; height: 38px; }
  .luxe-footer__contact-text{ display: flex; flex-direction: column; align-items: flex-start; gap: 2px; min-width: 0; }
  .luxe-footer__contact-label{ font-size: .6rem; letter-spacing: .16em; }
  .luxe-footer__contact-value{ font-size: .9rem; overflow-wrap: anywhere; }

  .luxe-footer__social{ display: flex; flex-direction: column; align-items: center; gap: 12px; }
  .luxe-footer__social a{ width: 100%; max-width: 260px; min-height: 48px; }
  .luxe-footer__copy{ font-size: .72rem; line-height: 1.7; padding-inline: 12px; }
}
@media (max-width: 780px){
  html[dir="rtl"] .luxe-footer__contacts li > a,
  html[dir="rtl"] .luxe-footer__contacts li > span{ text-align: right; }
  html[dir="rtl"] .luxe-footer__contact-text{ align-items: flex-end; }
}
@media (max-width: 780px){
  .luxe-footer__contact-value,
  .luxe-footer__contact-label{ padding: 0; margin: 0; text-indent: 0; align-self: flex-start; }
  .luxe-footer__bar{ width: 100%; }
  .luxe-footer__copy{
    max-width: 100%; white-space: normal; overflow-wrap: anywhere;
    letter-spacing: .08em; text-align: center;
  }
}
@media (max-width: 780px){
  .luxe-footer__contacts li *{ text-align: left; }
  html[dir="rtl"] .luxe-footer__contacts li *{ text-align: right; }
}
