:root {
  --violet-deep: #1B5E3B;
  --violet-dark: #0A2E1C;
  --violet-mid: #15432D;
  --violet-light: #2E8B57;
  --violet-glow: #5CB885;
  --gold: #D4A574;
  --gold-light: #E8C9A0;
  --gold-bright: #F0D9B5;
  --cream: #F8FDF8;
  --cream-dark: #EBF3EB;
  --txt-dark: #1E2D24;
  --txt-light: #4A6B55;
  --txt-muted: #7A9B85;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: var(--txt-dark); background: var(--cream); overflow-x: hidden; }

/* --- GLOBAL TYPOGRAPHY --- */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
.font-accent { font-family: 'Great Vibes', cursive; }

/* --- NOISE TEXTURE OVERLAY --- */
.noise::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* --- SPARKLE PARTICLES --- */
.sparkle-field { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.sparkle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: sparkle-float linear infinite;
  opacity: 0;
}
@keyframes sparkle-float {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  15% { opacity: 1; transform: translateY(-20px) scale(1); }
  85% { opacity: 0.6; transform: translateY(-120px) scale(0.8); }
  100% { opacity: 0; transform: translateY(-160px) scale(0); }
}

/* --- GOLDEN GLOW --- */
.gold-glow {
  text-shadow: 0 0 40px rgba(212,165,116,0.3), 0 0 80px rgba(212,165,116,0.1);
}
.gold-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gold-line-wide {
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- NAV --- */
.nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 1.2rem 0;
}
.nav.scrolled {
  background: rgba(10, 46, 28, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  padding: 0.7rem 0;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { font-family: 'Great Vibes', cursive; font-size: 2rem; color: var(--gold); text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.85rem;
  font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.3s ease; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: transparent !important; border: 1px solid var(--gold) !important;
  color: var(--gold) !important; padding: 0.5rem 1.5rem !important;
  border-radius: 2rem; text-transform: uppercase !important;
  font-size: 0.8rem !important; letter-spacing: 0.1em !important;
  transition: all 0.3s ease !important; cursor: pointer;
}
.nav-cta:hover {
  background: var(--gold) !important; color: var(--violet-dark) !important;
}
.nav-cta::after { display: none !important; }

/* Mobile menu */
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 30px; height: 20px; position: relative; z-index: 101;
}
.menu-toggle span {
  display: block; width: 100%; height: 1.5px; background: var(--gold);
  position: absolute; left: 0; transition: all 0.3s ease;
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }
.menu-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; background: rgba(10,46,28,0.98);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem; z-index: 99; opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; color: rgba(255,255,255,0.8);
  text-decoration: none; transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
}

/* --- HERO --- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(160deg, var(--violet-dark) 0%, var(--violet-mid) 40%, var(--violet-deep) 70%, #1A4731 100%);
  overflow: hidden;
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15;
  animation: orb-drift 20s ease-in-out infinite alternate;
  will-change: transform; contain: layout style;
}
.hero-orb-1 { width: 500px; height: 500px; background: var(--violet-glow); top: -10%; right: -5%; }
.hero-orb-2 { width: 400px; height: 400px; background: var(--gold); bottom: -15%; left: -10%; animation-delay: -7s; animation-duration: 25s; }
.hero-orb-3 { width: 300px; height: 300px; background: var(--violet-light); top: 40%; left: 30%; animation-delay: -12s; opacity: 0.08; }
@keyframes orb-drift {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
  100% { transform: translate(10px, -10px) scale(1.02); }
}

.hero-inner {
  position: relative; z-index: 2; max-width: 1200px; margin: 0 auto;
  padding: 8rem 1.5rem 5rem; display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-text { color: #fff; }
.hero-subtitle {
  font-family: 'Great Vibes', cursive; font-size: 2.5rem; color: var(--gold);
  margin-bottom: 0.5rem; opacity: 0; animation: hero-fade-up 1s 0.3s forwards;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 600; line-height: 1.15;
  margin-bottom: 0.8rem; opacity: 0; animation: hero-fade-up 1s 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-tagline {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.05rem; color: var(--gold-light); letter-spacing: 0.02em;
  margin-bottom: 1.5rem; opacity: 0; animation: hero-fade-up 1s 0.6s forwards;
}
.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.8;
  max-width: 480px; margin-bottom: 0.8rem;
  opacity: 0; animation: hero-fade-up 1s 0.7s forwards;
}
.hero-location {
  font-size: 0.85rem; color: rgba(255,255,255,0.35); letter-spacing: 0.05em;
  margin-bottom: 2.5rem; opacity: 0; animation: hero-fade-up 1s 0.8s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: hero-fade-up 1s 0.9s forwards;
}
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--violet-dark); font-weight: 700; font-size: 0.9rem;
  padding: 1rem 2.2rem; border-radius: 3rem; text-decoration: none;
  letter-spacing: 0.03em; transition: all 0.3s ease;
  box-shadow: 0 4px 25px rgba(212,165,116,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 35px rgba(212,165,116,0.4); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.8);
  font-size: 0.9rem; padding: 1rem 2.2rem; border-radius: 3rem;
  text-decoration: none; transition: all 0.3s ease;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-image-wrap {
  display: flex; justify-content: center; position: relative;
  opacity: 0; animation: hero-fade-up 1.2s 0.6s forwards;
}
.hero-image-frame {
  position: relative; width: 380px; max-width: 100%;
}
.hero-image-frame::before {
  content: ''; position: absolute; inset: -8px; border: 1px solid rgba(212,165,116,0.2);
  border-radius: 1.5rem; transform: rotate(3deg);
}
.hero-image-frame::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 1.2rem;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4), inset 0 0 60px rgba(212,165,116,0.05);
  pointer-events: none;
}
.hero-image-frame img {
  width: 100%; border-radius: 1.2rem; display: block;
  object-fit: cover; aspect-ratio: 3/4;
}

/* Decorative line */
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.25); font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; z-index: 2;
}
.hero-scroll-hint .line {
  width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; height: 40px; }
  50% { opacity: 0.8; height: 55px; }
}

