/* ============================================================
   Massage Asiatique Casablanca — Centre de Bien-Être
   Luxury theme: black + bronze + gold (matches official branding card)
   ============================================================ */

:root {
  --black: #1a1108;
  --black-deep: #0f0905;
  --brown-dark: #2b1d14;
  --brown: #3d2818;
  --bronze: #8b5a2b;
  --bronze-light: #b8843d;
  --tan: #a57f5f;
  --gold: #e8d26b;
  --gold-bright: #f0d878;
  --gold-soft: rgba(232, 210, 107, 0.15);
  --cream: #f5efe1;
  --white: #ffffff;
  --muted: rgba(245, 239, 225, 0.7);
  --muted-dim: rgba(245, 239, 225, 0.5);
  --line: rgba(232, 210, 107, 0.25);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 8px 30px rgba(232, 210, 107, 0.25);
}

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

html { scroll-behavior: smooth; background: var(--black-deep); }

body {
  background: var(--black-deep);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  letter-spacing: 0.01em;
  padding-bottom: 110px;
}

/* Last section needs extra bottom space so booking bar never covers it */
#contact { padding-bottom: 50px; }
footer { padding-bottom: 130px; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* NAVBAR */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(15, 9, 5, 0.92);
  backdrop-filter: blur(14px);
  z-index: 1000;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  transition: all 0.3s ease;
}

.nav-inner { display: flex; justify-content: space-between; align-items: center; }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1.1;
}
.nav-logo span {
  display: block;
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 14px; }

#lang-toggle {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 7px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  cursor: pointer;
  border-radius: 2px;
}
#lang-toggle:hover { background: var(--gold); color: var(--black-deep); }

.hamburger { display: none; background: transparent; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { width: 26px; height: 1.5px; background: var(--gold); }

.mobile-nav {
  display: none;
  position: fixed; top: 60px; left: 0; right: 0;
  background: var(--black-deep);
  border-bottom: 1px solid var(--line);
  z-index: 999;
}
.mobile-nav ul { list-style: none; padding: 16px 28px; }
.mobile-nav li { padding: 14px 0; border-bottom: 1px solid var(--line); }
.mobile-nav li:last-child { border-bottom: none; }
.mobile-nav.open { display: block; }

/* HERO */
#hero {
  position: relative;
  min-height: 75vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 28px 80px;
  background: radial-gradient(ellipse at center, var(--brown-dark) 0%, var(--black) 60%, var(--black-deep) 100%);
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid var(--line);
  opacity: 0.4;
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  opacity: 0.6;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 880px; }

.lotus-icon { display: inline-block; width: 60px; height: 60px; margin-bottom: 24px; color: var(--gold); opacity: 0.9; }

.hero-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
  padding: 8px 20px;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-title em { color: var(--gold); font-style: italic; font-weight: 400; }

.hero-subtitle {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 32px;
}

.hero-slogan { display: flex; justify-content: center; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-slogan span {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 2px;
}
.hero-slogan .sep { color: var(--bronze-light); font-style: normal; }

.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.8rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  color: var(--black-deep);
  box-shadow: 0 4px 16px rgba(232, 210, 107, 0.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232, 210, 107, 0.5); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black-deep); }
.btn-wa {
  background: #25D366;
  color: white;
  padding: 18px 36px;
  font-size: 0.95rem;
}
.btn-wa:hover { background: #1da851; transform: translateY(-2px); }

/* SECTIONS */
section { padding: 90px 0; position: relative; }
.section--alt { background: var(--brown-dark); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 16px;
}
.section-title em { color: var(--gold); font-style: italic; }

.divider {
  width: 70px; height: 1px;
  background: var(--gold);
  margin: 20px auto;
  position: relative;
}
.divider::before, .divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}
.divider::before { left: -12px; }
.divider::after { right: -12px; }

