/* L'Armoire aux Confitures, theme v2 (refonte avril 2026)
   Palette chaude inspiree du logo et des illustrations maison.
   Mobile first, fluid typography, ornements SVG. */

/* =========================
   1. Tokens & reset
========================= */
:root {
  /* Palette chaude */
  --terracotta: #C55A3E;
  --terracotta-dark: #9E3F27;
  --terracotta-soft: #E8876A;
  --miel: #E8A54A;
  --miel-dark: #C07C1C;
  --cream: #FDF5E4;
  --cream-warm: #F7EBD3;
  --cream-deep: #EED9B0;
  --paper: #FFFBF2;
  --sage: #7A8E5C;
  --sage-dark: #556643;
  --sage-soft: #BECCA7;
  --bleu: #6A8A9E;
  --bleu-soft: #B9CCD7;
  --ink: #2B1A10;
  --ink-soft: #5A4433;
  --ink-mute: #8A7262;
  --line: #E6D3B2;
  --gold: #D4A253;

  /* Compatibilite ancien code (variables utilisees en inline style) */
  --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --sans: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --hand: "Caveat", "Dancing Script", cursive;

  /* Espacements */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 1rem;
  --sp-4: 1.5rem;
  --sp-5: 2rem;
  --sp-6: 3rem;
  --sp-7: 4rem;
  --sp-8: 6rem;

  /* Rayon */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Ombres */
  --shadow-sm: 0 2px 6px rgba(43, 26, 16, 0.08);
  --shadow-md: 0 10px 30px rgba(43, 26, 16, 0.10);
  --shadow-lg: 0 24px 60px rgba(43, 26, 16, 0.14);
  --shadow-inset: inset 0 0 0 1px rgba(197, 90, 62, 0.10);

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 180ms;
  --t-med: 360ms;
  --t-slow: 700ms;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(1200px 600px at 10% -10%, rgba(232, 165, 74, 0.12), transparent 60%),
    radial-gradient(900px 500px at 120% 20%, rgba(197, 90, 62, 0.08), transparent 60%),
    radial-gradient(800px 400px at 50% 110%, rgba(122, 142, 92, 0.10), transparent 60%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--terracotta-dark); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 var(--sp-3);
}
h1 { font-size: clamp(2rem, 5vw + 1rem, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw + 0.8rem, 2.4rem); }
h3 { font-size: clamp(1.2rem, 1.4vw + 0.9rem, 1.5rem); }
h4 { font-size: 1.05rem; letter-spacing: 0.02em; }
p { margin: 0 0 var(--sp-3); color: var(--ink-soft); }
em { font-style: italic; color: var(--terracotta); }
blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
  border-left: 3px solid var(--terracotta);
  padding: 0.4rem 0 0.4rem 1.2rem;
  margin: 1.6rem 0;
  background: linear-gradient(90deg, rgba(232, 165, 74, 0.10), transparent);
}

.container { width: min(1180px, 92%); margin: 0 auto; }
.center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.8rem;
}