/* --- SECTIONS --- */
.section { padding: 7rem 1.5rem; position: relative; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label {
  font-family: 'Great Vibes', cursive; font-size: 2rem; color: var(--gold);
  margin-bottom: 0.3rem;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 600;
  color: var(--violet-deep); line-height: 1.3;
}
.section-title-light { color: #fff; }

/* --- A PROPOS --- */
.apropos { background: var(--cream); }
.apropos-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.apropos-img {
  border-radius: 1rem; overflow: hidden; position: relative;
  box-shadow: 0 20px 50px rgba(27,94,59,0.1);
}
.apropos-img img { width: 100%; display: block; }
.apropos-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10,46,28,0.1));
}
.apropos-text { font-size: 1rem; color: var(--txt-light); line-height: 1.9; }
.apropos-text p { margin-bottom: 1.2rem; }
.apropos-text strong { color: var(--violet-deep); font-weight: 700; }
.apropos-signature {
  font-family: 'Great Vibes', cursive; font-size: 2rem; color: var(--gold);
  margin-top: 1.5rem;
}

/* --- PRESTATIONS --- */
.prestations {
  background: linear-gradient(180deg, var(--violet-dark) 0%, var(--violet-mid) 100%);
  position: relative;
}
.prestations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 800px; margin: 0 auto; }
.presta-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.2rem; padding: 2.5rem 2rem; position: relative;
  overflow: hidden; transition: all 0.4s ease;
}
.presta-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.4s ease;
}
.presta-card:hover {
  background: rgba(255,255,255,0.07); border-color: rgba(212,165,116,0.2);
  transform: translateY(-4px);
}
.presta-card:hover::before { opacity: 1; }
.presta-icon {
  width: 48px; height: 48px; margin-bottom: 1.5rem;
  color: var(--gold); opacity: 0.8;
}
.presta-card h3 {
  font-size: 1.3rem; color: #fff; margin-bottom: 0.8rem; font-weight: 500;
}
.presta-card p {
  font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 1.2rem;
}
.presta-list { list-style: none; }
.presta-list li {
  font-size: 0.85rem; color: rgba(255,255,255,0.55); padding: 0.35rem 0;
  padding-left: 1.2rem; position: relative;
}
.presta-list li::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); opacity: 0.5; transform: translateY(-50%);
}
.presta-cta {
  text-align: center; margin-top: 3.5rem;
}

