:root{
  /* ===== TES 5 COULEURS (inchangées) ===== */
  --c1: #6E715E; /* olive foncé */
  --c2: #9FA48F; /* vert sauge */
  --c3: #B59A91; /* taupe rosé */
  --c4: #E2C1BA; /* rose poudré */
  --c5: #F2DED9; /* ivoire rosé */

  /* ===== UTILISATION SOBRE ===== */
  --bg: #FAFAF8;                 /* fond NEUTRE (plus rose) */
  --text: var(--c1);
  --muted: rgba(110,113,94,.78);

  --border: rgba(110,113,94,.18);
  --shadow: 0 10px 24px rgba(110,113,94,.10);

  /* accents */
  --sage: var(--c2);
  --rose: var(--c3);

  --radius: 18px;
  --max: 1080px;
}

/* ================= BASE ================= */
*{ box-sizing:border-box; }
html, body{ margin:0; padding:0; }

body{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
.small{ font-size:.92rem; }
.muted{ color: var(--muted); }

.container{
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

/* ================= HEADER ================= */
.header{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250,250,248,.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.header-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding:.9rem 0;
}

.logo{
  display:flex;
  align-items:center;
  gap:.75rem;
}

.logo-badge{
  width:44px;
  height:44px;
  border-radius:14px;
  background: var(--sage);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
}

.logo-text{
  font-family: "Playfair Display", serif;
  font-weight:700;
  font-size:1.1rem;
}

.menu{
  display:flex;
  gap:.75rem;
}

.menu a{
  padding:.45rem .65rem;
  border-radius:999px;
  color:var(--muted);
}

.menu a:hover{
  background: rgba(159,164,143,.18);
  color: var(--text);
}

.menu-btn{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  border-radius:999px;
  padding:.55rem .9rem;
}

/* ================= HERO ================= */
.hero{ padding:2.6rem 0 1.6rem; }

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:1.6rem;
}

.pill{
  display:inline-block;
  padding:.25rem .7rem;
  border-radius:999px;
  background: rgba(159,164,143,.18);
  color: var(--muted);
  font-weight:600;
  margin-bottom:.8rem;
}

h1{
  font-family:"Playfair Display", serif;
  font-size:clamp(2rem,4vw,3.2rem);
  line-height:1.1;
  margin:0 0 .6rem;
}

.lead{
  color:var(--muted);
  margin-bottom:1.2rem;
  max-width:60ch;
}

.cta-row{
  display:flex;
  gap:.7rem;
  flex-wrap:wrap;
  margin-bottom:1rem;
}

/* ================= BOUTONS ================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.8rem 1.1rem;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  font-weight:600;
}

.btn:hover{ box-shadow:var(--shadow); }

.btn.primary{
  border:none;
  color:#fff;
  background:
    linear-gradient(
      135deg,
      var(--sage),
      var(--rose)
    );
}

.btn.small-btn{
  padding:.65rem .9rem;
  font-size:.95rem;
}

/* ================= COUNTDOWN ================= */
.countdown{
  display:flex;
  gap:.65rem;
  flex-wrap:wrap;
}

.cd{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:.65rem .9rem;
  min-width:110px;
}

.cd-num{ font-weight:900; font-size:1.35rem; }
.cd-lbl{ font-size:.9rem; color:var(--muted); }

/* ================= CARTES ================= */
.hero-card,
.card,
.timeline{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.hero-img{
  padding: 0 !important;
  background: transparent !important;
  border-bottom: 1px solid var(--border);
}

.hero-card-body{
  padding:1rem;
  display:grid;
  gap:.8rem;
}

.hero-photo{
  width: 100%;
  height: 460px;          /* ajuste si tu veux + grand/petit */
  object-fit: cover;
  object-position: center 35%; /* remonte un peu l'image (évite trop de ciel) */
  display: block;
}

/* Mobile */
@media (max-width: 900px){
  .hero-photo{
    height: 340px;
  }
}

.k{ color:var(--muted); font-size:.9rem; }
.v{ font-weight:700; }

/* ================= SECTIONS ================= */
.section{ padding:2.6rem 0; }

.section.alt{
  background: rgba(159,164,143,.06); /* vert très léger */
}

/* ================= GRILLES ================= */
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1rem;
}

.cards.cards-2{
  grid-template-columns:repeat(2,1fr);
}

/* ================= TIMELINE ================= */
.timeline{
  padding:1rem;
  display:grid;
  gap:.75rem;
}

.tl-item{
  display:grid;
  grid-template-columns:70px 18px 1fr;
  gap:.75rem;
}

.tl-time{
  font-weight:900;
  color:var(--muted);
}

.tl-dot{
  width:12px;
  height:12px;
  border-radius:999px;
  margin-top:.35rem;
  background: var(--sage);
}

/* ================= FOOTER ================= */
.footer{
  padding:1.8rem 0 2.4rem;
}

.footer-row{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  border-top:1px solid var(--border);
  padding-top:1rem;
}

/* ================= MOBILE ================= */
@media (max-width:900px){
  .hero-grid{ grid-template-columns:1fr; }
  .cards,
  .cards.cards-2{ grid-template-columns:1fr; }

  .menu-btn{ display:inline-flex; }

  .menu{
    display:none;
    position:absolute;
    right:1rem;
    top:64px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:14px;
    padding:.6rem;
    flex-direction:column;
    min-width:220px;
  }

  .menu.open{ display:flex; }
}