/* TARIFS */
.tarifs-intro {
  text-align: center;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.pricing-card {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
  border-radius: 4px 4px 0 0;
}

.pricing-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.pricing-card-header {
  padding: 24px 20px 16px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.pricing-card-header .icon {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.pricing-card-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.pricing-card-body { padding: 16px 24px 24px; flex: 1; }

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dotted rgba(232, 210, 107, 0.15);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row .duration {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.pricing-row .price {
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
}

/* Card ribbon (real element, never clipped) */
.card-ribbon {
  display: block;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--black-deep);
  border-radius: 4px 4px 0 0;
  line-height: 1.4;
}
.ribbon-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  box-shadow: inset 0 -2px 8px rgba(0, 0, 0, 0.15);
}
.ribbon-bronze {
  background: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-light) 50%, var(--bronze) 100%);
  color: var(--cream);
  box-shadow: inset 0 -2px 8px rgba(0, 0, 0, 0.25);
}

/* Featured — Best Seller, full width */
.pricing-card.featured {
  grid-column: 1 / -1;
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, rgba(232, 210, 107, 0.08) 0%, var(--brown) 50%, rgba(232, 210, 107, 0.05) 100%);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), inset 0 0 60px rgba(232, 210, 107, 0.05);
}

/* Best Value (Relaxant) — full width */
.pricing-card.best-value {
  grid-column: 1 / -1;
  border: 2px solid var(--bronze-light);
  background: linear-gradient(135deg, rgba(184, 132, 61, 0.08) 0%, var(--brown) 50%, rgba(184, 132, 61, 0.03) 100%);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.pricing-card.best-value:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(232, 210, 107, 0.25);
}

.pricing-card.featured .pricing-card-header,
.pricing-card.best-value .pricing-card-header {
  padding-top: 22px;
}
.pricing-card.best-value .pricing-card-header { border-bottom: 1px solid var(--bronze-light); }
.pricing-card.featured .pricing-card-header { border-bottom: 1px solid var(--gold); }

.pricing-card.featured .pricing-card-header h3,
.pricing-card.best-value .pricing-card-header h3 {
  font-size: 1.7rem;
}

.pricing-card-subtitle {
  text-align: center;
  color: var(--muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  margin-top: 8px;
}

.pricing-card.featured .pricing-card-body,
.pricing-card.best-value .pricing-card-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 28px;
}

.pricing-card.featured .price-block,
.pricing-card.best-value .price-block {
  text-align: center;
  padding: 22px 18px;
  background: var(--black-deep);
  border-radius: 4px;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}
.pricing-card.featured .price-block:hover,
.pricing-card.best-value .price-block:hover {
  border-color: var(--gold);
  background: var(--black);
}
.pricing-card.featured .price-block .duration,
.pricing-card.best-value .price-block .duration {
  display: block;
  color: var(--cream);
  font-size: 0.8rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.pricing-card.featured .price-block .price,
.pricing-card.best-value .price-block .price {
  display: block;
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.about-feature {
  text-align: center;
  padding: 36px 28px;
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: all 0.4s ease;
  position: relative;
}
.about-feature::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 1px;
  background: var(--gold);
}
.about-feature:hover { border-color: var(--gold); transform: translateY(-4px); background: var(--brown-dark); }
.about-feature-icon { font-size: 2.4rem; margin-bottom: 18px; color: var(--gold); }
.about-feature h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}
.about-feature p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }

/* CONTACT */
.contact-card {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 48px 36px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 3px;
  background: var(--gold);
}

.contact-info { display: flex; flex-direction: column; gap: 18px; margin: 28px 0 32px; }
.contact-info-item {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  color: var(--cream); font-size: 1rem;
}
.contact-info-item .icon-circle {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bronze);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-item strong { color: var(--gold); font-weight: 600; }
.contact-info-item a:hover { color: var(--gold); }