/* --- TARIFS --- */
.tarifs { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%); }
.tarifs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 820px; margin: 0 auto; }
.tarif-card {
  background: #fff; border-radius: 1.2rem; padding: 2.5rem 2rem;
  text-align: center; position: relative; overflow: hidden;
  border: 1px solid rgba(27,94,59,0.06);
  transition: all 0.4s ease;
  display: flex; flex-direction: column;
}
.tarif-card:hover { box-shadow: 0 20px 50px rgba(27,94,59,0.1); transform: translateY(-4px); }
.tarif-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fff 0%, rgba(253,248,240,1) 100%);
  box-shadow: 0 8px 30px rgba(212,165,116,0.15);
}
.tarif-card.featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.tarif-card h3 { font-size: 1.15rem; color: var(--violet-deep); margin-bottom: 0.3rem; }
.tarif-card .tarif-sub { font-size: 0.8rem; color: var(--txt-muted); margin-bottom: 1.5rem; }
.tarif-price { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: var(--violet-deep); font-weight: 600; }
.tarif-price span { font-size: 0.9rem; font-weight: 400; color: var(--txt-light); }
.tarif-divider {
  width: 40px; height: 1px; margin: 1.2rem auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.tarif-features { list-style: none; text-align: left; margin-top: 1.2rem; flex: 1; }
.tarif-features li {
  font-size: 0.82rem; color: var(--txt-light); padding: 0.35rem 0;
  padding-left: 1.4rem; position: relative; line-height: 1.5;
}
.tarif-features li::before {
  content: ''; position: absolute; left: 0; top: 0.65rem;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); opacity: 0.6;
}
.tarif-card .tarif-book {
  display: inline-block; margin-top: 1.5rem;
  background: var(--violet-deep); color: #fff;
  padding: 0.7rem 1.8rem; border-radius: 2rem;
  font-size: 0.8rem; font-weight: 700;
  text-decoration: none; letter-spacing: 0.04em;
  transition: all 0.3s;
}
.tarif-card .tarif-book:hover { background: var(--violet-light); transform: translateY(-1px); }
.tarif-card.featured .tarif-book {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--violet-dark);
}
.tarif-card.featured .tarif-book:hover { box-shadow: 0 4px 15px rgba(212,165,116,0.35); }
.tarif-payments {
  text-align: center; color: var(--txt-muted); font-size: 0.82rem;
  margin-top: 2.5rem; line-height: 1.7;
}
.tarif-payments strong { color: var(--txt-light); font-weight: 600; }

/* --- TEMOIGNAGES --- */
.temoignages {
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}
.temoin-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.temoin-card {
  background: #fff; border-radius: 1rem; padding: 2rem;
  border: 1px solid rgba(27,94,59,0.05);
  transition: all 0.3s ease; position: relative;
}
.temoin-card:hover { box-shadow: 0 8px 30px rgba(27,94,59,0.08); }
.temoin-stars {
  color: var(--gold); font-size: 0.85rem; margin-bottom: 0.8rem;
  letter-spacing: 0.1em;
}
.temoin-quote {
  font-size: 0.9rem; color: var(--txt-light); line-height: 1.75;
  font-style: italic; margin-bottom: 1rem;
}
.temoin-quote::before { content: '\201C'; font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); opacity: 0.4; line-height: 0; vertical-align: -0.3em; margin-right: 0.1em; }
.temoin-name { font-weight: 700; color: var(--violet-deep); font-size: 0.85rem; }

/* --- FAQ --- */
.faq { background: linear-gradient(180deg, var(--cream) 0%, #fff 100%); }
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(27,94,59,0.08);
}
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0; font-family: 'Playfair Display', serif;
  font-size: 1.05rem; color: var(--violet-deep); text-align: left;
  font-weight: 500; line-height: 1.4; gap: 1rem;
  transition: color 0.3s ease;
}
.faq-question:hover { color: var(--violet-light); }
.faq-question svg {
  flex-shrink: 0; width: 20px; height: 20px; color: var(--gold);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 0 1.5rem 0;
  font-size: 0.92rem; color: var(--txt-light); line-height: 1.8;
}

