/* ==========================================================================
   VILLA ÉLYSÉE — DIRECTION ARTISTIQUE & DESIGN SYSTEM
   Expérience digitale haute couture pour villa d'exception
   Démonstration de concept exclusive pour Flowriva
   ========================================================================== */

/* --- 1. Variables & Design Tokens --- */
:root {
  /* Palette de couleurs */
  --bg-primary: #08080a;
  --bg-secondary: #0e0e13;
  --bg-surface: #14141b;
  --bg-surface-elevated: #1c1c24;
  --bg-glass: rgba(14, 14, 19, 0.72);
  --bg-glass-light: rgba(255, 255, 255, 0.04);
  
  --text-primary: #f7f6f2;
  --text-secondary: #a9a7a1;
  --text-muted: #6b6a66;
  --text-inverse: #08080a;
  
  --gold-accent: #c5a880;
  --gold-light: #e4caa4;
  --gold-dark: #917552;
  --gold-glow: rgba(197, 168, 128, 0.25);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(197, 168, 128, 0.3);
  --border-hover: rgba(255, 255, 255, 0.2);
  
  /* Typographie */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Syne', sans-serif;
  
  /* Transitions & Rayons */
  --ease-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Dimensions & z-index */
  --header-height: 88px;
  --z-base: 1;
  --z-overlay: 20;
  --z-hud: 50;
  --z-cursor: 9999;
  --z-modal: 10000;
}

/* --- 2. Reset & Règles fondamentales --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  position: relative;
  line-height: 1.65;
  selection-background-color: var(--gold-accent);
  selection-color: var(--bg-primary);
}

::selection {
  background: var(--gold-accent);
  color: var(--bg-primary);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  outline: none;
}

/* Barre de défilement discrète */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-subtle);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-accent);
}

/* Utilitaires typographiques */
.font-serif {
  font-family: var(--font-serif);
}
.font-sans {
  font-family: var(--font-sans);
}
.font-display {
  font-family: var(--font-display);
}

.tracking-wide {
  letter-spacing: 0.18em;
}
.tracking-widest {
  letter-spacing: 0.35em;
}
.uppercase {
  text-transform: uppercase;
}

/* Lignes dorées & séparateurs raffinés */
.gold-separator {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
  margin: 24px 0;
}

.gold-separator-center {
  margin-left: auto;
  margin-right: auto;
}

/* --- 3. En-tête HUD fixe & Minimaliste --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: var(--z-hud);
  transition: transform 0.4s var(--ease-smooth), background-color 0.4s var(--ease-smooth), border-color 0.4s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background-color: var(--bg-glass);
  border-bottom: 1px solid var(--border-subtle);
  height: 74px;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.brand-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: 0.28em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
}

.brand-subtitle {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-accent);
  font-weight: 500;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}

.nav-link {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--gold-accent);
  transition: width 0.3s var(--ease-cinematic);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Bouton Audio d'ambiance */
.sound-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  background: var(--bg-glass-light);
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.sound-toggle-btn:hover {
  border-color: var(--gold-accent);
  color: var(--text-primary);
}

.sound-toggle-btn.is-active {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
  background: rgba(197, 168, 128, 0.08);
}

.sound-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}

.sound-bar {
  width: 2px;
  background-color: currentColor;
  height: 4px;
  transition: height 0.2s ease;
}

.sound-toggle-btn.is-active .sound-bar:nth-child(1) {
  animation: soundBounce 0.9s infinite alternate ease-in-out;
}
.sound-toggle-btn.is-active .sound-bar:nth-child(2) {
  animation: soundBounce 0.7s infinite 0.2s alternate ease-in-out;
}
.sound-toggle-btn.is-active .sound-bar:nth-child(3) {
  animation: soundBounce 1.1s infinite 0.4s alternate ease-in-out;
}

@keyframes soundBounce {
  0% { height: 3px; }
  100% { height: 12px; }
}

/* Bouton de réservation header */
.header-cta-btn {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: var(--text-primary);
  color: var(--bg-primary);
  font-weight: 600;
  transition: all 0.35s var(--ease-cinematic);
  border: 1px solid var(--text-primary);
}

.header-cta-btn:hover {
  background: var(--gold-accent);
  border-color: var(--gold-accent);
  color: var(--bg-primary);
  transform: translateY(-1px);
}

