/* ======================================================================
   Myra — Univers visuel premium
   Charte : crème · sauge · terracotta · brun doux
   ====================================================================== */

:root {
  --cream:        #F5EFE3;
  --cream-deep:   #EDE4D2;
  --sage:         #7C8B6A;
  --sage-deep:    #5E6E50;
  --sage-soft:    #B5C0A8;
  --terra:        #B06A4E;
  --terra-deep:   #92563E;
  --terra-soft:   #D9A88F;
  --ink:          #3A3128;
  --ink-soft:     #5C4F40;
  --ink-faint:    #8C7E6E;
  --line:         #E2D7C4;
  --line-soft:    #ECE3D2;

  --serif:  'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans:   'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 34px;
  --r-pill: 999px;

  --sh-sm: 0 1px 2px rgba(58, 49, 40, .06), 0 1px 1px rgba(58, 49, 40, .04);
  --sh-md: 0 8px 30px rgba(58, 49, 40, .08), 0 2px 6px rgba(58, 49, 40, .04);
  --sh-lg: 0 24px 60px rgba(58, 49, 40, .12), 0 6px 18px rgba(58, 49, 40, .06);

  --w-narrow: 720px;
  --w-text:   880px;
  --w-page:   1180px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--terra-deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--terra); }

::selection { background: var(--terra-soft); color: var(--ink); }

/* ---------- Typographie ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5.4vw, 3.6rem); font-weight: 400; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); font-weight: 400; }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.55rem); font-weight: 500; }

p { margin: 0 0 1rem 0; }
em { font-style: italic; }
strong { font-weight: 600; color: var(--ink); }

.serif { font-family: var(--serif); }
.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 1rem;
}
.lead {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 300;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--w-page);
  margin: 0 auto;
  padding: 0 28px;
}
.narrow { max-width: var(--w-narrow); }
.text   { max-width: var(--w-text); }

section { padding: clamp(64px, 9vw, 110px) 0; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 239, 227, .82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: var(--w-page);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
}
.nav-brand {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--ink);
}
.nav-brand .heart { color: var(--terra); font-size: .92em; }
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a {
  font-size: .92rem;
  color: var(--ink-soft);
  font-weight: 400;
  letter-spacing: .02em;
}
.nav-links a:hover { color: var(--terra); }
.nav-links .nav-cta {
  background: var(--terra);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: .88rem;
  letter-spacing: .02em;
  box-shadow: var(--sh-sm);
}
.nav-links .nav-cta:hover { background: var(--terra-deep); color: #fff !important; }
@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-brand { font-size: 1.25rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 32px;
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: .015em;
  color: #fff;
  background: var(--terra);
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all .22s cubic-bezier(.2, .8, .2, 1);
  box-shadow: 0 6px 22px rgba(176, 106, 78, .26), 0 2px 6px rgba(176, 106, 78, .15);
  text-decoration: none;
  line-height: 1;
}
.btn:hover {
  background: var(--terra-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(176, 106, 78, .32), 0 3px 8px rgba(176, 106, 78, .18);
}
.btn:active { transform: translateY(0); }
.btn-large { padding: 21px 42px; font-size: 1.1rem; }
.btn-arrow::after {
  content: '→';
  display: inline-block;
  transition: transform .25s ease;
  font-size: 1.05em;
  margin-left: 4px;
}
.btn:hover .btn-arrow::after, .btn-arrow:hover::after { transform: translateX(4px); }
.btn-ghost {
  background: transparent;
  color: var(--terra-deep);
  border: 1.5px solid var(--terra);
  box-shadow: none;
}
.btn-ghost:hover {
  background: var(--terra);
  color: #fff;
  border-color: var(--terra);
}

.cta-note {
  margin-top: 14px;
  font-size: .86rem;
  color: var(--ink-faint);
  letter-spacing: .02em;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(70px, 8vw, 110px) 0 clamp(60px, 7vw, 90px);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 18% 12%, rgba(124, 139, 106, .14), transparent 65%),
    radial-gradient(50% 60% at 92% 95%, rgba(176, 106, 78, .12), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.hero-text { max-width: 580px; }
.hero h1 {
  margin-bottom: 1.3rem;
}
.hero h1 .accent { color: var(--terra); font-style: italic; font-weight: 400; }
.hero-sub {
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 2.2rem;
  font-weight: 300;
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-cover {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.hero-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(124, 139, 106, .18), transparent 70%);
  filter: blur(20px);
}
.hero-cover img {
  position: relative;
  max-width: 100%;
  width: 360px;
  border-radius: var(--r-md);
  box-shadow:
    0 30px 60px rgba(58, 49, 40, .18),
    0 12px 24px rgba(58, 49, 40, .10),
    0 0 0 1px rgba(58, 49, 40, .05);
  transform: rotate(-2deg);
  transition: transform .6s cubic-bezier(.2, .8, .2, 1);
}
.hero-cover:hover img { transform: rotate(0deg) translateY(-4px); }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-cover { order: -1; padding: 0; }
  .hero-cover img { width: min(280px, 70vw); }
  .hero-cta-row { justify-content: center; }
  .hero-text { text-align: center; margin: 0 auto; }
}

/* ---------- Section "Ce que tu ressens" ---------- */
.feel-bg { background: var(--cream-deep); position: relative; }
.feel-list {
  list-style: none;
  margin: 2.4rem 0 2rem;
  display: grid;
  gap: 18px;
}
.feel-list li {
  position: relative;
  padding: 22px 26px 22px 64px;
  background: #fff;
  border-radius: var(--r-md);
  font-size: 1.04rem;
  line-height: 1.55;
  color: var(--ink);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--line-soft);
}
.feel-list li::before {
  content: '';
  position: absolute;
  left: 26px; top: 50%;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--terra-soft);
  transform: translateY(-50%);
  box-shadow: 0 0 0 6px rgba(176, 106, 78, .14);
}
.feel-close {
  margin-top: 2.4rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--sage-deep);
  text-align: center;
  line-height: 1.4;
}

