/* ============================================
   Laura Favier — feuille de style commune
   Solaire & poétique : crème · terracotta · sauge
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Caveat:wght@400;500;600&family=Petit+Formal+Script&display=swap');

:root {
  --creme: #f4ebdb;
  --creme-clair: #faf4e8;
  --creme-fonce: #ebdec3;
  --terracotta: #c46a3d;
  --terracotta-fonce: #9c4d27;
  --terracotta-clair: #e09064;
  --sauge: #8a9a7a;
  --sauge-fonce: #5e6f4f;
  --sauge-clair: #b5c0a3;
  --or: #b8884a;
  --or-clair: #d6ad75;
  --encre: #2c2418;
  --encre-doux: #4a3e2e;
  --gris-doux: #8a7e6e;

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --main: 'Petit Formal Script', 'Caveat', cursive;
  --manuscrite: 'Caveat', cursive;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  font-weight: 400;
  background: var(--creme);
  color: var(--encre);
  line-height: 1.7;
  font-size: 18px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ====== Texture papier de fond ====== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(196, 106, 61, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(138, 154, 122, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(184, 136, 74, 0.04) 0%, transparent 70%);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.18 0 0 0 0 0.14 0 0 0 0 0.09 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main, header, footer, section { position: relative; z-index: 3; }

/* ====== Aquarelles décoratives (SVG inline en background) ====== */
.aquarelle {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  mix-blend-mode: multiply;
  filter: blur(0.5px);
}

/* ====== Typographie ====== */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.script {
  font-family: var(--manuscrite);
  font-weight: 500;
  color: var(--terracotta-fonce);
}

.formal {
  font-family: var(--main);
  font-weight: 400;
}

em, i { font-style: italic; }

a {
  color: var(--terracotta-fonce);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 0.3s, border-color 0.3s;
}
a:hover { color: var(--encre); border-color: var(--or); }

/* ====== Header / nav ====== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 3rem;
  background: linear-gradient(to bottom, rgba(244, 235, 219, 0.92), rgba(244, 235, 219, 0));
  backdrop-filter: blur(2px);
}

.nav-mark {
  font-family: var(--main);
  font-size: 1.6rem;
  color: var(--encre);
  letter-spacing: 0.02em;
  border: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links a {
  border: none;
  color: var(--encre-doux);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -2px;
  width: 0; height: 1px;
  background: var(--terracotta);
  transition: all 0.4s;
  transform: translateX(-50%);
}

.nav-links a:hover::after { width: 100%; }

/* ====== Hero ====== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 5rem 4rem;
  position: relative;
  gap: 3rem;
}

.hero-text { position: relative; z-index: 5; }

.hero-eyebrow {
  font-family: var(--manuscrite);
  font-size: 1.8rem;
  color: var(--sauge-fonce);
  display: block;
  margin-bottom: 1rem;
  transform: rotate(-1.5deg);
  margin-left: 0.5rem;
}

.hero-name {
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 300;
  line-height: 0.92;
  color: var(--encre);
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}

.hero-name .last {
  font-style: italic;
  color: var(--terracotta-fonce);
  display: block;
  margin-left: 1.2rem;
}

.hero-tagline {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--encre-doux);
  margin-top: 2rem;
  max-width: 26rem;
  line-height: 1.45;
}

.hero-roles {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--encre-doux);
}

.hero-roles span { position: relative; }
.hero-roles span:not(:last-child)::after {
  content: '·';
  margin-left: 1.5rem;
  color: var(--terracotta);
}

/* Carte oracle dans le hero */
.hero-card-zone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.oracle-card {
  position: relative;
  width: 280px;
  height: 420px;
  perspective: 1500px;
  cursor: pointer;
}

.oracle-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.9s cubic-bezier(0.6, 0.05, 0.3, 0.95);
  transform-style: preserve-3d;
}

.oracle-card.flipped .oracle-card-inner {
  transform: rotateY(180deg);
}

.oracle-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 6px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.4) inset,
    0 20px 40px -15px rgba(80, 50, 20, 0.35),
    0 4px 12px -6px rgba(80, 50, 20, 0.2);
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  border: 1px solid rgba(184, 136, 74, 0.3);
}

