@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ==============================
   CSS Variables — Luxe Palette
   ============================== */
:root {
  --background: 40 30% 97%;
  --foreground: 0 0% 8%;
  --card: 0 0% 100%;
  --card-foreground: 0 0% 8%;
  --popover: 0 0% 100%;
  --popover-foreground: 0 0% 8%;
  --primary: 0 0% 7%;
  --primary-foreground: 40 30% 97%;
  --secondary: 40 20% 92%;
  --secondary-foreground: 0 0% 8%;
  --muted: 40 15% 94%;
  --muted-foreground: 0 0% 40%;
  --accent: 40 55% 52%;
  --accent-foreground: 0 0% 7%;
  --gold: 40 55% 52%;
  --gold-light: 42 65% 68%;
  --gold-dark: 38 50% 38%;
  --ink: 0 0% 7%;
  --ivory: 40 30% 97%;
  --destructive: 0 70% 45%;
  --destructive-foreground: 40 30% 97%;
  --border: 40 15% 88%;
  --input: 40 15% 88%;
  --ring: 40 55% 52%;
  --radius: 0.25rem;
  --gradient-gold: linear-gradient(135deg, hsl(var(--gold-dark)), hsl(var(--gold)) 50%, hsl(var(--gold-light)));
  --gradient-dark: linear-gradient(180deg, hsl(0 0% 4%), hsl(0 0% 10%));
  --gradient-overlay: linear-gradient(180deg, hsl(0 0% 0% / 0.2) 0%, hsl(0 0% 0% / 0.6) 60%, hsl(0 0% 0% / 0.9) 100%);
  --shadow-luxe: 0 30px 80px -20px hsl(0 0% 0% / 0.4);
  --shadow-gold: 0 20px 60px -15px hsl(var(--gold) / 0.35);
  --transition-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==============================
   Reset & Base
   ============================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: hsl(var(--border));
}
html { scroll-behavior: smooth; }
body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "ss02";
  line-height: 1.6;
}
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; letter-spacing: -0.02em; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* ==============================
   Utility Classes
   ============================== */
.font-serif { font-family: 'Cormorant Garamond', serif; }
.font-sans { font-family: 'Inter', system-ui, sans-serif; }
.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.text-gold { color: hsl(var(--gold)); }
.bg-gold { background-color: hsl(var(--gold)); }
.bg-ink { background-color: hsl(var(--ink)); }
.bg-background { background-color: hsl(var(--background)); }
.bg-secondary { background-color: hsl(var(--secondary)); }
.border-gold { border-color: hsl(var(--gold)); }
.text-ink { color: hsl(var(--ink)); }
.text-ivory { color: hsl(var(--ivory)); }
.text-muted { color: hsl(var(--muted-foreground)); }
.gradient-gold { background: var(--gradient-gold); }
.gradient-dark { background: var(--gradient-dark); }
.shadow-luxe { box-shadow: var(--shadow-luxe); }
.shadow-gold { box-shadow: var(--shadow-gold); }
.text-gradient-gold { background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tracking-luxe { letter-spacing: 0.25em; }
.italic { font-style: italic; }

/* ==============================
   Animations
   ============================== */
.animate-fade-up { animation: fadeUp 1s var(--transition-smooth) both; }
.animate-fade-in { animation: fadeIn 1.2s ease both; }
.animate-bounce { animation: bounce 2s infinite; }
.animate-pulse { animation: pulse 3s ease-in-out infinite; }
.hover-lift { transition: transform 0.6s var(--transition-smooth), box-shadow 0.6s var(--transition-smooth); }
.hover-lift:hover { transform: translateY(-6px); box-shadow: var(--shadow-luxe); }

.shimmer-gold { position: relative; overflow: hidden; }
.shimmer-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, hsl(var(--gold) / 0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 1.2s var(--transition-smooth);
  pointer-events: none;
}
.shimmer-gold:hover::before { transform: translateX(100%); }

.text-shimmer {
  background: linear-gradient(90deg, hsl(var(--gold-dark)), hsl(var(--gold-light)) 30%, hsl(var(--gold)) 50%, hsl(var(--gold-light)) 70%, hsl(var(--gold-dark)));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shineText 4s linear infinite;
}

.glow-gold {
  box-shadow: 0 0 0 1px hsl(var(--gold) / 0.4), 0 0 40px hsl(var(--gold) / 0.25);
  animation: glowPulse 3.5s ease-in-out infinite;
}

.float-slow { animation: floatY 7s ease-in-out infinite; }

.gradient-border { position: relative; background: hsl(var(--background)); background-clip: padding-box; border: 1px solid transparent; }
.gradient-border::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, hsl(var(--gold) / 0.6), hsl(var(--gold) / 0) 40%, hsl(var(--gold) / 0) 60%, hsl(var(--gold) / 0.6));
  background-size: 200% 200%;
  animation: borderShift 6s ease infinite;
}

/* ==============================
   Keyframes
   ============================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes shineText { to { background-position: 200% center; } }
@keyframes borderShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes glowPulse { 0%, 100% { box-shadow: 0 0 0 1px hsl(var(--gold) / 0.35), 0 0 30px hsl(var(--gold) / 0.18); } 50% { box-shadow: 0 0 0 1px hsl(var(--gold) / 0.55), 0 0 60px hsl(var(--gold) / 0.35); } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
@keyframes kenBurns { from { transform: scale(1.1) translate(0, 0); } to { transform: scale(1.18) translate(-1.5%, -1%); } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ==============================
   Layout
   ============================== */
.site-wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.site-wrapper > main { flex: 1; }

/* ==============================
   Navbar
   ============================== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: all 0.7s ease; }
.navbar--transparent { background: linear-gradient(180deg, hsl(0 0% 7% / 0.6), hsl(0 0% 7% / 0.2), transparent); padding: 1.5rem 0; }
.navbar--solid { background: hsl(0 0% 7% / 0.9); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); padding: 0.75rem 0; box-shadow: var(--shadow-luxe); border-bottom: 1px solid hsl(var(--gold) / 0.2); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.navbar__logo { display: flex; align-items: center; max-width: 60vw; }
.navbar__logo img { width: auto; max-width: 100%; object-fit: contain; transition: all 0.7s ease; filter: drop-shadow(0 4px 20px hsl(var(--gold) / 0.35)); }
.navbar__logo:hover img { filter: drop-shadow(0 4px 28px hsl(var(--gold) / 0.55)); }
.navbar--transparent .navbar__logo img { max-height: 3.5rem; }
.navbar--solid .navbar__logo img { max-height: 2.5rem; }
.navbar__links { display: none; align-items: center; gap: 1.25rem; }
.navbar__link { position: relative; font-size: 11px; text-transform: uppercase; letter-spacing: 0.25em; color: hsl(var(--ivory) / 0.85); transition: color 0.3s; padding: 0.5rem 0; }
.navbar__link:hover, .navbar__link--active { color: hsl(var(--gold)); }
.navbar__link::after { content: ""; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: linear-gradient(to right, transparent, hsl(var(--gold)), transparent); transition: width 0.5s ease; }
.navbar__link:hover::after, .navbar__link--active::after { width: 100%; }
.navbar__cta { display: none; position: relative; align-items: center; padding: 0.75rem 1.75rem; background: hsl(var(--gold)); color: hsl(var(--ink)); font-size: 11px; text-transform: uppercase; letter-spacing: 0.25em; font-weight: 500; transition: all 0.5s; }
.navbar__cta:hover { background: hsl(var(--gold-light)); }
.navbar__hamburger { display: flex; color: hsl(var(--ivory)); transition: color 0.3s; }
.navbar__hamburger:hover { color: hsl(var(--gold)); }
.navbar__hamburger svg { width: 24px; height: 24px; }
.mobile-menu { display: none; background: hsl(0 0% 7% / 0.98); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-top: 1px solid hsl(var(--gold) / 0.2); animation: fadeIn 0.3s ease; }
.mobile-menu.open { display: block; }
.mobile-menu__inner { padding: 1.5rem 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.mobile-menu__link { font-size: 14px; text-transform: uppercase; letter-spacing: 0.25em; color: hsl(var(--ivory) / 0.9); transition: color 0.3s; }
.mobile-menu__link:hover { color: hsl(var(--gold)); }
.mobile-menu__cta { margin-top: 0.5rem; display: inline-flex; justify-content: center; padding: 0.75rem 1.5rem; background: hsl(var(--gold)); color: hsl(var(--ink)); font-size: 12px; text-transform: uppercase; letter-spacing: 0.25em; }
@media (min-width: 1024px) { .navbar__links { display: flex; } .navbar__cta { display: inline-flex; } .navbar__hamburger { display: none; } }
@media (min-width: 1280px) { .navbar__links { gap: 1.75rem; } }

/* ==============================
   Hero Section
   ============================== */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: hsl(var(--ink)); padding: 8rem 1rem 2rem; }
