/* ============================
   TOKENS
============================ */
:root {
  --or: #B98C0E;
  --or-clair: #d4a627;
  --sable: #fbf7f1;
  --sable-fonce: #f4ecdd;
  --algue: #657468;
  --rouge-livre: #EC4B5D;
  --encre: #2a2a2a;
  --encre-doux: #4a4a4a;
  --gris-doux: rgba(101, 116, 104, 0.15);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Nunito", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1100px;
  --container-narrow: 720px;
}

/* ============================
   BASE (MOBILE FIRST)
============================ */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.page-template-page-livre-feng-shu{
  margin: 0;
  background: var(--sable);
  color: var(--encre);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--or); text-decoration: none; }
a:focus-visible { outline: 2px solid var(--or); outline-offset: 3px; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================
   SIGNATURE DIVIDER
============================ */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 2rem 0;
}
.divider::before,
.divider::after {
  content: "";
  height: 1px;
  width: 50px;
  background: var(--or);
  opacity: 0.5;
}
.divider__star {
  color: var(--rouge-livre);
  line-height: 1;
}

/* ============================
   TYPOGRAPHIE
============================ */
.eyebrow {
  font-family: var(--rouge-livre);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--algue);
  margin: 0 0 1.25rem;
  display: block;
}

h1, 
h2, 
h3 {
  font-family: var(--font-display)!important;
  font-weight: 500;
  color: var(--encre);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

h1 { font-size: 2.2em; line-height: 1.15; }
h2 { font-size: 1.9em; line-height: 1.2; }
h3 { font-size: 1.3em; line-height: 1.3; }

p { margin: 0 0 1.25rem; color: var(--encre-doux); }

/* ============================
   BOUTONS
============================ */
.btn {
  display: inline-block;
  padding: 16px 34px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn--primary {
  background: var(--or);
  color: var(--sable);
}
.btn--primary:hover {
  background: var(--encre);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(42, 42, 42, 0.2);
}

/* ============================
   SECTIONS
============================ */
section { padding: 60px 0; }

/* HERO */
.hero {
  padding: 50px 0 70px;
  background: var(--sable);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(185,140,14,0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  gap: 40px;
  align-items: center;
  position: relative;
}

.hero__image { text-align: center; }
.hero__cover {
  max-width: 280px;
  margin: 0 auto;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.2));
  transform: rotate(-2deg);
  transition: transform 0.5s ease;
}
.hero__cover:hover { transform: rotate(0); }

/* Placeholder si l'image n'est pas encore en place */
.hero__cover-placeholder {
  width: 280px;
  height: 380px;
  margin: 0 auto;
  background: var(--rouge-livre);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 12px;
  text-transform: uppercase;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.2));
  transform: rotate(-2deg);
  padding: 20px;
  text-align: center;
  border-left: 12px solid #1a1a1a;
}
.hero__cover-placeholder strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  margin: 20px 0 8px;
  line-height: 1;
}
.hero__cover-placeholder em {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.05em;
  text-transform: none;
  font-weight: 400;
}