/* ---------- Section "Et si ce n'était pas ta faute" ---------- */
.bascule {
  position: relative;
  text-align: center;
}
.bascule-divider {
  width: 60px; height: 1.5px;
  background: var(--terra);
  margin: 0 auto 2.2rem;
  border-radius: 2px;
}
.bascule p {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 auto 1.4rem;
  max-width: 660px;
}
.bascule p:last-child { color: var(--ink); font-weight: 400; }

/* ---------- Section Myra (présentation) ---------- */
.myra-bg { background: var(--cream-deep); }
.myra-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
.myra-photo {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--sage-soft);
  box-shadow: var(--sh-md);
  box-shadow: var(--sh-lg);
  margin: 0 auto;
}
.myra-photo::after {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid var(--sage-soft);
  border-radius: 50%;
  pointer-events: none;
}
.myra-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 40% 32%; transform: scale(1.08) translateY(4%); }
.myra-text .eyebrow { color: var(--terra-deep); }
.myra-text p { font-size: 1.05rem; line-height: 1.7; color: var(--ink-soft); margin-bottom: 1.2rem; }
.myra-text p:first-of-type { font-size: 1.18rem; color: var(--ink); font-family: var(--serif); font-weight: 500; }
.myra-signature {
  margin-top: 1.6rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--terra);
}
.myra-signature .heart { display: inline-block; margin-left: .3em; }
@media (max-width: 760px) {
  .myra-grid { grid-template-columns: 1fr; text-align: center; }
  .myra-photo { width: 240px; height: 240px; }
}

/* ---------- Section contenu du guide ---------- */
.guide-intro {
  font-size: 1.18rem;
  color: var(--ink-soft);
  margin-bottom: 2.6rem;
  max-width: 600px;
}
.guide-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 32px;
}
.guide-list li {
  position: relative;
  padding: 20px 22px 20px 60px;
  background: #fff;
  border-radius: var(--r-md);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-soft);
  border: 1px solid var(--line-soft);
  box-shadow: var(--sh-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.guide-list li:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.guide-list li::before {
  content: '';
  position: absolute;
  left: 22px; top: 24px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--sage);
  display: flex; align-items: center; justify-content: center;
}
.guide-list li::after {
  content: '✓';
  position: absolute;
  left: 22px; top: 24px;
  width: 22px; height: 22px;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.guide-closing {
  margin-top: 2.6rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--sage-deep);
  text-align: center;
}
@media (max-width: 720px) {
  .guide-list { grid-template-columns: 1fr; }
}