/* =========================
   2. Header & navigation
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 245, 228, 0.88);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid rgba(197, 90, 62, 0.14);
}
.nav-wrap {
  width: min(1180px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
  text-decoration: none;
}
.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  background: var(--paper);
  padding: 2px;
}
.brand-text strong {
  font-family: var(--serif);
  font-size: 1.08rem;
  display: block;
  line-height: 1.1;
  color: var(--ink);
}
.brand-text span {
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
}
.main-nav a {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.93rem;
  border-radius: var(--r-pill);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.main-nav a:hover { background: rgba(232, 165, 74, 0.18); color: var(--terracotta-dark); }
.main-nav a.active {
  background: var(--terracotta);
  color: var(--paper);
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
  border-radius: 10px;
}
.menu-btn span {
  width: 26px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast);
}
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .menu-btn { display: inline-flex; }
  .main-nav {
    position: fixed;
    inset: 64px 0 auto 0;
    background: var(--paper);
    padding: 1rem 1.2rem 1.6rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-med) var(--ease);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { max-height: 520px; }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }
  .main-nav a {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: var(--r-md);
    font-size: 1rem;
  }
}

/* =========================
   3. Hero
========================= */
.hero {
  position: relative;
  padding: clamp(2.4rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 380px at 82% 30%, rgba(232, 165, 74, 0.25), transparent 60%),
    radial-gradient(520px 380px at 10% 80%, rgba(197, 90, 62, 0.15), transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.hero-text h1 {
  font-size: clamp(2.1rem, 4vw + 1rem, 3.8rem);
  margin-bottom: 1.1rem;
}
.hero-text h1 em {
  font-style: italic;
  background: linear-gradient(180deg, transparent 62%, rgba(232, 165, 74, 0.45) 62%, rgba(232, 165, 74, 0.45) 94%, transparent 94%);
  padding: 0 0.1em;
}
.hero-text .lead {
  font-size: 1.12rem;
  max-width: 52ch;
  color: var(--ink-soft);
}
.hero-image {
  position: relative;
}
.hero-image img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.2deg);
  border: 6px solid var(--paper);
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: -20px -20px auto auto;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(232, 165, 74, 0.35), transparent 65%);
  filter: blur(8px);
  z-index: -1;
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { max-width: 420px; margin: 1rem auto 0; }
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.6rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  border-radius: var(--r-pill);
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, var(--terracotta-soft), var(--terracotta));
  color: var(--paper);
  box-shadow: 0 12px 24px -10px rgba(158, 63, 39, 0.55);
}
.btn-primary:hover {
  transform: translateY(-2px);
  color: var(--paper);
  box-shadow: 0 18px 32px -10px rgba(158, 63, 39, 0.6);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

/* =========================
   4. Blocks & bands
========================= */
.block { padding: clamp(3rem, 7vw, 6rem) 0; position: relative; }
.block.tight { padding: clamp(2rem, 5vw, 4rem) 0; }

.band-cream {
  background: linear-gradient(180deg, var(--cream-warm), var(--cream));
  border-top: 1px solid rgba(197, 90, 62, 0.12);
  border-bottom: 1px solid rgba(197, 90, 62, 0.12);
}
.band-sage {
  background: linear-gradient(160deg, var(--sage-dark), var(--sage));
  color: var(--cream);
}
.band-sage h2, .band-sage p { color: var(--cream); }
.band-sage p { color: rgba(253, 245, 228, 0.88); }
.band-ink {
  background: radial-gradient(1000px 600px at 20% 0%, #4a2e1f, var(--ink));
  color: var(--cream);
}
.band-ink h2, .band-ink h3, .band-ink p { color: var(--cream); }

.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-title p { color: var(--ink-soft); font-size: 1.05rem; }

/* =========================
   5. Features (valeurs)
========================= */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}
.feature-card {
  background: var(--paper);
  padding: 2rem 1.6rem;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  border: 1px solid rgba(197, 90, 62, 0.08);
}
.feature-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(232, 165, 74, 0.22), transparent 65%);
  border-radius: 50%;
  transition: transform var(--t-slow) var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.feature-card:hover::before { transform: scale(1.5); }
.feature-card .icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.4rem;
  background: linear-gradient(160deg, var(--miel), var(--terracotta));
  color: var(--paper);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}
.feature-card .icon svg { width: 26px; height: 26px; }
.feature-card h3 { color: var(--ink); }
.feature-card p { margin: 0; }

/* =========================
   6. About (image + texte)
========================= */
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.about-image img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--paper);
  transform: rotate(0.8deg);
}
.about-text p { font-size: 1.02rem; }
@media (max-width: 860px) {
  .about { grid-template-columns: 1fr; }
}

/* =========================
   7. Books (cards)
========================= */
.books {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}
.book-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  border: 1px solid rgba(197, 90, 62, 0.08);
  position: relative;
}
.book-card::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  background: radial-gradient(circle at 30% 30%, #fff, rgba(255, 255, 255, 0) 60%);
  opacity: 0.45;
  pointer-events: none;
}
.book-card:hover {
  transform: translateY(-6px) rotate(-0.3deg);
  box-shadow: var(--shadow-lg);
}
.book-cover {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: linear-gradient(160deg, var(--cream-warm), var(--cream-deep));
}
.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.book-card:hover .book-cover img { transform: scale(1.05); }
.book-body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex-grow: 1; }
.tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: rgba(122, 142, 92, 0.14);
  padding: 0.35rem 0.7rem;
  border-radius: var(--r-pill);
  margin-bottom: 0.8rem;
  align-self: flex-start;
}
.book-body h3 { margin: 0.4rem 0 0.6rem; }
.book-body p { flex-grow: 1; font-size: 0.95rem; }
.book-price {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--terracotta);
  margin: 0.8rem 0 1rem;
}