/* --- CTA FINAL --- */
.cta-final {
  background: linear-gradient(160deg, var(--violet-dark) 0%, var(--violet-mid) 50%, var(--violet-deep) 100%);
  text-align: center; padding: 5rem 1.5rem; position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,165,116,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final-inner { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.cta-final-label {
  font-family: 'Great Vibes', cursive; font-size: 2rem; color: var(--gold);
  margin-bottom: 0.5rem;
}
.cta-final-title {
  font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff; font-weight: 600; margin-bottom: 1rem; line-height: 1.3;
}
.cta-final-desc {
  font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.7;
  margin-bottom: 2rem;
}
.cta-final .btn-primary { font-size: 0.95rem; padding: 1.1rem 2.5rem; }

/* --- CONTACT --- */
.contact { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
.contact-top { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 2.5rem; }
.contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.contact-item {
  display: flex; gap: 0.8rem; align-items: flex-start;
  background: #fff; border-radius: 0.8rem; padding: 1rem 1.2rem;
  border: 1px solid rgba(27,94,59,0.06);
  transition: all 0.3s;
}
.contact-item:hover { box-shadow: 0 4px 15px rgba(27,94,59,0.06); }
.contact-icon {
  width: 36px; height: 36px; border-radius: 0.5rem; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(27,94,59,0.08), rgba(27,94,59,0.03));
  display: flex; align-items: center; justify-content: center;
  color: var(--violet-deep);
}
.contact-item h4 { font-size: 0.85rem; color: var(--violet-deep); margin-bottom: 0.15rem; font-weight: 600; }
.contact-item p { font-size: 0.8rem; color: var(--txt-light); line-height: 1.5; }
.contact-item a { color: var(--txt-light); text-decoration: none; transition: color 0.3s; }
.contact-item a:hover { color: var(--violet-deep); }
.btn-reservio {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--violet-dark); font-weight: 700; padding: 0.9rem 2rem;
  border-radius: 3rem; text-decoration: none; font-size: 0.9rem;
  transition: all 0.3s; margin-top: 0.5rem;
  box-shadow: 0 4px 20px rgba(212,165,116,0.25);
}
.btn-reservio:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(212,165,116,0.35); }

.contact-cta-block {
  display: flex; flex-direction: column; gap: 1rem;
  align-items: stretch; justify-content: center;
  background: #fff; border-radius: 1rem;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(27,94,59,0.08);
  box-shadow: 0 6px 25px rgba(27,94,59,0.06);
}
.contact-cta-intro {
  font-size: 0.9rem; color: var(--txt-light);
  line-height: 1.6; margin-bottom: 0.5rem;
  text-align: center;
}
.contact-cta-btn {
  width: 100%; text-align: center; justify-content: center;
  margin-top: 0 !important;
}
.contact-cta-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.6rem; padding: 0.85rem 1rem;
  border: 1px solid rgba(27,94,59,0.15);
  border-radius: 0.6rem;
  color: var(--violet-deep); text-decoration: none;
  font-size: 0.92rem; font-weight: 600;
  background: var(--cream);
  transition: all 0.25s ease;
}
.contact-cta-secondary:hover {
  background: #fff; border-color: var(--violet-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(27,94,59,0.08);
}
.contact-cta-secondary svg { flex-shrink: 0; color: var(--gold); }

/* --- FOOTER --- */
.footer {
  background: var(--violet-dark); color: rgba(255,255,255,0.5);
  padding: 4rem 1.5rem 2rem; position: relative;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem;
}
.footer-brand { font-family: 'Great Vibes', cursive; font-size: 1.8rem; color: var(--gold); margin-bottom: 0.5rem; }
.footer-desc { font-size: 0.85rem; line-height: 1.7; }
.footer h4 { color: rgba(255,255,255,0.8); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; font-family: 'Lato', sans-serif; font-weight: 700; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1100px; margin: 3rem auto 0; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06); text-align: center;
  font-size: 0.75rem; color: rgba(255,255,255,0.25);
}

/* Lien vers section tirages depuis presta-card */
.presta-card-link {
  display: inline-block; margin-top: 1.2rem;
  color: var(--gold-light); font-size: 0.9rem;
  text-decoration: none; font-weight: 600;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(212,165,116,0.4);
  padding-bottom: 2px; transition: color 0.25s ease, border-color 0.25s ease;
}
.presta-card-link:hover {
  color: var(--gold-bright); border-color: var(--gold-bright);
}

/* --- TIRAGES DETAIL — section dédiée tirages --- */
.tirages-detail {
  background: var(--cream);
  padding: 6rem 1.5rem;
  position: relative;
}
.tirages-detail .section-intro {
  max-width: 720px; margin: 1.5rem auto 0;
  font-size: 1.05rem; line-height: 1.75; color: var(--txt-light);
  text-align: center;
}