/* ---------- Témoignages ---------- */
.testi-bg { background: var(--cream-deep); }
.testi-grid {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testi-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: 32px 28px 26px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--sh-sm);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: -8px; left: 22px;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--terra-soft);
  line-height: 1;
  font-style: italic;
}
.testi-quote {
  font-family: var(--serif);
  font-size: 1.06rem;
  line-height: 1.6;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 1.4rem;
  margin-top: 14px;
}
.testi-author {
  display: flex; align-items: center; gap: 12px;
  font-size: .94rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.testi-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--terra));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: .95rem;
}
.testi-pending {
  text-align: center;
  font-style: italic;
  color: var(--ink-faint);
  margin-top: 2rem;
  font-size: .92rem;
}

/* ---------- Prix & CTA final ---------- */
.price-section {
  position: relative;
  text-align: center;
  background:
    radial-gradient(50% 60% at 50% 30%, rgba(176, 106, 78, .08), transparent 70%),
    var(--cream);
}
.price-card {
  max-width: 560px;
  margin: 2.2rem auto 0;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 48px 40px 44px;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--terra));
}
.price-tag {
  font-family: var(--serif);
  font-size: 3.6rem;
  color: var(--terra);
  font-weight: 400;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin: 1rem 0 .4rem;
}
.price-tag .currency { font-size: 1.6rem; color: var(--terra); align-self: flex-start; margin-top: .3rem; }
.price-once { font-size: .95rem; color: var(--ink-faint); letter-spacing: .04em; }
.price-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
  display: grid;
  gap: 12px;
}
.price-features li {
  padding-left: 30px;
  position: relative;
  font-size: 1rem;
  color: var(--ink-soft);
}
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 1px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.guarantee {
  margin-top: 1.4rem;
  padding: 14px 18px;
  background: var(--cream-deep);
  border-radius: var(--r-md);
  font-size: .92rem;
  color: var(--ink-soft);
  border-left: 3px solid var(--sage);
}
.guarantee strong { color: var(--sage-deep); }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 2.4rem; display: grid; gap: 14px; max-width: var(--w-text); }
.faq-item {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--sage-soft); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 26px;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '';
  width: 12px; height: 12px;
  border-right: 2px solid var(--terra);
  border-bottom: 2px solid var(--terra);
  transform: rotate(45deg);
  transition: transform .25s ease;
  flex: none;
}
.faq-item[open] .faq-q::after { transform: rotate(-135deg); }
.faq-a {
  padding: 0 26px 22px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}