.hero__bg { position: absolute; inset: 0; top: 0; left: 0; right: 0; bottom: 0; overflow: hidden; }
.hero__bg img { position: absolute; inset: 0; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; min-width: 100vw; min-height: 100vh; max-width: none !important; object-fit: cover; object-position: center; transform: scale(1.1); animation: fadeIn 1.5s ease, kenBurns 20s ease-in-out infinite alternate; }
.hero__bg-video { position: absolute; inset: 0; width: 100%; height: 100%; min-width: 100vw; min-height: 100vh; object-fit: cover; object-position: center; animation: fadeIn 1.5s ease; }
.hero__gradient { position: absolute; inset: 0; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to top, hsl(var(--ink)), hsl(0 0% 7% / 0.55), hsl(0 0% 7% / 0.35)); }
.hero__overlay { position: absolute; inset: 0; top: 0; left: 0; right: 0; bottom: 0; background: hsl(var(--ink) / 0.2); }
.hero__spotlight-1 { position: absolute; top: -10rem; right: -10rem; width: 700px; height: 700px; border-radius: 50%; background: hsl(var(--gold) / 0.15); filter: blur(140px); pointer-events: none; animation: pulse 3s ease-in-out infinite; }
.hero__spotlight-2 { position: absolute; bottom: -10rem; left: -10rem; width: 600px; height: 600px; border-radius: 50%; background: hsl(var(--gold) / 0.1); filter: blur(120px); pointer-events: none; }
.hero__frame { position: relative; z-index: 10; width: 100%; max-width: 64rem; margin: 0 auto; }
.hero__halo { position: absolute; top: -1.5rem; left: -1.5rem; right: -1.5rem; bottom: -1.5rem; background: linear-gradient(to right, hsl(var(--gold) / 0), hsl(var(--gold) / 0.3), hsl(var(--gold) / 0)); filter: blur(24px); opacity: 0.7; animation: pulse 3s ease-in-out infinite; pointer-events: none; }
.hero__card { position: relative; border: 1px solid hsl(var(--gold) / 0.5); box-shadow: var(--shadow-luxe); backdrop-filter: blur(2px); background: hsl(var(--ink) / 0.1); padding: 3.5rem 1.5rem; text-align: center; color: hsl(var(--ivory)); }
@media (min-width: 768px) { .hero__card { padding: 5rem 4rem; } }
.hero__corner { position: absolute; width: 3.5rem; height: 3.5rem; }
.hero__corner--tl { top: -1px; left: -1px; border-top: 2px solid hsl(var(--gold)); border-left: 2px solid hsl(var(--gold)); }
.hero__corner--tr { top: -1px; right: -1px; border-top: 2px solid hsl(var(--gold)); border-right: 2px solid hsl(var(--gold)); }
.hero__corner--bl { bottom: -1px; left: -1px; border-bottom: 2px solid hsl(var(--gold)); border-left: 2px solid hsl(var(--gold)); }
.hero__corner--br { bottom: -1px; right: -1px; border-bottom: 2px solid hsl(var(--gold)); border-right: 2px solid hsl(var(--gold)); }
.hero__shimmer-line { position: absolute; top: 0; left: 50%; transform: translateX(-50%); height: 1px; width: 66%; background: linear-gradient(to right, transparent, hsl(var(--gold)), transparent); }
.hero__stars { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 1.75rem; animation: fadeIn 1.2s ease both; }
.hero__stars-line { height: 1px; width: 2.5rem; background: hsl(var(--gold)); }
.hero__stars-icons { display: flex; gap: 2px; color: hsl(var(--gold)); }
.hero__stars-icons svg { width: 12px; height: 12px; fill: currentColor; filter: drop-shadow(0 0 8px hsl(var(--gold))); }
.hero__stars-text { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: hsl(var(--gold) / 0.95); }
.hero__location { font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; color: hsl(var(--ivory) / 0.7); margin-bottom: 1.5rem; animation: fadeIn 1.2s ease both; }
.hero__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 8vw, 5.5rem); font-weight: 300; line-height: 1.02; animation: fadeUp 1s var(--transition-smooth) both; }
.hero__divider { width: 5rem; height: 1px; background: hsl(var(--gold)); margin: 2rem auto; }
.hero__subtitle { max-width: 42rem; margin: 0 auto; font-size: 1rem; color: hsl(var(--ivory) / 0.8); font-weight: 300; line-height: 1.7; animation: fadeUp 1s var(--transition-smooth) both; animation-delay: 200ms; }
@media (min-width: 768px) { .hero__subtitle { font-size: 1.125rem; } }
.hero__actions { margin-top: 3rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.25rem; animation: fadeUp 1s var(--transition-smooth) both; animation-delay: 400ms; }
@media (min-width: 640px) { .hero__actions { flex-direction: row; } }
.hero__btn-primary { position: relative; padding: 1rem 2.5rem; background: hsl(var(--gold)); color: hsl(var(--ink)); font-size: 11px; text-transform: uppercase; letter-spacing: 0.25em; font-weight: 500; transition: all 0.5s; overflow: hidden; }
.hero__btn-primary:hover { background: hsl(var(--gold-light)); }
.hero__btn-secondary { display: inline-flex; align-items: center; gap: 0.75rem; font-size: 11px; text-transform: uppercase; letter-spacing: 0.25em; color: hsl(var(--ivory) / 0.85); transition: color 0.3s; }
.hero__btn-secondary:hover { color: hsl(var(--gold)); }
.hero__btn-secondary span { display: inline-block; height: 1px; width: 2rem; background: currentColor; transition: all 0.5s; }
.hero__btn-secondary:hover span { width: 3.5rem; background: hsl(var(--gold)); }
.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 10; display: none; flex-direction: column; align-items: center; gap: 0.5rem; color: hsl(var(--ivory) / 0.6); }
.hero__scroll-text { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; }
.hero__scroll-icon { color: hsl(var(--gold)); animation: bounce 2s infinite; }
.hero__scroll-icon svg { width: 12px; height: 12px; }
@media (min-width: 768px) { .hero__scroll { display: flex; } }

/* ==============================
   Section: Logement
   ============================== */