/* Bouton Burger Mobile */
.mobile-menu-trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: calc(var(--z-hud) + 2);
}

.mobile-menu-trigger span {
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-trigger.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.mobile-menu-trigger.is-open span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-trigger.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Menu Mobile Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 8, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: calc(var(--z-hud) + 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10vh 8vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-cinematic);
}

.mobile-nav-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 3rem;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--gold-accent);
  transform: translateX(8px);
}

.mobile-nav-link span {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--gold-accent);
  margin-right: 12px;
}

/* --- 4. Indicateur de Progression Latéral Permanent --- */
.side-tracker {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  pointer-events: auto;
  width: 24px;
}

.tracker-track {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 24px;
}

.tracker-line {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background-color: var(--border-subtle);
  z-index: 1;
}

.tracker-fill {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 0%;
  background-color: var(--gold-accent);
  z-index: 2;
  transition: height 0.3s ease-out;
}

.tracker-step {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 20px;
  z-index: 3;
  cursor: pointer;
  text-decoration: none;
}

.tracker-dot {
  width: 24px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tracker-dot::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--text-muted);
  transition: all 0.3s ease;
}

.tracker-step:hover .tracker-dot::before,
.tracker-step.active .tracker-dot::before {
  background-color: var(--gold-accent);
  box-shadow: 0 0 10px var(--gold-glow);
  transform: scale(1.6);
}

.tracker-label {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  display: flex;
  align-items: baseline;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  background: rgba(11, 14, 18, 0.94);
  backdrop-filter: blur(12px);
  padding: 5px 12px;
  border-radius: 4px;
  border: 1px solid rgba(197, 168, 128, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.tracker-num {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gold-accent);
  font-weight: 600;
}

.tracker-name {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.side-tracker:hover .tracker-label,
.tracker-step.active .tracker-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.tracker-step.active .tracker-name {
  color: var(--gold-light);
  font-weight: 600;
}

/* --- 5. Structure Générale des Scènes --- */
.experience-container {
  width: 100%;
  position: relative;
}

.scene-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 120px 6vw;
}

.scene-full-screen {
  min-height: 100vh;
  padding: 0;
}

/* Arrière-plans avec effets et images immersives */
.scene-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.scene-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease-cinematic), filter 0.6s ease;
  will-change: transform;
}

.scene-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.4) 0%, rgba(8, 8, 10, 0.15) 50%, rgba(8, 8, 10, 0.85) 100%);
  z-index: 2;
  pointer-events: none;
}

.scene-bg-overlay.darker {
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.7) 0%, rgba(8, 8, 10, 0.4) 50%, rgba(8, 8, 10, 0.9) 100%);
}

.scene-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* --- 6. Scène 01 — L'Extérieur (Hero) --- */
#scene-exterieur {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 960px;
  padding: 0 20px;
}

.hero-tag {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 24px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 1.2s var(--ease-cinematic) 0.3s forwards;
}

.hero-main-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 9vw, 8rem);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1.4s var(--ease-cinematic) 0.5s forwards;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.8vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(25px);
  animation: heroFadeIn 1.2s var(--ease-cinematic) 0.7s forwards;
}

.hero-location {
  font-size: 0.75rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(247, 246, 242, 0.7);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 1.2s var(--ease-cinematic) 0.9s forwards;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  animation: heroFadeIn 1.2s var(--ease-cinematic) 1.2s forwards;
  transition: color 0.3s ease;
}

.hero-scroll-cue:hover {
  color: var(--gold-accent);
}

.scroll-indicator-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold-accent) 0%, transparent 100%);
  animation: scrollLineDrop 2.2s infinite ease-in-out;
}

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

@keyframes scrollLineDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- 7. Scène 02 — Entrer dans la villa (L'Approche) --- */
#scene-entree {
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  position: relative;
}

.scene-intro-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 20px;
}

.scene-narrative-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8vw;
  align-items: center;
}

.scene-text-block {
  max-width: 540px;
}

.scene-heading-massive {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  line-height: 1.05;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

.scene-paragraph-editorial {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 36px;
  border-left: 1px solid var(--gold-accent);
  padding-left: 24px;
}

.scene-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.scene-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-cinematic);
}