.hours-bar {
  background: var(--black-deep);
  border: 1px solid var(--gold);
  padding: 18px 28px;
  border-radius: 2px;
  margin: 0 auto 28px;
  display: inline-flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.hours-bar span { color: var(--cream); font-size: 0.95rem; }
.hours-bar strong { color: var(--gold); font-weight: 600; margin-right: 4px; }

/* FOOTER */
footer {
  background: var(--black-deep);
  border-top: 1px solid var(--gold);
  padding: 48px 0 28px;
  text-align: center;
  color: var(--muted-dim);
  font-size: 0.85rem;
}
footer .nav-logo { margin-bottom: 18px; display: inline-block; }
footer p { margin-bottom: 8px; letter-spacing: 0.5px; }
footer .gold { color: var(--gold); }
footer .footer-divider { width: 60px; height: 1px; background: var(--line); margin: 24px auto; }

/* STICKY BOOKING BAR */
.booking-bar {
  position: fixed;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 999;
  display: flex;
  gap: 10px;
  background: rgba(15, 9, 5, 0.85);
  backdrop-filter: blur(12px);
  padding: 8px;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  max-width: 540px;
  margin: 0 auto;
}

.book-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: 56px;
  position: relative;
  overflow: hidden;
}
.book-btn:hover { filter: brightness(1.05); }
.book-btn:active { transform: scale(0.97); }

.book-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}
.book-btn-text strong {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.book-btn-text small {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 2px;
  white-space: nowrap;
}

.book-btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  color: var(--black-deep);
  box-shadow: 0 4px 14px rgba(232, 210, 107, 0.35);
  animation: bar-pulse-gold 2.8s infinite;
}
.book-btn-gold .book-btn-text small { color: var(--brown-dark); }

.book-btn-wa {
  background: linear-gradient(135deg, #25D366 0%, #1ebc5a 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  animation: bar-pulse-wa 2.5s infinite 1.2s;
}
.book-btn-wa .book-btn-text small { color: rgba(255, 255, 255, 0.85); }

@keyframes bar-pulse-gold {
  0%, 100% { box-shadow: 0 4px 14px rgba(232, 210, 107, 0.35); }
  50% { box-shadow: 0 4px 14px rgba(232, 210, 107, 0.35), 0 0 0 8px rgba(232, 210, 107, 0); }
}
@keyframes bar-pulse-wa {
  0%, 100% { box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35), 0 0 0 8px rgba(37, 211, 102, 0); }
}

/* RESPONSIVE */
@media (max-width: 968px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured .pricing-card-body,
  .pricing-card.best-value .pricing-card-body { grid-template-columns: 1fr; }
  .card-ribbon { font-size: 0.65rem; letter-spacing: 2px; padding: 7px 12px; }
  section { padding: 60px 0; }
  #hero { padding: 120px 24px 60px; min-height: auto; }
  .hero-title { font-size: 2.6rem; }
  .hero-slogan { gap: 12px; }
  .hero-slogan span { font-size: 1.05rem; }
  .contact-card { padding: 36px 24px; }
  .hours-bar { gap: 16px; padding: 14px 20px; }

  .booking-bar { bottom: 10px; left: 10px; right: 10px; padding: 6px; gap: 8px; }
  .book-btn { padding: 10px 8px; gap: 7px; min-height: 52px; }
  .book-btn-text strong { font-size: 0.78rem; }
  .book-btn-text small { font-size: 0.55rem; letter-spacing: 0.6px; }

  /* Extra clearance for the booking bar on mobile */
  body { padding-bottom: 100px; }
  footer { padding-bottom: 120px; }
}

/* FADE-IN */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   MULTI-PAGE SITE COMPONENTS (v30)
   ============================================================ */

/* Remove old body bottom padding (no booking bar in multi-page) */
body { padding-bottom: 0 !important; }
footer { padding-bottom: 0 !important; }
#contact { padding-bottom: 80px; }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: #25D366; border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  z-index: 999; transition: transform 0.25s, box-shadow 0.25s;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(0,0,0,0.55); }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }

/* PAGE HERO (sub pages) */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(180deg, var(--black-deep) 0%, var(--black) 70%, var(--brown-dark) 100%);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.breadcrumb {
  font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted-dim); margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold-bright); }
.breadcrumb a:hover { color: var(--gold); }
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--cream); line-height: 1.05;
  margin-bottom: 22px; letter-spacing: 1px;
}
.page-title em { color: var(--gold); font-style: italic; font-weight: 400; }
.page-lede {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-style: italic; color: var(--muted);
  max-width: 720px; margin: 0 auto; line-height: 1.5;
}

