/* =========================================================
   Site vitrine — praticien voyance / guidance
   Remplacer partout : [PRÉNOM] · [VILLE] · [TÉLÉPHONE] · [EMAIL]
   ========================================================= */

:root {
  --encre:        #152229;
  --encre-clair:  #1E3038;
  --lin:          #EDE8DD;
  --lin-ombre:    #DED6C6;
  --laiton:       #A9762F;
  --laiton-clair: #C99A4E;
  --sauge:        #3C5A4C;
  --ardoise:      #54646A;

  --display: "Marcellus", Georgia, serif;
  --texte:   "Karla", system-ui, -apple-system, sans-serif;

  --pas: clamp(3.5rem, 9vw, 7rem);
  --gouttiere: clamp(1.25rem, 5vw, 2.5rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--lin);
  color: var(--encre);
  font-family: var(--texte);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: .01em;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2.4rem, 8vw, 4.25rem); }
h2 { font-size: clamp(1.85rem, 5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.45rem); }

p { margin: 0 0 1.15em; max-width: 62ch; }

.wrap {
  width: 100%;
  max-width: 68rem;
  margin-inline: auto;
  padding-inline: var(--gouttiere);
}
.wrap--etroit { max-width: 46rem; }

/* ---------- Étiquettes de section ---------- */

.oeil {
  font-family: var(--texte);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--laiton);
  margin: 0 0 1.4rem;
  display: flex;
  align-items: center;
  gap: .9rem;
}
.oeil::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: .35;
}

/* ---------- En-tête ---------- */

.entete {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--lin) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--lin-ombre);
}
.entete__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}
.marque {
  font-family: var(--display);
  font-size: 1.3rem;
  letter-spacing: .06em;
  text-decoration: none;
  white-space: nowrap;
}
.marque span { color: var(--laiton); }

.nav { display: none; gap: 1.75rem; }
.nav a {
  text-decoration: none;
  font-size: .95rem;
  padding-block: .35rem;
  border-bottom: 1px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"] { border-color: var(--laiton); }

@media (min-width: 62rem) { .nav { display: flex; } }

/* ---------- Boutons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.5rem;
  font-family: var(--texte);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  border: 1px solid var(--encre);
  background: var(--encre);
  color: var(--lin);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { background: var(--laiton); border-color: var(--laiton); color: #fff; }

.btn--ligne { background: transparent; color: var(--encre); }
.btn--ligne:hover { background: var(--encre); color: var(--lin); border-color: var(--encre); }

.btn--clair { background: var(--laiton); border-color: var(--laiton); color: #fff; }
.btn--clair:hover { background: transparent; border-color: var(--lin); color: var(--lin); }

:focus-visible { outline: 2px solid var(--laiton-clair); outline-offset: 3px; }

/* ---------- Hero ---------- */

.hero {
  background: var(--encre);
  color: var(--lin);
  padding-block: clamp(4rem, 12vw, 8rem);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--laiton) 35%, var(--laiton) 65%, transparent);
  opacity: .6;
}
.hero h1 { max-width: 16ch; }
.hero__intro {
  color: color-mix(in srgb, var(--lin) 78%, transparent);
  font-size: 1.1rem;
  max-width: 48ch;
}

/* Signature : les questions qu'on apporte */
.questions {
  border-left: 2px solid var(--laiton);
  padding-left: 1.4rem;
  margin: 2.75rem 0 2.5rem;
  min-height: 5.5rem;
}
.questions__label {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--laiton-clair);
  margin-bottom: .7rem;
}
.questions__item {
  font-family: var(--display);
  font-size: clamp(1.2rem, 3.6vw, 1.7rem);
  line-height: 1.35;
  margin: 0;
  max-width: 30ch;
  transition: opacity .6s ease;
}
.questions__item.est-cache { opacity: 0; }

.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ---------- Sections ---------- */

.section { padding-block: var(--pas); }
.section--encre { background: var(--encre); color: var(--lin); }
.section--encre .oeil { color: var(--laiton-clair); }
.section--sauge { background: var(--sauge); color: var(--lin); }
.section + .section { border-top: 1px solid var(--lin-ombre); }
.section--encre + .section, .section + .section--encre { border-top: none; }

.mesure { max-width: 58ch; }

/* ---------- Cartes prestations ---------- */

.grille {
  display: grid;
  gap: 1px;
  background: var(--lin-ombre);
  border: 1px solid var(--lin-ombre);
  margin-top: 2.5rem;
}
@media (min-width: 46rem) { .grille { grid-template-columns: repeat(2, 1fr); } }

.carte {
  background: var(--lin);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}
.carte h3 { margin-bottom: .5rem; }
.carte p { font-size: .97rem; color: var(--ardoise); margin-bottom: 0; }
.carte__duree {
  display: inline-block;
  margin-top: 1rem;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--laiton);
}

/* ---------- Ce que je ne fais pas ---------- */