/* =========================
   8. Page header (sub-pages)
========================= */
.page-header {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.4rem, 5vw, 4rem);
  background:
    radial-gradient(700px 400px at 82% 20%, rgba(232, 165, 74, 0.22), transparent 60%),
    radial-gradient(500px 300px at 10% 80%, rgba(122, 142, 92, 0.14), transparent 60%),
    linear-gradient(180deg, var(--cream-warm), var(--cream));
  text-align: center;
  overflow: hidden;
}
.page-header h1 { margin: 0.3rem 0 0.8rem; }
.page-header p { max-width: 640px; margin: 0 auto; color: var(--ink-soft); font-size: 1.08rem; }
.page-header::before, .page-header::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  opacity: 0.35;
  background-repeat: no-repeat;
}
.page-header::before {
  top: 12%;
  left: 4%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%23C55A3E' stroke-width='1.5' stroke-linecap='round'><path d='M40 120 Q60 60 100 80 T160 70'/><circle cx='160' cy='70' r='4' fill='%23C55A3E'/><path d='M90 140 q10 -10 22 -4'/><path d='M110 150 l-4 -10'/></g></svg>");
}
.page-header::after {
  bottom: 10%;
  right: 4%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%237A8E5C' stroke-width='1.5' stroke-linecap='round'><path d='M30 100 q40 -60 90 -30 q40 -10 50 40'/><circle cx='50' cy='90' r='3' fill='%237A8E5C'/><circle cx='150' cy='120' r='3' fill='%23E8A54A'/></g></svg>");
}

/* =========================
   9. Events
========================= */
.events {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.6rem;
}
.event-card {
  background: var(--paper);
  padding: 1.8rem 1.6rem;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--terracotta);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  position: relative;
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.event-date {
  display: inline-block;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(197, 90, 62, 0.12);
  padding: 0.4rem 0.8rem;
  border-radius: var(--r-pill);
  margin-bottom: 1rem;
}
.event-card h3 { margin-bottom: 0.6rem; }
.event-card .meta {
  margin-top: 0.6rem;
  color: var(--ink-mute);
  font-size: 0.88rem;
}

/* =========================
   10. Plan card (adhesion)
========================= */
.plan-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--paper);
  padding: 2.6rem 2.2rem;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  border: 1px solid rgba(232, 165, 74, 0.2);
}
.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 50% -10%, rgba(232, 165, 74, 0.22), transparent 60%);
  border-radius: var(--r-lg);
  pointer-events: none;
}
.plan-price {
  font-family: var(--serif);
  font-size: 3.4rem;
  color: var(--terracotta);
  line-height: 1;
  margin: 0.6rem 0 0.4rem;
}
.plan-price span { font-size: 1.05rem; color: var(--ink-mute); font-family: var(--sans); }
.plan-features {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0;
  text-align: left;
}
.plan-features li {
  padding: 0.6rem 0 0.6rem 2rem;
  border-bottom: 1px dashed rgba(197, 90, 62, 0.2);
  position: relative;
  color: var(--ink-soft);
}
.plan-features li:last-child { border-bottom: 0; }
.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C55A3E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

/* =========================
   11. Forms
========================= */
.form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--paper);
  padding: 2.2rem 2rem;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(197, 90, 62, 0.08);
}
.form-wrap h2 { margin-bottom: 0.3rem; }
.form-wrap .subtitle { color: var(--ink-mute); font-size: 0.94rem; margin-bottom: 1.4rem; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 1rem;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  transition: border var(--t-fast), box-shadow var(--t-fast);
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(197, 90, 62, 0.12);
}
.form-status { margin-top: 1rem; padding: 0.8rem 1rem; border-radius: var(--r-md); font-size: 0.92rem; display: none; }
.form-status.ok { display: block; background: rgba(122, 142, 92, 0.15); color: var(--sage-dark); }
.form-status.err { display: block; background: rgba(197, 90, 62, 0.15); color: var(--terracotta-dark); }

/* =========================
   12. Personnages (dedicated cards)
========================= */
.personnages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}
.perso-card {
  background: var(--paper);
  padding: 1.8rem 1.4rem;
  text-align: center;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--t-med) var(--ease);
}
.perso-card:hover { transform: translateY(-4px) rotate(-0.6deg); }
.perso-card .pot {
  width: 90px;
  height: 90px;
  margin: 0 auto 1rem;
}
.perso-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.perso-card p { font-size: 0.92rem; margin: 0; color: var(--ink-soft); }