/* ---------- Footer ---------- */
.footer {
  background: #2E2820;
  color: #CFC4B0;
  padding: 60px 0 30px;
}
.footer-inner {
  max-width: var(--w-page);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
}
.footer h4 {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terra-soft);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-brand .nav-brand { color: #fff; font-size: 1.6rem; margin-bottom: 14px; display: block; }
.footer-brand p { color: #B5A88E; font-size: .95rem; max-width: 320px; line-height: 1.55; }
.footer-links { list-style: none; display: grid; gap: 10px; }
.footer-links a { color: #CFC4B0; font-size: .94rem; }
.footer-links a:hover { color: var(--terra-soft); }
.footer-bottom {
  max-width: var(--w-page);
  margin: 50px auto 0;
  padding: 24px 28px 0;
  border-top: 1px solid #4A4234;
  font-size: .82rem;
  color: #8C7E6E;
  text-align: center;
  letter-spacing: .03em;
}
.footer-bottom a { color: #B5A88E; }
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Section divider décoratif ---------- */
.ornament {
  display: flex; justify-content: center; align-items: center; gap: 14px;
  margin: 0 auto 28px;
  color: var(--terra-soft);
}
.ornament::before, .ornament::after {
  content: '';
  flex: 0 0 36px;
  height: 1px;
  background: currentColor;
}
.ornament-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terra);
}

/* ---------- Article (documentaire) ---------- */
.article-hero {
  padding: clamp(70px, 8vw, 110px) 0 clamp(50px, 6vw, 80px);
  text-align: center;
  background: var(--cream-deep);
  position: relative;
}
.article-hero .eyebrow { color: var(--terra-deep); }
.article-hero h1 { max-width: 760px; margin: 0 auto 1.2rem; }
.article-meta {
  margin-top: 1.4rem;
  font-size: .9rem;
  color: var(--ink-faint);
  letter-spacing: .04em;
}
.article-body {
  max-width: var(--w-text);
  margin: 0 auto;
  padding: clamp(50px, 6vw, 80px) 28px;
  font-size: 1.07rem;
  line-height: 1.78;
  color: var(--ink-soft);
}
.article-body h2 {
  margin: 3rem 0 1.2rem;
  color: var(--ink);
}
.article-body h3 {
  margin: 2.4rem 0 .8rem;
  color: var(--ink);
}
.article-body p { margin-bottom: 1.2rem; }
.article-body p.lead {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--sage-deep);
  line-height: 1.5;
  margin: 1rem 0 2rem;
  text-align: center;
  border-left: none;
}
.article-body blockquote {
  margin: 2rem 0;
  padding: 22px 28px;
  border-left: 3px solid var(--terra);
  background: var(--cream-deep);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.18rem;
  color: var(--ink);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.article-body figure {
  margin: 2.4rem -28px;
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (min-width: 900px) {
  .article-body figure { margin: 3rem -60px; }
}
.article-body figure img { width: 100%; }
.article-body figcaption {
  margin-top: 10px;
  padding: 0 8px;
  font-size: .86rem;
  color: var(--ink-faint);
  text-align: center;
  font-style: italic;
}
.article-body strong { color: var(--ink); }
.article-pullquote {
  margin: 3rem 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--terra-deep);
  line-height: 1.4;
  padding: 0 20px;
}
.article-cta {
  margin: 3rem auto;
  text-align: center;
  padding: 38px 32px;
  background: var(--cream-deep);
  border-radius: var(--r-lg);
}
.article-cta h3 { margin-bottom: 1rem; }
.article-cta p { margin-bottom: 1.4rem; color: var(--ink-soft); }

/* ---------- Programme (upsell) ---------- */
.program-hero {
  padding: clamp(70px, 8vw, 110px) 0 clamp(40px, 5vw, 60px);
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(176, 106, 78, .10), transparent 70%),
    var(--cream);
  text-align: center;
}
.program-hero h1 { max-width: 800px; margin: 0 auto 1.4rem; }
.program-hero .lead { max-width: 660px; margin: 0 auto 2rem; }
.timeline {
  margin: 0 auto;
  max-width: 900px;
  display: grid;
  gap: 18px;
}
.timeline-week {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  align-items: center;
  box-shadow: var(--sh-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.timeline-week:hover { transform: translateX(4px); box-shadow: var(--sh-md); border-color: var(--sage-soft); }
.timeline-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--terra);
  font-weight: 400;
  line-height: 1;
  text-align: center;
  border-right: 1px solid var(--line);
  padding-right: 28px;
}
.timeline-num small {
  display: block;
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .2em;
  color: var(--ink-faint);
  text-transform: uppercase;
  margin-top: 6px;
}
.timeline-text h3 { margin-bottom: .4rem; }
.timeline-text p { margin: 0; font-size: .98rem; color: var(--ink-soft); line-height: 1.6; }
@media (max-width: 640px) {
  .timeline-week { grid-template-columns: 1fr; text-align: center; padding: 24px; }
  .timeline-num { border-right: none; border-bottom: 1px solid var(--line); padding: 0 0 14px; }
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

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

/* ---------- Accessibilité ---------- */
:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 3px;
  border-radius: 4px;
}
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--terra); color: #fff;
  padding: 12px 20px; border-radius: 0 0 var(--r-md) 0;
  z-index: 100;
}
.skip:focus { left: 0; color: #fff; }