/* NAV ACTIVE STATE */
.nav-links a.active { color: var(--gold) !important; }

/* HERO TRUST ROW */
.hero-trust {
  margin-top: 32px;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 28px;
  color: var(--muted); font-size: 0.8rem;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.hero-trust span { white-space: nowrap; }

/* INTRO BAND */
.intro-band {
  padding: 60px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--brown-dark);
}
.intro-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; line-height: 1.6; color: var(--cream);
  font-style: italic; text-align: center; max-width: 860px; margin: 0 auto;
}
.intro-text strong { color: var(--gold); font-style: normal; font-weight: 600; }
.intro-text em { color: var(--gold-bright); }

/* SERVICES GRID (teaser tiles) */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 30px;
}
.service-tile {
  background: linear-gradient(180deg, var(--black) 0%, var(--brown-dark) 100%);
  border: 1px solid var(--line); border-radius: 12px;
  padding: 32px 24px; text-align: center;
  transition: all 0.3s ease;
  text-decoration: none; color: var(--cream); display: block;
}
.service-tile:hover {
  transform: translateY(-5px); border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.service-icon { font-size: 2.4rem; margin-bottom: 14px; }
.service-tile h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold); font-size: 1.5rem; margin-bottom: 10px; font-weight: 600;
}
.service-tile p { color: var(--muted); font-size: 0.92rem; }

.section-cta { text-align: center; margin-top: 40px; }
.section-sub { color: var(--muted); max-width: 640px; margin: 0 auto; }

/* ABOUT / WHY GRID */
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 30px; }
.about-feature {
  text-align: center; padding: 30px 22px;
  background: rgba(15,9,5,0.5);
  border: 1px solid var(--line); border-radius: 12px;
}
.about-feature-icon { font-size: 2.2rem; margin-bottom: 16px; }
.about-feature h4 {
  font-family: 'Cormorant Garamond', serif; color: var(--gold);
  font-size: 1.3rem; margin-bottom: 12px; font-weight: 600;
}
.about-feature p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }

/* QUICK PRICING */
.quick-pricing { max-width: 720px; margin: 0 auto; }
.qp-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px; border-bottom: 1px solid var(--line);
  background: rgba(15,9,5,0.35);
}
.qp-row:first-child { border-top: 1px solid var(--line); border-top-left-radius: 10px; border-top-right-radius: 10px; }
.qp-row:last-child { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; }
.qp-row.highlight { background: linear-gradient(90deg, rgba(232,210,107,0.12), rgba(232,210,107,0.06)); border-left: 3px solid var(--gold); }
.qp-name { color: var(--cream); font-weight: 500; }
.qp-price { color: var(--gold); font-weight: 700; font-size: 1.05rem; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  padding: 28px 24px; border: 1px solid var(--line);
  background: rgba(15,9,5,0.5); border-radius: 12px;
}
.stars { color: var(--gold); margin-bottom: 14px; letter-spacing: 2px; font-size: 1.05rem; }
.testimonial p {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.05rem; line-height: 1.55; color: var(--cream); margin-bottom: 14px;
}
.t-author { color: var(--bronze-light); font-size: 0.85rem; letter-spacing: 1px; }

/* LOCATION BAND */
.location-band {
  padding: 60px 0; background: var(--brown-dark);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.location-band .section-title.small {
  font-size: 1.7rem; margin-bottom: 20px; text-align: center;
}
.location-copy {
  font-size: 1rem; line-height: 1.75; color: var(--muted);
  max-width: 880px; margin: 0 auto 28px; text-align: center;
}
.location-copy strong { color: var(--gold); }
.location-copy a { color: var(--gold-bright); border-bottom: 1px dashed var(--gold); }
.location-copy a:hover { color: var(--gold); }

.area-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 900px; margin: 0 auto; }
.area-tag {
  background: rgba(232,210,107,0.08); border: 1px solid var(--line);
  color: var(--gold-bright); padding: 7px 16px; border-radius: 20px;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.5px;
}