.logement { position: relative; padding: 7rem 0; background: hsl(var(--background)); overflow: hidden; }
@media (min-width: 768px) { .logement { padding: 10rem 0; } }
.logement__blur { position: absolute; top: 25%; left: -10rem; width: 500px; height: 500px; border-radius: 50%; background: hsl(var(--gold) / 0.05); filter: blur(120px); pointer-events: none; }
.logement__grid { display: grid; gap: 4rem; align-items: center; position: relative; }
@media (min-width: 768px) { .logement__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
@media (min-width: 1024px) { .logement__grid { gap: 6rem; } }
.logement__img-wrap { position: relative; }
.logement__img-glow { position: absolute; inset: -12px; background: linear-gradient(to bottom right, hsl(var(--gold) / 0.3), transparent, hsl(var(--gold) / 0.2)); filter: blur(24px); opacity: 0.5; transition: opacity 0.7s; }
.logement__img-wrap:hover .logement__img-glow { opacity: 0.8; }
.logement__img { position: relative; width: 100%; height: 100%; min-height: 500px; object-fit: cover; box-shadow: var(--shadow-luxe); transition: transform 1.5s ease; border-radius: var(--radius); }
.logement__video { position: relative; width: 100%; height: 100%; min-height: 500px; object-fit: cover; box-shadow: var(--shadow-luxe); transition: transform 1.5s ease; border-radius: var(--radius); aspect-ratio: 9/16; }
@media (min-width: 768px) { .logement__img, .logement__video { min-height: 600px; } }
.logement__img-wrap:hover .logement__img, .logement__img-wrap:hover .logement__video { transform: scale(1.02); }
.logement__mute-btn { position: absolute; bottom: 1.25rem; right: 1.25rem; z-index: 10; width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center; background: hsl(var(--ink) / 0.7); border: 1px solid hsl(var(--gold) / 0.4); border-radius: 50%; color: hsl(var(--gold)); cursor: pointer; transition: all 0.3s; backdrop-filter: blur(8px); }
.logement__mute-btn:hover { background: hsl(var(--ink) / 0.9); border-color: hsl(var(--gold)); }
.logement__mute-btn svg { width: 16px; height: 16px; }
.logement__img-deco { display: none; position: absolute; bottom: -1.5rem; right: -1.5rem; width: 10rem; height: 10rem; border: 2px solid hsl(var(--gold)); pointer-events: none; }
@media (min-width: 768px) { .logement__img-deco { display: block; } }
.logement__badge { display: none; position: absolute; top: -1rem; left: -1rem; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: hsl(var(--ink)); color: hsl(var(--gold)); border: 1px solid hsl(var(--gold) / 0.4); box-shadow: var(--shadow-luxe); }
@media (min-width: 768px) { .logement__badge { display: flex; } }
.logement__badge svg { width: 14px; height: 14px; }
.logement__badge span { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; }
.logement__eyebrow { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: hsl(var(--gold)); margin-bottom: 1rem; }
.logement__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 300; line-height: 1.1; }
.logement__line { width: 4rem; height: 1px; background: hsl(var(--gold)); margin: 2rem 0; }
.logement__text { color: hsl(var(--muted-foreground)); line-height: 1.7; font-size: 1.125rem; font-weight: 300; }
.logement__details { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.logement__detail { border-left: 2px solid hsl(var(--gold)); padding-left: 1rem; transition: border-width 0.5s; }
.logement__detail:hover { border-left-width: 4px; }
.logement__detail dt { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: hsl(var(--muted-foreground)); }
.logement__detail dd { margin-top: 0.25rem; font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; }

.classement { margin-top: 6rem; position: relative; }
@media (min-width: 768px) { .classement { margin-top: 8rem; } }
.classement__inner { position: relative; display: grid; gap: 3rem; align-items: center; background: hsl(var(--secondary)); border: 1px solid hsl(var(--gold) / 0.3); padding: 2rem; overflow: hidden; box-shadow: var(--shadow-luxe); border-radius: var(--radius); }
@media (min-width: 768px) { .classement__inner { grid-template-columns: 1fr 1fr; gap: 5rem; padding: 3.5rem; } }
.classement__blur { position: absolute; top: -5rem; right: -5rem; width: 20rem; height: 20rem; border-radius: 50%; background: hsl(var(--gold) / 0.1); filter: blur(48px); pointer-events: none; }
.classement__stars { display: flex; align-items: center; gap: 4px; color: hsl(var(--gold)); margin-bottom: 1rem; }
.classement__stars svg { width: 20px; height: 20px; fill: currentColor; filter: drop-shadow(0 0 4px hsl(var(--gold) / 0.6)); }
.classement__eyebrow { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: hsl(var(--gold)); margin-bottom: 0.75rem; }
.classement__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 300; line-height: 1.2; }
.classement__line { width: 3rem; height: 1px; background: hsl(var(--gold)); margin: 1.5rem 0; }
.classement__text { color: hsl(var(--muted-foreground)); font-weight: 300; line-height: 1.7; }
.classement__text strong { color: hsl(var(--foreground)); }
.classement__img-wrap { position: relative; }
.classement__img-glow { position: absolute; inset: -8px; background: linear-gradient(to bottom right, hsl(var(--gold) / 0.2), transparent); filter: blur(16px); opacity: 0.6; }
.classement__img { position: relative; width: 100%; height: 100%; object-fit: cover; box-shadow: var(--shadow-luxe); border: 1px solid hsl(var(--border)); border-radius: var(--radius); }

/* ==============================
   Section: Experience
   ============================== */
.experience { position: relative; padding: 7rem 0; background: hsl(var(--ink)); color: hsl(var(--ivory)); overflow: hidden; }
@media (min-width: 768px) { .experience { padding: 10rem 0; } }
.experience__dots { position: absolute; inset: 0; opacity: 0.04; background-image: radial-gradient(hsl(var(--gold)) 1px, transparent 1px); background-size: 32px 32px; }
.experience__blur { position: absolute; top: -10rem; right: 25%; width: 600px; height: 600px; border-radius: 50%; background: hsl(var(--gold) / 0.1); filter: blur(140px); pointer-events: none; }
.experience__header { text-align: center; max-width: 42rem; margin: 0 auto 5rem; }
.experience__eyebrow-wrap { display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.experience__eyebrow-line { height: 1px; width: 2rem; background: hsl(var(--gold)); }
.experience__eyebrow { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: hsl(var(--gold)); }
.experience__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 300; line-height: 1.1; }
.experience__line { width: 4rem; height: 1px; background: hsl(var(--gold)); margin: 2rem auto; }
.experience__subtitle { color: hsl(var(--ivory) / 0.7); font-weight: 300; font-size: 1.125rem; }
.experience__grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .experience__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .experience__grid { gap: 2.5rem; } }
.experience__card { position: relative; overflow: hidden; text-align: left; border: 1px solid transparent; transition: border-color 0.7s; }
.experience__card:hover { border-color: hsl(var(--gold) / 0.3); }
.experience__card img { width: 100%; height: 440px; object-fit: cover; transition: transform 1.5s ease; }
.experience__card:hover img { transform: scale(1.1); }
.experience__card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, hsl(var(--ink)), hsl(0 0% 7% / 0.5), transparent); transition: opacity 0.7s; }
.experience__card:hover .experience__card-overlay { background: linear-gradient(to top, hsl(0 0% 7% / 0.95), hsl(0 0% 7% / 0.5), transparent); }
.experience__card-num { position: absolute; top: 1.5rem; right: 1.5rem; font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: hsl(var(--gold) / 0.3); transition: color 0.7s; }
.experience__card:hover .experience__card-num { color: hsl(var(--gold) / 0.7); }
.experience__card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; transform: translateY(8px); transition: transform 0.7s; }
.experience__card:hover .experience__card-content { transform: translateY(0); }
.experience__card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.875rem; margin-bottom: 0.75rem; }
.experience__card-line { width: 2.5rem; height: 1px; background: hsl(var(--gold)); margin-bottom: 1rem; transition: width 0.7s; }
.experience__card:hover .experience__card-line { width: 4rem; }
.experience__card-desc { font-size: 14px; color: hsl(var(--ivory) / 0.8); font-weight: 300; line-height: 1.6; max-width: 28rem; }
.experience__card-link { display: inline-block; margin-top: 1.25rem; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: hsl(var(--gold)); border-bottom: 1px solid hsl(var(--gold) / 0.4); padding-bottom: 4px; transition: border-color 0.3s; }
.experience__card:hover .experience__card-link { border-color: hsl(var(--gold)); }