/* Quiz */
.quiz-container {
  max-width: 760px; margin: 4rem auto 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--cream-dark) 100%);
  border: 1px solid rgba(212,165,116,0.25);
  border-radius: 14px;
  padding: 3rem 2.5rem;
  box-shadow: 0 12px 40px rgba(27,94,59,0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quiz-container::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.quiz-overline {
  font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 0.7rem;
}
.quiz-title {
  font-size: 2rem; color: var(--violet-deep); margin-bottom: 0.5rem;
}
.quiz-sub {
  color: var(--txt-light); font-size: 0.95rem; margin-bottom: 2.5rem;
}
.quiz-wizard { position: relative; min-height: 280px; }
.quiz-step { display: none; opacity: 0; transition: opacity 0.4s ease; }
.quiz-step.active { display: block; opacity: 1; }
.quiz-progress {
  display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 1.5rem;
}
.quiz-progress-dot {
  width: 30px; height: 4px; border-radius: 2px;
  background: rgba(122,155,133,0.25); transition: background 0.3s ease;
}
.quiz-progress-dot.active { background: var(--gold); }
.quiz-progress-dot.done { background: var(--violet-light); }
.quiz-question-label {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--txt-muted); margin-bottom: 0.5rem;
}
.quiz-question {
  font-size: 1.35rem; color: var(--violet-deep);
  margin-bottom: 1.8rem; line-height: 1.4; font-weight: 600;
}
.quiz-options {
  display: flex; flex-direction: column; gap: 0.7rem; max-width: 480px; margin: 0 auto;
}
.quiz-option {
  background: white; border: 1.5px solid rgba(122,155,133,0.2);
  border-radius: 10px; padding: 1rem 1.4rem;
  font-family: 'Lato', sans-serif; font-size: 1rem; color: var(--txt-dark);
  cursor: pointer; transition: all 0.25s ease; text-align: left;
  line-height: 1.4;
}
.quiz-option:hover {
  border-color: var(--gold); background: var(--cream-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,165,116,0.18);
}
.quiz-result-card { display: none; }
.quiz-result-card.show { display: block; }
.quiz-result-label {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 0.7rem;
}
.quiz-result-title {
  font-size: 2rem; color: var(--violet-deep); margin-bottom: 0.4rem;
}
.quiz-result-price {
  color: var(--gold); font-family: 'Playfair Display', serif; font-style: italic;
}
.quiz-result-desc {
  color: var(--txt-light); font-size: 1rem; line-height: 1.7;
  max-width: 540px; margin: 0.5rem auto 1.5rem;
}
.quiz-result-list {
  list-style: none; max-width: 380px; margin: 0 auto 2rem;
  text-align: left;
}
.quiz-result-list li {
  padding: 0.4rem 0 0.4rem 1.5rem; position: relative;
  color: var(--txt-light); font-size: 0.95rem;
}
.quiz-result-list li::before {
  content: '✦'; position: absolute; left: 0; color: var(--gold);
}
.quiz-result-actions {
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
}
.quiz-restart {
  background: none; border: none; color: var(--txt-muted);
  font-family: 'Lato', sans-serif; font-size: 0.9rem; cursor: pointer;
  text-decoration: underline; padding: 0.3rem;
}
.quiz-restart:hover { color: var(--violet-deep); }
.quiz-alt {
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(122,155,133,0.15);
  color: var(--txt-muted); font-size: 0.9rem;
}
.quiz-alt a { color: var(--gold); text-decoration: none; font-weight: 600; }
.quiz-alt a:hover { text-decoration: underline; }

