:root {
  --beige: #f5f0e8;
  --creme: #faf7f2;
  --terracotta: #c97d5b;
  --terracotta-light: #e8a882;
  --brun: #7a5c48;
  --brun-fonce: #3d2b1f;
  --blanc: #fffdf9;
  --sage: #a8b5a0;
  --or: #c9a96e;
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 125, 91, 0.15);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--brun-fonce);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-logo span { color: var(--terracotta); font-style: italic; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--brun);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--terracotta); }

.nav-cta {
  background: var(--terracotta);
  color: white !important;
  padding: 0.6rem 1.4rem;
  border-radius: 2rem;
  transition: background 0.3s !important;
}

.nav-cta:hover { background: var(--brun) !important; color: white !important; }

/* HERO */
#accueil {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 6rem;
  position: relative;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--terracotta);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--brun-fonce);
  margin-bottom: 0.3rem;
}

.hero-title em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--brun);
  margin-bottom: 2rem;
}

.hero-subtitle-2 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 2.5rem;
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--brun);
  max-width: 420px;
  margin-bottom: 3rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--terracotta);
  color: white;
  padding: 1rem 2.2rem;
  border-radius: 3rem;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 2px solid var(--terracotta);
}

.btn-primary:hover {
  background: transparent;
  color: var(--terracotta);
}

.btn-secondary {
  color: var(--brun);
  padding: 1rem 2.2rem;
  border-radius: 3rem;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--brun);
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--brun);
  color: white;
}

.hero-right {
  position: relative;
  background: var(--beige);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-circle {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta-light) 0%, var(--terracotta) 50%, var(--brun) 100%);
  opacity: 0.15;
  position: absolute;
}

.hero-circle-2 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid var(--terracotta);
  opacity: 0.3;
  position: absolute;
}

.hero-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--brun-fonce);
  text-align: center;
  padding: 3rem;
  position: relative;
  z-index: 1;
  line-height: 1.5;
}

.hero-quote::before {
  content: '«';
  font-size: 5rem;
  color: var(--terracotta);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-style: normal;
}

.hero-stats {
  position: absolute;
  bottom: 3rem;
  display: flex;
  gap: 3rem;
}

.stat { text-align: center; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--terracotta);
  display: block;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brun);
}

/* SECTIONS */
section { padding: 7rem 6rem; }

.section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--terracotta);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--brun-fonce);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--terracotta);
}

/* À PROPOS */
#apropos {
  background: var(--blanc);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.apropos-visual { position: relative; }

.apropos-card {
  background: var(--beige);
  border-radius: 2px;
  padding: 3rem;
  position: relative;
}

.apropos-card::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid var(--terracotta);
  opacity: 0.4;
  border-radius: 2px;
}

.apropos-card-tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}

.apropos-card-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--brun-fonce);
}

.apropos-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.badge {
  background: white;
  border: 1px solid var(--terracotta);
  color: var(--terracotta);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.apropos-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--brun);
  margin-bottom: 1.5rem;
}

.apropos-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.value-icon { font-size: 1.3rem; margin-top: 0.1rem; }

.value-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brun-fonce);
  margin-bottom: 0.3rem;
}

.value-desc {
  font-size: 0.85rem;
  color: var(--brun);
  line-height: 1.6;
}

/* EXPÉRIENCE */
#experience {
  background: var(--brun-fonce);
  color: white;
  text-align: center;
}

#experience .section-tag { color: var(--terracotta-light); justify-content: center; }
#experience .section-tag::before { background: var(--terracotta-light); }
#experience .section-title { color: white; text-align: center; }

.experience-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  margin-top: 4rem;
  border-radius: 4px;
  overflow: hidden;
}

.exp-step {
  background: var(--brun-fonce);
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  transition: background 0.3s;
}

.exp-step:hover { background: rgba(201,125,91,0.15); }

.exp-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--terracotta);
  opacity: 0.4;
  display: block;
  margin-bottom: 1rem;
}

.exp-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }

.exp-title {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  margin-bottom: 0.8rem;
}

.exp-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

/* PRESTATIONS */
#prestations { background: var(--creme); }

.prestations-intro {
  max-width: 600px;
  margin-bottom: 4rem;
}

