/* ============================================================
   Storytelling layer — révélation progressive, fil narratif
   Pascale Lorent Sophrologue
   ============================================================ */

/* --- Variables --- */
:root {
  --story-accent: #EFA697;
  --story-accent-soft: #f9d8d0;
  --story-secondary: #84DBD1;
  --story-cream: #fdf7f4;
  --story-text: #4a4a4a;
  --story-text-soft: #888;
}

/* --- Révélation au scroll --- */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.9s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
[data-reveal="up"]      { transform: translateY(40px); }
[data-reveal="down"]    { transform: translateY(-30px); }
[data-reveal="left"]    { transform: translateX(-50px); }
[data-reveal="right"]   { transform: translateX(50px); }
[data-reveal="zoom"]    { transform: scale(0.94); filter: blur(4px); }
[data-reveal="soften"]  { filter: blur(8px); }

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Délais en cascade — utilisés via data-delay="1" .. "8" */
[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.32s; }
[data-delay="5"] { transition-delay: 0.40s; }
[data-delay="6"] { transition-delay: 0.48s; }
[data-delay="7"] { transition-delay: 0.56s; }
[data-delay="8"] { transition-delay: 0.64s; }

/* --- Indicateur de scroll sous le hero --- */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 0.75em;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.85;
  pointer-events: auto;
  animation: indicatorFadeIn 1.5s ease 1.2s both;
}
.scroll-indicator:hover { color: #fff; opacity: 1; }
.scroll-indicator-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, #fff);
  position: relative;
  overflow: hidden;
}
.scroll-indicator-line::after {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, transparent, #fff);
  animation: scrollDot 2.4s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { top: -50px; opacity: 0; }
  30%  { opacity: 1; }
  100% { top: 50px; opacity: 0; }
}
@keyframes indicatorFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 0.85; transform: translateX(-50%) translateY(0); }
}
@media (max-width: 600px) {
  .scroll-indicator { display: none; }
}

/* --- Fil narratif entre sections (chapitre) --- */
.story-chapter {
  text-align: center;
  padding: 48px 20px;
  background: linear-gradient(180deg, transparent 0%, var(--story-cream) 50%, transparent 100%);
  position: relative;
  overflow: hidden;
}
.story-chapter-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.story-chapter-number {
  display: inline-block;
  font-family: 'Nothing You Could Do', cursive;
  font-size: 1.1em;
  color: var(--story-accent);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.story-chapter-text {
  font-family: 'Nothing You Could Do', cursive;
  font-size: 1.85em;
  line-height: 1.5;
  color: var(--story-text);
  margin: 0;
  font-weight: 400;
}
.story-chapter-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}
.story-chapter-divider::before,
.story-chapter-divider::after {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--story-accent);
  opacity: 0.5;
}
.story-chapter-divider svg {
  width: 22px;
  height: 22px;
  color: var(--story-accent);
  opacity: 0.8;
}
@media (max-width: 600px) {
  .story-chapter-text { font-size: 1.4em; }
  .story-chapter { padding: 36px 18px; }
}

/* --- Séparateur "vague" SVG entre sections --- */
.section-wave-divider {
  display: block;
  width: 100%;
  height: 60px;
  margin: 0;
  padding: 0;
  line-height: 0;
}
.section-wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* --- Effet "soulignement script" sur certains mots-clés --- */
.story-emphasis {
  position: relative;
  display: inline-block;
  font-style: italic;
  color: var(--story-accent);
}
.story-emphasis::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 6px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8' preserveAspectRatio='none'><path d='M0,5 Q50,1 100,4 T200,3' fill='none' stroke='%23EFA697' stroke-width='2' stroke-linecap='round' opacity='0.6'/></svg>") no-repeat center / 100% 100%;
  pointer-events: none;
}

/* --- Floating decorative dot (parsemé) --- */
.story-floating-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--story-accent);
  opacity: 0.4;
  pointer-events: none;
  animation: floatDot 8s ease-in-out infinite;
}
@keyframes floatDot {
  0%, 100% { transform: translateY(0) translateX(0); }
  50%      { transform: translateY(-20px) translateX(10px); }
}