.limites {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 46rem) { .limites { grid-template-columns: repeat(2, 1fr); gap: 1.3rem 2.5rem; } }
.limites li {
  padding-left: 1.7rem;
  position: relative;
  max-width: 44ch;
  color: color-mix(in srgb, var(--lin) 82%, transparent);
}
.limites li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--laiton-clair);
}
.limites strong { color: var(--lin); font-weight: 700; }

/* ---------- Déroulé (séquence réelle) ---------- */

.etapes { margin-top: 2.75rem; display: grid; gap: 2.25rem; }
@media (min-width: 52rem) { .etapes { grid-template-columns: repeat(3, 1fr); gap: 2.75rem; } }

.etape { border-top: 1px solid var(--lin-ombre); padding-top: 1.4rem; }
.etape__num {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--laiton);
  display: block;
  margin-bottom: .6rem;
}
.etape h3 { font-size: 1.25rem; }
.etape p { font-size: .97rem; color: var(--ardoise); margin-bottom: 0; }

/* ---------- Tarifs ---------- */

.tarifs { margin-top: 2.5rem; border-top: 1px solid var(--lin-ombre); }
.tarif {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .5rem 1.25rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--lin-ombre);
}
.tarif__nom { font-family: var(--display); font-size: 1.25rem; flex: 1 1 14rem; }
.tarif__detail { font-size: .9rem; color: var(--ardoise); flex: 1 1 100%; order: 3; margin: 0; }
@media (min-width: 46rem) { .tarif__detail { flex: 1 1 18rem; order: 0; } }
.tarif__prix { font-family: var(--display); font-size: 1.4rem; color: var(--laiton); white-space: nowrap; }

.note {
  font-size: .92rem;
  color: var(--ardoise);
  border-left: 2px solid var(--laiton);
  padding-left: 1.1rem;
  margin-top: 2rem;
  max-width: 58ch;
}

/* ---------- FAQ ---------- */

.faq { margin-top: 2.5rem; border-top: 1px solid var(--lin-ombre); }
.faq details { border-bottom: 1px solid var(--lin-ombre); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 2.5rem 1.25rem 0;
  font-family: var(--display);
  font-size: 1.15rem;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: .25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--laiton);
  font-size: 1.4rem;
  line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding-bottom: 1.35rem; font-size: .98rem; color: var(--ardoise); }

/* ---------- Bandeau d'appel ---------- */

.appel { text-align: center; }
.appel h2 { margin-inline: auto; max-width: 18ch; }
.appel p { margin-inline: auto; }
.appel .hero__actions { justify-content: center; margin-top: 2rem; }

/* ---------- Formulaire ---------- */

.champ { display: grid; gap: .45rem; margin-bottom: 1.35rem; }
.champ label { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }
.champ input, .champ select, .champ textarea {
  font: inherit;
  padding: .8rem .9rem;
  border: 1px solid var(--lin-ombre);
  background: #fff;
  color: var(--encre);
  border-radius: 0;
}
.champ input:focus, .champ select:focus, .champ textarea:focus { border-color: var(--laiton); }
.champ textarea { min-height: 9rem; resize: vertical; }
.consentement { display: flex; gap: .75rem; align-items: flex-start; font-size: .9rem; color: var(--ardoise); margin-bottom: 1.5rem; }
.consentement input { margin-top: .25rem; }

/* ---------- Pied de page ---------- */

.pied {
  background: var(--encre);
  color: color-mix(in srgb, var(--lin) 72%, transparent);
  padding-block: clamp(3rem, 7vw, 4.5rem) 2rem;
  font-size: .93rem;
}
.pied a { color: inherit; }
.pied__cols { display: grid; gap: 2.25rem; }
@media (min-width: 46rem) { .pied__cols { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; } }
.pied h4 {
  font-family: var(--texte);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--laiton-clair);
  margin: 0 0 1rem;
}
.pied ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.pied__bas {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--lin) 18%, transparent);
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  justify-content: space-between;
  font-size: .82rem;
}
.avertissement {
  font-size: .82rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--lin) 55%, transparent);
  max-width: 70ch;
  margin-top: 1.25rem;
}

/* ---------- Page contenu simple ---------- */

.page-entete { background: var(--encre); color: var(--lin); padding-block: clamp(3rem, 8vw, 5rem); }
.page-entete h1 { font-size: clamp(2rem, 6vw, 3.25rem); margin-bottom: .4rem; }
.page-entete p { color: color-mix(in srgb, var(--lin) 75%, transparent); margin: 0; }

.prose h2 { margin-top: 2.75rem; }
.prose h3 { margin-top: 2rem; }
.prose ul { padding-left: 1.2rem; max-width: 62ch; }
.prose li { margin-bottom: .5rem; }
.aremplir { background: var(--lin-ombre); padding: .1em .45em; font-family: ui-monospace, monospace; font-size: .9em; }