.modal-backdrop { position: fixed; inset: 0; z-index: 100; background: hsl(0 0% 7% / 0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); display: flex; align-items: center; justify-content: center; padding: 1rem; animation: fadeIn 0.3s ease; }
.modal-backdrop[hidden] { display: none; }
.modal__close { position: absolute; top: 1.5rem; right: 1.5rem; width: 3rem; height: 3rem; border: 1px solid hsl(var(--gold) / 0.4); color: hsl(var(--gold)); display: flex; align-items: center; justify-content: center; z-index: 10; transition: all 0.3s; }
.modal__close:hover { background: hsl(var(--gold)); color: hsl(var(--ink)); }
.modal__content { position: relative; max-width: 64rem; width: 100%; display: grid; background: hsl(var(--ink)); border: 1px solid hsl(var(--gold) / 0.3); max-height: 88vh; overflow: auto; }
@media (min-width: 768px) { .modal__content { grid-template-columns: 1fr 1fr; } }
.modal__img { width: 100%; height: 16rem; object-fit: cover; }
@media (min-width: 768px) { .modal__img { height: 100%; } }
.modal__body { padding: 2rem; color: hsl(var(--ivory)); }
@media (min-width: 768px) { .modal__body { padding: 3rem; } }
.modal__num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: hsl(var(--gold) / 0.4); }
.modal__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.75rem, 4vw, 2.5rem); margin-top: 0.5rem; }
.modal__line { width: 3rem; height: 1px; background: hsl(var(--gold)); margin: 1.25rem 0; }
.modal__desc { color: hsl(var(--ivory) / 0.75); font-weight: 300; line-height: 1.7; margin-bottom: 2rem; }
.modal__features-label { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: hsl(var(--gold)); margin-bottom: 0.75rem; }
.modal__features { display: flex; flex-direction: column; gap: 0.5rem; }
.modal__feature { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 14px; color: hsl(var(--ivory) / 0.85); }
.modal__feature svg { width: 16px; height: 16px; color: hsl(var(--gold)); flex-shrink: 0; margin-top: 2px; }

/* ==============================
   Section: Video Carousel
   ============================== */
.video-carousel { position: relative; padding: 7rem 0; background: hsl(var(--ink)); color: hsl(var(--ivory)); overflow: hidden; }
@media (min-width: 768px) { .video-carousel { padding: 10rem 0; } }
.video-carousel__blur { position: absolute; bottom: -10rem; left: 25%; width: 600px; height: 600px; border-radius: 50%; background: hsl(var(--gold) / 0.08); filter: blur(140px); pointer-events: none; }
.video-carousel__header { text-align: center; max-width: 42rem; margin: 0 auto 4rem; }
.video-carousel__subtitle { color: hsl(var(--ivory) / 0.7); font-weight: 300; font-size: 1.125rem; }
.video-carousel__track-wrap { position: relative; max-width: 64rem; margin: 0 auto; }
.video-carousel__track { display: flex; gap: 2rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; padding: 1rem 0; }
.video-carousel__track::-webkit-scrollbar { display: none; }
.video-carousel__slide { flex: 0 0 100%; scroll-snap-align: center; transition: opacity 0.5s, transform 0.5s; }
@media (min-width: 768px) { .video-carousel__slide { flex: 0 0 80%; } }
@media (min-width: 1024px) { .video-carousel__slide { flex: 0 0 70%; } }
.video-carousel__video-wrap { position: relative; border: 1px solid hsl(var(--gold) / 0.3); overflow: hidden; aspect-ratio: 16/9; }
.video-carousel__video { width: 100%; height: 100%; object-fit: cover; }
.video-carousel__mute-btn { position: absolute; bottom: 1rem; right: 1rem; z-index: 10; width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center; background: hsl(var(--ink) / 0.7); border: 1px solid hsl(var(--gold) / 0.4); border-radius: 50%; color: hsl(var(--gold)); cursor: pointer; transition: all 0.3s; backdrop-filter: blur(8px); }
.video-carousel__mute-btn:hover { background: hsl(var(--ink) / 0.9); border-color: hsl(var(--gold)); }
.video-carousel__mute-btn svg { width: 16px; height: 16px; }
.video-carousel__caption { margin-top: 1rem; font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; text-align: center; color: hsl(var(--ivory) / 0.8); }
.video-carousel__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center; background: hsl(var(--ink) / 0.8); border: 1px solid hsl(var(--gold) / 0.4); border-radius: 50%; color: hsl(var(--gold)); cursor: pointer; transition: all 0.3s; backdrop-filter: blur(8px); }
.video-carousel__nav:hover { background: hsl(var(--ink)); border-color: hsl(var(--gold)); }
.video-carousel__nav svg { width: 18px; height: 18px; }
.video-carousel__nav--prev { left: 0.5rem; }
@media (min-width: 768px) { .video-carousel__nav--prev { left: -1.5rem; } }
.video-carousel__nav--next { right: 0.5rem; }
@media (min-width: 768px) { .video-carousel__nav--next { right: -1.5rem; } }
.video-carousel__dots { display: flex; justify-content: center; gap: 0.75rem; margin-top: 2rem; }
.video-carousel__dot { width: 8px; height: 8px; border-radius: 50%; background: hsl(var(--ivory) / 0.3); border: none; cursor: pointer; transition: all 0.3s; }
.video-carousel__dot--active { background: hsl(var(--gold)); box-shadow: 0 0 8px hsl(var(--gold) / 0.5); transform: scale(1.3); }

/* ==============================
   Section: Galerie
   ============================== */
