*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: #0c0a08; color: #f0ece4; overflow-x: hidden; }

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96E;
  --gold-dark: #9A7530;
  --green: #1a5c2e;
  --cream: #f5f0e8;
  --dark: #0c0a08;
  --dark-2: #161210;
  --dark-3: #1e1a14;
  --text-muted: #a89880;
}

/* UTILS */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

.gold-text {
  background: linear-gradient(135deg, #C9A84C 0%, #F0D78C 50%, #C9A84C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1.2rem;
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201,168,76,.08);
  margin-bottom: 1.2rem;
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.2rem auto;
}

.ornament { display: flex; align-items: center; gap: 1rem; justify-content: center; margin: 1rem 0; }
.ornament-line { flex: 1; max-width: 80px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.ornament-line.right { background: linear-gradient(90deg, var(--gold), transparent); }
.ornament-diamond { width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); }

/* BUTTONS */
.btn-gold {
  padding: .9rem 2rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--dark);
  font-weight: 700;
  font-size: .95rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all .3s ease;
  box-shadow: 0 4px 24px rgba(201,168,76,.35);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Outfit', sans-serif;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,.5); }

.btn-outline {
  padding: .9rem 2rem;
  background: transparent;
  color: var(--gold-light);
  font-weight: 600;
  font-size: .95rem;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid rgba(201,168,76,.5);
  transition: all .3s ease;
  font-family: 'Outfit', sans-serif;
}
.btn-outline:hover { background: rgba(201,168,76,.1); border-color: var(--gold); }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(12,10,8,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,.15);
  padding: 1rem 0;
}
nav .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--gold); letter-spacing: .04em;
  white-space: nowrap;
}
.nav-logo span { color: var(--cream); font-weight: 400; }

.nav-links { display: flex; gap: 1.5rem; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: .9rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  padding: .6rem 1.4rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark); font-weight: 700; font-size: .85rem;
  border-radius: 4px; text-decoration: none; letter-spacing: .04em;
  transition: all .3s ease; white-space: nowrap;
}
.nav-cta:hover { box-shadow: 0 4px 20px rgba(201,168,76,.4); transform: translateY(-1px); }

.menu-btn {
  display: none; background: none; border: none;
  color: var(--gold); font-size: 1.4rem; cursor: pointer;
}

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; padding-top: 80px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(26,92,46,.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(201,168,76,.12) 0%, transparent 50%),
    #0c0a08;
}
.hero-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201,168,76,.12);
  animation: ringPulse 8s ease-in-out infinite;
}
.r1 { width: 400px; height: 400px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 0s; }
.r2 { width: 680px; height: 680px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 1.5s; }
.r3 { width: 950px; height: 950px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 3s; }

@keyframes ringPulse {
  0%, 100% { opacity: .3; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: .7; transform: translate(-50%,-50%) scale(1.04); }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 860px; margin: 0 auto;
  animation: fadeUp 1.2s ease-out both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-flag { font-size: 2rem; margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; gap: .8rem; }
.hero-flag-text { font-size: .8rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.hero-supertitle { font-size: .85rem; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem; }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900; line-height: 1.1;
  color: var(--cream); margin-bottom: .5rem;
}
.hero-title em { font-style: italic; display: block; }

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 600; font-style: italic;
  color: var(--gold); margin-bottom: 2rem;
}

.hero-meta { display: flex; align-items: center; justify-content: center; gap: 2rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.hero-meta-item { display: flex; flex-direction: column; align-items: center; gap: .2rem; }
.hero-meta-icon { font-size: 1.3rem; }
.hero-meta-label { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); }
.hero-meta-value { font-size: 1rem; font-weight: 600; color: var(--cream); }
.hero-meta-sep { width: 1px; height: 40px; background: rgba(201,168,76,.3); }

.hero-cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.scroll-ind {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--text-muted); font-size: .75rem; letter-spacing: .1em;
  animation: bounce 2s infinite;
}
.scroll-arrow { font-size: 1.2rem; color: var(--gold); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* SECTIONS */
.section { padding: 7rem 0; position: relative; }
.section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-alt  { background: var(--dark-2); }
.section-main { background: var(--dark); }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--cream); margin-bottom: .8rem;
}
.section-desc { color: var(--text-muted); font-size: 1rem; max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--cream); margin-bottom: 1rem; }
.about-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; font-size: .95rem; }