.scene-image-frame:hover img {
  transform: scale(1.04);
}

/* --- 8. Scène 03 — Le Salon (120 m² de lumière) --- */
#scene-salon {
  position: relative;
  min-height: 110vh;
}

.living-hero-visual {
  position: relative;
  width: 100%;
  height: 75vh;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.floating-specs-bar {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(8, 8, 10, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 18px 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.spec-badge-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-badge-value {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--gold-accent);
  font-weight: 500;
}

.spec-badge-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.living-details-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6vw;
  align-items: start;
}

/* --- 9. Scène 04 — La Cuisine contemporaine --- */
#scene-cuisine {
  background: var(--bg-surface);
  position: relative;
}

.kitchen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
}

.feature-list-clean {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.feature-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold-accent);
}

/* --- 10. Scène 05 — Les Suites --- */
#scene-suites {
  background: var(--bg-primary);
  position: relative;
}

.suites-navigation-tabs {
  display: flex;
  gap: 1.5rem;
  margin: 40px 0 32px 0;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 16px;
  overflow-x: auto;
}

.suite-tab-btn {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.suite-tab-btn:hover {
  color: var(--text-primary);
}

.suite-tab-btn.active {
  color: var(--gold-accent);
  background: rgba(197, 168, 128, 0.1);
  border: 1px solid var(--border-gold);
}

.suite-showcase-panel {
  position: relative;
  min-height: 520px;
}

.suite-item-view {
  display: none;
  grid-template-columns: 1.4fr 1fr;
  gap: 5vw;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s var(--ease-smooth);
}

.suite-item-view.active {
  display: grid;
  opacity: 1;
}

.suite-visual-box {
  position: relative;
  height: 480px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.suite-visual-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-cinematic);
}

.suite-visual-box:hover img {
  transform: scale(1.05);
}

.suite-info-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.suite-info-badge {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

.suite-info-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.suite-info-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- 11. Scène 06 — La Salle de Bain (Prendre le temps) --- */
#scene-bain {
  position: relative;
  background: var(--bg-secondary);
}

.bath-atmosphere-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
}

.bath-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.bath-pill {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  background: var(--bg-glass-light);
  transition: all 0.3s ease;
}

.bath-pill:hover {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
}

/* --- 12. Scène 07 — La Piscine (Moment Climax) --- */
#scene-piscine {
  position: relative;
  min-height: 115vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
}

.pool-monumental-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.pool-monumental-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85);
  transform: scale(1.08);
  transition: transform 1.5s var(--ease-cinematic);
}

.pool-center-editorial {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 40px 20px;
}

.pool-massive-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 32px;
  color: var(--text-primary);
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.pool-subtitle-pill {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(8, 8, 10, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
}

/* --- 13. Scène 08 — L'Environnement (Côte d'Azur) --- */
#scene-environnement {
  background: var(--bg-surface);
  position: relative;
}

.surroundings-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6vw;
  align-items: center;
}

.radar-map-card {
  position: relative;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 40px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* --- Carte Radar & Géolocalisation Haut de Gamme --- */
.radar-card-header {
  margin-bottom: 22px;
}

.radar-tag-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.radar-tag-badge {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-accent);
  font-weight: 600;
}

.radar-gps-coords {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  font-family: var(--font-sans);
  background: rgba(197, 168, 128, 0.1);
  padding: 3px 8px;
  border-radius: 3px;
  border: 1px solid rgba(197, 168, 128, 0.2);
}

.radar-heading {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin: 4px 0 8px;
}

.radar-description {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

.villa-map-container {
  position: relative;
  width: 100%;
  height: 310px;
  background: #080B10;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(197, 168, 128, 0.28);
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.9), 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

.villa-leaflet-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #080B10;
}

.villa-vector-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: auto;
}

.riviera-map-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Radar pulse animation on Villa Élysée */
@keyframes radarWaveAnim {
  0% {
    r: 10px;
    opacity: 0.9;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    r: 65px;
    opacity: 0;
  }
}