/* --- Légère mise en valeur des h1/h2 quand révélés --- */
[data-reveal] h1,
[data-reveal] h2 {
  position: relative;
}

/* ============================================================
   Section "Mes outils" — cartes premium
   ============================================================ */
.tools-section {
  position: relative;
  padding: 90px 20px 100px 20px;
  background: #fff;
  overflow: hidden;
}
.tools-section::before {
  content: "";
  position: absolute;
  top: -80px; right: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--story-accent-soft) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.6;
  pointer-events: none;
}
.tools-section::after {
  content: "";
  position: absolute;
  bottom: -60px; left: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(132,219,209,0.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.tools-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.tools-header {
  text-align: center;
  margin-bottom: 60px;
}
.tools-eyebrow {
  display: inline-block;
  font-family: 'Nothing You Could Do', cursive;
  font-size: 1.3em;
  color: var(--story-accent);
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.tools-section h2.tools-title {
  font-size: 2.4em;
  color: #2a2a2a;
  margin: 0 0 14px 0;
  font-weight: 300;
  letter-spacing: -0.5px;
}
.tools-tagline {
  color: var(--story-text-soft);
  font-style: italic;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 900px) { .tools-grid { grid-template-columns: 1fr; gap: 24px; max-width: 480px; margin: 0 auto; } .tools-section h2.tools-title { font-size: 1.9em; } }

.tool-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.tool-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.tool-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0e8e3;
}
.tool-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.tool-card:hover .tool-card-media img {
  transform: scale(1.07);
}
.tool-card-icon {
  position: absolute;
  bottom: -28px;
  left: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 2;
  transition: transform 0.4s ease;
}
.tool-card:hover .tool-card-icon {
  transform: rotate(-5deg) scale(1.05);
}
.tool-card-icon svg {
  width: 30px;
  height: 30px;
}
.tool-card-number {
  position: absolute;
  top: 18px; right: 22px;
  font-family: 'Nothing You Could Do', cursive;
  font-size: 1.6em;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  z-index: 2;
  line-height: 1;
}
.tool-card-body {
  padding: 44px 28px 28px 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.tool-card-eyebrow {
  font-size: 0.72em;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--story-accent);
  font-weight: 600;
  margin-bottom: 8px;
}
.tool-card-title {
  font-size: 1.45em;
  color: #2a2a2a;
  margin: 0 0 14px 0;
  font-weight: 400;
  line-height: 1.3;
}
.tool-card-text {
  color: #555;
  line-height: 1.7;
  font-size: 0.97em;
  margin: 0;
  flex-grow: 1;
}
.tool-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--story-accent);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95em;
  transition: gap 0.3s ease;
  align-self: flex-start;
}
.tool-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.tool-card-link:hover {
  gap: 14px;
  color: #d88a78;
}
.tool-card-link:hover svg {
  transform: translateX(2px);
}
/* Variantes couleur par carte */
.tool-card[data-tone="rose"]    .tool-card-icon { background: linear-gradient(135deg, #fff 0%, #fef0ec 100%); }
.tool-card[data-tone="rose"]    .tool-card-icon svg { color: var(--story-accent); }
.tool-card[data-tone="ocean"]   .tool-card-icon { background: linear-gradient(135deg, #fff 0%, #e8f8f5 100%); }
.tool-card[data-tone="ocean"]   .tool-card-icon svg { color: #4ec5b8; }
.tool-card[data-tone="ocean"]   .tool-card-eyebrow { color: #4ec5b8; }
.tool-card[data-tone="ocean"]   .tool-card-link    { color: #4ec5b8; }
.tool-card[data-tone="ocean"]   .tool-card-link:hover { color: #3aa89c; }
.tool-card[data-tone="herbal"]  .tool-card-icon { background: linear-gradient(135deg, #fff 0%, #f5f1e8 100%); }
.tool-card[data-tone="herbal"]  .tool-card-icon svg { color: #b8a06b; }
.tool-card[data-tone="herbal"]  .tool-card-eyebrow { color: #b8a06b; }
.tool-card[data-tone="herbal"]  .tool-card-link    { color: #b8a06b; }
.tool-card[data-tone="herbal"]  .tool-card-link:hover { color: #998752; }

/* ============================================================
   Sections "story-split" — méthode / parcours / accueil
   ============================================================ */
.story-split-section {
  padding: 70px 20px;
  background: #fff;
  position: relative;
}
.story-split-section.alt-bg {
  background: linear-gradient(180deg, #fff 0%, var(--story-cream) 100%);
}
.story-split {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.story-split--reverse {
  grid-template-areas: "body media";
}
.story-split--reverse .story-split-media { grid-area: media; }
.story-split--reverse .story-split-body { grid-area: body; }
@media (max-width: 900px) {
  .story-split { grid-template-columns: 1fr; gap: 40px; }
  .story-split--reverse { grid-template-areas: none; }
  .story-split--reverse .story-split-media,
  .story-split--reverse .story-split-body { grid-area: auto; }
  .story-split-section { padding: 50px 20px; }
}

/* --- Image stylée --- */
.story-split-media {
  position: relative;
}
.story-split-media-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3.2;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.13);
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
}
.story-split-media-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
}
.story-split-media-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.story-split-media-frame:hover img {
  transform: scale(1.05);
}
.story-split-media::before {
  content: "";
  position: absolute;
  width: 80px; height: 80px;
  border: 2px solid var(--story-accent);
  border-radius: 14px;
  opacity: 0.55;
  z-index: -1;
}
.story-split:not(.story-split--reverse) .story-split-media::before {
  top: -22px; left: -22px;
}
.story-split--reverse .story-split-media::before {
  bottom: -22px; right: -22px;
  border-color: var(--story-secondary);
}
.story-split-media-pill {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.82em;
  font-weight: 500;
  color: #2a2a2a;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.10);
}
.story-split-media-pill svg {
  width: 16px; height: 16px;
  color: var(--story-accent);
}

/* --- Body content --- */
.story-split-eyebrow {
  display: inline-block;
  font-family: 'Nothing You Could Do', cursive;
  font-size: 1.25em;
  color: var(--story-accent);
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.story-split-title {
  font-size: 2.4em;
  color: #1f1f1f;
  font-weight: 300;
  margin: 0 0 22px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.story-split-text {
  color: #555;
  line-height: 1.75;
  font-size: 1.02em;
  margin: 0 0 22px 0;
}
.story-split-text strong {
  color: #2a2a2a;
  font-weight: 600;
}
.story-split-text:last-child { margin-bottom: 0; }

/* --- Liste à puces avec icônes --- */
.story-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.story-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #444;
  line-height: 1.5;
}
.story-feature-list li .feature-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--story-accent-soft), #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--story-accent);
}
.story-feature-list li .feature-icon svg {
  width: 16px; height: 16px;
}
.story-feature-list li strong {
  color: #2a2a2a;
}

/* --- Stat mise en avant --- */
.story-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin: 6px 0 22px 0;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--story-cream), #fff);
  border-left: 3px solid var(--story-accent);
  border-radius: 4px;
}
.story-stat-value {
  font-size: 2.2em;
  font-weight: 300;
  color: var(--story-accent);
  line-height: 1;
}
.story-stat-label {
  font-size: 0.95em;
  color: #555;
  line-height: 1.3;
}

/* --- Lieux d'accueil --- */
.story-locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 4px 0 22px 0;
}
@media (max-width: 600px) {
  .story-locations { grid-template-columns: 1fr; }
}
.story-location {
  background: #fff;
  border: 1px solid #f0e8e3;
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.story-location:hover {
  transform: translateY(-3px);
  border-color: var(--story-accent);
  box-shadow: 0 10px 25px rgba(239, 166, 151, 0.15);
}
.story-location-icon {
  width: 36px; height: 36px;
  margin: 0 auto 10px auto;
  color: var(--story-accent);
}
.story-location-name {
  font-weight: 600;
  color: #2a2a2a;
  font-size: 0.95em;
  margin: 0 0 4px 0;
}
.story-location-meta {
  font-size: 0.78em;
  color: #888;
  line-height: 1.4;
  margin: 0;
}

/* --- Badge spécial (Ligue contre le cancer, etc.) --- */
.story-special-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #fff 0%, #fef0ec 100%);
  border-radius: 12px;
  border-left: 3px solid var(--story-accent);
  margin-top: 18px;
}
.story-special-badge-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--story-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-special-badge-icon svg { width: 20px; height: 20px; }
.story-special-badge-text {
  font-size: 0.92em;
  color: #444;
  line-height: 1.45;
}
.story-special-badge-text strong { color: #2a2a2a; }

/* ============================================================
   Hero CSS pur (remplace l'ancien RevSlider)
   ============================================================ */
.hero-pure {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  background: #1a1a1a;
}
.hero-pure-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/pascale_laurent_boistrudant_sophro.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  animation: kenBurns 28s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenBurns {
  0%   { transform: scale(1.00) translate(0, 0); }
  100% { transform: scale(1.10) translate(-1.5%, -1%); }
}
.hero-pure-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.10) 45%, rgba(0,0,0,0.65) 100%);
}
.hero-pure-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 65vw; height: 65vw;
  max-width: 850px; max-height: 850px;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 60%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0%   { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0.95; transform: translate(-50%, -50%) scale(1.1); }
}
.hero-pure-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  color: #fff;
}
.hero-pure-name {
  font-family: 'Nothing You Could Do', cursive;
  font-size: clamp(3.5em, 9vw, 7em);
  line-height: 1.05;
  letter-spacing: -1px;
  font-weight: 400;
  margin: 0 0 30px 0;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
  animation: heroNameIn 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}
.hero-pure-tagline {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(1em, 1.7vw, 1.15em);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 1px;
  max-width: 760px;
  margin: 0 0 50px 0;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  animation: heroFadeUp 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.9s both;
}
.hero-pure-tagline em {
  font-style: italic;
  color: #ffd9d0;
}
.hero-pure-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 40px;
  background: var(--story-accent);
  color: #fff;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.85em;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(239, 166, 151, 0.55);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  animation: heroFadeUp 1.4s cubic-bezier(0.4, 0, 0.2, 1) 1.4s both;
}
.hero-pure-cta:hover {
  background: #d88a78;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(239, 166, 151, 0.75);
}
.hero-pure-cta svg { width: 14px; height: 14px; }

@keyframes heroNameIn {
  from { opacity: 0; transform: translateY(40px) scale(0.95); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Le scroll indicator existant reste, on l'ajuste un peu pour le hero pure */
.hero-pure .scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

@media (max-width: 600px) {
  .hero-pure { height: 90vh; min-height: 520px; }
  .hero-pure-name { margin-bottom: 22px; }
  .hero-pure-tagline { margin-bottom: 38px; font-size: 0.95em; }
  .hero-pure-cta { padding: 15px 30px; font-size: 0.78em; }
}

/* ============================================================
   Section Blog (preview sur l'accueil) — grid moderne
   ============================================================ */
.blog-preview-section {
  position: relative;
  padding: 100px 20px 110px 20px;
  background: linear-gradient(180deg, #fff 0%, #fafaf8 100%);
  overflow: hidden;
}
.blog-preview-section::before {
  content: "";
  position: absolute;
  top: 80px; right: -120px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(132, 219, 209, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.blog-preview-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
.blog-preview-header {
  text-align: center;
  margin-bottom: 60px;
}
.blog-preview-eyebrow {
  display: inline-block;
  font-family: 'Nothing You Could Do', cursive;
  font-size: 1.3em;
  color: var(--story-accent);
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.blog-preview-section h2.blog-preview-title {
  font-size: 2.4em;
  color: #2a2a2a;
  margin: 0 0 14px 0;
  font-weight: 300;
  letter-spacing: -0.5px;
}
.blog-preview-tagline {
  color: var(--story-text-soft);
  font-style: italic;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
@media (max-width: 1100px) { .blog-preview-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .blog-preview-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 500px)  { .blog-preview-grid { grid-template-columns: 1fr; } .blog-preview-section h2.blog-preview-title { font-size: 1.9em; } .blog-preview-section { padding: 70px 18px; } }

.blog-preview-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-preview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.13);
  color: inherit;
}
.blog-preview-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0e8e3;
}
.blog-preview-card-media-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-preview-card:hover .blog-preview-card-media-bg {
  transform: scale(1.08);
}
.blog-preview-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.blog-preview-card:hover .blog-preview-card-media::after {
  opacity: 1;
}
.blog-preview-card-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--story-accent);
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.blog-preview-card-body {
  padding: 22px 20px 20px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.blog-preview-card-title {
  font-size: 1.15em;
  font-weight: 500;
  color: #2a2a2a;
  margin: 0 0 10px 0;
  line-height: 1.35;
}
.blog-preview-card-text {
  color: #666;
  font-size: 0.92em;
  line-height: 1.55;
  margin: 0 0 16px 0;
  flex-grow: 1;
}
.blog-preview-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--story-accent);
  font-weight: 600;
  font-size: 0.82em;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: auto;
  transition: gap 0.3s ease;
}
.blog-preview-card:hover .blog-preview-card-link { gap: 10px; }
.blog-preview-card-link svg { width: 13px; height: 13px; }

.blog-preview-cta {
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 5;
}
.blog-preview-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 42px;
  background: var(--story-accent);
  color: #fff;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.85em;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(239, 166, 151, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.blog-preview-cta-button:hover {
  background: #d88a78;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(239, 166, 151, 0.7);
}
.blog-preview-cta-button svg { width: 14px; height: 14px; }

/* ============================================================
   Section Tarifs — esthétique "menu de gastronomie poétique"
   ============================================================ */
.pricing-poetic-section {
  position: relative;
  padding: 110px 20px 120px 20px;
  background: linear-gradient(180deg, #fff 0%, var(--story-cream) 100%);
  overflow: hidden;
}
.pricing-poetic-section::before,
.pricing-poetic-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.4;
  pointer-events: none;
}
.pricing-poetic-section::before {
  width: 360px; height: 360px;
  background: var(--story-accent-soft);
  top: -100px; left: -120px;
}
.pricing-poetic-section::after {
  width: 320px; height: 320px;
  background: rgba(132,219,209,0.4);
  bottom: -80px; right: -120px;
}
.pricing-poetic-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 900px) {
  .pricing-poetic-inner { grid-template-columns: 1fr; gap: 40px; }
  .pricing-poetic-section { padding: 70px 20px; }
}

/* --- Image latérale --- */
.pricing-poetic-media {
  position: relative;
}
.pricing-poetic-media-frame {
  position: relative;
  border-radius: 200px 200px 14px 14px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}
.pricing-poetic-media-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.pricing-poetic-media-frame:hover img { transform: scale(1.05); }
.pricing-poetic-media::after {
  content: "";
  position: absolute;
  bottom: -22px; right: -22px;
  width: 100px; height: 100px;
  border: 2px solid var(--story-accent);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.55;
}
.pricing-poetic-media-quote {
  position: absolute;
  top: 30px; right: -30px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 22px;
  border-radius: 12px;
  font-family: 'Nothing You Could Do', cursive;
  font-size: 1.1em;
  line-height: 1.4;
  color: #555;
  max-width: 220px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  z-index: 2;
}
.pricing-poetic-media-quote::before {
  content: "❝";
  position: absolute;
  top: -8px; left: 12px;
  font-size: 2em;
  line-height: 1;
  color: var(--story-accent);
  font-family: Georgia, serif;
}
@media (max-width: 900px) {
  .pricing-poetic-media-quote { display: none; }
  .pricing-poetic-media-frame { border-radius: 14px; aspect-ratio: 16/10; max-width: 480px; margin: 0 auto; }
}

/* --- Bloc menu --- */
.pricing-poetic-body { position: relative; }
.pricing-poetic-eyebrow {
  display: inline-block;
  font-family: 'Nothing You Could Do', cursive;
  font-size: 1.25em;
  color: var(--story-accent);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.pricing-poetic-title {
  font-size: 2.5em;
  color: #2a2a2a;
  font-weight: 300;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.pricing-poetic-intro {
  color: #666;
  font-style: italic;
  line-height: 1.7;
  font-size: 1.02em;
  max-width: 540px;
  margin: 0 0 38px 0;
}

/* Catégories */
.pricing-category {
  margin-bottom: 32px;
}
.pricing-category-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.pricing-category-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--story-accent-soft), #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--story-accent);
  flex-shrink: 0;
}
.pricing-category-icon svg { width: 18px; height: 18px; }
.pricing-category-title {
  font-size: 1.25em;
  color: #2a2a2a;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.3px;
}
.pricing-category-line {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(to right, var(--story-accent) 0%, transparent 100%);
  opacity: 0.4;
}

/* Lignes "menu" avec dot leaders */
.pricing-line {
  display: flex;
  align-items: baseline;
  margin-bottom: 14px;
  gap: 10px;
}
.pricing-line-name {
  color: #444;
  font-size: 1em;
  line-height: 1.4;
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
}
.pricing-line-dots {
  flex-grow: 1;
  border-bottom: 1.5px dotted #d8c9c0;
  position: relative;
  top: -4px;
  min-width: 30px;
}
.pricing-line-price {
  font-family: 'Nothing You Could Do', cursive;
  font-size: 1.6em;
  color: var(--story-accent);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.pricing-line-note {
  font-size: 0.85em;
  color: #999;
  font-style: italic;
  margin: -8px 0 14px 0;
  line-height: 1.5;
  padding-left: 0;
}

/* Note finale poétique */
.pricing-special-note {
  position: relative;
  margin-top: 28px;
  padding: 22px 26px 22px 56px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  border-left: 3px solid var(--story-accent);
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}
.pricing-special-note::before {
  content: "✿";
  position: absolute;
  top: 22px; left: 22px;
  font-size: 1.4em;
  color: var(--story-accent);
  line-height: 1;
}
.pricing-special-note p {
  margin: 0;
  color: #555;
  line-height: 1.7;
  font-size: 0.96em;
  font-style: italic;
}
.pricing-special-note p strong {
  font-style: normal;
  color: #2a2a2a;
  font-weight: 500;
}

@media (max-width: 600px) {
  .pricing-poetic-title { font-size: 2em; }
  .pricing-line-name { white-space: normal; }
  .pricing-line { flex-wrap: wrap; }
}

/* ============================================================
   Footer poétique
   ============================================================ */
.footer-poetic {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(26, 31, 28, 0.95) 0%, rgba(38, 31, 28, 0.98) 100%),
    radial-gradient(ellipse at top, rgba(239, 166, 151, 0.08) 0%, transparent 60%);
  color: #d8d2cc;
  padding: 90px 20px 30px 20px;
}
.footer-poetic::before {
  content: "";
  position: absolute;
  top: -100px; left: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(239, 166, 151, 0.15) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}
.footer-poetic::after {
  content: "";
  position: absolute;
  bottom: -80px; right: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(132, 219, 209, 0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}
.footer-poetic-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Citation centrale --- */
.footer-quote {
  text-align: center;
  margin: 0 auto 70px auto;
  max-width: 800px;
}
.footer-quote-mark {
  display: block;
  font-family: Georgia, serif;
  font-size: 4em;
  line-height: 1;
  color: var(--story-accent);
  opacity: 0.5;
  margin-bottom: -20px;
}
.footer-quote-text {
  font-family: 'Nothing You Could Do', cursive;
  font-size: clamp(1.6em, 3.5vw, 2.4em);
  line-height: 1.4;
  color: #f0e8e3;
  margin: 0 0 16px 0;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.footer-quote-author {
  display: inline-block;
  font-size: 0.85em;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--story-accent);
  margin-top: 10px;
  font-weight: 300;
}
.footer-quote-divider {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--story-accent);
  vertical-align: middle;
  margin: 0 14px 4px 14px;
  opacity: 0.6;
}

/* --- Grid 4 colonnes --- */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.3fr;
  gap: 50px;
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .footer-poetic { padding: 70px 20px 24px 20px; }
}

.footer-col-title {
  font-size: 0.75em;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--story-accent);
  font-weight: 500;
  margin: 0 0 22px 0;
  position: relative;
  padding-bottom: 12px;
}
.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 1px;
  background: var(--story-accent);
  opacity: 0.6;
}
@media (max-width: 560px) {
  .footer-col-title::after { left: 50%; transform: translateX(-50%); }
}

/* Colonne marque */
.footer-brand-name {
  font-family: 'Nothing You Could Do', cursive;
  font-size: 2.2em;
  line-height: 1.1;
  color: #f0e8e3;
  margin: 0 0 8px 0;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.footer-brand-role {
  font-size: 0.75em;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--story-accent);
  margin-bottom: 22px;
}
.footer-brand-baseline {
  font-style: italic;
  color: #b8b0a8;
  line-height: 1.7;
  font-size: 0.95em;
  margin: 0 0 24px 0;
}

/* Liens rapides */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: #c8c0b8;
  text-decoration: none;
  font-size: 0.95em;
  transition: color 0.25s ease, padding-left 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: "→";
  color: var(--story-accent);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateX(-6px);
}
.footer-links a:hover {
  color: #f0e8e3;
}
.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 560px) {
  .footer-links a::before { display: none; }
}