.about-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 12px; padding: 2rem;
  position: relative; overflow: hidden;
}
.about-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.about-stat {
  text-align: center; padding: 1.5rem 1rem;
  background: rgba(201,168,76,.05);
  border-radius: 8px; border: 1px solid rgba(201,168,76,.1);
}
.about-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: .4rem;
}
.about-stat-label { font-size: .75rem; color: var(--text-muted); letter-spacing: .06em; }

/* PROGRAMME */
.days-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.day-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 12px; overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.day-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,.4); }

.day-header {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(26,92,46,.6), rgba(12,10,8,.8));
  border-bottom: 1px solid rgba(201,168,76,.2);
}
.day-flag   { font-size: 1.5rem; margin-bottom: .5rem; }
.day-label  { font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.day-name   { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--cream); }
.day-date   { font-size: .8rem; color: var(--text-muted); margin-top: .2rem; }

.day-events { padding: 1.2rem; }
.ev { display: flex; gap: .8rem; padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.ev:last-child { border-bottom: none; }
.ev-time { font-size: .75rem; font-weight: 700; color: var(--gold); min-width: 42px; padding-top: .1rem; letter-spacing: .04em; }
.ev-ico  { font-size: 1rem; min-width: 22px; }
.ev-desc { font-size: .85rem; color: rgba(240,236,228,.85); line-height: 1.5; }

.ev-hl {
  background: rgba(201,168,76,.08);
  border-radius: 6px; padding: .7rem;
  border-left: 2px solid var(--gold);
  margin: .3rem 0;
}
.ev-hl .ev-desc { color: var(--cream); font-weight: 600; }

/* INCLUS */
.included-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; }
.inc-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: 10px; padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: all .3s ease;
}
.inc-card:hover { border-color: rgba(201,168,76,.35); background: rgba(201,168,76,.04); }
.inc-ico { font-size: 1.7rem; min-width: 36px; }
.inc-info h4 { font-family: 'Playfair Display', serif; font-size: .95rem; font-weight: 700; color: var(--cream); margin-bottom: .3rem; }
.inc-info p  { font-size: .82rem; color: var(--text-muted); line-height: 1.5; }

/* TARIFS */
.tarifs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; max-width: 900px; margin: 3rem auto 0;
}
.tarif-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 12px; padding: 2rem; text-align: center;
  transition: all .3s ease;
}
.tarif-card.featured {
  background: linear-gradient(160deg, rgba(26,92,46,.4), rgba(12,10,8,.9));
  border-color: var(--gold);
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(201,168,76,.2);
}
.tarif-card:hover:not(.featured) { transform: translateY(-4px); border-color: rgba(201,168,76,.4); }

.tarif-badge {
  display: inline-block; padding: .25rem .8rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark); font-size: .68rem; font-weight: 800;
  letter-spacing: .1em; border-radius: 999px;
  margin-bottom: 1rem; text-transform: uppercase;
}
.tarif-name   { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--cream); margin-bottom: .5rem; }
.tarif-price  { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; line-height: 1; margin-bottom: .3rem; }
.tarif-period { font-size: .82rem; color: var(--text-muted); margin-bottom: 1.5rem; }