.radar-wave-1 {
  animation: radarWaveAnim 3s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

.radar-wave-2 {
  animation: radarWaveAnim 3s cubic-bezier(0.25, 1, 0.5, 1) infinite 1s;
}

.radar-wave-3 {
  animation: radarWaveAnim 3s cubic-bezier(0.25, 1, 0.5, 1) infinite 2s;
}

/* Animated trajectories */
@keyframes trajectoryDash {
  to {
    stroke-dashoffset: -24;
  }
}

.route-trajectory {
  transition: stroke-width 0.3s ease, stroke 0.3s ease, opacity 0.3s ease;
  animation: trajectoryDash 1.8s linear infinite;
  opacity: 0.35;
}

.route-trajectory.is-active,
.route-trajectory:hover {
  opacity: 1;
  stroke: #E5D3B8;
  stroke-width: 2.6;
  filter: drop-shadow(0 0 5px #C5A880);
}

.map-poi-group {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.map-poi-group:hover,
.map-poi-group.is-active {
  transform: scale(1.18);
}

.map-poi-group circle {
  transition: all 0.3s ease;
}

.map-poi-group.is-active circle:first-child {
  filter: drop-shadow(0 0 8px currentColor);
}

/* Map HUD bar */
.villa-map-hud {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}

.map-hud-legend {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 14, 18, 0.9);
  backdrop-filter: blur(8px);
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid rgba(197, 168, 128, 0.2);
  pointer-events: auto;
}

.hud-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C5A880;
  box-shadow: 0 0 8px #C5A880;
  animation: pulseDot 2s infinite ease-in-out;
}

.hud-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: #E5D3B8;
  font-weight: 600;
  text-transform: uppercase;
}

.map-google-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(11, 14, 18, 0.9);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 4px;
  border: 1px solid rgba(197, 168, 128, 0.25);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C5A880;
  text-decoration: none;
  font-weight: 600;
  pointer-events: auto;
  transition: all 0.3s ease;
}

.map-google-btn:hover {
  background: var(--gold-accent);
  color: #0B0E14;
  border-color: var(--gold-accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(197, 168, 128, 0.3);
}

/* Distance list items */
.distance-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.distance-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 18px;
  background: var(--bg-surface-elevated);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
  cursor: pointer;
}

.distance-item:hover,
.distance-item.is-active {
  transform: translateX(6px);
  border-color: var(--border-gold);
  background: rgba(197, 168, 128, 0.08);
}

.distance-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.distance-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: transform 0.3s ease, background 0.3s ease;
}

.distance-item.is-active .distance-dot,
.distance-item:hover .distance-dot {
  transform: scale(1.4);
}

.dot-plage { background: #96D1D6; box-shadow: 0 0 6px #96D1D6; }
.dot-restaurant { background: #C5A880; box-shadow: 0 0 6px #C5A880; }
.dot-centre { background: #E5D3B8; box-shadow: 0 0 6px #E5D3B8; }
.dot-aeroport { background: #4E8DDF; box-shadow: 0 0 6px #4E8DDF; }

.distance-name {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  font-weight: 500;
}

.distance-time {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--gold-accent);
  font-weight: 600;
}

/* --- 14. Scène 09 — L'Expérience (Les 4 Piliers) --- */
#scene-experience {
  background: var(--bg-primary);
  position: relative;
}

.experience-monoliths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2vw;
  margin-top: 60px;
}

.monolith-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-cinematic);
  display: flex;
  flex-direction: column;
  min-height: 380px;
  justify-content: space-between;
}

.monolith-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.monolith-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  background: var(--bg-surface-elevated);
}

.monolith-card:hover::before {
  opacity: 1;
}

.monolith-num {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--gold-accent);
  font-weight: 600;
}

.monolith-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 20px 0 12px 0;
}

.monolith-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- 15. Scène 10 — Informations & Chiffres Clés --- */
#scene-informations {
  background: var(--bg-secondary);
  position: relative;
}

.key-figures-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2vw;
  margin: 50px 0 70px 0;
}

.figure-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 36px 20px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.figure-box:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}

.figure-number {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
  color: var(--gold-accent);
  margin-bottom: 12px;
}

.figure-label {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.amenities-dual-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
}

.amenity-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.amenity-icon {
  width: 20px;
  height: 20px;
  color: var(--gold-accent);
  flex-shrink: 0;
}

/* --- 16. Scène 11 — Galerie Éditoriale Asymétrique --- */
#scene-galerie {
  background: var(--bg-primary);
  position: relative;
}