.galerie { position: relative; padding: 7rem 0; background: hsl(var(--background)); overflow: hidden; }
@media (min-width: 768px) { .galerie { padding: 10rem 0; } }
.galerie__blur { position: absolute; top: 33%; right: 0; width: 400px; height: 400px; border-radius: 50%; background: hsl(var(--gold) / 0.05); filter: blur(120px); pointer-events: none; }
.galerie__header { text-align: center; max-width: 42rem; margin: 0 auto 4rem; }
.galerie__featured { position: relative; display: block; width: 100%; overflow: hidden; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .galerie__featured { margin-bottom: 2rem; } }
.galerie__featured img { width: 100%; height: 60vh; object-fit: cover; transition: transform 2s ease; border-radius: var(--radius); }
@media (min-width: 768px) { .galerie__featured img { height: 80vh; } }
.galerie__featured:hover img { transform: scale(1.05); }
.galerie__featured-overlay { position: absolute; inset: 0; background: linear-gradient(to top, hsl(0 0% 7% / 0.8), hsl(0 0% 7% / 0.1), transparent); }
.galerie__featured-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; display: flex; align-items: flex-end; justify-content: space-between; }
@media (min-width: 768px) { .galerie__featured-info { padding: 3rem; } }
.galerie__featured-cat { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: hsl(var(--gold)); margin-bottom: 0.5rem; }
.galerie__featured-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem, 4vw, 2.5rem); color: hsl(var(--ivory)); }
.galerie__featured-expand { display: none; width: 3.5rem; height: 3.5rem; border-radius: 50%; border: 1px solid hsl(var(--gold)); align-items: center; justify-content: center; background: hsl(0 0% 7% / 0.5); backdrop-filter: blur(8px); color: hsl(var(--gold)); transition: all 0.3s; }
@media (min-width: 768px) { .galerie__featured-expand { display: flex; } }
.galerie__featured:hover .galerie__featured-expand { background: hsl(var(--gold)); color: hsl(var(--ink)); }
.galerie__featured-expand svg { width: 20px; height: 20px; }
.galerie__featured-border { position: absolute; inset: 12px; border: 1px solid transparent; pointer-events: none; transition: border-color 0.7s; }
.galerie__featured:hover .galerie__featured-border { border-color: hsl(var(--gold) / 0.4); }
.galerie__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .galerie__grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.galerie__item { position: relative; overflow: hidden; text-align: left; }
.galerie__item--tall { grid-row: span 2; }
.galerie__item img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; transition: transform 1.8s ease; border-radius: var(--radius); }
.galerie__item--tall img { min-height: 520px; }
@media (min-width: 768px) { .galerie__item--tall img { min-height: 640px; } }
.galerie__item:hover img { transform: scale(1.1); }
.galerie__item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, hsl(0 0% 7% / 0.85), hsl(0 0% 7% / 0.1), transparent); opacity: 0.8; transition: opacity 0.7s; }
.galerie__item:hover .galerie__item-overlay { opacity: 1; }
.galerie__item-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem 1.5rem; }
.galerie__item-cat { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: hsl(var(--gold)); margin-bottom: 4px; }
.galerie__item-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: hsl(var(--ivory)); line-height: 1.3; }
@media (min-width: 768px) { .galerie__item-title { font-size: 1.5rem; } }
.galerie__item-expand { position: absolute; top: 1rem; right: 1rem; width: 2.5rem; height: 2.5rem; border-radius: 50%; border: 1px solid hsl(var(--gold) / 0.6); background: hsl(0 0% 7% / 0.4); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; color: hsl(var(--gold)); opacity: 0; transition: opacity 0.3s; }
.galerie__item:hover .galerie__item-expand { opacity: 1; }
.galerie__item-expand svg { width: 16px; height: 16px; }
.galerie__item-border { position: absolute; inset: 8px; border: 1px solid transparent; pointer-events: none; transition: border-color 0.7s; }
.galerie__item:hover .galerie__item-border { border-color: hsl(var(--gold) / 0.4); }

.lightbox { position: fixed; inset: 0; z-index: 100; background: hsl(0 0% 7% / 0.95); backdrop-filter: blur(12px); display: flex; align-items: center; justify-content: center; animation: fadeIn 0.3s ease; }
.lightbox[hidden] { display: none; }
.lightbox__close, .lightbox__prev, .lightbox__next { position: absolute; width: 3rem; height: 3rem; border: 1px solid hsl(var(--gold) / 0.4); color: hsl(var(--gold)); display: flex; align-items: center; justify-content: center; z-index: 10; transition: all 0.3s; }
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: hsl(var(--gold)); color: hsl(var(--ink)); }
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1rem; top: 50%; transform: translateY(-50%); }
@media (min-width: 768px) { .lightbox__prev { left: 2rem; } .lightbox__next { right: 2rem; } }
.lightbox__close svg, .lightbox__prev svg, .lightbox__next svg { width: 20px; height: 20px; }
.lightbox__figure { position: relative; max-width: 92vw; max-height: 88vh; }
.lightbox__figure img { max-width: 92vw; max-height: 80vh; object-fit: contain; box-shadow: var(--shadow-luxe); border: 1px solid hsl(var(--gold) / 0.3); }
.lightbox__caption { text-align: center; margin-top: 1rem; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: hsl(var(--gold)); }

/* ==============================
   Section: Testimonials
   ============================== */