.tarif-features { list-style: none; text-align: left; }
.tarif-features li {
  padding: .45rem 0; font-size: .82rem; color: var(--text-muted);
  display: flex; gap: .6rem; align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.tarif-features li:last-child { border-bottom: none; }
.tarif-features li::before { content: '✦'; color: var(--gold); font-size: .55rem; margin-top: .38rem; flex-shrink: 0; }
.gold-val { color: var(--gold); }

.tarif-note { text-align: center; margin-top: 2rem; }
.tarif-note p { font-size: .84rem; color: var(--text-muted); margin-bottom: .4rem; }
.tarif-note strong { color: var(--cream); }
.tarif-note a { color: var(--gold); text-decoration: none; }
.tarif-note a:hover { text-decoration: underline; }


/* ═══════════════════════════════════════════
   FORMULAIRE DE RÉSERVATION
═══════════════════════════════════════════ */

.form-container {
  max-width: 700px;
  margin: 0 auto;
}

.reservation-form {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 12px;
  padding: 2.5rem;
}

.form-section {
  margin-bottom: 2.5rem;
}

.form-section:last-of-type {
  margin-bottom: 2rem;
}

.form-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.required {
  color: var(--gold);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.8rem;
  background: rgba(12,10,8,0.6);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 6px;
  color: var(--cream);
  font-size: 0.95rem;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(12,10,8,0.8);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

/* Formules */
.formule-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.formule-card {
  position: relative;
  background: rgba(12,10,8,0.6);
  border: 2px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.formule-card:hover {
  border-color: rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.05);
}

.formule-card input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.formule-card input[type="radio"]:checked ~ .formule-content {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}

.formule-card input[type="radio"]:checked + .formule-content .formule-price {
  color: var(--gold);
}

.formule-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.formule-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.formule-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Options */
.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.option-checkbox {
  background: rgba(12,10,8,0.6);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.option-checkbox:hover {
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.05);
}

.option-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--gold);
}

.option-content {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: 1;
}

.option-icon {
  font-size: 1.5rem;
}

.option-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cream);
}

.option-price {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
}

/* Footer formulaire */
.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,168,76,0.2);
  margin-bottom: 1rem;
}

.total-display {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.total-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.total-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  white-space: nowrap;
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 600px) {
  .form-row,
  .formule-options,
  .options-grid {
    grid-template-columns: 1fr;
  }
  
  .form-footer {
    flex-direction: column;
    text-align: center;
  }
  
  .reservation-form {
    padding: 1.5rem;
  }
}

/* CONTACT */
.pratique-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.2rem; }
.prat-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 10px; padding: 1.8rem;
}
.prat-ico { font-size: 2rem; margin-bottom: .8rem; }
.prat-card h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--cream); margin-bottom: .7rem; }
.prat-card p, .prat-card a { font-size: .86rem; color: var(--text-muted); line-height: 1.8; text-decoration: none; display: block; }
.prat-card a:hover { color: var(--gold); }
.hi { color: var(--gold-light) !important; font-weight: 600; }
.gold-date { color: var(--gold); font-weight: 600; }
.email-link { color: var(--gold) !important; font-size: .78rem !important; word-break: break-all; }

/* FINAL CTA */
.final-cta { padding: 8rem 0; text-align: center; position: relative; overflow: hidden; background: var(--dark); }
.final-cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.fcta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(26,92,46,.2) 0%, transparent 70%); }
.fcta-content { position: relative; z-index: 2; }
.fcta-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: var(--cream); margin-bottom: 1rem; }
.fcta-content p { color: var(--text-muted); font-size: 1.05rem; max-width: 500px; margin: 0 auto 2.5rem; }
.fcta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.fcta-tagline { margin-top: 1.5rem; font-size: .86rem; color: var(--text-muted); }

/* FOOTER */
footer { background: var(--dark); border-top: 1px solid rgba(201,168,76,.15); padding: 2rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--gold); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: .82rem; color: var(--text-muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: .7rem; }
.footer-social a { width: 34px; height: 34px; border: 1px solid rgba(201,168,76,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .85rem; text-decoration: none; transition: all .2s; }
.footer-social a:hover { border-color: var(--gold); background: rgba(201,168,76,.1); }
.footer-copy { text-align: center; margin-top: 1.2rem; font-size: .76rem; color: rgba(168,152,128,.45); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .days-grid    { grid-template-columns: 1fr; }
  .tarifs-grid  { grid-template-columns: 1fr; }
  .about-grid   { grid-template-columns: 1fr; }
  .tarif-card.featured { transform: scale(1); }
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: rgba(12,10,8,.98); padding: 1.5rem; gap: 1rem; border-bottom: 1px solid rgba(201,168,76,.15); }
}
@media (max-width: 600px) {
  .hero-meta { flex-direction: column; gap: .8rem; }
  .hero-meta-sep { display: none; }
  .hero-cta-group, .fcta-btns { flex-direction: column; align-items: center; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { flex-direction: column; align-items: center; gap: .8rem; }
}