.oracle-face-back {
  background:
    radial-gradient(circle at 50% 50%, rgba(184, 136, 74, 0.18), transparent 60%),
    linear-gradient(135deg, var(--terracotta-fonce), #7a3a1d);
  color: var(--creme);
  align-items: center;
  justify-content: center;
}

.oracle-face-back .pattern {
  font-family: var(--main);
  font-size: 5rem;
  color: var(--or-clair);
  text-shadow: 0 0 20px rgba(214, 173, 117, 0.3);
  margin-bottom: 1rem;
}

.oracle-face-back .invite {
  font-family: var(--manuscrite);
  font-size: 1.4rem;
  color: var(--creme);
  opacity: 0.85;
  margin-top: 1.5rem;
  letter-spacing: 0.02em;
}

.oracle-face-back .corner {
  position: absolute;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--or-clair);
  opacity: 0.7;
}
.oracle-face-back .corner.tl { top: 0.8rem; left: 1rem; }
.oracle-face-back .corner.br { bottom: 0.8rem; right: 1rem; transform: rotate(180deg); }

.oracle-face-front {
  background: var(--creme-clair);
  transform: rotateY(180deg);
  background-image:
    radial-gradient(ellipse at 30% 20%, rgba(196, 106, 61, 0.1), transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(138, 154, 122, 0.1), transparent 60%);
}

.oracle-name {
  font-family: var(--main);
  font-size: 1.6rem;
  color: var(--terracotta-fonce);
  letter-spacing: 0.05em;
  border-top: 1px solid var(--or);
  border-bottom: 1px solid var(--or);
  padding: 0.6rem 0;
  margin-bottom: 1rem;
}

.oracle-message {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--encre);
  line-height: 1.4;
  padding: 0 0.5rem;
}

.oracle-footer {
  font-family: var(--manuscrite);
  font-size: 1.1rem;
  color: var(--sauge-fonce);
  margin-top: 1rem;
}

.card-hint {
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--manuscrite);
  font-size: 1.2rem;
  color: var(--gris-doux);
  white-space: nowrap;
  animation: pulse-soft 3s ease-in-out infinite;
}

@keyframes pulse-soft {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Aquarelles dans le hero */
.hero-aqua-1 {
  top: -10%;
  right: -5%;
  width: 500px;
  opacity: 0.4;
}
.hero-aqua-2 {
  bottom: -10%;
  left: -8%;
  width: 400px;
  opacity: 0.35;
}

/* ====== Sections génériques ====== */
section {
  padding: 7rem 5rem;
}

.section-roman {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.4em;
  color: var(--terracotta);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.05;
}
.section-title em {
  color: var(--terracotta-fonce);
  font-weight: 400;
}

.section-intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--encre-doux);
  max-width: 38rem;
  line-height: 1.55;
  margin-bottom: 4rem;
}

/* ====== Trois facettes ====== */
.facettes {
  background: linear-gradient(180deg, var(--creme) 0%, var(--creme-fonce) 100%);
  position: relative;
  overflow: hidden;
}

.facettes-header {
  text-align: center;
  margin-bottom: 5rem;
}

.facettes-header .section-intro { margin: 0 auto; }

.facettes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

.facette {
  position: relative;
  padding: 3rem 2.5rem;
  background: var(--creme-clair);
  border: 1px solid rgba(184, 136, 74, 0.25);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s;
  cursor: default;
}

.facette:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow:
    0 30px 50px -25px rgba(80, 50, 20, 0.3),
    0 10px 20px -10px rgba(80, 50, 20, 0.15);
}

.facette:nth-child(2) { transform: translateY(2rem); }
.facette:nth-child(2):hover { transform: translateY(calc(2rem - 8px)) rotate(0.5deg); }

.facette-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  color: var(--or);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.facette-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  color: var(--terracotta);
}

.facette-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--encre);
  margin-bottom: 0.3rem;
  line-height: 1.1;
}

.facette-subtitle {
  font-family: var(--manuscrite);
  font-size: 1.3rem;
  color: var(--terracotta-fonce);
  margin-bottom: 1.5rem;
  display: block;
}