.hero__author {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--algue);
  margin: 0 0 1.5rem;
}
.hero__title {
  font-size: 2.4em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--or);
}
.hero__subtitle {
  font-family: var(--font-display);
  font-size: 1.2em;
  font-style: italic;
  color: var(--encre-doux);
  line-height: 1.5;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

/* INVITATION */
.invitation { 
  text-align: center; 

   background-image: url(bg-white-1.jpg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;

}


/* VOYAGE */

.voyage{
   background-image: url(bg-white-2.jpg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
}

.voyage__grid {
  display: grid;
  gap: 40px;
  align-items: start;
}
.voyage__list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: promise;
}
.voyage__list li {
  counter-increment: promise;
  padding: 24px 0 24px 70px;
  position: relative;
  border-bottom: 1px solid var(--gris-doux);
}
.voyage__list li:last-child { border-bottom: none; }
.voyage__list li::before {
  content: counter(promise, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 24px;
  font-family: var(--font-display);
  font-size: 1.6em;
  color: var(--or);
  font-weight: 500;
  font-style: italic;
}
.voyage__promise {
  font-family: var(--font-display);
  font-size: 1.35em;
  color: var(--encre);
  font-weight: 500;
  line-height: 1.3;
  display: block;
  margin-bottom: 4px;
}
.voyage__desc {
  color: var(--encre-doux);
  line-height: 1.55;
}

/* VISION */
.vision {
  background: var(--sable-fonce);
  text-align: center;
}
.vision__quote {
  font-family: var(--font-display);
  font-size: 1.5em;
  line-height: 1.4;
  font-style: italic;
  color: var(--encre);
  margin: 2rem auto 0;
  max-width: 640px;
  padding: 30px 20px 0;
  position: relative;
  border-left:0;
}

/* CONTENU */
.contenu {
  background: var(--sable);
    background-image: url(bg-2.jpg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
}
.contenu__list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 14px;
}
.contenu__list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 24px;
  background: #ffffff;
  border-left: 3px solid var(--or);
  font-size: 1em;
  color: var(--encre);
}
.contenu__list li::before {
  content: "✓";
  flex-shrink: 0;
  color: var(--or);
  font-weight: 700;
  font-size: 1.2em;
  line-height: 1.5;
}

/* POUR QUI */
.pour-qui { background: #efede6; }
.pour-qui__list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 14px;
}
.pour-qui__list li {
  padding: 14px 0 14px 36px;
  position: relative;
  font-family: var(--font-display);
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.4;
  color: var(--encre);
}
.pour-qui__list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--rouge-livre);
  font-size: 1em;
}

/* AUTRICE */
.autrice{
  background-color: var(--sable);
  background-image: url(bg.jpg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
}
.autrice__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
.autrice__image-wrap {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, rgba(185,140,14,0.12), rgba(101,116,104,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--algue);
  font-family: var(--font-body);
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.autrice__image-wrap img { width: 100%; height: 100%; object-fit: cover; }

.autrice__signature {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--algue);
  font-size: 1.2em;
  margin-top: 2rem;
}

/* CTA FINAL */
.cta-final {
  text-align: center;
  padding: 90px 0;
  background: var(--encre);
  color: var(--sable);
}
.cta-final h2 {
  color: var(--sable);
  font-size: 2.2em;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}
.cta-final h2 em {
  color: var(--or-clair);
  font-style: italic;
}
.cta-final p {
  font-style: italic;
  color: rgba(251, 247, 241, 0.75);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: 1.1em;
  font-family: var(--font-display);
}
.cta-final .divider::before,
.cta-final .divider::after {
  background: rgba(185, 140, 14, 0.4);
}
.cta-final .btn--primary {
  background: var(--or);
  color: var(--sable);
}
.cta-final .btn--primary:hover {
  background: var(--sable);
  color: var(--encre);
}

/* ============================
   DESKTOP (unique breakpoint)
============================ */
@media (min-width: 1000px) {
  body { font-size: 17px; }
  section { padding: 110px 0; }

  h1 { font-size: 3.6em!important; }
  h2 { font-size: 2.6em!important; }

  .divider { margin: 2.5rem 0; }
  .divider::before,
  .divider::after { width: 70px; }

  /* Hero */
  .hero {
    padding: 90px 0 110px;
    min-height: 85vh;
    display: flex;
    align-items: center;
  }
  .hero__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 90px;
  }
  .hero__title { font-size: 4em; }
  .hero__cover,
  .hero__cover-placeholder { max-width: 380px; width: 380px; }
  .hero__cover-placeholder { height: 520px; }
  .hero__cover-placeholder strong { font-size: 40px; }
  .hero__cover-placeholder em { font-size: 18px; }
  .hero__subtitle { font-size: 1.4em; }

  /* Voyage */
  .voyage__grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 90px;
  }
  .voyage__promise { font-size: 1.65em; }

  /* Vision */
  .vision__quote { font-size: 2em; }

  /* Autrice */
  .autrice__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
  }

  /* CTA */
  .cta-final { padding: 140px 0; }
  .cta-final h2 { font-size: 3.4em; }
}