:root {
  --cream: #f0ebe0;
  --sand: #D7CCB9;
  --gold: #6B7436;
  --bronze: #8E3320;
  --dark: #1e1b14;
  --mid: #2a2518;
  --text: #3a3020;
  --moss: #6B7436;
  --steam: rgba(215,204,185,0.06);
  --beige: #D7CCB9;
  --vert: #6B7436;
  --rouge: #8E3320;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* --- RESPONSIVE MENU --- */
@media (max-width: 768px) {
  /* On cache la liste des liens et le bouton Réserver par défaut sur mobile */
  .nav-links, .btn-nav {
    display: none; 
  }

  /* Configuration du menu quand il est ouvert (classe .active ajoutée via JS) */
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; /* S'affiche juste en dessous de la barre nav */
    left: 0;
    width: 100%;
    background: rgba(26, 20, 16, 0.98); /* Même couleur que ta nav */
    padding: 40px 20px;
    gap: 25px;
    text-align: center;
    border-top: 1px solid var(--gold);
  }

  /* Style du bouton Hamburger (les 3 barres) */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--sand);
    transition: 0.3s;
  }
  
  /* Animation des barres en "X" quand le menu est ouvert */
  .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  background: linear-gradient(to bottom, rgba(26,20,16,0.95), transparent);
  transition: background 0.4s;
}
nav.scrolled { background: rgba(26,20,16,0.97); }
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--sand);
}
.logo span { color: var(--gold); font-style: italic; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.3s, color 0.3s;
}
.nav-links a:hover { opacity: 1; color: var(--sand); }
.btn-nav {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 10px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-nav:hover { background: var(--sand); }

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: HERO_IMG_PLACEHOLDER;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.45);
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,20,16,0.2) 0%, rgba(26,20,16,0.0) 40%, rgba(26,20,16,0.7) 100%);
}
.hero-content {
  position: relative;
  text-align: center;
  padding: 0 24px;
  animation: fadeUp 1.2s ease-out 0.3s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-label {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
   color: var(--cream);
  margin-bottom: 20px;
  opacity: 0.9;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.hero h1 em {
  font-style: italic;
  color: var(--sand);
}
.hero-sub {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  opacity: 0.7;
  margin-bottom: 44px;
}
.btn-primary {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--cream);
  padding: 14px 44px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  margin-right: 16px;
}
.btn-primary:hover { background: var(--gold); color: var(--dark); }
.btn-solid {
  display: inline-block;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--dark);
  padding: 14px 44px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-solid:hover { background: var(--sand); border-color: var(--sand); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: bounce 2s infinite;
}
.hero-scroll span { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; }
.hero-scroll-line { width: 1px; height: 40px; background: var(--cream); }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* SECTION COMMUNE */
section { padding: 100px 48px; }
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--sand); }
.section-text {
  font-size: 0.9rem;
  line-height: 1.9;
  opacity: 0.7;
  max-width: 500px;
}
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 32px 0;
}

/* ABOUT */
.about {
  background: var(--mid);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.about-images {
  position: relative;
  height: 600px;
  overflow: hidden;
}
.about-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85);
}
.about-img-inset {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border: 6px solid var(--mid);
  filter: brightness(0.9);
}
.about-text {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-info {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(184,149,106,0.15);
}
.info-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.9rem;
}
.info-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.info-value { font-size: 0.9rem; opacity: 0.8; }

/* SERVICES */
.services { background: var(--dark); }
.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1400px;
  margin: 0 auto;
}
.service-card {
  position: relative;
  height: 500px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s;
  filter: brightness(0.6);
}
.service-card:hover img { transform: scale(1.06); filter: brightness(0.45); }
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,20,16,0.95) 0%, rgba(26,20,16,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: background 0.5s;
}
.service-card:hover .service-overlay {
  background: linear-gradient(to top, rgba(26,20,16,0.98) 0%, rgba(26,20,16,0.5) 50%, rgba(26,20,16,0.1) 100%);
}
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.25;
  margin-bottom: 8px;
  line-height: 1;
}
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.service-price {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.service-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s 0.1s, max-height 0.4s;
}
.service-card:hover .service-desc { opacity: 0.75; max-height: 120px; }
.service-btn {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s 0.15s, transform 0.4s 0.15s;
  cursor: pointer;
  border: none;
  background: none;
  font-family: 'Jost', sans-serif;
}
.service-card:hover .service-btn { opacity: 1; transform: translateY(0); }