/* CTA BAND */
#cta-band { padding: 60px 0; background: var(--black-deep); }
.cta-card {
  text-align: center; max-width: 620px; margin: 0 auto;
  padding: 48px 40px; border: 1px solid var(--gold);
  background: linear-gradient(180deg, var(--brown-dark) 0%, var(--black) 100%);
  border-radius: 16px; box-shadow: var(--shadow-gold);
}
.cta-card h2 {
  font-family: 'Cormorant Garamond', serif; color: var(--gold);
  font-size: 2rem; margin-bottom: 12px; font-weight: 600;
}
.cta-card p { color: var(--muted); margin-bottom: 24px; }

/* FOOTER NEW */
footer {
  background: var(--black-deep); border-top: 1px solid var(--line);
  padding: 60px 0 30px; color: var(--muted);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-col h5 {
  color: var(--gold); font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; margin-bottom: 14px; font-weight: 600; letter-spacing: 1px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { padding: 6px 0; font-size: 0.92rem; }
.footer-col ul li a { color: var(--muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 4px; }
.footer-col p a { color: var(--gold-bright); }
.footer-tagline { color: var(--gold-bright) !important; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem !important; margin-top: 12px !important; margin-bottom: 14px !important; }
.footer-small { font-size: 0.82rem !important; color: var(--muted-dim); line-height: 1.55 !important; }
.footer-areas { font-size: 0.82rem; color: var(--muted-dim); line-height: 1.6; }
.footer-divider { height: 1px; background: var(--line); margin: 20px 0; }
.footer-copy { text-align: center; font-size: 0.82rem; color: var(--muted-dim); margin-bottom: 8px; }
.footer-seo-line { text-align: center; font-size: 0.72rem; color: var(--muted-dim); letter-spacing: 0.3px; line-height: 1.7; max-width: 980px; margin: 8px auto 0; }

/* CONTENT SECTIONS (text pages) */
.content-section { padding: 70px 0; }
.content-narrow { max-width: 800px; margin: 0 auto; }
.content-narrow p {
  font-size: 1.05rem; line-height: 1.8; color: var(--cream);
  margin-bottom: 22px;
}
.content-narrow p strong { color: var(--gold); }
.content-narrow a { color: var(--gold-bright); border-bottom: 1px dashed var(--gold); }
.content-narrow h2.section-title { text-align: left; margin-bottom: 18px; }
.content-narrow h2.section-title.small { font-size: 1.9rem; }

/* SERVICE DETAIL ROWS */
.service-detail { padding: 70px 0; }
.service-detail-grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 50px; align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-visual {
  text-align: center; padding: 50px 30px;
  background: linear-gradient(180deg, var(--brown-dark) 0%, var(--black) 100%);
  border: 1px solid var(--line); border-radius: 16px;
  position: relative;
}
.service-emoji { font-size: 5rem; }
.service-eyebrow {
  text-transform: uppercase; letter-spacing: 3px; font-size: 0.78rem;
  color: var(--bronze-light); margin-bottom: 10px;
}
.service-body h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 2.4rem;
  color: var(--cream); margin-bottom: 10px; font-weight: 600; line-height: 1.1;
}
.service-tagline {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: var(--gold-bright); font-size: 1.15rem; margin-bottom: 18px;
}
.service-body > p {
  color: var(--muted); line-height: 1.75; font-size: 0.98rem; margin-bottom: 20px;
}
.service-body > p strong { color: var(--gold); }
.service-benefits { list-style: none; margin-bottom: 24px; }
.service-benefits li {
  padding: 8px 0 8px 28px; position: relative;
  color: var(--cream); font-size: 0.95rem;
}
.service-benefits li::before {
  content: "✦"; position: absolute; left: 0; color: var(--gold);
}
.service-pricing {
  display: flex; flex-wrap: wrap; gap: 20px;
  padding: 16px 20px; margin-bottom: 24px;
  background: rgba(15,9,5,0.6); border-left: 3px solid var(--gold);
  border-radius: 8px;
}
.service-pricing span { color: var(--cream); font-size: 0.95rem; }
.service-pricing strong { color: var(--gold); }

/* FAQ */
.faq-section { padding: 70px 0; background: var(--black-deep); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  background: rgba(15,9,5,0.5); border-radius: 8px;
  margin-bottom: 12px; padding: 0 24px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 20px 0; font-weight: 500;
  color: var(--cream); font-size: 1.02rem;
  list-style: none; position: relative; padding-right: 30px;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%); color: var(--gold); font-size: 1.4rem;
  transition: transform 0.3s;
}
.faq-item[open] summary { color: var(--gold); }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p {
  color: var(--muted); line-height: 1.7; padding: 0 0 20px;
  font-size: 0.95rem;
}

/* INCLUDED GRID (tarifs) */
.included-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; max-width: 880px; margin: 0 auto;
}
.included-item {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px; background: rgba(15,9,5,0.5);
  border: 1px solid var(--line); border-radius: 10px;
}
.included-item span { font-size: 1.6rem; }
.included-item p { color: var(--cream); font-size: 0.95rem; margin: 0; }