.testimonials { position: relative; padding: 7rem 0; background: hsl(var(--ink)); color: hsl(var(--ivory)); overflow: hidden; }
@media (min-width: 768px) { .testimonials { padding: 10rem 0; } }
.testimonials--compact { padding: 6rem 0; }
@media (min-width: 768px) { .testimonials--compact { padding: 8rem 0; } }
.testimonials__blur-1 { position: absolute; top: -5rem; left: 25%; width: 700px; height: 700px; border-radius: 50%; background: hsl(var(--gold) / 0.1); filter: blur(160px); pointer-events: none; animation: pulse 3s ease-in-out infinite; }
.testimonials__blur-2 { position: absolute; bottom: 0; right: 0; width: 600px; height: 600px; border-radius: 50%; background: hsl(var(--gold) / 0.05); filter: blur(140px); pointer-events: none; }
.testimonials__dots { position: absolute; inset: 0; opacity: 0.04; pointer-events: none; background-image: radial-gradient(hsl(var(--gold)) 1px, transparent 1px); background-size: 32px 32px; }
.testimonials__header { text-align: center; max-width: 42rem; margin: 0 auto 4rem; }
.testimonials__rating { display: flex; align-items: center; justify-content: center; gap: 4px; color: hsl(var(--gold)); }
.testimonials__rating svg { width: 20px; height: 20px; fill: currentColor; filter: drop-shadow(0 0 8px hsl(var(--gold) / 0.7)); }
.testimonials__rating-text { color: hsl(var(--ivory) / 0.6); font-weight: 300; margin-top: 0.75rem; font-size: 14px; }
.testimonials__layout { display: grid; gap: 2rem; align-items: stretch; max-width: 72rem; margin: 0 auto; }
@media (min-width: 1024px) { .testimonials__layout { grid-template-columns: 1.4fr 1fr; } }
.testimonials__featured-wrap { position: relative; }
.testimonials__featured-glow { position: absolute; inset: -8px; background: linear-gradient(to bottom right, hsl(var(--gold) / 0.4), transparent, hsl(var(--gold) / 0.3)); filter: blur(24px); opacity: 0.5; transition: opacity 0.7s; }
.testimonials__featured-wrap:hover .testimonials__featured-glow { opacity: 0.8; }
.testimonials__featured { position: relative; height: 100%; background: hsl(var(--ivory) / 0.03); border: 1px solid hsl(var(--gold) / 0.3); backdrop-filter: blur(12px); padding: 2.5rem; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; animation: fadeIn 0.5s ease; }
@media (min-width: 768px) { .testimonials__featured { padding: 3.5rem; } }
.testimonials__featured-top-line { position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(to right, transparent, hsl(var(--gold)), transparent); }
.testimonials__featured-corner-tl { position: absolute; top: 0; left: 0; width: 3rem; height: 3rem; border-top: 2px solid hsl(var(--gold)); border-left: 2px solid hsl(var(--gold)); }
.testimonials__featured-corner-br { position: absolute; bottom: 0; right: 0; width: 3rem; height: 3rem; border-bottom: 2px solid hsl(var(--gold)); border-right: 2px solid hsl(var(--gold)); }
.testimonials__quote-icon { width: 3.5rem; height: 3.5rem; color: hsl(var(--gold) / 0.4); margin-bottom: 1.5rem; }
.testimonials__quote-text { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.125rem, 2.5vw, 1.875rem); font-weight: 300; line-height: 1.6; color: hsl(var(--ivory) / 0.95); font-style: italic; }
.testimonials__author { display: flex; align-items: center; gap: 1.25rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid hsl(var(--gold) / 0.2); }
.testimonials__author-avatar-wrap { position: relative; }
.testimonials__author-avatar-glow { position: absolute; inset: 0; border-radius: 50%; background: hsl(var(--gold) / 0.3); filter: blur(12px); }
.testimonials__author-avatar { position: relative; width: 4rem; height: 4rem; border-radius: 50%; object-fit: cover; outline: 2px solid hsl(var(--gold) / 0.5); outline-offset: 2px; }
.testimonials__author-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; }
.testimonials__author-city { font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: hsl(var(--ivory) / 0.5); }
.testimonials__author-stars { display: flex; gap: 2px; color: hsl(var(--gold)); margin-left: auto; }
.testimonials__author-stars svg { width: 14px; height: 14px; fill: currentColor; }
.testimonials__stack { display: flex; flex-direction: column; gap: 1rem; }
.testimonials__stack-item { position: relative; text-align: left; padding: 1.25rem; border: 1px solid hsl(var(--ivory) / 0.1); background: hsl(var(--ivory) / 0.02); overflow: hidden; transition: all 0.5s; }
.testimonials__stack-item:hover { border-color: hsl(var(--gold) / 0.4); background: hsl(var(--ivory) / 0.04); }
.testimonials__stack-item--active { background: hsl(var(--gold) / 0.1); border-color: hsl(var(--gold)); box-shadow: var(--shadow-gold); }
.testimonials__stack-item--active::before { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 2px; background: hsl(var(--gold)); }
.testimonials__stack-inner { display: flex; align-items: center; gap: 1rem; }
.testimonials__stack-avatar { width: 2.75rem; height: 2.75rem; border-radius: 50%; object-fit: cover; outline: 1px solid hsl(var(--ivory) / 0.2); outline-offset: 1px; transition: outline-color 0.5s; }
.testimonials__stack-item--active .testimonials__stack-avatar { outline-color: hsl(var(--gold)); }
.testimonials__stack-info { flex: 1; min-width: 0; }
.testimonials__stack-top { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.testimonials__stack-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; }
.testimonials__stack-stars { display: flex; gap: 2px; color: hsl(var(--gold)); }
.testimonials__stack-stars svg { width: 10px; height: 10px; fill: currentColor; }
.testimonials__stack-city { font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: hsl(var(--ivory) / 0.5); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.testimonials__stack-short { font-size: 14px; font-style: italic; margin-top: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: hsl(var(--ivory) / 0.6); transition: color 0.3s; }
.testimonials__stack-item--active .testimonials__stack-short { color: hsl(var(--ivory) / 0.9); }

/* ==============================
   Section: Tarifs
   ============================== */
.tarifs { position: relative; padding: 7rem 0; background: hsl(var(--secondary)); overflow: hidden; }
@media (min-width: 768px) { .tarifs { padding: 10rem 0; } }
.tarifs__blur { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; border-radius: 50%; background: hsl(var(--gold) / 0.08); filter: blur(140px); pointer-events: none; }
.tarifs__header { text-align: center; max-width: 42rem; margin: 0 auto 4rem; }
.tarifs__grid { display: grid; gap: 1.5rem; align-items: stretch; }
@media (min-width: 768px) { .tarifs__grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.tarifs__card { position: relative; padding: 2.5rem; background: hsl(var(--background)); display: flex; flex-direction: column; transition: all 0.7s; border: 1px solid hsl(var(--border)); }
.tarifs__card:hover { border-color: hsl(var(--gold) / 0.4); }
.tarifs__card.hover-lift:hover { transform: translateY(-6px); box-shadow: var(--shadow-luxe); }
.tarifs__card--featured { border: 2px solid hsl(var(--gold)); box-shadow: var(--shadow-gold); }
@media (min-width: 768px) { .tarifs__card--featured { transform: scale(1.04) translateY(-8px); } .tarifs__card--featured:hover { transform: scale(1.04) translateY(-14px); } }
.tarifs__card-glow { position: absolute; inset: -4px; background: linear-gradient(to right, hsl(var(--gold) / 0.4), transparent, hsl(var(--gold) / 0.4)); filter: blur(16px); opacity: 0.6; z-index: -1; }
.tarifs__card-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: hsl(var(--gold)); color: hsl(var(--ink)); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; padding: 4px 16px; box-shadow: var(--shadow-gold); }
.tarifs__card-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; }
.tarifs__card-line { width: 2.5rem; height: 1px; background: hsl(var(--gold)); margin: 1.25rem 0; transition: width 0.5s; }
.tarifs__card:hover .tarifs__card-line { width: 4rem; }
.tarifs__card-price { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 1rem; }
.tarifs__card-amount { font-family: 'Cormorant Garamond', serif; font-size: 3rem; }
.tarifs__card-euro { font-size: 1.5rem; color: hsl(var(--gold)); }
.tarifs__card-unit { font-size: 14px; color: hsl(var(--muted-foreground)); }
.tarifs__card-desc { font-size: 14px; color: hsl(var(--muted-foreground)); margin-bottom: 1.5rem; font-weight: 300; }
.tarifs__card-extras { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.tarifs__card-extra { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 14px; }
.tarifs__card-extra-dot { margin-top: 6px; width: 6px; height: 6px; background: hsl(var(--gold)); flex-shrink: 0; transform: rotate(45deg); }
.tarifs__card-options-label { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: hsl(var(--gold)); margin-top: auto; margin-bottom: 0.75rem; }
.tarifs__card-options { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2rem; }
.tarifs__card-option { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 12px; color: hsl(var(--muted-foreground)); }
.tarifs__card-option svg { width: 12px; height: 12px; color: hsl(var(--gold) / 0.7); flex-shrink: 0; margin-top: 2px; }
.tarifs__card-btn { display: block; text-align: center; padding: 1rem; font-size: 11px; text-transform: uppercase; letter-spacing: 0.25em; transition: all 0.5s; position: relative; overflow: hidden; }
.tarifs__card-btn--primary { background: hsl(var(--ink)); color: hsl(var(--ivory)); }
.tarifs__card-btn--primary:hover { background: hsl(var(--gold)); color: hsl(var(--ink)); }
.tarifs__card-btn--secondary { border: 1px solid hsl(var(--ink)); }
.tarifs__card-btn--secondary:hover { background: hsl(var(--ink)); color: hsl(var(--ivory)); }
/* Massage Section */
.tarifs__massage { margin-top: 4rem; max-width: 56rem; margin-left: auto; margin-right: auto; }
.tarifs__massage-inner { position: relative; background: hsl(var(--card)); border: 1px solid hsl(var(--gold) / 0.25); padding: 2.5rem; overflow: hidden; }
.tarifs__massage-glow { position: absolute; inset: -4px; background: linear-gradient(135deg, transparent, hsl(var(--gold) / 0.15), transparent); filter: blur(20px); opacity: 0.5; pointer-events: none; }
.tarifs__massage-header { position: relative; display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; flex-wrap: wrap; gap: 0.5rem; }
.tarifs__massage-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: hsl(var(--ink)); }
.tarifs__massage-price { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; font-weight: 700; color: hsl(var(--gold)); }
.tarifs__massage-desc { position: relative; font-size: 0.95rem; color: hsl(var(--muted-foreground)); margin-bottom: 1.5rem; font-weight: 300; }
.tarifs__massage-soins { position: relative; list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.75rem; }
.tarifs__massage-soin { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: hsl(var(--foreground)); }
.tarifs__massage-meta { display: flex; align-items: center; gap: 1rem; }
.tarifs__massage-duration { font-size: 0.875rem; color: hsl(var(--muted-foreground)); font-weight: 300; }
.tarifs__massage-duo { position: relative; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid hsl(var(--gold) / 0.2); }
.tarifs__massage-duo-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.tarifs__massage-duo-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; color: hsl(var(--ink)); }
.tarifs__massage-duo-meta { display: flex; align-items: center; gap: 1rem; }
.tarifs__massage-duo-price { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: hsl(var(--gold)); }
.tarifs__massage-duo-duration { font-size: 0.875rem; color: hsl(var(--muted-foreground)); font-weight: 300; }