.prestations-intro p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--brun);
}

.prestations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.presta-card {
  background: white;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(201,125,91,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.presta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(61,43,31,0.1);
}

.presta-header {
  background: var(--beige);
  padding: 2rem;
  border-bottom: 1px solid rgba(201,125,91,0.15);
}

.presta-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }

.presta-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--brun-fonce);
  margin-bottom: 0.5rem;
}

.presta-tagline { font-size: 0.8rem; color: var(--terracotta); font-style: italic; }

.presta-body { padding: 2rem; }

.presta-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--brun);
  margin-bottom: 2rem;
}

.tarifs-title {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.tarif-ligne {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--beige);
  font-size: 0.9rem;
}

.tarif-ligne:last-child { border-bottom: none; }
.tarif-duree { color: var(--brun); }

.tarif-prix {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--terracotta);
  font-weight: 500;
}

/* FORFAITS */
.forfaits-section {
  margin-top: 4rem;
  background: var(--beige);
  padding: 3rem;
  border-radius: 2px;
}

.forfaits-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--brun-fonce);
  margin-bottom: 0.5rem;
}

.forfaits-sub {
  font-size: 0.85rem;
  color: var(--brun);
  margin-bottom: 2.5rem;
}

.forfaits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.forfait-card {
  background: white;
  padding: 2rem;
  border-radius: 2px;
  border-left: 3px solid var(--terracotta);
}

.forfait-name {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.8rem;
}

.forfait-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--brun-fonce);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.forfait-prix {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.forfait-prix-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--terracotta);
}

.forfait-prix-old {
  font-size: 0.85rem;
  color: var(--sage);
  text-decoration: line-through;
}

/* TÉMOIGNAGES */
#temoignages { background: var(--beige); }

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.temoignage-card {
  background: white;
  padding: 2.5rem;
  border-radius: 2px;
  position: relative;
}

.temoignage-card::before {
  content: '«';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--terracotta);
  opacity: 0.15;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.temoignage-stars {
  color: var(--or);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.temoignage-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--brun);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.temoignage-author {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
}

/* BON CADEAU */
#cadeau {
  background: var(--terracotta);
  color: white;
  text-align: center;
  padding: 6rem;
}

#cadeau .section-tag { color: rgba(255,255,255,0.7); justify-content: center; }
#cadeau .section-tag::before { background: rgba(255,255,255,0.5); }
#cadeau .section-title { color: white; text-align: center; margin-bottom: 1.5rem; }

#cadeau p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto 3rem;
}

.btn-white {
  background: white;
  color: var(--terracotta);
  padding: 1rem 2.5rem;
  border-radius: 3rem;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-block;
  border: 2px solid white;
}

.btn-white:hover { background: transparent; color: white; }

/* CONTACT */
#contact {
  background: var(--blanc);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--brun);
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item-icon { font-size: 1.1rem; margin-top: 0.1rem; }

.contact-item-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.3rem;
}

.contact-item-value { font-size: 0.95rem; color: var(--brun-fonce); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brun);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(201,125,91,0.25);
  background: var(--creme);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--brun-fonce);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s;
  font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--terracotta); }

.form-group textarea { resize: vertical; min-height: 120px; }

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

.btn-submit {
  background: var(--terracotta);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3rem;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover { background: var(--brun); }

/* FOOTER */
footer {
  background: var(--brun-fonce);
  color: rgba(255,255,255,0.6);
  padding: 3rem 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: white;
}

.footer-logo span { color: var(--terracotta); font-style: italic; }

.footer-links { display: flex; gap: 2rem; }

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--terracotta); }

.footer-copy { font-size: 0.75rem; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-left > * { animation: fadeUp 0.8s ease both; }
.hero-eyebrow { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.2s; }
.hero-subtitle { animation-delay: 0.3s; }
.hero-subtitle-2 { animation-delay: 0.35s; }
.hero-desc { animation-delay: 0.4s; }
.hero-buttons { animation-delay: 0.5s; }

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--brun);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--terracotta), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* DIVIDER */
.divider {
  width: 60px;
  height: 1px;
  background: var(--terracotta);
  margin: 2rem 0;
  opacity: 0.5;
}

/* Ghost native elements reset */
.gh-content { display: none; }