/* =========================
   13. Testimonials
========================= */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.testimonial {
  background: var(--paper);
  padding: 1.8rem 1.6rem;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  left: 18px;
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--miel);
  opacity: 0.35;
}
.testimonial p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 1rem;
}
.testimonial cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--terracotta);
  letter-spacing: 0.06em;
}

/* =========================
   14. FAQ
========================= */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq details {
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 1.1rem 1.4rem;
  margin-bottom: 0.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(197, 90, 62, 0.08);
  transition: box-shadow var(--t-fast);
}
.faq details[open] { box-shadow: var(--shadow-md); }
.faq summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 1.5rem;
  color: var(--terracotta);
  transition: transform var(--t-fast);
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin-top: 0.8rem; color: var(--ink-soft); }

/* =========================
   15. Contact info cards
========================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.info-card {
  background: var(--paper);
  padding: 1.3rem 1.4rem;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 0.9rem;
  border-left: 3px solid var(--terracotta);
  transition: transform var(--t-fast) var(--ease);
}
.info-card:hover { transform: translateX(4px); }
.info-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.info-card p, .info-card a {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.5;
}

.map-wrap {
  margin-top: 1.2rem;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--paper);
  background: var(--cream-warm);
}
.map-wrap iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.socials {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: var(--paper);
  border-radius: var(--r-pill);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-fast);
}
.socials a:hover { transform: translateY(-2px); color: var(--terracotta); }

/* =========================
   16. Footer
========================= */
.site-footer {
  background: linear-gradient(180deg, #3d2416, #2B1A10);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) 0 1.6rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400' opacity='0.07'><g fill='none' stroke='%23E8A54A' stroke-width='1'><circle cx='50' cy='60' r='2'/><circle cx='120' cy='140' r='2'/><circle cx='220' cy='60' r='2'/><circle cx='320' cy='180' r='2'/><circle cx='80' cy='260' r='2'/><circle cx='200' cy='320' r='2'/><circle cx='340' cy='320' r='2'/><path d='M50 60 Q90 40 120 140' /><path d='M220 60 Q270 120 320 180'/><path d='M80 260 Q140 300 200 320'/></g></svg>");
  background-size: 400px 400px;
  opacity: 0.55;
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.2rem;
  position: relative;
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .brand img { background: #fff3d6; }
.footer-brand .brand-text strong { color: var(--cream); }
.footer-brand .brand-text span { color: rgba(253, 245, 228, 0.7); }
.footer-brand p { color: rgba(253, 245, 228, 0.72); font-size: 0.94rem; margin-top: 0.8rem; }
.site-footer h4 {
  color: var(--miel);
  font-family: var(--serif);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.55rem; color: rgba(253, 245, 228, 0.72); font-size: 0.92rem; }
.site-footer a { color: rgba(253, 245, 228, 0.82); transition: color var(--t-fast); }
.site-footer a:hover { color: var(--miel); }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(232, 165, 74, 0.18);
  font-size: 0.82rem;
  color: rgba(253, 245, 228, 0.55);
  text-align: center;
  position: relative;
}

/* =========================
   17. Reveal animations
========================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition: none !important; }
}

/* =========================
   18. Ornements flottants
========================= */
.ornament {
  position: absolute;
  pointer-events: none;
  opacity: 0.22;
}
.ornament-tr { top: 30px; right: 2%; width: 130px; }
.ornament-bl { bottom: 30px; left: 2%; width: 130px; }

/* Flottement leger */
@keyframes float-soft {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(1deg); }
}
.float { animation: float-soft 6s ease-in-out infinite; }

/* =========================
   19. Divider "étiquette de pot"
========================= */
.jar-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 2rem;
  max-width: 500px;
  color: var(--terracotta);
}
.jar-divider::before, .jar-divider::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--terracotta), transparent);
}
.jar-divider svg { width: 28px; height: 28px; flex-shrink: 0; }

/* =========================
   20. Notice / easter egg
========================= */
.whisper {
  font-family: var(--hand);
  font-size: 1.3rem;
  color: var(--terracotta);
  line-height: 1.4;
  transform: rotate(-2deg);
  display: inline-block;
}

/* Utilities specifiques */
.tight-top { padding-top: 0; }
.no-bullet { list-style: none; padding: 0; margin: 0; }