/* GIFT CARD */
.gift-card {
  text-align: center; max-width: 640px; margin: 0 auto;
  padding: 50px 40px;
  background: linear-gradient(135deg, var(--brown-dark), var(--black));
  border: 1px solid var(--gold); border-radius: 16px;
}
.gift-icon { font-size: 3.4rem; margin-bottom: 16px; }
.gift-card h2 {
  font-family: 'Cormorant Garamond', serif; color: var(--gold);
  font-size: 2rem; margin-bottom: 16px;
}
.gift-card p { color: var(--muted); line-height: 1.7; margin-bottom: 24px; }

/* SUITE SECTIONS */
.suite-section { padding: 70px 0; }
.suite-card-large {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; align-items: center;
}
.suite-card-large.reverse { direction: rtl; }
.suite-card-large.reverse > * { direction: ltr; }
.suite-visual {
  position: relative;
  background: linear-gradient(135deg, var(--brown-dark), var(--black));
  border: 1px solid var(--gold);
  padding: 60px 30px; border-radius: 16px;
  text-align: center; box-shadow: var(--shadow);
}
.suite-emoji { font-size: 5.5rem; display: block; margin-bottom: 18px; }
.suite-label {
  display: inline-block;
  background: rgba(232,210,107,0.15); border: 1px solid var(--gold);
  color: var(--gold-bright); font-size: 0.72rem; letter-spacing: 1.5px;
  padding: 6px 12px; border-radius: 14px;
}
.suite-content .service-eyebrow { margin-bottom: 10px; }
.suite-content h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 2.4rem;
  color: var(--cream); margin-bottom: 18px; line-height: 1.1; font-weight: 600;
}
.suite-content h2 em { color: var(--gold); font-style: italic; font-weight: 400; }
.suite-content > p {
  color: var(--muted); line-height: 1.75; font-size: 0.98rem; margin-bottom: 22px;
}
.suite-content > p strong { color: var(--gold); }
.suite-features { list-style: none; }
.suite-features li {
  padding: 9px 0; color: var(--cream); font-size: 0.95rem;
  display: flex; gap: 12px; align-items: center;
}

/* AMENITIES */
.amenities-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.amenity {
  padding: 26px 20px; text-align: center;
  background: rgba(15,9,5,0.6); border: 1px solid var(--line);
  border-radius: 12px;
}
.amenity span { font-size: 2rem; display: block; margin-bottom: 10px; }
.amenity h4 {
  font-family: 'Cormorant Garamond', serif; color: var(--gold);
  font-size: 1.15rem; margin-bottom: 8px; font-weight: 600;
}
.amenity p { color: var(--muted); font-size: 0.88rem; line-height: 1.5; }