/* Themes */
.themes-block {
  max-width: 1100px; margin: 6rem auto 0; text-align: center;
}
.themes-title {
  font-size: 2rem; color: var(--violet-deep); margin-bottom: 0.7rem;
}
.themes-intro {
  color: var(--txt-light); max-width: 600px; margin: 0 auto 3rem;
  font-size: 1rem; line-height: 1.7;
}
.themes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 2rem;
}
.theme-card {
  background: white; border: 1px solid rgba(122,155,133,0.18);
  border-radius: 12px; padding: 2.2rem 1.8rem;
  text-align: left; transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.theme-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(27,94,59,0.10);
}
.theme-card-icon {
  font-size: 2rem; color: var(--gold);
  margin-bottom: 0.8rem; line-height: 1;
}
.theme-card h4 {
  font-size: 1.4rem; color: var(--violet-deep); margin-bottom: 0.7rem;
}
.theme-card-intro {
  color: var(--txt-light); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.2rem;
}
.theme-card-examples-label {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 0.6rem;
}
.theme-card-list {
  list-style: none; padding: 0;
}
.theme-card-list li {
  padding: 0.35rem 0 0.35rem 1.2rem; position: relative;
  color: var(--txt-dark); font-size: 0.92rem; line-height: 1.5;
}
.theme-card-list li::before {
  content: '·'; position: absolute; left: 0.3rem; color: var(--gold); font-size: 1.5rem; line-height: 0.5;
}

/* Process */
.process-block {
  max-width: 1100px; margin: 6rem auto 0; text-align: center;
}
.process-title {
  font-size: 2rem; color: var(--violet-deep); margin-bottom: 0.7rem;
}
.process-intro {
  color: var(--txt-light); max-width: 600px; margin: 0 auto 3rem;
  font-size: 1rem; line-height: 1.7;
}
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; list-style: none; padding: 0;
  counter-reset: step;
}
.process-step {
  background: var(--cream-dark); border-radius: 12px;
  padding: 2rem 1.5rem; text-align: center; position: relative;
  border: 1px solid rgba(122,155,133,0.12);
}
.process-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--violet-deep); color: var(--gold);
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700;
  margin-bottom: 1rem;
}
.process-step h4 {
  font-size: 1.15rem; color: var(--violet-deep);
  margin-bottom: 0.7rem; line-height: 1.3;
}
.process-step p {
  color: var(--txt-light); font-size: 0.92rem; line-height: 1.6;
}

/* Témoignages tirages */
.tirages-temoignages {
  max-width: 1100px; margin: 6rem auto 0; text-align: center;
}
.tirages-temoignages-title {
  font-size: 2rem; color: var(--violet-deep); margin-bottom: 0.7rem;
}
.tirages-temoignages-intro {
  color: var(--txt-light); max-width: 600px; margin: 0 auto 3rem;
  font-size: 1rem; line-height: 1.7;
}
.tirages-temoignages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; text-align: left;
}
.tirages-temoin-card {
  background: #fff;
  border: 1px solid rgba(212,165,116,0.2);
  border-radius: 12px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 6px 20px rgba(27,94,59,0.06);
  position: relative;
}
.tirages-temoin-card::before {
  content: '"'; position: absolute; top: -0.5rem; left: 1rem;
  font-family: 'Playfair Display', serif; font-size: 3.5rem;
  color: var(--gold); line-height: 1; opacity: 0.4;
}
.tirages-temoin-stars {
  color: var(--gold); font-size: 0.9rem;
  letter-spacing: 0.15em; margin-bottom: 0.7rem;
}
.tirages-temoin-quote {
  color: var(--txt-dark); font-size: 0.95rem;
  line-height: 1.7; margin-bottom: 1rem;
  font-style: italic;
}
.tirages-temoin-name {
  color: var(--violet-deep); font-weight: 600;
  font-size: 0.9rem; letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Photos tirages */
.tirages-hero-img {
  max-width: 420px; margin: 3rem auto 0;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 18px 50px rgba(27,94,59,0.18);
  position: relative;
}
.tirages-hero-img img {
  width: 100%; height: auto; display: block;
}
.theme-card-img {
  width: 100%; height: 180px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.2rem;
  box-shadow: 0 6px 18px rgba(27,94,59,0.1);
}
.theme-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; padding: 7rem 1.5rem 4rem; gap: 2.5rem; text-align: center; }
  .hero-desc { margin: 0 auto 0.8rem; }
  .hero-location { margin-bottom: 2rem; }
  .hero-actions { justify-content: center; }
  .hero-image-frame { width: 280px; }
  .hero-scroll-hint { display: none; }
  .apropos-grid { grid-template-columns: 1fr; gap: 2rem; }
  .apropos-img { max-width: 300px; margin: 0 auto; }
  .prestations-grid { grid-template-columns: 1fr; max-width: 100%; }
  .tarifs-grid { grid-template-columns: 1fr; max-width: 400px; }
  .temoin-grid { grid-template-columns: 1fr; }
  .contact-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-info { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .tirages-detail { padding: 4rem 1.2rem; }
  .quiz-container { padding: 2.2rem 1.5rem; }
  .quiz-title { font-size: 1.6rem; }
  .quiz-question { font-size: 1.15rem; }
  .quiz-result-title { font-size: 1.6rem; }
  .themes-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 1rem; }
  .themes-block, .process-block, .tirages-temoignages { margin-top: 4rem; }
  .tirages-temoignages-grid { grid-template-columns: 1fr; }
  .tirages-hero-img { max-width: 300px; }
  .theme-card-img { height: 160px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .themes-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

/* === TOPBAR SOCIALS === */
.topbar {
  background: var(--violet-dark);
  border-bottom: 1px solid rgba(212,165,116,0.08);
  height: 36px;
  display: flex; align-items: center;
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 101;
}
.topbar-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem; width: 100%;
  display: flex; justify-content: flex-end; align-items: center;
  gap: 1.2rem;
}
.topbar-socials {
  display: flex; gap: 0.9rem; align-items: center;
}
.topbar-socials a {
  color: rgba(255,255,255,0.55);
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  transition: color 0.25s ease, transform 0.25s ease;
}
.topbar-socials a:hover {
  color: var(--gold);
  transform: translateY(-1px);
}
.topbar-socials svg { width: 18px; height: 18px; display: block; }
.topbar-socials a[aria-disabled="true"] {
  opacity: 0.35; pointer-events: none; cursor: default;
}