.facette-desc {
  font-size: 1.05rem;
  color: var(--encre-doux);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.facette-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sauge-fonce);
}

.facette-tags span::after {
  content: ' · ';
  color: var(--or);
  margin: 0 0.2rem;
}
.facette-tags span:last-child::after { content: ''; }

/* ====== Humeurs preview ====== */
.humeurs-preview {
  padding: 8rem 5rem;
  position: relative;
}

.humeurs-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.humeurs-side {
  position: sticky;
  top: 8rem;
}

.humeurs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.humeur-item {
  position: relative;
  padding-left: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px dashed rgba(196, 106, 61, 0.3);
}
.humeur-item:last-child { border-bottom: none; }

.humeur-date {
  position: absolute;
  left: 0;
  top: 0.4rem;
  font-family: var(--manuscrite);
  font-size: 1.4rem;
  color: var(--sauge-fonce);
  text-align: center;
  width: 3rem;
  line-height: 1;
}
.humeur-date .day {
  display: block;
  font-size: 2rem;
  color: var(--terracotta-fonce);
  font-weight: 600;
}

.humeur-mood {
  font-family: var(--manuscrite);
  font-size: 1.3rem;
  color: var(--terracotta);
  margin-bottom: 0.4rem;
  display: block;
}

.humeur-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--encre);
  line-height: 1.55;
}

.humeur-text strong {
  font-style: normal;
  font-weight: 500;
  color: var(--terracotta-fonce);
  letter-spacing: 0.01em;
}

.see-all {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--terracotta-fonce);
  margin-top: 3rem;
  border: none;
  position: relative;
}
.see-all .arrow {
  display: inline-block;
  transition: transform 0.4s;
}
.see-all:hover .arrow { transform: translateX(0.5rem); }

/* ====== Contact ====== */
.contact {
  background: var(--encre);
  color: var(--creme);
  padding: 8rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(196, 106, 61, 0.18), transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(138, 154, 122, 0.12), transparent 55%);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.contact .section-roman { color: var(--or-clair); }

.contact h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--creme-clair);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.contact h2 em {
  color: var(--or-clair);
  font-style: normal;
}

.contact-text {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: rgba(244, 235, 219, 0.8);
  margin-bottom: 3rem;
  font-style: italic;
}

.contact-mail {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--or-clair);
  border-bottom: 1px solid var(--or);
  padding: 0.3rem 0;
  letter-spacing: 0.02em;
}
.contact-mail:hover {
  color: var(--creme);
  border-color: var(--creme);
}

.contact-socials {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-family: var(--manuscrite);
  font-size: 1.2rem;
}
.contact-socials a {
  color: rgba(244, 235, 219, 0.7);
  border: none;
}
.contact-socials a:hover { color: var(--or-clair); }

/* ====== Footer ====== */
footer {
  background: var(--creme-fonce);
  padding: 2.5rem 5rem;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gris-doux);
  border-top: 1px solid rgba(184, 136, 74, 0.25);
}

footer .heart {
  color: var(--terracotta);
  font-style: normal;
}

.footer-secret {
  opacity: 0.35;
  transition: opacity 0.6s;
  font-family: var(--manuscrite);
  font-size: 1.05rem;
  font-style: normal;
  margin-left: 0.4rem;
}
.footer-secret:hover { opacity: 1; }
.footer-secret a {
  color: var(--terracotta);
  border: none;
  border-bottom: 1px dotted currentColor;
}
.footer-secret a:hover { color: var(--terracotta-fonce); border-color: currentColor; }

/* ====== Page humeurs (journal) ====== */
.journal-hero {
  padding: 10rem 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.journal-eyebrow {
  font-family: var(--manuscrite);
  font-size: 1.5rem;
  color: var(--sauge-fonce);
  display: block;
  margin-bottom: 1rem;
}

.journal-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.03em;
  color: var(--encre);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.journal-title em {
  color: var(--terracotta-fonce);
  font-style: normal;
}

.journal-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--encre-doux);
  max-width: 38rem;
  margin: 0 auto;
  line-height: 1.55;
}