/* PHILOSOPHY GRID */
.philosophy-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.philo-card {
  padding: 36px 26px; text-align: center;
  background: linear-gradient(180deg, var(--black) 0%, var(--brown-dark) 100%);
  border: 1px solid var(--line); border-radius: 12px;
}
.philo-icon { font-size: 2.4rem; margin-bottom: 16px; }
.philo-card h3 {
  font-family: 'Cormorant Garamond', serif; color: var(--gold);
  font-size: 1.6rem; margin-bottom: 12px; font-weight: 600;
}
.philo-card p { color: var(--muted); line-height: 1.65; font-size: 0.95rem; }

/* DUAL LIST */
.dual-list { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 980px; margin: 0 auto; }
.dual-col {
  padding: 30px 26px;
  background: rgba(15,9,5,0.5); border: 1px solid var(--line); border-radius: 12px;
}
.dual-col h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; margin-bottom: 18px; font-weight: 600; }
.dual-yes { color: var(--gold) !important; }
.dual-no { color: var(--bronze-light) !important; }
.dual-col ul { list-style: none; }
.dual-col ul li {
  padding: 9px 0; color: var(--cream); font-size: 0.95rem; line-height: 1.55;
  border-bottom: 1px dashed var(--line);
}
.dual-col ul li:last-child { border-bottom: none; }

/* CONTACT GRID */
.contact-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.contact-block {
  text-align: center; padding: 30px 20px;
  background: rgba(15,9,5,0.5); border: 1px solid var(--line); border-radius: 12px;
}
.contact-icon { font-size: 2rem; margin-bottom: 14px; }
.contact-block h3 {
  font-family: 'Cormorant Garamond', serif; color: var(--gold);
  font-size: 1.3rem; margin-bottom: 12px; font-weight: 600;
}
.contact-block p { color: var(--cream); font-size: 0.93rem; line-height: 1.5; }
.contact-block p a { color: var(--gold-bright); }
.contact-sub { color: var(--muted-dim) !important; font-size: 0.82rem !important; font-style: italic; margin-top: 6px; }

/* MAP */
.map-wrap { max-width: 1000px; margin: 0 auto; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.map-cta { text-align: center; margin-top: 24px; }

/* LANDMARKS */
.landmarks-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.landmark {
  text-align: center; padding: 22px 16px;
  background: rgba(15,9,5,0.4); border: 1px solid var(--line); border-radius: 10px;
}
.lm-icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.landmark h4 {
  font-family: 'Cormorant Garamond', serif; color: var(--gold);
  font-size: 1.05rem; margin-bottom: 6px; font-weight: 600;
}
.landmark p { color: var(--muted); font-size: 0.85rem; }

/* HOOD GRID */
.hood-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.hood {
  background: rgba(15,9,5,0.4); border: 1px solid var(--line);
  padding: 16px 18px; border-radius: 10px;
  display: flex; flex-direction: column; gap: 4px;
}
.hood strong { color: var(--gold); font-size: 1rem; }
.hood span { color: var(--muted); font-size: 0.82rem; }

/* SCROLLED NAVBAR */
#navbar.scrolled { background: rgba(15,9,5,0.96); box-shadow: 0 4px 18px rgba(0,0,0,0.4); }

/* PARTICLES */
.particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; top: -10px; background: var(--gold-bright); border-radius: 50%;
  animation: particle-fall var(--dur) linear var(--delay) infinite;
}
@keyframes particle-fall {
  0% { transform: translateY(-10vh); opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.3; }
  100% { transform: translateY(110vh); opacity: 0; }
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: none; position: fixed; top: 68px; left: 0; right: 0; background: rgba(15,9,5,0.98); padding: 0; border-bottom: 1px solid var(--line); }

  .services-grid, .about-grid, .testimonials-grid, .philosophy-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .service-detail-grid, .suite-card-large { grid-template-columns: 1fr; gap: 30px; }
  .service-detail-grid.reverse, .suite-card-large.reverse { direction: ltr; }
  .dual-list { grid-template-columns: 1fr; }
  .contact-grid, .amenities-grid, .landmarks-grid, .hood-grid { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 110px 0 50px; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid, .amenities-grid, .landmarks-grid, .hood-grid, .included-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 14px; font-size: 0.7rem; }
  .qp-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .cta-card { padding: 36px 24px; }
}