/* Quand la topbar est présente, on pousse la nav et le hero */
body.has-topbar .nav { top: 36px; }
body.has-topbar .hero,
body.has-topbar .subhero {
  padding-top: calc(9rem + 36px);
}

@media (max-width: 768px) {
  .topbar { height: 32px; }
  .topbar-inner { padding: 0 1.2rem; justify-content: center; gap: 1.5rem; }
  .topbar-socials { gap: 1.4rem; }
  .topbar-socials a { width: 24px; height: 24px; }
  .topbar-socials svg { width: 16px; height: 16px; }
  body.has-topbar .nav { top: 32px; }
  body.has-topbar .hero,
  body.has-topbar .subhero { padding-top: calc(8rem + 32px); }
}

/* === SUBPAGES === */

/* Sub-page hero (more compact than the main one) */
.subhero {
  background: linear-gradient(180deg, var(--violet-dark) 0%, var(--violet-deep) 100%);
  color: #fff; padding: 9rem 1.5rem 5rem;
  position: relative; overflow: hidden;
}
.subhero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(212,165,116,0.15), transparent 40%),
    radial-gradient(circle at 82% 78%, rgba(94,184,133,0.12), transparent 45%);
  pointer-events: none;
}
.subhero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.subhero-text .hero-subtitle {
  color: var(--gold-light);
  font-family: 'Great Vibes', cursive; font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.subhero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700; line-height: 1.05;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 1.5rem; color: #fff;
}
.subhero-title em {
  font-style: italic; color: var(--gold);
  display: inline-block;
}
.subhero-desc {
  font-size: 1.05rem; line-height: 1.75;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem; max-width: 540px;
}
.subhero-img {
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,0.4);
  transform: rotate(-1.5deg);
  max-width: 420px; justify-self: end;
}
.subhero-img img { width: 100%; height: auto; display: block; }

/* Nav subpage variant: keep the bar opaque from the start */
.nav-subpage { background: rgba(10, 46, 28, 0.95); backdrop-filter: blur(12px); }

/* Equal-height testimonial cards in tirages */
.tirages-temoignages-grid { align-items: stretch; }
.tirages-temoin-card { display: flex; flex-direction: column; }
.tirages-temoin-card .tirages-temoin-quote { flex: 1; }

/* Section section reset for the new sections on /tirages/ */
.themes-section { background: #fff; }
.process-section { background: var(--cream); }
.temoignages-tirages-section { background: #fff; }

@media (max-width: 768px) {
  .subhero { padding: 7rem 1.2rem 3rem; }
  .subhero-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .subhero-desc { margin-left: auto; margin-right: auto; }
  .subhero-img { transform: none; max-width: 280px; justify-self: center; }
  .hero-actions { justify-content: center; }
}