.divider-svg {
  display: block;
  margin: 3rem auto;
  width: 200px;
  color: var(--or);
}

.journal-list {
  max-width: 720px;
  margin: 4rem auto 6rem;
  padding: 0 5rem;
}

.entry {
  position: relative;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(184, 136, 74, 0.3);
}
.entry:last-child { border-bottom: none; }

.entry-meta {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: var(--manuscrite);
  font-size: 1.4rem;
  color: var(--terracotta-fonce);
}

.entry-date {
  letter-spacing: 0.02em;
}

.entry-mood {
  color: var(--sauge-fonce);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  text-transform: lowercase;
}

.entry-mood::before {
  content: '~ ';
  color: var(--or);
}

.entry-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--encre);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.entry-body {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--encre-doux);
  line-height: 1.8;
}

.entry-body p { margin-bottom: 1.2rem; }
.entry-body p:last-child { margin-bottom: 0; }

.entry-body .dropcap::first-letter {
  font-family: var(--main);
  font-size: 4.5rem;
  float: left;
  line-height: 0.85;
  padding: 0.4rem 0.8rem 0 0;
  color: var(--terracotta-fonce);
}

.entry-body em { color: var(--terracotta-fonce); }

.pull-quote {
  font-family: var(--main);
  font-size: 2rem;
  color: var(--terracotta-fonce);
  text-align: center;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(184, 136, 74, 0.4);
  border-bottom: 1px solid rgba(184, 136, 74, 0.4);
  line-height: 1.4;
  font-style: normal;
}

.entry-tag {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--sauge-fonce);
  letter-spacing: 0.1em;
}

.entry-tag::before { content: '— '; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  margin: 0 auto;
  color: var(--terracotta-fonce);
  border: none;
}
.back-link::before {
  content: '←';
  transition: transform 0.4s;
}
.back-link:hover::before { transform: translateX(-0.4rem); }

.back-wrap {
  text-align: center;
  margin: 4rem auto 6rem;
}

/* Aquarelle décorative dans la page journal */
.journal-aqua {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* ====== Animations d'apparition ====== */
.js-loaded .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.js-loaded .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.15s; }
.reveal-d2 { transition-delay: 0.3s; }
.reveal-d3 { transition-delay: 0.45s; }
.reveal-d4 { transition-delay: 0.6s; }

/* Apparition initiale du hero (sans observer) */
.js-loaded .hero-text > * {
  opacity: 0;
  animation: rise 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.js-loaded .hero-text .hero-eyebrow { animation-delay: 0.2s; }
.js-loaded .hero-text .hero-name { animation-delay: 0.4s; }
.js-loaded .hero-text .hero-tagline { animation-delay: 0.7s; }
.js-loaded .hero-text .hero-roles { animation-delay: 0.9s; }

.js-loaded .hero-card-zone .oracle-card {
  opacity: 0;
  animation: rise 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ====== Responsive ====== */
@media (max-width: 980px) {
  .nav { padding: 1.2rem 1.5rem; }
  .nav-links { gap: 1.2rem; font-size: 0.78rem; }
  .nav-mark { font-size: 1.3rem; }

  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 3rem;
    text-align: left;
    gap: 2rem;
  }

  .hero-name .last { margin-left: 0; }
  .hero-card-zone { min-height: 460px; }

  section { padding: 5rem 1.5rem; }

  .facettes-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .facette:nth-child(2) { transform: none; }
  .facette:nth-child(2):hover { transform: translateY(-8px) rotate(0.5deg); }

  .humeurs-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .humeurs-side { position: relative; top: 0; }

  .journal-list { padding: 0 1.5rem; }
  .journal-hero, .humeurs-preview, .contact, .facettes { padding-left: 1.5rem; padding-right: 1.5rem; }
  footer { padding: 2rem 1.5rem; }

  .humeur-item { padding-left: 3.5rem; }
}

/* ====== Accessibility ====== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-text > *, .hero-card-zone .oracle-card { opacity: 1; }
}

::selection {
  background: var(--terracotta);
  color: var(--creme-clair);
}