/* Coordonnées avec icônes */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #c8c0b8;
  font-size: 0.92em;
  line-height: 1.5;
}
@media (max-width: 560px) {
  .footer-contact-list li { justify-content: center; }
}
.footer-contact-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(239, 166, 151, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--story-accent);
}
.footer-contact-icon svg { width: 14px; height: 14px; }
.footer-contact-list a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-contact-list a:hover { color: #f0e8e3; }

/* Réseaux sociaux */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
@media (max-width: 560px) {
  .footer-social { justify-content: center; }
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c8c0b8;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--story-accent);
  border-color: var(--story-accent);
  color: #fff;
  transform: translateY(-3px);
}
.footer-social a svg { width: 14px; height: 14px; }

/* Newsletter */
.footer-newsletter-text {
  color: #b8b0a8;
  font-style: italic;
  line-height: 1.6;
  font-size: 0.92em;
  margin: 0 0 18px 0;
}
.footer-newsletter-form {
  position: relative;
}
.footer-newsletter-input {
  width: 100%;
  padding: 14px 50px 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  color: #f0e8e3;
  font-size: 0.92em;
  font-family: inherit;
  transition: border-color 0.3s ease, background 0.3s ease;
  outline: none;
  box-sizing: border-box;
}
.footer-newsletter-input::placeholder { color: #888076; }
.footer-newsletter-input:focus {
  border-color: var(--story-accent);
  background: rgba(255, 255, 255, 0.08);
}
.footer-newsletter-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--story-accent);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.footer-newsletter-btn:hover {
  background: #d88a78;
  transform: translateY(-50%) scale(1.05);
}
.footer-newsletter-btn svg { width: 14px; height: 14px; }
.footer-newsletter-tag {
  font-size: 0.78em;
  color: #888076;
  margin-top: 12px;
  display: block;
  font-style: italic;
}

/* Bas du footer */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.82em;
  color: #888076;
}
.footer-bottom-copyright {
  margin: 0;
  letter-spacing: 0.3px;
}
.footer-bottom-copyright .heart {
  color: var(--story-accent);
  margin: 0 4px;
}
.footer-bottom-links {
  display: flex;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  color: #888076;
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-bottom-links a:hover { color: #c8c0b8; }
@media (max-width: 560px) {
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* --- Respect des préférences utilisateur --- */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .scroll-indicator,
  .scroll-indicator-line::after,
  .story-floating-dot {
    animation: none !important;
  }
}