.editorial-gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--bg-surface);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-cinematic), filter 0.6s ease;
}

.gallery-overlay-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px 20px;
  background: linear-gradient(0deg, rgba(8, 8, 10, 0.85) 0%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 2;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.gallery-item:hover .gallery-overlay-badge {
  opacity: 1;
  transform: translateY(0);
}

.gallery-room-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.gallery-action-tag {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

/* Compositions asymétriques éditoriales */
.item-span-7 {
  grid-column: span 7;
  height: 440px;
}
.item-span-5 {
  grid-column: span 5;
  height: 440px;
}
.item-span-4 {
  grid-column: span 4;
  height: 380px;
}
.item-span-8 {
  grid-column: span 8;
  height: 380px;
}
.item-span-6 {
  grid-column: span 6;
  height: 400px;
}

/* --- 17. Scène 12 — Réservation Interactive --- */
#scene-reservation {
  background: var(--bg-surface);
  position: relative;
}

.booking-interface-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6vw;
  align-items: center;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 60px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  margin-top: 40px;
}

.booking-editorial-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-fictional-price-tag {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 10px;
}

.price-prefix {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold-accent);
  font-weight: 500;
}

.price-suffix {
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
}

.booking-form-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-label {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.field-input,
.field-select {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
}

.field-input:focus,
.field-select:focus {
  border-color: var(--gold-accent);
}

.form-dates-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-calc-preview {
  background: rgba(197, 168, 128, 0.05);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.calc-total {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold-accent);
  font-weight: 600;
}

.booking-submit-btn {
  background: var(--gold-accent);
  color: var(--bg-primary);
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 18px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-cinematic);
  margin-top: 10px;
  box-shadow: 0 10px 25px rgba(197, 168, 128, 0.2);
}

.booking-submit-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(197, 168, 128, 0.35);
}

.fictional-notice-text {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* --- 18. Scène Finale (Coucher de Soleil & Épilogue) --- */
#scene-finale {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
}

.finale-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 40px 24px;
}

.finale-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

.finale-action-btn {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 18px 42px;
  border-radius: var(--radius-full);
  background: var(--text-primary);
  color: var(--bg-primary);
  font-weight: 700;
  transition: all 0.35s var(--ease-cinematic);
  border: 1px solid var(--text-primary);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.finale-action-btn:hover {
  background: var(--gold-accent);
  border-color: var(--gold-accent);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

/* --- 19. Footer Haute Couture & Mentions Flowriva --- */
.site-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 6vw 40px 6vw;
  position: relative;
  z-index: 10;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 5vw;
  margin-bottom: 60px;
}

.footer-brand-bio {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 380px;
  margin-top: 16px;
}

.footer-column-title {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 24px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-link-item {
  font-size: 0.82rem;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.footer-link-item:hover {
  color: var(--text-primary);
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
}

.agency-concept-credit {
  font-weight: 600;
  color: var(--gold-accent);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* --- 20. Lightbox Plein Écran pour Galerie --- */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 8, 10, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: var(--z-modal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-smooth);
}

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

.lightbox-close-btn {
  position: absolute;
  top: 32px;
  right: 40px;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.lightbox-close-btn:hover {
  color: var(--gold-accent);
  border-color: var(--gold-accent);
}

.lightbox-image-holder {
  max-width: 85vw;
  max-height: 78vh;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.lightbox-image-holder img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 24px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: rgba(14, 14, 19, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-nav-btn:hover {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
  background: var(--bg-surface);
}

.lightbox-prev-btn { left: 40px; }
.lightbox-next-btn { right: 40px; }

/* --- 21. Modale de Réservation Fictive --- */
.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 8, 10, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-smooth);
  padding: 20px;
}

.booking-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  max-width: 560px;
  width: 100%;
  padding: 48px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  text-align: center;
}

.modal-close-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.modal-close-icon:hover {
  color: var(--gold-accent);
  border-color: var(--gold-accent);
}

.modal-tag {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 16px;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.modal-summary-box {
  background: var(--bg-surface-elevated);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin: 24px 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.88rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  color: var(--text-secondary);
}

.summary-line.total {
  border-top: 1px solid var(--border-subtle);
  padding-top: 12px;
  color: var(--gold-accent);
  font-weight: 600;
  font-size: 1.05rem;
}