.tarifs__booking { margin-top: 5rem; max-width: 56rem; margin-left: auto; margin-right: auto; }
.tarifs__booking-inner { position: relative; background: hsl(var(--background)); border: 1px solid hsl(var(--gold) / 0.3); padding: 2rem; text-align: center; overflow: hidden; }
.tarifs__booking-glow { position: absolute; inset: -4px; background: linear-gradient(to right, transparent, hsl(var(--gold) / 0.2), transparent); filter: blur(16px); opacity: 0.6; pointer-events: none; }
.tarifs__booking-label { position: relative; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: hsl(var(--gold)); margin-bottom: 1.25rem; }
.tarifs__booking-links { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; }
.tarifs__booking-link { padding: 0.75rem 1.75rem; font-size: 11px; text-transform: uppercase; letter-spacing: 0.25em; transition: all 0.3s; }
.tarifs__booking-link--airbnb { background: hsl(var(--ink)); color: hsl(var(--ivory)); }
.tarifs__booking-link--airbnb:hover { background: hsl(var(--gold)); color: hsl(var(--ink)); }
.tarifs__booking-link--booking { border: 1px solid hsl(var(--ink)); color: hsl(var(--ink)); }
.tarifs__booking-link--booking:hover { background: hsl(var(--ink)); color: hsl(var(--ivory)); }
.tarifs__booking-link--whatsapp { border: 1px solid hsl(var(--gold)); color: hsl(var(--gold)); }
.tarifs__booking-link--whatsapp:hover { background: hsl(var(--gold)); color: hsl(var(--ink)); }

/* ==============================
   Section: Contact
   ============================== */
.contact { position: relative; padding: 7rem 0; background: hsl(var(--ink)); color: hsl(var(--ivory)); overflow: hidden; }
@media (min-width: 768px) { .contact { padding: 10rem 0; } }
.contact__blur { position: absolute; top: -10rem; right: 0; width: 600px; height: 600px; border-radius: 50%; background: hsl(var(--gold) / 0.1); filter: blur(140px); pointer-events: none; }
.contact__dots { position: absolute; inset: 0; opacity: 0.04; background-image: radial-gradient(hsl(var(--gold)) 1px, transparent 1px); background-size: 32px 32px; }
.contact__grid { position: relative; display: grid; gap: 4rem; }
@media (min-width: 768px) { .contact__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
@media (min-width: 1024px) { .contact__grid { gap: 6rem; } }
.contact__eyebrow { font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; color: hsl(var(--gold)); margin-bottom: 1rem; }
.contact__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 300; line-height: 1.1; }
.contact__line { width: 4rem; height: 1px; background: hsl(var(--gold)); margin: 2rem 0; }
.contact__text { color: hsl(var(--ivory) / 0.7); font-weight: 300; font-size: 1.125rem; margin-bottom: 3rem; }
.contact__info-list { display: flex; flex-direction: column; gap: 1.5rem; }
.contact__info-item { display: flex; align-items: center; gap: 1rem; }
.contact__info-icon { width: 2.5rem; height: 2.5rem; border: 1px solid hsl(var(--gold) / 0.4); display: flex; align-items: center; justify-content: center; color: hsl(var(--gold)); flex-shrink: 0; }
.contact__info-icon svg { width: 16px; height: 16px; }
.contact__info-text { color: hsl(var(--ivory) / 0.9); transition: color 0.3s; }
a.contact__info-text:hover { color: hsl(var(--gold)); }
.contact__social-label { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: hsl(var(--gold) / 0.8); margin-top: 2.5rem; margin-bottom: 0.75rem; }
.contact__social-links { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.contact__social-link { width: 2.5rem; height: 2.5rem; border: 1px solid hsl(var(--gold) / 0.4); display: flex; align-items: center; justify-content: center; color: hsl(var(--gold)); transition: all 0.3s; }
.contact__social-link:hover { background: hsl(var(--gold)); color: hsl(var(--ink)); }
.contact__social-link svg { width: 16px; height: 16px; }
.contact__form { background: hsl(var(--ivory) / 0.05); border: 1px solid hsl(var(--gold) / 0.2); padding: 2rem; backdrop-filter: blur(8px); }
@media (min-width: 768px) { .contact__form { padding: 3rem; } }
.contact__form-group { margin-bottom: 1.5rem; }
.contact__form-label { display: block; font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; color: hsl(var(--gold)); margin-bottom: 0.5rem; }
.contact__form-input, .contact__form-textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid hsl(var(--ivory) / 0.2); padding: 0.75rem 0; color: hsl(var(--ivory)); font-family: inherit; font-size: 1rem; outline: none; transition: border-color 0.3s; }
.contact__form-input:focus, .contact__form-textarea:focus { border-color: hsl(var(--gold)); }
.contact__form-input::placeholder, .contact__form-textarea::placeholder { color: hsl(var(--ivory) / 0.3); }
.contact__form-textarea { resize: none; min-height: 120px; }
.contact__form-submit { width: 100%; margin-top: 1rem; padding: 1rem; background: hsl(var(--gold)); color: hsl(var(--ink)); font-size: 12px; text-transform: uppercase; letter-spacing: 0.25em; transition: all 0.5s; }
.contact__form-submit:hover { background: hsl(var(--gold-light)); }

/* ==============================
   Section: Virtual Tour
   ============================== */