/* GALLERY STRIP */
.gallery-strip {
  padding: 0;
  display: flex;
  height: 320px;
  overflow: hidden;
}
.gallery-strip img {
  flex: 1;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.8);
  transition: flex 0.5s ease, filter 0.4s;
}
.gallery-strip img:hover { flex: 2.5; filter: brightness(0.9) saturate(1); }

/* BOOKING */
.booking {
  background: var(--mid);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.booking-info {
  padding: 80px 64px;
  background: linear-gradient(135deg, #2d241c 0%, #1a1410 100%);
  position: relative;
  overflow: hidden;
}
.booking-info::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184,149,106,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.booking-form-side {
  padding: 80px 64px;
  background: #231c14;
}
.booking-form-side h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 8px;
}
.booking-form-side p {
  font-size: 0.82rem;
  opacity: 0.6;
  margin-bottom: 40px;
}

/* FORM */
.form-group { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(245,239,230,0.05);
  border: 1px solid rgba(184,149,106,0.25);
  color: var(--cream);
  padding: 12px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
}
.form-group select option { background: var(--mid); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(184,149,106,0.06);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%;
  background: var(--gold);
  border: none;
  color: var(--dark);
  padding: 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--sand); }

.confirmation {
  display: none;
  text-align: center;
  padding: 40px 0;
}
.confirmation.show { display: block; }
.check-icon {
  width: 60px; height: 60px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.4rem;
  color: var(--gold);
}
.confirmation h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 12px;
}
.confirmation p { font-size: 0.85rem; opacity: 0.7; line-height: 1.8; }

/* PRICES */
.prices { background: var(--dark); }
.prices-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.prices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.price-card {
  border: 1px solid rgba(184,149,106,0.2);
  padding: 48px 36px;
  text-align: center;
  position: relative;
  transition: border-color 0.3s, background 0.3s;
}
.price-card:hover { border-color: var(--vert); background: rgba(107,116,54,0.06); }
.price-card.featured {
  border-color: var(--vert);
  background: rgba(107,116,54,0.07);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--vert);
  color: var(--dark);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 16px;
}
.price-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--sand);
}
.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}
.price-currency { font-size: 1.2rem; vertical-align: super; }
.price-period { font-size: 0.8rem; opacity: 0.5; margin-top: 4px; margin-bottom: 28px; }
.price-features { list-style: none; text-align: left; }
.price-features li {
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(184,149,106,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.8;
}
.price-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.5rem;
  flex-shrink: 0;
}

/* TESTIMONIALS */
.testimonials {
  background: #0e0b08;
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem;
  color: rgba(184,149,106,0.04);
  line-height: 1;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 24px;
  opacity: 0.85;
}
.testimonial-author { font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.t-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.3;
  cursor: pointer;
  transition: opacity 0.3s;
}
.t-dot.active { opacity: 1; }

/* FOOTER */
footer {
  background: #0d0a07;
  padding: 64px 48px 32px;
  border-top: 1px solid rgba(184,149,106,0.15);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--sand);
  margin-bottom: 16px;
}
.footer-logo span { color: var(--gold); font-style: italic; }
.footer-desc { font-size: 0.82rem; opacity: 0.5; line-height: 1.8; max-width: 280px; }
.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  text-decoration: none;
  color: var(--cream);
  font-size: 0.82rem;
  opacity: 0.55;
  transition: opacity 0.3s;
}
.footer-col a:hover { opacity: 1; }
.footer-col p { font-size: 0.82rem; opacity: 0.55; line-height: 1.9; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(184,149,106,0.1);
  font-size: 0.75rem;
  opacity: 0.35;
}

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,7,4,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--mid);
  border: 1px solid rgba(184,149,106,0.25);
  padding: 56px;
  width: 100%;
  max-width: 560px;
  position: relative;
  animation: slideIn 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.modal-close:hover { opacity: 1; }
.modal h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 8px;
}
.modal p { font-size: 0.82rem; opacity: 0.6; margin-bottom: 32px; }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 1px; background: var(--cream); transition: 0.3s; }

@media (max-width: 900px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  section { padding: 60px 24px; }
  nav { padding: 20px 24px; }
  .about, .booking { grid-template-columns: 1fr; }
  .about-images { height: 400px; }
  .about-text, .booking-info, .booking-form-side { padding: 48px 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .prices-grid { grid-template-columns: 1fr 1fr !important; max-width: 100% !important; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .modal { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-strip { height: 200px; }
  .hero h1 { font-size: 3rem; }
  
  /* HERO BUTTONS */
.hero-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hero-btns .btn-primary,
.hero-btns .btn-solid {
  width: 260px;
  text-align: center;
  box-sizing: border-box;
  margin: 0;
}
}