.virtual-tour { position: relative; padding: 7rem 0; background: hsl(var(--ink)); color: hsl(var(--ivory)); overflow: hidden; }
@media (min-width: 768px) { .virtual-tour { padding: 10rem 0; } }
.virtual-tour__blur { position: absolute; top: -10rem; left: 50%; transform: translateX(-50%); width: 900px; height: 900px; border-radius: 50%; background: hsl(var(--gold) / 0.1); filter: blur(140px); pointer-events: none; }
.virtual-tour__dots { position: absolute; inset: 0; opacity: 0.04; background-image: radial-gradient(hsl(var(--gold)) 1px, transparent 1px); background-size: 32px 32px; }
.virtual-tour__header { text-align: center; max-width: 42rem; margin: 0 auto 4rem; position: relative; }
.virtual-tour__iframe-wrap { position: relative; border: 1px solid hsl(var(--gold) / 0.4); box-shadow: var(--shadow-luxe); overflow: hidden; }
.virtual-tour__placeholder { position: relative; min-height: 600px; border: 1px solid hsl(var(--gold) / 0.3); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.virtual-tour__placeholder-bg { position: absolute; inset: 0; }
.virtual-tour__placeholder-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.virtual-tour__placeholder-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, hsl(0 0% 7% / 0.6), hsl(0 0% 7% / 0.9)); }
.virtual-tour__placeholder-content { position: relative; z-index: 10; text-align: center; padding: 3rem 1.5rem; max-width: 40rem; margin: 0 auto; }
.virtual-tour__compass { margin: 0 auto 1.5rem; width: 6rem; height: 6rem; border: 1px solid hsl(var(--gold) / 0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(8px); }
.virtual-tour__compass-badge { display: flex; align-items: center; justify-content: center; }
.virtual-tour__placeholder-icon { display: none; }
.virtual-tour__placeholder-badge { display: inline-block; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: hsl(var(--gold)); border: 1px solid hsl(var(--gold) / 0.4); padding: 0.25rem 0.75rem; margin-bottom: 1.5rem; }
.virtual-tour__placeholder-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.75rem, 5vw, 3rem); font-weight: 300; margin-bottom: 1rem; }
.virtual-tour__placeholder-line { width: 4rem; height: 1px; background: hsl(var(--gold)); margin: 1.5rem auto; }
.virtual-tour__placeholder-desc { color: hsl(var(--ivory) / 0.7); font-size: 14px; font-weight: 300; line-height: 1.7; margin-bottom: 2rem; }
@media (min-width: 768px) { .virtual-tour__placeholder-desc { font-size: 1rem; } }
.virtual-tour__placeholder-btn { display: inline-flex; align-items: center; padding: 1rem 2rem; background: hsl(var(--gold)); color: hsl(var(--ink)); font-size: 11px; text-transform: uppercase; letter-spacing: 0.25em; transition: all 0.3s; position: relative; overflow: hidden; }
.virtual-tour__placeholder-btn:hover { background: hsl(var(--gold-light)); }
.virtual-tour__placeholder-footer { margin-top: 1.5rem; font-size: 12px; color: hsl(var(--ivory) / 0.5); }
.virtual-tour__placeholder-footer a { color: hsl(var(--gold)); transition: color 0.3s; }
.virtual-tour__placeholder-footer a:hover { color: hsl(var(--gold-light)); }

/* ==============================
   Footer
   ============================== */
.footer { position: relative; background: hsl(var(--ink)); color: hsl(var(--ivory) / 0.7); border-top: 1px solid hsl(var(--gold) / 0.2); overflow: hidden; }
.footer__top-line { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, hsl(var(--gold)), transparent); }
.footer__blur { position: absolute; bottom: -10rem; left: 50%; transform: translateX(-50%); width: 700px; height: 400px; border-radius: 50%; background: hsl(var(--gold) / 0.05); filter: blur(120px); pointer-events: none; }
.footer__grid { display: grid; gap: 3rem; align-items: flex-start; padding: 4rem 0; position: relative; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1fr 1fr 1fr; } }
.footer__logo img { height: 5rem; width: auto; object-fit: contain; margin-bottom: 1rem; filter: drop-shadow(0 4px 20px hsl(var(--gold) / 0.35)); }
.footer__desc { font-size: 14px; font-weight: 300; color: hsl(var(--ivory) / 0.7); line-height: 1.6; max-width: 20rem; text-align: center; margin: 0 auto; }
@media (min-width: 768px) { .footer__desc { text-align: left; margin: 0; } }
.footer__stars { display: flex; gap: 4px; margin-top: 1rem; color: hsl(var(--gold)); justify-content: center; }
@media (min-width: 768px) { .footer__stars { justify-content: flex-start; } }
.footer__stars svg { width: 16px; height: 16px; fill: currentColor; }
.footer__stars-text { font-size: 10px; text-transform: uppercase; letter-spacing: 0.25em; color: hsl(var(--gold)); margin-top: 0.5rem; text-align: center; }
@media (min-width: 768px) { .footer__stars-text { text-align: left; } }
.footer__social { display: flex; gap: 0.5rem; margin-top: 1.5rem; justify-content: center; }
@media (min-width: 768px) { .footer__social { justify-content: flex-start; } }
.footer__social-link { width: 2.5rem; height: 2.5rem; border: 1px solid hsl(var(--gold) / 0.4); display: flex; align-items: center; justify-content: center; color: hsl(var(--gold)); transition: all 0.3s; }
.footer__social-link:hover { background: hsl(var(--gold)); color: hsl(var(--ink)); }
.footer__social-link svg { width: 16px; height: 16px; }
.footer__classement { display: flex; flex-direction: column; align-items: center; text-align: center; }
@media (min-width: 768px) { .footer__classement { align-items: center; } }
.footer__classement-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.25em; color: hsl(var(--gold)); margin-bottom: 1rem; }
.footer__classement-img { height: 10rem; width: auto; }
.footer__classement-text { font-size: 12px; color: hsl(var(--ivory) / 0.6); margin-top: 0.75rem; max-width: 20rem; text-align: center; }
@media (min-width: 768px) { .footer__classement-text { text-align: center; } }
.footer__classement-text strong { color: hsl(var(--ivory)); }
.footer__contact { text-align: center; }
@media (min-width: 768px) { .footer__contact { text-align: right; } }
.footer__contact-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.25em; color: hsl(var(--gold)); margin-bottom: 1rem; }
.footer__contact-list { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__contact-list li { font-size: 14px; color: hsl(var(--ivory) / 0.8); display: flex; align-items: flex-start; justify-content: center; gap: 0.5rem; }
@media (min-width: 768px) { .footer__contact-list li { justify-content: flex-end; } }
.footer__contact-list li svg { flex-shrink: 0; margin-top: 3px; color: hsl(var(--gold)); }
.footer__contact-list a { transition: color 0.3s; }
.footer__contact-list a:hover { color: hsl(var(--gold)); }
.footer__contact-list .footer__hours { color: hsl(var(--ivory) / 0.5); font-size: 12px; }
.footer__booking { margin-top: 1.5rem; display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
@media (min-width: 768px) { .footer__booking { justify-content: flex-end; } }
.footer__booking-link { font-size: 10px; text-transform: uppercase; letter-spacing: 0.25em; padding: 0.5rem 0.75rem; border: 1px solid hsl(var(--gold) / 0.4); color: hsl(var(--gold)); transition: all 0.3s; }
.footer__booking-link:hover { background: hsl(var(--gold)); color: hsl(var(--ink)); }
.footer__bottom { border-top: 1px solid hsl(var(--gold) / 0.1); padding: 1.25rem 0; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 0.5rem; font-size: 12px; color: hsl(var(--ivory) / 0.5); text-align: center; }
@media (min-width: 768px) { .footer__bottom { flex-direction: row; } }
.footer__bottom a { color: hsl(var(--gold)); letter-spacing: 0.25em; text-transform: uppercase; transition: color 0.3s; }
.footer__bottom a:hover { color: hsl(var(--gold-light)); }

/* ==============================
   Toast Notification
   ============================== */
.ctis-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-size: 14px;
  animation: fadeUp 0.3s ease;
  max-width: 24rem;
}
.ctis-toast--success { background: hsl(142 70% 45%); color: white; }
.ctis-toast--error { background: hsl(var(--destructive)); color: hsl(var(--destructive-foreground)); }
.ctis-toast[hidden] { display: none; }

/* ==============================
   WordPress / Elementor overrides
   ============================== */
.elementor-section.elementor-section-full_width > .elementor-container { max-width: 100% !important; padding: 0 !important; }
.elementor-widget-wrap { padding: 0 !important; }
body.elementor-page .site-main { padding: 0; }

/* WP figure/logo adjustments */
.footer__logo .custom-logo-link img,
.navbar__logo .custom-logo-link img {
  display: block;
}
.navbar__logo .custom-logo-link { display: flex; align-items: center; }
.footer__logo { display: flex; justify-content: center; margin-bottom: 1rem; }
@media (min-width: 768px) { .footer__logo { justify-content: flex-start; } }
